/* =========================================================
   FlyAiT - Your Personal Control Tower
   ========================================================= */

:root {
    --navy: #110B2E;
    --navy-2: #1A1140;
    --light: #F5F5F7;
    --ink: #2D1B69;
    --magenta: #D4006E;
    --pink: #FF6EC7;
    --purple: #8B5CF6;
    --purple-secondary: #6B5B8A;
    --purple-tertiary: #9B90B0;
    --purple-light: #c084fc;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow-soft: 0 20px 60px rgba(139, 92, 246, 0.18), 0 8px 24px rgba(212, 0, 110, 0.12);
    --gradient: linear-gradient(100deg, var(--purple) 0%, var(--magenta) 52%, var(--pink) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(212, 0, 110, 0.18) 52%, rgba(255, 110, 199, 0.22));
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* Lock the page to the dark theme so OS dark mode doesn't auto-invert anything. */
    color-scheme: dark;
    background: var(--navy);
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-feature-settings: 'ss01', 'cv11';
    background: var(--navy);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

/* The legal pages opt into a light surface. */
html.legal-html { color-scheme: light; background: #ffffff; }
body.legal-body { color-scheme: light; color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cap-t {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 40;
    background: rgba(17, 11, 46, 0.55);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled {
    background: rgba(17, 11, 46, 0.82);
    border-bottom-color: rgba(212, 0, 110, 0.18);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 28px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 36px; height: 36px; object-fit: contain; }
.nav-wordmark {
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: var(--white);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--gradient);
    box-shadow: 0 10px 30px rgba(212, 0, 110, 0.35);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(212, 0, 110, 0.5); }

@media (max-width: 800px) {
    .nav-links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: radial-gradient(120% 80% at 50% -10%, #2A1766 0%, var(--navy) 55%, #0A0520 100%);
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(500px 360px at 12% 28%, rgba(139, 92, 246, 0.28), transparent 60%),
        radial-gradient(600px 420px at 82% 18%, rgba(212, 0, 110, 0.28), transparent 60%),
        radial-gradient(420px 320px at 70% 90%, rgba(255, 110, 199, 0.18), transparent 60%);
    pointer-events: none;
    filter: blur(6px);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-copy {
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-anim .hero-copy {
    opacity: 0;
    transform: translateY(18px);
}
.hero-phone {
    transition: opacity 0.8s var(--ease) 0.15s, transform 0.8s var(--ease) 0.15s;
    display: flex;
    justify-content: center;
    position: relative;
}
.js-anim .hero-phone {
    opacity: 0;
    transform: translateY(18px);
}
.hero-copy.in-view, .hero-phone.in-view { opacity: 1; transform: none; }

.eagle-stage {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 26px;
}
.eagle-glow {
    position: absolute;
    inset: -40%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 0, 110, 0.45) 0%, rgba(139, 92, 246, 0.2) 40%, transparent 70%);
    filter: blur(18px);
    animation: pulseGlow 4s ease-in-out infinite;
}
.eagle-logo { position: relative; width: 100%; height: 100%; object-fit: contain; }

@keyframes pulseGlow {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.wordmark {
    font-size: clamp(56px, 9vw, 104px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}
.swirl-bar {
    display: block;
    width: 140px;
    height: 6px;
    border-radius: 999px;
    background: var(--gradient);
    margin: 0 0 26px;
    box-shadow: 0 4px 18px rgba(212, 0, 110, 0.6);
    position: relative;
}
.swirl-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    mix-blend-mode: overlay;
    animation: swirl 3.2s ease-in-out infinite;
}
@keyframes swirl {
    0% { transform: translateX(-60%); opacity: 0; }
    50% { opacity: 0.9; }
    100% { transform: translateX(60%); opacity: 0; }
}

.hero-headline {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
}
.hero-subhead {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.hero-desc {
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 0 28px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}
.feature-list.light li { color: rgba(255, 255, 255, 0.88); }
.dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 7px;
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.18), 0 0 18px rgba(212, 0, 110, 0.55);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* APP STORE BUTTON */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 14px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(212, 0, 110, 0);
    transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(212, 0, 110, 0.35);
    border-color: rgba(212, 0, 110, 0.4);
}
.as-icon { width: 28px; height: 28px; color: #fff; }
.as-text { display: flex; flex-direction: column; line-height: 1.05; }
.as-small { font-size: 10px; letter-spacing: 0.08em; opacity: 0.85; text-transform: uppercase; }
.as-big { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.app-store-btn-lg { padding: 16px 28px; }
.app-store-btn-lg .as-big { font-size: 22px; }

.ghost-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ghost-btn:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(212, 0, 110, 0.5); }

/* =========================================================
   PHONE MOCKUP - real screenshot inside iPhone-style frame
   ========================================================= */
.phone-frame {
    position: relative;
    width: 320px;
    aspect-ratio: 1280 / 2773;
    border-radius: 52px;
    padding: 12px;
    background: linear-gradient(160deg, #2a1a5e 0%, #140a3a 55%, #0a0520 100%);
    box-shadow:
        0 40px 90px rgba(139, 92, 246, 0.28),
        0 20px 50px rgba(212, 0, 110, 0.22),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
        inset 0 0 0 3px rgba(0, 0, 0, 0.65);
    transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.6s var(--ease);
    overflow: hidden;
}
.phone-frame:hover { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }

.phone-notch {
    position: absolute;
    top: 22px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 30px;
    background: #000;
    border-radius: 18px;
    z-index: 2;
}

.phone-screenshot {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    object-fit: cover;
    object-position: top center;
    display: block;
    background: #0a0520;
}

.phone-shadow {
    position: absolute;
    bottom: -50px; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 50px;
    background: radial-gradient(ellipse, rgba(212, 0, 110, 0.4), transparent 65%);
    filter: blur(20px);
}

@keyframes waveBar {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1.3); }
}

/* =========================================================
   GENERIC SECTION LAYOUT
   ========================================================= */
.section {
    position: relative;
    padding: 120px 0;
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-anim .section {
    opacity: 0;
    transform: translateY(24px);
}
.section.in-view { opacity: 1; transform: none; }

.section-dark {
    background: var(--navy);
    color: var(--white);
}
.section-dark + .section-dark {
    background: linear-gradient(180deg, var(--navy) 0%, #14093A 100%);
}
.section-light {
    background: var(--light);
    color: var(--ink);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.two-col.reverse .visual-col { order: 2; }
.two-col.reverse .copy-col { order: 1; }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 110, 199, 0.1);
    border: 1px solid rgba(255, 110, 199, 0.25);
}
.eyebrow-light {
    color: var(--magenta);
    background: rgba(212, 0, 110, 0.08);
    border-color: rgba(212, 0, 110, 0.2);
}
.section-headline {
    font-size: clamp(32px, 4.4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}
.section-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin: 0 0 28px;
}
.section-desc.dark { color: rgba(45, 27, 105, 0.82); }
.section-light .eyebrow-light { }
.section-light .feature-list li { color: var(--ink); }
.section-light .dot {
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.12);
}

/* =========================================================
   SECTION 2 - MIC / PRE-FLIGHT
   ========================================================= */
.mic-stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    display: grid;
    place-items: center;
}
.mic-circle {
    position: relative;
    z-index: 3;
    width: 42%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--gradient);
    display: grid;
    place-items: center;
    box-shadow: 0 24px 60px rgba(212, 0, 110, 0.55), inset 0 2px 10px rgba(255, 255, 255, 0.25);
}
.mic-circle::after {
    content: '';
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}
.mic-icon { width: 48%; height: 48%; color: #fff; }

.wave-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 0, 110, 0.35);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.ring-1 { width: 62%; height: 62%; animation: ring 3.4s ease-out infinite; }
.ring-2 { width: 82%; height: 82%; animation: ring 3.4s ease-out 0.6s infinite; }
.ring-3 { width: 100%; height: 100%; animation: ring 3.4s ease-out 1.2s infinite; border-color: rgba(255, 110, 199, 0.22); }
@keyframes ring {
    0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.85); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

.sound-bars {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: flex-end; gap: 6px;
    height: 32px;
    z-index: 2;
}
.sound-bars span {
    width: 4px;
    border-radius: 2px;
    background: var(--pink);
    box-shadow: 0 0 12px rgba(255, 110, 199, 0.65);
    animation: waveBar 1.4s ease-in-out infinite;
}
.sound-bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.sound-bars span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.sound-bars span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.sound-bars span:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.sound-bars span:nth-child(5) { height: 95%; animation-delay: 0.4s; }
.sound-bars span:nth-child(6) { height: 40%; animation-delay: 0.5s; }
.sound-bars span:nth-child(7) { height: 75%; animation-delay: 0.6s; }
.sound-bars span:nth-child(8) { height: 55%; animation-delay: 0.7s; }
.sound-bars span:nth-child(9) { height: 30%; animation-delay: 0.8s; }

/* =========================================================
   SECTION 3 - CLOCK
   ========================================================= */
.clock-stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.clock-face {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #2a1766, #140a3a 70%);
    border: 1px solid rgba(139, 92, 246, 0.22);
    display: grid;
    place-items: center;
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.3), inset 0 0 0 8px rgba(255, 255, 255, 0.03);
}
.clock-ring {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.28);
    animation: slowSpin 40s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.leave-badge {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    box-shadow: 0 8px 24px rgba(212, 0, 110, 0.5);
}
.clock-time {
    font-size: 108px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--purple);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-top: 14px;
}
.clock-meridian {
    position: absolute;
    bottom: 46px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
}
.metric-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 360px;
}
.mpill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 0, 110, 0.25);
    border-radius: 16px;
    padding: 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.mpill:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 0, 110, 0.55);
}
.mpill-num {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mpill-lbl { font-size: 10px; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.6); font-weight: 700; }

/* =========================================================
   SECTION 4 - WALLET CARD
   ========================================================= */
.section-glow { overflow: hidden; }
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.6;
}
.blob-a { width: 500px; height: 500px; top: -120px; right: -120px; background: rgba(212, 0, 110, 0.35); }
.blob-b { width: 420px; height: 420px; bottom: -140px; left: -100px; background: rgba(139, 92, 246, 0.28); }

.wallet-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.wallet-pass-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.wallet-card {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(165deg, #1C1048 0%, #0E0527 100%);
    border-radius: 26px;
    padding: 22px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 30px 80px rgba(212, 0, 110, 0.28),
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s var(--ease);
    position: relative;
    overflow: hidden;
}
.wallet-card:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.wallet-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -30%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(212, 0, 110, 0.45), transparent 60%);
    pointer-events: none;
}
.wallet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
}
.wallet-brand { display: flex; align-items: center; gap: 8px; }
.wallet-eagle { width: 24px; height: 24px; object-fit: contain; }
.wallet-wordmark { font-weight: 800; font-size: 15px; letter-spacing: -0.02em; }
.wallet-tag {
    font-size: 9px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}
.wallet-body { position: relative; }
.wallet-leaveby {
    display: flex; flex-direction: column; gap: 4px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.wl-label {
    font-size: 10px; letter-spacing: 0.22em; font-weight: 700; color: var(--pink);
}
.wl-time {
    font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-bottom: 18px;
}
.wg-cell { display: flex; flex-direction: column; gap: 2px; }
.wg-label { font-size: 9px; letter-spacing: 0.2em; font-weight: 700; color: rgba(255, 255, 255, 0.5); }
.wg-value { font-size: 15px; font-weight: 700; color: var(--white); }
.wallet-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.wallet-apple {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 12px;
    border-radius: 8px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.wallet-chip {
    width: 36px; height: 24px;
    background: linear-gradient(135deg, #c9a04a, #8c6b26);
    border-radius: 5px;
    opacity: 0.7;
}

.autopilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 0, 110, 0.14);
    border: 1px solid rgba(212, 0, 110, 0.45);
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    box-shadow: 0 10px 30px rgba(212, 0, 110, 0.25);
}
.ab-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 110, 199, 0.25), 0 0 14px rgba(255, 110, 199, 0.7);
    animation: pulseGlow 2s ease-in-out infinite;
}

/* PRICING */
.price-row {
    display: flex;
    gap: 14px;
    margin: 6px 0 14px;
    flex-wrap: wrap;
}
.price-card {
    position: relative;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 160px;
}
.price-featured {
    border-color: rgba(212, 0, 110, 0.45);
    background: rgba(212, 0, 110, 0.1);
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.2);
}
.price-flag {
    position: absolute;
    top: -10px; right: 14px;
    background: var(--gradient);
    color: #fff;
    font-size: 9px;
    letter-spacing: 0.18em;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(212, 0, 110, 0.45);
}
.price-amt {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-per {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.trial-note {
    font-size: 14px;
    color: var(--pink);
    margin: 0 0 22px;
    font-weight: 500;
}

/* =========================================================
   SECTION 5 - TRAVELER REPORTS
   ========================================================= */
.section-light .section-headline {
    /* gradient already applied */
}
.travelers-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 8px;
}
.stat-card {
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(45, 27, 105, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 28px rgba(45, 27, 105, 0.06);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212, 0, 110, 0.12); }
.stat-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-lbl {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(45, 27, 105, 0.65);
    font-weight: 600;
    text-transform: uppercase;
}

.travelers-visual {
    position: relative;
    min-height: 420px;
}
.report-card {
    position: absolute;
    width: 82%;
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(45, 27, 105, 0.08);
    box-shadow: 0 20px 50px rgba(45, 27, 105, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--ink);
}
.report-card:nth-child(1) { top: 0; left: 0; transform: rotate(-2deg); z-index: 3; }
.report-card.offset { top: 120px; right: 0; left: auto; transform: rotate(2deg); z-index: 2; }
.report-card.offset-2 { bottom: 0; left: 10%; transform: rotate(-1deg); z-index: 1; }
.rc-top { display: flex; align-items: center; gap: 10px; }
.rc-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 700;
}
.rc-b { background: linear-gradient(135deg, var(--purple), var(--magenta)); }
.rc-c { background: linear-gradient(135deg, var(--magenta), var(--pink)); }
.rc-meta { display: flex; flex-direction: column; line-height: 1.3; }
.rc-meta strong { font-size: 14px; color: var(--ink); font-weight: 700; }
.rc-meta em { font-size: 11px; color: rgba(45, 27, 105, 0.55); font-style: normal; letter-spacing: 0.04em; }
.rc-body { font-size: 14px; color: rgba(45, 27, 105, 0.85); margin: 0; line-height: 1.45; }
.rc-wait {
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(212, 0, 110, 0.08);
    color: var(--magenta);
    border: 1px solid rgba(212, 0, 110, 0.2);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.section-final {
    text-align: center;
    padding: 110px 0 140px;
    background: linear-gradient(180deg, #14093A 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.final-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 0, 110, 0.3), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}
.final-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.final-inner .section-headline { margin-bottom: 4px; }
.final-inner .section-desc { margin-bottom: 12px; text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #0A0520;
    padding: 80px 0 36px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(212, 0, 110, 0.15);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-eagle { width: 32px; height: 32px; object-fit: contain; }
.footer-wordmark { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.footer-tag {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.footer-addr {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h3 {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 6px;
    font-weight: 700;
}
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--pink); }
.footer-cta { display: flex; align-items: flex-start; }
.footer-app { width: 100%; max-width: 220px; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
}
.footer-meta { letter-spacing: 0.02em; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1040px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
    .footer-cta { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    .hero { padding: 120px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .eagle-stage { margin-left: auto; margin-right: auto; }
    .swirl-bar { margin-left: auto; margin-right: auto; }
    .hero-desc, .feature-list { margin-left: auto; margin-right: auto; }
    .feature-list li { justify-content: flex-start; }
    .cta-row { justify-content: center; }
    .hero-copy { text-align: center; }
    .feature-list { display: inline-grid; text-align: left; }
    .section { padding: 90px 0; }
    .two-col { grid-template-columns: 1fr; gap: 50px; }
    .two-col.reverse .visual-col, .two-col.reverse .copy-col { order: initial; }
    .copy-col { text-align: center; }
    .copy-col .feature-list { display: inline-grid; text-align: left; }
    .section-desc { margin-left: auto; margin-right: auto; }
    .eyebrow { }
    .travelers-grid { grid-template-columns: 1fr; gap: 50px; }
    .travelers-visual { min-height: 460px; max-width: 420px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; max-width: 100%; }
    .footer-cta { grid-column: 1 / -1; justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .price-row { justify-content: center; }
}
@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 12px 20px; }
    .nav-cta { padding: 9px 14px; font-size: 13px; }
    .phone-frame { width: 260px; }
    .clock-face { width: 260px; height: 260px; }
    .clock-time { font-size: 90px; }
    .stat-row { grid-template-columns: 1fr; }
    .metric-pills { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .app-store-btn-lg { padding: 14px 22px; }
    .app-store-btn-lg .as-big { font-size: 19px; }
    .hero-desc { font-size: 17px; }
    .section-desc { font-size: 16px; }
}

/* =========================================================
   SECTION 2 - BUZZ THE TOWER VISUAL
   ========================================================= */
.buzz-stage {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 28px 32px 40px;
    border-radius: 36px;
    background:
        radial-gradient(ellipse at 50% -20%, rgba(139, 92, 246, 0.35), transparent 60%),
        linear-gradient(170deg, #1a1148 0%, #120a36 60%, #0c0624 100%);
    border: 1px solid rgba(255, 110, 199, 0.22);
    box-shadow:
        0 40px 100px rgba(139, 92, 246, 0.32),
        0 15px 50px rgba(212, 0, 110, 0.22),
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.buzz-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.buzz-tower-lbl {
    font-weight: 800;
    font-size: 18px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
}
.on-air {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--pink);
    text-transform: uppercase;
}
.on-air-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 0 rgba(255, 110, 199, 0.6), 0 0 10px rgba(255, 110, 199, 0.9);
    animation: onAirPulse 1.2s ease-in-out infinite;
}
@keyframes onAirPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 110, 199, 0.6), 0 0 10px rgba(255, 110, 199, 0.9); opacity: 0.85; }
    70% { box-shadow: 0 0 0 9px rgba(255, 110, 199, 0), 0 0 14px rgba(255, 110, 199, 1); opacity: 1; }
    100% { box-shadow: 0 0 0 0 rgba(255, 110, 199, 0), 0 0 10px rgba(255, 110, 199, 0.9); opacity: 0.85; }
}
.buzz-eagle {
    width: 92px;
    height: auto;
    filter: drop-shadow(0 6px 22px rgba(212, 0, 110, 0.55));
}
.buzz-wordmark {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: -4px;
}
.buzz-greeting {
    align-self: stretch;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 18px 18px 18px 4px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 4px;
}
.buzz-sender {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--pink);
    font-weight: 800;
    margin-bottom: 4px;
}
.buzz-mic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    display: grid;
    place-items: center;
    color: white;
    cursor: default;
    box-shadow: 0 12px 32px rgba(212, 0, 110, 0.55), 0 0 0 0 rgba(212, 0, 110, 0.4);
    animation: micPulse 2s ease-out infinite;
    margin-top: 6px;
}
.buzz-mic svg { width: 28px; height: 28px; }
@keyframes micPulse {
    0% { box-shadow: 0 12px 32px rgba(212, 0, 110, 0.55), 0 0 0 0 rgba(212, 0, 110, 0.5); }
    100% { box-shadow: 0 12px 32px rgba(212, 0, 110, 0.55), 0 0 0 26px rgba(212, 0, 110, 0); }
}
.buzz-headline {
    font-style: italic;
}
.top-gun-line {
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.68);
    margin: 24px 0 0;
    padding-top: 22px;
    border-top: 1px dashed rgba(255, 110, 199, 0.28);
    max-width: 520px;
}

/* =========================================================
   SECTION 5 - FLYAIT WINGS
   ========================================================= */
#wings { padding: 120px 0; }
.wings-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.wings-head .section-headline { margin: 0 0 8px; }
.wings-subhead {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin: 0 0 22px;
}
.wings-intro {
    margin: 0 auto !important;
    text-align: center;
    max-width: 640px;
}

.rank-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 44px;
    align-items: stretch;
}
.rank-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08), 0 2px 8px rgba(45, 27, 105, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(139, 92, 246, 0.14), 0 4px 14px rgba(45, 27, 105, 0.08);
}
.rank-card.rank-featured {
    background: linear-gradient(180deg, #ffffff 0%, #fdf3fb 100%);
    transform: scale(1.04);
    box-shadow:
        0 24px 48px rgba(212, 0, 110, 0.2),
        0 0 0 2px rgba(255, 110, 199, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.rank-card.rank-featured:hover { transform: scale(1.04) translateY(-4px); }
.rank-badge {
    width: 96px;
    height: 64px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
}
.rank-badge svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.rank-fo   { color: #A4A4B8; filter: drop-shadow(0 4px 10px rgba(139, 92, 246, 0.18)); }
.rank-cap  { color: #B87333; filter: drop-shadow(0 4px 10px rgba(184, 115, 51, 0.35)); }
.rank-fc   { color: #D4006E; filter: drop-shadow(0 4px 12px rgba(212, 0, 110, 0.35)); }
.rank-cmdr {
    color: #E5B939;
    filter: drop-shadow(0 4px 14px rgba(255, 110, 199, 0.55));
    animation: commanderGlow 3s ease-in-out infinite;
}
@keyframes commanderGlow {
    0%, 100% { filter: drop-shadow(0 4px 14px rgba(255, 110, 199, 0.5)); }
    50%      { filter: drop-shadow(0 6px 24px rgba(255, 110, 199, 0.9)); }
}

.rank-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.rank-range {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--magenta);
    margin: 0 0 14px;
}
.rank-desc {
    font-size: 14px;
    color: rgba(45, 27, 105, 0.78);
    margin: 0;
    line-height: 1.5;
}

.wings-foot {
    text-align: center;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.wings-foot strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* =========================================================
   AUTOPILOT - WINGS PRICING LINE
   ========================================================= */
.wings-note {
    font-size: 14px;
    font-weight: 700;
    color: var(--pink);
    margin: 14px 0 4px;
    letter-spacing: 0.005em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wings-note::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

/* =========================================================
   BUZZ TOWER + WINGS RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .rank-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .rank-card.rank-featured { transform: none; }
    .rank-card.rank-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 560px) {
    .buzz-stage { padding: 22px 22px 32px; max-width: 360px; }
    .buzz-eagle { width: 76px; }
    .buzz-wordmark { font-size: 28px; }
    .buzz-mic { width: 56px; height: 56px; }
    .rank-badge { width: 80px; height: 54px; }
    .rank-card { padding: 22px 16px; }
    #wings { padding: 80px 0; }
    .wings-head { margin-bottom: 40px; }
}

/* =========================================================
   GROUND CREW
   ========================================================= */
.crew-subhead {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.crew-stage {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
.crew-phone {
    position: relative;
    width: 240px;
    border-radius: 32px;
    background: linear-gradient(160deg, #1C1048 0%, #0E0527 100%);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 70px rgba(212, 0, 110, 0.28),
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.6s var(--ease);
    z-index: 2;
}
.crew-phone:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.crew-phone-top {
    display: flex;
    gap: 5px;
    padding: 4px 0 14px;
    justify-content: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.crew-phone-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}
.crew-phone-body {
    padding: 16px 6px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.crew-phone-eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
}
.crew-phone-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.crew-phone-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}
.crew-share-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: default;
    box-shadow: 0 10px 26px rgba(212, 0, 110, 0.45);
    animation: sharePulse 2.6s ease-out infinite;
}
.crew-share-icon { width: 13px; height: 13px; }
@keyframes sharePulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(212, 0, 110, 0.45), 0 0 0 0 rgba(212, 0, 110, 0.4); }
    50% { box-shadow: 0 10px 26px rgba(212, 0, 110, 0.55), 0 0 0 14px rgba(212, 0, 110, 0); }
}

.crew-browser {
    width: 320px;
    max-width: 100%;
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(45, 27, 105, 0.12);
    box-shadow: 0 26px 60px rgba(45, 27, 105, 0.28), 0 8px 24px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    transform: perspective(1400px) rotateY(6deg) rotateX(-2deg) translate(30px, -40px);
    margin-top: -40px;
    margin-left: 80px;
    position: relative;
    z-index: 1;
}
.crew-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: #f4f2f8;
    border-bottom: 1px solid rgba(45, 27, 105, 0.08);
}
.crew-url-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(45, 27, 105, 0.18);
}
.crew-url-dot:nth-child(1) { background: #ff6057; }
.crew-url-dot:nth-child(2) { background: #ffbd2e; }
.crew-url-dot:nth-child(3) { background: #27c93f; }
.crew-url {
    margin-left: 8px;
    font-size: 11px;
    color: rgba(45, 27, 105, 0.58);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.crew-browser-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.crew-browser-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.crew-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.crew-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(45, 27, 105, 0.55);
}
.crew-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(45, 27, 105, 0.18);
    flex: 0 0 auto;
}
.crew-step.done { color: rgba(45, 27, 105, 0.85); }
.crew-step.done .crew-dot { background: #16A34A; }
.crew-step.active { color: var(--magenta); font-weight: 800; }
.crew-step.active .crew-dot {
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.18), 0 0 12px rgba(212, 0, 110, 0.55);
    animation: pulseGlow 1.8s ease-in-out infinite;
}

/* =========================================================
   CLEAR TO CURB - MILESTONE RAIL
   ========================================================= */
.milestone-rail {
    list-style: none;
    margin: 0;
    padding: 28px 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: ms;
    background:
        radial-gradient(ellipse at 50% -10%, rgba(139, 92, 246, 0.28), transparent 60%),
        linear-gradient(170deg, #1a1148 0%, #120a36 60%, #0c0624 100%);
    border: 1px solid rgba(255, 110, 199, 0.22);
    border-radius: 28px;
    box-shadow:
        0 40px 100px rgba(139, 92, 246, 0.28),
        0 15px 50px rgba(212, 0, 110, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    max-width: 360px;
    margin: 0 auto;
    position: relative;
}
.ms {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    position: relative;
}
.ms + .ms::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 33px;
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}
.ms.done + .ms::before,
.ms.done + .ms.active::before { background: rgba(22, 163, 74, 0.55); }
.ms-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}
.ms.done .ms-dot {
    background: #16A34A;
    border-color: #16A34A;
    box-shadow: 0 0 18px rgba(22, 163, 74, 0.45);
}
.ms.done .ms-dot::after {
    content: '';
    width: 6px; height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
}
.ms.active .ms-dot {
    background: var(--magenta);
    border-color: var(--magenta);
    box-shadow: 0 0 0 6px rgba(212, 0, 110, 0.18), 0 0 22px rgba(212, 0, 110, 0.55);
    animation: pulseGlow 1.8s ease-in-out infinite;
}
.ms-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: -0.005em;
}
.ms.done .ms-label { color: rgba(255, 255, 255, 0.92); font-weight: 700; }
.ms.active .ms-label {
    color: #fff;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
   WALLET CARD V2 - MAGENTA / NAVY
   ========================================================= */
.wallet-card.wallet-card-v2 {
    background: var(--magenta);
    color: var(--ink);
    border: 1px solid rgba(45, 27, 105, 0.15);
    box-shadow:
        0 30px 80px rgba(212, 0, 110, 0.45),
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.wallet-card-v2::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 60%);
}
.wallet-card-v2 .wallet-eagle {
    filter: brightness(0) saturate(100%) invert(9%) sepia(67%) saturate(4038%) hue-rotate(252deg) brightness(78%) contrast(99%);
}
.wallet-card-v2 .wallet-wordmark,
.wallet-card-v2 .cap-t {
    color: var(--ink);
    -webkit-text-fill-color: var(--ink);
    background: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.wallet-card-v2 .wallet-leaveby {
    border-bottom: 1px dashed rgba(45, 27, 105, 0.28);
}
.wallet-card-v2 .wl-label {
    color: rgba(45, 27, 105, 0.75);
    font-weight: 800;
}
.wallet-card-v2 .wl-time {
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: var(--ink);
    font-weight: 800;
}
.wl-route {
    font-size: 12px;
    font-weight: 600;
    color: rgba(45, 27, 105, 0.82);
    letter-spacing: 0.01em;
    margin-top: 2px;
}
.wallet-card-v2 .wg-label {
    color: rgba(45, 27, 105, 0.65);
    font-weight: 800;
}
.wallet-card-v2 .wg-value {
    color: var(--ink);
    font-weight: 800;
}
.wallet-status {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px dashed rgba(45, 27, 105, 0.28);
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
}
.ws-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    font-weight: 800;
    color: rgba(45, 27, 105, 0.7);
    text-transform: uppercase;
}
.ws-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-style: italic;
}
.wallet-card-v2 .wallet-foot {
    border-top: 1px dashed rgba(45, 27, 105, 0.28);
}
.wallet-card-v2 .wallet-apple {
    background: var(--ink);
    color: #fff;
    border: 1px solid rgba(45, 27, 105, 0.25);
}
.wallet-card-v2 .wallet-chip {
    background: linear-gradient(135deg, #2D1B69, #120A36);
    opacity: 0.85;
}

@media (max-width: 900px) {
    .crew-browser {
        margin-left: 0;
        transform: perspective(1400px) rotateY(0deg) rotateX(0deg);
        width: 100%;
        margin-top: 8px;
    }
    .crew-phone { transform: none; }
}
@media (max-width: 560px) {
    .crew-phone { width: 220px; }
    .crew-browser { width: 100%; }
    .milestone-rail { padding: 20px 6px; }
    .ms { padding: 12px 16px; gap: 12px; }
}

/* =========================================================
   AUTOPILOT - HYBRID-LIGHT (Apr 22)
   Light surface (#F5F5F7) with dark-purple text, magenta-tinted
   cards, and a 5px magenta left bracket on the premium price
   card. Deep-purple gradient reserved for the annual (upgrade)
   card only - never splashed across the full section.
   ========================================================= */
.autopilot-section {
    background: var(--light);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}
.autopilot-section::before {
    /* Subtle magenta wash behind the wallet stage, never on text. */
    content: '';
    position: absolute;
    top: -140px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 0, 110, 0.10), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.autopilot-section .eyebrow-light {
    /* Already styled - keeping for clarity. */
    color: var(--magenta);
}
.autopilot-section .section-headline {
    color: var(--ink);
}
.autopilot-section .section-desc {
    color: rgba(45, 27, 105, 0.82);
}
.autopilot-section .feature-list li {
    color: var(--ink);
}
.autopilot-section .feature-list .dot {
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.12);
}

/* Price cards on light surface */
.autopilot-section .price-card {
    background: rgba(212, 0, 110, 0.05);
    border: 1px solid rgba(212, 0, 110, 0.15);
    color: var(--ink);
    box-shadow: 0 4px 14px rgba(45, 27, 105, 0.06);
}
.autopilot-section .price-per {
    color: var(--purple-secondary);
}
.autopilot-section .price-featured {
    position: relative;
    background: rgba(212, 0, 110, 0.08);
    border-color: rgba(212, 0, 110, 0.28);
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.14);
    padding-left: 26px;
}
.autopilot-section .price-featured::before {
    /* 5px magenta left bracket, the Apr 22 key signature. */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--magenta), var(--pink));
    border-radius: 18px 0 0 18px;
}

.autopilot-section .wings-note {
    color: var(--purple-secondary);
}
.autopilot-section .trial-note {
    color: var(--magenta);
}

/* Autopilot badge pill, light-surface variant */
.autopilot-section .autopilot-badge {
    background: rgba(212, 0, 110, 0.08);
    border-color: rgba(212, 0, 110, 0.28);
    color: var(--magenta);
    box-shadow: 0 10px 22px rgba(212, 0, 110, 0.14);
}
.autopilot-section .ab-dot {
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.2), 0 0 14px rgba(212, 0, 110, 0.6);
}

/* =========================================================
   APR 23 - Pricing framing, Free tier, FAQ
   ========================================================= */

/* Hero: welcome-trial framing line sits between features and CTA.
   On the dark hero surface, muted white base with magenta for the price. */
.hero-pricing {
    margin: -8px 0 22px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.78);
}
.hero-pricing::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 10px rgba(212, 0, 110, 0.8);
    margin-right: 10px;
    vertical-align: middle;
}

/* Autopilot: 8-bullet feature column is denser than the 3-4 elsewhere. */
.autopilot-section .autopilot-features {
    gap: 10px;
    margin-bottom: 28px;
}
.autopilot-section .autopilot-features li {
    font-size: 15.5px;
    line-height: 1.45;
}

/* FlyAit Free tier block - contrast card inside the magenta-tinted Autopilot section */
.autopilot-section .free-tier {
    margin: 0 0 28px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(45, 27, 105, 0.045);
    border: 1px solid rgba(45, 27, 105, 0.12);
    box-shadow: 0 3px 12px rgba(45, 27, 105, 0.04);
}
.autopilot-section .free-tier-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.autopilot-section .free-tier-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}
.autopilot-section .free-tier-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-secondary);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.18);
}
.autopilot-section .free-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
}
.autopilot-section .free-tier-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(45, 27, 105, 0.82);
}
.autopilot-section .free-tier-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-secondary);
    opacity: 0.7;
}
@media (max-width: 720px) {
    .autopilot-section .free-tier-list { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ SECTION - light surface, magenta-tinted accordion
   ========================================================= */
.faq-section {
    background: var(--light);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 110px 0 130px;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -140px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 0, 110, 0.09), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.faq-container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 64px;
    align-items: start;
}
.faq-intro .section-headline { color: var(--ink); }
.faq-intro .section-desc {
    color: rgba(45, 27, 105, 0.82);
    margin-bottom: 0;
}
.faq-link {
    color: var(--magenta);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 0, 110, 0.3);
    transition: border-color 0.2s ease;
}
.faq-link:hover { border-bottom-color: var(--magenta); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    position: relative;
    border-radius: 16px;
    background: rgba(212, 0, 110, 0.04);
    border: 1px solid rgba(212, 0, 110, 0.14);
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.faq-item::before {
    /* 5px magenta left bracket, appears on hover/open - same key signature as Autopilot annual card. */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--magenta), var(--pink));
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.faq-item:hover {
    background: rgba(212, 0, 110, 0.07);
    border-color: rgba(212, 0, 110, 0.24);
    box-shadow: 0 10px 28px rgba(212, 0, 110, 0.1);
}
.faq-item:hover::before,
.faq-item[open]::before {
    opacity: 1;
}
.faq-item[open] {
    background: rgba(212, 0, 110, 0.07);
    border-color: rgba(212, 0, 110, 0.28);
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.12);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    padding-left: 28px;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-icon {
    flex: 0 0 auto;
    position: relative;
    width: 16px;
    height: 16px;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 2px;
    background: var(--magenta);
    border-radius: 2px;
    transform: translateY(-50%);
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-icon::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}
.faq-a {
    padding: 0 24px 22px 28px;
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(45, 27, 105, 0.82);
}
.faq-a p { margin: 0; }

@media (max-width: 860px) {
    .faq-container { grid-template-columns: 1fr; gap: 40px; }
    .faq-section { padding: 80px 0 100px; }
    .faq-item summary { padding: 18px 20px; padding-left: 24px; font-size: 16px; }
    .faq-a { padding: 0 20px 20px 24px; font-size: 15px; }
}

/* =========================================================
   MAY 4 - Pre-launch framing
   Status pill, boarding-pass form, pillars section, pitch cards,
   3-tier pricing grid, trust strip, footer status block
   ========================================================= */

/* HERO: status pill - magenta-on-dark, sits below the sub-tagline. */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 22px;
    padding: 8px 16px 8px 14px;
    border-radius: 999px;
    background: rgba(212, 0, 110, 0.12);
    border: 1px solid rgba(212, 0, 110, 0.42);
    color: #FFD2E8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(212, 0, 110, 0.18);
    backdrop-filter: blur(6px);
}
.status-pill em {
    font-style: italic;
    color: #FFFFFF;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.25), 0 0 14px rgba(212, 0, 110, 0.8);
    animation: status-pulse 1.8s ease-in-out infinite;
}
@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

/* HERO: boarding-pass email-capture form */
.boarding-pass-form {
    margin: 6px 0 0;
    max-width: 540px;
}
.bp-label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
}
.bp-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
}
.bp-input {
    flex: 1 1 240px;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-size: 16px;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.bp-input::placeholder { color: rgba(255, 255, 255, 0.42); }
.bp-input:focus {
    border-color: rgba(212, 0, 110, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.18);
}
.bp-submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--magenta), var(--pink) 60%, var(--purple-light));
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.32), 0 0 0 1px rgba(212, 0, 110, 0.3);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.bp-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(212, 0, 110, 0.42), 0 0 0 1px rgba(212, 0, 110, 0.45);
}
.bp-submit:active { transform: translateY(0); }
.bp-arrow { transition: transform 0.18s ease; }
.bp-submit:hover .bp-arrow { transform: translateX(4px); }
.bp-confirm {
    margin: 14px 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #B4F8C8;
    font-size: 14.5px;
    font-weight: 500;
}
.boarding-pass-form.bp-error .bp-input {
    border-color: rgba(220, 38, 38, 0.55);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}
.boarding-pass-form.bp-submitted .bp-row { opacity: 0.55; }

/* PILLARS SECTION - 4-card grid: My Trip / Plan / Security / Insights */
.pillars-section { padding: 110px 0; }
.pillars-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.pillars-head .eyebrow { margin-bottom: 18px; }
.pillars-head .section-desc { color: rgba(255, 255, 255, 0.78); }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pillar-card {
    position: relative;
    padding: 28px 24px 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 14px 36px rgba(17, 11, 46, 0.32);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--magenta), var(--pink));
    opacity: 0.85;
}
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 0, 110, 0.32);
    box-shadow: 0 22px 48px rgba(212, 0, 110, 0.2);
    background: linear-gradient(180deg, rgba(212, 0, 110, 0.05), rgba(255, 255, 255, 0.015));
}
.pillar-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--magenta);
    margin-bottom: 14px;
}
.pillar-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}
.pillar-body {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

/* AUTOPILOT: sub-headline under the main heading */
.autopilot-section .autopilot-subhead {
    margin: -6px 0 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--magenta);
    letter-spacing: 0.01em;
}

/* AUTOPILOT: 4 pitch cards - verbatim from the in-app Engage Autopilot modal */
.autopilot-section .pitch-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pitch-card {
    position: relative;
    padding: 28px 28px 26px;
    border-radius: 22px;
    background: rgba(192, 132, 252, 0.06);
    border: 1px solid rgba(192, 132, 252, 0.22);
    box-shadow: 0 10px 28px rgba(45, 27, 105, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.pitch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--purple-light), #d8b4fe);
    border-radius: 22px 0 0 22px;
    opacity: 0.9;
}
.pitch-card:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 132, 252, 0.42);
    box-shadow: 0 18px 38px rgba(139, 92, 246, 0.18);
    background: rgba(192, 132, 252, 0.09);
}
.pitch-tab {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #FFFFFF;
    background: var(--purple-light);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.32);
}
.pitch-headline {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.pitch-body {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(45, 27, 105, 0.82);
}
.pitch-chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pitch-chips li {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(192, 132, 252, 0.14);
    border: 1px solid rgba(192, 132, 252, 0.28);
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* AUTOPILOT: 3-tier pricing grid */
.autopilot-section .pricing-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pricing-card {
    position: relative;
    padding: 26px 24px;
    border-radius: 20px;
    background: rgba(212, 0, 110, 0.05);
    border: 1px solid rgba(212, 0, 110, 0.15);
    box-shadow: 0 4px 14px rgba(45, 27, 105, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pricing-card.pricing-featured {
    background: rgba(212, 0, 110, 0.08);
    border-color: rgba(212, 0, 110, 0.28);
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.14);
    padding-left: 28px;
}
.pricing-card.pricing-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--magenta), var(--pink));
    border-radius: 20px 0 0 20px;
}
.pricing-tier {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-secondary);
}
.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
}
.pricing-per {
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-secondary);
    letter-spacing: 0;
}
.pricing-sub {
    margin: 4px 0 0;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(45, 27, 105, 0.72);
}
.pricing-flag {
    position: absolute;
    top: -12px;
    right: 18px;
    padding: 4px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 20px rgba(212, 0, 110, 0.32);
}

/* TRUST STRIP - between Autopilot and FAQ */
.trust-strip {
    background: var(--light);
    border-top: 1px solid rgba(212, 0, 110, 0.08);
    border-bottom: 1px solid rgba(212, 0, 110, 0.08);
    padding: 36px 0;
}
.trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 18px;
    position: relative;
}
.trust-chip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 12px rgba(212, 0, 110, 0.55);
}
.trust-dot { display: none; } /* visual handled by ::before */
.trust-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.01em;
}
.trust-sub {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(45, 27, 105, 0.72);
    line-height: 1.45;
}

/* FOOTER: status block replaces App Store badge until launch */
.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 0, 110, 0.15);
    border: 1px solid rgba(212, 0, 110, 0.45);
    color: #FFD2E8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-style: italic;
}
.footer-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 0 3px rgba(212, 0, 110, 0.25), 0 0 12px rgba(212, 0, 110, 0.8);
    animation: status-pulse 1.8s ease-in-out infinite;
}
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(212, 0, 110, 0.32);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.footer-cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(212, 0, 110, 0.42);
}

/* LEGAL TABLE - for the new privacy policy v2 */
.legal-table-wrap {
    overflow-x: auto;
    margin: 14px 0 22px;
    border-radius: 14px;
    border: 1px solid rgba(212, 0, 110, 0.16);
    background: rgba(212, 0, 110, 0.04);
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}
.legal-table th {
    text-align: left;
    padding: 12px 16px;
    background: rgba(212, 0, 110, 0.10);
    color: var(--ink);
    font-weight: 700;
    border-bottom: 1px solid rgba(212, 0, 110, 0.22);
}
.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(45, 27, 105, 0.10);
    color: rgba(45, 27, 105, 0.85);
    vertical-align: top;
    line-height: 1.5;
}
.legal-table tr:last-child td { border-bottom: none; }

/* RESPONSIVE BREAKPOINTS for May 4 additions */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .autopilot-section .pitch-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .autopilot-section .pricing-grid { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: 1fr; gap: 18px; }
    .bp-row { flex-direction: column; }
    .bp-submit { width: 100%; justify-content: center; }
    .footer-cta { align-items: stretch; }
    .footer-cta-link { justify-content: center; }
    .pillars-section { padding: 80px 0; }
    .status-pill { font-size: 13px; padding: 7px 14px 7px 12px; }
    .pricing-flag { right: auto; left: 18px; }
}

/* =========================================================
   MAY 14 - Pre-launch finals
   Compare section + page, App Store pre-launch state, footer-bottom row
   ========================================================= */

/* APP STORE BADGE - pre-launch state (dimmed, "Available May 19, 2026" label) */
.app-store-prelaunch {
    position: relative;
    opacity: 0.92;
    cursor: default;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.app-store-prelaunch:hover { transform: none; }
.app-store-prelaunch .as-small {
    color: var(--pink);
    letter-spacing: 0.04em;
}
.app-store-prelaunch::after {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 0 3px rgba(212, 0, 110, 0.25), 0 0 14px rgba(212, 0, 110, 0.7);
    animation: status-pulse 1.8s ease-in-out infinite;
}

/* COMPARE SECTION (homepage soft version) */
.compare-section {
    background: var(--light);
    color: var(--ink);
    padding: 110px 0 130px;
    position: relative;
    overflow: hidden;
}
.compare-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 0, 110, 0.10), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.compare-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.10), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}
.compare-section .container { position: relative; }
.compare-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.compare-head .eyebrow { margin-bottom: 18px; }
.compare-head .section-headline { color: var(--ink); }
.compare-head .section-desc { color: rgba(45, 27, 105, 0.82); margin: 0 auto; }
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.compare-card {
    position: relative;
    padding: 36px 32px 32px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(45, 27, 105, 0.10);
    box-shadow: 0 18px 42px rgba(17, 11, 46, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(17, 11, 46, 0.14);
}
.compare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 24px 24px 0 0;
}
.compare-free::before {
    background: linear-gradient(90deg, var(--magenta), var(--pink));
}
.compare-pro::before {
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
}
.compare-free { border-color: rgba(212, 0, 110, 0.16); }
.compare-pro { border-color: rgba(139, 92, 246, 0.18); }
.compare-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.compare-free .compare-eyebrow { color: var(--magenta); }
.compare-pro .compare-eyebrow { color: var(--purple-light); }
.compare-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.compare-body {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(45, 27, 105, 0.78);
}
.compare-price {
    display: block;
    margin: 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0.005em;
}
.compare-price-sep {
    margin: 0 8px;
    color: rgba(139, 92, 246, 0.5);
}
.compare-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.005em;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}
.compare-cta-free {
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    color: #FFFFFF !important;
    box-shadow: 0 12px 28px rgba(212, 0, 110, 0.28);
}
.compare-cta-pro {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #FFFFFF !important;
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.32);
}
.compare-cta:hover {
    transform: translateY(-1px);
}
.compare-cta-free:hover { box-shadow: 0 16px 34px rgba(212, 0, 110, 0.38); }
.compare-cta-pro:hover { box-shadow: 0 16px 34px rgba(139, 92, 246, 0.42); }
.compare-link-out {
    text-align: center;
    margin: 48px 0 0;
    font-size: 15.5px;
    font-weight: 600;
}
.compare-link-out a {
    color: var(--magenta);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 0, 110, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}
.compare-link-out a:hover { border-bottom-color: var(--magenta); }

/* COMPARE PAGE (/compare.html) - dedicated comparison page */
.compare-hero .legal-title { line-height: 1.1; }
.compare-table-section { padding: 60px 0 40px; }
.compare-table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(212, 0, 110, 0.14);
    background: rgba(212, 0, 110, 0.025);
    box-shadow: 0 14px 38px rgba(17, 11, 46, 0.06);
    max-width: 960px;
    margin: 0 auto;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table thead {
    background: linear-gradient(135deg, var(--navy), var(--ink));
}
.compare-table th {
    padding: 18px 22px;
    text-align: left;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-table th.ct-free { color: #FFD2E8; }
.compare-table th.ct-pro { color: #DDD0FF; }
.compare-table th.ct-free, .compare-table th.ct-pro { width: 22%; text-align: center; }
.ct-tier-sub { font-size: 12px; font-weight: 500; opacity: 0.78; }
.compare-table tbody td {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(45, 27, 105, 0.08);
    color: var(--ink);
    vertical-align: middle;
}
.compare-table tbody tr:hover td { background: rgba(212, 0, 110, 0.025); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .ct-yes, .compare-table .ct-no {
    text-align: center;
    font-weight: 700;
}
.compare-table .ct-yes {
    color: var(--magenta);
    font-size: 18px;
}
.compare-table .ct-yes-limited {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--purple-secondary);
}
.compare-table .ct-yes-emphasis {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--purple);
    letter-spacing: 0.01em;
}
.compare-table .ct-no {
    color: rgba(45, 27, 105, 0.32);
    font-size: 20px;
    font-weight: 500;
}
.compare-table .ct-divider td {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.08), rgba(212, 0, 110, 0.08));
    text-align: center;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    padding: 12px 22px;
    border-top: 1px solid rgba(139, 92, 246, 0.18);
    border-bottom: 1px solid rgba(139, 92, 246, 0.18);
}

/* COMPARE PAGE - pricing block */
.compare-pricing-section { padding: 40px 0; }
.compare-pricing-inner { max-width: 720px; }
.compare-pricing-card {
    padding: 32px 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(212, 0, 110, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.10);
}
.compare-pricing-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--purple);
}
.compare-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}
.compare-pricing-list li {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-pricing-list .ct-bullet {
    color: var(--magenta);
    font-size: 20px;
    line-height: 1;
}
.compare-pricing-note {
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(45, 27, 105, 0.08);
    font-size: 13.5px;
    color: var(--purple-secondary);
}

/* COMPARE PAGE - FAQ section */
.compare-faq-section { padding: 60px 0; }
.compare-faq-inner { max-width: 760px; }
.compare-faq-headline { text-align: center; margin-bottom: 32px; color: var(--ink); }

/* COMPARE PAGE - footer CTA */
.compare-cta-section {
    padding: 60px 0 100px;
    text-align: center;
}
.compare-cta-inner { max-width: 560px; }
.compare-cta-line {
    margin: 0 0 22px;
    font-size: 18px;
    color: var(--ink);
    line-height: 1.5;
}
.compare-cta-line strong { color: var(--magenta); }
.compare-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--magenta), var(--pink), var(--purple-light));
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.005em;
    box-shadow: 0 16px 38px rgba(212, 0, 110, 0.34);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.compare-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(212, 0, 110, 0.44);
}
.compare-cta-sub {
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--purple-secondary);
    font-style: italic;
}

/* FOOTER-BOTTOM strip with separators */
.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.32);
    margin: 0 4px;
}

/* LEGAL meta separator (used on /privacy and /terms metadata line) */
.legal-sep {
    color: rgba(45, 27, 105, 0.32);
    margin: 0 4px;
}

/* RESPONSIVE - May 14 additions */
@media (max-width: 760px) {
    .compare-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
    .compare-section { padding: 80px 0 100px; }
    .compare-pricing-card { padding: 24px 22px; }
    .compare-cta-section { padding: 40px 0 80px; }
    .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13.5px; }
    .compare-table th.ct-free, .compare-table th.ct-pro { width: 26%; }
    .compare-cta-button { width: 100%; justify-content: center; }
    .footer-bottom span { display: inline-block; line-height: 1.6; }
}

/* =========================================================
   MAY 14 - Launch polish (a11y + 404 + button reset)
   ========================================================= */

/* App Store CTA as a real <button> element - clear browser defaults */
button.app-store-btn {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: 0;
}
button.app-store-btn:disabled { cursor: default; }

/* :focus-visible rings - magenta glow, keyboard nav only */
.app-store-btn:focus-visible,
.ghost-btn:focus-visible,
.nav-cta:focus-visible,
.compare-cta:focus-visible,
.compare-cta-button:focus-visible,
.footer-cta-link:focus-visible,
.faq-link:focus-visible,
.error-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 0, 110, 0.45), 0 14px 32px rgba(212, 0, 110, 0.32);
}
.pillar-card:focus-within,
.pitch-card:focus-within,
.compare-card:focus-within {
    border-color: rgba(212, 0, 110, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 0, 110, 0.18), 0 18px 42px rgba(17, 11, 46, 0.14);
}
.faq-item summary:focus-visible {
    outline: none;
    background: rgba(212, 0, 110, 0.06);
    box-shadow: inset 0 0 0 2px rgba(212, 0, 110, 0.4);
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-main {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
}
.error-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 120px;
    background: var(--navy);
}
.error-section .hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(212, 0, 110, 0.18), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(139, 92, 246, 0.15), transparent 55%);
    pointer-events: none;
}
.error-inner {
    position: relative;
    max-width: 720px;
    text-align: center;
}
.error-eagle-stage {
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
}
.error-code {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(212, 0, 110, 0.14);
    border: 1px solid rgba(212, 0, 110, 0.4);
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}
.error-headline {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.error-sub {
    margin: 0 auto 36px;
    max-width: 540px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}
.error-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 56px;
}
.error-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--magenta), var(--pink));
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.005em;
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.34);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.error-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(212, 0, 110, 0.44);
}
.error-links {
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.error-links-label {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}
.error-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    justify-content: center;
}
.error-links-list a {
    color: var(--pink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.error-links-list a:hover { color: #FFFFFF; }

@media (max-width: 600px) {
    .error-section { padding: 60px 0 80px; }
    .error-eagle-stage { width: 100px; height: 100px; }
    .error-primary { width: 100%; justify-content: center; }
}

/* =========================================================
   SKIP-TO-CONTENT LINK - WCAG keyboard nav
   ========================================================= */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--magenta);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 32px rgba(212, 0, 110, 0.42);
    transition: top 0.18s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 12px;
    outline: 3px solid rgba(212, 0, 110, 0.55);
    outline-offset: 2px;
}

/* =========================================================
   PRINT STYLES - for /privacy and /terms (Apple's lawyer + reviewers)
   ========================================================= */
@media print {
    .nav,
    .footer,
    .legal-hero-glow,
    .skip-link,
    .footer-status,
    .footer-cta,
    .hero-bg-glow {
        display: none !important;
    }
    body,
    .legal-body,
    .legal-main,
    .legal-hero,
    .legal-body-section {
        background: #FFFFFF !important;
        color: #000000 !important;
    }
    .legal-title,
    .legal-sub,
    .legal-meta,
    .legal-block h2,
    .legal-block h3,
    .legal-block p,
    .legal-block li,
    .legal-table th,
    .legal-table td {
        color: #000000 !important;
        text-shadow: none !important;
        background: transparent !important;
    }
    .legal-title.gradient-text,
    .gradient-text {
        -webkit-text-fill-color: #000000 !important;
        background: none !important;
        color: #000000 !important;
    }
    .legal-block h2 {
        border-bottom: 1px solid #000000 !important;
        padding-bottom: 6pt !important;
        page-break-after: avoid;
    }
    .legal-block {
        page-break-inside: avoid;
    }
    a {
        color: #000000 !important;
        text-decoration: underline !important;
    }
    .contact-card {
        border: 1px solid #000000 !important;
        background: transparent !important;
    }
    .legal-table-wrap,
    .legal-table {
        background: transparent !important;
        border-color: #000000 !important;
    }
    .legal-table th {
        background: #EEEEEE !important;
        border-bottom: 1pt solid #000000 !important;
    }
    @page {
        margin: 0.7in 0.65in;
    }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .phone-frame, .wallet-card { transform: none; }
}
