/* ═══════════════════════════════════════════════════════
   BlueNova VA - Premium landing (own identity)
   ═══════════════════════════════════════════════════════ */

.bn-va {
    --bn-ink: #060D1A;
    --bn-surface: #0A1220;
    --bn-navy: #0B1628;
    --bn-muted: #0E1829;
    --bn-panel: #101C30;
    --bn-deep: #08111f;
    --bn-mission-end: #070f1a;
    --bn-light: #F5F8FD;
    --bn-light-soft: #EEF2F8;
    --bn-light-mid: #e4ebf5;
    --bn-blue: #1A6FE8;
    --bn-cyan: #00CFF0;
    --bn-purple: #7C5CFC;
    --bn-grad: linear-gradient(135deg, #1A6FE8 0%, #00CFF0 55%, #7C5CFC 100%);
    --bn-grad-soft: linear-gradient(135deg, rgba(26,111,232,.15), rgba(0,207,240,.08));
    --bn-font: 'Inter', system-ui, sans-serif;
    --bn-max: 1180px;
    --bn-nav-h: 64px;
    background: var(--bn-ink);
    color: #E8EDF5;
    font-family: var(--bn-font);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    scroll-padding-top: calc(var(--bn-nav-h) + 16px);
}

.bn-va main {
    background: var(--bn-ink);
}

.bn-va *, .bn-va *::before, .bn-va *::after { box-sizing: border-box; }
.bn-va a { color: inherit; text-decoration: none; }

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

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

.bn-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bn-blue);
    margin-bottom: 14px;
}
.bn-eyebrow--cyan { color: var(--bn-cyan); }

/* ── Nav ── */
.bn-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 500;
    background: rgba(6, 13, 26, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bn-nav.is-scrolled {
    background: rgba(6, 13, 26, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.bn-nav__bar {
    height: 2px;
    background: var(--bn-grad);
    opacity: 0.95;
}
.bn-nav__inner {
    max-width: var(--bn-max);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--bn-nav-h);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    position: relative;
}
.bn-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
}

.bn-logo__img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    background: #fff;
    border-radius: 7px;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.bn-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    margin: 0 auto;
    max-width: 100%;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.bn-nav__links::-webkit-scrollbar { display: none; }
.bn-nav__links a,
.bn-nav__link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.62);
    padding: 7px 11px;
    border-radius: 999px;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    flex: 0 0 auto;
    white-space: nowrap;
    border: 1px solid transparent;
    line-height: 1.15;
}
.bn-nav__links a:hover,
.bn-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.bn-nav__links .bn-nav__home,
.bn-nav__link.bn-nav__home {
    color: rgba(255, 255, 255, 0.9);
}
.bn-nav__link--hub {
    margin-left: 2px;
    padding-left: 13px;
    position: relative;
}
.bn-nav__link--hub::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    width: 1px;
    height: 14px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.14);
}
.bn-nav__links a.is-active,
.bn-nav__link.is-active {
    color: #fff;
    background: rgba(26, 111, 232, 0.22);
    border-color: rgba(0, 207, 240, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.bn-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 0;
}
.bn-nav__tools {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.bn-nav__cta {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bn-nav__dash {
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.bn-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    flex-shrink: 0;
}
.bn-nav__icon:hover {
    color: var(--bn-cyan);
    background: rgba(0, 207, 240, 0.08);
    border-color: rgba(0, 207, 240, 0.22);
}
.bn-nav__actions .lang-switch--compact {
    padding: 2px;
    gap: 1px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
.bn-nav__actions .lang-switch--compact a {
    min-width: 28px;
    padding: 5px 7px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}
.bn-nav__actions .bn-btn {
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 9px;
    flex-shrink: 0;
    line-height: 1.15;
}
.bn-nav__actions .bn-btn--glow {
    box-shadow: 0 2px 14px rgba(26, 111, 232, 0.35);
}
.bn-nav__actions .bn-btn--glow:hover {
    transform: none;
    box-shadow: 0 4px 18px rgba(0, 207, 240, 0.32);
}
.bn-btn--sm { padding: 8px 14px; font-size: 13px; }
.bn-nav__burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.bn-nav__burger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}
.bn-nav__burger-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 18px;
}
.bn-nav__burger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
.bn-nav__burger.is-open .bn-nav__burger-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.bn-nav__burger.is-open .bn-nav__burger-lines span:nth-child(2) {
    opacity: 0;
}
.bn-nav__burger.is-open .bn-nav__burger-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */
.bn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--bn-font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
}
.bn-btn--lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }
.bn-btn--glow {
    background: var(--bn-grad);
    color: #fff;
    box-shadow: 0 4px 24px rgba(26,111,232,.45), 0 0 0 1px rgba(255,255,255,.1) inset;
}
.bn-btn--glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,207,240,.4);
    color: #fff;
}
.bn-btn--primary {
    background: var(--bn-blue);
    color: #fff;
}
.bn-btn--primary:hover { background: #1558C0; color: #fff; }
.bn-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
}
.bn-btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.bn-btn--glass {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
}
.bn-btn--glass:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ── Hero ── */
.bn-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}
.bn-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26,111,232,.25) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(124,92,252,.18) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 80%, rgba(0,207,240,.12) 0%, transparent 45%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80') center/cover no-repeat;
}
.bn-hero__mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 13, 26, 0.72) 0%,
        rgba(6, 13, 26, 0.88) 58%,
        var(--bn-surface) 100%
    );
}
.bn-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: bnOrb 12s ease-in-out infinite;
}
.bn-hero__orb--1 {
    width: 400px; height: 400px;
    background: rgba(26,111,232,.3);
    top: 10%; right: 5%;
}
.bn-hero__orb--2 {
    width: 300px; height: 300px;
    background: rgba(0,207,240,.2);
    bottom: 20%; left: -5%;
    animation-delay: -6s;
}
@keyframes bnOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.08); }
}

.bn-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    contain: layout style;
}
.bn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--bn-cyan);
    background: rgba(0,207,240,.1);
    border: 1px solid rgba(0,207,240,.25);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.bn-pill__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bn-cyan);
    box-shadow: 0 0 10px var(--bn-cyan);
    animation: bnPulse 2s infinite;
}
@keyframes bnPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
.bn-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.bn-hero__lead {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    max-width: 480px;
    margin-bottom: 32px;
}
.bn-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.bn-hero__sims {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    letter-spacing: .04em;
}
.bn-hero__sims span::before { content: '·'; margin-right: 16px; opacity: .5; }
.bn-hero__sims span:first-child::before { display: none; }

/* Flight card */
.bn-hero__visual {
    position: relative;
    padding: 20px 8px 8px;
    overflow: visible;
    isolation: isolate;
}
.bn-flight-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}
.bn-flight-card.is-tilting {
    transition: none;
}
.bn-flight-card:not(.is-tilting) {
    transition: transform 0.45s ease;
}
.bn-flight-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.bn-flight-card__live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #34D399;
}
.bn-flight-card__live span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 8px #34D399;
    animation: bnPulse 1.5s infinite;
}
.bn-flight-card__code {
    font-size: 13px;
    font-weight: 700;
    color: var(--bn-cyan);
    letter-spacing: .08em;
}
.bn-flight-card__route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}
.bn-flight-card__apt strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.bn-flight-card__apt small { font-size: 12px; color: rgba(255,255,255,.5); }
.bn-flight-card__arc {
    flex: 1;
    text-align: center;
    position: relative;
}
.bn-flight-card__arc svg { width: 100%; max-width: 120px; margin: 0 auto; display: block; }
.bn-flight-card__arc span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
}
.bn-flight-card__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.bn-flight-card__meta small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.bn-flight-card__meta strong { font-size: 15px; font-weight: 700; }

.bn-hero-stats {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}
.bn-hero-stats__item {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}
.bn-hero-stats__item strong {
    display: block;
    min-height: 1.4em;
    font-size: 1.25rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.4;
    background: var(--bn-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bn-hero-stats__item span { font-size: 11px; color: rgba(255,255,255,.45); }

/* ── Marquee ── */
.bn-marquee {
    background: linear-gradient(180deg, var(--bn-surface) 0%, var(--bn-navy) 100%);
    border-block: none;
    padding: 14px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.bn-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 207, 240, 0.28), transparent);
    pointer-events: none;
}
.bn-marquee__track {
    display: flex;
    width: max-content;
    animation: bnMarquee 50s linear infinite;
    will-change: transform;
}
.bn-marquee__group {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    padding-right: 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2em;
    color: rgba(255,255,255,.35);
    white-space: nowrap;
}
.bn-marquee__sep { color: var(--bn-cyan); opacity: .6; flex-shrink: 0; }
@keyframes bnMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Sections ── */
.bn-section {
    padding: 100px 0;
    background: var(--bn-ink);
    position: relative;
}
.bn-section--dark {
    background: linear-gradient(180deg, var(--bn-navy) 0%, #0d1a2e 48%, var(--bn-navy) 100%);
}
.bn-section--muted {
    background: linear-gradient(180deg, var(--bn-muted) 0%, #0c1524 100%);
}
.bn-section#mission {
    background:
        radial-gradient(ellipse 55% 45% at 8% 18%, rgba(26, 111, 232, 0.22), transparent 58%),
        radial-gradient(ellipse 45% 40% at 92% 85%, rgba(0, 207, 240, 0.14), transparent 55%),
        radial-gradient(ellipse 35% 30% at 70% 30%, rgba(124, 92, 252, 0.08), transparent 50%),
        linear-gradient(165deg, var(--bn-navy) 0%, #0c1830 22%, var(--bn-ink) 42%, var(--bn-mission-end) 100%);
    padding-top: 96px;
    overflow: hidden;
}
.bn-section#mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
    pointer-events: none;
}
.bn-section#experience {
    background:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(124, 92, 252, 0.2), transparent 62%),
        radial-gradient(ellipse 50% 45% at 0% 60%, rgba(26, 111, 232, 0.16), transparent 55%),
        radial-gradient(ellipse 45% 40% at 100% 70%, rgba(0, 207, 240, 0.12), transparent 50%),
        linear-gradient(180deg, var(--bn-mission-end) 0%, #0e1a32 14%, #0a1424 48%, var(--bn-deep) 100%);
    overflow: hidden;
}
.bn-section#experience::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(26, 111, 232, 0.04) 50%, transparent 60%);
    pointer-events: none;
}
.bn-section#experience .bn-section-head {
    max-width: 640px;
}
.bn-section#experience .bn-section-head h2 {
    background: linear-gradient(135deg, #fff 0%, #c8e8ff 55%, #7eb8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bn-section#experience .bn-eyebrow--cyan {
    background: rgba(0, 207, 240, 0.1);
    border: 1px solid rgba(0, 207, 240, 0.22);
    padding: 6px 12px;
    border-radius: 999px;
}
.bn-section:has(.bn-pill-cards) {
    padding-top: 92px;
    background:
        radial-gradient(ellipse 55% 45% at 100% 20%, rgba(124, 92, 252, 0.1), transparent 58%),
        linear-gradient(180deg, var(--bn-muted) 0%, var(--bn-navy) 48%, var(--bn-ink) 100%);
    color: #E8EDF5;
}
.bn-section:has(.bn-pill-cards) .bn-eyebrow { color: var(--bn-cyan); }
.bn-section:has(.bn-pill-cards) h2 { color: #f0f6ff; }
.bn-section#crew {
    background: linear-gradient(180deg, var(--bn-muted) 0%, #0c1524 55%, var(--bn-ink) 100%);
}
.bn-section#contact {
    background: linear-gradient(180deg, var(--bn-ink) 0%, var(--bn-surface) 100%);
}

.bn-section-head { margin-bottom: 48px; max-width: 560px; }
.bn-section-head--center { text-align: center; margin-inline: auto; }
.bn-section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.15;
}

/* Split */
.bn-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.bn-split__media { position: relative; }
.bn-split__media::after {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 207, 240, 0.35), transparent 70%);
    filter: blur(24px);
    pointer-events: none;
    z-index: 0;
}
.bn-split__img {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(26, 111, 232, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.bn-split__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 45%, rgba(6, 13, 26, 0.55) 100%);
    pointer-events: none;
}
.bn-split__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    background: linear-gradient(145deg, rgba(12, 24, 48, 0.94), rgba(6, 13, 26, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 207, 240, 0.28);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 207, 240, 0.08);
}
.bn-split__badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--bn-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bn-split__badge span { font-size: 12px; color: rgba(255, 255, 255, 0.55); }
.bn-split__content .bn-eyebrow {
    color: #7eb8ff;
    background: rgba(26, 111, 232, 0.12);
    border: 1px solid rgba(26, 111, 232, 0.22);
    padding: 6px 12px;
    border-radius: 999px;
}
.bn-split__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 16px;
    line-height: 1.2;
}
.bn-split__content p { color: rgba(255,255,255,.65); margin-bottom: 24px; }
.bn-checklist {
    list-style: none;
    margin-bottom: 28px;
}
.bn-checklist li {
    position: relative;
    padding: 12px 14px 12px 44px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    background: linear-gradient(90deg, rgba(26, 111, 232, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.bn-checklist li:hover {
    border-color: rgba(0, 207, 240, 0.25);
    background: linear-gradient(90deg, rgba(26, 111, 232, 0.14), rgba(0, 207, 240, 0.06));
}
.bn-checklist li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1A6FE8, #00CFF0);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

/* Bento */
.bn-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 16px;
}
.bn-bento__item {
    --bento-accent: #1A6FE8;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.bn-bento__item:nth-child(1) { --bento-accent: #1A6FE8; }
.bn-bento__item:nth-child(2) { --bento-accent: #00CFF0; }
.bn-bento__item:nth-child(3) { --bento-accent: #7C5CFC; }
.bn-bento__item:nth-child(4) { --bento-accent: #22c55e; }
.bn-bento__item:nth-child(5) { --bento-accent: #f59e0b; }
.bn-bento__item:nth-child(6) { --bento-accent: #00CFF0; }
.bn-bento__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bento-accent), transparent);
    opacity: 0.85;
}
.bn-bento__item:hover {
    border-color: color-mix(in srgb, var(--bento-accent) 45%, transparent);
    transform: translateY(-3px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.3),
        0 0 40px color-mix(in srgb, var(--bento-accent) 12%, transparent);
}
.bn-bento__item--wide {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(26, 111, 232, 0.12) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(124, 92, 252, 0.08) 100%);
}
.bn-bento__item--tall { grid-row: span 2; }
.bn-bento__item--accent {
    background: linear-gradient(145deg, rgba(26, 111, 232, 0.28), rgba(0, 207, 240, 0.12), rgba(124, 92, 252, 0.08));
    border-color: rgba(0, 207, 240, 0.35);
    box-shadow: 0 20px 48px rgba(26, 111, 232, 0.15);
}
.bn-bento__icon { font-size: 28px; margin-bottom: 14px; }
.bn-bento__item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #f0f6ff; }
.bn-bento__item p { font-size: 14px; color: rgba(255, 255, 255, 0.58); flex: 1; line-height: 1.6; }
.bn-bento__item a {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bento-accent);
}
.bn-bento__item a:hover { color: #fff; }

/* Pill cards */
.bn-pill-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bn-pill-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    color: #E8EDF5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.bn-pill-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    border-color: rgba(0, 207, 240, 0.28);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(26, 111, 232, 0.12);
}
.bn-pill-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--bn-grad);
}
.bn-pill-card__num {
    font-size: 3rem;
    font-weight: 800;
    background: var(--bn-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .35;
    line-height: 1;
    margin-bottom: 12px;
}
.bn-pill-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #f0f6ff; }
.bn-pill-card p { font-size: 14px; color: rgba(255, 255, 255, 0.58); line-height: 1.65; }

/* Stats band */
.bn-stats-band {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, var(--bn-muted) 0%, var(--bn-navy) 50%, var(--bn-muted) 100%);
}
.bn-stats-band::before,
.bn-stats-band::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 96px;
    pointer-events: none;
    z-index: 1;
}
.bn-stats-band::before {
    top: 0;
    background: linear-gradient(180deg, var(--bn-ink) 0%, rgba(14, 24, 41, 0.55) 55%, transparent 100%);
}
.bn-stats-band::after {
    bottom: 0;
    background: linear-gradient(0deg, var(--bn-muted) 0%, transparent 100%);
}
.bn-stats-band .container {
    position: relative;
    z-index: 2;
}
.bn-stats-band__glow {
    position: absolute;
    inset: 0;
    background: var(--bn-grad);
    opacity: .95;
}
.bn-stats-band__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    text-align: center;
}
.bn-stat-block__val {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 8px;
}
.bn-stat-block__lbl {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
}

/* Duo layout */
.bn-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.bn-duo__col h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -.02em;
}
.bn-news-item {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: padding-left .2s;
}
.bn-news-item:hover { padding-left: 8px; }
.bn-news-item time { font-size: 12px; color: rgba(255,255,255,.4); }
.bn-news-item strong { display: block; font-size: 16px; font-weight: 600; margin: 6px 0; color: #fff; }
.bn-news-item span { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.bn-link { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--bn-cyan); font-size: 14px; }

.bn-quote {
    display: none;
    padding: 28px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    border-left: 4px solid var(--bn-cyan);
}
.bn-quote.is-active { display: block; animation: bnFadeIn .4s ease; }
.bn-quote p { font-size: 16px; font-style: italic; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 16px; }
.bn-quote footer { font-size: 14px; font-weight: 600; color: var(--bn-cyan); }
@keyframes bnFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.bn-quote-dots { display: flex; gap: 8px; margin-top: 16px; }
.bn-quote-dots button {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.2);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.bn-quote-dots button.active { background: var(--bn-cyan); transform: scale(1.3); }

/* Crew */
.bn-crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.bn-crew-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 24px;
    transition: border-color .25s, background .25s;
}
.bn-crew-card:hover {
    border-color: rgba(0,207,240,.25);
    background: rgba(255,255,255,.05);
}
.bn-crew-card__role {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bn-cyan);
    background: rgba(0,207,240,.1);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.bn-crew-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.bn-crew-card__title { font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.bn-crew-card__bio { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 14px; }
.bn-crew-card__mail { font-size: 13px; font-weight: 600; color: var(--bn-blue); }
.bn-crew-card__mail:hover { color: var(--bn-cyan); }

/* CTA */
.bn-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    background: var(--bn-navy);
}
.bn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(180deg, var(--bn-ink) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.bn-cta__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(26, 111, 232, 0.34) 0%, transparent 58%),
        radial-gradient(circle at 20% 80%, rgba(0, 207, 240, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, var(--bn-navy) 0%, var(--bn-surface) 100%);
}
.bn-cta__inner { position: relative; z-index: 1; }
.bn-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}
.bn-cta p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 32px; }
.bn-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.bn-contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.bn-contact__info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; }
.bn-contact__info > p { color: var(--bn-cyan); font-weight: 600; margin-bottom: 24px; }
.bn-contact__dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    font-size: 14px;
    margin-bottom: 28px;
}
.bn-contact__dl dt { color: rgba(255,255,255,.4); font-weight: 500; }
.bn-contact__dl dd { font-weight: 600; margin: 0; }
.bn-social { display: flex; gap: 10px; }
.bn-social__link {
    padding: 10px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, border-color .2s;
}
.bn-social__link:hover { background: rgba(26,111,232,.2); border-color: var(--bn-blue); color: #fff; }

.bn-contact__form {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 32px;
}
.bn-contact__form label { display: block; margin-bottom: 16px; }
.bn-contact__form label span { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.bn-contact__form input,
.bn-contact__form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(6,13,26,.5);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--bn-font);
    font-size: 14px;
    transition: border-color .2s;
}
.bn-contact__form input:focus,
.bn-contact__form textarea:focus {
    outline: none;
    border-color: var(--bn-blue);
}
.bn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
.bn-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0 32px;
    background: linear-gradient(180deg, var(--bn-surface) 0%, var(--bn-ink) 100%);
}
.bn-footer__inner { text-align: center; }
.bn-footer__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bn-footer__logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}
.bn-footer__legal {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.7;
}
.bn-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 20px;
}
.bn-footer__links a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.62);
    transition: color .2s;
}
.bn-footer__links a:hover { color: var(--bn-cyan); }
.bn-live-board__empty {
    padding: 18px 20px;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    text-align: center;
}
.bn-footer__bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

.bn-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--bn-grad);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s, visibility .3s, transform .3s;
    z-index: 400;
    box-shadow: 0 8px 24px rgba(26,111,232,.4);
}
.bn-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* Reveal animation */
.bn-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.bn-reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1180px) {
    .bn-nav__inner {
        gap: 14px;
        padding: 0 18px;
    }

    .bn-logo__img {
        height: 34px;
        max-width: 160px;
    }

    .bn-nav__links a,
    .bn-nav__link {
        padding: 6px 9px;
        font-size: 11px;
    }

    .bn-nav__actions .bn-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .bn-nav__tools {
        padding-right: 8px;
    }
}

@media (max-width: 1080px) {
    .bn-hero__grid, .bn-split, .bn-duo, .bn-contact { grid-template-columns: 1fr; }
    .bn-bento { grid-template-columns: 1fr; }
    .bn-bento__item--wide, .bn-bento__item--tall { grid-column: span 1; grid-row: span 1; }
    .bn-pill-cards, .bn-crew-grid { grid-template-columns: 1fr; }
    .bn-stats-band__grid { grid-template-columns: repeat(2, 1fr); }
    .bn-nav__inner {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 0 16px;
    }
    .bn-nav__links {
        display: none;
        position: absolute;
        top: calc(var(--bn-nav-h) + 2px);
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: rgba(8, 14, 28, 0.98);
        padding: 10px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
        gap: 4px;
        overflow: visible;
        z-index: 3;
    }
    .bn-nav__links.is-open {
        display: flex;
        animation: bnNavDrop 0.22s ease;
    }
    @keyframes bnNavDrop {
        from { opacity: 0; transform: translateY(-6px); }
        to { opacity: 1; transform: none; }
    }
    .bn-nav__links a,
    .bn-nav__link {
        width: 100%;
        border-radius: 10px;
        padding: 11px 14px;
        font-size: 13px;
    }
    .bn-nav__link--hub {
        margin-left: 0;
        padding-left: 14px;
    }
    .bn-nav__link--hub::before {
        display: none;
    }
    .bn-nav__tools {
        border-right: none;
        padding-right: 0;
    }
    .bn-nav__cta .bn-btn--ghost {
        display: none;
    }
    .bn-nav__actions {
        justify-self: end;
        gap: 6px;
    }
    .bn-nav__burger { display: inline-flex; }
    .bn-hero__visual { order: -1; }
    .bn-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
    .bn-hero__grid, .bn-split, .bn-duo, .bn-contact { grid-template-columns: 1fr; }
    .bn-bento { grid-template-columns: 1fr; }
    .bn-bento__item--wide, .bn-bento__item--tall { grid-column: span 1; grid-row: span 1; }
    .bn-pill-cards, .bn-crew-grid { grid-template-columns: 1fr; }
    .bn-stats-band__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .bn-section { padding: 64px 0; }
    .bn-hero-stats { flex-direction: column; }
    .bn-stats-band__grid { grid-template-columns: 1fr 1fr; }
    .bn-ladder { flex-direction: column; align-items: stretch; }
    .bn-ladder__step::after { display: none; }
    .bn-live-row { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bn-nav__inner { padding: 0 12px; }
    .bn-nav__cta .bn-btn--glow {
        padding: 7px 10px;
        font-size: 10px;
    }
    .bn-nav__tools .lang-switch--compact a {
        min-width: 26px;
        padding: 4px 6px;
    }
}

@media (max-width: 768px) {
    .bn-va .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bn-hero {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .bn-hero__actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .bn-hero__actions .bn-btn {
        flex: 1 1 auto;
        min-width: 140px;
    }

    .bn-flight-card {
        padding: 16px;
    }

    .bn-bento,
    .bn-pill-cards,
    .bn-crew-grid {
        gap: 14px;
    }

    .bn-stats-band__grid {
        gap: 12px;
    }

    .bn-fleet-strip {
        gap: 10px;
        padding-bottom: 6px;
    }

    .bn-contact__form {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .bn-va .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .bn-section { padding: 48px 0; }

    .bn-stats-band__grid { grid-template-columns: 1fr; }

    .bn-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .bn-live-row { grid-template-columns: 1fr; }

    .bn-nav__actions {
        gap: 4px;
    }

    .bn-nav__tools .lang-switch--compact {
        display: none;
    }

    .bn-ladder__body small {
        font-size: 11px;
    }

    .bn-contact__form input,
    .bn-contact__form textarea,
    .bn-contact__form select {
        font-size: 16px;
    }
}

@supports (padding: max(0px)) {
    .bn-nav {
        padding-top: env(safe-area-inset-top);
    }

    .bn-va .container {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .bn-footer {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
}

/* ═══════════════════════════════════════════════════════
   V3 - Extra vorm, diepte & beweging
   ═══════════════════════════════════════════════════════ */

/* Hero grid + glow */
.bn-hero__gridlines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    animation: bnGridDrift 28s linear infinite;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}
@keyframes bnGridDrift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, 64px, 0); }
}

.bn-hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,207,240,.12) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
    opacity: 0;
    z-index: 1;
}
.bn-hero:hover .bn-hero__glow { opacity: 1; }

.bn-hero__orb--3 {
    width: 200px; height: 200px;
    background: rgba(124,92,252,.25);
    top: 60%; left: 40%;
    animation-delay: -3s;
}

.bn-orbit {
    position: absolute;
    inset: 8px 0 auto;
    height: calc(100% - 72px);
    max-height: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
    left: 0;
    right: 0;
    border: 1px dashed rgba(0,207,240,.12);
    border-radius: 50%;
    animation: bnSpin 32s linear infinite;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
}
.bn-orbit span {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bn-cyan);
    box-shadow: 0 0 12px var(--bn-cyan);
    transform: translateZ(0);
}
.bn-orbit span:nth-child(1) { top: -4px; left: 50%; margin-left: -4px; }
.bn-orbit span:nth-child(2) { bottom: 18%; right: -4px; }
.bn-orbit span:nth-child(3) { bottom: 18%; left: -4px; }
@keyframes bnSpin { to { transform: rotate(360deg) translateZ(0); } }

.bn-flight-card { overflow: hidden; }
.bn-flight-card__shine {
    position: absolute;
    inset: -50%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: bnShine 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes bnShine {
    0%, 80%, 100% { transform: translateX(-100%); }
    40% { transform: translateX(100%); }
}

.bn-route-svg { width: 100%; max-width: 140px; display: block; margin: 0 auto; }
.bn-route-dash {
    animation: bnDash 2s linear infinite;
}
@keyframes bnDash { to { stroke-dashoffset: -28; } }

@media (prefers-reduced-motion: reduce) {
    .bn-orbit,
    .bn-hero__gridlines,
    .bn-flight-card__shine,
    .bn-route-dash,
    .bn-hero__orb {
        animation: none !important;
    }

    .bn-flight-card[data-tilt] {
        transform: none !important;
    }
}

.bn-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
.bn-hero__scroll span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.bn-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--bn-cyan), transparent);
    animation: bnScrollLine 2s ease-in-out infinite;
}
@keyframes bnScrollLine {
    0%, 100% { transform: scaleY(0.4); opacity: .4; transform-origin: top; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Wave dividers — smooth section blends */
.bn-wave {
    height: 64px;
    position: relative;
    pointer-events: none;
    line-height: 0;
    margin: 0;
}
.bn-wave::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    clip-path: ellipse(62% 100% at 50% 100%);
}
.bn-wave--down { margin-top: -1px; }

.bn-wave--hero-fleet {
    height: 40px;
    background: linear-gradient(180deg, rgba(10, 18, 32, 0) 0%, var(--bn-surface) 100%);
}
.bn-wave--hero-fleet::before { display: none; }

.bn-wave--fleet-mission {
    height: 48px;
    background: linear-gradient(180deg, var(--bn-navy) 0%, var(--bn-navy) 100%);
}
.bn-wave--fleet-mission::before { display: none; }

.bn-wave--mission-exp {
    height: 36px;
    background: linear-gradient(180deg, var(--bn-mission-end) 0%, var(--bn-deep) 100%);
}
.bn-wave--mission-exp::before { display: none; }

.bn-wave--to-light {
    height: 120px;
    background: linear-gradient(
        180deg,
        var(--bn-deep) 0%,
        #0c1524 10%,
        #132035 22%,
        #1a2a42 36%,
        #243550 48%,
        #3d5575 62%,
        #6b84a4 76%,
        #a8b8cf 88%,
        var(--bn-light) 100%
    );
}
.bn-wave--to-light::before { display: none; }

.bn-wave--to-dark {
    height: 120px;
    background: linear-gradient(
        180deg,
        var(--bn-light-mid) 0%,
        #c8d4e4 16%,
        #8a9bb5 34%,
        #4a5f7a 50%,
        #283348 66%,
        #151f30 82%,
        var(--bn-muted) 100%
    );
}
.bn-wave--to-dark::before { display: none; }

/* Legacy wave aliases (unused on homepage) */
.bn-wave--dark {
    height: 40px;
    background: linear-gradient(180deg, var(--bn-surface) 0%, var(--bn-surface) 100%);
}
.bn-wave--dark::before { display: none; }
.bn-wave--light { background: var(--bn-light); }
.bn-wave--navy {
    background: linear-gradient(180deg, var(--bn-ink) 0%, var(--bn-navy) 100%);
}
.bn-wave--navy::before { display: none; }
.bn-wave--white { background: #fff; }
.bn-wave--fade-navy-light {
    height: 120px;
    background: linear-gradient(180deg, var(--bn-deep) 0%, var(--bn-light) 100%);
}
.bn-wave--fade-navy-light::before { display: none; }
.bn-wave--fade-light-ink {
    height: 120px;
    background: linear-gradient(180deg, var(--bn-light-mid) 0%, var(--bn-muted) 100%);
}
.bn-wave--fade-light-ink::before { display: none; }

/* Fleet strip */
.bn-fleet-strip {
    background: linear-gradient(180deg, var(--bn-surface) 0%, var(--bn-surface) 72%, rgba(11, 22, 40, 0.55) 100%);
    padding: 56px 0 0;
    position: relative;
    overflow: hidden;
}
.bn-fleet-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,207,240,.4), transparent);
}
.bn-fleet-strip__head {
    margin-bottom: 28px;
}
.bn-fleet-strip__head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.bn-fleet-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.bn-fleet-scroll::-webkit-scrollbar { display: none; }
.bn-fleet-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 24px 20px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.bn-fleet-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0,207,240,.35);
    box-shadow: 0 20px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(0,207,240,.1);
}
.bn-fleet-card__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--bn-grad-soft);
    border: 1px solid rgba(26,111,232,.2);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.bn-fleet-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}
.bn-fleet-card ul { list-style: none; }
.bn-fleet-card li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.bn-fleet-card li span { color: rgba(255,255,255,.4); }
.bn-fleet-card li strong { color: var(--bn-cyan); font-weight: 700; }

/* Bento glow borders */
.bn-bento__item::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(26, 111, 232, 0), rgba(0, 207, 240, 0));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.35s;
}
.bn-bento__item:hover::before {
    background: linear-gradient(135deg, color-mix(in srgb, var(--bento-accent) 55%, transparent), rgba(0, 207, 240, 0.3), rgba(124, 92, 252, 0.2));
}
.bn-bento__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--bento-accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--bento-accent) 38%, transparent);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--bento-accent) 20%, transparent);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 16px;
}

/* Rank ladder */
.bn-section--rank {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(26, 111, 232, 0.16), transparent 62%),
        radial-gradient(ellipse 40% 35% at 90% 80%, rgba(0, 207, 240, 0.08), transparent 55%),
        linear-gradient(180deg, var(--bn-deep) 0%, var(--bn-navy) 42%, var(--bn-muted) 100%);
    color: #E8EDF5;
    position: relative;
    overflow: hidden;
}
.bn-section--rank::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(26,111,232,.12), transparent 70%);
    pointer-events: none;
}
.bn-section--rank .bn-eyebrow { color: var(--bn-cyan); }
.bn-section--rank h2 { color: #f0f6ff; }

.bn-ladder {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    position: relative;
    padding-top: 20px;
}
.bn-ladder__step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 8px;
}
.bn-ladder__step::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 3px;
    background: linear-gradient(90deg, var(--bn-blue), var(--bn-cyan));
    opacity: .4;
}
.bn-ladder__step:last-child::after { display: none; }
.bn-ladder__node {
    width: auto;
    min-width: 160px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 16px;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    position: relative;
    z-index: 1;
}
.bn-ladder__node .pilot-rank-insignia__img {
    width: 120px;
    height: 35px;
    filter: drop-shadow(0 4px 10px rgba(26, 111, 232, 0.18));
    transition: transform 0.2s ease;
}
.bn-ladder__step:hover .bn-ladder__node .pilot-rank-insignia__img {
    transform: scale(1.03);
}
.bn-ladder__step.is-highlight .bn-ladder__node .pilot-rank-insignia__img {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 14px rgba(0, 207, 240, 0.35));
}
.bn-ladder__step.is-highlight .bn-ladder__body strong { color: var(--bn-cyan); }
.bn-ladder__body strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; color: #f0f6ff; }
.bn-ladder__body span { display: block; font-size: 12px; font-weight: 600; color: var(--bn-cyan); margin-bottom: 4px; }
.bn-ladder__body small { font-size: 10px; color: rgba(255, 255, 255, 0.48); line-height: 1.4; }

/* Live board */
.bn-live-board {
    margin-top: 48px;
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.bn-live-board__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 600;
}
.bn-live-board__list { padding: 8px 0; }
.bn-live-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 90px;
    gap: 16px;
    align-items: center;
    padding: 12px 24px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .15s;
}
.bn-live-row:hover { background: rgba(255,255,255,.04); }
.bn-live-row:last-child { border-bottom: none; }
.bn-live-row__fn { font-weight: 800; color: var(--bn-cyan); letter-spacing: .04em; }
.bn-live-row__route { color: rgba(255,255,255,.85); }
.bn-live-row__pilot { color: rgba(255,255,255,.5); }
.bn-live-row__status {
    font-size: 11px;
    font-weight: 700;
    color: #34D399;
    text-align: right;
}

/* Crew avatars */
.bn-crew-card {
    position: relative;
    padding-top: 48px;
    overflow: hidden;
}
.bn-crew-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--crew-hue, 210) 80% 55%), hsl(calc(var(--crew-hue, 210) + 40) 80% 60%));
    opacity: 0;
    transition: opacity .25s;
}
.bn-crew-card:hover::before { opacity: 1; }
.bn-crew-card__avatar {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, hsl(var(--crew-hue, 210) 70% 45%), hsl(calc(var(--crew-hue, 210) + 30) 70% 55%));
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 24px hsla(var(--crew-hue, 210), 70%, 40%, .35);
}
.bn-crew-card__top { padding-left: 72px; min-height: 56px; }
.bn-crew-card__mail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* CTA rings */
.bn-cta__rings {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}
.bn-cta__rings span {
    position: absolute;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    animation: bnCtaRing 8s ease-in-out infinite;
}
.bn-cta__rings span:nth-child(1) { width: 400px; height: 400px; }
.bn-cta__rings span:nth-child(2) { width: 600px; height: 600px; animation-delay: -4s; opacity: .5; }
@keyframes bnCtaRing {
    0%, 100% { transform: scale(1); opacity: .3; }
    50% { transform: scale(1.05); opacity: .6; }
}
.bn-cta__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 20px;
    color: var(--bn-cyan);
}

@media (max-width: 960px) {
    .bn-hero__visual { padding-bottom: 20px; }
    .bn-ladder { flex-wrap: wrap; gap: 24px; }
    .bn-ladder__step { flex: 0 0 calc(50% - 12px); }
    .bn-live-row { grid-template-columns: 1fr 1fr; }
}
