/* Sprintech — company website stylesheet
   Brand: Velocity Chevron kit (decision 0022). Navy #0C1E36, teal #00B894, Quicksand.
   Single deliberate theme: light pages with navy bands. */

/* ---------- fonts (self-hosted from the brand kit, SIL OFL) ---------- */
@font-face { font-family: "Quicksand"; src: url("/assets/fonts/Quicksand-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Quicksand"; src: url("/assets/fonts/Quicksand-Medium.ttf")  format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Quicksand"; src: url("/assets/fonts/Quicksand-Bold.ttf")    format("truetype"); font-weight: 700; font-display: swap; }

/* ---------- tokens ---------- */
:root {
  --navy: #0C1E36;
  --navy-deep: #071527;
  --navy-soft: #16304F;          /* panels on navy */
  --teal: #00B894;
  --teal-ink: #007A62;           /* teal for small text on light (AA) */
  --teal-dim: #00A383;           /* hover on teal surfaces */
  --teal-tint: #E3F7F1;
  --teal-ghost: rgba(0,184,148,.38);
  --white-ghost: rgba(255,255,255,.22);
  --mist: #F3F6F9;
  --surface: #FFFFFF;
  --ink: #16202B;
  --slate: #5C6B7C;
  --grey: #8697A8;
  --line: #DCE3EB;
  --line-on-navy: rgba(255,255,255,.14);
  --text-on-navy: #FFFFFF;
  --muted-on-navy: #A9B7C6;

  --font: "Quicksand", "Trebuchet MS", "Ubuntu Sans", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1160px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 112px);
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 10px 30px rgba(12,30,54,.10);
  --header-h: 72px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-ink); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
button { font: inherit; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; margin: 0; color: inherit; text-wrap: balance; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }

/* ---------- type scale ---------- */
.h1 { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 3.9rem); }
.h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.6rem); }
.h3 { font-size: 1.25rem; }
.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--slate); max-width: 58ch; }
.on-navy .lede { color: var(--muted-on-navy); }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 14px;
}
.on-navy .eyebrow { color: var(--teal); }
.measure { max-width: 62ch; }
.muted { color: var(--slate); }
.data { font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: .82em; letter-spacing: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dim); border-color: var(--teal-dim); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-soft); border-color: var(--navy-soft); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.on-navy .btn-ghost, .hero .btn-ghost, .contact-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.on-navy .btn-ghost:hover, .hero .btn-ghost:hover, .contact-card .btn-ghost:hover { border-color: #fff; color: #fff; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(12,30,54,.06); }
.header-bar { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav a, .nav .nav-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; border: 0; background: none;
  font-weight: 500; font-size: .97rem; color: var(--ink); text-decoration: none; cursor: pointer;
}
.nav a:hover, .nav .nav-btn:hover, .nav a[aria-current="page"] { color: var(--navy); background: var(--mist); }
.nav .nav-btn svg { width: 12px; height: 12px; transition: transform .15s ease; }
.nav .nav-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 300px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px;
  display: none; z-index: 60;
}
.dropdown[data-open="true"] { display: block; }
.dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: var(--radius-sm); }
.dropdown a strong { font-weight: 700; font-size: .95rem; }
.dropdown a span { font-size: .84rem; color: var(--slate); font-weight: 400; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.site-header.nav-open .nav-toggle .icon-menu { display: none; }
.site-header.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .brand img { height: 30px; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav-panel {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h); background: var(--surface);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 12px var(--gutter) 20px;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-header.nav-open .nav-panel { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a, .nav .nav-btn { width: 100%; justify-content: space-between; padding: 12px 10px; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .dropdown { position: static; min-width: 0; box-shadow: none; border: 0; padding: 0 0 6px 10px; }
  .dropdown a { padding: 8px 10px; }
  .nav-panel .btn { margin-top: 12px; width: 100%; justify-content: center; }
}
@media (min-width: 901px) { .nav-panel .btn { display: none; } }

/* ---------- sections ---------- */
.section { padding: var(--section-y) 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--text-on-navy); }
.section--tint { background: var(--teal-tint); }
.section-head { display: grid; gap: 14px; max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head .lede { margin-top: 2px; }
.on-navy { color: var(--text-on-navy); }
.on-navy a { color: #fff; }
.on-navy a:hover { color: var(--teal); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(900px 520px at 85% 15%, rgba(0,184,148,.22), transparent 60%),
              linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 7vw, 96px);
}
.hero::before {
  /* the ghost chevron watermark — the brand's own mark, not a stock shape */
  content: ""; position: absolute; right: -6%; top: -18%; width: 52vw; max-width: 720px; aspect-ratio: 206/146;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='9 17 206 146'><g fill='none' stroke-width='26' stroke-linecap='round' stroke-linejoin='round'><path d='M22 44 L 62 90 L 22 136' stroke='%23FFFFFF' opacity='.5'/><path d='M78 30 L 132 90 L 78 150' stroke='%23FFFFFF'/><path d='M148 30 L 202 90 L 148 150' stroke='%2300B894'/></g></svg>") no-repeat center / contain;
  opacity: .05; pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { display: grid; gap: 22px; justify-items: start; }
.hero-copy .eyebrow { color: var(--teal); margin-bottom: 0; }
.hero-copy .h1 { color: #fff; max-width: 14ch; }
.hero-copy .h1 em { font-style: normal; color: var(--teal); }
.hero-copy .lede { color: var(--muted-on-navy); max-width: 52ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted-on-navy); font-size: .92rem; font-weight: 500; }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 14px; height: 14px; color: var(--teal); }

/* routing board — the hero visual */
.board { position: relative; }
.board svg { width: 100%; height: auto; overflow: visible; }
.board .node { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.22); stroke-width: 1.2; }
.board .node--hub { fill: rgba(0,184,148,.12); stroke: var(--teal); stroke-width: 1.5; }
.board .node--chosen { stroke: var(--teal); fill: rgba(0,184,148,.10); }
.board .label { fill: #fff; font-family: var(--font); font-weight: 700; font-size: 13px; }
.board .sub { fill: var(--muted-on-navy); font-family: var(--mono); font-size: 10.5px; }
.board .sub--teal { fill: var(--teal); }
.board .link { fill: none; stroke: rgba(255,255,255,.22); stroke-width: 1.5; }
.board .link--chosen { stroke: var(--teal); stroke-width: 2.2; stroke-dasharray: 6 8; animation: flow 1.4s linear infinite; }
.board .link--in { stroke: rgba(255,255,255,.45); stroke-width: 2; stroke-dasharray: 6 8; animation: flow 1.4s linear infinite; }
.board .chip { fill: rgba(7,21,39,.85); stroke: rgba(255,255,255,.18); }
.board .dot { fill: var(--teal); }
.board .dot--pulse { animation: pulse 1.8s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes flow { to { stroke-dashoffset: -28; } }
@keyframes pulse { 0% { opacity: .9; transform: scale(1); } 100% { opacity: 0; transform: scale(2.6); } }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-copy .h1 { max-width: none; }
  .board { max-width: 560px; }
}

/* ---------- stats strip ---------- */
.stats { border-bottom: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 28px 24px 28px 0; border-left: 1px solid var(--line); padding-left: 24px; display: grid; gap: 8px; align-content: start; }
.stat .num, .stat .cap { display: block; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num { font-weight: 700; font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem); line-height: 1; color: var(--navy); font-variant-numeric: tabular-nums; }
.stat .num sup { font-size: .55em; color: var(--teal-ink); vertical-align: top; top: .2em; position: relative; }
.stat .cap { color: var(--slate); font-weight: 500; font-size: .95rem; }
@media (max-width: 900px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 0 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--line); }
}

/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.card .h3 { margin-top: 2px; }
.card p { color: var(--slate); font-size: .98rem; }
.card .more { margin-top: auto; padding-top: 6px; font-weight: 700; color: var(--teal-ink); display: inline-flex; align-items: center; gap: 6px; font-size: .95rem; }
.card .more svg { width: 14px; height: 14px; }
.icon {
  width: 44px; height: 44px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-tint); color: var(--teal-ink); flex: none;
}
.icon svg { width: 22px; height: 22px; }
.on-navy .icon { background: rgba(0,184,148,.14); color: var(--teal); }

/* feature list (plain, no cards) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.feature { display: grid; gap: 10px; }
.feature .h3 { font-size: 1.12rem; }
.feature p { color: var(--slate); font-size: .97rem; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; gap: 24px; } }

/* chevron list — the logo's mark as a bullet */
.chev-list { display: grid; gap: 12px; }
.chev-list li { position: relative; padding-left: 26px; }
.chev-list li::before {
  content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px;
  border-right: 3px solid var(--teal); border-top: 3px solid var(--teal); transform: rotate(45deg); border-radius: 1px;
}
.chev-list li strong { font-weight: 700; color: var(--navy); }
.on-navy .chev-list li strong { color: #fff; }

/* two-column story */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 900px) { .split, .split--even { grid-template-columns: 1fr; } }

/* ---------- steps (a real sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 26px 26px; display: grid; gap: 10px; align-content: start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: .8rem; color: var(--teal-ink); letter-spacing: .08em;
}
.step .h3 { font-size: 1.15rem; }
.step p { color: var(--slate); font-size: .97rem; }
.step::after {
  /* chevron connector between steps */
  content: ""; position: absolute; right: -14px; top: 50%; width: 10px; height: 10px; transform: translateY(-50%) rotate(45deg);
  border-right: 3px solid var(--teal); border-top: 3px solid var(--teal); border-radius: 1px;
}
.step:last-child::after { display: none; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { right: auto; left: 50%; top: auto; bottom: -15px; transform: translateX(-50%) rotate(135deg); }
}

/* ---------- security band ---------- */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.security-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line-on-navy); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.security-item .h3 { font-size: 1.05rem; color: #fff; }
.security-item p { color: var(--muted-on-navy); font-size: .95rem; margin-top: 4px; }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }

/* ---------- industries ---------- */
.vertical { display: grid; gap: 14px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.vertical .h3 { font-size: 1.3rem; }
.vertical p { color: var(--slate); }
.vertical .chev-list { font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band .h2 { max-width: 20ch; }
.cta-band .aside { color: var(--slate); margin-top: 8px; }
.cta-band .aside a { font-weight: 700; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(700px 400px at 90% 0%, rgba(0,184,148,.18), transparent 60%), linear-gradient(160deg, var(--navy), var(--navy-deep));
  padding: clamp(48px, 7vw, 88px) 0;
}
.page-hero .wrap { display: grid; gap: 18px; max-width: min(100% - 2 * var(--gutter), 860px); margin-inline: auto; justify-items: start; }
.page-hero .eyebrow { color: var(--teal); margin-bottom: 0; }
.page-hero .h1 { color: #fff; font-size: clamp(2rem, 1.3rem + 2.8vw, 3.3rem); }
.page-hero .lede { color: var(--muted-on-navy); }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: var(--muted-on-navy); font-weight: 500; }
.crumbs a { color: var(--muted-on-navy); text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 10px; height: 10px; }

/* ---------- contact ---------- */
.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); display: grid; gap: 18px; justify-items: start; }
.contact-card .eyebrow { color: var(--teal); margin-bottom: 0; }
.contact-card .email { font-weight: 700; font-size: clamp(1.35rem, 1rem + 1.6vw, 2rem); color: #fff; text-decoration: none; word-break: break-all; }
.contact-card .email:hover { color: var(--teal); }
.contact-card p { color: var(--muted-on-navy); }
.contact-card .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.copy-btn { position: relative; }
.copy-btn[data-copied="true"] { border-color: var(--teal); color: var(--teal); }
.note-list { display: grid; gap: 18px; }
.note-list li { display: grid; gap: 4px; padding-left: 26px; position: relative; }
.note-list li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px; border-right: 3px solid var(--teal); border-top: 3px solid var(--teal); transform: rotate(45deg); border-radius: 1px; }
.note-list strong { color: var(--navy); }
.note-list span { color: var(--slate); font-size: .97rem; }
.address-slot { display: none; } /* becomes visible when the company address is filled in */

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--muted-on-navy); padding: 56px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: grid; gap: 14px; justify-items: start; }
.footer-brand img { height: 32px; width: auto; }
.footer-brand .tag { font-weight: 700; letter-spacing: .18em; font-size: .72rem; text-transform: uppercase; color: var(--grey); }
.footer-brand p { max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--muted-on-navy); text-decoration: none; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-on-navy); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: var(--grey); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- reveal (JS adds .js to <html>; without JS everything is simply visible) ---------- */
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .reveal:nth-child(2) { transition-delay: .06s; }
html.js .reveal:nth-child(3) { transition-delay: .12s; }
html.js .reveal:nth-child(4) { transition-delay: .18s; }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: var(--section-y) 0; }
.notfound .wrap { display: grid; gap: 16px; justify-items: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ---------- cookie notice ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; margin-inline: auto; max-width: 760px;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 40px rgba(12,30,54,.18); padding: 18px 20px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px 18px; align-items: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner .icon { width: 40px; height: 40px; border-radius: 10px; }
.cookie-banner .cookie-text { display: grid; gap: 3px; }
.cookie-banner .cookie-text strong { font-size: 1rem; color: var(--navy); }
.cookie-banner .cookie-text p { font-size: .92rem; color: var(--slate); line-height: 1.5; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 18px; font-size: .92rem; }
html.js .cookie-banner { animation: cookie-in .35s ease both; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(12px); } }
@media (max-width: 700px) {
  .cookie-banner { grid-template-columns: auto 1fr; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner .cookie-actions { grid-column: 1 / -1; }
  .cookie-banner .cookie-actions .btn { flex: 1; justify-content: center; }
}
