/* ============================================================
   AirPro — shared design tokens & primitives
   ============================================================ */

:root {
  /* brand */
  --orange: #F58634;
  --orange-600: #E0741F;
  --orange-50: #FEF0E7;
  --orange-100: #FCE2D2;
  --navy: #17084D;
  --navy-90: rgba(23, 8, 77, 0.92);
  --navy-70: rgba(23, 8, 77, 0.72);
  --navy-50: rgba(23, 8, 77, 0.5);
  --navy-30: rgba(23, 8, 77, 0.3);
  --navy-12: rgba(23, 8, 77, 0.12);
  --navy-08: rgba(23, 8, 77, 0.08);
  --navy-04: rgba(23, 8, 77, 0.04);

  --cream: #FBF7F2;
  --cream-2: #F6EFE6;
  --white: #FFFFFF;

  --ink: #17084D;
  --ink-2: #4A4565;
  --ink-3: #7A7591;

  /* layout */
  --maxw: 1280px;
  --gutter: 32px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* card style (tweakable) */
  --card-bg: #ffffff;
  --card-border: 1px solid var(--navy-08);
  --card-shadow: 0 1px 0 rgba(23,8,77,0.02), 0 12px 28px -16px rgba(23,8,77,0.18);

  /* page bg (tweakable) */
  --page-bg: var(--cream);
  --page-fg: var(--ink);
  --section-alt: var(--white);

  /* type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* card style variants (set via [data-card-style]) */
[data-card-style="flat"] {
  --card-bg: var(--white);
  --card-border: 1px solid transparent;
  --card-shadow: none;
}
[data-card-style="outlined"] {
  --card-bg: transparent;
  --card-border: 1px solid var(--navy-12);
  --card-shadow: none;
}
[data-card-style="elevated"] {
  --card-bg: #ffffff;
  --card-border: 1px solid transparent;
  --card-shadow: 0 1px 0 rgba(23,8,77,0.02), 0 18px 40px -20px rgba(23,8,77,0.22), 0 4px 12px -8px rgba(23,8,77,0.10);
}

/* theme variants */
[data-theme="cream"] {
  --page-bg: var(--cream);
  --section-alt: var(--white);
  --page-fg: var(--ink);
}
[data-theme="white"] {
  --page-bg: #ffffff;
  --section-alt: var(--cream);
  --page-fg: var(--ink);
}
[data-theme="navy"] {
  --page-bg: #0E0535;
  --section-alt: #170A52;
  --page-fg: #F4F1FF;
  --ink: #F4F1FF;
  --ink-2: rgba(244,241,255,0.72);
  --ink-3: rgba(244,241,255,0.5);
  --navy-08: rgba(255,255,255,0.06);
  --navy-12: rgba(255,255,255,0.10);
  --navy-04: rgba(255,255,255,0.03);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: 1px solid rgba(255,255,255,0.08);
  --orange-50: rgba(245,134,52,0.12);
}
[data-theme="navy"][data-card-style="elevated"] {
  --card-bg: rgba(255,255,255,0.06);
  --card-shadow: 0 18px 40px -20px rgba(0,0,0,0.5);
}

/* ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--page-fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.04; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.25; font-weight: 600; letter-spacing: -0.015em; }
p  { margin: 0; color: var(--ink-2); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--navy-12); }
.btn-ghost:hover { border-color: var(--navy-30); }
.btn-dark { background: var(--navy); color: white; }
.btn-dark:hover { background: #25148C; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }

/* card */
.card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

/* ============================================================
   TOP BAR + HEADER + MEGA MENU
   ============================================================ */

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
}
.topbar .row {
  height: 38px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.topbar .left { display: flex; align-items: center; gap: 18px; font-family: var(--mono); letter-spacing: 0.04em; }
.topbar .left .dot { width: 6px; height: 6px; border-radius: 50%; background: #38D399; box-shadow: 0 0 10px #38D399; }
.topbar .right { display: flex; align-items: center; gap: 22px; }
.topbar .right a { color: rgba(255,255,255,0.78); display: inline-flex; align-items: center; gap: 6px; }
.topbar .right a:hover { color: white; }
.topbar .lang { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.topbar .sep { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

.header {
  background: var(--page-bg);
  border-bottom: 1px solid var(--navy-08);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(8px);
}
.header .row {
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--ink);
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--orange);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 16px -6px rgba(245,134,52,.7);
}
.logo-mark::before, .logo-mark::after {
  content:""; position:absolute; border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 50%; left: 50%; top: 55%; transform: translate(-50%, -50%);
}
.logo-mark::before { width: 14px; height: 14px; }
.logo-mark::after { width: 22px; height: 22px; opacity: 0.55; }

/* mega nav */
.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-item { position: static; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  height: 78px; padding: 0 14px;
  font-weight: 500; font-size: 14.5px;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.nav-link svg { opacity: 0.5; transition: transform .2s ease; }
.nav-item:hover .nav-link { color: var(--orange); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); opacity: 1; }
.nav-item:hover .nav-link { border-bottom-color: var(--orange); }

.header-right { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1px solid var(--navy-12);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.icon-btn:hover { border-color: var(--orange); color: var(--orange); }

/* mega panel */
.mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--page-bg);
  border-top: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
  box-shadow: 0 24px 48px -28px rgba(23,8,77,0.25);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 40;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega,
.mega:hover {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.mega-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--gutter) 40px;
  display: grid;
  gap: 36px;
}
.mega-inner.cols-3 { grid-template-columns: repeat(3, 1fr) 280px; }
.mega-inner.cols-4 { grid-template-columns: repeat(4, 1fr) 280px; }
.mega-inner.cols-2 { grid-template-columns: repeat(2, 1fr) 320px; }
.mega-inner.cols-1 { grid-template-columns: 1fr 320px; }

.mega-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-08);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mega-col a.mega-link {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500; font-size: 14px;
  border: 1px solid transparent;
}
.mega-col a.mega-link span.desc { color: var(--ink-3); font-size: 12px; font-weight: 400; }
.mega-col a.mega-link:hover {
  background: var(--orange-50); color: var(--navy);
}
.mega-col a.mega-link .arrow { color: var(--ink-3); transition: transform .15s ease; }
.mega-col a.mega-link:hover .arrow { color: var(--orange); transform: translateX(3px); }

.mega-col ul .sub {
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 400;
  display: flex; align-items: center; gap: 8px;
  height: 30px;
}
.mega-col ul .sub::before {
  content: "";
  width: 8px; height: 1px;
  background: var(--navy-30);
  position: absolute; left: 8px; top: 50%;
}

.mega-feature {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
[data-theme="navy"] .mega-feature { background: rgba(255,255,255,0.06); }
.mega-feature .tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); display: inline-flex; align-items: center; gap: 6px;
}
.mega-feature h5 { font-size: 18px; font-weight: 600; line-height: 1.25; margin: 0; color: white; letter-spacing: -0.01em; }
.mega-feature p { color: rgba(255,255,255,0.7); font-size: 13px; }
.mega-feature .feature-vis { height: 110px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.mega-feature .feature-cta { color: var(--orange); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   GENERIC SECTION SCAFFOLD
   ============================================================ */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section.alt { background: var(--section-alt); }

.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin-bottom: 56px; }
.section-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: 100%; gap: 32px; }
.section-head .lede { font-size: 18px; color: var(--ink-2); }

/* tags / chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  background: var(--orange-50); color: var(--orange-600);
  border: 1px solid var(--orange-100);
}
[data-theme="navy"] .chip { background: rgba(245,134,52,0.15); border-color: rgba(245,134,52,0.3); color: var(--orange); }

/* footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; }
.footer h5 { color: white; font-size: 12px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.10); font-size: 12.5px; color: rgba(255,255,255,0.5); font-family: var(--mono); letter-spacing: 0.04em; }

/* ============================================================
   SHARED SUBPAGE PRIMITIVES (about / board / contact / ipo / prospectus)
   ============================================================ */

/* page banner */
.page-banner {
  padding: 64px 0 72px;
  background:
    radial-gradient(1000px 420px at 100% -10%, rgba(245,134,52,0.20), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(120,80,255,0.10), transparent 60%),
    var(--cream-2);
  position: relative; overflow: hidden;
}
[data-theme="navy"] .page-banner { background: radial-gradient(1000px 420px at 100% -10%, rgba(245,134,52,0.18), transparent 60%), #0E0535; }
[data-theme="white"] .page-banner { background: radial-gradient(1000px 420px at 100% -10%, rgba(245,134,52,0.16), transparent 60%), var(--cream); }
.page-banner.navy { background: var(--navy); color: #fff; }
.page-banner.navy::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 360px at 90% 0%, rgba(245,134,52,0.22), transparent 60%); pointer-events:none; }
.page-banner.navy h1, .page-banner.navy .lede { color: #fff; }
.page-banner.navy .crumbs-bar, .page-banner.navy .crumbs-bar a { color: rgba(255,255,255,0.55); }
.page-banner.navy .crumbs-bar a:hover { color: #fff; }

.crumbs-bar { display: flex; gap: 8px; align-items: center; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; flex-wrap: wrap; }
.crumbs-bar a { color: var(--ink-3); }
.crumbs-bar a:hover { color: var(--orange); }

.page-banner h1 { font-size: clamp(38px, 5vw, 60px); max-width: 16ch; position: relative; }
.page-banner .lede { margin-top: 20px; font-size: 18px; color: var(--ink-2); max-width: 620px; position: relative; }
.page-banner .banner-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; position: relative; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-strip .s .num { font-size: clamp(34px, 3.4vw, 48px); font-weight: 700; letter-spacing: -0.035em; color: var(--ink); }
.stat-strip .s .num span { color: var(--orange); }
.stat-strip .s .lbl { font-size: 13px; color: var(--ink-2); margin-top: 6px; max-width: 22ch; }

/* generic value card */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.val-card {
  background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow); padding: 30px; display: flex; flex-direction: column; gap: 14px;
}
.val-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-50); color: var(--orange-600); display: inline-flex; align-items: center; justify-content: center; }
[data-theme="navy"] .val-card .ic { background: rgba(245,134,52,0.18); color: var(--orange); }
.val-card h3 { font-size: 20px; }
.val-card p { font-size: 14.5px; color: var(--ink-2); }

/* split row (image + text) */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-row.rev .split-media { order: 2; }
.split-media {
  aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--orange-50), #fff); border: 1px solid var(--navy-08); position: relative;
}
[data-theme="navy"] .split-media { background: rgba(255,255,255,0.04); }
.split-media svg { position:absolute; inset:0; width:100%; height:100%; }
.split-copy h2 { font-size: clamp(28px, 3vw, 40px); }
.split-copy p { margin-top: 16px; font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.split-copy ul.ticks { list-style:none; padding:0; margin: 20px 0 0; display:flex; flex-direction:column; gap: 10px; }
.split-copy ul.ticks li { display:flex; gap: 12px; align-items:flex-start; font-size: 15px; color: var(--ink); }
.split-copy ul.ticks li svg { flex-shrink:0; margin-top:2px; color: var(--orange); }

/* timeline */
.timeline { position: relative; margin-top: 40px; }
.timeline::before { content:""; position:absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--navy-08); }
.tl-item { position: relative; padding: 0 0 36px 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot { position:absolute; left: 10px; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--card-bg); border: 2px solid var(--orange); display:flex; align-items:center; justify-content:center; }
.tl-item .dot::after { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.tl-item .yr { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--orange); font-weight: 600; }
.tl-item h4 { font-size: 18px; margin-top: 4px; }
.tl-item p { font-size: 14.5px; color: var(--ink-2); margin-top: 4px; max-width: 560px; }

/* team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-grid.lead { grid-template-columns: repeat(3, 1fr); }
.person {
  background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column;
}
.person .photo { aspect-ratio: 1; position: relative; overflow: hidden; }
.person .photo svg { position:absolute; inset:0; width:100%; height:100%; }
.person .photo .tag { position:absolute; left: 14px; bottom: 14px; z-index:2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,0.92); color: var(--navy); }
.person .body { padding: 20px 22px; }
.person .body .nm { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.person .body .role { font-size: 13px; color: var(--orange-600); font-weight: 600; margin-top: 2px; }
.person .body p { font-size: 13px; color: var(--ink-3); margin-top: 10px; line-height: 1.5; }
.person .body .links { display:flex; gap: 8px; margin-top: 14px; }
.person .body .links a { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--navy-12); display:flex; align-items:center; justify-content:center; color: var(--ink-2); }
.person .body .links a:hover { border-color: var(--orange); color: var(--orange); }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: flex-start; }
.contact-cards { display:flex; flex-direction: column; gap: 14px; }
.contact-card { display:flex; gap: 16px; padding: 22px; border: 1px solid var(--navy-08); border-radius: var(--radius); background: var(--card-bg); }
.contact-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-50); color: var(--orange-600); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
[data-theme="navy"] .contact-card .ic { background: rgba(245,134,52,0.18); color: var(--orange); }
.contact-card h4 { font-size: 16px; }
.contact-card p { font-size: 14px; color: var(--ink-2); margin-top: 4px; }
.contact-card a { color: var(--orange-600); font-weight: 600; }

.form-card { background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-xl); box-shadow: var(--card-shadow); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display:flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 14.5px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--navy-12); border-radius: 10px; background: var(--page-bg); width: 100%;
  transition: border-color .15s ease;
}
[data-theme="navy"] .field input, [data-theme="navy"] .field select, [data-theme="navy"] .field textarea { background: rgba(255,255,255,0.04); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 120px; }

/* map placeholder */
.map-vis { height: 100%; min-height: 280px; border-radius: var(--radius); border: 1px solid var(--navy-08); overflow:hidden; position: relative; background: #EDE7DD; }
[data-theme="navy"] .map-vis { background: rgba(255,255,255,0.04); }

/* IPO / data tables */
.data-table { width: 100%; border: 1px solid var(--navy-08); border-radius: var(--radius); overflow: hidden; background: var(--card-bg); }
.data-table .tr { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--navy-08); font-size: 14.5px; }
.data-table .tr:last-child { border-bottom: 0; }
.data-table .tr .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); align-self: center; }
.data-table .tr .v { font-weight: 600; color: var(--ink); }
.data-table .tr:nth-child(even) { background: var(--navy-04); }

/* metric cards (IPO) */
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.metric { background: var(--card-bg); border: var(--card-border); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); padding: 26px; }
.metric .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.metric .v { font-size: clamp(28px, 2.6vw, 38px); font-weight: 700; letter-spacing: -0.03em; margin-top: 8px; color: var(--ink); }
.metric .v span { color: var(--orange); }
.metric .d { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; }

/* document download list (prospectus) */
.doc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.doc-item { display:flex; align-items:center; gap: 16px; padding: 20px; border: 1px solid var(--navy-08); border-radius: var(--radius); background: var(--card-bg); text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.doc-item:hover { border-color: var(--orange); transform: translateY(-2px); }
.doc-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; display:flex; align-items:center; justify-content:center; font-family: var(--mono); font-size: 11px; font-weight: 600; flex-shrink:0; }
.doc-item .nm { font-size: 15px; font-weight: 600; }
.doc-item small { display:block; font-size: 11.5px; color: var(--ink-3); font-family: var(--mono); margin-top: 2px; }
.doc-item .arrow { margin-left: auto; color: var(--ink-3); font-size: 18px; }

/* TOC (prospectus) */
.toc { list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: 2px; position: sticky; top: 96px; }
.toc a { display:flex; align-items:center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; color: var(--ink-2); }
.toc a .n { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.toc a:hover, .toc a.active { background: var(--orange-50); color: var(--orange-600); }
[data-theme="navy"] .toc a:hover, [data-theme="navy"] .toc a.active { background: rgba(245,134,52,0.15); }

.prose h3 { font-size: 22px; margin: 36px 0 12px; padding-top: 12px; }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 15.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; max-width: 70ch; }
.prose ul { margin: 0 0 16px; padding-left: 20px; color: var(--ink-2); font-size: 15px; line-height: 1.7; }

/* notice / disclaimer banner */
.notice { display:flex; gap: 14px; padding: 20px 24px; border-radius: var(--radius); background: var(--orange-50); border: 1px solid var(--orange-100); }
[data-theme="navy"] .notice { background: rgba(245,134,52,0.12); border-color: rgba(245,134,52,0.3); }
.notice .ic { color: var(--orange-600); flex-shrink:0; }
.notice p { font-size: 13.5px; color: var(--ink-2); line-height: 1.6; }
.notice strong { color: var(--ink); }

@media (max-width: 1100px) {
  .stat-strip, .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid { grid-template-columns: 1fr; }
  .split-row { grid-template-columns: 1fr; gap: 32px; }
  .split-row.rev .split-media { order: 0; }
  .team-grid, .team-grid.lead { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-banner .banner-grid { grid-template-columns: 1fr; gap: 32px; }
  .doc-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stat-strip, .metric-grid, .team-grid, .team-grid.lead { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
