/* WU Insight Engine - v3.0 Design System */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Design Tokens v3.0 */
    --ink: #0A0A0A;
    --mist: #F5F6F7;
    --brass: #B9953D;
    --austere: #4A6FA5;
    --wrath: #8A1C1C;
    --ash: #6B7178;
    --steel: #C0C3C7;

    /* Typography */
    --font-spectral: 'Spectral', serif;
    --font-inter: 'Inter', sans-serif;
    --font-noto-serif: 'Noto Serif SC', serif;
    --font-noto-sans: 'Noto Sans SC', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(185, 149, 61, 0.3);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background-color: var(--ink);
    color: var(--mist);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-spectral);
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive Typography */
@media (min-width: 768px) {
    :root {
        --text-h1: 3.5rem;
        --text-h2: 2.5rem;
        --text-h3: 1.5rem;
        --text-body: 1.125rem;
        --text-button: 1rem;
    }
}

@media (max-width: 767px) {
    :root {
        --text-h1: 2.5rem;
        --text-h2: 2rem;
        --text-h3: 1.25rem;
        --text-body: 1rem;
        --text-button: 0.875rem;
    }
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
p, body { font-size: var(--text-body); }
button { font-size: var(--text-button); }

/* Screen reader utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    color: var(--brass);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--brass);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Buttons */
.btn-primary, .btn-secondary {
    background: var(--ink);
    color: var(--brass);
    border: 1px solid var(--brass);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-2xl);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-family: var(--font-inter);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brass), var(--austere));
    color: var(--ink);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--brass);
}

.btn-secondary:hover {
    background: rgba(185, 149, 61, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

.btn-unlock, .btn-unlock-large {
    background: linear-gradient(135deg, var(--brass), #A0822D);
    color: var(--ink);
    font-weight: 600;
}

.btn-unlock:hover {
    background: linear-gradient(135deg, #A0822D, var(--brass));
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loading-text {
    font-size: 4rem;
    color: var(--brass);
    font-family: var(--font-spectral);
    font-weight: 700;
    animation: pulse 2s infinite;
}

.loading-subtitle {
    margin-top: var(--spacing-lg);
    color: var(--ash);
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.ink-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl) 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-spectral);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brass);
    letter-spacing: 0.1em;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--mist);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    opacity: 1;
    color: var(--brass);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    color: var(--brass);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-weight: 300;
    opacity: 0.8;
    display: block;
    margin-top: var(--spacing-sm);
}

.hero-description {
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    font-size: 1.125rem;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero-trust {
    color: var(--steel);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.hero-compliance {
    color: var(--ash);
    font-size: 0.875rem;
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
}

/* What You Get Section */
.what-you-get {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--ink) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.starter-pack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.starter-card {
    background: rgba(185, 149, 61, 0.05);
    border: 1px solid rgba(185, 149, 61, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.starter-card:hover {
    background: rgba(185, 149, 61, 0.1);
    border-color: var(--brass);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.starter-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.starter-card h3 {
    color: var(--brass);
    margin-bottom: var(--spacing-sm);
}

.starter-card p {
    color: var(--steel);
    font-size: 0.95rem;
}

.price-tag {
    text-align: center;
    padding: var(--spacing-2xl);
    background: rgba(185, 149, 61, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(185, 149, 61, 0.3);
}

.price-main {
    font-size: 4rem;
    font-weight: 700;
    color: var(--brass);
    font-family: var(--font-spectral);
}

.price-note {
    color: var(--steel);
    margin-top: var(--spacing-sm);
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: rgba(185, 149, 61, 0.02);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.step {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(185, 149, 61, 0.05);
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    border: 2px solid var(--brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brass);
    margin: 0 auto var(--spacing-lg);
    background: rgba(185, 149, 61, 0.1);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.step h3 {
    color: var(--mist);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: var(--steel);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-3xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(185, 149, 61, 0.05);
    border: 1px solid rgba(185, 149, 61, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brass);
}

.sample-preview {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 149, 61, 0.1), rgba(74, 111, 165, 0.1));
}

.sample-image-placeholder {
    width: 80px;
    height: 80px;
    border: 2px solid var(--brass);
    border-radius: var(--radius-lg);
    background: rgba(185, 149, 61, 0.2);
}

.sample-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    color: var(--mist);
}

.sample-overlay h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--brass);
}

.sample-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: rgba(185, 149, 61, 0.02);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(192, 195, 199, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--brass);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brass);
    color: var(--ink);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-2xl);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--mist);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xl);
}

.currency {
    font-size: 1.25rem;
    color: var(--brass);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brass);
    font-family: var(--font-spectral);
}

.period {
    color: var(--steel);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    color: var(--mist);
    position: relative;
    padding-left: var(--spacing-lg);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brass);
}

/* Add-ons */
.add-ons {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.add-ons h3 {
    color: var(--brass);
    margin-bottom: var(--spacing-xl);
}

.add-on-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
}

.add-on-card {
    background: rgba(185, 149, 61, 0.05);
    border: 1px solid rgba(185, 149, 61, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.add-on-card:hover {
    background: rgba(185, 149, 61, 0.1);
    transform: translateY(-4px);
}

.add-on-card h4 {
    color: var(--brass);
    margin-bottom: var(--spacing-sm);
}

.add-on-card .price {
    margin-bottom: var(--spacing-sm);
}

.add-on-card p {
    color: var(--steel);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: var(--spacing-3xl) 0;
}

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

.faq-item {
    border-bottom: 1px solid rgba(192, 195, 199, 0.2);
    margin-bottom: var(--spacing-lg);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--mist);
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    padding: var(--spacing-lg) 0;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-right: var(--spacing-xl);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--brass);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--brass);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 var(--spacing-lg);
    color: var(--steel);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(185, 149, 61, 0.1), rgba(74, 111, 165, 0.1));
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: var(--brass);
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    font-size: 1.125rem;
}

.cta-compliance {
    margin-top: var(--spacing-lg);
    color: var(--ash);
    font-size: 0.875rem;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: rgba(10, 10, 10, 0.9);
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid rgba(185, 149, 61, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
}

.footer-left h3 {
    color: var(--brass);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.footer-left p {
    color: var(--steel);
    margin-bottom: var(--spacing-lg);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--steel);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brass);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: var(--steel);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.footer-right a {
    color: var(--brass);
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}


/* Waitlist Page Specific Styles */
.waitlist-hero {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background: var(--ink);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Add a mystical glow effect */
.waitlist-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(185, 149, 61, 0.1), transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: breath 8s ease-in-out infinite;
}

.waitlist-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(74, 111, 165, 0.08), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

@keyframes breath {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-shell {
    display: flex;
    gap: var(--spacing-3xl);
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Compass Decoration */
.hero-compass {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 500px;
    height: 500px;
    z-index: -1;
    opacity: 0.6;
    animation: rotateCompass 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateCompass {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Staggered Entrance Animations */
.animate-item {
    opacity: 0;
    animation: fadeUpScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content {
    flex: 1 1 520px;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: var(--brass);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 999px;
    border: 1px solid rgba(185, 149, 61, 0.4);
    width: fit-content;
    background: rgba(185, 149, 61, 0.05);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    color: var(--mist);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-lede {
    color: var(--steel);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-lede-cn {
    display: block;
    margin-top: var(--spacing-sm);
    font-family: var(--font-noto-sans);
    color: var(--ash);
    font-size: 0.95rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.highlight-pill {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(192, 195, 199, 0.2);
    font-size: 0.85rem;
    color: var(--steel);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.highlight-pill:hover {
    border-color: var(--brass);
    color: var(--brass);
    background: rgba(185, 149, 61, 0.05);
}

.entry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.entry-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.entry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(185, 149, 61, 0.4);
    background: linear-gradient(145deg, rgba(185, 149, 61, 0.08), rgba(255, 255, 255, 0.01));
}

.entry-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(185, 149, 61, 0.15);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}

.entry-title {
    font-weight: 600;
    color: var(--mist);
    font-size: 0.95rem;
}

.entry-copy {
    color: var(--ash);
    font-size: 0.85rem;
    line-height: 1.4;
}

.status-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.status-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    background: rgba(20, 20, 20, 0.5);
}

.status-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ash);
    font-size: 0.75rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.status-card h3 {
    font-size: 1.25rem;
    color: var(--brass);
    margin-bottom: var(--spacing-sm);
}

.status-card p {
    font-size: 0.9rem;
    color: var(--steel);
    line-height: 1.5;
}

.stage-line {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px dashed rgba(192, 195, 199, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stage-point {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ash);
    position: relative;
}

.stage-point.complete { color: var(--steel); }
.stage-point.active {
    color: var(--brass);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(185, 149, 61, 0.4);
}
.stage-point.active::after {
    content: '●';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--brass);
}

.access-column {
    flex: 1 1 400px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Glassmorphism Card */
.access-panel {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Top gold accent line */
.access-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
    opacity: 0.8;
}

.panel-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.panel-eyebrow {
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.panel-header h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--mist);
}

.panel-header p {
    color: var(--steel);
    font-size: 0.95rem;
}

.panel-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 4px;
    margin-bottom: var(--spacing-lg);
}

.tab-btn {
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--ash);
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: var(--mist);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brass);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.email-input,
.code-input {
    width: 100%;
    height: 56px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    padding: 0 var(--spacing-lg);
    color: var(--mist);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-input::placeholder,
.code-input::placeholder {
    color: rgba(192, 195, 199, 0.4);
}

.email-input:focus,
.code-input:focus {
    outline: none;
    border-color: var(--brass);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 1px var(--brass), 0 0 15px rgba(185, 149, 61, 0.2);
    transform: translateY(-1px);
}

.btn-primary {
    height: 56px;
    background: linear-gradient(135deg, #D4AF37, #B9953D);
    color: #0A0A0A;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(185, 149, 61, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(185, 149, 61, 0.4);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.panel-footer {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.panel-footer p {
    font-size: 0.85rem;
    color: var(--ash);
    line-height: 1.5;
}

.trust-band {
    padding: var(--spacing-3xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(192, 195, 199, 0.2);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
    font-size: 0.8rem;
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--mist);
}

.stat-note {
    color: var(--steel);
    margin-top: var(--spacing-xs);
}

.compliance-card {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    border: 1px dashed rgba(192, 195, 199, 0.4);
    color: var(--steel);
    text-align: center;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: var(--spacing-2xl);
    background: rgba(185, 149, 61, 0.1);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(185, 149, 61, 0.3);
}

.success-icon {
    font-size: 3rem;
    color: var(--brass);
    margin-bottom: var(--spacing-lg);
}

.success-message h3 {
    color: var(--brass);
    margin-bottom: var(--spacing-md);
}

.success-message p {
    color: var(--mist);
    margin-bottom: var(--spacing-xl);
}

.share-section {
    margin-top: var(--spacing-xl);
}

.share-section > p {
    color: var(--steel);
    margin-bottom: var(--spacing-lg);
}

.share-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 195, 199, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--mist);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
}

.share-btn:hover {
    background: rgba(185, 149, 61, 0.1);
    border-color: var(--brass);
    transform: translateY(-2px);
}

.share-icon {
    font-size: 1rem;
}

.referral-info {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(74, 111, 165, 0.1);
    border-radius: var(--radius-lg);
    color: var(--mist);
}

.referral-info p {
    margin-bottom: var(--spacing-sm);
}

.referral-info span {
    color: var(--brass);
    font-weight: 600;
}

/* Referral Notification */
.referral-notification {
    position: fixed;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--ink);
    border: 1px solid var(--brass);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    z-index: 1000;
    max-width: 350px;
    box-shadow: var(--shadow-xl);
    animation: slideInRight 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.notification-close {
    background: none;
    border: none;
    color: var(--steel);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .waitlist-grid {
        grid-template-columns: 1fr;
    }

    .status-suite {
        grid-template-columns: 1fr;
    }

    .waitlist-panel {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .header .container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .waitlist-actions {
        grid-template-columns: 1fr;
    }

    .status-card, .eta-card {
        padding: var(--spacing-lg);
    }

    .form-tabs {
        flex-direction: column;
    }

    .tab-btn {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(192, 195, 199, 0.2);
        text-align: center;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .input-group {
        flex-direction: column;
    }

    .email-input,
    .code-input {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-right {
        text-align: center;
    }

    .referral-notification {
        top: var(--spacing-md);
        right: var(--spacing-md);
        left: var(--spacing-md);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .waitlist-title {
        font-size: 2rem;
    }

    .price-main {
        font-size: 3rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ink-canvas {
        display: none;
    }
}

/* Focus States */
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 2px;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--brass);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A0822D;
}