/* ═══════════════════════════════════════════════════════════════════════════
   EduPreps Landing Page — Editorial Design System
   Two storefronts: Academy (academic/daylight) + Guild (professional/studio)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   FONTS
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Typography */
    --font-display: 'Epilogue', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Base Colors */
    --bg: #fafbfc;
    --ink: #0f172a;
    --ink-muted: #475569;
    --ink-subtle: #64748b;
    --border: #e2e8f0;

    /* Academy Colors — Morning/Daylight warmth */
    --academy-bg: #f8fafc;
    --academy-accent: #2563eb;
    --academy-accent-dark: #1d4ed8;
    --academy-secondary: #7c3aed;
    --academy-glow: rgba(37, 99, 235, 0.12);
    --academy-warm: #fff7ed;
    --academy-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);

    /* Guild Colors — Studio/Cinematic */
    --guild-bg: #0a0f1a;
    --guild-surface: #111827;
    --guild-ink: #f8fafc;
    --guild-muted: #94a3b8;
    --guild-gold: #f59e0b;
    --guild-gold-light: #fbbf24;
    --guild-gold-glow: rgba(251, 191, 36, 0.2);
    --guild-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

    /* Functional */
    --success: #10b981;
    --error: #ef4444;

    /* Layout */
    --container-width: 1200px;
    --header-height: 72px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

p { margin: 0; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; }

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

/* ─────────────────────────────────────────────────────────────────────────────
   TOPBAR / NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.topbar .container {
    height: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.brand .logo {
    height: 46px;
    object-fit: contain;
}

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

.navlinks a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-muted);
    border-radius: 8px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.navlinks a:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.04);
}

/* Locale Selector */
.locale-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.locale-dropdown {
    position: relative;
}

.locale-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.locale-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

.locale-btn .fi {
    width: 18px;
    height: 14px;
    border-radius: 2px;
}

.locale-btn .locale-lang {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--ink);
}

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

.locale-btn .chevron {
    opacity: 0.5;
    transition: transform var(--transition-fast);
}

.locale-dropdown.open .locale-btn .chevron {
    transform: rotate(180deg);
}

.locale-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.locale-dropdown.open .locale-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.locale-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.locale-option:hover {
    background: rgba(0, 0, 0, 0.04);
}

.locale-option.selected {
    background: var(--academy-glow);
    color: var(--academy-accent);
}

.locale-option .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.locale-option .locale-lang {
    font-weight: 600;
    font-size: 0.8rem;
}

.locale-option .check {
    margin-left: auto;
    color: var(--academy-accent);
}

/* Nav CTAs */
.navcta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn:hover {
    background: var(--bg);
    border-color: #cbd5e1;
}

.btn.small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn.primary {
    color: white;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: transparent;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    padding: 8px;
    background: transparent;
    border: none;
    color: var(--ink);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

.mobile-locale-selector {
    display: flex;
    gap: 12px;
}

.mobile-locale-selector select {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SPLIT HERO
   ───────────────────────────────────────────────────────────────────────────── */
.split-hero {
    display: flex;
    min-height: 100vh;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.split-hero-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    cursor: pointer;
    transition: flex var(--transition-smooth);
}

/* Hover: hovered panel grows, sibling shrinks */
.split-hero:hover .split-hero-panel {
    flex: 0.4;
}

.split-hero:hover .split-hero-panel:hover {
    flex: 0.6;
}

/* Academy Panel — Warm daylight with subtle blue tint */
.split-panel-academy {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #fffbf5 0%, #f0f7ff 50%, #ffffff 100%);
}

/* Guild Panel — Cinematic studio with gold accent lighting */
.split-panel-guild {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
    color: var(--guild-ink);
}

/* Content */
.split-hero-content {
    max-width: 480px;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.split-hero:hover .split-hero-panel:not(:hover) .split-hero-content {
    opacity: 0.6;
    transform: scale(0.96);
}

/* Badge Group */
.split-hero-badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.split-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.split-panel-academy .split-hero-badge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(124, 58, 237, 0.12) 100%);
    color: var(--academy-accent);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.split-panel-guild .split-hero-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: var(--guild-gold-light);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.split-hero-powered {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-subtle);
}

.split-panel-guild .split-hero-powered {
    color: var(--guild-muted);
}

/* Headline */
.split-hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.split-panel-academy .split-hero-headline strong {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-panel-guild .split-hero-headline strong {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 30%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

/* Body */
.split-hero-body {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--ink-muted);
}

.split-panel-guild .split-hero-body {
    color: var(--guild-muted);
}

/* CTA Button */
.split-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.split-hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.split-hero-cta:hover svg {
    transform: translateX(4px);
}

.split-panel-academy .split-hero-cta {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.split-panel-academy .split-hero-cta:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.split-panel-guild .split-hero-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a0f1a;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.3);
}

.split-panel-guild .split-hero-cta:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.5);
}

/* Divider */
.split-hero-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
}

.split-hero-divider-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.15), transparent);
}

.split-hero-divider-or {
    padding: 10px 14px;
    background: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink-muted);
    box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOBILE DECISION GATE
   Hidden on desktop, replaces split-hero on mobile
   ───────────────────────────────────────────────────────────────────────────── */
.mobile-decision-gate {
    display: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ENGINE POSITIONING
   ───────────────────────────────────────────────────────────────────────────── */
.engine-positioning {
    padding: 48px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.engine-tagline {
    text-align: center;
    font-size: 1.15rem;
    color: var(--ink-muted);
}

.engine-tagline strong {
    font-weight: 700;
}

.engine-tagline strong:first-of-type {
    color: var(--academy-accent);
}

.engine-tagline strong:last-of-type {
    color: var(--guild-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   INTRO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.intro-section {
    padding: 100px 0;
    background: white;
}

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

.intro-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   JOURNEY SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.journey-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse 80% 40% at 20% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        var(--bg);
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink);
}

.journey-header p {
    font-size: 1.1rem;
    color: var(--ink-muted);
}

.journey-path {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0 40px;
}

/* SVG Journey Line */
.journey-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 1;
    overflow: visible;
}

.journey-line-bg {
    stroke: #e2e8f0;
    stroke-width: 3;
    fill: none;
}

.journey-line-active {
    stroke: url(#journeyGradient);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawJourneyLine 2.5s ease-out forwards;
}

@keyframes drawJourneyLine {
    to { stroke-dashoffset: 0; }
}

/* Milestones */
.journey-milestones {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.journey-milestone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}

.milestone-node {
    width: 64px;
    height: 64px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.milestone-node svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.milestone-node.node-start {
    color: var(--academy-accent);
    border-color: var(--academy-accent);
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15), 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.milestone-node.node-progress {
    color: #7c3aed;
    border-color: #7c3aed;
    background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15), 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.milestone-node.node-outcome {
    color: var(--success);
    border-color: var(--success);
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15), 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.milestone-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-subtle);
    margin-bottom: 8px;
}

.milestone-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.milestone-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: 20px;
}

.milestone-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.milestone-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.milestone-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--academy-glow);
    border-radius: 6px;
}

.milestone-card-icon svg {
    width: 16px;
    height: 16px;
    color: var(--academy-accent);
}

.milestone-card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPARE SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.compare-section {
    padding: 100px 0;
    background: white;
}

.compare-header {
    text-align: center;
    margin-bottom: 60px;
}

.compare-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink);
}

.compare-header p {
    font-size: 1.1rem;
    color: var(--ink-muted);
    max-width: 600px;
    margin: 0 auto;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Chaos Side */
.compare-old {
    position: relative;
}

.compare-chaos {
    position: relative;
    height: 320px;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(239, 68, 68, 0.03) 10px,
            rgba(239, 68, 68, 0.03) 20px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(239, 68, 68, 0.02) 10px,
            rgba(239, 68, 68, 0.02) 20px
        ),
        linear-gradient(135deg, #fef2f2 0%, #fff5f5 50%, #fef2f2 100%);
    border: 2px dashed #fca5a5;
    border-radius: 20px;
    overflow: hidden;
}

.chaos-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.08);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-muted);
    transition: transform var(--transition-base);
}

.chaos-item svg {
    width: 18px;
    height: 18px;
    color: #ef4444;
    opacity: 0.7;
}

.chaos-item:nth-child(1) { top: 20px; left: 15px; transform: rotate(-6deg); }
.chaos-item:nth-child(2) { top: 30px; right: 20px; transform: rotate(8deg); }
.chaos-item:nth-child(3) { top: 50%; left: 10%; transform: translateY(-50%) rotate(-3deg); }
.chaos-item:nth-child(4) { bottom: 60px; right: 15px; transform: rotate(5deg); }
.chaos-item:nth-child(5) { bottom: 70px; left: 25%; transform: rotate(-8deg); }
.chaos-item:nth-child(6) { bottom: 20px; right: 30%; transform: rotate(4deg); }

.compare-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

.compare-old .compare-caption {
    color: #dc2626;
    font-weight: 700;
}

.compare-new .compare-caption {
    color: #059669;
    font-weight: 700;
}

/* Arrow */
.compare-arrow {
    display: flex;
    justify-content: center;
    color: var(--ink-subtle);
}

.compare-arrow svg {
    width: 32px;
    height: 32px;
    opacity: 0.4;
}

/* Unified Side */
.compare-new {
    position: relative;
}

.compare-unified {
    height: 320px;
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    box-shadow:
        var(--shadow-lg),
        0 0 0 1px rgba(37, 99, 235, 0.05),
        0 0 40px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.unified-header {
    display: flex;
    gap: 6px;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.unified-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.unified-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.unified-pane {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition-fast);
}

.unified-pane:nth-child(2n) {
    border-right: none;
}

.unified-pane:nth-child(n+3) {
    border-bottom: none;
}

.unified-pane:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(124, 58, 237, 0.04) 100%);
}

.unified-pane svg {
    width: 24px;
    height: 24px;
    color: var(--academy-accent);
}

.unified-pane:hover svg {
    color: #4f46e5;
}

.unified-pane span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TRUST SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.trust-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse 100% 50% at 50% 0%, rgba(251, 191, 36, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
    color: var(--guild-ink);
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.trust-header p {
    font-size: 1.1rem;
    color: var(--guild-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.trust-item {
    background: var(--guild-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.12) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.15);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: var(--guild-gold-light);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--guild-muted);
    margin-bottom: 20px;
}

.trust-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #34d399;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.trust-verified-badge svg {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}

/* ─────────────────────────────────────────────────────────────────────────────
   TEACH SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.teach-section {
    padding: 100px 0;
    background: var(--bg);
}

.teach-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 20px;
    box-shadow:
        var(--shadow-md),
        0 0 40px rgba(124, 58, 237, 0.06);
}

.teach-content {
    flex: 1;
}

.teach-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c3aed;
    margin-bottom: 16px;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.1);
}

.teach-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--ink);
}

.teach-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.teach-levels {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.teach-level {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.teach-level-academy {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    color: var(--academy-accent);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.teach-level-guild {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
    color: var(--guild-gold);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.teach-cta {
    flex-shrink: 0;
}

.btn-teach {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.btn-teach:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

.btn-teach svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-teach:hover svg {
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────────────────────────── */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, var(--bg) 100%);
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink);
}

.final-cta-content p {
    font-size: 1.15rem;
    color: var(--ink-muted);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-final {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-final-academy {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-final-academy:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.btn-final-guild {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-final-guild:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 20px rgba(251, 191, 36, 0.15);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
footer {
    padding: 80px 0 40px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1a 0%, #0f172a 100%);
    color: var(--guild-ink);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

footer h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

footer > .container > .footer-grid > div:first-child > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--guild-muted);
    max-width: 400px;
    margin-bottom: 24px;
}

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

.foot-links a {
    font-size: 0.9rem;
    color: var(--guild-muted);
    transition: color var(--transition-fast);
}

.foot-links a:hover {
    color: white;
}

.footer-cta {
    display: flex;
    gap: 12px;
}

.footer-cta .btn {
    background: var(--guild-surface);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-cta .btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-cta .btn.primary {
    background: white;
    color: var(--guild-bg);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--guild-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   MODALS
   ───────────────────────────────────────────────────────────────────────────── */
.prelaunch-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.prelaunch-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.prelaunch-modal {
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.98);
    transition: transform var(--transition-base);
}

.prelaunch-modal-overlay.open .prelaunch-modal {
    transform: translateY(0) scale(1);
}

.prelaunch-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.prelaunch-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.prelaunch-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 1.5rem;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.prelaunch-modal-close:hover {
    background: var(--bg);
    color: var(--ink);
}

/* View containers (form, success, error) must participate in flex layout */
#mentorApplicationFormView,
#mentorApplicationSuccessView,
#mentorApplicationErrorView,
#waitlistFormView {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.prelaunch-modal > form,
#mentorApplicationFormView > form,
#waitlistFormView > form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.prelaunch-modal-body {
    flex: 1;
    min-height: 0;
    padding: 24px;
    overflow-y: auto;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.prelaunch-form-group {
    margin-bottom: 20px;
}

.prelaunch-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.prelaunch-form-group .required {
    color: var(--error);
}

.prelaunch-form-group input,
.prelaunch-form-group select,
.prelaunch-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

/* Destination Selector */
.destination-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.destination-option {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.destination-option:hover {
    border-color: #cbd5e1;
}

.destination-option input {
    display: none;
}

.destination-option input:checked + .destination-label {
    color: var(--academy-accent);
}

.destination-academy:has(input:checked) {
    border-color: var(--academy-accent);
    background: var(--academy-glow);
}

.destination-guild:has(input:checked) {
    border-color: var(--guild-gold);
    background: rgba(217, 119, 6, 0.08);
}

.destination-guild:has(input:checked) .destination-label {
    color: var(--guild-gold);
}

.destination-teach:has(input:checked) {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
}

.destination-teach:has(input:checked) .destination-label {
    color: #7c3aed;
}

.destination-both:has(input:checked) {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
}

.destination-both:has(input:checked) .destination-label {
    color: #0ea5e9;
}

.destination-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-desc {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* Interests */
.prelaunch-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prelaunch-interest-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: auto;
}

.prelaunch-interest-item:hover {
    background: white;
    border-color: #cbd5e1;
}

.prelaunch-interest-item:has(input:checked) {
    background: var(--academy-glow);
    border-color: var(--academy-accent);
    color: var(--academy-accent);
}

.prelaunch-interest-item input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--academy-accent);
}

.prelaunch-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

/* Result Views */
.prelaunch-result-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
}

.prelaunch-result-icon {
    margin-bottom: 24px;
}

.prelaunch-result-icon.success svg {
    color: var(--success);
}

.prelaunch-result-icon.error svg {
    color: var(--error);
}

.prelaunch-result-message {
    font-size: 1.05rem;
    color: var(--ink-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TOAST NOTIFICATIONS
   ───────────────────────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3000;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform var(--transition-base);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--error);
}

.toast-info {
    border-left: 4px solid var(--academy-accent);
}

.toast button {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .teach-card {
        flex-direction: column;
        text-align: center;
    }

    .teach-levels {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .navlinks,
    .locale-selector,
    .navcta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Split Hero — hidden on mobile, replaced by decision gate */
    .split-hero {
        display: none;
    }

    /* Mobile Decision Gate */
    .mobile-decision-gate {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 20px 48px;
        background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 100%);
        min-height: 100dvh;
        justify-content: center;
        gap: 32px;
    }

    .gate-header {
        text-align: center;
    }

    .gate-label {
        font-family: var(--font-display);
        font-size: 1.125rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--ink-muted);
    }

    .gate-cards {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 400px;
    }

    .gate-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
        border-radius: 16px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        text-align: left;
        width: 100%;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .gate-card:active {
        transform: scale(0.98);
    }

    /* Academy card — light, structured, warm */
    .gate-card-academy {
        background: #ffffff;
        border: 1.5px solid #e8e5df;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .gate-card-academy .gate-card-badge {
        background: #f0ebe3;
        color: #8b7355;
    }

    .gate-card-academy .gate-card-verb {
        color: #1a1a1a;
    }

    .gate-card-academy .gate-card-line {
        color: #6b6560;
    }

    .gate-card-academy .gate-card-cta {
        color: #8b7355;
    }

    /* Guild card — dark, elite, commanding */
    .gate-card-guild {
        background: #0d0d0d;
        border: 1.5px solid #2a2a2a;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    .gate-card-guild .gate-card-badge {
        background: rgba(196, 167, 125, 0.15);
        color: #c4a77d;
    }

    .gate-card-guild .gate-card-verb {
        color: #f5f0e8;
    }

    .gate-card-guild .gate-card-line {
        color: #9a9590;
    }

    .gate-card-guild .gate-card-cta {
        color: #c4a77d;
    }

    /* Card inner elements */
    .gate-card-badge {
        display: inline-block;
        font-family: var(--font-mono, 'JetBrains Mono', monospace);
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 4px;
        margin-bottom: 16px;
    }

    .gate-card-verb {
        font-family: var(--font-display);
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.1;
        margin: 0 0 8px;
    }

    .gate-card-line {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin: 0 0 20px;
    }

    .gate-card-cta {
        font-family: var(--font-mono, 'JetBrains Mono', monospace);
        font-size: 0.8125rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .gate-arrow {
        transition: transform 0.2s ease;
    }

    .gate-card:hover .gate-arrow,
    .gate-card:active .gate-arrow {
        transform: translateX(4px);
    }

    /* "or" divider between cards */
    .gate-or-divider {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 0;
    }

    .gate-or-line {
        flex: 1;
        height: 1px;
        background: #ddd8d0;
    }

    .gate-or-text {
        font-family: var(--font-display);
        font-size: 0.8125rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: lowercase;
        color: var(--ink-muted);
    }

    /* Footer tagline */
    .gate-footer {
        text-align: center;
        padding-top: 8px;
    }

    .gate-neutral {
        font-size: 0.8125rem;
        color: var(--ink-muted);
        font-style: italic;
        letter-spacing: 0.01em;
    }

    /* Journey */
    .journey-line {
        display: none;
    }

    .journey-milestones {
        flex-direction: column;
        gap: 48px;
    }

    .journey-milestone {
        padding: 0;
    }

    /* Compare */
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .compare-arrow {
        transform: rotate(90deg);
    }

    .compare-chaos,
    .compare-unified {
        height: 280px;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-cta {
        width: 100%;
    }

    .footer-cta .btn {
        flex: 1;
    }

    /* Modal */
    .prelaunch-form-row {
        grid-template-columns: 1fr;
    }

    .prelaunch-modal {
        max-height: 95vh;
    }
}

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

    .split-hero-panel {
        padding: 48px 20px;
    }

    .split-hero-headline {
        font-size: 2rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .btn-final {
        width: 100%;
    }

    .destination-selector {
        gap: 8px;
    }

    .destination-option {
        padding: 12px;
    }
}
