/* ═══════════════════════════════════════════════════════════════════════════════
   Cooktail Lab — Premium Black Theme
   Inspired by: Apple, Saint Laurent, Stripe, Soho House
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --dark: #111111;
    --dark-card: #0d0d0d;
    --dark-border: rgba(192, 161, 105, 0.08);
    --teal: #336667;
    --teal-light: #4a8f90;
    --gold: #c0a169;
    --gold-light: #d4b87a;
    --gold-dim: rgba(192, 161, 105, 0.08);
    --gold-glow: rgba(192, 161, 105, 0.04);
    --white: #fafafa;
    --white-soft: #e8e8e8;
    --gray: #888888;
    --gray-dim: #555555;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Instrument Serif', 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--black);
    color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 200; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 400; }

.text-gold { color: var(--gold); }
.text-teal { color: var(--teal-light); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }

/* Italic serif accent for emotional words */
.accent {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 800px;
}

/* ── Hero Logo ────────────────────────────────────────────────────────────── */
.hero-logo {
    margin-bottom: 28px;
}

.hero-logo img {
    height: clamp(90px, 16vw, 160px);
    opacity: 0.95;
}

/* ── Context Section ─────────────────────────────────────────────────────── */
.section-context {
    padding: 80px 24px 60px;
}

.context-text {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.context-text p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 20px;
}

.context-text p:last-child {
    margin-bottom: 0;
}

.context-text strong {
    color: var(--gold);
    font-weight: 500;
}

/* ── Roadmap ──────────────────────────────────────────────────────────────── */
.section-roadmap {
    padding: 80px 24px 80px;
}

.roadmap {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-phase {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.roadmap-date {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    padding-top: 2px;
}

.roadmap-month {
    display: block;
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.roadmap-year {
    display: block;
    font-size: 11px;
    color: var(--gray-dim);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.roadmap-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.roadmap-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gray-dim);
    flex-shrink: 0;
    margin-top: 7px;
}

.roadmap-indicator.active {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 12px rgba(192, 161, 105, 0.3);
}

.roadmap-indicator.gold {
    border-color: var(--gold);
    background: transparent;
    box-shadow: 0 0 8px rgba(192, 161, 105, 0.2);
}

.roadmap-content {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    padding: 28px 28px 24px;
    transition: border-color 0.4s ease;
}

.roadmap-content:hover {
    border-color: rgba(192, 161, 105, 0.1);
}

.roadmap-content h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 6px;
}

.roadmap-subtitle {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 18px;
}

.roadmap-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roadmap-benefit {
    font-size: 13px;
    color: var(--white-soft);
    font-weight: 300;
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.5;
}

.roadmap-benefit span {
    color: var(--gray);
}

.roadmap-connector {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    margin-left: 83px;
}

@media (max-width: 640px) {
    .roadmap-phase {
        flex-direction: column;
        gap: 12px;
    }
    .roadmap-date {
        width: auto;
        text-align: left;
        display: flex;
        gap: 8px;
        align-items: baseline;
    }
    .roadmap-connector {
        margin-left: 0;
        height: 20px;
    }
    .roadmap-body {
        gap: 16px;
    }
    .roadmap-content {
        padding: 20px;
    }
}

/* ── Modal ────────────────────────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(24px);
    z-index: 9998;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--black-soft);
    border: 1px solid rgba(192, 161, 105, 0.08);
    border-radius: 2px;
    padding: 48px;
    max-width: 780px;
    width: 100%;
    position: relative;
    animation: modalFade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto 0;
}

@keyframes modalFade {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--gray-dim);
    font-size: 28px;
    cursor: pointer;
    transition: color var(--transition-fast);
    line-height: 1;
    z-index: 2;
}

.modal-close:hover {
    color: var(--white);
}

.modal-header {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.modal-header h2 {
    margin-bottom: 10px;
    font-weight: 200;
}

.modal-header p {
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    max-width: 440px;
    margin: 0 auto;
}

.modal-body {
    margin-bottom: 32px;
}

/* Benefits grid inside modal */
.modal-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    padding: 24px 20px;
    transition: border-color 0.4s ease;
}

.benefit-card:hover {
    border-color: rgba(192, 161, 105, 0.12);
}

.benefit-card-icon {
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.benefit-card h5 {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.5;
}

/* Full-width benefit card */
.benefit-card.full {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(192, 161, 105, 0.03);
    border-color: rgba(192, 161, 105, 0.08);
    padding: 20px;
}

.benefit-card.full h5 {
    color: var(--gold);
}

.modal-note {
    text-align: center;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.modal-note p {
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.modal-note .emphasis {
    color: var(--white);
    font-weight: 400;
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.modal-counter {
    text-align: center;
    padding: 16px 0 4px;
    font-size: 13px;
    color: var(--gray-dim);
    font-weight: 300;
}

.modal-counter strong {
    color: var(--gold);
    font-weight: 500;
    font-size: 15px;
}

.modal-cta {
    display: flex !important;
    margin-top: 12px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .modal-card {
        padding: 36px 24px;
    }
    .modal-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Benefits Section (page) ─────────────────────────────────────────────── */
.section-benefits {
    padding: 80px 24px 60px;
}

.section-benefits-future {
    padding-top: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.benefits-grid .benefit-card {
    background: rgba(255, 255, 255, 0.015);
}

.benefits-grid .benefit-card.highlight {
    border-color: rgba(192, 161, 105, 0.12);
    background: rgba(192, 161, 105, 0.03);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefits-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ── Founder System Section ──────────────────────────────────────────────── */
.section-founder-system {
    padding: 60px 24px 80px;
}

.founder-system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-system-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.4s ease;
}

.founder-system-card:hover {
    border-color: rgba(192, 161, 105, 0.12);
}

.founder-system-card.system-points {
    grid-column: 1 / -1;
    background: rgba(192, 161, 105, 0.02);
    border-color: rgba(192, 161, 105, 0.08);
    padding: 24px 32px;
}

.founder-system-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 14px;
}

.founder-system-card h4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: 1.3;
}

.founder-system-card p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.5;
}

.founder-system-card p strong {
    color: var(--gold);
    font-weight: 500;
}

@media (max-width: 768px) {
    .founder-system-grid {
        grid-template-columns: 1fr 1fr;
    }
    .founder-system-card.system-points {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .founder-system-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Pricing Section ─────────────────────────────────────────────────────── */
.section-pricing {
    padding: 60px 24px 80px;
}

.pricing-card {
    background: var(--black-soft);
    border: 1px solid rgba(192, 161, 105, 0.1);
    border-radius: 2px;
    padding: 56px 48px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.pricing-badge {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.pricing-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 200;
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 200;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.pricing-amount span {
    font-size: 0.4em;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.pricing-duration {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.pricing-note {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 32px;
}

.pricing-spots {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-dim);
    font-weight: 300;
}

.pricing-spots strong {
    color: var(--gold);
    font-weight: 500;
    font-size: 15px;
}

/* ── Modal Section Labels ────────────────────────────────────────────────── */
.modal-section-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    margin-top: 8px;
    font-weight: 400;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0;
    transition: all var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(192, 161, 105, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 48px;
    transition: opacity var(--transition);
}

.nav-logo img:hover {
    opacity: 0.7;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
    border: 1px solid rgba(192, 161, 105, 0.3);
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 161, 105, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(192, 161, 105, 0.15);
    color: var(--gold);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 36px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    margin-bottom: 32px;
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 .accent {
    display: inline;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
.section-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
    opacity: 0.4;
}

/* ── Counter Section ──────────────────────────────────────────────────────── */
.counter-section {
    padding: 60px 24px 80px;
    text-align: center;
    background: var(--black);
}

.counter-card {
    background: transparent;
    border: 1px solid rgba(192, 161, 105, 0.06);
    border-radius: 2px;
    padding: 56px 48px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30%;
    right: 30%;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}

.counter-number {
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 200;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

.counter-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

.counter-bar {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    margin-top: 24px;
}

.counter-bar-fill {
    height: 100%;
    background: var(--gold);
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.counter-detail {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 11px;
    color: var(--gray-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section {
    padding: 80px 24px 100px;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 20px;
    font-weight: 200;
}

.section-header p {
    color: var(--gray);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* ── Concept Cards ────────────────────────────────────────────────────────── */
.concepts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.concept-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    padding: 56px 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.5;
}

.concept-card:hover::before {
    transform: scaleX(1);
}

.concept-card:hover {
    border-color: rgba(192, 161, 105, 0.1);
    background: rgba(192, 161, 105, 0.02);
}

.concept-phase {
    display: inline-block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 0;
    background: none;
}

.concept-card h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 300;
    font-size: 1.6rem;
}

.concept-card p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 300;
}

.concept-features {
    list-style: none;
    padding: 0;
}

.concept-features li {
    padding: 10px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.concept-features li:last-child {
    border-bottom: none;
}

.concept-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ── Founder Wall ─────────────────────────────────────────────────────────── */
.founder-wall {
    background: var(--black-soft);
    padding: 80px 24px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.founder-chip {
    background: transparent;
    border: 1px solid rgba(192, 161, 105, 0.06);
    border-radius: 2px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.founder-chip:hover {
    border-color: rgba(192, 161, 105, 0.2);
    background: rgba(192, 161, 105, 0.02);
}

.founder-chip-number {
    font-size: 10px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    opacity: 0.6;
}

.founder-chip-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--white-soft);
    letter-spacing: 0.02em;
}

/* ── Registration Form ────────────────────────────────────────────────────── */
.register-section {
    padding: 80px 24px 100px;
    background: var(--black);
}

.register-card {
    background: var(--black-soft);
    border: 1px solid rgba(192, 161, 105, 0.06);
    border-radius: 2px;
    padding: 64px 48px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}

.register-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold);
    opacity: 0.2;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font);
    font-weight: 300;
    transition: border-color var(--transition);
    outline: none;
}

.form-control:focus {
    border-bottom-color: var(--gold);
}

.form-control::placeholder {
    color: var(--gray-dim);
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color var(--transition);
}

.phone-input-wrapper:focus-within {
    border-bottom-color: var(--gold);
}

.phone-prefix {
    display: inline-flex;
    align-items: center;
    padding: 14px 10px 14px 0;
    color: var(--gray);
    font-size: 15px;
    font-weight: 300;
    user-select: none;
    pointer-events: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 12px;
}

.phone-input-wrapper .form-control.phone-input {
    border-bottom: none;
    flex: 1;
    padding-left: 0;
}

.phone-input-wrapper .form-control.phone-input:focus {
    border-bottom: none;
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0;
    transition: all var(--transition);
}

.checkbox-wrapper:hover {
    border-top-color: rgba(192, 161, 105, 0.1);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-wrapper span {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 60px rgba(192, 161, 105, 0.15);
    color: var(--black);
}

.btn-primary:active {
    background: var(--gold);
}

.btn-primary:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(192, 161, 105, 0.3);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(192, 161, 105, 0.05);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
    padding: 60px 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    background: var(--black);
}

.footer-logo img {
    height: 36px;
    opacity: 0.4;
    margin-bottom: 20px;
    transition: opacity var(--transition);
}

.footer-logo img:hover {
    opacity: 0.6;
}

.footer p {
    color: var(--gray-dim);
    font-size: 11px;
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* ── Animations (scroll reveal) ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Urgency Banner ───────────────────────────────────────────────────────── */
.urgency-banner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 16px 0;
    text-align: center;
    margin: 28px auto 0;
    max-width: 400px;
    font-size: 13px;
    color: var(--gray-dim);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.urgency-banner strong {
    color: var(--gold);
    font-weight: 500;
}

/* ── Success Message ──────────────────────────────────────────────────────── */
.success-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.success-overlay.active {
    display: flex;
}

.success-card {
    background: var(--black-soft);
    border: 1px solid rgba(192, 161, 105, 0.1);
    border-radius: 2px;
    padding: 72px 56px;
    text-align: center;
    max-width: 440px;
    animation: successFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successFade {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(192, 161, 105, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 28px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-card {
        padding: 48px 28px;
    }
    
    .counter-card {
        padding: 60px 28px;
    }
    
    .concept-card {
        padding: 40px 28px;
    }
    
    .concepts {
        grid-template-columns: 1fr;
    }
    
    .founders-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 8px;
    }
    
    .nav-cta span {
        display: none;
    }
    
    .section {
        padding: 60px 24px 80px;
    }
    
    .hero {
        padding: 120px 24px 60px;
    }
    
    .founder-wall,
    .register-section,
    .counter-section {
        padding: 60px 24px 80px;
    }
    
    .section-context,
    .section-timeline,
    .section-benefits {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 10px;
        letter-spacing: 0.15em;
    }
    
    .counter-number {
        font-size: 4rem;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
}

/* ── Loading Spinner ──────────────────────────────────────────────────────── */
.spinner {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

.btn.loading .spinner {
    display: block;
}

.btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.nav-inner {
    position: relative;
}

.nav-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(192, 161, 105, 0.3);
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-menu-toggle span {
    width: 16px;
    height: 1px;
    background: var(--gold);
    transition: all var(--transition-fast);
}

.nav-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .nav-menu-toggle {
        display: inline-flex;
    }

    .nav-actions {
        position: absolute;
        top: calc(100% + 14px);
        right: 24px;
        width: 220px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        background: rgba(0, 0, 0, 0.96);
        border: 1px solid rgba(192, 161, 105, 0.12);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: all var(--transition-fast);
    }

    .nav-actions.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-cta {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .nav-cta span {
        display: inline !important;
    }
}

.footer-link {
    display: inline-block;
    margin: 10px 0;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}