/* ==========================================================================
   Self-hosted fonts. Served from this origin, so no request reaches a third
   party and no visitor IP is disclosed to Google — see the privacy notice.

   Inter is the variable font, which is why the stylesheet can use intermediate
   weights like 520 and 640 — static instances would snap those to the nearest
   of 400/500/600/700. Newsreader is a static instance: it is only ever used at
   400 italic for pull quotes, and the variable file cost 39KB more for range we
   never touch. Latin and latin-ext subsets only.

   Inter and Newsreader are licensed under the SIL Open Font License 1.1,
   which permits redistribution. See assets/fonts/OFL.txt.
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/newsreader-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/newsreader-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================================
   Britannia IoT Solutions — design system
   Deep navy institutional base, signal-green accent, fill-level motif.
   ========================================================================== */

:root {
  --ink:        #071324;
  --ink-2:      #0B1E36;
  --navy:       #0A1B30;
  --navy-3:     #12304F;
  --paper:      #FFFFFF;
  --paper-2:    #F4F7FA;
  --paper-3:    #EAEFF5;
  --line:       #DCE4EC;
  --line-dark:  #1C3A5C;
  --body:       #35485E;
  --muted:      #5A6E85;   /* >= 4.5:1 on white and on --paper-2 */
  --muted-dark: #9FB6CE;

  --brand:      #0F5FA6;
  --brand-2:    #1B7FD4;
  --brand-hi:   #2E9BF0;

  --pulse:      #38A8F0;
  --sig-amber:  #F5A524;
  --sig-red:    #E5484D;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(7, 19, 36, .06), 0 1px 3px rgba(7, 19, 36, .04);
  --shadow:    0 4px 12px rgba(7, 19, 36, .06), 0 12px 32px rgba(7, 19, 36, .07);
  --shadow-lg: 0 8px 24px rgba(7, 19, 36, .10), 0 32px 64px rgba(7, 19, 36, .12);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;

  --wrap: 1160px;
  --wrap-narrow: 760px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 640;
  letter-spacing: -0.021em;
  line-height: 1.15;
  margin: 0 0 .55em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.55rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.7vw, 2.35rem); letter-spacing: -0.026em; }
h3 { font-size: clamp(1.18rem, 1.05rem + .5vw, 1.4rem); }
h4 { font-size: 1.03rem; letter-spacing: -0.012em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

strong, b { font-weight: 640; color: var(--ink); }

ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
li { margin-bottom: .45em; }
li::marker { color: var(--brand); }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: #CFE6FA; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--brand-hi);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --------------------------------------------------------------- layout -- */

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

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.25rem); }

.section-alt { background: var(--paper-2); }
.section-line { border-top: 1px solid var(--line); }

.section-dark {
  background: var(--navy);
  color: #C6D6E6;
  background-image:
    radial-gradient(900px 420px at 12% -10%, rgba(46,155,240,.13), transparent 62%),
    radial-gradient(760px 400px at 92% 0%, rgba(30,110,190,.20), transparent 60%);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark strong { color: #fff; }
.section-dark a { color: #8ACCFF; }
.section-dark a:hover { color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r) var(--r); font-weight: 600; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ------------------------------------------------------------- eyebrows -- */

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .745rem; font-weight: 660; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 1.05rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; opacity: .55;
}
.section-dark .eyebrow { color: var(--brand-hi); }

.lede {
  font-size: clamp(1.09rem, 1.02rem + .34vw, 1.3rem);
  line-height: 1.6;
  color: var(--body);
  max-width: 62ch;
}
.section-dark .lede { color: #BCCFE2; }

.measure { max-width: 68ch; }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .78em 1.5em; border-radius: 100px;
  font-size: .965rem; font-weight: 600; letter-spacing: -.006em;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(15,95,166,.3), 0 8px 22px rgba(15,95,166,.22); }
.btn-primary:hover { background: #0A5599; color: #fff; box-shadow: 0 2px 4px rgba(15,95,166,.32), 0 14px 30px rgba(15,95,166,.28); }

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

.section-dark .btn-ghost, .hero .btn-ghost, .page-hero .btn-ghost {
  border-color: rgba(255,255,255,.3); color: #fff; background: transparent;
}
.section-dark .btn-ghost:hover, .hero .btn-ghost:hover, .page-hero .btn-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,.08); color: #fff;
}

.btn-lg { padding: .95em 1.9em; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  color: var(--brand);
}
.arrow-link::after { content: "→"; transition: transform .18s ease; }
.arrow-link:hover::after { transform: translateX(3px); }

/* --------------------------------------------------------------- header -- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 70px;
}

.logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-size: 1.02rem; font-weight: 720; letter-spacing: -.026em; color: var(--ink);
}
.logo-sub {
  font-size: .585rem; font-weight: 640; letter-spacing: .19em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .5em .78em; border-radius: var(--r-sm);
  font-size: .925rem; font-weight: 530; color: var(--body); text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 620; }
.nav a.btn { margin-left: .5rem; padding: .6em 1.15em; font-size: .9rem; color: #fff; }
.nav a.btn:hover { background: #0A5599; color: #fff; }

.nav-toggle { display: none; }

@media (max-width: 1020px) {
  .nav a:not(.btn) { padding: .5em .55em; font-size: .875rem; }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 42px; height: 42px;
    border: 1px solid var(--line); border-radius: var(--r-sm);
    background: var(--paper); cursor: pointer; color: var(--ink);
  }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.25rem; margin: 0;
    box-shadow: var(--shadow);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: .8em .2em; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
  .nav a.btn { margin: 1rem 0 0; border-bottom: 0; border-radius: 100px; justify-content: center; }
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: #C2D4E6;
  padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem);
  background-image:
    radial-gradient(1000px 520px at 8% -18%, rgba(46,155,240,.16), transparent 60%),
    radial-gradient(820px 480px at 100% 4%, rgba(24,104,180,.26), transparent 58%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 82%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 82%);
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .lede { color: #B6CBE0; font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); }
.hero .eyebrow { color: #7CC5FF; }

/* Single-column hero: everything centred on one axis. */
.hero-center { text-align: center; padding-block: clamp(4rem, 2rem + 8vw, 7.5rem) clamp(3.5rem, 2rem + 6vw, 5.5rem); }
.hero-center h1 {
  max-width: 19ch; margin-inline: auto;
  font-size: clamp(2.3rem, 1.3rem + 4vw, 4.15rem);
}
.hero-center .lede { max-width: 68ch; margin-inline: auto; }
.hero-center .btn-row { justify-content: center; }
.hero-center .stat-band { text-align: left; }

/* Centred body copy gets hard to read once it wraps to eight lines. */
@media (max-width: 660px) {
  .hero-center { text-align: left; }
  .hero-center h1, .hero-center .lede { max-width: none; margin-inline: 0; }
  .hero-center .btn-row { justify-content: stretch; }
  .hero-center .btn-row .btn { flex: 1 1 100%; }
}

.hero-pill {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .42em .95em .42em .55em; border-radius: 100px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: .82rem; font-weight: 520; color: #CFE0F0; margin-bottom: 1.5rem;
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pulse);
  box-shadow: 0 0 0 4px rgba(56,168,240,.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(56,168,240,.24); } 50% { box-shadow: 0 0 0 7px rgba(56,168,240,0); } }

.page-hero {
  background: var(--navy); color: #B9CDE1;
  padding-block: clamp(2.75rem, 1.75rem + 4.5vw, 4.75rem);
  background-image:
    radial-gradient(760px 380px at 4% -30%, rgba(46,155,240,.14), transparent 62%),
    radial-gradient(700px 380px at 96% -10%, rgba(24,104,180,.22), transparent 60%);
  position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero .lede { color: #B2C7DC; }
.page-hero .eyebrow { color: #7CC5FF; }

/* ---------------------------------------------------------------- stats -- */

.stat-band {
  display: grid; gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.section-dark .stat-band, .hero .stat-band { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.13); }

@media (max-width: 920px) { .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .stat-band { grid-template-columns: 1fr; } }

.stat {
  background: var(--paper); padding: 26px 22px;
}
.section-dark .stat, .hero .stat { background: rgba(255,255,255,.035); }

.stat-num {
  display: block;
  font-size: clamp(1.9rem, 1.4rem + 1.9vw, 2.7rem);
  font-weight: 700; letter-spacing: -.035em; line-height: 1;
  color: var(--brand); font-variant-numeric: tabular-nums;
  margin-bottom: .38rem;
}
.section-dark .stat-num, .hero .stat-num { color: #7CC5FF; }
.stat-label { font-size: .875rem; color: var(--muted); line-height: 1.45; display: block; }
.section-dark .stat-label, .hero .stat-label { color: #93AECA; }
.stat-src { font-size: .74rem; color: var(--muted); margin-top: .5rem; display: block; }
.section-dark .stat-src, .hero .stat-src { color: #7793B0; }

/* ---------------------------------------------------------------- cards -- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .955rem; }
.card > :last-child { margin-top: auto; padding-top: 1.1rem; }
.card.no-push > :last-child { margin-top: 0; padding-top: 0; }

a.card { text-decoration: none; color: var(--body); }
a.card:hover { border-color: #B9CBDD; box-shadow: var(--shadow); transform: translateY(-2px); }
a.card:hover h3 { color: var(--brand); }

.section-dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #B9CDE1; }
.section-dark a.card:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.07); }
.section-dark a.card:hover h3 { color: #7CC5FF; }

.card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: #E4F0FB; color: var(--brand); flex-shrink: 0;
}
.section-dark .card-icon { background: rgba(46,155,240,.15); color: #7CC5FF; }
.card-icon svg { width: 22px; height: 22px; }

.card-num {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  color: var(--brand); margin-bottom: 14px; display: block;
}

/* ------------------------------------------------------------ split row -- */

.split {
  display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  align-items: center;
}
.split-top { align-items: start; }

/* Long-form page with a facts sidebar — give the prose the wider column. */
.split-article { grid-template-columns: minmax(0, 1.52fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 900px) { .split-article { grid-template-columns: 1fr; } }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.feature-list li {
  position: relative; padding-left: 2rem; margin-bottom: .95em; font-size: .975rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 18px; height: 18px; border-radius: 50%;
  background: #E4F0FB url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F5FA6' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.section-dark .feature-list li::before {
  background-color: rgba(46,155,240,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237CC5FF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------- key facts --- */

.keyfacts {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--r);
  background: var(--paper-2);
  padding: 24px 26px;
  margin: 0 0 2rem;
}
.keyfacts h2, .keyfacts h3 {
  font-size: .78rem; font-weight: 680; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .95rem;
}
.keyfacts dl { margin: 0; display: grid; gap: .7rem; }
.keyfacts dt { font-weight: 640; color: var(--ink); font-size: .9rem; }
.keyfacts dd { margin: 0 0 0 0; font-size: .95rem; }
@media (min-width: 620px) {
  .keyfacts dl { grid-template-columns: minmax(140px, 30%) 1fr; column-gap: 1.5rem; align-items: baseline; }
  .keyfacts dt { text-align: right; }
}

.answer-box {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #F8FBFE, #F1F6FC);
  padding: 26px 28px;
  margin: 0 0 2.25rem;
  font-size: 1.06rem; line-height: 1.6; color: var(--ink);
}
.answer-box strong { font-weight: 660; }
.answer-box p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- quotes -- */

.pullquote {
  border-left: 3px solid var(--brand);
  padding: .3rem 0 .3rem 1.6rem;
  margin: 2rem 0;
}
.pullquote blockquote {
  margin: 0 0 .9rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem);
  line-height: 1.42; color: var(--ink); font-weight: 400;
}
.pullquote cite {
  font-style: normal; font-size: .875rem; color: var(--muted); display: block;
}
.pullquote cite b { color: var(--ink); font-weight: 620; }
.section-dark .pullquote { border-color: var(--brand-hi); }
.section-dark .pullquote blockquote { color: #fff; }
.section-dark .pullquote cite { color: #93AECA; }
.section-dark .pullquote cite b { color: #DCE9F5; }

/* ----------------------------------------------------------------- FAQ --- */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px 44px 20px 0; position: relative;
  font-size: 1.06rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.014em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; margin-top: -8px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364798F' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--brand); }
.faq .faq-body { padding: 0 3rem 22px 0; max-width: 74ch; }
.faq .faq-body p { font-size: .985rem; }

/* --------------------------------------------------------------- tables -- */

.table-scroll { overflow-x: auto; margin: 0 0 1.5rem; -webkit-overflow-scrolling: touch; }
table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
  min-width: 560px;
}
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  font-weight: 680; border-bottom: 2px solid var(--line);
}
tbody tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 600; color: var(--ink); }
th:first-child, td:first-child { width: 21%; }

/* ----------------------------------------------------------- breadcrumb -- */

.breadcrumb { font-size: .82rem; margin-bottom: 1.5rem; color: #7793B0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45em; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: .45em; }
.breadcrumb li + li::before { content: "/"; opacity: .45; }
.breadcrumb a { color: #9FBBD6; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb [aria-current] { color: #DCE9F5; }

/* --------------------------------------------------------------- steps --- */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  position: relative; padding: 0 0 2.4rem 4.25rem; counter-increment: step;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -2px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); border: 1.5px solid var(--line);
  font-size: .875rem; font-weight: 700; color: var(--brand); letter-spacing: -.01em;
}
.step::after {
  content: ""; position: absolute; left: 23px; top: 50px; bottom: 6px;
  width: 1.5px; background: var(--line);
}
.step:last-child::after { display: none; }
.step h3 { margin-bottom: .35rem; }
.step p { font-size: .965rem; margin-bottom: 0; }
.section-dark .step::before { background: var(--navy); border-color: rgba(255,255,255,.2); color: #7CC5FF; }
.section-dark .step::after { background: rgba(255,255,255,.14); }

/* ------------------------------------------------------------ case card -- */

.case-card { position: relative; overflow: hidden; }
.case-flag {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .74rem; font-weight: 680; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.case-headline,
.card p.case-headline {
  font-size: clamp(1.7rem, 1.35rem + 1.15vw, 2.15rem); font-weight: 700;
  letter-spacing: -.035em; color: var(--brand); line-height: 1.05;
  margin-bottom: .45rem;
  font-variant-numeric: tabular-nums;
}
.section-dark .case-headline,
.section-dark .card p.case-headline { color: #7CC5FF; }

/* --------------------------------------------------------------- figures -- */

.figure { margin: 2.25rem 0; }
.figure img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  background: var(--paper-2);
}
.figure figcaption {
  margin-top: .8rem; font-size: .875rem; line-height: 1.55; color: var(--muted);
}
.figure figcaption b { color: var(--ink); font-weight: 620; }
.figure .credit {
  display: block; margin-top: .35rem;
  font-size: .78rem; color: var(--muted);
}
.figure .credit a { color: var(--muted); text-decoration-thickness: 1px; }
.figure .credit a:hover { color: var(--brand); }
.section-dark .figure img { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.section-dark .figure figcaption, .section-dark .figure .credit { color: #93AECA; }
.section-dark .figure figcaption b { color: #DCE9F5; }
.section-dark .figure .credit a { color: #93AECA; }

.figure-inset { margin-top: 0; }

/* ----------------------------------------------------------------- CTA --- */

.cta-band {
  border-radius: var(--r-xl);
  background: var(--navy);
  background-image:
    radial-gradient(680px 340px at 6% -20%, rgba(46,155,240,.2), transparent 62%),
    radial-gradient(620px 340px at 100% 10%, rgba(24,104,180,.28), transparent 60%);
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.25rem) clamp(1.75rem, 1rem + 3vw, 3.5rem);
  color: #B9CDE1;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .lede { margin-inline: auto; color: #B2C7DC; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* --------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--ink); color: #8FA9C4;
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem;
  font-size: .925rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h2, .site-footer h3 {
  font-size: .745rem; font-weight: 680; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.15rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6em; }
.site-footer a { color: #8FA9C4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: #7793B0; }
.footer-brand p { font-size: .9rem; margin-top: 1.15rem; max-width: 34ch; color: #8FA9C4; }
.footer-contact { margin-top: 1.35rem; font-size: .9rem; line-height: 1.85; }
.footer-contact a { text-decoration: none; }

.footer-legal {
  padding-top: 2rem; margin-top: 0;
  font-size: .82rem; line-height: 1.6; color: #6E8AA8;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-legal p { margin: 0; max-width: 80ch; }

.footer-bottom {
  padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
  font-size: .84rem; color: #6E8AA8;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-bottom li { margin: 0; }

/* -------------------------------------------------------------- utility -- */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.center-block { margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 2rem; }
.prose > :first-child { margin-top: 0; }
.prose ul li, .prose ol li { font-size: .995rem; }

.note {
  font-size: .875rem; color: var(--muted); border-top: 1px solid var(--line);
  padding-top: 1.25rem; margin-top: 2.5rem;
}

.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag {
  font-size: .8rem; font-weight: 560; padding: .35em .85em; border-radius: 100px;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--body);
  text-decoration: none;
}
a.tag:hover { border-color: var(--brand); color: var(--brand); }

/* Contact details card */
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  padding: 26px 28px 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 {
  font-size: .78rem; font-weight: 680; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.1rem;
}

.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 12px; margin: 0 -12px;
  border-radius: var(--r);
  text-decoration: none; color: inherit;
  transition: background-color .15s ease;
}
a.contact-row:hover { background: var(--paper-2); }
a.contact-row:hover .contact-value { color: var(--brand); }

.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  display: grid; place-items: center;
  background: #E4F0FB; color: var(--brand);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-text { display: flex; flex-direction: column; min-width: 0; }
.contact-label {
  font-size: .72rem; font-weight: 660; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.contact-value {
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.014em; overflow-wrap: anywhere;
}

.contact-note {
  font-size: .855rem; color: var(--muted);
  margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line);
}
