/**
 * Nocturnal Public Site Stylesheet
 *
 * Neon Noir design system with time-aware theming.
 * Daytime: #BB86FC (purple) | After Hours: #FF2D55 (deep pink)
 */

/* ==========================================================================
   1. Reset & CSS Variables
   ========================================================================== */

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

:root {
    --bg: #0A0A0A;
    --surface: #1A1A1A;
    --surface-elevated: #242424;
    --primary: #BB86FC;
    --secondary: #03DAC6;
    --text: #FFFFFF;
    --text-muted: #888888;
    --text-subtle: #666666;
    --danger: #FF2D55;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(187, 134, 252, 0.3);
    --glow-strong: rgba(187, 134, 252, 0.5);
}

body.after-hours-active {
    --primary: #FF2D55;
    --secondary: #FF6E9F;
    --glow-color: rgba(255, 45, 85, 0.3);
    --glow-strong: rgba(255, 45, 85, 0.5);
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */

.site-main {
    min-height: 100vh;
    padding-top: 72px; /* Account for fixed nav */
}

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

.container--narrow {
    max-width: 960px;
}

.section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

[id] {
    scroll-margin-top: 80px;
}

.section--dark {
    background: var(--surface);
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    padding-top: env(safe-area-inset-top, 0px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav-logo:hover {
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.nav-links a.active {
    color: var(--primary);
    background: rgba(187, 134, 252, 0.1);
}

body.after-hours-active .nav-links a.active {
    background: rgba(255, 45, 85, 0.1);
}

.nav-mode-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mode-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--glow-color);
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Mobile nav */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .site-nav {
        padding: 0 16px;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 8px 0 16px;
        gap: 4px;
        order: 10;
        background: rgba(10, 10, 10, 0.95);
        border-top: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-mode-indicator {
        padding: 6px 12px;
        font-size: 10px;
        gap: 6px;
    }

    .mode-dot {
        width: 6px;
        height: 6px;
    }

    .site-nav.nav-open {
        height: auto;
    }
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    max-width: 100vw;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0.6;
    animation: glow-shift 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--glow-color);
    margin-bottom: 32px;
    transition: box-shadow 0.3s ease;
}

.hero h1 {
    font-size: 56px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary), #9B59F0);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px var(--glow-color);
}

body.after-hours-active .hero-cta {
    background: linear-gradient(135deg, var(--primary), #FF6E9F);
    color: #000;
}

body.after-hours-active .hero-cta svg {
    fill: #000;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glow-strong);
    text-decoration: none;
}

.hero-cta svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Countdown Timer */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
    padding: 12px 8px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.countdown-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-sep {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-subtle);
    padding-bottom: 16px;
}

/* Coming Soon Tooltip */
.store-button--coming-soon {
    position: relative;
    cursor: default;
    opacity: 0.7;
}

.store-button--coming-soon::after {
    content: "Available March 1, 2026";
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
}

.store-button--coming-soon::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--surface-elevated);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 10;
}

.store-button--coming-soon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.store-button--coming-soon:hover::before {
    opacity: 1;
}

.store-button--coming-soon:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.85;
}

/* Launch Badge */
.hero-launch-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(187, 134, 252, 0.12);
    border: 1px solid rgba(187, 134, 252, 0.3);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

body.after-hours-active .hero-launch-badge {
    background: rgba(255, 45, 85, 0.12);
    border-color: rgba(255, 45, 85, 0.3);
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    cursor: pointer;
}

.store-button:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--glow-color);
    text-decoration: none;
}

.store-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    flex-shrink: 0;
}

.store-button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
    font-size: 18px;
    font-weight: 600;
}

.store-button-text small {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.store-buttons--cta {
    margin-bottom: 20px;
}

.beta-cta-note {
    font-size: 14px;
    color: var(--text-muted);
}

.beta-cta-note a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.beta-cta-note a:hover {
    color: var(--text);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

@keyframes glow-shift {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 16px 36px;
    }

    .hero::before {
        width: 300px;
        height: 300px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-cta {
        padding: 13px 26px;
        font-size: 15px;
    }

    .hero-launch-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .countdown {
        gap: 4px;
        margin-bottom: 20px;
    }

    .countdown-block {
        min-width: 52px;
        padding: 10px 6px;
        border-radius: 10px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .countdown-sep {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .store-button--coming-soon::after,
    .store-button--coming-soon::before {
        display: none;
    }

    .store-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .store-button {
        padding: 14px 20px;
        gap: 12px;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        min-height: 54px;
    }

    .store-button svg {
        width: 24px;
        height: 24px;
    }

    .store-button-text {
        font-size: 16px;
    }

    .store-button-text small {
        font-size: 10px;
    }

    .beta-cta-note {
        font-size: 13px;
    }

    .hero-scroll {
        bottom: 20px;
    }
}

/* ==========================================================================
   6. Whisper Cards
   ========================================================================== */

.whispers-section {
    padding: 80px 0;
}

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

.whispers-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.whispers-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.whisper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.whisper-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.whisper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-color);
    border-color: var(--primary);
}

/* Image whisper */
.whisper-card--image {
    position: relative;
}

.whisper-card--image .whisper-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.whisper-card--image .whisper-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 80px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

/* Text-only whisper */
.whisper-card--text {
    display: flex;
    flex-direction: column;
}

.whisper-card--text .whisper-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.whisper-card--text .whisper-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whisper-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.whisper-card--text .whisper-text p {
    font-size: 18px;
    text-align: center;
}

.whisper-card--image .whisper-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.whisper-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

.whisper-card--image .whisper-meta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.whisper-location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.whisper-location svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
}

.whisper-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whisper-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.whisper-stat svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

.whisper-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.whisper-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(187, 134, 252, 0.15);
    color: var(--primary);
    border: 1px solid rgba(187, 134, 252, 0.3);
}

body.after-hours-active .whisper-tag {
    background: rgba(255, 45, 85, 0.15);
    border-color: rgba(255, 45, 85, 0.3);
}

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

.whispers-cta p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.whispers-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.whispers-cta a:hover {
    background: rgba(187, 134, 252, 0.1);
    text-decoration: none;
}

body.after-hours-active .whispers-cta a:hover {
    background: rgba(255, 45, 85, 0.1);
}

.whispers-empty {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
}

.whispers-empty h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

@media (max-width: 1024px) {
    .whisper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .whispers-section {
        padding: 48px 0;
    }

    .whispers-header {
        margin-bottom: 28px;
    }

    .whispers-header h2 {
        font-size: 24px;
    }

    .whispers-header p {
        font-size: 14px;
    }

    .whisper-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 32px;
    }

    .whisper-card {
        min-height: 200px;
    }

    .whisper-card--text .whisper-content {
        padding: 20px;
    }

    .whisper-card--text .whisper-text p {
        font-size: 16px;
    }

    .whispers-cta p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .whispers-cta a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ==========================================================================
   6b. How It Works Section
   ========================================================================== */

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.how-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.how-step-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(187, 134, 252, 0.1);
    border-radius: 50%;
}

body.after-hours-active .how-step-icon {
    background: rgba(255, 45, 85, 0.1);
}

.how-step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.how-step-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.how-step-body {
    flex: 1;
    min-width: 0;
}

.how-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.how-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .how-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
        text-align: left;
    }

    .how-step-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        margin: 0;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .how-step-num {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: -3px;
        right: -3px;
    }

    .how-step-icon svg {
        width: 22px;
        height: 22px;
    }

    .how-step-body {
        flex: 1;
        min-width: 0;
    }

    .how-step h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .how-step p {
        font-size: 13px;
    }
}

/* ==========================================================================
   6c. Communities Section
   ========================================================================== */

.communities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.community-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.community-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
    transform: translateY(-4px);
}

.community-card--featured {
    border-color: rgba(187, 134, 252, 0.2);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(187, 134, 252, 0.04) 100%);
}

body.after-hours-active .community-card--featured {
    border-color: rgba(255, 45, 85, 0.2);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(255, 45, 85, 0.04) 100%);
}

.community-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(187, 134, 252, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

body.after-hours-active .community-card-icon {
    background: rgba(255, 45, 85, 0.1);
}

.community-card-icon svg {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    max-height: 26px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.community-card-body {
    flex: 1;
    min-width: 0;
}

.community-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.community-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.communities-cta p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.communities-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #9B59F0);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px var(--glow-color);
}

body.after-hours-active .communities-cta a {
    background: linear-gradient(135deg, var(--primary), #FF6E9F);
    color: #000;
}

body.after-hours-active .communities-cta a svg {
    stroke: #000;
}

.communities-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glow-strong);
    text-decoration: none;
}

@media (max-width: 768px) {
    .communities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .community-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        text-align: left;
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .community-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        max-width: 44px;
        max-height: 44px;
        margin: 0;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .community-card-icon svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .community-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .community-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .communities-cta p {
        font-size: 14px;
    }

    .communities-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==========================================================================
   7. Features Section
   ========================================================================== */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.feature {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(187, 134, 252, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

body.after-hours-active .feature-icon {
    background: rgba(255, 45, 85, 0.15);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 32px;
    }

    .feature {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .feature p {
        font-size: 13px;
    }
}

/* ==========================================================================
   7a. Privacy & Security Section
   ========================================================================== */

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.security-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.security-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-card--featured {
    border-color: rgba(187, 134, 252, 0.25);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(187, 134, 252, 0.06) 100%);
}

body.after-hours-active .security-card--featured {
    border-color: rgba(255, 45, 85, 0.25);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(255, 45, 85, 0.06) 100%);
}

.security-card--featured:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
}

.security-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(187, 134, 252, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

body.after-hours-active .security-card-icon {
    background: rgba(255, 45, 85, 0.12);
}

.security-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.security-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(187, 134, 252, 0.12);
    border: 1px solid rgba(187, 134, 252, 0.3);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

body.after-hours-active .security-card-badge {
    background: rgba(255, 45, 85, 0.12);
    border-color: rgba(255, 45, 85, 0.3);
}

.security-card-body {
    flex: 1;
    min-width: 0;
}

.security-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.security-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.security-card p strong {
    color: var(--primary);
}

.security-tech-details {
    margin-top: 12px;
}

.security-tech-details summary {
    cursor: pointer;
    color: var(--text-subtle);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    user-select: none;
    transition: color 0.2s ease;
}

.security-tech-details summary:hover {
    color: var(--primary);
}

.security-tech-details p {
    margin-top: 10px;
    font-family: 'SFMono-Regular', Menlo, monospace;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-subtle);
}

.security-stack {
    text-align: center;
    padding: 20px 24px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.security-stack p {
    font-family: 'Space Mono', 'SFMono-Regular', Menlo, monospace;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }

    .security-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 16px;
    }

    .security-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin: 0;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .security-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .security-card-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-bottom: 8px;
    }

    .security-card h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .security-card p {
        font-size: 13px;
    }

    .security-tech-details summary {
        font-size: 11px;
    }

    .security-tech-details p {
        font-size: 12px;
    }

    .security-stack {
        padding: 16px 18px;
    }

    .security-stack p {
        font-size: 10px;
        word-spacing: -1px;
    }
}

/* ==========================================================================
   7b. ZKP Explainer Section
   ========================================================================== */

.zkp-explainer {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 36px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border-light);
}

.zkp-explainer-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(187, 134, 252, 0.1);
}

body.after-hours-active .zkp-explainer-icon {
    background: rgba(255, 45, 85, 0.1);
}

.zkp-explainer-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.zkp-explainer h2 {
    font-size: 26px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zkp-explainer > p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.zkp-explainer > p strong {
    color: var(--primary);
}

.zkp-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.zkp-step {
    flex: 1;
    padding: 20px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.zkp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.zkp-step p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.zkp-bottom-line {
    color: var(--text-muted);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .zkp-explainer {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .zkp-explainer h2 {
        font-size: 20px;
    }

    .zkp-explainer > p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .zkp-steps {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }

    .zkp-step {
        padding: 16px;
    }

    .zkp-step p {
        font-size: 13px;
    }

    .zkp-bottom-line {
        font-size: 13px;
    }
}

/* ==========================================================================
   8. Positioning Section (What Sets Us Apart)
   ========================================================================== */

.positioning-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.positioning-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.positioning-content h2 {
    font-size: 32px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.positioning-content p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.positioning-content p:last-child {
    margin-bottom: 0;
}

.positioning-content strong {
    color: var(--primary);
}

/* ==========================================================================
   8b. Switching Banner
   ========================================================================== */

.switching-banner {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(187, 134, 252, 0.04) 50%, var(--bg) 100%);
}

body.after-hours-active .switching-banner {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 45, 85, 0.04) 50%, var(--bg) 100%);
}

.switching-banner-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.switching-banner-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 120px;
    background: radial-gradient(ellipse, var(--glow-color) 0%, transparent 70%);
    pointer-events: none;
}

.switching-banner-inner h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.switching-banner-inner p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.switching-banner-inner p:last-of-type {
    margin-bottom: 28px;
}

.switching-banner-inner strong {
    color: var(--primary);
}

.switching-banner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.switching-banner-date {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.switching-banner-divider {
    color: var(--text-subtle);
}

.switching-banner-message {
    color: var(--text-muted);
    font-size: 15px;
}

.switching-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.switching-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.switching-btn--primary {
    background: var(--primary);
    color: #0A0A0A;
    box-shadow: 0 4px 20px var(--glow-color);
}

.switching-btn--primary:hover {
    box-shadow: 0 6px 30px var(--glow-strong);
    transform: translateY(-1px);
}

.switching-btn--share {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border-light);
}

.switching-btn--share:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 600px) {
    .switching-banner-inner {
        padding: 32px 20px;
    }

    .switching-banner-inner h2 {
        font-size: 22px;
    }

    .switching-banner-cta {
        flex-direction: column;
        gap: 6px;
    }

    .switching-banner-divider {
        display: none;
    }

    .switching-banner-actions {
        flex-direction: column;
    }

    .switching-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   9. SEO Story Sections
   ========================================================================== */

.seo-story {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 36px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: left;
}

.seo-story h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.seo-story p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.seo-story p:last-child {
    margin-bottom: 0;
}

.seo-story ul {
    list-style: decimal;
    margin-left: 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

.seo-story li {
    margin-bottom: 12px;
}

.seo-story strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .seo-story {
        padding: 24px;
    }

    .seo-story h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   10. Screenshots
   ========================================================================== */

.screenshot-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 48px 0;
}

.screenshot-row img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 70%);
    object-fit: cover;
}

@media (max-width: 768px) {
    .screenshot-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 28px 0;
    }

    .screenshot-row img {
        border-radius: 16px;
        max-width: 75%;
        margin: 0 auto;
    }
}

/* ==========================================================================
   11. After Hours Banner
   ========================================================================== */

.after-hours-banner {
    margin: 56px 0 12px;
    background: linear-gradient(120deg, rgba(255, 45, 85, 0.15), rgba(187, 134, 252, 0.05));
    border: 1px solid rgba(255, 45, 85, 0.4);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.after-hours-banner::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 22px;
    background: radial-gradient(circle at 20% 30%, rgba(255, 45, 85, 0.25), transparent 50%);
    opacity: 0.5;
    animation: aurora 6s ease-in-out infinite;
}

.after-hours-badge {
    position: relative;
    min-width: 220px;
    padding: 26px 32px;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(255, 45, 85, 0.4), rgba(255, 45, 85, 0.05));
    border: 1px solid rgba(255, 102, 145, 0.55);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255, 45, 85, 0.28);
    backdrop-filter: blur(8px);
}

.after-hours-badge::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.after-hours-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #FFC7DA;
    display: block;
}

.after-hours-chip {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 45, 85, 0.45);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF5C8A;
    background: rgba(255, 45, 85, 0.12);
}

.after-hours-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF2D55;
    box-shadow: 0 0 8px rgba(255, 45, 85, 0.6);
}

.after-hours-time {
    font-family: 'Space Mono', 'SFMono-Regular', Menlo, monospace;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF385F;
}

.after-hours-content {
    position: relative;
}

.after-hours-content h3 {
    margin-bottom: 8px;
    font-size: 26px;
}

.after-hours-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.after-hours-content strong {
    color: #FF2D55;
}

@keyframes aurora {
    0% { transform: translate(-10%, -5%); opacity: 0.4; }
    50% { transform: translate(5%, 10%); opacity: 0.7; }
    100% { transform: translate(-10%, -5%); opacity: 0.4; }
}

@media (max-width: 768px) {
    .after-hours-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px 14px;
        gap: 14px;
        border-radius: 16px;
    }

    .after-hours-badge {
        min-width: unset;
        width: auto;
        max-width: 240px;
        margin: 0 auto;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .after-hours-time {
        font-size: 22px;
    }

    .after-hours-content h3 {
        font-size: 18px;
    }

    .after-hours-content p {
        font-size: 13px;
    }
}

/* ==========================================================================
   12. Beta CTA
   ========================================================================== */

.beta-cta {
    background: var(--surface);
    border: 1px solid rgba(187, 134, 252, 0.25);
    border-radius: 24px;
    padding: 48px 36px;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.after-hours-active .beta-cta {
    border-color: rgba(255, 45, 85, 0.25);
}

.beta-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(187, 134, 252, 0.12), transparent 60%);
    pointer-events: none;
}

body.after-hours-active .beta-cta::before {
    background: radial-gradient(circle at 50% 0%, rgba(255, 45, 85, 0.12), transparent 60%);
}

.beta-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(187, 134, 252, 0.35);
    background: rgba(187, 134, 252, 0.1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

body.after-hours-active .beta-cta-badge {
    border-color: rgba(255, 45, 85, 0.35);
    background: rgba(255, 45, 85, 0.1);
}

.beta-cta-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--glow-color);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.beta-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.beta-cta p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 28px;
    position: relative;
}

.beta-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--primary), #9B59F0);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px var(--glow-color);
    position: relative;
}

body.after-hours-active .beta-cta-button {
    background: linear-gradient(135deg, var(--primary), #FF6E9F);
    color: #000;
}

body.after-hours-active .beta-cta-button svg {
    fill: #000;
}

.beta-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--glow-strong);
    text-decoration: none;
}

.beta-cta-button:active {
    transform: translateY(0);
}

.beta-cta-button svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.beta-cta-steps {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
    position: relative;
}

.beta-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.beta-step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(187, 134, 252, 0.15);
    border: 1px solid rgba(187, 134, 252, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

body.after-hours-active .beta-step-number {
    background: rgba(255, 45, 85, 0.15);
    border-color: rgba(255, 45, 85, 0.3);
}

@media (max-width: 768px) {
    .beta-cta {
        padding: 28px 20px;
        border-radius: 18px;
        margin-bottom: 32px;
    }

    .beta-cta h2 {
        font-size: 24px;
    }

    .beta-cta p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .beta-cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .beta-cta-steps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 24px;
    }

    .beta-step {
        font-size: 12px;
    }
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-contact-line {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-contact-line a {
    color: var(--primary);
    font-weight: 500;
}

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

.footer-legal {
    color: var(--text-subtle);
    font-size: 12px;
}

/* ==========================================================================
   14. Section Headers
   ========================================================================== */

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header--gradient h2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
}

/* ==========================================================================
   15. Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }

/* ==========================================================================
   16. FAQ Page
   ========================================================================== */

.faq-page {
    padding-top: 120px;
}

.faq-page .section-header h1 {
    font-size: 40px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.3px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(187, 134, 252, 0.3);
}

.after-hours-active .faq-item:hover {
    border-color: rgba(255, 45, 85, 0.3);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '\2212';
    color: var(--primary);
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item[open] {
    border-color: rgba(187, 134, 252, 0.2);
}

.after-hours-active .faq-item[open] {
    border-color: rgba(255, 45, 85, 0.2);
}

.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 8px 0 10px;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 6px;
}

.faq-answer strong {
    color: var(--text);
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--primary);
}

.faq-contact {
    text-align: center;
    padding: 48px 0 0;
    border-top: 1px solid var(--border);
}

.faq-contact h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.faq-contact p {
    color: var(--text-muted);
    font-size: 15px;
}

.faq-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-page {
        padding-top: 100px;
    }

    .faq-page .section-header h1 {
        font-size: 30px;
    }

    .faq-category-title {
        font-size: 18px;
    }

    .faq-item summary {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 14px;
        font-size: 13px;
    }
}

/* ==========================================================================
   16b. Support Page
   ========================================================================== */

.support-page {
    padding-top: 120px;
}

.support-page .section-header h1 {
    font-size: 40px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Card */
.support-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(160deg, var(--surface) 0%, rgba(187, 134, 252, 0.04) 100%);
    border: 1px solid rgba(187, 134, 252, 0.2);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 40px;
}

body.after-hours-active .support-contact-card {
    border-color: rgba(255, 45, 85, 0.2);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(255, 45, 85, 0.04) 100%);
}

.support-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(187, 134, 252, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.after-hours-active .support-contact-icon {
    background: rgba(255, 45, 85, 0.12);
}

.support-contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.support-contact-body h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.support-contact-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.support-contact-body p:last-child {
    margin-bottom: 0;
}

.support-contact-body a {
    color: var(--primary);
    font-weight: 600;
}

.support-contact-note {
    font-size: 13px !important;
    color: var(--text-subtle) !important;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
}

/* Quick Links */
.support-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 48px;
}

.support-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.support-quick-link:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
    text-decoration: none;
}

.support-quick-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    flex-shrink: 0;
}

/* Support Categories */
.support-category {
    margin-bottom: 48px;
}

.support-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.3px;
}

/* Info Cards (Bug Report, Accessibility) */
.support-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.support-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.support-info-card p:last-child {
    margin-bottom: 0;
}

.support-info-card ul,
.support-info-card ol {
    margin: 8px 0 12px;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.support-info-card li {
    margin-bottom: 6px;
}

.support-info-card strong {
    color: var(--text);
}

.support-info-card a {
    color: var(--primary);
    font-weight: 600;
}

/* Helpful Links Grid */
.support-links-section {
    margin-bottom: 48px;
}

.support-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.support-link-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.support-link-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.support-link-card svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.support-link-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.support-link-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Support Page Responsive */
@media (max-width: 768px) {
    .support-page {
        padding-top: 100px;
    }

    .support-page .section-header h1 {
        font-size: 30px;
    }

    .support-contact-card {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .support-contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }

    .support-contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .support-quick-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 32px;
    }

    .support-quick-link {
        padding: 12px 14px;
        font-size: 13px;
        gap: 8px;
    }

    .support-quick-link svg {
        width: 16px;
        height: 16px;
    }

    .support-category-title {
        font-size: 18px;
    }

    .support-info-card {
        padding: 18px 16px;
    }

    .support-info-card p,
    .support-info-card ul,
    .support-info-card ol {
        font-size: 13px;
    }

    .support-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .support-link-card {
        padding: 16px;
        gap: 12px;
    }

    .support-link-card svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .support-link-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .support-quick-links {
        grid-template-columns: 1fr;
    }
}

/* ===== Appeal Form ===== */

.appeal-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.appeal-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}

.form-required {
    color: var(--danger);
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-subtle);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--glow-color);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 12px;
    color: var(--text-subtle);
    margin-top: 6px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 4px 20px var(--glow-color);
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--glow-strong);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-message--success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.form-message--error {
    background: rgba(255, 45, 85, 0.1);
    border: 1px solid rgba(255, 45, 85, 0.3);
    color: var(--danger);
}

@media (max-width: 768px) {
    .appeal-form {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   Compare Page
   ========================================================================== */

.compare-hero {
    padding: 120px 0 40px;
}

.compare-hero h1 {
    font-size: 38px;
    line-height: 1.2;
}

/* --- App Profile Cards --- */

.compare-profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.compare-profile {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
}

.compare-profile--nocturnal {
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--glow-color);
}

.compare-profile-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--primary);
    color: #0A0A0A;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 999px;
}

.compare-profile h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.compare-profile--nocturnal h3 {
    color: var(--primary);
}

.compare-profile-year {
    font-size: 13px;
    color: var(--text-subtle);
    margin-bottom: 14px;
}

.compare-profile-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.compare-profile-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-profile-highlights li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.compare-profile-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
}

.compare-profile--nocturnal .compare-profile-highlights li::before {
    background: var(--primary);
    box-shadow: 0 0 6px var(--glow-color);
}

/* --- Legacy Badge & Tribute --- */

.compare-profile-badge--legacy {
    background: var(--secondary);
}

.compare-profile--legacy {
    border-color: rgba(3, 218, 198, 0.25);
}

.compare-profile--legacy h3 {
    color: var(--secondary);
}

.compare-profile--legacy .compare-profile-highlights li::before {
    background: var(--secondary);
    box-shadow: 0 0 6px rgba(3, 218, 198, 0.4);
}

.compare-tribute {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--surface);
    border: 1px solid rgba(3, 218, 198, 0.15);
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(3, 218, 198, 0.05);
}

.compare-tribute h2 {
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.compare-tribute p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.compare-tribute strong {
    color: var(--secondary);
}

.compare-tribute-signature {
    margin-top: 24px;
    margin-bottom: 0 !important;
    font-style: italic;
    color: var(--secondary) !important;
    font-size: 17px !important;
}

@media (max-width: 600px) {
    .compare-tribute {
        padding: 32px 20px;
    }

    .compare-tribute h2 {
        font-size: 21px;
    }

    .compare-tribute p {
        font-size: 14px;
    }
}

/* --- Comparison Table --- */

.compare-table-wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 75vh;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.compare-table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.compare-table thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: var(--surface-elevated);
    padding: 16px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 var(--border);
}

.compare-th--nocturnal {
    color: var(--primary) !important;
}

.compare-group-header td {
    position: sticky;
    top: 49px;
    z-index: 2;
    background: var(--surface);
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 var(--border);
}

.compare-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.compare-feature {
    font-weight: 500;
    color: var(--text);
    min-width: 200px;
}

.compare-cell {
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
}

.compare-cell--yes {
    color: var(--secondary);
}

.compare-cell--no {
    color: var(--text-subtle);
}

.compare-cell--partial {
    color: #FFA726;
}

.compare-check {
    font-weight: 700;
    font-size: 16px;
    margin-right: 4px;
}

.compare-x {
    font-weight: 700;
    font-size: 16px;
    margin-right: 4px;
    opacity: 0.5;
}

.compare-partial {
    font-weight: 700;
    font-size: 16px;
    margin-right: 4px;
}

.compare-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* --- Legend --- */

.compare-legend {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.compare-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Detail Cards --- */

.compare-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.compare-detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.compare-detail-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.compare-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(187, 134, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

body.after-hours-active .compare-detail-icon {
    background: rgba(255, 45, 85, 0.1);
}

.compare-detail-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    fill: none;
}

.compare-detail-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.compare-detail-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.compare-detail-card em {
    color: var(--primary);
    font-style: italic;
}

/* --- Final CTA actions --- */

.compare-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 16px;
}

/* --- Compare Page Responsive --- */

@media (max-width: 900px) {
    .compare-profiles {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .compare-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .compare-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .compare-hero {
        padding: 90px 0 24px;
    }

    .compare-hero h1 {
        font-size: 24px;
    }

    .compare-profile {
        padding: 24px 18px;
    }

    .compare-details-grid {
        grid-template-columns: 1fr;
    }

    .compare-detail-card {
        padding: 22px 18px;
    }

    .compare-legend {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .compare-final-actions {
        flex-direction: column;
    }

    .compare-final-actions .switching-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Mobile Global Overrides
   ========================================================================== */

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

    .section {
        padding: 36px 0;
        scroll-margin-top: 64px;
    }

    [id] {
        scroll-margin-top: 64px;
    }

    .site-main {
        padding-top: 56px;
    }

    .site-nav {
        height: 56px;
    }

    .positioning-section {
        padding: 36px 0;
    }

    .positioning-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .positioning-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .after-hours-banner {
        margin: 20px 0 8px;
    }

    .seo-story {
        padding: 20px 16px;
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .seo-story h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .seo-story p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .seo-story ul {
        margin-left: 18px;
        font-size: 13px;
    }

    .site-footer {
        padding: 28px 0;
    }

    .footer-inner {
        gap: 16px;
        padding: 0 16px;
    }

    .footer-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-legal {
        font-size: 11px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-tagline {
        font-size: 13px;
    }

    .hero-cta {
        padding: 12px 22px;
        font-size: 14px;
    }

    .beta-cta h2 {
        font-size: 20px;
    }

    .after-hours-time {
        font-size: 18px;
    }

    .after-hours-badge {
        max-width: 200px;
        padding: 14px 12px;
    }

    .after-hours-content h3 {
        font-size: 16px;
    }
}

/* ==========================================================================
   Abbr Tooltip Styles (Technical Terms)
   ========================================================================== */

abbr[title] {
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
    cursor: help;
    position: relative;
}

@media (hover: hover) {
    abbr[title]:hover {
        color: var(--primary);
    }
}

/* ==========================================================================
   Hero ZKP Badge
   ========================================================================== */

.hero-zkp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(3, 218, 198, 0.08);
    border: 1px solid rgba(3, 218, 198, 0.3);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    animation: badge-glow 4s ease-in-out infinite;
}

.hero-zkp-badge svg {
    flex-shrink: 0;
    stroke: var(--secondary);
}

.hero-zkp-badge abbr[title] {
    border-bottom-color: var(--secondary);
}

body.after-hours-active .hero-zkp-badge {
    background: rgba(255, 45, 85, 0.08);
    border-color: rgba(255, 45, 85, 0.3);
    color: var(--primary);
}

body.after-hours-active .hero-zkp-badge svg {
    stroke: var(--primary);
}

body.after-hours-active .hero-zkp-badge abbr[title] {
    border-bottom-color: var(--primary);
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(3, 218, 198, 0.1); }
    50% { box-shadow: 0 0 20px rgba(3, 218, 198, 0.2); }
}

body.after-hours-active .hero-zkp-badge {
    animation-name: badge-glow-ah;
}

@keyframes badge-glow-ah {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 45, 85, 0.1); }
    50% { box-shadow: 0 0 20px rgba(255, 45, 85, 0.2); }
}

@media (max-width: 768px) {
    .hero-zkp-badge {
        font-size: 11px;
        padding: 8px 16px;
        gap: 6px;
        margin-bottom: 12px;
    }

    .hero-zkp-badge svg {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================================================
   Compare Hero Badge
   ========================================================================== */

.compare-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(3, 218, 198, 0.08);
    border: 1px solid rgba(3, 218, 198, 0.3);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

body.after-hours-active .compare-hero-badge {
    background: rgba(255, 45, 85, 0.08);
    border-color: rgba(255, 45, 85, 0.3);
    color: var(--primary);
}

.compare-hero-badge abbr[title] {
    border-bottom-color: var(--secondary);
}

body.after-hours-active .compare-hero-badge abbr[title] {
    border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
    .compare-hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Compare Moral CTA
   ========================================================================== */

.compare-moral-cta {
    text-align: center;
    margin-top: 32px;
    padding: 24px 28px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid rgba(3, 218, 198, 0.15);
}

.compare-moral-cta p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .compare-moral-cta {
        padding: 18px 20px;
        margin-top: 24px;
    }

    .compare-moral-cta p {
        font-size: 13px;
    }
}

/* ==========================================================================
   Digital Discretion Card
   ========================================================================== */

.discretion-card {
    background: var(--surface);
    border: 1px solid rgba(187, 134, 252, 0.2);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.discretion-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, var(--glow-color) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.discretion-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 36px;
    position: relative;
}

.discretion-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(187, 134, 252, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.after-hours-active .discretion-icon {
    background: rgba(255, 45, 85, 0.12);
}

.discretion-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
}

.discretion-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.3);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

body.after-hours-active .discretion-badge {
    background: rgba(255, 45, 85, 0.1);
    border-color: rgba(255, 45, 85, 0.3);
}

.discretion-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.discretion-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 540px;
}

.discretion-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.discretion-tag {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(187, 134, 252, 0.08);
    color: var(--primary);
    border: 1px solid rgba(187, 134, 252, 0.2);
    font-weight: 500;
}

body.after-hours-active .discretion-tag {
    background: rgba(255, 45, 85, 0.08);
    border-color: rgba(255, 45, 85, 0.2);
}

@media (max-width: 768px) {
    .discretion-card-inner {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }

    .discretion-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .discretion-icon svg {
        width: 22px;
        height: 22px;
    }

    .discretion-body h3 {
        font-size: 18px;
    }

    .discretion-body p {
        font-size: 14px;
    }

    .discretion-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ==========================================================================
   Global vs Local (Day 1 Density)
   ========================================================================== */

.density-grid {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.density-card {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.density-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.density-card--global {
    border-color: rgba(3, 218, 198, 0.2);
}

.density-card--global:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(3, 218, 198, 0.1);
}

.density-card--local {
    border-color: rgba(187, 134, 252, 0.2);
}

body.after-hours-active .density-card--local {
    border-color: rgba(255, 45, 85, 0.2);
}

.density-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.density-card--global .density-card-icon {
    background: rgba(3, 218, 198, 0.1);
}

.density-card--global .density-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--secondary);
    fill: none;
}

.density-card--local .density-card-icon {
    background: rgba(187, 134, 252, 0.1);
}

body.after-hours-active .density-card--local .density-card-icon {
    background: rgba(255, 45, 85, 0.1);
}

.density-card--local .density-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
    fill: none;
}

.density-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.density-card--global h3 {
    color: var(--secondary);
}

.density-card--local h3 {
    color: var(--primary);
}

.density-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.density-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
}

.density-divider span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.density-footnote {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .density-grid {
        flex-direction: column;
        gap: 12px;
    }

    .density-card {
        padding: 24px 20px;
    }

    .density-card h3 {
        font-size: 16px;
    }

    .density-card p {
        font-size: 13px;
    }

    .density-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .density-card-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .density-divider {
        width: auto;
        height: 20px;
    }

    .density-footnote {
        font-size: 13px;
        margin-top: 20px;
    }
}
