/* ==========================================================================
   Clean with Kenta — Design System
   Tokens first, components second. Every color/spacing/type decision in the
   rest of the CSS should trace back to a variable defined here.
   ========================================================================== */

:root {
  /* --- Brand color ramp --- */
  --c-electric-blue: #0A66FF;
  --c-deep-blue: #0047CC;
  --c-navy: #0D1B2A;
  --c-near-black: #0A0F14;
  --c-white: #FFFFFF;
  --c-mist: #D9DEE6;

  /* Derived surfaces (all shades of the ramp above — no new hues) */
  --c-navy-raised: #13273a;
  --c-navy-line: #223349;
  --c-ink: var(--c-white);
  --c-ink-dim: var(--c-mist);
  --c-ink-faint: #90a0b2;

  /* Semantic aliases */
  --bg: var(--c-near-black);
  --bg-section: var(--c-navy);
  --bg-raised: var(--c-navy-raised);
  --border: var(--c-navy-line);
  --accent: var(--c-electric-blue);
  --accent-deep: var(--c-deep-blue);
  /* Lighter tint of the same blue for text on dark backgrounds — #0A66FF
     itself is ~3.6:1 against --bg and fails WCAG AA (4.5:1) for text. */
  --accent-text: #5B9CFF;
  --text: var(--c-ink);
  --text-dim: var(--c-ink-dim);
  --text-faint: var(--c-ink-faint);

  /* --- Typography --- */
  --font-display: "Archivo Black", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Montserrat", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Segoe Script", "Brush Script MT", cursive;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-h1: clamp(2.4rem, 6vw, 5rem);
  --fs-h2: clamp(1.7rem, 3.6vw, 2.7rem);
  --fs-h3: clamp(1.2rem, 2.2vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1.6vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-label: 0.75rem;

  --lh-tight: 1.05;
  --lh-heading: 1.15;
  --lh-body: 1.65;

  /* --- Spacing scale (4px base) --- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 140px;

  /* --- Shape / elevation --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(0,0,0,.25);
  --shadow-md: 0 12px 40px rgba(0,0,0,.35);
  --shadow-glow: 0 8px 30px rgba(10,102,255,.35);

  /* --- Motion --- */
  --dur-fast: 160ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 4vw, 56px);

  /* --- Z-index scale --- */
  --z-base: 0;
  --z-raised: 10;
  --z-nav: 500;
  --z-overlay: 800;
  --z-modal: 900;
  --z-toast: 950;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
/* Defensive default: a bare <svg><use></svg> with no CSS sizing otherwise
   falls back to the browser's replaced-element default (~300x150) and can
   blow out the layout. Specific components size their own icons above 1em. */
svg { width: 1em; height: 1em; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }

/* Focus visibility everywhere — never remove without replacing */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  background: var(--accent);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  z-index: var(--z-toast);
  font-weight: 700;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: var(--sp-4); }

/* ==========================================================================
   Typography primitives
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-text);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  letter-spacing: .01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  text-transform: uppercase;
  letter-spacing: .01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.lead {
  font-size: var(--fs-lead);
  color: var(--text-dim);
  max-width: 56ch;
}
.accent-script {
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--accent-text);
  font-size: 1.3em;
  text-transform: none;
  letter-spacing: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */
section[id] {
  scroll-margin-top: 88px;
}
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--sp-9);
  position: relative;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: var(--container-narrow);
  margin-bottom: var(--sp-7);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { box-shadow: 0 12px 36px rgba(10,102,255,.5); }

.btn--secondary {
  background: transparent;
  border-color: rgba(217,222,230,.35);
  color: var(--text);
}
.btn--secondary:hover { border-color: var(--accent); background: rgba(10,102,255,.08); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card:hover {
  border-color: rgba(10,102,255,.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(10,102,255,.18), rgba(10,102,255,.04));
  border: 1px solid rgba(10,102,255,.3);
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.icon-box svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ==========================================================================
   Value pills (used in hero + about)
   ========================================================================== */
.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.value-pill {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.value-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* ==========================================================================
   Site header / navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  padding-block: var(--sp-4);
  transition: background var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 15, 20, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding-block: var(--sp-3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.1rem;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(10,102,255,.6);
  object-fit: cover;
}
.brand .accent-script { text-transform: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: var(--fs-small);
  font-weight: 600;
}
.nav-links a {
  position: relative;
  color: var(--text-dim);
  padding-block: var(--sp-2);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after { transform: scaleX(1); }
.nav-links a[aria-current="true"] { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: var(--sp-4); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(10,15,20,.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  /* visibility toggles instantly (not transitioned) so the menu becomes
     focusable the moment .is-open is added — only opacity/transform fade. */
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: .02em;
  color: var(--text);
}
.mobile-menu .btn { margin-top: var(--sp-4); }
.mobile-menu-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--gutter);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text);
  display: grid;
  place-items: center;
}
.mobile-menu-close svg { width: 20px; height: 20px; }

.nav-links a { white-space: nowrap; }

@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn--primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* CWK_banner.PNG has Kenta on the left third and the wordmark on the
     right. This default suits wide viewports where cover crops little;
     see responsive.css for narrower breakpoints, which bias further left
     toward Kenta as more of the width gets cropped away (the HTML hero
     text already covers the wordmark's job). */
  object-position: center 30%;
  will-change: transform;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 75% 20%, rgba(10,102,255,.25), transparent 65%),
    linear-gradient(160deg, #14263a, var(--c-near-black));
  display: grid;
  place-items: center;
  color: var(--text-faint);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--sp-6);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10,15,20,.55) 0%, rgba(10,15,20,.65) 45%, var(--c-near-black) 100%),
    linear-gradient(100deg, rgba(13,27,42,.85) 10%, rgba(10,102,255,.12) 60%, transparent 100%);
}
.hero-water {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-content {
  position: relative;
  padding-block: calc(var(--sp-10) + 40px) var(--sp-9);
  max-width: 780px;
}
.hero-content h1 { margin-block: var(--sp-4); }
.hero-content .lead { margin-bottom: var(--sp-6); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.hero-values { opacity: .9; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--c-mist));
  z-index: calc(var(--z-nav) + 1);
  transition: width 80ms linear;
}

/* ==========================================================================
   Videos
   ========================================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.video-card { border-radius: var(--radius-md); overflow: hidden; background: var(--bg-raised); border: 1px solid var(--border); }
.video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--bg);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(10,15,20,.1), rgba(10,15,20,.55));
}
.video-play svg {
  width: 56px; height: 56px;
  color: #fff;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5));
  transition: transform var(--dur-fast) var(--ease-out);
}
.video-thumb:hover .video-play svg { transform: scale(1.08); }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-title { padding: var(--sp-4); font-size: .95rem; margin: 0; }
.video-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-8);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-faint);
}
.video-empty p { margin-bottom: var(--sp-4); }

/* ==========================================================================
   FAQ accordion — native <details>, works without JS
   ========================================================================== */
.faq-list { max-width: var(--container-narrow); display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  padding: 0 var(--sp-5);
}
.faq-item summary {
  padding: var(--sp-4) 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent-text);
  font-size: 1.2rem;
  flex: none;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--text-dim); padding-bottom: var(--sp-4); margin: 0; }

/* ==========================================================================
   Form fields (nominate form)
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-small); font-weight: 600; color: var(--text-dim); }
.field input[type="text"],
.field input[type="email"],
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }

.nominate-form { max-width: var(--container-narrow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--text-dim);
  margin-bottom: var(--sp-4);
  cursor: pointer;
}
.field-checkbox input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-faint);
  margin-top: var(--sp-3);
}
.form-hint svg { width: 15px; height: 15px; flex: none; margin-top: 1px; }
#nominateForm .field-error { color: #ff8080; font-size: var(--fs-small); min-height: 1.2em; margin-bottom: var(--sp-3); }
#nominateForm.is-success .form-fields,
#nominateForm.is-success #nominateSubmit,
#nominateForm.is-success .form-hint { display: none; }
.nominate-success {
  display: none;
  text-align: center;
  padding: var(--sp-6);
  color: var(--good, #2ecc71);
  font-weight: 600;
}
#nominateForm.is-success .nominate-success { display: block; }

/* ==========================================================================
   Before / after
   ========================================================================== */
.before-after {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  max-width: var(--container-narrow);
  user-select: none;
  touch-action: pan-y;
}
.before-after figure { position: absolute; inset: 0; margin: 0; }
.before-after figure img, .before-after figure .placeholder-fill {
  width: 100%; height: 100%; object-fit: cover;
}
.before-after .placeholder-fill {
  display: grid; place-items: center;
  color: var(--text-faint);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--sp-6);
}
.ba-before { background: #1a2c3f; }
.ba-after {
  background: #101f2f;
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  top: var(--sp-4);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(10,15,20,.7);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}
.ba-before .ba-label { left: var(--sp-4); }
.ba-after-label { position: absolute; top: var(--sp-4); right: var(--sp-4); z-index: 2; font-size: var(--fs-label); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: rgba(10,102,255,.85); padding: 5px 12px; border-radius: var(--radius-pill); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--c-white);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 3;
}
.ba-handle::after {
  content: "↔";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-near-black);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}
.before-after input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

/* ==========================================================================
   About Kenta
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(10,102,255,.5);
  box-shadow: var(--shadow-glow);
  justify-self: center;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait.is-placeholder {
  display: grid; place-items: center;
  background: linear-gradient(160deg, #14263a, var(--c-near-black));
  color: var(--text-faint);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--sp-5);
}
.about-values { margin-top: var(--sp-5); }
/* Breakpoint overrides for .about-grid live in responsive.css, in a single
   cascade, to avoid two stylesheets fighting over the same selector. */

/* ==========================================================================
   How it works
   ========================================================================== */
.steps-rail {
  position: relative;
  display: grid;
  gap: var(--sp-6);
}
.steps-rail::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border);
}
.steps-rail .step-line-fill {
  position: absolute;
  left: 23px;
  top: 24px;
  width: 2px;
  height: 0%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transition: height var(--dur-slow) var(--ease-out);
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.step-index {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--text-faint);
  z-index: 1;
  transition: border-color var(--dur-base), color var(--dur-base), background var(--dur-base);
}
.step.is-active .step-index {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(10,102,255,.12);
}
.step h3 { margin-bottom: var(--sp-1); font-size: 1.05rem; }
.step p { color: var(--text-dim); font-size: var(--fs-small); margin: 0; }

/* ==========================================================================
   Social
   ========================================================================== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
}
.social-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
}
.social-card .icon-box { margin-bottom: 0; flex: none; }
.social-card strong { display: block; font-size: .95rem; }
.social-card span { font-size: var(--fs-small); color: var(--text-faint); }

/* ==========================================================================
   Contact / CTA panel
   ========================================================================== */
.cta-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--sp-9) var(--sp-7);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-raised), var(--bg-section));
  border: 1px solid var(--border);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 50% 0%, rgba(10,102,255,.22), transparent 70%);
  pointer-events: none;
}
.cta-panel h2 { margin-bottom: var(--sp-3); }
.cta-panel .lead { margin-inline: auto; margin-bottom: var(--sp-6); }
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  position: relative;
}
.contact-field[hidden] { display: none !important; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-7);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: var(--sp-3); }
.footer-brand p { color: var(--text-faint); font-size: var(--fs-small); }
.footer-cols { display: flex; gap: var(--sp-8); flex-wrap: wrap; }
.footer-col h4 {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
  margin-bottom: var(--sp-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a { color: var(--text-dim); font-size: var(--fs-small); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-faint);
}
.to-top {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-dim);
}
.to-top:hover { border-color: var(--accent); color: var(--accent); }
.to-top svg { width: 18px; height: 18px; }

