/* ============================================
   syn. — Base Styles
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: none;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-primary);
    background-color: var(--bg-page);
    cursor: none;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold-accent);
    color: var(--bg-dark);
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Typography */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 680px;
}

.body-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .section-body {
    margin-left: auto;
    margin-right: auto;
}

/* Gold Elements */
.gold-rule {
    width: 80px;
    height: 1px;
    background: var(--divider-gold);
    margin: 40px 0;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold-accent);
    color: #1A1612;
    border: 1px solid var(--gold-accent);
}

.btn--primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
}

.btn--ghost:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.65rem;
}

/* Custom Cursor */
.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--gold-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: multiply;
    transition: width 0.3s, height 0.3s, margin 0.3s;
    margin-left: -5px;
    margin-top: -5px;
}

[data-theme="dark"] .cursor-dot {
    mix-blend-mode: screen;
}

.cursor-dot.expanded {
    width: 18px;
    height: 18px;
    margin-left: -9px;
    margin-top: -9px;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 0.5px solid var(--gold-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    margin-left: -18px;
    margin-top: -18px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                margin 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.3s;
}

.cursor-ring.expanded {
    width: 52px;
    height: 52px;
    margin-left: -26px;
    margin-top: -26px;
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    border-color: var(--gold-accent);
    transform: scale(1.05);
}

[data-theme="light"] .theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun { display: block; }
[data-theme="dark"] .theme-toggle__sun { display: none; }
[data-theme="dark"] .theme-toggle__moon { display: block; }

/* Footer Social & WhatsApp */
.footer__social {
    margin-top: 24px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366; /* WhatsApp Green */
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 4px;
}

.footer__social-link:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: #25D366;
    transform: translateY(-2px);
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
    width: 100%;
}

.waitlist-form--large {
    max-width: 500px;
}

.waitlist-form__input {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s;
    border-radius: 2px;
}

.waitlist-form__input::placeholder {
    color: var(--text-tertiary);
}

.waitlist-form__input:focus {
    border-color: var(--gold-accent);
    background: rgba(201, 168, 76, 0.12);
}

/* Reveal animation class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-deep);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 11, 8, 0.9);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--bg-surface);
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--border-emphasis);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal.active .modal__content {
    transform: translateY(0);
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-tertiary);
    font-size: 1.2rem;
    cursor: auto !important;
}

.modal__icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 24px;
}

.modal__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.modal__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn--whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--whatsapp:hover {
    background: #20b355 !important;
}
