/* Kapra Cosmetics — site styles
   Palette derived from the logo: cyan #3FC8F4 and slate #58585A. */

:root {
  --ink: #23262B;
  --slate: #58585A;
  --muted: #6B7580;
  --kapra: #3FC8F4;
  --kapra-2: #1FB3E3;
  --deep: #0B7EA8;
  --tank: #14212A;
  --tank-2: #1C2E3A;
  --paper: #FFFFFF;
  --mist: #EEF9FD;
  --mist-2: #DCF2FA;
  --line: #D8E2E7;
  --line-2: #EAF0F3;

  --font-display: "Bricolage Grotesque", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --gutter: clamp(16px, 5vw, 56px);
  --max: 1240px;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(20, 33, 42, .06), 0 12px 32px -12px rgba(20, 33, 42, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--kapra); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-variation-settings: "opsz" 96, "wdth" 100;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--slate); max-width: 60ch; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 1.6em; height: 2px; background: var(--kapra); flex: none; }
.mono { font-family: var(--font-mono); }

.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--mist { background: var(--mist); }
.section--tank { background: var(--tank); color: #E6EEF2; }
.section--tank .eyebrow { color: var(--kapra); }
.section--tank h2, .section--tank h3 { color: #FFF; }
.section--tank .lede { color: #B7C6CF; }
.section-head { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; max-width: none; }
@media (max-width: 720px) { .section-head--split { grid-template-columns: 1fr; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85em 1.35em; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1; transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--kapra); color: var(--ink); }
.btn--primary:hover { background: var(--kapra-2); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.section--tank .btn--ghost { border-color: rgba(255,255,255,.28); color: #FFF; }
.section--tank .btn--ghost:hover { border-color: #FFF; }
.btn svg { width: 1em; height: 1em; }
.btn--lg { font-size: 1.08rem; padding: 1em 1.6em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a { color: var(--ink); font-weight: 500; font-size: .98rem; padding: .35em 0; position: relative; }
.nav a:hover { text-decoration: none; color: var(--deep); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--kapra); }
.nav .btn { padding: .7em 1.1em; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; display: block; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #FFF; border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 14px; justify-content: center; }
}

/* Hero */
.hero { padding-block: clamp(40px, 6vw, 88px) 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--deep); }
.hero .lede { margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hero-media .tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(20,33,42,.82); color: #FFF;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .06em; padding: .55em .8em; border-radius: 4px;
  backdrop-filter: blur(6px);
}

/* Signature: graduated fill-range ruler */
.ruler { margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--line); padding-top: 22px; overflow: hidden; }
.ruler-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 6px 16px; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); margin-bottom: 18px; }
.ruler-head strong { color: var(--ink); font-weight: 500; }
.ruler-track { position: relative; height: 10px; background: var(--line-2); border-radius: 999px; margin-inline: 4px; }
.ruler-fill { position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--mist-2), var(--kapra)); border-radius: 999px; animation: ruler-fill 1.6s cubic-bezier(.2,.7,.2,1) .3s forwards; }
@keyframes ruler-fill { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .ruler-fill { animation: none; width: 100%; } }
.ruler-ticks { position: relative; height: 66px; margin-inline: 4px; }
.tick { position: absolute; bottom: 0; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.tick::after { content: ""; display: block; width: 2px; height: 12px; background: var(--ink); margin: 6px auto 0; }
.tick b { display: block; font-family: var(--font-mono); font-weight: 500; font-size: .86rem; color: var(--ink); }
.tick span { display: block; font-size: .74rem; color: var(--muted); letter-spacing: .02em; }
.tick:first-child { transform: translateX(0); text-align: left; }
.tick:first-child::after { margin-left: 0; }
.tick:last-child { transform: translateX(-100%); text-align: right; }
.tick:last-child::after { margin-right: 0; }
@media (max-width: 720px) { .ruler-ticks { height: 40px; } .tick span { display: none; } .tick b { font-size: .74rem; } .tick.tick--minor { display: none; } }
.ruler-foot { display: flex; justify-content: space-between; margin-top: 12px; font-size: .82rem; color: var(--muted); padding-inline: 4px; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats > div { padding: 26px 18px 24px; border-left: 1px solid var(--line); }
.stats > div:first-child { border-left: 0; }
.stats b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 2.6vw, 2.4rem); letter-spacing: -0.03em; line-height: 1; }
.stats b small { font-size: .5em; font-weight: 500; color: var(--slate); letter-spacing: 0; margin-left: .15em; }
.stats span { display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .6em; }
@media (max-width: 1000px) { .stats { grid-template-columns: repeat(3, 1fr); } .stats > div:nth-child(4) { border-left: 0; } .stats > div:nth-child(n+4) { border-top: 1px solid var(--line); } }
@media (max-width: 560px) { .stats { grid-template-columns: repeat(2, 1fr); } .stats > div:nth-child(odd) { border-left: 0; } .stats > div:nth-child(4) { border-left: 1px solid var(--line); } .stats > div:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.card h3 { margin: 0; }
.card p { color: var(--slate); margin: 0; }
.card .kicker { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--deep); }
.card ul { margin: 6px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.card li { padding-left: 1.4em; position: relative; color: var(--ink); font-size: .96rem; }
.card li::before { content: ""; position: absolute; left: 0; top: .55em; width: .7em; height: .7em; border-radius: 50%; background: var(--kapra); }
.card .more { margin-top: auto; padding-top: 12px; font-weight: 600; }

/* Service rows — the spec-sheet device */
.svc { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 1.1fr 1.5fr 1fr; gap: clamp(20px, 4vw, 56px); padding: clamp(24px, 3vw, 40px) 0; border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .svc-row { grid-template-columns: 1fr; gap: 14px; } }
.svc-row h3 { margin: 0; display: flex; gap: 14px; align-items: baseline; }
.svc-row h3 .idx { font-family: var(--font-mono); font-weight: 500; font-size: .8rem; color: var(--deep); letter-spacing: .08em; }
.svc-row p { color: var(--slate); margin: 0; }
.spec { margin: 0; padding: 0; list-style: none; font-family: var(--font-mono); font-size: .84rem; display: grid; gap: 8px; }
.spec li { position: relative; padding-left: 1.5em; line-height: 1.5; }
.spec li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--kapra); font-weight: 500; }
.spec b { font-weight: 500; color: var(--ink); }
.spec span { color: var(--muted); }
.spec span::before { content: "· "; color: var(--line); }

/* Media + text split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split--rev > .split-media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--rev > .split-media { order: 0; } }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-media figcaption { font-family: var(--font-mono); font-size: .76rem; color: var(--muted); margin-top: 10px; letter-spacing: .04em; }

/* Product categories */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cats { grid-template-columns: repeat(2, 1fr); } }
.cat { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--mist); display: block; color: var(--ink); border: 1px solid var(--line); }
.cat:hover { text-decoration: none; }
.cat img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; transition: transform .5s ease; }
.cat:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) { .cat img { transition: none; } .cat:hover img { transform: none; } }
.cat-body { padding: 16px 18px 18px; background: #FFF; }
.cat h3 { margin: 0 0 4px; font-size: 1.15rem; }
.cat p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.4; }
.cat .count { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: .72rem; background: rgba(255,255,255,.9); padding: .35em .6em; border-radius: 4px; letter-spacing: .06em; }

/* Product list page */
.plist { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px 40px; }
.plist h3 { display: flex; align-items: baseline; gap: 12px; border-bottom: 2px solid var(--kapra); padding-bottom: 8px; margin-bottom: 12px; }
.plist h3 small { font-family: var(--font-mono); font-size: .74rem; font-weight: 500; color: var(--muted); letter-spacing: .06em; }
.plist ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 24px; }
.plist li { padding: 5px 0; border-bottom: 1px solid var(--line-2); break-inside: avoid; font-size: .97rem; }
.plist figure { margin: 0 0 16px; }
.plist figure img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; position: relative; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 22px; }
.step::before { content: ""; position: absolute; top: 8px; left: 0; right: -20px; height: 2px; background: var(--line); }
.step:last-child::before { right: 0; }
.step::after { content: ""; position: absolute; top: 3px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--kapra); box-shadow: 0 0 0 4px var(--paper); }
.section--mist .step::after { box-shadow: 0 0 0 4px var(--mist); }
.step .num { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em; color: var(--deep); margin-bottom: 8px; display: block; }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--slate); font-size: .95rem; margin: 0; }
.step .out { margin-top: 10px; font-family: var(--font-mono); font-size: .76rem; color: var(--muted); }
.step .out b { color: var(--ink); font-weight: 500; }

/* Why Kapra — differentiators */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why-sticky { position: sticky; top: 100px; }
.diff { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.12); }
.diff li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.diff svg { width: 26px; height: 26px; color: var(--kapra); margin-top: 2px; }
.diff h3 { font-size: 1.15rem; margin: 0 0 4px; color: #FFF; }
.diff p { margin: 0; color: #B7C6CF; font-size: .97rem; }

/* Retailer strip */
.retail { text-align: center; }
.retail-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 18px 0 0; padding: 0; list-style: none; }
.retail-list li { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.3rem); color: var(--slate); letter-spacing: -0.01em; padding: .3em .7em; border: 1px solid var(--line); border-radius: 999px; background: #FFF; }

/* Quote */
.quote { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px); align-items: start; max-width: 960px; margin-inline: auto; }
@media (max-width: 720px) { .quote { grid-template-columns: 1fr; } }
.quote .mark { font-family: var(--font-display); font-size: 6rem; line-height: .6; color: var(--kapra); font-weight: 700; margin-top: .25em; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.3; letter-spacing: -0.01em; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--font-mono); font-size: .8rem; color: var(--muted); letter-spacing: .06em; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; position: relative; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-family: var(--font-mono); font-size: 1.5rem; color: var(--deep); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--slate); max-width: 68ch; }

/* CTA band */
.cta-band { background: var(--tank); color: #FFF; position: relative; overflow: hidden; }
.cta-band .container { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding-block: clamp(56px, 8vw, 96px); }
@media (max-width: 800px) { .cta-band .container { grid-template-columns: 1fr; } }
.cta-band h2 { color: #FFF; max-width: 18ch; }
.cta-band p { color: #B7C6CF; max-width: 52ch; margin: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.28); color: #FFF; }
.cta-band .btn--ghost:hover { border-color: #FFF; }
.cta-band::before { content: ""; position: absolute; right: -10%; top: -40%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(63,200,244,.22), transparent 70%); pointer-events: none; }

/* Page intro (inner pages) */
.page-intro { padding-block: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 48px); }
.page-intro h1 { max-width: 16ch; }
.page-intro .lede { max-width: 64ch; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact-info dl { margin: 0; display: grid; gap: 22px; }
.contact-info dt { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-info dd { margin: 0; font-size: 1.05rem; }
.contact-info dd a { font-weight: 600; }
.form { background: #FFF; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 36px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; }
.field label small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: .7em .8em; border: 1px solid var(--line); border-radius: 4px; background: #FFF; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--kapra-2); box-shadow: 0 0 0 3px rgba(63,200,244,.3); }
.field textarea { min-height: 120px; resize: vertical; }
.form-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-foot small { color: var(--muted); }
.form-success { display: none; padding: 32px 8px; text-align: center; }
.form-success svg { width: 44px; height: 44px; color: var(--deep); margin-bottom: 12px; }
.form.is-sent form { display: none; }
.form.is-sent .form-success { display: block; }
.map { border: 0; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); filter: grayscale(.2); }

/* Timeline (about) */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); display: grid; gap: 28px; }
.timeline li { position: relative; padding-left: 28px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--kapra); }
.timeline .year { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .08em; color: var(--deep); display: block; margin-bottom: 4px; }
.timeline p { margin: 0; color: var(--slate); }
.timeline b { color: var(--ink); font-weight: 600; }

/* Prose */
.prose { max-width: 68ch; }
.prose p { color: var(--slate); }
.prose p strong { color: var(--ink); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery figure { margin: 0; }
.gallery img { border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.gallery figcaption { font-family: var(--font-mono); font-size: .74rem; color: var(--muted); margin-top: 8px; letter-spacing: .04em; }

/* Certs */
.certs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (max-width: 800px) { .certs { grid-template-columns: 1fr; } }
.certs img { border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; }
.check-list svg { width: 22px; height: 22px; color: var(--deep); margin-top: 3px; }
.check-list b { display: block; font-weight: 600; }
.check-list span { color: var(--slate); font-size: .96rem; }

/* Footer */
.site-footer { background: var(--tank); color: #B7C6CF; padding-block: 56px 32px; font-size: .95rem; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 900px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer .brand img { height: 44px; width: auto; background: #FFF; padding: 8px 12px; border-radius: 4px; }
.site-footer .brand p { margin-top: 16px; max-width: 34ch; }
.site-footer h4 { color: #FFF; font-family: var(--font-mono); font-weight: 500; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: #E6EEF2; }
.site-footer .bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: #7F93A0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #FFF; padding: 8px 12px; z-index: 100; border-radius: 4px; }
.skip:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
