
:root{
  --blue:#0045B4; --blue-mid:#0B57C9; --blue-deep:#00317F;
  --red:#C60000; --red-deep:#970000;
  --navy:#10233C; --navy-deep:#0A1728;
  --ink:#132033; --muted:#56687F;
  --paper:#FFFFFF; --tint:#F1F6FC;
  --line:#DFE7F1;
  --on-dark:#EAF1FA; --on-dark-muted:#93A9C2;
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    --blue:#6BA4FF; --blue-mid:#5A97FF; --blue-deep:#9AC1FF;
    --red:#FF6E60; --red-deep:#FF938B;
    --navy:#0C1B2E; --navy-deep:#060F1C;
    --ink:#EAF1FA; --muted:#9BB1C8;
    --paper:#0A1420; --tint:#0F1E30;
    --line:#20344C;
    --on-dark:#EAF1FA; --on-dark-muted:#8FA5BE;
  }
}
:root[data-theme="dark"]{
  --blue:#6BA4FF; --blue-mid:#5A97FF; --blue-deep:#9AC1FF;
  --red:#FF6E60; --red-deep:#FF938B;
  --navy:#0C1B2E; --navy-deep:#060F1C;
  --ink:#EAF1FA; --muted:#9BB1C8;
  --paper:#0A1420; --tint:#0F1E30;
  --line:#20344C;
  --on-dark:#EAF1FA; --on-dark-muted:#8FA5BE;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} *{transition-duration:.001ms !important;} }
body{ margin:0; background:var(--paper); color:var(--ink);
  font-family:"Manrope",-apple-system,BlinkMacSystemFont,sans-serif;
  font-size:17px; line-height:1.62; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
h1,h2,h3{ font-family:"Lora",Georgia,serif; font-weight:600; margin:0; color:var(--ink); text-wrap:balance; }
p{margin:0;} a{color:inherit;} img{max-width:100%;display:block;}

.wrap{ max-width:1200px; margin:0 auto; padding:0 36px; }
@media (max-width:760px){ .wrap{ padding:0 20px; } }

.kicker{ font-size:11.5px; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:var(--red); }

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:9px; font-weight:800;
  font-size:14.5px; letter-spacing:.01em; padding:16px 34px; border-radius:4px; text-decoration:none;
  border:2px solid transparent; cursor:pointer; transition:background .16s, color .16s, border-color .16s, transform .16s; }
.btn:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; }
.btn-red{ background:var(--red); color:#fff; }
.btn-red:hover{ background:var(--red-deep); transform:translateY(-1px); }
.btn-wire{ background:transparent; border-color:var(--line); color:var(--ink); }
.btn-wire:hover{ border-color:var(--blue); color:var(--blue); }
.btn-white{ background:#fff; color:var(--blue-deep); }
.btn-white:hover{ transform:translateY(-1px); }
.btn-wire-w{ background:transparent; border-color:rgba(255,255,255,.45); color:#fff; }
.btn-wire-w:hover{ background:rgba(255,255,255,.12); }

/* ---- header ---- */
header{ position:sticky; top:0; z-index:60; background:var(--paper); border-bottom:1px solid var(--line);
  box-shadow:0 1px 0 rgba(16,35,60,.04); }
.bar{ display:flex; align-items:center; gap:16px; height:84px; max-width:1304px; margin:0 auto; padding:0 28px; }
@media (max-width:760px){ .bar{ height:68px; padding:0 20px; gap:12px; } }
.brand{ flex-shrink:0; text-decoration:none; }
/* Heights are 36/57 of the old values: the tagline was cropped off the logo, so
   the image got shorter and these keep the wordmark at its original rendered size. */
.brand img{ height:28px; width:auto; }
@media (max-width:760px){ .brand img{ height:19px; } }
/* On dark surfaces the brand blue drops to 1.85:1, so swap to the light wordmark
   rather than sitting the original on a white chip. */
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .brand img{ content:url("/images/brand/logo-light.png"); }
}
:root[data-theme="dark"] .brand img{ content:url("/images/brand/logo-light.png"); }

nav.nav{ display:flex; align-items:center; gap:4px; margin-left:auto; }
nav.nav a{ text-decoration:none; font-size:12px; font-weight:800; letter-spacing:.05em; text-transform:uppercase;
  color:var(--muted); padding:11px 10px; border-radius:3px; transition:background .16s, color .16s; white-space:nowrap; }
nav.nav a:hover{ color:var(--blue); background:var(--tint); }
nav.nav a.active{ background:var(--blue); color:#fff; }
/* #0043B4 is sampled straight out of the logo artwork's "Nations", so the button
   matches the wordmark exactly rather than the site's near-identical --blue token. */
.bar .call{ flex-shrink:0; margin-left:6px; padding:15px 18px; gap:9px;
  background:#0043B4; color:#fff; font-variant-numeric:tabular-nums; white-space:nowrap; }
.bar .call:hover{ background:#00317F; transform:translateY(-1px); }
.bar .call svg{ width:17px; height:17px; stroke-width:1.9; }
.bar .apply{ flex-shrink:0; margin-left:0; padding-left:24px; padding-right:24px; }
.burger{ display:none; width:46px; height:42px; border:1px solid var(--line); background:none; border-radius:3px;
  cursor:pointer; align-items:center; justify-content:center; flex-shrink:0; margin-left:auto; }
.burger i, .burger i::before, .burger i::after{ content:""; display:block; width:20px; height:2px; background:var(--ink); position:relative; }
.burger i::before{ position:absolute; top:-6px; } .burger i::after{ position:absolute; top:6px; }
@media (max-width:1300px){
  nav.nav{ position:fixed; inset:85px 0 0 0; background:var(--paper); flex-direction:column; align-items:stretch;
    gap:2px; padding:16px 20px 40px; opacity:0; pointer-events:none; transform:translateY(-6px);
    transition:opacity .18s, transform .18s; overflow-y:auto; z-index:59; }
  nav.nav.open{ opacity:1; pointer-events:auto; transform:none; }
  nav.nav a{ padding:16px 12px; font-size:14px; border-radius:4px; }
  .bar .apply{ display:none; }
  /* Apply moves into the menu on mobile, but the phone number would otherwise be
     unreachable from the top of the page, so Call stays visible. It takes the
     auto margin; the burger then sits directly beside it rather than both
     claiming free space and stranding Call mid-header. */
  .bar .call{ margin-left:auto; padding:0; width:46px; height:42px; gap:0; }
  .bar .call .num{ display:none; }   /* no room beside the logo + burger at 375px */
  .bar .call svg{ width:19px; height:19px; }
  .burger{ display:flex; margin-left:10px; }
}

/* ---- hero ---- */
.hero{ position:relative; background:linear-gradient(105deg, var(--navy) 0%, var(--navy) 48%, var(--blue-deep) 100%);
  overflow:hidden; }
.hero .grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.14fr .86fr;
  align-items:center; gap:40px; min-height:540px; }
/* keep .wrap's horizontal padding — only adjust vertical spacing here */
@media (max-width:1000px){ .hero .grid{ grid-template-columns:1fr; min-height:0; padding-top:56px; padding-bottom:44px; gap:28px; } }
.hero-copy{ padding:96px 0; display:flex; flex-direction:column; gap:22px; }
@media (max-width:1000px){ .hero-copy{ padding:0; } }
.hero .kicker{ color:#8FB8FF; }
.hero h1{ color:#fff; font-size:clamp(38px,4.4vw,64px); line-height:1.02; letter-spacing:-.025em; font-weight:700; }
.hero h1 span{ display:block; color:#fff; }
.hero .sub{ color:#C7DAF4; font-size:19px; max-width:44ch; }
.hero .acts{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }
.hero .acts .btn{ min-width:190px; }
.hero-art{ position:relative; height:100%; display:flex; align-items:center; justify-content:center; }
.hero-art svg{ width:118%; max-width:none; height:auto; opacity:.9; }
@media (max-width:1000px){ .hero-art{ display:none; } }
.hero .dots{ position:absolute; inset:0; z-index:1; opacity:.16;
  background-image:radial-gradient(#fff 1.2px, transparent 1.2px); background-size:26px 26px; }

/* ---- trust bar under hero ---- */
.trustbar{ background:var(--paper); border-bottom:1px solid var(--line); }
.trustbar .wrap{ display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; padding-top:20px; padding-bottom:20px; }
.trustbar .g{ font-family:"Lora",serif; font-size:26px; font-weight:700; color:var(--blue-deep); line-height:1; font-variant-numeric:tabular-nums; }
.trustbar .stars{ display:flex; gap:3px; }
.trustbar .stars svg{ width:19px; height:19px; }
.trustbar .cap{ font-size:14px; color:var(--muted); font-weight:700; }
.trustbar a{ font-size:14px; font-weight:800; color:var(--blue); text-decoration:none; border-bottom:2px solid var(--line); padding-bottom:2px; }
.trustbar a:hover{ border-color:var(--blue); }
.trustbar .sep{ width:1px; height:26px; background:var(--line); }
@media (max-width:700px){ .trustbar .sep{ display:none; } }

/* ---- mission ---- */
.mission{ padding:82px 0; }
.mission .wrap{ max-width:900px; text-align:center; }
.mission p{ font-size:20.5px; line-height:1.62; color:var(--muted); }
.mission strong{ color:var(--ink); font-weight:700; }
@media (max-width:760px){ .mission{ padding:56px 0; } .mission p{ font-size:18px; } }

/* ---- reassurance band ---- */
.band{ position:relative; background:linear-gradient(120deg, var(--blue-deep), var(--blue-mid)); overflow:hidden;
  padding:84px 0; text-align:center; color:#fff; }
.band .dots{ position:absolute; inset:0; opacity:.14; background-image:radial-gradient(#fff 1.2px, transparent 1.2px); background-size:24px 24px; }
.band .wrap{ position:relative; z-index:1; }
.band h2{ color:#fff; font-size:clamp(30px,4.2vw,46px); line-height:1.06; letter-spacing:-.02em; }
.band h2 em{ display:block; font-style:normal; font-family:"Manrope",-apple-system,BlinkMacSystemFont,sans-serif; font-weight:500; font-size:.46em;
  letter-spacing:.01em; color:#CFE1FA; margin-top:12px; }
.triad{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:54px; }
@media (max-width:760px){ .triad{ grid-template-columns:1fr; gap:36px; margin-top:38px; } }
.triad .t{ display:flex; flex-direction:column; align-items:center; gap:16px; }
.triad .t svg{ width:44px; height:44px; }
.triad .t b{ font-size:15px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.triad .t span{ font-size:14.5px; color:#CFE1FA; max-width:24ch; }
.band .acts{ margin-top:50px; display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ---- three-up entry points ---- */
.threeup{ background:var(--navy); color:var(--on-dark); padding:88px 0; }
.threeup .cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
@media (max-width:860px){ .threeup .cols{ grid-template-columns:1fr; } }
.threeup .c{ padding:0 34px; text-align:center; border-left:1px solid rgba(255,255,255,.12);
  display:flex; flex-direction:column; align-items:center; gap:16px; }
.threeup .c:first-child{ border-left:none; }
@media (max-width:860px){
  .threeup .c{ border-left:none; border-top:1px solid rgba(255,255,255,.12); padding:34px 0 0; }
  .threeup .c:first-child{ border-top:none; padding-top:0; }
}
.threeup .c svg{ width:40px; height:40px; color:#7FB0FF; }
.threeup h3{ color:#fff; font-size:26px; }
.threeup p{ color:var(--on-dark-muted); font-size:15.5px; }
.threeup .btn{ margin-top:8px; }

/* ---- section shell ---- */
.sec{ padding:92px 0; }
.sec.tint{ background:var(--tint); }
@media (max-width:760px){ .sec{ padding:60px 0; } }
.sec-head{ text-align:center; max-width:720px; margin:0 auto 52px; display:flex; flex-direction:column; gap:14px; }
.sec-head h1, .sec-head h2{ font-size:clamp(30px,4vw,44px); line-height:1.08; letter-spacing:-.02em; }
.sec-head p{ color:var(--muted); font-size:17.5px; }

/* ---- program cards ---- */
.progs{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:860px){ .progs{ grid-template-columns:1fr; } }
.prog{ background:var(--paper); border:1px solid var(--line); border-top:4px solid var(--blue);
  padding:36px 32px; display:flex; flex-direction:column; gap:14px; text-decoration:none;
  transition:box-shadow .2s, transform .2s, border-top-color .2s; scroll-margin-top:150px; }
.prog:hover{ box-shadow:0 22px 48px -28px rgba(16,35,60,.5); transform:translateY(-3px); border-top-color:var(--red); }
.prog .ic{ width:46px; height:46px; color:var(--blue); }
.prog .ic svg{ width:100%; height:100%; }
.prog h3{ font-size:23px; line-height:1.2; }
.prog p{ color:var(--muted); font-size:15.5px; }
.prog .more{ margin-top:auto; font-size:13px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--red); display:inline-flex; align-items:center; gap:8px; }
.prog .more svg{ transition:transform .16s; }
.prog:hover .more svg{ transform:translateX(4px); }

/* ---- steps ---- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; }
@media (max-width:860px){ .steps{ grid-template-columns:1fr; } }
.step{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.step .n{ width:56px; height:56px; border-radius:50%; background:var(--blue); color:#fff;
  font-family:"Lora",serif; font-size:22px; font-weight:700; display:flex; align-items:center; justify-content:center; }
.step h3{ font-size:23px; }
.step p{ color:var(--muted); font-size:15.5px; max-width:34ch; }

/* ---- calculator ---- */
.calc{ display:grid; grid-template-columns:1.05fr .95fr; border:1px solid var(--line); background:var(--paper); }
@media (max-width:900px){ .calc{ grid-template-columns:1fr; } }
.calc-in{ padding:42px; display:flex; flex-direction:column; gap:24px; }
@media (max-width:600px){ .calc-in{ padding:26px; } }
.f{ display:flex; flex-direction:column; gap:9px; }
.f label, .f .lbl{ display:flex; justify-content:space-between; align-items:baseline; font-size:11.5px; font-weight:800;
  letter-spacing:.13em; text-transform:uppercase; color:var(--muted); }
.f label .v{ font-size:15px; letter-spacing:0; text-transform:none; color:var(--ink); font-weight:800; font-variant-numeric:tabular-nums; }
.f input[type=range]{ width:100%; accent-color:var(--blue); }
.pair{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.money{ display:flex; align-items:center; border:1px solid var(--line); background:var(--tint); }
.money span{ padding:12px; font-weight:800; color:var(--blue-deep); font-size:14px; }
.money input{ border:0; background:transparent; padding:12px 12px 12px 0; font:inherit; font-size:15px; color:var(--ink); width:100%; font-variant-numeric:tabular-nums; }
.money input:focus{ outline:none; }
.terms{ display:flex; border:1px solid var(--line); }
.terms button{ flex:1; padding:12px; background:var(--tint); border:0; font:inherit; font-weight:800;
  font-size:13.5px; color:var(--muted); cursor:pointer; }
.terms button + button{ border-left:1px solid var(--line); }
.terms button.active{ background:var(--blue); color:#fff; }
.calc-out{ background:var(--navy); color:var(--on-dark); padding:42px; display:flex; flex-direction:column; gap:22px; justify-content:center; }
@media (max-width:600px){ .calc-out{ padding:26px; } }
.calc-out .cap{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--on-dark-muted); font-weight:800; }
.total{ font-family:"Lora",serif; font-size:clamp(42px,5.4vw,58px); font-weight:700; color:#fff; line-height:1; font-variant-numeric:tabular-nums; }
.total small{ font-family:"Manrope",-apple-system,BlinkMacSystemFont,sans-serif; font-size:15px; font-weight:700; color:var(--on-dark-muted); margin-left:4px; }
.split{ display:flex; height:8px; background:rgba(255,255,255,.1); }
.legend{ display:flex; flex-direction:column; gap:11px; font-size:14px; }
.legend div{ display:flex; justify-content:space-between; }
.legend .k{ display:flex; align-items:center; gap:9px; color:var(--on-dark-muted); }
.legend .sw{ width:9px; height:9px; }
.legend .val{ font-weight:800; color:#fff; font-variant-numeric:tabular-nums; }
.fine{ font-size:12px; color:var(--on-dark-muted); border-top:1px solid rgba(255,255,255,.14); padding-top:15px; line-height:1.5; }

/* ---- reviews ---- */
.rev-hero{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.rev-hero .big{ font-family:"Lora",serif; font-size:96px; font-weight:700; line-height:.88; color:var(--blue-deep); font-variant-numeric:tabular-nums; }
.rev-hero .stars{ display:flex; gap:5px; }
.rev-hero .stars svg{ width:26px; height:26px; }
.rev-hero .cap{ font-size:11.5px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); }
.prose{ display:flex; flex-direction:column; gap:14px; }
.prose h2{ font-size:22px; margin-top:20px; letter-spacing:-.01em; }
.prose p{ color:var(--muted); font-size:16.5px; }
.prose a{ color:var(--blue); font-weight:700; }
.prose .upd{ font-size:14px; opacity:.8; }
.rev-hero h1{ font-size:clamp(30px,4vw,44px); line-height:1.08; letter-spacing:-.02em; }
.rev-hero .acts{ display:flex; gap:13px; flex-wrap:wrap; justify-content:center; margin-top:12px; }
.slots{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
@media (max-width:900px){ .slots{ grid-template-columns:1fr; } }
.slot{ border:2px dashed var(--line); background:var(--tint); padding:34px 26px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:11px; min-height:180px; justify-content:center; }
.slot b{ font-size:11px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--red); }
.slot p{ font-size:14px; color:var(--muted); max-width:27ch; }


/* ---- reviews conveyor belt ---- */
.belt-sec .sec-head{ margin-bottom:0; }
.belt-sec .belt{ margin-top:34px; }
.belt-sec .rv{ background:var(--paper); }
.belt{ margin-top:54px; overflow:hidden; position:relative;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image:linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
/* The track holds the six reviews twice. One full pass equals half the track
   plus half a gap, so the shift is derived from --belt-gap — hardcoding it
   makes the loop jump whenever the gap changes at a breakpoint. */
.belt-track{ --belt-gap:24px; display:flex; gap:var(--belt-gap); width:max-content;
  animation:belt-scroll 72s linear infinite; }
.belt:hover .belt-track, .belt:focus-within .belt-track{ animation-play-state:paused; }
@keyframes belt-scroll{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(calc(-50% - (var(--belt-gap) / 2)),0,0); }
}
.rv{ flex:0 0 372px; margin:0; background:var(--paper); border:1px solid var(--line);
  border-top:3px solid var(--blue); padding:30px 28px 26px;
  display:flex; flex-direction:column; gap:15px; }
.rv-stars{ display:flex; gap:3px; }
.rv-stars svg{ width:17px; height:17px; }
.rv blockquote{ margin:0; font-size:15.5px; line-height:1.62; color:var(--ink); }
.rv figcaption{ margin-top:auto; padding-top:6px; display:flex; flex-direction:column; gap:2px; }
.rv-name{ font-weight:800; font-size:14.5px; }
.rv-src{ font-size:11.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.belt-note{ margin-top:22px; text-align:center; font-size:13.5px; color:var(--muted); }
.belt-note a{ color:var(--blue); font-weight:800; text-decoration:none; }
.belt-note a:hover{ text-decoration:underline; }
@media (max-width:600px){ .rv{ flex-basis:290px; padding:26px 22px 22px; } .belt-track{ --belt-gap:18px; } }

/* No auto-motion for anyone who asked not to have it — becomes a swipeable row. */
@media (prefers-reduced-motion:reduce){
  .belt{ overflow-x:auto; -webkit-overflow-scrolling:touch; -webkit-mask-image:none; mask-image:none; }
  .belt-track{ animation:none; }
  .belt-note{ display:none; }
}

/* ---- about ---- */
.about{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start; }
@media (max-width:900px){ .about{ grid-template-columns:1fr; gap:32px; } }
.portrait{ aspect-ratio:1/1; background:linear-gradient(105deg, var(--navy) 0%, var(--navy) 48%, var(--blue-deep) 100%); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; padding:34px; }
.portrait::before{ content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.13) 1.1px, transparent 1.1px);
  background-size:22px 22px; }
.portrait svg{ position:relative; width:100%; height:auto; opacity:.95; }
.about-body{ display:flex; flex-direction:column; gap:18px; }
.about-body p{ color:var(--muted); font-size:17px; }
.facts{ display:grid; grid-template-columns:1fr 1fr; gap:20px 30px; border-top:1px solid var(--line); padding-top:26px; margin-top:8px; }
.facts dt{ font-size:11px; letter-spacing:.15em; text-transform:uppercase; color:var(--muted); font-weight:800; }
.facts dd{ margin:5px 0 0; font-size:15.5px; }
.facts a{ color:var(--blue); font-weight:800; text-decoration:none; }

/* ---- contact ---- */
.contact{ display:grid; grid-template-columns:.85fr 1.15fr; border:1px solid var(--line); }
@media (max-width:900px){ .contact{ grid-template-columns:1fr; } }
.c-info{ background:var(--navy); color:var(--on-dark); padding:46px 42px; display:flex; flex-direction:column; gap:28px; }
.c-info h3{ color:#fff; font-size:24px; }
.c-info > p{ color:var(--on-dark-muted); font-size:15.5px; }
.kv{ display:flex; flex-direction:column; gap:19px; margin-top:auto; }
.kv .k{ font-size:10.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--on-dark-muted); }
.kv .v{ font-size:15.5px; color:#fff; font-weight:700; margin-top:4px; }
.kv a{ color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.35); }
form.lead{ padding:46px 42px; display:flex; flex-direction:column; gap:19px; background:var(--paper); }
@media (max-width:600px){ .c-info, form.lead{ padding:28px 22px; } }
form.lead h3{ font-size:24px; }
.fr{ display:grid; grid-template-columns:1fr 1fr; gap:17px; }
@media (max-width:560px){ .fr{ grid-template-columns:1fr; } }
form.lead label{ display:flex; flex-direction:column; gap:7px; font-size:11.5px; font-weight:800;
  letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
form.lead input, form.lead select, form.lead textarea{ font:inherit; font-size:15px; letter-spacing:0;
  text-transform:none; padding:13px 14px; border:1px solid var(--line); background:var(--tint); color:var(--ink); }
form.lead input:focus, form.lead select:focus, form.lead textarea:focus{ outline:2px solid var(--blue); outline-offset:1px; }
form.lead textarea{ min-height:96px; resize:vertical; }
form.form-status{ font-size:14px; line-height:1.5; padding:13px 15px; border-radius:4px; margin-top:4px; }
.form-status.info{ background:var(--tint); color:var(--ink); border:1px solid var(--line); }
.form-status.ok{ background:#E7F6EC; color:#146030; border:1px solid #B6E0C4; }
.form-status.err{ background:#FDECEA; color:#8A1B12; border:1px solid #F3C2BC; }
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .form-status.ok{ background:#0E2A1A; color:#8FE3AC; border-color:#1E4A31; }
  :root:not([data-theme="light"]) .form-status.err{ background:#2E1512; color:#FFAFA6; border-color:#5A2620; }
}
:root[data-theme="dark"] .form-status.ok{ background:#0E2A1A; color:#8FE3AC; border-color:#1E4A31; }
:root[data-theme="dark"] .form-status.err{ background:#2E1512; color:#FFAFA6; border-color:#5A2620; }

/* skip link */
.skip{ position:absolute; left:-9999px; top:0; z-index:999; background:var(--blue); color:#fff;
  padding:12px 20px; font-weight:800; font-size:14px; text-decoration:none; border-radius:0 0 4px 0; }
.skip:focus{ left:0; }

.lead .note{ font-size:12.5px; color:var(--muted); font-weight:500; letter-spacing:0; text-transform:none; }
form.lead .note a{ color:var(--red); font-weight:800; text-decoration:none; }

/* ---- closing + disclaimer + footer ---- */
.closing{ background:var(--red); color:#fff; }
.closing .wrap{ padding:74px 36px; display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap; }
.closing h2{ color:#fff; font-size:clamp(28px,3.8vw,42px); max-width:15ch; line-height:1.06; letter-spacing:-.02em; }
.closing .acts{ display:flex; gap:13px; flex-wrap:wrap; }

.disclaimer{ background:var(--blue-deep); color:#D6E5FA; text-align:center; font-size:13.5px; }
.disclaimer .wrap{ padding:22px 36px; }

footer{ background:var(--navy-deep); color:var(--on-dark); padding:66px 0 26px; }
.f-grid{ display:grid; grid-template-columns:1.4fr .8fr .8fr 1fr; gap:42px; padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:900px){ .f-grid{ grid-template-columns:1fr 1fr; gap:32px; } }
@media (max-width:560px){ .f-grid{ grid-template-columns:1fr; } }
.f-logo{ display:inline-block; }
.f-logo img{ height:19px; width:auto; }
.f-tag{ color:var(--on-dark-muted); font-size:14.5px; margin-top:16px; max-width:32ch; }
.f-grid h4{ font-size:10.5px; font-weight:800; letter-spacing:.17em; text-transform:uppercase; color:#fff; margin:0 0 16px; }
.f-links{ display:flex; flex-direction:column; gap:11px; }
.f-links a, .f-links span{ color:var(--on-dark-muted); font-size:14.5px; text-decoration:none; }
.f-links a:hover{ color:#fff; }
.legal{ padding-top:24px; display:flex; flex-direction:column; gap:14px; }
.legal-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  font-size:13px; color:var(--on-dark-muted); }
.eho{ display:inline-flex; align-items:center; gap:9px; font-weight:700; color:#fff; }
.eho img{ width:24px; height:24px; }
.legal .small{ font-size:11.5px; color:#7C93AD; line-height:1.6; max-width:100%; }

.route-page[hidden]{ display:none !important; }

/* ---- mobile drop-down menu ---- */
@media (max-width:1300px){
  header{ backdrop-filter:none; -webkit-backdrop-filter:none; background:var(--paper); }
  nav.nav.open{ z-index:200; height:auto; overflow-y:auto; -webkit-overflow-scrolling:touch; padding-bottom:40px; }
  nav.nav.open > a{
    font-size:18px; font-weight:800; padding:19px 6px;
    border-bottom:1px solid rgba(127,150,180,.22); border-radius:0;
    display:flex; align-items:center; justify-content:space-between;
    letter-spacing:.01em; text-transform:none;
  }
  nav.nav.open > a::after{
    content:""; width:9px; height:9px;
    border-right:2.5px solid currentColor; border-bottom:2.5px solid currentColor;
    transform:rotate(-45deg); opacity:.42; flex:0 0 auto;
  }
}
/* The shared rule uses 85px (84px bar + 1px border). Below 760px the bar shrinks
   to 68px, so the panel must start at 69px instead. */
@media (max-width:760px){
  nav.nav{ inset:69px 0 0 0; }
  nav.nav.open{ transform:none; }
}
.m-cta{ display:none; flex-direction:column; padding:22px 6px 0; }
nav.nav.open .m-cta{ display:flex; }
.m-meta{ margin-top:18px; padding:0 6px; font-size:13px; line-height:1.6; opacity:.68; text-align:center; }
