/* ==========================================================================
   BABBAS :: KINETIC
   Typography as the only imagery. One variable family (Archivo), flexed hard.
   Flat fields. Hard edges. No gradients.
   ========================================================================== */

/* ---------- Tokens ---------- */

:root {
  /* palette */
  --black: #0A0A0A;
  --acid: #D9FF3D;
  --violet: #7C3AED;
  --white: #FFFFFF;
  --tang: #FF5C00;

  /* type axes presets */
  --fvs-display: 'wght' 880, 'wdth' 120;
  /* hero only: resting weight leaves headroom so pointer proximity can
     BULGE letters toward the 900/125 maximum instead of denting them */
  --fvs-hero: 'wght' 800, 'wdth' 110;
  --fvs-display-max: 'wght' 900, 'wdth' 125;
  --fvs-body: 'wght' 380, 'wdth' 88;
  --fvs-thin: 'wght' 260, 'wdth' 68;
  --fvs-note: 'wght' 560, 'wdth' 76;

  /* spacing / rhythm */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --sect-pad: clamp(5rem, 14vh, 10rem);
  --baseline: 1.5rem;

  /* easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.83, 0, 0.17, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* z layers */
  --z-head: 100;
  --z-grid: 999;
}

/* theme flips: the body owns the field, sections stay transparent */
body[data-theme="black"]  { --bg: var(--black);  --ink: var(--white);  --accent: var(--acid);   --accent-2: var(--violet); }
body[data-theme="acid"]   { --bg: var(--acid);   --ink: var(--black);  --accent: var(--violet); --accent-2: var(--black); }
body[data-theme="violet"] { --bg: var(--violet); --ink: var(--white);  --accent: var(--acid);   --accent-2: var(--black); }
body[data-theme="white"]  { --bg: var(--white);  --ink: var(--black);  --accent: var(--violet); --accent-2: var(--tang); }

/* ---------- Reset-ish ---------- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  overflow-x: clip;
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--ink);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-variation-settings: var(--fvs-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: background-color 0.55s var(--ease-out-expo), color 0.55s var(--ease-out-expo);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

ul { list-style: none; }

::selection { background: var(--tang); color: var(--black); }

:focus-visible {
  /* theme-aware: tangerine failed 3:1 on the violet and acid fields.
     --ink always opposes the current field by construction. */
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

section[id] { scroll-margin-top: 4.5rem; }

/* theme-flip color follow-through for bordered / painted pieces */
.site-head,
.belt,
.stack__row,
.qa,
.poster,
.pricing__terms li,
.site-foot,
.site-foot__grid {
  transition: color 0.45s var(--ease-out-expo),
              background-color 0.45s var(--ease-out-expo),
              border-color 0.45s var(--ease-out-expo);
}

/* ---------- Utilities ---------- */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: calc(var(--z-grid) + 1);
  padding: 0.6rem 1rem;
  background: var(--tang);
  color: var(--black);
  font-variation-settings: var(--fvs-note);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-decoration: none;
  transform: translateY(-300%);
}
.skip-link:focus-visible { transform: none; }

.mono-note {
  font-variation-settings: var(--fvs-note);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  line-height: 1.4;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
  padding: 0.45em 0.9em;
  border: 1px solid var(--ink);
}
.section-tag::before {
  content: "";
  width: 0.55em; height: 0.55em;
  background: var(--accent);
  flex: none;
}

/* ---------- Split-type reveal (armed by JS) ---------- */

.kword { display: inline-block; white-space: nowrap; }
.kchar { display: inline-block; }

[data-split].reveal .kchar {
  opacity: 0;
  transform: translateY(0.45em);
}
[data-split].reveal.is-in .kchar {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  transition-delay: var(--d, 0ms);
}

/* ---------- Designer grid overlay (press G) ---------- */

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-grid);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out-expo), visibility 0s 0.25s;
  /* baseline rows */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--baseline) - 1px),
    rgba(255, 92, 0, 0.28) calc(var(--baseline) - 1px),
    rgba(255, 92, 0, 0.28) var(--baseline)
  );
}
.grid-overlay.is-on {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s var(--ease-out-expo);
}
.grid-overlay__columns {
  height: 100%;
  margin-inline: var(--gutter);
  background-image: repeating-linear-gradient(
    to right,
    rgba(124, 58, 237, 0.16) 0,
    rgba(124, 58, 237, 0.16) calc(100% / 12 - 1px),
    rgba(255, 92, 0, 0.55) calc(100% / 12 - 1px),
    rgba(255, 92, 0, 0.55) calc(100% / 12)
  );
}

/* ---------- Header ---------- */

.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-head);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem var(--gutter);
  color: var(--ink);
  /* opaque field so section rules never show through the fixed bar;
     the shared theme-flip transition group already covers .site-head */
  background-color: var(--bg);
}

.site-head__mark {
  font-variation-settings: 'wght' 900, 'wdth' 122;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.site-head__spark {
  color: var(--accent);
  display: inline-block;
  transform: translateY(0.06em);
}

.site-head__nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}
.site-head__nav a {
  font-variation-settings: var(--fvs-note);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
}
.site-head__nav a:hover { border-bottom-color: var(--accent); }

.site-head__cta {
  font-variation-settings: 'wght' 800, 'wdth' 100;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 0.55em 1em;
  border: 2px solid var(--ink);
  background: transparent;
  transition: background-color 0.18s var(--ease-snap), color 0.18s var(--ease-snap), border-color 0.45s var(--ease-out-expo);
}
.site-head__cta:hover {
  background: var(--ink);
  color: var(--bg);
}

@media (max-width: 720px) {
  .site-head__nav { display: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1em 1.6em;
  border: 2px solid var(--ink);
  font-variation-settings: 'wght' 800, 'wdth' 102;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.18s var(--ease-snap),
              color 0.18s var(--ease-snap),
              transform 0.18s var(--ease-snap),
              box-shadow 0.18s var(--ease-snap);
}
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
body[data-theme="acid"] .btn--primary,
body[data-theme="white"] .btn--primary { color: var(--white); }
.btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--accent-2);
}
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--accent);
}
.btn--big {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  padding: 1.2em 2em;
}

/* ---------- Decorative punctuation objects ---------- */

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  font-variation-settings: var(--fvs-display-max);
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

.deco--asterisk { font-size: clamp(10rem, 28vw, 26rem); }
.deco--hero {
  top: 4rem;
  right: -0.35em;
  animation: deco-spin 48s linear infinite;
}
.deco--faq {
  right: -0.3em;
  bottom: -0.25em;
  -webkit-text-stroke-color: var(--violet);
  opacity: 0.5;
  animation: deco-spin 60s linear infinite reverse;
}

.deco--paren {
  font-size: clamp(16rem, 52vh, 40rem);
  top: 50%;
  opacity: 0.4;
  -webkit-text-stroke-color: var(--accent-2);
}
.deco--paren-open  { left: calc(var(--gutter) * -0.5); animation: deco-sway 14s ease-in-out infinite alternate; }
.deco--paren-close { right: calc(var(--gutter) * -0.5); animation: deco-sway 14s ease-in-out infinite alternate-reverse; }

@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes deco-sway {
  from { transform: translateY(-54%) rotate(-8deg); }
  to   { transform: translateY(-46%) rotate(8deg); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--sect-pad) + 2rem) var(--gutter) var(--sect-pad);
}

.hero__kicker {
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  color: var(--accent);
}

.hero__title {
  font-size: clamp(2.7rem, 11vw, 10.2rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  font-variation-settings: var(--fvs-hero);
  max-width: 100%;
}
.hero__line { display: block; }
.hero__line .kchar { font-variation-settings: var(--fvs-hero); }
.hero__line--accent { color: var(--accent); }

.hero__sub {
  margin-top: clamp(1.5rem, 4vh, 2.75rem);
  max-width: 34rem;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: 0.045em;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.75rem, 4.5vh, 3rem);
}

.hero__scrollcue {
  position: absolute;
  bottom: 1.5rem;
  left: var(--gutter);
  opacity: 0.65;
}

/* ---------- Manifesto belts ---------- */

.manifesto {
  padding: var(--sect-pad) 0;
  overflow: clip;
}

.belt {
  overflow: clip;
  white-space: nowrap;
  border-top: 2px solid var(--ink);
  padding: 0.05em 0;
}
.belt:last-of-type { border-bottom: 2px solid var(--ink); }

.belt__track {
  display: inline-flex;
  align-items: baseline;
  will-change: transform;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1.15;
  text-transform: uppercase;
  font-variation-settings: var(--fvs-display-max);
  letter-spacing: -0.01em;
  animation: belt-slide 36s linear infinite;
}
.belt--js .belt__track { animation: none; }

.belt__chunk { flex: none; padding-right: 0.35em; }
.belt__sep {
  font-style: normal;
  color: var(--tang);
  padding-left: 0.35em;
}

.belt--outline .belt__track {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.belt--outline .belt__sep {
  color: transparent;
  -webkit-text-stroke: 2px var(--tang);
}
.belt--accent .belt__track { color: var(--accent); }
.belt--accent .belt__sep { color: var(--ink); -webkit-text-stroke: 0; }

@keyframes belt-slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Volume (the 30) ---------- */

.volume {
  padding: var(--sect-pad) var(--gutter);
}

.volume__number {
  font-size: clamp(10rem, 40vw, 36rem);
  line-height: 0.82;
  font-variation-settings: var(--fvs-display-max);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  margin-left: -0.04em;
}
.volume__digit {
  display: inline-block;
  min-width: 0.62em;
  transition: color 0.3s var(--ease-snap);
}
.volume__number.is-rolling .volume__digit { color: var(--accent); }
.volume__number.is-settled .volume__digit { color: var(--ink); }

.volume__caption {
  margin-top: clamp(1rem, 3vh, 2rem);
  max-width: 42rem;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* what-you-get stack */
.stack {
  margin-top: clamp(3.5rem, 9vh, 6.5rem);
}
.stack__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 2rem;
  align-items: end;
  padding: clamp(1.1rem, 2.5vh, 1.75rem) 0;
  border-top: 2px solid var(--ink);
}
.stack__row:last-child { border-bottom: 2px solid var(--ink); }

@media (min-width: 900px) {
  .stack__row { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
  .stack__note { text-align: right; justify-self: end; }
}

.stack__big {
  font-size: clamp(1.7rem, 5.2vw, 4.3rem);
  line-height: 1;
  text-transform: uppercase;
  font-variation-settings: 'wght' 900, 'wdth' 115;
  letter-spacing: -0.01em;
}

.stack__note {
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 34rem;
}

/* outline-to-fill wipe (armed by JS) */
.wipe { position: relative; }
.wipe--armed {
  --fill: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.wipe__fill {
  position: absolute;
  inset: 0;
  color: var(--ink);
  -webkit-text-stroke: 0;
  clip-path: inset(-0.15em calc((1 - var(--fill)) * 100%) -0.15em 0);
  pointer-events: none;
}

/* ---------- Process posters ---------- */

.process {
  position: relative;
  overflow: clip;
  padding: var(--sect-pad) var(--gutter);
}

.poster {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(24rem, 78vh, 46rem);
  padding: clamp(2rem, 6vh, 4rem) 0;
}
.poster + .poster { border-top: 2px solid var(--ink); }

.poster:nth-of-type(2) { align-items: flex-end; text-align: right; }

.poster__num {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(11rem, 34vw, 30rem);
  line-height: 1;
  font-variation-settings: var(--fvs-display-max);
  font-variant-numeric: tabular-nums;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
  right: -0.06em;
}
.poster:nth-of-type(2) .poster__num { right: auto; left: -0.06em; }

.poster__title {
  position: relative;
  font-size: clamp(2.5rem, 8.5vw, 7.5rem);
  line-height: 0.96;
  text-transform: uppercase;
  font-variation-settings: var(--fvs-display);
  letter-spacing: -0.015em;
}

.poster__body {
  position: relative;
  margin-top: clamp(1.25rem, 3vh, 2rem);
  max-width: 38rem;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ---------- Work / billboards ---------- */

.work {
  position: relative;
  overflow: clip;
  padding: var(--sect-pad) var(--gutter);
}

.work__title {
  font-size: clamp(2.6rem, 9vw, 8.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-variation-settings: var(--fvs-display);
  letter-spacing: -0.015em;
}

.work__disclaimer {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.045em;
  line-height: 1.55;
}

.billboards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(3rem, 8vh, 6rem);
  perspective: 1400px;
}

@media (max-width: 780px) {
  .billboards { grid-template-columns: 1fr; }
}

.billboard {
  max-width: 26rem;
  justify-self: center;
  width: 100%;
}

.billboard__frame {
  display: block;
  border: 3px solid var(--ink);
  background: var(--black);
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-out-expo), box-shadow 0.7s var(--ease-out-expo);
}
.billboard--left  .billboard__frame { transform: rotateY(16deg) rotateX(2deg); box-shadow: 22px 18px 0 rgba(10, 10, 10, 0.5); }
.billboard--right .billboard__frame { transform: rotateY(-16deg) rotateX(2deg); box-shadow: -22px 18px 0 rgba(10, 10, 10, 0.5); }

.billboard__frame:hover,
.billboard__frame:focus-visible {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 14px 0 rgba(10, 10, 10, 0.5);
}

.billboard__label {
  margin-top: 1rem;
  opacity: 0.85;
}

@media (max-width: 780px) {
  .billboard--left .billboard__frame,
  .billboard--right .billboard__frame { transform: rotateY(0) rotateX(0); box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.5); }
}

/* ---------- Pricing ---------- */

.pricing {
  padding: var(--sect-pad) var(--gutter);
}

.pricing__anchor {
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  letter-spacing: 0.04em;
  max-width: 40rem;
}
.pricing__struck {
  font-variation-settings: 'wght' 800, 'wdth' 110;
  text-decoration: line-through;
  text-decoration-color: var(--tang);
  text-decoration-thickness: 0.12em;
}

.pricing__figure {
  display: flex;
  align-items: flex-end;
  margin-top: clamp(1.5rem, 4vh, 3rem);
  line-height: 0.85;
  font-variation-settings: var(--fvs-display-max);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.pricing__currency {
  font-size: clamp(3.2rem, 11vw, 9.5rem);
  color: var(--accent);
  margin-right: 0.06em;
  align-self: flex-start;
  padding-top: 0.08em;
}

.pricing__digits {
  font-size: clamp(6.5rem, 26vw, 22rem);
  display: inline-flex;
}

/* rolling digit reels (built by JS) */
.reel {
  display: inline-block;
  height: 0.85em;
  overflow: clip;
}
.reel__strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 1.6s var(--ease-snap);
}
.reel__cell {
  height: 0.85em;
  line-height: 0.85;
  display: block;
  text-align: center;
}

.pricing__per {
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  font-variation-settings: var(--fvs-note);
  letter-spacing: 0.14em;
  margin-left: 0.5em;
  padding-bottom: 0.35em;
  color: var(--accent);
}

.pricing__note {
  margin-top: clamp(1.75rem, 4.5vh, 3rem);
  max-width: 38rem;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.pricing__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
}
.pricing__terms li {
  border: 1px solid var(--ink);
  padding: 0.7em 1.1em;
  font-variation-settings: var(--fvs-note);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.pricing .btn--big { margin-top: clamp(2.25rem, 5vh, 3.5rem); }

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

.faq {
  position: relative;
  overflow: clip;
  padding: var(--sect-pad) var(--gutter);
}

.faq__title {
  font-size: clamp(2.6rem, 9vw, 8.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-variation-settings: var(--fvs-display);
  letter-spacing: -0.015em;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

.faq__list {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}

.qa { border-top: 3px solid var(--ink); }
.qa:last-child { border-bottom: 3px solid var(--ink); }

.qa__q {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(1.1rem, 2.6vh, 1.6rem) 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.15rem, 3.2vw, 2.3rem);
  line-height: 1.1;
  text-transform: uppercase;
  font-variation-settings: 'wght' 820, 'wdth' 108;
  letter-spacing: -0.005em;
  transition: color 0.18s var(--ease-snap);
}
.qa__q::-webkit-details-marker { display: none; }
.qa__q::marker { content: ""; }
.qa__q:hover { color: var(--accent); }

.qa__index {
  flex: none;
  color: var(--accent);
  transform: translateY(-0.35em);
}

.qa__mark {
  margin-left: auto;
  flex: none;
  font-variation-settings: 'wght' 300, 'wdth' 100;
  font-size: 1.2em;
  line-height: 0.8;
  transition: transform 0.3s var(--ease-back);
}
.qa[open] .qa__mark { transform: rotate(45deg); }

.qa__a {
  max-width: 44rem;
  padding: 0 0 clamp(1.4rem, 3vh, 2rem) 0;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .qa__a { padding-left: 3.6rem; }
}

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

.slab {
  min-height: 90vh;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sect-pad) var(--gutter);
  overflow: clip;
}

.slab__pre { margin-bottom: clamp(1.5rem, 4vh, 2.5rem); }

.slab__link {
  display: block;
  text-decoration: none;
  line-height: 0.9;
}

.slab__word {
  display: block;
  font-size: clamp(4.2rem, 19vw, 17rem);
  text-transform: uppercase;
  font-variation-settings: var(--fvs-display-max);
  letter-spacing: -0.025em;
  transition: color 0.25s var(--ease-snap), -webkit-text-stroke-color 0.25s var(--ease-snap);
}
.slab__word--outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}
.slab__link:hover .slab__word:not(.slab__word--outline),
.slab__link:focus-visible .slab__word:not(.slab__word--outline) {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}
.slab__link:hover .slab__word--outline,
.slab__link:focus-visible .slab__word--outline {
  color: var(--ink);
  -webkit-text-stroke: 0;
}

.slab__arrow {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-variation-settings: 'wght' 700, 'wdth' 100;
  color: var(--accent);
  transition: transform 0.3s var(--ease-back);
}
.slab__link:hover .slab__arrow,
.slab__link:focus-visible .slab__arrow { transform: translate(0.15em, -0.15em); }

.slab__post {
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
  max-width: 30rem;
  font-variation-settings: var(--fvs-thin);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.045em;
  line-height: 1.55;
}

/* ---------- Footer ---------- */

.site-foot {
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter) clamp(1.75rem, 4vh, 2.5rem);
  border-top: 2px solid var(--ink);
}

.site-foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.site-foot__row--credit {
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
  align-items: center;
}

.site-foot__mark {
  font-variation-settings: 'wght' 900, 'wdth' 122;
  font-size: 1.4rem;
}

.site-foot__nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-foot__nav a {
  font-variation-settings: var(--fvs-note);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  /* comfortable touch target; the hover rule still sits on the border */
  display: inline-block;
  padding: 0.55em 0 0.2em;
  margin-top: -0.55em;
}
.site-foot__nav a:hover { border-bottom-color: var(--accent); }

.site-foot__credit {
  font-variation-settings: var(--fvs-thin);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.site-foot__credit a { text-decoration-color: var(--accent); }

.site-foot__grid {
  font-family: inherit;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.55em 1em;
  cursor: pointer;
  opacity: 0.7;
}
.site-foot__grid:hover,
.site-foot__grid[aria-pressed="true"] { opacity: 1; border-color: var(--tang); color: var(--tang); }

/* ---------- Small screens ---------- */

@media (max-width: 480px) {
  .deco--paren { display: none; }
  .hero__title { font-size: clamp(2.4rem, 13.5vw, 4rem); }
  .pricing__digits { font-size: clamp(5rem, 30vw, 8rem); }
  .qa__index { display: none; }
}

/* ---------- Reduced motion: complete, readable, still ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }

  .belt__track { animation: none !important; transform: none !important; }

  .deco--hero, .deco--faq, .deco--paren-open, .deco--paren-close { animation: none !important; }
  .deco--paren-open  { transform: translateY(-50%); }
  .deco--paren-close { transform: translateY(-50%); }

  /* split type always visible */
  [data-split].reveal .kchar { opacity: 1 !important; transform: none !important; }

  /* wipes render fully filled */
  .wipe--armed { color: var(--ink); -webkit-text-stroke: 0; }
  .wipe__fill { display: none; }

  /* billboards sit flat */
  .billboard--left .billboard__frame,
  .billboard--right .billboard__frame {
    transform: none;
    box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.5);
  }

  .reel__strip { transition: none; }
}
