/* =========================================================
   TravCloud — travcloud.com
   Brand palette : #013047 · #219EBC · #FDB614 · #F6851F
   Brand type    : Hurme Geometric Sans 3
   ========================================================= */

/* ---------------------------------------------------------
   BRAND TYPEFACE — Hurme Geometric Sans 3
   Hurme is a licensed commercial family with no CDN, so the
   files are not bundled here. To switch the site onto the
   real face:
     1. Buy/locate the WEBFONT licence (.woff2) from
        hurmedesign.com or MyFonts.
     2. Drop the files into assets/fonts/ using the names below.
     3. Uncomment this block. Nothing else needs to change —
        the font stack already lists Hurme first.
   Until then the site renders in Figtree, the closest free
   geometric sans, so weights and spacing stay accurate.

@font-face {
  font-family: "Hurme Geometric Sans 3";
  src: url("../fonts/HurmeGeometricSans3-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Hurme Geometric Sans 3";
  src: url("../fonts/HurmeGeometricSans3-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Hurme Geometric Sans 3";
  src: url("../fonts/HurmeGeometricSans3-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Hurme Geometric Sans 3";
  src: url("../fonts/HurmeGeometricSans3-Black.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
--------------------------------------------------------- */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink:          #013047;
  --navy:         #013047;
  --navy-deep:    #011E2E;
  --navy-soft:    #06456A;

  --cyan:         #219EBC;
  --cyan-bright:  #4FC3E0;
  --cyan-wash:    #E7F3F8;

  --amber:        #FDB614;
  --amber-wash:   #FFF4D8;
  --gold-ink:     #A87400;   /* amber darkened for text on light grounds */

  --orange:       #F6851F;
  --orange-wash:  #FDEDE0;

  /* CTA gradient — a gold sheen built around the brand amber: pale highlight
     top-left, deepening to old gold bottom-right. The inset white line is what
     reads as light catching the top edge. Defined once so the header button and
     the in-page buttons can never drift apart.
     The darkest stop stops at #D18A0B on purpose — any deeper and the navy
     label drops below 4.5:1 contrast. */
  --cta-grad:       linear-gradient(135deg, #FFE59B 0%, #FDCB4A 32%, #F5AE12 66%, #D18A0B 100%);
  --cta-grad-hover: linear-gradient(135deg, #FFF0C2 0%, #FFD861 32%, #FDBB23 66%, #E09710 100%);
  --cta-shadow:       inset 0 1px 0 rgba(255,255,255,.55), 0 2px 5px rgba(1,48,71,.20), 0 12px 28px rgba(184,124,10,.42);
  --cta-shadow-hover: inset 0 1px 0 rgba(255,255,255,.65), 0 3px 8px rgba(1,48,71,.24), 0 18px 40px rgba(184,124,10,.52);

  /* Neutrals — biased toward the brand navy, never a flat grey */
  --paper:        #FFFFFF;
  --paper-2:      #F1F6F9;
  --paper-3:      #E6EFF4;
  --line:         #D3E1E9;
  --line-soft:    #E4EDF2;

  --body:         #2F5468;
  --muted:        #5E7F8F;
  --on-navy:      #E6F1F6;
  --on-navy-mute: #9CBDCC;
  --on-navy-line: rgba(255,255,255,.14);

  /* Type — Hurme first, Figtree as the licensed-font stand-in */
  --font-display: "Hurme Geometric Sans 3", "Hurme Geometric Sans No.3", "Figtree", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Hurme Geometric Sans 3", "Hurme Geometric Sans No.3", "Figtree", "Segoe UI", system-ui, sans-serif;
  --font-label:   var(--font-display);

  --wrap:  1160px;
  --gutter: 24px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(1,48,71,.06), 0 4px 14px rgba(1,48,71,.05);
  --shadow-md: 0 2px 6px rgba(1,48,71,.07), 0 18px 44px rgba(1,48,71,.10);
  --shadow-lg: 0 30px 70px rgba(1,30,46,.30);
}

/* ---------- Base ---------- */
body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-weight: 800;
}

p { text-wrap: pretty; }

::selection { background: var(--cyan); color: #fff; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 840px; }

.section { padding-block: clamp(60px, 7.5vw, 108px); }
.section--tight { padding-block: clamp(46px, 5vw, 70px); }
.section--tint { background: var(--paper-2); }
.section--line { border-top: 1px solid var(--line-soft); }

.section--navy {
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(33,158,188,.30), transparent 62%),
    linear-gradient(168deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-navy);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: var(--on-navy-mute); }

.stack { display: grid; gap: 18px; }
.stack--sm { display: grid; gap: 10px; }
.stack--lg { display: grid; gap: 34px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-label);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
}
.section--navy .eyebrow { color: var(--cyan-bright); }
.eyebrow--amber { color: var(--amber); }
.eyebrow--orange { color: var(--orange); }

.h-display { font-size: clamp(2.35rem, 5.2vw, 3.9rem); }
.h-page    { font-size: clamp(2rem, 4.2vw, 3.05rem); }
.h-section { font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
.h-card    { font-size: 1.14rem; font-weight: 700; letter-spacing: -.014em; }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: var(--body);
  max-width: 62ch;
}
.section--navy .lede { color: var(--on-navy); opacity: .94; }

.prose p { max-width: 68ch; }
.prose { display: grid; gap: 16px; }

.note {
  font-size: .875rem;
  color: var(--muted);
  max-width: 70ch;
}
.section--navy .note { color: var(--on-navy-mute); }

.pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.018em;
  text-wrap: balance;
}
.section--navy .pull { color: #fff; }

.section-head { display: grid; gap: 14px; max-width: 62ch; margin-bottom: clamp(34px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.005em;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--cta-grad);
  color: var(--ink);
  box-shadow: var(--cta-shadow);
}
.btn--primary:hover {
  background: var(--cta-grad-hover);
  box-shadow: var(--cta-shadow-hover);
}

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--navy-soft); }

.btn--ghost { border-color: var(--line); background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--onnavy { border-color: rgba(255,255,255,.30); color: #fff; background: rgba(255,255,255,.05); }
.btn--onnavy:hover { border-color: var(--cyan-bright); background: rgba(79,195,224,.16); }

.btn--sm { padding: 10px 18px; font-size: .88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.tlink {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .18s ease, color .18s ease;
}
.tlink::after { content: "→"; }
.tlink:hover { gap: 11px; color: var(--ink); }
.section--navy .tlink { color: var(--cyan-bright); }
.section--navy .tlink:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}

.logo { display: inline-flex; align-items: center; }
.logo img { height: 33px; width: auto; }
.logo--light img { height: 30px; }
@media (max-width: 600px) { .logo img { height: 26px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .935rem;
  font-weight: 500;
  color: var(--body);
  transition: color .16s ease, background-color .16s ease;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a[aria-current="page"] { color: var(--cyan); font-weight: 700; }

/* Header CTA.
   These selectors are scoped `.nav a.header-cta` on purpose: the generic
   `.nav a` rules above carry higher specificity than the `.btn--*` classes,
   so without this the nav's link colour and hover background win and the
   button renders as low-contrast text on a flat fill. */
.header-cta { margin-left: 10px; }
.nav a.header-cta {
  color: var(--ink);
  background: var(--cta-grad);
  box-shadow: var(--cta-shadow);
}
.nav a.header-cta:hover {
  color: var(--ink);
  background: var(--cta-grad-hover);
  box-shadow: var(--cta-shadow-hover);
}
.nav a.header-cta[aria-current="page"] { color: var(--ink); font-weight: 700; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 12px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle span + span { margin-top: 4px; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px var(--gutter) 20px;
    margin-left: 0;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 12px 8px; font-size: 1rem; }
  .header-cta { margin-left: 0; margin-top: 8px; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% 6%, rgba(33,158,188,.34), transparent 60%),
    radial-gradient(700px 420px at 6% 96%, rgba(246,133,31,.12), transparent 62%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-navy);
  padding-block: clamp(52px, 6.5vw, 92px) clamp(60px, 7vw, 100px);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(36px, 5vw, 68px);
  /* Top-aligned, not centred: the right column is much taller, so centring
     pushed the headline down past the top of the chat card. */
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero__grid { align-items: stretch; }
}
.hero h1 { font-size: clamp(2.3rem, 4.9vw, 3.7rem); color: #fff; }
.hero__lede { color: var(--on-navy); opacity: .92; font-size: clamp(1.04rem, 1.4vw, 1.18rem); max-width: 54ch; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-family: var(--font-label);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-navy-mute);
  padding-top: 6px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex: none; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* ---------- Chat demo ---------- */
.demo { display: grid; gap: 14px; }

.phone {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--on-navy-line);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.phone__bar {
  display: flex; align-items: center; gap: 11px;
  padding: 4px 6px 13px;
  border-bottom: 1px solid var(--on-navy-line);
}
.phone__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(140deg, var(--cyan-bright), var(--cyan));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: .82rem; color: var(--ink);
  flex: none;
}
.phone__who { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .95rem; line-height: 1.25; }
.phone__status { font-size: .74rem; color: var(--cyan-bright); display: flex; align-items: center; gap: 6px; }
.phone__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-bright); }
.phone__clock { margin-left: auto; font-size: .74rem; font-weight: 600; color: var(--on-navy-mute); }

.thread { display: grid; gap: 9px; padding: 14px 4px 4px; }
.msg {
  max-width: 84%;
  padding: 10px 13px;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: 13px;
  opacity: 0;
  transform: translateY(9px);
  animation: msgIn .45s ease forwards;
  animation-delay: var(--d, 0s);
}
.msg--them { background: rgba(255,255,255,.11); color: #fff; border-bottom-left-radius: 4px; justify-self: start; }
.msg--us   { background: var(--cyan); color: #fff; border-bottom-right-radius: 4px; justify-self: end; font-weight: 500; }
.msg time { display: block; font-size: .68rem; opacity: .68; margin-top: 4px; }

@keyframes msgIn { to { opacity: 1; transform: translateY(0); } }

.profile {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--on-navy-line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.profile__title {
  font-family: var(--font-label);
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan-bright); margin-bottom: 10px;
}
.profile dl { display: grid; grid-template-columns: 1fr auto; gap: 0; }
.profile dt, .profile dd {
  padding: 7px 0;
  border-top: 1px solid var(--on-navy-line);
  font-size: .84rem;
  opacity: 0;
  animation: rowIn .4s ease forwards;
  animation-delay: var(--d, 0s);
}
.profile dt { color: var(--on-navy-mute); }
.profile dd { color: #fff; font-weight: 700; text-align: right; font-family: var(--font-display); }
.profile dd.is-hot { color: var(--amber); }
@keyframes rowIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .msg, .profile dt, .profile dd { animation: none; opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  * { transition-duration: .01ms !important; }
}

/* ---------- Stat strip ---------- */
.statstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.statstrip > div { background: var(--paper); padding: 22px 20px; }
.statstrip .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}
.statstrip .l { font-size: .855rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 760px) { .statstrip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 8px;
  align-content: start;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card--tint { background: var(--paper-2); }
.card__icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--cyan-wash);
  color: var(--cyan);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.card__icon svg { width: 18px; height: 18px; }
.card p { font-size: .93rem; color: var(--muted); }

a.card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card--onnavy {
  background: rgba(255,255,255,.06);
  border-color: var(--on-navy-line);
}
.card--onnavy .card__icon { background: rgba(79,195,224,.18); color: var(--cyan-bright); }
.card--onnavy p { color: var(--on-navy-mute); }

/* Compact tiles */
.tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.tile__mark { width: 26px; height: 26px; color: var(--cyan); }
.tile__mark svg { width: 100%; height: 100%; }
.tile h3 { font-size: .995rem; font-weight: 700; line-height: 1.35; }
.tile--onnavy { background: rgba(255,255,255,.06); border-color: var(--on-navy-line); }
.tile--onnavy .tile__mark { color: var(--cyan-bright); }

/* ---------- Sequence (a real ordered process) ---------- */
.seq { display: grid; gap: 0; grid-auto-flow: column; grid-auto-columns: 1fr; position: relative; }
.seq::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 17px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--orange) 55%, var(--orange) 100%);
  opacity: .4;
}
.seq--calm::before { background: linear-gradient(90deg, var(--cyan), var(--amber)); opacity: .45; }
.seq__step { display: grid; gap: 10px; justify-items: center; text-align: center; padding: 0 8px; position: relative; }
.seq__dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: .76rem; font-weight: 700;
  border: 3px solid var(--paper);
  position: relative; z-index: 1;
}
.section--navy .seq__dot { border-color: var(--navy); background: var(--cyan); color: #fff; }
.seq__dot--risk { background: var(--orange); color: #fff; }
.section--navy .seq__dot--risk { background: var(--orange); }
.seq__dot--end  { background: var(--ink); color: #fff; }
.section--navy .seq__dot--end { background: #fff; color: var(--ink); }
.seq__label { font-family: var(--font-display); font-weight: 700; font-size: .885rem; color: var(--ink); line-height: 1.3; }
.section--navy .seq__label { color: #fff; }
.seq__sub { font-size: .8rem; color: var(--muted); }
.section--navy .seq__sub { color: var(--on-navy-mute); }

.section--tint .seq__dot { border-color: var(--paper-2); }

@media (max-width: 860px) {
  .seq { grid-auto-flow: row; gap: 20px; }
  .seq::before { left: 17px; right: auto; top: 8%; bottom: 8%; width: 2px; height: auto; background: var(--line); }
  .section--navy .seq::before { background: var(--on-navy-line); }
  .seq__step { grid-template-columns: 36px 1fr; justify-items: start; text-align: left; gap: 8px 14px; padding: 0; }
  .seq__dot { grid-row: span 2; }
}

/* ---------- Split (AI / human) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

.panel {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 16px;
  align-content: start;
}
.panel--ai    { background: var(--paper-2); border: 1px solid var(--line); }
.panel--human { background: linear-gradient(165deg, var(--navy), var(--navy-deep)); color: var(--on-navy); }
.panel--human h3 { color: #fff; }
.panel h3 { font-size: 1.06rem; letter-spacing: -.01em; }

.section--tint .panel--ai { background: var(--paper); }

.ticks { display: grid; gap: 11px; }
.ticks li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: .95rem; }
.ticks li::before {
  content: "";
  width: 18px; height: 18px; margin-top: 3px;
  border-radius: 5px;
  background-color: var(--cyan-wash);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23219EBC' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.panel--human .ticks li { color: var(--on-navy); }
.panel--human .ticks li::before {
  background-color: rgba(253,182,20,.20);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FDB614' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
}
.ticks--cross li::before {
  background-color: var(--orange-wash);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6851F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><path d='M18 6 6 18M6 6l12 12'/></svg>");
}

/* ---------- Editorial two-column ----------
   Section heading in a left rail, body copy at a comfortable measure on the
   right. Lets long-form sections use the full container without stretching
   the line length — the reason to avoid `.wrap--narrow` on wide screens. */
.editorial {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; gap: 14px; }
}

/* Long checklists read better in two columns once there is room. */
.ticks--2col { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: clamp(24px,4vw,56px); }
.ticks--2col li { grid-template-columns: 20px 1fr; }
@media (max-width: 760px) { .ticks--2col { grid-template-columns: 1fr; } }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0;
  text-align: left;
  padding: 13px 18px;
}
tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--line-soft);
  font-size: .93rem;
  vertical-align: top;
  color: var(--body);
}
tbody tr:nth-child(even) td { background: var(--paper-2); }
tbody td:first-child { font-weight: 700; color: var(--ink); font-family: var(--font-display); }

/* ---------- Dashboard tiles ---------- */
.dash {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: var(--shadow-lg);
}
.dash__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.dash__head h3 { font-size: 1.08rem; }
.dash__date { margin-left: auto; font-size: .78rem; font-weight: 600; color: var(--muted); }
.dash__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
@media (max-width: 820px) { .dash__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.metric { border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.metric span { font-size: .84rem; color: var(--muted); }
.metric--cyan b   { color: var(--cyan); }
.metric--amber b  { color: var(--gold-ink); }
.metric--orange b { color: var(--orange); }

/* ---------- Result stats ---------- */
.results { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
@media (max-width: 820px) { .results { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .results { grid-template-columns: 1fr; } }
.result {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--on-navy-line);
  border-radius: var(--radius);
  padding: 20px;
}
.result b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800; letter-spacing: -.035em;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.result span { font-size: .875rem; color: var(--on-navy-mute); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 960px) { .team { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 540px) { .team { grid-template-columns: 1fr; } }

.person {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--paper);
  display: grid; gap: 10px; align-content: start;
}
/* Circular, not rounded-square: the founder portrait arrives already masked
   to a circle on a square canvas, so a 50% radius clips its corners cleanly
   and the other three square portraits crop to match. */
.person__photo,
.person__mono {
  width: 76px; height: 76px; border-radius: 50%;
}
.person__photo {
  object-fit: cover;
  background: var(--paper);
}
.person__mono {
  background: linear-gradient(150deg, var(--navy), var(--navy-soft));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em;
}
.person h3 { font-size: 1.06rem; }
.person__role {
  font-family: var(--font-label);
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan);
}
.person p { font-size: .9rem; color: var(--muted); }
/* Deliberately a text link, not the LinkedIn glyph — we do not reproduce
   other people's logos any more than we redraw our own. */
.person__link {
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .84rem;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .18s ease, color .18s ease;
}
.person__link::after { content: "↗"; font-size: .9em; }
.person__link:hover { gap: 9px; color: var(--ink); }
.person--tbc { border-style: dashed; background: var(--paper-2); }
.person--tbc .person__mono { background: var(--paper-3); color: var(--muted); }
.person--tbc .person__role { color: var(--muted); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(33,158,188,.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.field--check { grid-template-columns: 20px 1fr; align-items: start; gap: 10px; }
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--cyan); }
.field--check label { font-weight: 400; font-family: var(--font-body); font-size: .85rem; color: var(--muted); line-height: 1.5; }

.form-status {
  font-size: .9rem;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--cyan-wash);
  border: 1px solid rgba(33,158,188,.35);
  color: #12566B;
}
.form-status[hidden] { display: none; }

.contact-panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  display: grid; gap: 22px; align-content: start;
}
.contact-line { display: grid; gap: 3px; }
.contact-line dt { font-family: var(--font-label); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.contact-line dd { font-size: .98rem; color: var(--ink); font-weight: 500; }
.contact-line a:hover { color: var(--cyan); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 17px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--cyan);
  font-size: 1.35rem;
  font-weight: 700;
  flex: none;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq__body { padding: 16px 20px 20px; font-size: .95rem; color: var(--muted); }
.faq__body p + p { margin-top: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 340px at 85% 10%, rgba(33,158,188,.34), transparent 62%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.5vw, 58px);
  color: var(--on-navy);
  display: grid;
  gap: 22px;
  justify-items: start;
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: var(--on-navy-mute); max-width: 56ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--on-navy-mute);
  padding-block: clamp(44px, 5vw, 64px) 28px;
  font-size: .9rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 34px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__grid h4 {
  font-family: var(--font-label);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan-bright); font-weight: 700;
  margin-bottom: 12px;
}
.footer__grid li + li { margin-top: 8px; }
.footer__grid a:hover { color: #fff; }
.footer__about p { margin-top: 14px; max-width: 34ch; font-size: .89rem; line-height: 1.6; }
.footer__bar {
  border-top: 1px solid var(--on-navy-line);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-size: .82rem;
}
.footer__bar p { margin-right: auto; }
.footer address { font-style: normal; line-height: 1.65; font-size: .89rem; }

/* ---------- Utilities ---------- */
.hr { height: 1px; background: var(--line); border: 0; }
.mt-lg { margin-top: clamp(30px, 4vw, 46px); }
.mt-md { margin-top: 22px; }
.center { text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-label); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  background: var(--cyan-wash); color: var(--cyan); font-weight: 700;
}
.badge--soon { background: var(--paper-3); color: var(--muted); }
.badge--onnavy { background: rgba(79,195,224,.18); color: var(--cyan-bright); }
