@charset "utf-8";

/* =========================================================================
   Freedom Track Pro - design system
   Built to the client's approved design reference: Manrope over IBM Plex Sans,
   navy #0C2F56 structure, blue #1668B4 support, orange as the action signal,
   1240px measure on a daylight ground.

   Where the reference's exact values failed WCAG AA they are corrected rather
   than copied; the token block says which and why.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Structure */
  --navy:        #0C2F56;
  --navy-deep:   #082441;
  --navy-soft:   #17416E;
  --navy-line:   #1C4271;

  --blue:        #1668B4;
  --blue-bright: #2E86DA;
  --blue-pale:   #7FB0E0;
  --blue-wash:   #DCE9F6;
  --blue-tint:   #EEF4FA;

  /* Action. The reference orange is #EF5B28; white on it is only 3.39:1, so it
     is kept for marks, rules and large display text, while --orange-ink carries
     anything that is body text or sits under white text. */
  --orange:      #EF5B28;
  --orange-ink:  #C63F0E;
  --orange-deep: #B0350A;
  --orange-lift: #FF8A50;
  --orange-wash: #FFF0E9;

  /* Ground */
  --paper:       #FFFFFF;
  --paper-2:     #F4F8FC;
  --paper-3:     #EEF4FA;

  /* Ink. The reference's #6B84A2 and #5A7594 fail on the tinted ground, so the
     muted step is one stop darker and safe on both. */
  --ink:         #0C2F56;
  --ink-body:    #44607F;
  --ink-muted:   #526E8C;

  --line:        #E6ECF3;
  --line-2:      #DCE5EE;

  /* On navy */
  --on-navy:     #FFFFFF;
  --on-navy-2:   #BDD4E9;
  --on-navy-3:   #9CB6CF;
  --on-navy-4:   #7F9CBA;
  --on-navy-line: rgba(189, 212, 233, .2);

  --ok:          #157C43;
  --ok-wash:     #E7F1EA;

  /* Type */
  --f-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-hero:  clamp(2.15rem, 1.1rem + 3.4vw, 3.5rem);
  --t-h1:    clamp(1.95rem, 1.2rem + 2.6vw, 3rem);
  --t-h2:    clamp(1.75rem, 1.2rem + 1.9vw, 2.5rem);
  --t-h3:    clamp(1.125rem, 1.05rem + .35vw, 1.3rem);
  --t-body:  1rem;
  --t-lede:  clamp(1rem, .96rem + .3vw, 1.125rem);
  --t-sm:    .9062rem;
  --t-xs:    .8125rem;
  --t-eyebrow: .78125rem;

  /* Space */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s7: 32px; --s8: 40px; --s9: 56px; --s10: 80px;

  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(12, 47, 86, .06), 0 4px 12px rgba(12, 47, 86, .06);
  --shadow-2: 0 2px 6px rgba(12, 47, 86, .08), 0 14px 34px rgba(12, 47, 86, .12);
  --shadow-cta: 0 2px 4px rgba(12, 47, 86, .1), 0 6px 14px rgba(12, 47, 86, .12);

  --wrap: 1240px;
  --gutter: clamp(20px, 3.4vw, 32px);
  --header-h: 74px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. Reset + browser surfaces ---------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 20px);
  scrollbar-color: var(--blue-wash) var(--paper-2);
}
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-body);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, li, td, th, a { overflow-wrap: break-word; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-ink); }
/* On a navy surface the orange ink hover falls to 2.6:1, so dark regions
   re-state white and no link can hover into its own ground. */
.announce a:hover, .phead a:hover, .band a:hover, .cta a:hover,
.footer a:hover, .tile:hover, .proof a:hover { color: #fff; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--navy); color: #fff; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb {
  background: var(--blue-wash); border: 3px solid var(--paper-2); border-radius: var(--r-pill);
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-pale); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.footer :focus-visible, .announce :focus-visible, .phead :focus-visible,
.cta :focus-visible, .band :focus-visible { outline-color: var(--orange-lift); }
input, textarea, select { caret-color: var(--blue); }

/* ---------- 3. Primitives ------------------------------------------------ */

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

.section { padding-block: clamp(52px, 6.4vw, 92px); }
.section--tight { padding-block: clamp(40px, 4.6vw, 64px); }
.section--tint { background: var(--paper-2); border-block: 1px solid var(--line); }

.eyebrow {
  display: block;
  font-family: var(--f-display);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s3);
}
.eyebrow--light { color: var(--blue-pale); }

.lede { font-size: var(--t-lede); line-height: 1.7; color: var(--ink-body); max-width: 60ch; }
.prose { max-width: 68ch; color: var(--ink-body); font-size: var(--t-lede); line-height: 1.8; }
.prose > * + * { margin-top: var(--s4); }
.prose h2 { font-size: var(--t-h2); margin-top: var(--s9); }
.prose h3 { font-size: var(--t-h3); margin-top: var(--s7); }
.prose ul { display: grid; gap: 10px; }
.prose ul li { padding-left: 22px; position: relative; }
.prose ul li::before {
  content: ""; position: absolute; left: 2px; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}
.prose strong { color: var(--ink); font-weight: 600; }

.sec-head { margin-bottom: clamp(30px, 3.4vw, 46px); }
.sec-head h2 { font-size: var(--t-h2); max-width: 22ch; }
.sec-head p { margin-top: var(--s4); color: var(--ink-body); max-width: 58ch; font-size: var(--t-lede); }
.sec-head--row {
  display: flex; flex-wrap: wrap; gap: var(--s5) var(--s7);
  align-items: flex-end; justify-content: space-between;
}
.sec-head--row > div { flex: 1 1 340px; min-width: 0; }
.sec-head--row > div h2 { max-width: 20ch; }

.ico { width: 20px; height: 20px; flex: none; }
.ico--sm { width: 16px; height: 16px; }
.ico--lg { width: 26px; height: 26px; }
.ico--xl { width: 32px; height: 32px; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.skip {
  position: fixed; left: 0; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0; transform: translateY(-110%);
  transition: transform .2s var(--ease);
}
.skip:focus { transform: none; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

/* ---------- 4. Buttons --------------------------------------------------- */

.btn {
  --bg: var(--orange-ink); --fg: #fff; --bd: var(--orange-ink); --sh: var(--shadow-cta);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px;
  font-family: var(--f-display); font-weight: 700; font-size: var(--t-sm);
  color: var(--fg); background: var(--bg);
  border: 1.5px solid var(--bd); border-radius: var(--r-sm);
  box-shadow: var(--sh);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover {
  color: var(--fg); background: var(--orange-deep); border-color: var(--orange-deep);
  transform: translateY(-2px); box-shadow: 0 4px 10px rgba(12, 47, 86, .14), 0 10px 22px rgba(12, 47, 86, .16);
}
.btn:active { transform: translateY(0); }
.btn .ico { width: 17px; height: 17px; transition: transform .22s var(--ease); }
.btn:hover .ico--arrow { transform: translateX(3px); }

.btn--line { --bg: #fff; --fg: var(--navy); --bd: #C8D8E8; --sh: none; }
.btn--line:hover { background: #fff; border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-1); }
.btn--navy { --bg: var(--navy); --fg: #fff; --bd: var(--navy); --sh: none; }
.btn--navy:hover { background: var(--navy-soft); border-color: var(--navy-soft); box-shadow: var(--shadow-1); }
.btn--ghost { --bg: transparent; --fg: #fff; --bd: var(--on-navy-line); --sh: none; }
.btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy); }
.cta .btn, .band .btn, .phead .btn, .footer .btn { --sh: none; box-shadow: none; }
.cta .btn:hover, .band .btn:hover, .phead .btn:hover { box-shadow: none; }
.btn--lg { padding: 15px 27px; font-size: 1rem; }
.btn--sm { padding: 10px 17px; font-size: var(--t-xs); }
.btn--block { width: 100%; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px; padding-block: 4px;
  font-family: var(--f-display); font-weight: 700; font-size: var(--t-sm);
  color: var(--orange-ink); text-decoration: none;
}
.tlink .ico { width: 16px; height: 16px; transition: transform .22s var(--ease); }
.tlink:hover { color: var(--orange-deep); }
.tlink:hover .ico { transform: translateX(4px); }
.tlink--blue { color: var(--blue); }
.tlink--blue:hover { color: var(--navy); }

/* ---------- 5. Announcement bar + header --------------------------------- */

.announce { background: var(--navy-deep); color: var(--on-navy-2); font-size: var(--t-xs); }
.announce__in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 4px 22px; padding-block: 7px; text-align: center;
}
.announce .sep { color: var(--on-navy-4); }
.announce a {
  display: inline-flex; align-items: center; gap: 7px; padding-block: 3px;
  color: #fff; font-weight: 600; text-decoration: none;
}
.announce a:hover { color: var(--orange-lift); }
.announce .ico { color: var(--blue-pale); width: 15px; height: 15px; }
.announce em { font-style: normal; display: inline-flex; align-items: center; gap: 7px; }
.announce em .ico { color: var(--orange-lift); }
@media (max-width: 720px) { .announce .hide-sm { display: none; } }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
@supports (backdrop-filter: blur(8px)) { .header { backdrop-filter: blur(12px) saturate(1.7); } }
.header.is-stuck { box-shadow: var(--shadow-1); border-bottom-color: transparent; }

.header__in { display: flex; align-items: center; gap: var(--s6); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { height: 42px; width: auto; }
@media (max-width: 480px) { .brand img { height: 34px; } }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 13px;
  font-family: var(--f-body); font-size: var(--t-sm); font-weight: 500; color: #3B5675;
  text-decoration: none; background: none; border: 0; border-radius: var(--r-sm); cursor: pointer;
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--orange-ink); background: var(--paper-2); }
.nav__link .ico { width: 13px; height: 13px; transition: transform .2s var(--ease); }
.nav__link[aria-expanded="true"] .ico { transform: rotate(180deg); }
.nav__link.is-current { color: var(--navy); font-weight: 600; }
.nav__link.is-current::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; background: var(--orange); border-radius: 2px;
}

.nav__item { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 9px); left: 0; z-index: 20;
  min-width: 290px; padding: 9px;
  background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item.is-open .nav__panel { opacity: 1; visibility: visible; transform: none; }
.nav__panel a {
  display: flex; gap: 11px; align-items: flex-start; padding: 10px 12px;
  border-radius: var(--r-sm); color: var(--ink); text-decoration: none;
  transition: background .15s var(--ease);
}
.nav__panel a:hover { background: var(--blue-tint); color: var(--ink); }
.nav__panel .ico { color: var(--blue); margin-top: 2px; }
.nav__panel b { display: block; font-family: var(--f-display); font-size: var(--t-sm); font-weight: 700; color: var(--ink); }
.nav__panel span { display: block; font-size: var(--t-xs); color: var(--ink-muted); line-height: 1.45; }

.header__cta { flex: none; display: flex; align-items: center; gap: 10px; }
.burger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer; color: var(--navy);
}
@media (max-width: 1060px) {
  .nav, .header__cta { display: none; }
  .burger { display: inline-flex; margin-left: auto; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 120; visibility: hidden; pointer-events: none; }
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__veil {
  position: absolute; inset: 0; background: rgba(8, 36, 65, .55);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer.is-open .drawer__veil { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(390px, 90vw);
  background: var(--paper); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .34s var(--ease-out);
  overflow-y: auto; overscroll-behavior: contain;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s4) var(--s6); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--paper); z-index: 2;
}
.drawer__top img { height: 34px; }
.drawer__close {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; color: var(--navy);
}
.drawer__body { padding: var(--s4) var(--s6) var(--s10); }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 14px 0; font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700;
  color: var(--ink); text-decoration: none; background: none; border: 0;
  border-bottom: 1px solid var(--line); cursor: pointer; text-align: left;
}
.drawer__link .ico { width: 16px; height: 16px; color: var(--ink-muted); transition: transform .2s var(--ease); }
.drawer__link[aria-expanded="true"] .ico { transform: rotate(180deg); color: var(--blue); }
.drawer__sub { display: none; padding: 4px 0 12px 2px; }
.drawer__sub.is-open { display: block; }
.drawer__sub a {
  display: block; padding: 9px 0 9px 14px; border-left: 1px solid var(--line);
  font-size: var(--t-sm); font-weight: 500; color: var(--ink-body); text-decoration: none;
}
.drawer__sub a:hover { color: var(--blue); border-left-color: var(--blue); }
.drawer__foot { margin-top: var(--s7); display: grid; gap: 10px; }
body.is-locked { overflow: hidden; }

/* ---------- 6. Hero ------------------------------------------------------ */

.hero { position: relative; background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, #fff 0%, rgba(255,255,255,.975) 24%,
              rgba(255,255,255,.86) 38%, rgba(255,255,255,.25) 54%, rgba(255,255,255,0) 66%);
}
.hero__in {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: clamp(480px, 62vw, 620px);
  padding-block: clamp(40px, 5vw, 68px);
}
.hero__col { max-width: min(600px, 54%); }
.hero h1 { font-size: var(--t-hero); line-height: 1.06; letter-spacing: -.028em; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__sub { margin-top: var(--s5); font-size: var(--t-lede); line-height: 1.7; color: var(--ink-body); max-width: 44ch; }
.hero__acts { margin-top: var(--s7); display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__trust { margin-top: clamp(24px, 3vw, 38px); display: flex; flex-wrap: wrap; gap: var(--s4) clamp(18px, 2.4vw, 34px); }
.hero__trust li { display: flex; align-items: center; gap: 9px; }
.hero__trust .ico { color: var(--blue); width: 18px; height: 18px; }
.hero__trust span {
  font-family: var(--f-display); font-size: var(--t-sm); font-weight: 700;
  color: var(--navy); white-space: nowrap;
}

@media (max-width: 900px) {
  .hero { display: flex; flex-direction: column; }
  .hero__in { order: 1; min-height: 0; padding-block: var(--s8) var(--s7); }
  .hero__col { max-width: none; }
  .hero__media { order: 2; position: static; height: clamp(210px, 52vw, 330px); border-top: 1px solid var(--line); }
  .hero__media img { object-position: 66% 36%; }
  .hero__scrim { display: none; }
}

/* ---------- 7. Cards, steps, checklists ---------------------------------- */

.cards { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }

.card {
  display: flex; flex-direction: column; gap: var(--s3);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s6);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
/* Icon beside the heading, not stacked above it. */
.card__head { display: flex; align-items: center; gap: 13px; }
.card__head h3, .card__head h2 { font-size: var(--t-h3); }
.block .card__head { gap: var(--s4); }
.block .card__head h2 { font-size: var(--t-h2); }
.panel .card__head h3 { font-size: var(--t-h3); }
.card:hover { border-color: var(--blue-wash); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.card h3 { font-size: var(--t-h3); }
.card p { font-size: var(--t-sm); line-height: 1.6; color: var(--ink-muted); flex: 1; }
.card__ico {
  width: 44px; height: 44px; display: grid; place-items: center; flex: none;
  border-radius: var(--r-md); background: var(--blue-tint); color: var(--blue);
}
.card__ico--orange { background: var(--orange-wash); color: var(--orange-ink); }
.card--flat:hover { transform: none; box-shadow: none; border-color: var(--line); }
.card__shot {
  aspect-ratio: 4 / 3; border-radius: var(--r-sm); overflow: hidden;
  background: var(--paper-2); display: grid; place-items: center; padding: var(--s4);
}
.card__shot img { max-height: 100%; width: auto; }

.steps { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.step {
  background: var(--paper); border: 1px solid var(--line-2);
  border-radius: var(--r-md); padding: var(--s6);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.step__no {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: var(--t-xs); font-weight: 800;
  letter-spacing: .1em; color: var(--orange-ink);
}
.step__no i {
  width: 34px; height: 34px; display: grid; place-items: center; font-style: normal;
  border-radius: 50%; background: var(--orange-wash); color: var(--orange-ink);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.step h3 { font-size: 1.0625rem; }
.step p { font-size: var(--t-xs); line-height: 1.6; color: var(--ink-muted); }
.step.is-lit { border-color: var(--orange); box-shadow: var(--shadow-2); transform: translateY(-4px); }
.step.is-lit .step__no i { background: var(--orange-ink); color: #fff; }

.checks { display: grid; gap: 11px var(--s7); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.checks li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--t-sm); line-height: 1.55; color: var(--ink-body); }
.checks .tick {
  width: 19px; height: 19px; border-radius: 50%; flex: none; margin-top: 2px;
  background: var(--ok-wash); color: var(--ok); display: grid; place-items: center;
}
.checks .tick .ico { width: 12px; height: 12px; }

.panel {
  background: var(--paper); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 30px);
}
.panel--tint { background: var(--paper-2); border-color: var(--line); }
.panel h3 { font-size: var(--t-h3); margin-bottom: var(--s4); }

/* ---------- 8. Industry tiles -------------------------------------------- */

.tiles { display: grid; gap: var(--s4); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.tile {
  position: relative; display: block; overflow: hidden;
  min-height: 236px; border-radius: var(--r-md);
  text-decoration: none; color: #fff; isolation: isolate;
  border: 1px solid var(--line-2);
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .7s var(--ease);
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,36,65,.12) 26%, rgba(8,36,65,.88) 100%);
}
.tile:hover img { transform: scale(1.06); }
.tile:hover { color: #fff; }
.tile__txt { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s5); }
.tile__txt h3 {
  font-size: 1.125rem; color: #fff; overflow-wrap: normal; hyphens: auto;
  text-shadow: 0 1px 3px rgba(8, 36, 65, .5);
}
.tile__txt p { margin-top: 4px; font-size: var(--t-xs); color: #D3E3F2; text-shadow: 0 1px 3px rgba(8, 36, 65, .5); }
.tile__pin {
  position: absolute; top: var(--s4); right: var(--s4); z-index: 1;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%; color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.tile:hover .tile__pin { background: var(--orange-ink); border-color: var(--orange-ink); transform: translate(2px, -2px); }

/* ---------- 9. Dark proof band ------------------------------------------- */

.band { position: relative; background: var(--navy); color: var(--on-navy-2); overflow: hidden; }
.band__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .16; z-index: 0;
}
.band::after {
  content: ""; position: absolute; right: -8%; top: -40%;
  width: 46%; aspect-ratio: 1; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46,134,218,.34), rgba(46,134,218,0) 68%);
}
.band__in { position: relative; z-index: 1; padding-block: clamp(48px, 5.6vw, 80px); }
.band h2 { color: #fff; font-size: var(--t-h2); }
.band p { color: var(--on-navy-2); }

/* Eight cells, so the column count is fixed rather than auto-fit: auto-fit
   leaves a ragged last row whose empty tracks let the band photograph show
   through the grid. */
.proof {
  display: grid; gap: 1px; background: var(--on-navy-line);
  border: 1px solid var(--on-navy-line); border-radius: var(--r-md); overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 940px) { .proof { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.proof__cell { background: rgba(8, 36, 65, .78); padding: clamp(20px, 2.2vw, 26px); }
.proof__cell .ico { color: var(--blue-bright); }
.proof__cell b {
  display: block; margin-top: var(--s4);
  font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700; color: #fff; line-height: 1.25;
}
.proof__cell span { display: block; margin-top: 7px; font-size: var(--t-xs); color: var(--on-navy-3); line-height: 1.5; }
.proof__cell em {
  display: block; margin-top: 11px; font-style: normal;
  font-family: var(--f-display); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue-pale);
}

/* ---------- 10. Split feature -------------------------------------------- */

.split { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: minmax(0, 1fr); align-items: start; }
@media (min-width: 940px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--wide { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
  .split--narrow { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
  .split--center { align-items: center; }
}
.split__media { border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__media--contain { display: grid; place-items: center; padding: clamp(24px, 3vw, 44px); }
.split__media--contain img { aspect-ratio: auto; object-fit: contain; max-width: min(320px, 100%); }

.quotebar {
  margin-top: var(--s5); padding: var(--s5);
  background: var(--orange-wash); border: 1px solid #F8CDB8;
  border-radius: var(--r-md);
}
.quotebar p { font-size: var(--t-sm); line-height: 1.7; color: #6B2A08; }
.quotebar cite {
  display: block; margin-top: 9px; font-style: normal;
  font-size: var(--t-xs); font-weight: 600; color: var(--orange-deep);
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--blue-tint); border: 1px solid var(--blue-wash);
  font-family: var(--f-display); font-size: var(--t-xs); font-weight: 700; color: var(--navy-soft);
}
.pill .ico { width: 14px; height: 14px; color: var(--blue); }
.pill--orange { background: var(--orange-wash); border-color: #F8CDB8; color: var(--orange-deep); }
.pill--orange .ico { color: var(--orange-ink); }
.pill--dark { background: rgba(255,255,255,.08); border-color: var(--on-navy-line); color: #fff; }
.pill--dark .ico { color: var(--blue-pale); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }

.badge { text-align: center; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: var(--s6) var(--s5); }
.badge .ico { color: var(--orange-ink); margin-inline: auto; }
.badge b { display: block; margin-top: var(--s3); font-family: var(--f-display); font-size: 1.375rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.badge em {
  display: block; margin-top: 5px; font-style: normal;
  font-family: var(--f-display); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange-ink);
}
.badge span { display: block; margin-top: 8px; font-size: var(--t-xs); color: var(--ink-muted); }

/* ---------- 11. Device line-up ------------------------------------------- */

.devices { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
@media (min-width: 1120px) { .devices { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (min-width: 1120px) { .devices .device__body { padding: var(--s5) var(--s4); } }
.device {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.device:hover { border-color: var(--blue-wash); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.device__shot {
  aspect-ratio: 5 / 4; background: #fff; display: grid; place-items: center;
  padding: var(--s5); border-bottom: 1px solid var(--line);
}
.device__shot img { max-height: 100%; width: auto; }
.device__body { padding: var(--s5); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.device__body h3 { font-size: 1.0625rem; }
.device__specs { display: grid; gap: 7px; }
.device__specs li { display: flex; gap: 8px; font-size: var(--t-xs); line-height: 1.5; color: var(--ink-muted); }
.device__specs .ico { width: 13px; height: 13px; color: var(--ok); margin-top: 3px; }
.device .tlink { margin-top: auto; }

/* ---------- 12. Spec table ----------------------------------------------- */

.spec { width: 100%; border-collapse: collapse; }
.spec caption { caption-side: top; text-align: left; padding-bottom: var(--s4); font-size: var(--t-sm); color: var(--ink-muted); }
.spec th, .spec td { padding: 15px clamp(14px, 1.8vw, 22px); text-align: left; vertical-align: top; }
.spec thead th { background: var(--navy); color: #fff; font-family: var(--f-display); font-size: var(--t-sm); font-weight: 700; }
.spec tbody tr { border-top: 1px solid var(--line); }
.spec tbody tr:nth-child(2n) { background: var(--paper-2); }
.spec th[scope="row"] { font-family: var(--f-display); font-size: var(--t-sm); font-weight: 700; width: 32%; color: var(--navy); }
.spec td { font-size: var(--t-sm); line-height: 1.7; color: var(--ink-body); }
.table-wrap { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 13. Testimonials --------------------------------------------- */

.quotes { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.quote {
  display: flex; flex-direction: column; gap: var(--s4); margin: 0;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 30px);
}
.quote > .ico { color: var(--orange); width: 26px; height: 26px; }
.quote blockquote { margin: 0; font-size: var(--t-sm); line-height: 1.75; color: var(--ink-body); flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line-2); padding-top: var(--s4); }
.quote figcaption .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  font-family: var(--f-display); font-size: var(--t-sm); font-weight: 800; letter-spacing: .02em;
}
.quote figcaption b { display: block; font-family: var(--f-display); font-size: var(--t-sm); font-weight: 700; color: var(--navy); }
.quote figcaption span { display: block; font-size: var(--t-xs); color: var(--ink-muted); }

/* ---------- 14. CTA band -------------------------------------------------- */

.cta { background: linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 48%, var(--navy-soft) 100%); color: var(--on-navy-2); }
.cta__in {
  display: grid; gap: clamp(26px, 3.6vw, 52px); align-items: center;
  grid-template-columns: minmax(0, 1fr); padding-block: clamp(46px, 5.4vw, 76px);
}
@media (min-width: 900px) { .cta__in { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); } }
.cta h2 { color: #fff; font-size: var(--t-h2); max-width: 17ch; }
.cta p { margin-top: var(--s4); color: var(--on-navy-2); max-width: 48ch; }
.cta__acts { margin-top: var(--s7); display: flex; flex-wrap: wrap; gap: var(--s3); }
.cta__aside { display: grid; gap: 1px; background: var(--on-navy-line); border: 1px solid var(--on-navy-line); border-radius: var(--r-md); overflow: hidden; }
.cta__aside a, .cta__aside div {
  display: flex; align-items: center; gap: var(--s4); padding: var(--s5);
  background: rgba(8, 36, 65, .62); color: #fff; text-decoration: none;
  transition: background .2s var(--ease);
}
.cta__aside a:hover { background: rgba(8, 36, 65, .9); color: #fff; }
.cta__aside .ico { color: var(--blue-bright); width: 24px; height: 24px; }
.cta__aside b { display: block; font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: #fff; }
.cta__aside span { display: block; font-size: var(--t-xs); color: var(--on-navy-2); margin-top: 3px; }

/* ---------- 15. Page head ------------------------------------------------- */

.phead { position: relative; background: var(--navy); color: var(--on-navy-2); overflow: hidden; }
.phead__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; z-index: 0; }
.phead::after {
  content: ""; position: absolute; left: 54%; top: -46%;
  width: 52%; aspect-ratio: 1; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46,134,218,.34), rgba(46,134,218,0) 68%);
}
.phead__in { position: relative; z-index: 1; padding-block: clamp(38px, 4.6vw, 66px) clamp(42px, 5vw, 72px); }
.phead h1 { font-size: var(--t-h1); color: #fff; max-width: 22ch; }
.phead p { margin-top: var(--s5); color: var(--on-navy-2); max-width: 60ch; font-size: var(--t-lede); }
.phead__acts { margin-top: var(--s7); display: flex; flex-wrap: wrap; gap: var(--s3); }

.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: var(--s5); font-size: var(--t-xs); }
.crumb a { display: inline-block; padding-block: 4px; color: var(--on-navy-3); text-decoration: none; }
.crumb a:hover { color: #fff; }
.crumb span { color: var(--on-navy-4); }
.crumb [aria-current] { color: var(--blue-pale); }

/* ---------- 16. Forms ---------------------------------------------------- */

.form { display: grid; gap: var(--s5); }
.form__row { display: grid; gap: var(--s5); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 580px) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: 7px; }
.field > label { font-family: var(--f-display); font-size: var(--t-xs); font-weight: 700; color: #35506F; }
.field > label i { font-style: normal; color: var(--orange-ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; background: var(--paper); color: var(--ink);
  border: 1.5px solid #D7E4F0; border-radius: var(--r-sm); font-size: var(--t-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #7C93AC; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--blue-pale); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22, 104, 180, .16);
}
.field textarea { resize: vertical; min-height: 116px; }
.field select {
  appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23526E8C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field--err input, .field--err select, .field--err textarea { border-color: #C82F2F; }
.field__err { font-size: var(--t-xs); color: #B32626; display: none; }
.field--err .field__err { display: block; }
.form__note { font-size: var(--t-xs); color: var(--ink-muted); line-height: 1.6; }

.formcard { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(22px, 2.8vw, 32px); }
.formcard > h2 { font-size: var(--t-h3); }
.formcard > p { margin-top: 9px; font-size: var(--t-sm); color: var(--ink-muted); }
.formcard .form { margin-top: var(--s6); }

.flash {
  display: none; align-items: flex-start; gap: 11px;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: #EEF7F1; border: 1px solid #CFE7D8; color: #1C5B38; font-size: var(--t-sm);
}
.flash.is-on { display: flex; }
.flash .ico { color: var(--ok); margin-top: 2px; }

/* ---------- 17. Contact bits --------------------------------------------- */

.info { display: grid; gap: var(--s5); }
.info__item { display: flex; gap: var(--s4); align-items: flex-start; }
.info__item .ico { color: var(--blue); margin-top: 3px; }
.info__item b {
  display: block; font-family: var(--f-display); font-size: var(--t-xs);
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-muted);
}
.info__item p, .info__item a {
  display: block; margin-top: 4px; padding-block: 2px;
  font-family: var(--f-display); font-size: 1rem; font-weight: 700;
  letter-spacing: -.012em; color: var(--ink); text-decoration: none;
}
.info__item a:hover { color: var(--blue); }

.locate {
  display: flex; gap: var(--s5); align-items: flex-start; padding: clamp(20px, 2.4vw, 28px);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md);
}
.locate__mark {
  flex: none; width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--blue-wash); border-radius: var(--r-md); color: var(--blue);
}
.locate b { display: block; font-family: var(--f-display); font-size: 1.0625rem; font-weight: 700; color: var(--ink); }
.locate p { margin-top: 7px; font-size: var(--t-sm); color: var(--ink-body); max-width: 38ch; }
.locate__acts { margin-top: var(--s4); display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 480px) { .locate { flex-direction: column; gap: var(--s4); } }

/* ---------- 18. Anchored blocks + jump nav -------------------------------- */

.jump { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: var(--s7); }
.jump a {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--paper);
  font-family: var(--f-display); font-size: var(--t-xs); font-weight: 700;
  color: var(--ink-body); text-decoration: none;
  transition: border-color .18s var(--ease), color .18s var(--ease), background .18s var(--ease);
}
.jump a .ico { color: var(--blue); }
.jump a:hover, .jump a[aria-current] { border-color: var(--navy); background: var(--navy); color: #fff; }
.jump a:hover .ico, .jump a[aria-current] .ico { color: var(--orange-lift); }

.block { scroll-margin-top: calc(var(--header-h) + 24px); }
.block + .block { margin-top: clamp(44px, 5vw, 76px); padding-top: clamp(44px, 5vw, 76px); border-top: 1px solid var(--line); }
@media (min-width: 940px) { .block:nth-of-type(2n) .split__media { order: 2; } }

/* ---------- 19. Footer ---------------------------------------------------- */

.footer { background: var(--navy); color: var(--on-navy-3); }
.footer__top {
  display: grid; gap: clamp(30px, 3.6vw, 48px); grid-template-columns: minmax(0, 1fr);
  padding-block: clamp(46px, 5.4vw, 72px) clamp(28px, 3.4vw, 42px);
}
@media (min-width: 720px) { .footer__top { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1020px) { .footer__top { grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, .8fr) minmax(0, 1.1fr); } }
.footer__brand .mark { background: #fff; border-radius: var(--r-sm); padding: 11px 13px; display: inline-block; }
.footer__brand .mark img { height: 36px; width: auto; }
.footer__brand p { margin-top: var(--s5); font-size: var(--t-sm); line-height: 1.7; color: var(--on-navy-3); max-width: 40ch; }
.footer h2 {
  font-family: var(--f-display); font-size: var(--t-sm); font-weight: 700;
  letter-spacing: .04em; color: #fff; margin-bottom: var(--s4);
}
.footer__col ul { display: grid; gap: 2px; }
.footer__col a { display: inline-block; padding-block: 5px; font-size: var(--t-sm); color: var(--on-navy-3); text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer__contact { display: grid; gap: var(--s3); }
.footer__contact a, .footer__contact p {
  display: flex; gap: 11px; align-items: flex-start; padding-block: 3px;
  font-size: var(--t-sm); color: var(--on-navy-3); text-decoration: none; line-height: 1.55;
}
.footer__contact a:hover { color: #fff; }
.footer__contact .ico { color: var(--blue-pale); margin-top: 2px; width: 17px; height: 17px; }
.social { display: flex; gap: 10px; margin-top: var(--s5); }
.social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--navy-soft); border-radius: var(--r-sm); color: #fff;
  transition: background .2s var(--ease);
}
.social a:hover { background: var(--orange-ink); color: #fff; }
.footer__bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3) var(--s6);
  padding-block: var(--s5); border-top: 1px solid var(--navy-line);
  font-size: var(--t-xs); color: var(--on-navy-4);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 0 var(--s6); }
.footer__bar a { display: inline-block; padding-block: 5px; color: var(--on-navy-4); text-decoration: none; }
.footer__bar a:hover { color: #fff; }
.footer__made { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; }
.footer__made svg { width: 22px; height: 15px; border-radius: 2px; }
.footer__partner { flex: 0 0 100%; margin-top: -6px; font-size: 11px; color: rgba(189, 212, 233, .3); }
.footer__partner a { color: inherit; text-decoration: none; }
.footer__partner a:hover { color: var(--on-navy-3); text-decoration: underline; }

/* ---------- 20. Motion ---------------------------------------------------- */

/* Content is visible by default. Only a page that has proved it can run the
   script hides anything, so a blocked bundle still leaves the page readable. */
.js [data-anim] { opacity: 0; will-change: transform, opacity; }
.js [data-anim="up"]    { transform: translate3d(0, 26px, 0); }
.js [data-anim="left"]  { transform: translate3d(-26px, 0, 0); }
.js [data-anim="right"] { transform: translate3d(26px, 0, 0); }
.js [data-anim="scale"] { transform: scale(.96); }
.js [data-anim].is-in { opacity: 1; transform: none; }

/* A 26px sideways offset on a full-width phone element pushes past the viewport
   while it animates. Below the two-column breakpoint every reveal rises instead. */
@media (max-width: 939px) {
  .js [data-anim="left"], .js [data-anim="right"] { transform: translate3d(0, 24px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-anim] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #3FD18A; flex: none; outline: 3px solid rgba(63, 209, 138, .22); }

/* ---------- 21. Utilities ------------------------------------------------- */

.mt-2 { margin-top: var(--s2); } .mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); } .mt-5 { margin-top: var(--s5); }
.mt-6 { margin-top: var(--s6); } .mt-7 { margin-top: var(--s7); }
.mt-8 { margin-top: var(--s8); } .mt-9 { margin-top: var(--s9); }
.stack-4 > * + * { margin-top: var(--s4); }
.stack-5 > * + * { margin-top: var(--s5); }
.center { text-align: center; }
.sticky-side { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 939px) { .sticky-side { position: static; } }
