/* ============================================================
   Manston Air Group — manstonairgroup.com
   Shared design system
   ============================================================ */

:root {
  --bg-0: #04070d;
  --bg-1: #071120;
  --bg-2: #0b1a30;
  --panel: rgba(13, 26, 50, 0.55);
  --panel-solid: #0c1930;
  --line: rgba(122, 174, 255, 0.14);
  --line-strong: rgba(122, 174, 255, 0.28);
  --txt: #eaf1fb;
  --mut: #9db1cc;
  --blue: #2f9dff;
  --blue-soft: #7ab8ff;
  --navy: #16408f;
  --glow: rgba(47, 157, 255, 0.35);
  --green: #35d07f;
  --amber: #ffb347;
  --radius: 18px;
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--blue-soft); text-decoration: none; }

::selection { background: rgba(47, 157, 255, 0.4); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; }

/* ---------- Utility ---------- */
.wrap { width: min(1180px, 92vw); margin: 0 auto; }

.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 34px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

.h-xl {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.h-xl .grad, .grad-text {
  background: linear-gradient(92deg, #2f9dff 10%, #8fc5ff 55%, #2f9dff 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lede { font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--mut); max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, #2f9dff, #1667d8);
  color: #fff; box-shadow: 0 10px 30px -8px var(--glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px var(--glow); }
.btn-ghost {
  background: rgba(122, 174, 255, 0.07); color: var(--txt);
  border-color: var(--line-strong); backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(122, 174, 255, 0.14); border-color: var(--blue); }
.btn-lg { padding: 18px 38px; font-size: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 9, 17, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.8);
}
.nav-inner {
  display: flex; align-items: center; gap: 30px;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo .word {
  font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #fff;
  letter-spacing: 0.01em;
}
.nav-logo .word span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a:not(.btn) {
  display: block; padding: 9px 15px; border-radius: 10px;
  color: var(--mut); font-weight: 500; font-size: 15px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:not(.btn):hover, .nav-links a.active:not(.btn) { color: #fff; background: rgba(122, 174, 255, 0.08); }
.nav-links .btn { padding: 11px 22px; font-size: 14.5px; margin-left: 6px; }
.nav-burger {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  width: 44px; height: 44px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; top: 76px; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(5, 9, 17, 0.97); backdrop-filter: blur(18px);
    padding: 18px 5vw 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a:not(.btn) { padding: 14px 16px; font-size: 16px; }
  .nav-links .btn { margin: 8px 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}
.hero-slides, .hero-slides .slide { position: absolute; inset: 0; }
.hero-slides .slide {
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 2.2s ease;
}
.hero-slides .slide.on {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.14); }
  to { transform: scale(1.0); }
}
.hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.62) 0%, rgba(4, 7, 13, 0.25) 40%, rgba(4, 7, 13, 0.88) 88%),
    radial-gradient(120% 90% at 20% 45%, rgba(4, 10, 20, 0.55) 0%, transparent 60%);
}
.hero-horse {
  position: absolute; z-index: 3; right: 6vw; top: 16vh;
  width: clamp(190px, 24vw, 360px); opacity: 0.1;
  filter: drop-shadow(0 0 40px rgba(47, 157, 255, 0.5));
  animation: horsefloat 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes horsefloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-24px) rotate(1.5deg); }
}
.hero-content { position: relative; z-index: 5; width: min(1180px, 92vw); margin: 0 auto; padding: 140px 0 110px; }
.hero-strap {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(8, 17, 32, 0.55); backdrop-filter: blur(10px);
  padding: 9px 20px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-soft); margin-bottom: 30px;
}
.hero-strap .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.55); }
  60% { box-shadow: 0 0 0 9px rgba(53, 208, 127, 0); }
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.02;
  margin-bottom: 26px; max-width: 13ch;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: riseup 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.14s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.28s; }
@keyframes riseup { to { transform: translateY(0); } }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); margin-bottom: 40px; max-width: 560px; opacity: 0; animation: fadeup 1s ease 0.55s forwards; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeup 1s ease 0.75s forwards; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-dots { position: absolute; z-index: 6; bottom: 42px; right: 6vw; display: flex; gap: 10px; }
.hero-dots button {
  width: 34px; height: 4px; border-radius: 4px; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.22); transition: background 0.3s;
}
.hero-dots button.on { background: var(--blue); box-shadow: 0 0 12px var(--glow); }
.hero-scroll {
  position: absolute; z-index: 6; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--mut); font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero-scroll .mouse {
  width: 24px; height: 38px; border: 2px solid var(--line-strong); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll .mouse i { width: 3px; height: 8px; border-radius: 3px; background: var(--blue); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* flight path svg */
.hero-path { position: absolute; z-index: 4; inset: auto 0 0 0; width: 100%; height: 46vh; pointer-events: none; opacity: 0.5; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Stats ---------- */
.stats {
  position: relative; z-index: 5;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(11, 26, 48, 0.6), rgba(7, 17, 32, 0.6));
  backdrop-filter: blur(8px);
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 38px 12px; text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 26%; height: 48%; width: 1px;
  background: var(--line);
}
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: #fff; letter-spacing: -0.01em;
}
.stat b .plus { color: var(--blue); }
.stat span { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mut); }
.stat .live-tag {
  display: none; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--green);
}
.stats.is-live .live-tag { display: block; }
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd)::before { display: none; }
  .stat:last-child { grid-column: 1 / -1; }
  .stat { padding: 26px 10px; }
}

/* ---------- Airline cards ---------- */
.airlines-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
@media (max-width: 860px) { .airlines-grid { grid-template-columns: 1fr; } }
.airline-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); min-height: 380px;
  display: flex; align-items: flex-end;
  transform: translateZ(0);
}
.airline-card .bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
  filter: saturate(0.92) brightness(0.86);
}
.airline-card:hover .bg { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.airline-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(4, 7, 13, 0.05) 30%, rgba(4, 7, 13, 0.93) 88%);
}
.airline-card .body { position: relative; z-index: 2; padding: 28px 30px; width: 100%; }
.airline-card .logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 12px;
  padding: 8px 14px; margin-bottom: 14px; box-shadow: 0 8px 26px -10px rgba(0, 0, 0, 0.7);
}
.airline-card .logo-chip img { height: 34px; width: auto; }
.airline-card h3 { font-size: 1.45rem; font-weight: 800; color: #fff; }
.airline-card .tag { color: var(--blue-soft); font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.airline-card p { color: #c3d2e8; font-size: 14.8px; max-width: 46ch; }
.airline-card .hubs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.airline-card .hubs i {
  font-style: normal; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  border: 1px solid var(--line-strong); border-radius: 7px; padding: 4px 9px;
  color: var(--blue-soft); background: rgba(8, 17, 32, 0.6); backdrop-filter: blur(4px);
}

/* ---------- Split feature (MAGCARS teaser) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }
.feat-list { list-style: none; margin: 26px 0 34px; display: grid; gap: 15px; }
.feat-list li { display: flex; gap: 14px; align-items: flex-start; color: #c9d7ec; font-size: 15.5px; }
.feat-list li b { color: #fff; font-weight: 600; }
.feat-list .ico {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, rgba(47, 157, 255, 0.2), rgba(22, 64, 143, 0.28));
  border: 1px solid var(--line-strong); color: var(--blue);
}
.feat-list .ico svg { width: 18px; height: 18px; }

/* ---------- ACARS mock UI ---------- */
.acars-mock {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #060d1a;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85), 0 0 70px -30px var(--glow);
  font-family: var(--font-display);
}
.acars-top {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: rgba(13, 26, 50, 0.8);
  border-bottom: 1px solid var(--line);
}
.acars-top .wdots { display: flex; gap: 6px; }
.acars-top .wdots i { width: 10px; height: 10px; border-radius: 50%; }
.acars-top .wdots i:nth-child(1) { background: #ff5f57; }
.acars-top .wdots i:nth-child(2) { background: #febc2e; }
.acars-top .wdots i:nth-child(3) { background: #28c840; }
.acars-top .title { margin: 0 auto; font-size: 12.5px; letter-spacing: 0.22em; color: var(--mut); font-weight: 700; }
.acars-top .rec { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--green); font-weight: 700; letter-spacing: 0.12em; }
.acars-top .rec i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
.acars-map { position: relative; height: 320px; overflow: hidden; background:
  radial-gradient(140% 110% at 75% 10%, rgba(22, 64, 143, 0.35), transparent 55%),
  linear-gradient(180deg, #08111f, #060d1a); }
.acars-map svg { width: 100%; height: 100%; display: block; }
.acars-hud {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.acars-hud .cell { padding: 15px 10px 17px; text-align: center; border-right: 1px solid var(--line); }
.acars-hud .cell:last-child { border-right: none; }
.acars-hud .cell label { display: block; font-size: 10px; letter-spacing: 0.24em; color: var(--mut); font-weight: 700; margin-bottom: 3px; }
.acars-hud .cell output { font-size: 21px; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.acars-hud .cell output small { font-size: 11px; color: var(--mut); font-weight: 600; margin-left: 3px; }
.acars-phase {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: inline-flex; gap: 7px; align-items: center;
  background: rgba(6, 13, 26, 0.8); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 6px 14px; backdrop-filter: blur(6px);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; color: var(--blue-soft);
}
.acars-phase i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 1.8s infinite; }
.acars-toast {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  background: rgba(6, 20, 14, 0.88); border: 1px solid rgba(53, 208, 127, 0.4);
  border-radius: 12px; padding: 10px 16px; backdrop-filter: blur(6px);
  font-size: 12.5px; color: #b8f0d4; font-weight: 600;
  opacity: 0; transform: translateY(12px); transition: opacity 0.6s, transform 0.6s;
}
.acars-toast.show { opacity: 1; transform: none; }
.acars-toast b { color: var(--green); font-weight: 800; }

/* ---------- Hall of Fame marquee ---------- */
.hof-section { overflow: hidden; }
.hof-track-outer { margin-top: 50px; position: relative; }
.hof-track-outer::before, .hof-track-outer::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12vw; z-index: 2; pointer-events: none;
}
.hof-track-outer::before { left: 0; background: linear-gradient(90deg, var(--bg-0), transparent); }
.hof-track-outer::after { right: 0; background: linear-gradient(-90deg, var(--bg-0), transparent); }
.hof-track { display: flex; gap: 20px; width: max-content; animation: marquee 80s linear infinite; }
.hof-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.hof-card {
  position: relative; width: 380px; aspect-ratio: 16 / 9.4; flex: none;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  cursor: zoom-in; background-size: cover; background-position: center;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.hof-card:hover { transform: translateY(-6px) scale(1.02); border-color: var(--blue); box-shadow: 0 20px 50px -18px var(--glow); }
.hof-card .label {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(4, 7, 13, 0.78); backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 5px 11px; font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.05em;
}
.hof-card .label small { color: var(--blue-soft); font-weight: 600; margin-left: 7px; }
.hof-card .trophy {
  position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(140deg, #ffcf5e, #f09819); display: flex; align-items: center; justify-content: center;
  color: #3c2500; box-shadow: 0 6px 18px -6px rgba(240, 152, 25, 0.7);
}
.hof-card .trophy svg { width: 16px; height: 16px; }
@media (max-width: 640px) { .hof-card { width: 300px; } }

/* ---------- HoF full gallery grid ---------- */
.hof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-top: 34px; }
.hof-grid .hof-card { width: auto; }
.hof-year { margin: 46px 0 6px; font-size: 1.3rem; font-weight: 800; color: var(--blue-soft); letter-spacing: 0.06em; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 16px;
  background: rgba(3, 5, 10, 0.93); backdrop-filter: blur(10px); padding: 4vh 4vw;
}
.lightbox.open { display: flex; animation: lbfade 0.3s ease; }
@keyframes lbfade { from { opacity: 0; } }
.lightbox img { max-width: 92vw; max-height: 78vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8); }
.lightbox .cap { color: #fff; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.04em; }
.lightbox .cap small { color: var(--blue-soft); margin-left: 10px; }
.lightbox .close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(13, 26, 50, 0.6);
  color: #fff; font-size: 20px; cursor: pointer; transition: background 0.2s;
}
.lightbox .close:hover { background: rgba(47, 157, 255, 0.3); }
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: rgba(13, 26, 50, 0.6); color: #fff; font-size: 22px; cursor: pointer; transition: background 0.2s;
}
.lightbox .lb-nav:hover { background: rgba(47, 157, 255, 0.3); }
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }

/* ---------- Feature tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 54px; }
.tile {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(13, 26, 50, 0.5), rgba(7, 17, 32, 0.35));
  padding: 30px 26px; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tile:hover { transform: translateY(-7px); border-color: var(--line-strong); box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.8), 0 0 40px -20px var(--glow); }
.tile .ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, rgba(47, 157, 255, 0.22), rgba(22, 64, 143, 0.3));
  border: 1px solid var(--line-strong); color: var(--blue);
}
.tile .ico svg { width: 24px; height: 24px; }
.tile h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 9px; color: #fff; }
.tile p { font-size: 14.5px; color: var(--mut); }

/* ---------- Big CTA ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; border: 1px solid var(--line-strong); }
.cta-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center 65%; filter: brightness(0.55) saturate(0.95); transform: scale(1.02); }
.cta-band .veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4, 7, 13, 0.88) 18%, rgba(4, 7, 13, 0.32) 70%); }
.cta-band .inner { position: relative; z-index: 2; padding: clamp(46px, 7vw, 90px) clamp(26px, 6vw, 80px); }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-bottom: 14px; max-width: 18ch; }
.cta-band p { color: #c9d7ec; max-width: 52ch; margin-bottom: 34px; }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; margin-top: 60px; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(47, 157, 255, 0.05));
}
.tl-item { position: relative; padding: 0 0 44px 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -30px; top: 5px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--bg-0); border: 3px solid var(--blue);
  box-shadow: 0 0 16px var(--glow);
}
.tl-item .yr { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1.05rem; letter-spacing: 0.1em; }
.tl-item h3 { font-size: 1.25rem; margin: 6px 0 8px; color: #fff; }
.tl-item p { color: var(--mut); max-width: 62ch; font-size: 15.5px; }

/* ---------- Partner strip ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 60px); margin-top: 44px; opacity: 0.85; }
.partners img { height: 34px; width: auto; filter: grayscale(0.3) brightness(1.4); transition: filter 0.3s, transform 0.3s; }
.partners img:hover { filter: none; transform: translateY(-3px); }
.partners .p-label { font-family: var(--font-display); font-weight: 700; color: var(--mut); font-size: 15px; letter-spacing: 0.06em; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; padding: 190px 0 110px; overflow: hidden;
  background: var(--bg-0);
}
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.42) saturate(0.9); }
.page-hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 7, 13, 0.5), rgba(4, 7, 13, 0.97)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }

/* ---------- Prose blocks ---------- */
.prose p { color: #c3d2e8; margin-bottom: 18px; font-size: 16px; max-width: 70ch; }
.prose p b, .prose p strong { color: #fff; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-0), #030509);
  padding: 70px 0 36px; margin-top: 40px;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut); margin-bottom: 18px; }
.foot-grid ul { list-style: none; display: grid; gap: 11px; }
.foot-grid ul a { color: #b6c6de; font-size: 14.5px; transition: color 0.2s; }
.foot-grid ul a:hover { color: var(--blue); }
.foot-brand img { height: 40px; margin-bottom: 16px; }
.foot-brand p { color: var(--mut); font-size: 14px; max-width: 34ch; }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  color: #6e809b; font-size: 13px;
}

/* ---------- Shop teaser card ---------- */
.badge-soon {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  color: var(--amber); border: 1px solid rgba(255, 179, 71, 0.45); border-radius: 6px;
  padding: 2px 8px; margin-left: 8px; vertical-align: middle;
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hof-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
