/* =================================================================
   HOW TO GET OUT OF MB ASAP — Design System
   ================================================================= */

:root {
  /* Brand palette — NAVY BLUE is the hero */
  --ink:        #060b1c;   /* deepest navy */
  --ink-2:      #0a1330;   /* navy panel */
  --ink-3:      #0f1c44;   /* navy raised */
  --navy:       #1b3aa0;   /* core brand navy */
  --navy-glow:  #2f5bff;   /* glowing navy/blue */
  --frost:      #eaf2ff;
  --paper:      #f7f9fc;
  --muted:      #8a97b1;
  --line:       rgba(120, 160, 255, 0.14);
  --glass:      rgba(20, 36, 90, 0.35);
  --glass-2:    rgba(20, 36, 90, 0.5);

  /* Accent — "warm escape" gradient */
  --warm-1:     #ff7a59;   /* sunset coral */
  --warm-2:     #ff4d8d;   /* magenta */
  --warm-3:     #ffb347;   /* amber */
  --cool-1:     #4f7cff;   /* prairie-to-pacific blue */
  --cool-2:     #21d4fd;   /* glacier cyan */
  --mb-cold:    #6f8cff;   /* the cold we leave behind */

  --grad-warm:  linear-gradient(135deg, var(--warm-3) 0%, var(--warm-1) 45%, var(--warm-2) 100%);
  --grad-cool:  linear-gradient(135deg, var(--cool-2) 0%, var(--cool-1) 100%);
  --grad-navy:  linear-gradient(135deg, var(--navy-glow) 0%, var(--navy) 100%);
  --grad-hero:  radial-gradient(1200px 600px at 80% -10%, rgba(47,91,255,.4), transparent 60%),
                radial-gradient(900px 500px at 0% 10%, rgba(33,212,253,.18), transparent 55%),
                radial-gradient(700px 500px at 50% 120%, rgba(255,77,141,.16), transparent 60%),
                linear-gradient(180deg, rgba(6,11,28,.35) 0%, rgba(10,19,48,.65) 100%);

  /* Glow tokens */
  --glow-blue:  0 0 60px -8px rgba(47,91,255,.6);
  --glow-warm:  0 0 60px -8px rgba(255,77,141,.5);

  --radius:     22px;
  --radius-sm:  14px;
  --shadow:     0 20px 60px -20px rgba(3, 7, 18, 0.55);
  --shadow-lg:  0 40px 90px -30px rgba(3, 7, 18, 0.7);
  --maxw:       1180px;

  --font:       'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display:    'Space Grotesk', var(--font);
  --serif:      'Fraunces', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--frost);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; }

/* Editorial serif headlines — the signature voice */
.hero h1, .section-head h2, .page-head h1, .callout h2, .split-text h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variation-settings: 'SOFT' 0, 'WONK' 1, 'opsz' 144;
}
.hero h1 em, .page-head h1 em, .section-head h2 em, .split-text h2 em {
  font-style: italic; font-weight: 400; font-variation-settings: 'SOFT' 40, 'WONK' 1;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.accent { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent-cool { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =====================  NAV  ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(8, 17, 44, 0.55);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(120,160,255,.06), 0 18px 50px -30px rgba(47,91,255,.5);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.brand .dot {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad-warm); font-size: 1.1rem; box-shadow: 0 8px 24px -8px var(--warm-2);
  transform: rotate(-8deg);
}
.brand small { display: block; color: var(--muted); font-weight: 500; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--font); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px; border-radius: 11px; font-size: .92rem; font-weight: 500; color: #c7d2e8;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--grad-warm) !important; color: #1a0b12 !important; font-weight: 700 !important;
  box-shadow: 0 10px 26px -10px var(--warm-2);
}
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: #fff; width: 44px; height: 40px; border-radius: 11px; font-size: 1.2rem; cursor: pointer; }

/* =====================  HERO  ===================== */
.hero { position: relative; padding: 90px 0 70px; background: var(--grad-hero); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px; mask: radial-gradient(800px 400px at 50% 30%, #000, transparent 80%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: #b9c6e3; font-weight: 600; margin-bottom: 22px;
}
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: #2bd97c; box-shadow: 0 0 0 0 rgba(43,217,124,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(43,217,124,0); } 100% { box-shadow: 0 0 0 0 rgba(43,217,124,0); } }

.hero h1 { font-size: clamp(2.9rem, 7vw, 5.7rem); line-height: 1.02; margin-bottom: 22px; }
.hero p.lead { font-size: 1.22rem; color: #c2cee6; max-width: 40ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 14px;
  font-weight: 600; font-size: 1rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s, box-shadow .2s, background .2s; font-family: var(--font);
}
.btn-primary { background: var(--grad-warm); color: #1a0b12; box-shadow: 0 16px 38px -14px var(--warm-2), var(--glow-warm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px var(--warm-2), 0 0 80px -6px rgba(255,77,141,.7); }
.btn-navy { background: var(--grad-navy); color: #fff; box-shadow: 0 16px 38px -14px var(--navy-glow), var(--glow-blue); }
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 0 80px -4px rgba(47,91,255,.8); }
.btn-ghost { background: rgba(255,255,255,.05); border-color: var(--line); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* Hero visual collage */
.hero-collage { position: relative; height: 460px; }
.hero-collage .ph {
  position: absolute; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-collage .ph img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .p1 { width: 60%; height: 64%; top: 0; right: 0; z-index: 2; }
.hero-collage .p2 { width: 52%; height: 50%; bottom: 0; left: 0; z-index: 3; }
.hero-collage .p3 { width: 34%; height: 34%; top: 30%; left: 8%; z-index: 1; }
.hero-collage .float-card {
  position: absolute; z-index: 5; bottom: 14%; right: -6%; background: var(--glass-2);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow), var(--glow-blue); display: flex; align-items: center; gap: 12px; font-size: .9rem;
}
.float-card .big { font-family: var(--display); font-size: 1.4rem; font-weight: 700; }

.ph-fallback { width: 100%; height: 100%; background: var(--grad-cool); display: grid; place-items: center; font-size: 2.4rem; }

/* =====================  STATS STRIP  ===================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; position: relative; }
.stat { background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; transition: box-shadow .25s, border-color .25s; }
.stat:hover { box-shadow: var(--glow-blue); border-color: rgba(120,160,255,.4); }
.stat .n { font-family: var(--display); font-size: 1.9rem; font-weight: 700; }
.stat .l { color: var(--muted); font-size: .9rem; }

/* =====================  SECTIONS  ===================== */
section.block { padding: 86px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head .tag { color: var(--warm-1); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 14px; }
.section-head p { color: #aeb9d4; font-size: 1.1rem; }

.alt { background: rgba(10,19,48,.45); backdrop-filter: blur(2px); }
.alt-2 { background: linear-gradient(180deg, rgba(6,11,28,.2) 0%, rgba(10,19,48,.55) 100%); }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--glass); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow), var(--glow-blue); border-color: rgba(120,160,255,.4); }
.card .thumb { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .thumb img { transform: scale(1.06); }
.card .thumb .badge {
  position: absolute; top: 14px; left: 14px; background: rgba(11,16,32,.78); backdrop-filter: blur(6px);
  border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
}
.card .body { padding: 22px; }
.card .body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card .body p { color: #a9b4cf; font-size: .96rem; }
.card .meta { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }
.card .meta b { color: var(--frost); font-weight: 600; }

/* Icon feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .25s, border-color .25s, box-shadow .25s; }
.feature:hover { transform: translateY(-5px); border-color: rgba(120,160,255,.4); box-shadow: var(--glow-blue); }
.feature .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; background: var(--grad-warm); box-shadow: 0 12px 30px -12px var(--warm-2); }
.feature.cool .ic { background: var(--grad-cool); box-shadow: 0 12px 30px -12px var(--cool-1); }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: #a9b4cf; font-size: .96rem; }

/* Big split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; border: 1px solid var(--line); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.split-text p { color: #aeb9d4; margin-bottom: 14px; }

/* Checklist / steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: border-color .2s, box-shadow .25s; }
.step:hover { border-color: rgba(120,160,255,.4); box-shadow: var(--glow-blue); }
.step::before { counter-increment: step; content: counter(step); font-family: var(--display); font-weight: 700; font-size: 1.4rem; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-warm); color: #1a0b12; }
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: #a9b4cf; }

/* Pill list */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); font-size: .9rem; font-weight: 500; }
.pill.warm { background: rgba(255,122,89,.14); border-color: rgba(255,122,89,.35); color: #ffd2c5; }

/* Quote / callout */
.callout { background: var(--grad-warm); border-radius: var(--radius); padding: 48px; color: #1a0b12; text-align: center; }
.callout h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.callout p { font-size: 1.15rem; max-width: 52ch; margin: 0 auto 26px; opacity: .85; }
.callout .btn-primary { background: var(--ink); color: #fff; box-shadow: 0 16px 38px -14px rgba(0,0,0,.5); }

/* Table */
.compare { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.compare th { background: rgba(255,255,255,.04); font-family: var(--display); font-weight: 600; }
.compare tr:last-child td { border-bottom: none; }
.compare td:first-child { font-weight: 600; }
.tick { color: #2bd97c; } .cross { color: #ff6b6b; }

/* Page header (sub pages) */
.page-head { padding: 110px 0 70px; position: relative; overflow: hidden; }
.page-head.warm { background: var(--grad-hero); }
.page-head .crumbs { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.page-head .crumbs a:hover { color: #fff; }
.page-head h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.03; margin-bottom: 18px; max-width: 16ch; }
.page-head p { color: #c2cee6; font-size: 1.15rem; max-width: 56ch; }

/* TOC */
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.toc a { padding: 10px 16px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line); font-size: .9rem; font-weight: 500; transition: background .2s; }
.toc a:hover { background: rgba(255,255,255,.12); }

/* =====================  FOOTER  ===================== */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-family: var(--font); }
.footer a { display: block; color: #b6c1da; padding: 5px 0; font-size: .95rem; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer .brand { margin-bottom: 14px; }
.footer p.note { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .88rem; }

/* =====================  SIGNATURE: AURORA BACKGROUND  ===================== */
.aurora { position: fixed; inset: -20vh -10vw; z-index: -2; overflow: hidden; pointer-events: none; filter: saturate(135%); }
.aurora span {
  position: absolute; display: block; border-radius: 50%; filter: blur(70px); opacity: .55; mix-blend-mode: screen;
  will-change: transform;
}
.aurora .a1 { width: 46vw; height: 46vw; top: -6vh; left: -4vw; background: radial-gradient(circle, #2f5bff, transparent 66%); animation: aur1 26s ease-in-out infinite alternate; }
.aurora .a2 { width: 40vw; height: 40vw; top: 8vh; right: -6vw; background: radial-gradient(circle, #21d4fd, transparent 66%); animation: aur2 32s ease-in-out infinite alternate; opacity: .42; }
.aurora .a3 { width: 38vw; height: 38vw; bottom: -8vh; left: 18vw; background: radial-gradient(circle, #7a3cff, transparent 66%); animation: aur3 30s ease-in-out infinite alternate; opacity: .4; }
.aurora .a4 { width: 34vw; height: 34vw; bottom: 4vh; right: 10vw; background: radial-gradient(circle, #ff4d8d, transparent 66%); animation: aur4 38s ease-in-out infinite alternate; opacity: .3; }
@keyframes aur1 { to { transform: translate3d(14vw, 10vh, 0) scale(1.2); } }
@keyframes aur2 { to { transform: translate3d(-12vw, 14vh, 0) scale(1.15); } }
@keyframes aur3 { to { transform: translate3d(16vw, -10vh, 0) scale(1.25); } }
@keyframes aur4 { to { transform: translate3d(-14vw, -8vh, 0) scale(1.1); } }

/* Film-grain texture overlay */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor-follow glow */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; border-radius: 50%; z-index: -1; pointer-events: none;
  transform: translate(-50%, -50%); transition: opacity .4s;
  background: radial-gradient(circle, rgba(47,91,255,.14), transparent 60%);
}
@media (hover: none) { .cursor-glow { display: none; } }

/* Departure-board marquee ticker */
.ticker {
  position: relative; z-index: 90; overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg, rgba(47,91,255,.16), rgba(255,77,141,.16));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.ticker .track { display: inline-block; padding: 11px 0; animation: tick 38s linear infinite; font-family: var(--display); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #cdd9f4; }
.ticker .track span { margin: 0 26px; opacity: .9; }
.ticker .track b { color: var(--warm-1); font-weight: 700; }
.ticker:hover .track { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SIGNATURE: scroll thermometer — page warms as you descend */
.therm {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 80;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.therm .tube {
  width: 8px; height: 190px; border-radius: 999px; position: relative; overflow: hidden;
  background: rgba(120,160,255,.16); border: 1px solid var(--line); box-shadow: inset 0 0 8px rgba(0,0,0,.4);
}
.therm .merc {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6%;
  background: linear-gradient(180deg, #ff4d8d, #ff7a59 40%, #21d4fd 100%);
  border-radius: 999px; transition: height .15s ease-out; box-shadow: 0 0 14px rgba(255,122,89,.7);
}
.therm .bulb {
  width: 18px; height: 18px; border-radius: 50%; margin-top: -4px;
  background: var(--warm-1); box-shadow: 0 0 16px rgba(255,122,89,.9); transition: background .2s;
}
.therm .read { font-family: var(--display); font-weight: 700; font-size: .78rem; color: #cdd9f4; min-width: 48px; text-align: center; }
.therm .cap { writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 1100px) { .therm { display: none; } }

/* =====================  GLOW + GLASS UTILITIES  ===================== */
.glow-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; z-index: 0; animation: drift 14s ease-in-out infinite alternate; }
.glow-blob.blue { background: radial-gradient(circle, rgba(47,91,255,.9), transparent 70%); }
.glow-blob.cyan { background: radial-gradient(circle, rgba(33,212,253,.7), transparent 70%); }
.glow-blob.pink { background: radial-gradient(circle, rgba(255,77,141,.6), transparent 70%); }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(30px,-26px,0) scale(1.12); } }
section.block { position: relative; }
section.block .wrap { position: relative; z-index: 1; }

.glass-panel {
  background: var(--glass); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}

/* =====================  REVEAL ANIMATION  ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .hero-collage { height: 380px; margin-top: 10px; }
  .cards, .features { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 24px 24px; background: rgba(11,16,32,.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .3s ease; }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; }
  .cards, .features, .cards.two { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .callout { padding: 32px 22px; }
  section.block { padding: 60px 0; }
}
