@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Play:wght@400;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ==================================================================
   Urban Decoders — City Engagement, Planning & Digital Twin Studio
   Dark-studio editorial system. Swap the variables below with your own
   design-system values; every color/font/space/radius flows from here.
   ================================================================== */
:root {
  /* --- Brand --------------------------------------------------- */
  --brand-teal-deep: #1a5279;
  --brand-teal: #2a7b9b;
  --brand-teal-light: #2f8aa9;
  --brand-blue: #3b9eff;
  --brand-gradient: linear-gradient(135deg, #1a5279 0%, #2a7b9b 55%, #2f8aa9 100%);
  --brand-glow: rgba(47, 138, 169, 0.30);

  /* --- Emphasis (one loud callout per view) -------------------- */
  --emphasis-red: #d81f2a;
  --emphasis-red-bright: #ff3b3b;
  --emphasis-red-border: rgba(216, 31, 42, 0.55);
  --emphasis-red-glow: rgba(216, 31, 42, 0.30);

  /* --- Surfaces / canvas --------------------------------------- */
  --canvas: #000000;
  --surface-card: #0a0a0c;
  --surface-elevated: #101012;
  --surface-deep: #06060a;
  --surface-light: #f1f7fe;
  --hairline: rgba(255, 255, 255, 0.06);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --divider-soft: rgba(255, 255, 255, 0.04);

  /* --- Ink / text ---------------------------------------------- */
  --ink: #fcfdff;
  --body: rgba(252, 253, 255, 0.86);
  --charcoal: rgba(252, 253, 255, 0.70);
  --mute: #a1a4a5;
  --ash: #888e90;
  --stone: #464a4d;
  --on-light: #000000;
  --on-light-mute: rgba(0, 0, 51, 0.70);
  --link: #3b9eff;

  /* --- Type lanes ---------------------------------------------- */
  --font-display: 'Newsreader', 'Tiempos Headline', Georgia, serif;
  --font-techno: 'Play', 'Chakra Petch', 'Rajdhani', sans-serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* --- Spacing (4px base) -------------------------------------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-section: 96px;
  --space-band: 128px;
  --content-max: 1200px;

  /* --- Radius -------------------------------------------------- */
  --radius-btn: 8px;
  --radius-card: 12px;
  --radius-panel: 16px;
  --radius-pill: 999px;
}

/* ------------------------------------------------------------------ */
/* Reset                                                              */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; transition: color 120ms ease; }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: var(--space-2);
  background: var(--ink); color: var(--on-light);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-btn);
  z-index: 200; font-weight: 600;
}
.skip-link:focus { left: var(--space-4); }

/* ------------------------------------------------------------------ */
/* Layout primitives                                                  */
/* ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--content-max); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: var(--space-7); }
.band { padding-block: var(--space-band); position: relative; }
.stack > * + * { margin-top: var(--space-5); }
.divider { height: 1px; background: var(--hairline); border: 0; }

/* Atmospheric glow anchored to a band's top edge */
.glow-top { position: relative; }
.glow-top::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 600px;
  background: radial-gradient(60% 100% at 50% 0%, var(--brand-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.glow-top > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ */
/* Type                                                               */
/* ------------------------------------------------------------------ */
.eyebrow {
  font-family: var(--font-techno);
  font-size: 13px; line-height: 1;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand-teal-light);
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--brand-teal-light); opacity: 0.7;
}
.eyebrow--plain::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -1.4px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.display--xl { font-size: clamp(3rem, 8vw, 6rem); }
h1, h2, h3, h4 { font-weight: 500; }
.h-serif { font-family: var(--font-display); letter-spacing: -0.8px; line-height: 1.05; }
.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.05; letter-spacing: -1px;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--body); line-height: 1.55; max-width: 60ch;
}
.muted { color: var(--mute); }
.mono { font-family: var(--font-mono); letter-spacing: 0; }
.text-grad {
  background: linear-gradient(120deg, var(--brand-teal-light), var(--brand-blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                            */
/* ------------------------------------------------------------------ */
.btn {
  --_pad: 12px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--_pad); border-radius: var(--radius-btn);
  font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: 0;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color 120ms ease, color 120ms ease, filter 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--on-light); }
.btn--primary:hover { background: var(--surface-light); color: var(--on-light); }
.btn--brand { background: var(--brand-gradient); color: var(--ink); }
.btn--brand:hover { filter: brightness(1.12); color: var(--ink); }
.btn--ghost { background: var(--surface-elevated); color: var(--ink); border-color: var(--hairline-strong); }
.btn--ghost:hover { background: #16161a; color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; }

/* Pills / tags */
.pill {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2px;
  border: 1px solid var(--hairline-strong); color: var(--charcoal);
  background: var(--surface-card);
}
.pill--brand { border-color: rgba(47,138,169,0.4); color: var(--brand-teal-light); background: rgba(47,138,169,0.08); }
.tag {
  font-family: var(--font-techno); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--brand-teal-light);
}
.dot { width: 8px; height: 8px; border-radius: var(--radius-pill); display: inline-block; }
.dot--green { background: #11ff99; box-shadow: 0 0 10px rgba(17,255,153,0.6); }
.dot--teal { background: var(--brand-teal-light); }

/* ------------------------------------------------------------------ */
/* Navigation                                                         */
/* ------------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  max-width: var(--content-max); margin-inline: auto;
  min-height: 64px; padding-inline: var(--space-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 30px; height: 30px; border-radius: var(--radius-pill);
  background: var(--brand-gradient); display: grid; place-items: center;
  font-family: var(--font-techno); font-weight: 700; font-size: 13px; color: var(--ink);
  box-shadow: 0 0 24px var(--brand-glow);
}
.brand__img { width: 34px; height: 34px; object-fit: contain; display: block; flex: 0 0 auto; }
/* Wordmark PNG ships as dark ink on transparent — force it to brand white */
.brand__wordmark {
  height: 26px; width: auto; object-fit: contain; display: block; flex: 0 0 auto;
  filter: brightness(0) invert(1);
}
.brand__word { font-family: var(--font-techno); font-weight: 700; font-size: 18px; letter-spacing: 1.5px; }
.nav__links { display: flex; align-items: center; gap: var(--space-6); }
.nav__link { color: var(--charcoal); font-size: 14px; font-weight: 500; position: relative; padding-block: 6px; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brand-gradient);
}
.nav__cta { display: flex; align-items: center; gap: var(--space-3); }
/* Mobile menu via checkbox-free CSS: keep links, collapse into scroll on small screens */
.nav__toggle { display: none; }

/* ------------------------------------------------------------------ */
/* Cards + 3D tilt                                                     */
/* ------------------------------------------------------------------ */
.card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--radius-card); padding: var(--space-6);
}
.card--glow { position: relative; overflow: hidden; }
.card--glow::after {
  content: ""; position: absolute; inset: auto -30% -60% -30%; height: 200px;
  background: radial-gradient(50% 100% at 50% 100%, var(--brand-glow), transparent 70%);
  opacity: 0; transition: opacity 200ms ease; pointer-events: none;
}
.card--glow:hover::after, .card--glow:focus-within::after { opacity: 1; }
.card--emphasis {
  border-color: var(--emphasis-red-border);
  background:
    radial-gradient(120% 120% at 100% 0%, var(--emphasis-red-glow), transparent 55%),
    var(--surface-card);
}

/* Perspective tilt: legible flat by default, lifts + angles on hover/focus */
.tilt-scene { perspective: 1100px; }
.tilt {
  transition: transform 220ms cubic-bezier(.2,.7,.2,1), border-color 220ms ease;
  transform-style: preserve-3d; will-change: transform;
}
.tilt-scene:hover .tilt,
.tilt-scene:focus-within .tilt {
  transform: rotateX(6deg) rotateY(-7deg) translateZ(24px);
  border-color: var(--hairline-strong);
}
.tilt__lift { transform: translateZ(40px); transition: transform 220ms ease; }
@media (prefers-reduced-motion: reduce) {
  .tilt-scene:hover .tilt, .tilt-scene:focus-within .tilt { transform: none; }
}

/* ------------------------------------------------------------------ */
/* Flip card (preserve-3d)                                            */
/* ------------------------------------------------------------------ */
.flip { perspective: 1200px; background: transparent; border: 0; padding: 0; }
.flip__inner {
  position: relative; width: 100%; height: 260px;
  transform-style: preserve-3d; transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.flip:hover .flip__inner,
.flip:focus-within .flip__inner { transform: rotateY(180deg); }
.flip__face {
  position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border: 1px solid var(--hairline); border-radius: var(--radius-card);
  padding: var(--space-6); display: flex; flex-direction: column; justify-content: space-between;
}
.flip__front { background: var(--surface-card); overflow: hidden; }
/* Front face carries a project still, dimmed so the icon and title stay legible */
.flip__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(0.35) brightness(0.42);
  transition: filter 500ms ease, transform 500ms ease;
}
.flip__front::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 12%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.55));
}
.flip__front > *:not(.flip__img) { position: relative; z-index: 2; }
.flip:hover .flip__img, .flip:focus-within .flip__img { filter: grayscale(0) brightness(0.55); transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .flip__img { transition: none; } }
.flip__back {
  transform: rotateY(180deg);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(47,138,169,0.16), transparent 60%),
    var(--surface-elevated);
  border-color: var(--hairline-strong);
}
@media (prefers-reduced-motion: reduce) {
  .flip:hover .flip__inner, .flip:focus-within .flip__inner { transform: none; }
  .flip__back { transform: none; position: static; margin-top: var(--space-3); }
  .flip__front { position: static; }
  .flip__inner { height: auto; }
}

/* ------------------------------------------------------------------ */
/* Interactive globe (canvas)                                         */
/* ------------------------------------------------------------------ */
.globe-scene { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 560px; margin-inline: auto; }
.globe-scene::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-pill);
  background: radial-gradient(50% 50% at 50% 45%, var(--brand-glow), transparent 68%);
  pointer-events: none;
}
.globe-canvas { position: relative; z-index: 1; width: 100%; height: 100%; cursor: grab; touch-action: none; display: block; }
.globe-canvas:active { cursor: grabbing; }
.globe-chip {
  position: absolute; left: 0; bottom: 4%; z-index: 2;
  padding: 14px 18px; border-radius: var(--radius-card);
  background: var(--surface-elevated); border: 1px solid var(--hairline-strong);
  pointer-events: none;
}
.globe-ctrls { position: absolute; right: 2%; bottom: 4%; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.globe-ctrl {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(10,10,12,0.72);
  border: 1px solid var(--hairline-strong); color: var(--ink);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}
.globe-ctrl:hover { background: var(--surface-card); border-color: var(--brand-teal-light); }
.globe-ctrl:active { transform: scale(0.94); }
.globe-ctrl svg { width: 18px; height: 18px; }
.globe-ctrl[aria-pressed="false"] { color: var(--brand-teal-light); border-color: var(--brand-teal-light); }
.globe-hint {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 4;
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.72); border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 12px; color: var(--body);
  opacity: 0; transition: opacity 240ms ease; pointer-events: none; white-space: nowrap;
}
.globe-hint.is-on { opacity: 1; }

/* ------------------------------------------------------------------ */
/* Point-cloud city hologram                                          */
/* ------------------------------------------------------------------ */
.holo-scene {
  position: relative; height: clamp(380px, 46vw, 560px);
  border: 1px solid var(--hairline); border-radius: var(--radius-panel);
  overflow: hidden; cursor: grab;
  background:
    radial-gradient(90% 120% at 50% 100%, rgba(47,138,169,0.10), transparent 60%),
    var(--surface-deep);
}
.holo-scene:active { cursor: grabbing; }
.holo-scene:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 4px; }
.holo-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; touch-action: pan-y; }
.holo-chip {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; pointer-events: none;
  font-family: var(--font-techno); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ash);
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: rgba(10,10,12,0.66); border: 1px solid var(--hairline);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

/* ------------------------------------------------------------------ */
/* Live city — feed tiles                                             */
/* ------------------------------------------------------------------ */
.live { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--space-5); align-items: stretch; }
.live__visual { position: relative; border-radius: var(--radius-panel); overflow: hidden; border: 1px solid var(--hairline); min-height: 380px; }
.live__visual img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.9) brightness(0.8); }
.live__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-techno); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 12px; border-radius: var(--radius-pill);
  background: rgba(10,10,12,0.72); border: 1px solid var(--hairline); color: var(--ink);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.live__feeds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feed {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--radius-card); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px; min-height: 118px;
  transition: border-color 200ms ease;
}
.feed:hover { border-color: var(--hairline-strong); }
.feed__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.feed__name { font-family: var(--font-techno); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); }
.feed__src { font-size: 11px; color: var(--ash); }
.feed__val { font-family: var(--font-display); font-size: 30px; line-height: 1; letter-spacing: -0.8px; color: var(--ink); }
.feed__val small { font-family: var(--font-mono); font-size: 12px; color: var(--brand-teal-light); letter-spacing: 0; margin-left: 4px; }
.feed__meta { font-size: 12px; color: var(--mute); }
.feed__spark { display: block; width: 100%; height: 26px; margin-top: auto; }
.feed__ok   { color: #58c98a; }
.feed__warn { color: #ffb84d; }
.feed__bad  { color: var(--emphasis-red-bright); }
.dot--live { animation: livepulse 1.6s ease-in-out infinite; }
@keyframes livepulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(63,174,122,0.55); } 50% { opacity: 0.75; box-shadow: 0 0 0 6px rgba(63,174,122,0); } }
@media (max-width: 960px) { .live { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .live__feeds { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .dot--live { animation: none; } }

/* ------------------------------------------------------------------ */
/* Cards with a background image layer (opt-in via .card--pic)        */
/* ------------------------------------------------------------------ */
.card--pic { position: relative; overflow: hidden; }
.card--pic .card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(0.35) brightness(0.34);
  transition: filter 500ms ease, transform 500ms ease;
}
.card--pic::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 22%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.62));
}
.card--pic > *:not(.card__img) { position: relative; z-index: 2; }
.card--pic:hover .card__img, .card--pic:focus-within .card__img {
  filter: grayscale(0) brightness(0.5); transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) { .card--pic .card__img { transition: none; } }

/* ------------------------------------------------------------------ */
/* Mini masterplan configurator (web toy)                             */
/* ------------------------------------------------------------------ */
.config { display: grid; grid-template-columns: 300px 1fr; gap: var(--space-5); align-items: stretch; }
.config__panel {
  background: var(--surface-card); border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-card); padding: var(--space-5);
  display: flex; flex-direction: column; gap: 16px;
}
.config__title {
  font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--brand-teal-light);
  padding-bottom: 12px; border-bottom: 1px solid var(--hairline);
}
.config__row label { display: flex; justify-content: space-between; font-size: 13px; color: var(--charcoal); margin-bottom: 6px; }
.config__row output { font-family: var(--font-mono); color: var(--ink); }
.config input[type="range"] { width: 100%; accent-color: var(--brand-teal-light); cursor: pointer; }
.config__stats { margin-top: auto; border-top: 1px solid var(--hairline); padding-top: 14px; display: grid; gap: 7px; font-size: 13px; color: var(--charcoal); }
.config__stats div { display: flex; justify-content: space-between; gap: 12px; }
.config__stats span:last-child { font-family: var(--font-mono); color: var(--ink); white-space: nowrap; }
.config__scene {
  position: relative; min-height: 440px; overflow: hidden; cursor: grab;
  border: 1px solid var(--hairline); border-radius: var(--radius-panel);
  background:
    radial-gradient(80% 110% at 50% 100%, rgba(47,138,169,0.08), transparent 60%),
    var(--surface-deep);
}
.config__scene:active { cursor: grabbing; }
.config__scene canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; touch-action: pan-y; }
.config__hint {
  position: absolute; right: 14px; bottom: 12px; pointer-events: none;
  font-family: var(--font-techno); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ash);
}
@media (max-width: 860px) {
  .config { grid-template-columns: 1fr; }
  .config__scene { min-height: 340px; }
}

/* ------------------------------------------------------------------ */
/* Consultation demo — comment pins on an aerial                      */
/* ------------------------------------------------------------------ */
.consult {
  position: relative; border: 1px solid var(--hairline);
  border-radius: var(--radius-panel); overflow: hidden; cursor: crosshair;
}
.consult > img { width: 100%; display: block; filter: saturate(0.85) brightness(0.88); }
.consult__stats {
  position: absolute; top: 14px; left: 14px; z-index: 5; display: flex; gap: 8px;
  pointer-events: none; flex-wrap: wrap;
}
.consult__stat {
  font-family: var(--font-techno); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 7px 12px; border-radius: var(--radius-pill);
  background: rgba(10,10,12,0.72); border: 1px solid var(--hairline);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: var(--charcoal);
}
.consult__stat b { color: var(--ink); font-weight: 700; }
.consult__pin {
  position: absolute; width: 16px; height: 16px; margin: -8px 0 0 -8px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.65);
  z-index: 4; cursor: pointer; padding: 0;
  transition: transform 140ms ease;
}
.consult__pin:hover, .consult__pin:focus-visible { transform: scale(1.35); }
.consult__pin--support { background: #3fae7a; box-shadow: 0 0 0 5px rgba(63,174,122,0.25); }
.consult__pin--concern { background: var(--emphasis-red-bright); box-shadow: 0 0 0 5px rgba(255,59,59,0.22); }
.consult__pin--idea    { background: var(--brand-blue); box-shadow: 0 0 0 5px rgba(59,158,255,0.25); }
.consult__tip {
  position: absolute; z-index: 6; max-width: 280px; padding: 10px 14px;
  background: rgba(8,8,10,0.94); border: 1px solid var(--hairline-strong);
  border-radius: 10px; font-size: 13px; line-height: 1.45; color: var(--body);
  pointer-events: none; opacity: 0; transition: opacity 140ms ease;
}
.consult__tip .tag { display: inline-block; margin-bottom: 4px; }
.consult__form {
  position: absolute; z-index: 7; width: 260px; display: none;
  background: var(--surface-card); border: 1px solid var(--hairline-strong);
  border-radius: 12px; padding: 14px; box-shadow: 0 18px 50px rgba(0,0,0,0.65);
  cursor: default;
}
.consult__form label { display: block; font-size: 12px; color: var(--charcoal); margin-bottom: 6px; }
.consult__form input {
  width: 100%; padding: 9px 11px; margin-bottom: 10px; font-size: 13px;
  background: var(--surface-elevated); border: 1px solid var(--hairline);
  border-radius: 8px; color: var(--ink);
}
.consult__form input:focus { outline: none; border-color: var(--brand-teal-light); }
.consult__row { display: flex; gap: 6px; }
.consult__stance {
  flex: 1; font-family: var(--font-techno); font-size: 10.5px; letter-spacing: 1px;
  text-transform: uppercase; padding: 8px 4px; border-radius: 8px;
  background: transparent; cursor: pointer; transition: background 140ms ease;
}
.consult__stance--support { border: 1px solid rgba(63,174,122,0.6); color: #58c98a; }
.consult__stance--support:hover { background: rgba(63,174,122,0.15); }
.consult__stance--concern { border: 1px solid var(--emphasis-red-border); color: var(--emphasis-red-bright); }
.consult__stance--concern:hover { background: rgba(216,31,42,0.15); }
.consult__stance--idea { border: 1px solid rgba(59,158,255,0.55); color: var(--brand-blue); }
.consult__stance--idea:hover { background: rgba(59,158,255,0.15); }

/* ------------------------------------------------------------------ */
/* Layered parallax hero graphic                                      */
/* ------------------------------------------------------------------ */
.depth-scene { perspective: 1400px; }
.depth {
  position: relative; transform-style: preserve-3d;
  transition: transform 400ms ease;
}
.depth-scene:hover .depth,
.depth-scene:focus-within .depth { transform: rotateX(8deg) rotateY(-8deg); }
.depth__layer { transition: transform 400ms ease; }
.depth__layer--back  { transform: translateZ(-40px) scale(1.02); }
.depth__layer--mid   { transform: translateZ(30px); }
.depth__layer--front { transform: translateZ(80px); }
.depth-scene:hover .depth__layer--back  { transform: translateZ(-60px) scale(1.04) translateX(-10px); }
.depth-scene:hover .depth__layer--mid   { transform: translateZ(50px) translateX(6px); }
.depth-scene:hover .depth__layer--front { transform: translateZ(120px) translateY(-8px); }
@media (prefers-reduced-motion: reduce) {
  .depth-scene:hover .depth,
  .depth-scene:hover .depth__layer--back,
  .depth-scene:hover .depth__layer--mid,
  .depth-scene:hover .depth__layer--front { transform: none; }
}

/* ------------------------------------------------------------------ */
/* Gallery — zoom on hover + fading caption                           */
/* ------------------------------------------------------------------ */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius-card);
  border: 1px solid var(--hairline); background: var(--surface-deep);
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.media:hover img, .media:focus-within img { transform: scale(1.07); }
.media__cap {
  position: absolute; inset: auto 0 0 0; padding: var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity 260ms ease, transform 260ms ease;
}
.media:hover .media__cap, .media:focus-within .media__cap { opacity: 1; transform: translateY(0); }
.media__cap-static { position: absolute; inset: auto 0 0 0; padding: var(--space-4) var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }

/* Filmstrip — CSS scroll-snap, no JS */
.filmstrip {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78%, 420px);
  gap: var(--space-4); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: var(--space-3); scrollbar-width: thin;
  scrollbar-color: var(--hairline-strong) transparent;
}
.filmstrip::-webkit-scrollbar { height: 8px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: var(--radius-pill); }
.filmstrip > * { scroll-snap-align: start; }
.filmstrip .media { aspect-ratio: 16/10; }

/* Bento / masonry gallery */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: var(--space-4); }
.bento .media { height: 100%; }
.bento__wide { grid-column: span 2; }
.bento__tall { grid-row: span 2; }
.bento__big  { grid-column: span 2; grid-row: span 2; }

/* ------------------------------------------------------------------ */
/* YouTube facade (poster + play, no iframe, no JS)                   */
/* ------------------------------------------------------------------ */
.yt-facade {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-card); border: 1px solid var(--hairline);
  background: #000; aspect-ratio: 16/9;
  padding: 0; width: 100%; cursor: pointer; text-align: inherit;  /* button reset */
}
.arki-video {
  display: block; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-card); border: 1px solid var(--hairline);
  background: #000;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease; opacity: 0.9; }
.yt-facade:hover img, .yt-facade:focus-visible img { transform: scale(1.05); opacity: 1; }
.yt-play {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px;
  display: grid; place-items: center; border-radius: var(--radius-pill);
  background: rgba(216,31,42,0.92); border: 1px solid rgba(255,255,255,0.25);
  transition: transform 160ms ease, background-color 160ms ease;
}
.yt-facade:hover .yt-play, .yt-facade:focus-visible .yt-play { transform: scale(1.08); background: var(--emphasis-red-bright); }
.yt-play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.yt-facade__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex; align-items: center; gap: var(--space-3);
}
.yt-facade__cap .tag { color: #fff; }

/* ------------------------------------------------------------------ */
/* Arki Engine — flagship + 3D coverflow gallery (CSS scroll-driven)  */
/* ------------------------------------------------------------------ */
.arki { position: relative; }
.arki__head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.arki__badge { display: inline-flex; align-items: center; gap: var(--space-3); padding: 10px 16px; border-radius: var(--radius-pill); border: 1px solid var(--hairline-strong); background: var(--surface-card); align-self: flex-start; }
.arki__badge img { width: 34px; height: 34px; object-fit: contain; }
.arki__badge span { font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); }
.text-red { color: var(--emphasis-red-bright); }

.coverflow-wrap { position: relative; }
.coverflow {
  position: relative; height: clamp(340px, 32vw, 460px);
  perspective: 1500px; perspective-origin: 50% 50%;
  overflow: hidden; cursor: grab; touch-action: pan-y;
}
.coverflow.is-dragging { cursor: grabbing; }
.coverflow:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 6px; border-radius: var(--radius-card); }
.coverflow__stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.cf-card {
  position: absolute; top: 50%; left: 50%; margin: 0;
  width: clamp(280px, 36vw, 500px); aspect-ratio: 16/10;
  border-radius: var(--radius-panel); overflow: hidden;
  border: 1px solid var(--hairline-strong); background: var(--surface-deep);
  transform-style: preserve-3d; backface-visibility: hidden; will-change: transform;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  transition: transform 560ms cubic-bezier(.22,.61,.36,1),
              opacity 560ms ease, filter 560ms ease;
}
.cf-card.is-active { box-shadow: 0 40px 90px rgba(0,0,0,0.7), 0 0 0 1px var(--brand-glow); }
.cf-card:not(.is-active) { cursor: pointer; }
.cf-card img { width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; }

/* Prev / next controls */
.cf-nav {
  position: absolute; top: clamp(170px, 16vw, 230px); transform: translateY(-50%);
  z-index: 20; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--radius-pill);
  background: rgba(10,10,12,0.72); border: 1px solid var(--hairline-strong);
  color: var(--ink); backdrop-filter: blur(8px); cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.cf-nav:hover { background: var(--surface-card); border-color: var(--brand-teal-light); }
.cf-nav:active { transform: translateY(-50%) scale(0.94); }
.cf-nav svg { width: 20px; height: 20px; }
.cf-nav--prev { left: 0; }
.cf-nav--next { right: 0; }
@media (max-width: 640px) { .cf-nav { display: none; } }
.cf-card__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.92) 10%, rgba(0,0,0,0.35) 60%, transparent); }
.cf-card__cap h4 { font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: -0.5px; }
.cf-card__cap p { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 0; }
.coverflow-hint { font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ash); text-align: center; }
.coverflow-hint::before { content: "\2039  "; } .coverflow-hint::after { content: "  \203A"; }

/* No-JS fallback: a plain scrolling row rather than a stack of absolute cards */
.coverflow:not([data-cf-ready]) {
  height: auto; display: flex; gap: var(--space-6); overflow-x: auto;
  padding-bottom: var(--space-4); perspective: none; scrollbar-width: none;
}
.coverflow:not([data-cf-ready])::-webkit-scrollbar { display: none; }
.coverflow:not([data-cf-ready]) .coverflow__stage { position: static; display: flex; gap: var(--space-6); }
.coverflow:not([data-cf-ready]) .cf-card { position: relative; top: auto; left: auto; flex: 0 0 auto; }
.coverflow:not([data-cf-ready]) ~ .cf-nav { display: none; }

@media (prefers-reduced-motion: reduce) {
  .cf-card { transition: none; }
}

/* ------------------------------------------------------------------ */
/* Stats                                                              */
/* ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.stat { border-left: 1px solid var(--hairline-strong); padding-left: var(--space-5); }
.stat__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; letter-spacing: -1.5px;
}
.stat__num .unit { color: var(--brand-teal-light); }
.stat__label { color: var(--mute); font-size: 14px; margin-top: var(--space-3); }

/* ------------------------------------------------------------------ */
/* Process timeline (4 steps)                                         */
/* ------------------------------------------------------------------ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); position: relative; }
.process::before {
  content: ""; position: absolute; top: 21px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong) 12%, var(--hairline-strong) 88%, transparent);
}
.step { position: relative; }
.step__dot {
  width: 44px; height: 44px; border-radius: var(--radius-pill);
  background: var(--surface-elevated); border: 1px solid var(--hairline-strong);
  display: grid; place-items: center; font-family: var(--font-techno); font-weight: 700;
  color: var(--brand-teal-light); position: relative; z-index: 1; margin-bottom: var(--space-5);
}
.step:hover .step__dot { border-color: var(--brand-teal-light); box-shadow: 0 0 26px var(--brand-glow); }
.step__k { font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px; color: var(--ash); text-transform: uppercase; }
.step h3 { font-size: 20px; margin: var(--space-2) 0 var(--space-3); font-family: var(--font-display); }
.step p { color: var(--charcoal); font-size: 15px; }

/* ------------------------------------------------------------------ */
/* Team / leadership                                                  */
/* ------------------------------------------------------------------ */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.member {
  display: grid; grid-template-columns: 200px 1fr; gap: var(--space-5); align-items: start;
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--radius-card); padding: var(--space-5);
  transition: border-color 200ms ease;
}
.member:hover, .member:focus-within { border-color: var(--hairline-strong); }
.member__photo {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block;
  border-radius: var(--radius-card); border: 1px solid var(--hairline-strong);
  filter: grayscale(1) contrast(1.04); transition: filter 260ms ease;
}
.member:hover .member__photo, .member:focus-within .member__photo { filter: none; }
.member__name { font-family: var(--font-display); font-weight: 500; font-size: 26px; letter-spacing: -0.6px; }
.member__role {
  font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand-teal-light); margin-top: var(--space-2);
}
.member__bio { color: var(--charcoal); font-size: 15px; margin-top: var(--space-4); }
.member__bio + .member__bio { margin-top: var(--space-3); }
@media (prefers-reduced-motion: reduce) { .member__photo { transition: none; } }

/* ------------------------------------------------------------------ */
/* Trusted-by strip                                                   */
/* ------------------------------------------------------------------ */
.trusted { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-7) var(--space-8); }
.trusted__logo {
  font-family: var(--font-techno); font-weight: 700; font-size: 18px; letter-spacing: 1px;
  color: var(--stone); transition: color 160ms ease;
}
.trusted__logo:hover { color: var(--charcoal); }

/* ------------------------------------------------------------------ */
/* Comparison table                                                   */
/* ------------------------------------------------------------------ */
.compare { width: 100%; border-collapse: collapse; border: 1px solid var(--hairline); border-radius: var(--radius-card); overflow: hidden; }
.compare th, .compare td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid var(--hairline); font-size: 15px; }
.compare thead th { font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal); background: var(--surface-card); }
.compare thead th.is-us { color: var(--ink); background: rgba(47,138,169,0.10); }
.compare td.is-us { color: var(--ink); background: rgba(47,138,169,0.05); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .yes { color: #11ff99; }
.compare .no { color: var(--stone); }
.compare td:first-child, .compare th:first-child { color: var(--mute); font-weight: 500; }

/* ------------------------------------------------------------------ */
/* FAQ accordion (details/summary)                                    */
/* ------------------------------------------------------------------ */
.faq { border: 1px solid var(--hairline); border-radius: var(--radius-card); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--space-5) var(--space-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-family: var(--font-display); font-size: 19px; color: var(--ink);
  transition: background-color 140ms ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--surface-card); }
.faq summary .plus { flex: 0 0 auto; width: 20px; height: 20px; position: relative; transition: transform 220ms ease; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--brand-teal-light); }
.faq summary .plus::before { top: 9px; left: 0; right: 0; height: 2px; }
.faq summary .plus::after { left: 9px; top: 0; bottom: 0; width: 2px; transition: transform 220ms ease; }
.faq details[open] summary .plus::after { transform: scaleY(0); }
.faq details[open] summary { color: var(--brand-teal-light); }
.faq .faq__body { padding: 0 var(--space-6) var(--space-5); color: var(--body); max-width: 68ch; }

/* ------------------------------------------------------------------ */
/* Pricing tiers                                                      */
/* ------------------------------------------------------------------ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.tier { background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--radius-panel); padding: var(--space-6); display: flex; flex-direction: column; }
.tier--featured { background: var(--surface-elevated); border-color: var(--hairline-strong); position: relative; }
.tier--featured::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-panel); padding: 1px;
  background: linear-gradient(160deg, var(--brand-teal-light), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.tier__name { font-family: var(--font-techno); letter-spacing: 1px; text-transform: uppercase; font-size: 13px; color: var(--charcoal); }
.tier__price { font-family: var(--font-display); font-size: 40px; line-height: 1; margin: var(--space-4) 0 var(--space-2); letter-spacing: -1px; }
.tier__price small { font-family: var(--font-sans); font-size: 14px; color: var(--mute); letter-spacing: 0; }
.tier ul { margin: var(--space-5) 0; display: grid; gap: var(--space-3); }
.tier li { display: flex; gap: var(--space-3); font-size: 15px; color: var(--body); }
.tier li svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--brand-teal-light); margin-top: 2px; }
.tier .btn { margin-top: auto; }

/* ------------------------------------------------------------------ */
/* Testimonials                                                       */
/* ------------------------------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.quote { background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--radius-card); padding: var(--space-6); }
.quote p { font-family: var(--font-display); font-size: 19px; line-height: 1.4; color: var(--ink); }
.quote__by { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-5); }
.avatar { width: 40px; height: 40px; border-radius: var(--radius-pill); background: var(--brand-gradient); display: grid; place-items: center; font-family: var(--font-techno); font-weight: 700; font-size: 14px; color: var(--ink); flex: 0 0 auto; }
.quote__meta { font-size: 13px; }
.quote__meta strong { display: block; color: var(--ink); font-weight: 600; }
.quote__meta span { color: var(--ash); }

/* ------------------------------------------------------------------ */
/* Feature grid / generic tiles                                       */
/* ------------------------------------------------------------------ */
.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature__icon { width: 46px; height: 46px; border-radius: 10px; background: var(--surface-elevated); border: 1px solid var(--hairline-strong); display: grid; place-items: center; margin-bottom: var(--space-5); color: var(--brand-teal-light); }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: var(--space-3); }
.feature p { color: var(--charcoal); font-size: 15px; }

/* Split hero */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-8); align-items: center; }

/* Page header (interior pages) */
.page-head { padding-block: var(--space-band) var(--space-section); }
.page-head .display { max-width: 16ch; }

/* CTA band */
.cta-band { border: 1px solid var(--hairline-strong); border-radius: var(--radius-panel);
  background: radial-gradient(120% 160% at 50% 0%, rgba(47,138,169,0.16), transparent 60%), var(--surface-card);
  padding: var(--space-8); text-align: center; }

/* ------------------------------------------------------------------ */
/* Forms                                                              */
/* ------------------------------------------------------------------ */
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.field label .req { color: var(--emphasis-red-bright); }
.field input, .field select, .field textarea {
  background: var(--surface-card); border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-btn); padding: 12px 14px; color: var(--ink);
  font-size: 15px; transition: border-color 120ms ease, background-color 120ms ease;
  min-height: 44px; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--stone); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--surface-elevated); }
.field .hint { font-size: 12px; color: var(--ash); }
.form-status {
  font-size: 14px; line-height: 1.5; padding: 12px 16px;
  border-radius: var(--radius-card); border: 1px solid var(--hairline-strong);
}
.form-status.is-ok  { color: var(--ink); border-color: rgba(47,138,169,0.55); background: rgba(47,138,169,0.12); }
.form-status.is-err { color: var(--ink); border-color: var(--emphasis-red-border); background: rgba(216,31,42,0.12); }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.footer { border-top: 1px solid var(--hairline); padding-block: var(--space-8) var(--space-6); margin-top: var(--space-band); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--space-7); }
.footer__brand p { color: var(--mute); font-size: 14px; margin-top: var(--space-4); max-width: 34ch; }
.footer h4 { font-family: var(--font-techno); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ash); margin-bottom: var(--space-4); }
.footer ul { display: grid; gap: var(--space-3); }
.footer a { color: var(--charcoal); font-size: 14px; }
.footer a:hover { color: var(--ink); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid var(--divider-soft); }
.footer__bottom p { color: var(--ash); font-size: 13px; }
.social { display: flex; gap: var(--space-3); }
.social a { width: 36px; height: 36px; border-radius: var(--radius-pill); border: 1px solid var(--hairline-strong); display: grid; place-items: center; color: var(--charcoal); }
.social a:hover { color: var(--ink); border-color: var(--ink); }
.social svg { width: 17px; height: 17px; }

/* ------------------------------------------------------------------ */
/* Utilities                                                          */
/* ------------------------------------------------------------------ */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.max-60 { max-width: 60ch; }
.max-70 { max-width: 70ch; }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mt-8 { margin-top: var(--space-8); }
.flex { display: flex; }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.wrap-btns { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.items-center { align-items: center; }
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ------------------------------------------------------------------ */
/* Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 960px) {
  :root { --space-section: 72px; --space-band: 88px; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-4); }
  .process { grid-template-columns: repeat(2, 1fr); gap: var(--space-7) var(--space-5); }
  .process::before { display: none; }
  .grid--3, .grid--4, .tiers, .quotes { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento__big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .grid--2, .grid--3, .grid--4, .tiers, .quotes { grid-template-columns: 1fr; }
  .member { grid-template-columns: 1fr; }
  .member__photo { max-width: 220px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .compare { display: block; overflow-x: auto; white-space: nowrap; }
  .bento { grid-template-columns: 1fr; }
  .bento__wide, .bento__tall, .bento__big { grid-column: auto; grid-row: auto; }
}
