/* ============================================================
   H.T.Z STUDIOS · Landing page — design language v3: "precision"

   Derived from the studio's reference set: one focal statement
   per screen, huge type against tiny mono HUD labels, hairlines
   instead of boxes, near-monochrome green with a single butter
   accent, full-bleed sheets, engineered calm.

   Loaded after styles/tokens.css. Interactions: scripts/site.js,
   particles: scripts/hero3d.js. All class names consumed by JS
   are unchanged.
   ============================================================ */

:root {
  --hl-dark:  rgba(251, 247, 238, .12);   /* hairline on dark  */
  --hl-dark2: rgba(251, 247, 238, .22);
  --hl-light: rgba(20, 20, 17, .1);       /* hairline on light */
  --hud-ink:  rgba(251, 247, 238, .45);
  --butter-2: #EFC76B;
  --font-serif-he: "Frank Ruhl Libre", "Instrument Serif", Georgia, "Heebo", serif;
  --font-display-he: "Suez One", "Frank Ruhl Libre", "Heebo", serif;
  --ease-precise: cubic-bezier(0.6, 0, 0.2, 1);
}

/* ============================================================
   0 · BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg-canvas);
  overflow-x: hidden;   /* Safari 15 fallback */
  overflow-x: clip;
}

img, svg, canvas { display: block; max-width: 100%; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

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

.skip-link {
  position: fixed;
  top: 12px; inset-inline-start: 12px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--green-800);
  color: var(--paper-50);
  border-radius: var(--r-pill);
  font-size: var(--fs-14);
  transform: translateY(-64px);
  transition: transform var(--motion-base) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }  /* Safari 15.0-15.3 */
.skip-link:focus-visible { transform: translateY(0); }

::selection { background: var(--green-600); color: var(--paper-50); }

@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: var(--green-300) transparent; }
}

/* ============================================================
   1 · CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--paper-50);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--paper-50);
  mix-blend-mode: difference;
  transition: scale .3s var(--ease-out), opacity .3s ease;
}
.cursor-live .cursor-dot, .cursor-live .cursor-ring { opacity: 1; }
.cursor-ring.is-link { scale: 1.55; }
.cursor-ring.is-down { scale: .8; }

@media (pointer: fine) {
  .cursor-live a, .cursor-live button,
  .cursor-live [data-tilt], .cursor-live [data-magnetic] { cursor: none; }
}

/* ============================================================
   2 · SCROLL PROGRESS
   ============================================================ */
.progress {
  position: fixed;
  top: 0; inset-inline: 0;
  height: 2px;
  z-index: 260;
}
.progress__bar {
  height: 100%;
  width: 0;
  margin-inline-start: 0;
  background: var(--accent-butter);
}

/* ============================================================
   3 · BUTTONS, LINKS, LABELS
   ============================================================ */
.btn__arrow {
  display: inline-block;
  transition: transform var(--motion-base) var(--ease-out);
}

/* THE primary button — butter, everywhere */
.btn-acc {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--accent-butter);
  color: var(--green-900);
  font-family: var(--font-sans);
  font-weight: 700;
  cursor: pointer;
  transition: transform .45s var(--ease-precise), background var(--motion-base) ease,
              box-shadow var(--motion-base) ease;
}
.btn-acc:hover {
  background: var(--butter-2);
  box-shadow: 0 10px 28px -10px rgba(230, 185, 88, .55);
}
.btn-acc:hover .btn__arrow { transform: translateX(-4px); }
.btn-acc--sm { padding: 9px 18px;  font-size: var(--fs-13); }
.btn-acc--lg { padding: 15px 30px; font-size: var(--fs-15); }

.btn-acc::before, .btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%),
              rgba(8, 23, 16, .14), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.btn-acc:hover::before, .btn-hero:hover::before { opacity: 1; }

/* hero variant — arrow chip */
.btn-hero {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px;
  padding-inline-start: 26px;
  border-radius: var(--r-pill);
  background: var(--accent-butter);
  color: var(--green-900);
  font-weight: 700;
  font-size: var(--fs-16);
  box-shadow: 0 10px 32px -10px rgba(230, 185, 88, .5);
  transition: transform .45s var(--ease-precise), box-shadow var(--motion-base) ease,
              background var(--motion-base) ease;
}
.btn-hero:hover {
  background: var(--butter-2);
  box-shadow: 0 16px 44px -12px rgba(230, 185, 88, .65);
}
.btn-hero__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--paper-50);
  font-size: var(--fs-16);
  transition: transform .4s var(--ease-precise);
}
.btn-hero:hover .btn-hero__icon { transform: rotate(-40deg); }

/* quiet secondary — underlined text */
.link-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 10px;
  color: rgba(251, 247, 238, .8);
  font-weight: 500;
  font-size: var(--fs-15);
}
.link-ghost::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: 4px;
  height: 1px;
  background: rgba(251, 247, 238, .3);
  transition: background var(--motion-base) ease;
}
.link-ghost:hover { color: var(--paper-50); }
.link-ghost:hover::after { background: var(--accent-butter); }
.link-ghost__arrow {
  font-size: var(--fs-13);
  transition: transform var(--motion-base) var(--ease-out);
}
.link-ghost:hover .link-ghost__arrow { transform: translateY(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-700);
  border-bottom: 1px solid var(--hl-light);
  padding-bottom: 3px;
  transition: gap var(--motion-base) var(--ease-out), border-color var(--motion-base);
}
.link-arrow:hover { gap: 14px; border-color: var(--green-600); }

[data-magnetic] { will-change: transform; }
.js [data-magnetic] { transition: transform .5s var(--ease-precise); }

/* tiny mono index — every chapter opens with one */
.sec-lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: var(--space-8);
}
.sec-lab::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: currentColor;
  opacity: .5;
  transform: scaleX(0);
  transform-origin: right center;   /* inline-start in this RTL layout */
  transition: transform .8s var(--ease-out) .2s;
}
.js [data-reveal].is-in .sec-lab::after,
.js [data-reveal].is-in.sec-lab::after,
html:not(.js) .sec-lab::after { transform: scaleX(1); }

/* ============================================================
   4 · NAV — quiet bar, hairline glass on scroll
   ============================================================ */
.nav {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 250;
  padding-block: 18px;
  transition: padding var(--motion-slow) ease, background var(--motion-slow) ease,
              border-color var(--motion-slow) ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding-block: 12px;
  background: rgba(8, 23, 16, .92);
  border-color: var(--hl-dark);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.is-scrolled {
    background: rgba(8, 23, 16, .55);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
  }
}

.nav__inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper-50);
  direction: ltr;               /* Latin lockup reads logo -> name */
}
.nav__mark {
  width: 34px; height: auto;
  background: var(--paper-50);
  border-radius: 9px;
  padding: 5px;
}
.nav__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 1;
  letter-spacing: .05em;
}
.nav__name small {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 8.5px;
  line-height: 1;
  letter-spacing: .42em;
  margin-inline-end: -.42em;    /* optically balance the tracking */
  color: rgba(251, 247, 238, .62);
}

.nav__links {
  display: flex;
  gap: clamp(18px, 2.8vw, 34px);
}
.nav__links a {
  font-size: var(--fs-13);
  font-weight: 500;
  color: rgba(251, 247, 238, .72);
  padding: 6px 2px;
  position: relative;
  transition: color var(--motion-base) ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: 0;
  height: 1px;
  background: var(--accent-butter);
  transform: scaleX(0);
  transition: transform var(--motion-base) var(--ease-out);
}
.nav__links a:hover { color: var(--paper-50); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: var(--space-4); }

.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: rgba(251, 247, 238, .62);
}
.nav__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-butter);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230, 185, 88, .4); }
  70%  { box-shadow: 0 0 0 9px rgba(230, 185, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 185, 88, 0); }
}

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(251, 247, 238, .3);
  border-radius: 50%;
  background: rgba(8, 23, 16, .4);
  position: relative;
}
.nav__burger > span[aria-hidden] {
  position: absolute;
  inset-inline: 12px; top: 50%;
  height: 1.5px;
  background: var(--paper-50);
  box-shadow: 0 -5px 0 var(--paper-50), 0 5px 0 var(--paper-50);
  transition: box-shadow var(--motion-fast) ease, transform var(--motion-fast) ease;
}
.nav.is-open .nav__burger > span[aria-hidden] {
  box-shadow: none;
  transform: rotate(45deg);
}

.nav__sheet {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  inset-inline: clamp(16px, 4vw, 32px);
  background: var(--green-900);
  border: 1px solid var(--hl-dark);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-4);
  max-height: calc(100vh - 96px);
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
}
.nav__sheet a {
  padding: 12px 14px;
  border-radius: var(--r-md);
  color: rgba(251, 247, 238, .85);
  font-size: var(--fs-16);
  font-weight: 500;
}
.nav__sheet a:hover { background: rgba(251, 247, 238, .07); color: var(--paper-50); }
.nav__sheet .nav__status { padding: 12px 14px 4px; }

/* the nav sits on dark surfaces in every state */
.nav :focus-visible { outline-color: rgba(250, 250, 248, .8); }

/* ============================================================
   5 · HERO — centered mark, HUD frame
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(100% 75% at 50% 0%, var(--green-800) 0%, var(--green-900) 62%, #050f0a 100%);
  color: var(--paper-50);
  overflow: hidden;
  overflow: clip;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.hero__canvas.is-off { display: none; }

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(42% 34% at 50% 30%, rgba(78, 128, 104, .18) 0%, transparent 70%);
}

/* HUD — tiny mono labels pinned to the frame corners */
.hero__hud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hud {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--hud-ink);
  white-space: nowrap;
  direction: ltr;
}
.hud--tl { top: 84px;  left: clamp(20px, 4vw, 48px); }
.hud--tr { top: 84px;  right: clamp(20px, 4vw, 48px); }
.hud--bl { bottom: 24px; left: clamp(20px, 4vw, 48px); }
.hud--br { bottom: 24px; right: clamp(20px, 4vw, 48px); }
.hud-x {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(251, 247, 238, .22);
  transform: translate(var(--phx, 0px), var(--phy, 0px));
  transition: transform .7s var(--ease-out);
}
.hud-x--b {
  transform: translate(calc(var(--phx, 0px) * -1), calc(var(--phy, 0px) * -1));
}
.hud-x--a { top: 30%; left: 14%; }
.hud-x--b { top: 62%; right: 12%; }

.hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(300px, 47vh, 560px);   /* Safari 15 fallback */
  padding-top: clamp(300px, 47svh, 560px);
  transform: translateY(var(--hexit, 0px));
  opacity: var(--hop, 1);
  will-change: transform, opacity;
}

.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  direction: ltr;
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  font-weight: 500;
  letter-spacing: .38em;
  margin-inline-end: -.38em;
  color: rgba(251, 247, 238, .92);
  margin-bottom: var(--space-6);
}
.hero__brand-line {
  width: 30px;
  height: 1px;
  background: rgba(251, 247, 238, .28);
}

.hero__offer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-8);
  color: rgba(251, 247, 238, .85);
  font-size: var(--fs-14);
  transition: color var(--motion-base) ease;
}
.hero__offer-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(230, 185, 88, .55);
  border-radius: var(--r-pill);
  color: var(--accent-butter);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  white-space: nowrap;
  transition: background var(--motion-base) ease, color var(--motion-base) ease;
}
.hero__offer-text { font-weight: 500; }
.hero__offer-arrow {
  color: rgba(251, 247, 238, .4);
  transition: transform var(--motion-base) var(--ease-out), color var(--motion-base) ease;
}
.hero__offer:hover { color: var(--paper-50); }
.hero__offer:hover .hero__offer-tag { background: var(--accent-butter); color: var(--green-900); }
.hero__offer:hover .hero__offer-arrow { transform: translateX(-4px); color: var(--accent-butter); }

.hero__title {
  font-family: var(--font-display-he);
  font-weight: 400;
  font-size: clamp(38px, 6.2vw, 88px);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--paper-50);
  margin-bottom: var(--space-6);
}
.hero__title .line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-inline-start: .18em;
}
.hero__title .line:first-child { margin-inline-start: 0; }
.hero__title .line > span { display: inline-block; }
.hero__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-butter);
}

.hero__sub {
  max-width: 54ch;
  font-size: var(--fs-16);
  line-height: 1.7;
  color: rgba(251, 247, 238, .7);
  margin-bottom: var(--space-10, 40px);
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
}

/* Entrance choreography */
.js .hero__title .line > span {
  transform: translateY(112%);
  transition: transform 1s var(--ease-out);
}
.js .hero__title .line:nth-child(1) > span { transition-delay: .16s; }
.js .hero__title .line:nth-child(2) > span { transition-delay: .3s; }
.js .hero__title .line:nth-child(3) > span { transition-delay: .44s; }
.js .hero__brand, .js .hero__offer, .js .hero__sub, .js .hero__cta, .js .hero__foot {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s var(--ease-out);
}
.js .hero__brand { transition-delay: .05s; }
.js .hero__offer { transition-delay: .16s; }
.js .hero__sub   { transition-delay: .5s; }
.js .hero__cta   { transition-delay: .62s; }
.js .hero__foot  { transition-delay: .8s; }
.js.is-loaded .hero__brand, .js.is-loaded .hero__offer, .js.is-loaded .hero__sub,
.js.is-loaded .hero__cta, .js.is-loaded .hero__foot {
  opacity: 1; transform: none;
}
.js.is-loaded .hero__title .line > span { transform: none; }

.hero__foot {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  padding-top: clamp(28px, 4.5vh, 48px);
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: var(--space-6);
  align-items: end;
  border-top: 1px solid var(--hl-dark);
}
.hero__svc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-base) ease, transform var(--motion-base) var(--ease-out);
}
.hero__svc b { font-size: var(--fs-14); color: var(--paper-50); font-weight: 600; }
.hero__svc span { font-size: var(--fs-12); color: rgba(251, 247, 238, .55); }
.hero__svc:hover { border-color: var(--accent-butter); transform: translateY(-3px); }

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(251, 247, 238, .5);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(251, 247, 238, .16);
  overflow: hidden;
}
.hero__scroll-line > div {
  width: 100%; height: 40%;
  background: var(--accent-butter);
  animation: scrollhint 1.9s var(--ease-in-out) infinite;
}
@keyframes scrollhint {
  0%   { transform: translateY(-110%); }
  60%  { transform: translateY(260%); }
  100% { transform: translateY(260%); }
}

/* ============================================================
   6 · MARQUEE — one thin kinetic strip
   ============================================================ */
.marquee {
  background: var(--green-900);
  color: var(--paper-50);
  border-top: 1px solid var(--hl-dark);
  border-bottom: 1px solid var(--hl-dark);
  padding-block: clamp(18px, 3vh, 30px);
  overflow: hidden;
  overflow: clip;
}
.marquee__inner { direction: ltr; }
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 2.6vw, 40px);
  padding-inline-end: clamp(18px, 2.6vw, 40px);
  white-space: nowrap;
}
.marquee__group em {
  font-family: var(--font-display-he);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.2;
  color: var(--paper-50);
}
.marquee__group em:nth-child(4n + 3) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(251, 247, 238, .5);
}
.marquee__group span { color: var(--accent-butter); font-size: clamp(16px, 2vw, 28px); }

/* No-JS fallback: slow CSS drift */
.marquee__track { animation: drift 36s linear infinite; }
.js .marquee__track { animation: none; }
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================
   7 · MANIFESTO — the one warm, serif chapter
   ============================================================ */
.manifesto {
  background: var(--bg-paper);
  padding-block: clamp(110px, 16vh, 190px);
}
.manifesto .sec-lab { color: rgba(42, 38, 32, .7); }
.manifesto__quote {
  font-family: var(--font-serif-he);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--fg-on-paper);
  max-width: 26ch;
}
.manifesto__quote .w { opacity: .14; }

.manifesto__saves {
  margin-top: clamp(48px, 7vh, 88px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.save {
  padding-top: 18px;
  border-top: 1px solid rgba(42, 38, 32, .18);
  transition: border-color var(--motion-slow) ease;
}
.save:hover { border-color: var(--accent-terracotta); }
.save__word {
  font-family: var(--font-serif-he);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--fg-on-paper);
  margin-bottom: var(--space-3);
}
.save__word em {
  font-style: normal;
  color: var(--accent-terracotta);
}
.save__desc {
  font-size: var(--fs-14);
  line-height: 1.75;
  color: rgba(42, 38, 32, .75);
  max-width: 32ch;
}

.manifesto__sign {
  margin-top: clamp(40px, 6vh, 64px);
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  letter-spacing: .14em;
  color: rgba(42, 38, 32, .7);
  direction: ltr;
  text-align: end;
}

/* ============================================================
   8 · SECTION HEADS — one anatomy for every chapter
   ============================================================ */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: clamp(48px, 7vh, 88px);
}
.sec-head__title {
  font-family: var(--font-display-he);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--fg-1);
}
.sec-head__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--green-500);
}
.sec-head__sub {
  max-width: 380px;
  font-size: var(--fs-14);
  line-height: 1.75;
  color: var(--fg-3);
  padding-bottom: 8px;
}

/* masked line reveal for titles */
.t-lines .line { display: block; overflow: hidden; }
.t-lines .line > span { display: inline-block; }
.js .t-lines .line > span {
  transform: translateY(115%);
  transition: transform .9s var(--ease-out);
}
.js .t-lines .line:nth-child(2) > span { transition-delay: .12s; }
.js [data-reveal].is-in .t-lines .line > span,
.js [data-reveal].is-in.t-lines .line > span { transform: none; }

/* light chapters open with a hairline */
.process, .why, .live, .work-empty, .faq { border-top: 1px solid var(--hl-light); }

/* ============================================================
   9 · SERVICES — full-bleed sheets stacking in 3D
   ============================================================ */
.services { padding-top: clamp(90px, 13vh, 160px); }
.services > .container { padding-bottom: clamp(24px, 4vh, 48px); }

/* dark ground behind the sheets, so the recede effect stays clean */
.stacker { display: flex; flex-direction: column; background: #050f0a; }
.stacker__card {
  position: sticky;
  top: 0;
  will-change: transform, opacity;
  transform-origin: center top;
}

.panel {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(72px, 11vh, 130px);
  border-top: 1px solid var(--hl-dark);
  color: var(--paper-50);
  overflow: hidden;
  overflow: clip;
  box-shadow: 0 -24px 60px -30px rgba(0, 0, 0, .55);
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 30%),
              rgba(251, 247, 238, .05), transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.panel:hover::before { opacity: 1; }

.stacker__card:nth-child(1) .panel { background: var(--green-800); }
.stacker__card:nth-child(2) .panel { background: var(--green-700); }
.stacker__card:nth-child(3) .panel { background: var(--green-900); }

.panel__num {
  position: absolute;
  top: clamp(8px, 3vh, 40px);
  inset-inline-end: clamp(16px, 3vw, 48px);
  transform: translateY(var(--par, 0px));
  will-change: transform;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(110px, 15vw, 220px);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(251, 247, 238, .18);
}

.srv {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.srv__lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, .55);
  margin-bottom: var(--space-4);
}
.srv__title {
  font-family: var(--font-display-he);
  font-weight: 400;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  color: var(--paper-50);
}
.srv__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-butter);
}
.srv__desc {
  font-size: var(--fs-15);
  line-height: 1.75;
  color: rgba(251, 247, 238, .78);
  margin-bottom: var(--space-8);
  max-width: 52ch;
}
.srv__list { display: flex; flex-direction: column; }
.srv__list li {
  position: relative;
  padding-block: 12px;
  padding-inline-start: 22px;
  font-size: var(--fs-14);
  color: rgba(251, 247, 238, .85);
  border-top: 1px solid var(--hl-dark);
}
.srv__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 2px;
  top: 20px;
  width: 7px; height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--accent-butter);
}

/* tilt cards carry a pointer-tracked glare */
[data-tilt] {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 50%),
              rgba(255, 255, 255, .12), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-slow) ease;
}
[data-tilt]:hover::after { opacity: 1; }

/* --- Agent chat mock — monochrome glass -------------------- */
.agent-card {
  background: rgba(8, 23, 16, .45);
  border: 1px solid var(--hl-dark2);
  border-radius: var(--r-xl);
  padding: clamp(18px, 2vw, 28px);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.agent-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hl-dark);
  margin-bottom: 16px;
}
.agent-card__avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green-600);
  border: 1px solid var(--hl-dark2);
  display: grid;
  place-content: center;
  grid-auto-flow: column;
  gap: 3px;
}
.agent-card__avatar span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--paper-50);
  animation: think 1.4s ease-in-out infinite;
}
.agent-card__avatar span:nth-child(2) { animation-delay: .18s; }
.agent-card__avatar span:nth-child(3) { animation-delay: .36s; }
@keyframes think {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50%      { opacity: 1;  transform: translateY(-3px); }
}
.agent-card__name { font-weight: 600; font-size: var(--fs-14); color: var(--paper-50); }
.agent-card__stat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: var(--fs-12);
  color: rgba(251, 247, 238, .55);
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-butter); }
.dot--ok   { background: var(--accent-butter); }
.dot--load { background: rgba(251, 247, 238, .5); animation: pulse 1.6s infinite; }

.agent-card__msgs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.msg {
  max-width: 82%;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: var(--fs-13);
  line-height: 1.5;
}
.msg--in {
  align-self: flex-start;
  background: rgba(251, 247, 238, .08);
  border: 1px solid var(--hl-dark);
  color: rgba(251, 247, 238, .9);
  border-start-start-radius: 4px;
}
.msg--out {
  align-self: flex-end;
  background: var(--paper-50);
  color: var(--green-900);
  border-start-end-radius: 4px;
}
.agent-card__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.action-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  border: 1px solid var(--hl-dark2);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(251, 247, 238, .75);
}

/* --- Phone mock — monochrome ------------------------------- */
.mobile-mock {
  width: min(270px, 76%);
  margin-inline: auto;
  aspect-ratio: 9 / 18.6;
  background: #050f0a;
  border: 1px solid var(--hl-dark2);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
  position: relative;
}
.mobile-mock__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px;
  background: #050f0a;
  border-radius: 12px;
  z-index: 2;
}
.mobile-mock__screen {
  width: 100%; height: 100%;
  background: var(--green-900);
  border: 1px solid var(--hl-dark);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px 16px 14px;
  color: var(--paper-50);
}
.mm__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mm__time { font-family: var(--font-mono); font-size: 11px; color: rgba(251, 247, 238, .6); }
.mm__dots { display: inline-flex; gap: 3px; }
.mm__dots i { width: 4px; height: 4px; border-radius: 50%; background: rgba(251, 247, 238, .35); }
.mm__eyebrow { font-size: 11px; color: rgba(251, 247, 238, .55); margin-bottom: 2px; }
.mm__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--paper-50); margin-bottom: 14px; }
.mm__title em { font-family: var(--font-editorial); font-style: italic; color: var(--accent-butter); }
.mm__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mm__card {
  border-radius: 12px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--hl-dark);
  background: rgba(251, 247, 238, .04);
  color: var(--paper-50);
}
.mm__card span { font-size: 10px; opacity: .7; }
.mm__card b { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.mm__card--brand { background: var(--accent-butter); border-color: var(--accent-butter); color: var(--green-900); }
.mm__tabs {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding-top: 12px;
}
.mm__tab { width: 22px; height: 4px; border-radius: 3px; background: rgba(251, 247, 238, .18); }
.mm__tab--active { background: var(--accent-butter); }

/* --- Browser mock — monochrome ------------------------------ */
.web-mock {
  background: var(--green-900);
  border: 1px solid var(--hl-dark2);
  border-radius: var(--r-xl);
  overflow: hidden;
  color: var(--paper-50);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
}
.web-mock__chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(251, 247, 238, .04);
  border-bottom: 1px solid var(--hl-dark);
}
.web-mock__dots { display: inline-flex; gap: 5px; direction: ltr; }
.web-mock__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(251, 247, 238, .2); }
.web-mock__dots span:first-child { background: var(--accent-butter); }
.web-mock__url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(251, 247, 238, .55);
  background: rgba(251, 247, 238, .05);
  border-radius: 6px;
  padding: 4px 10px;
  direction: ltr;
}
.web-mock__body { padding: 16px; }
.web-mock__nav { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.wm-logo { width: 18px; height: 18px; border-radius: 5px; background: var(--accent-butter); }
.wm-link { font-size: 11px; color: rgba(251, 247, 238, .5); }
.wm-link--active { color: var(--paper-50); font-weight: 600; }
.wm-eyebrow { font-size: 10px; color: rgba(251, 247, 238, .5); margin-bottom: 2px; }
.wm-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--paper-50); margin-bottom: 14px; }
.wm-title em { font-family: var(--font-editorial); font-style: italic; color: var(--accent-butter); }
.web-mock__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wm-tile {
  border: 1px solid var(--hl-dark);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(251, 247, 238, .03);
}
.wm-tile span { font-size: 10px; color: rgba(251, 247, 238, .55); }
.wm-tile b { font-family: var(--font-display); font-size: 18px; color: var(--paper-50); }
.wm-tile--brand { background: var(--accent-butter); border-color: var(--accent-butter); }
.wm-tile--brand span, .wm-tile--brand b { color: var(--green-900); }
.wm-tile--paper { background: rgba(251, 247, 238, .07); }

/* ============================================================
   10 · PROCESS
   ============================================================ */
.process { padding-block: clamp(90px, 13vh, 160px); }

.timeline { position: relative; }
.timeline__rail {
  height: 1px;
  background: var(--hl-light);
  margin-bottom: clamp(36px, 5vh, 56px);
  overflow: hidden;
}
.timeline__rail-fill {
  height: 100%;
  width: 0;
  background: var(--green-600);
  float: inline-start;
}

.timeline__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.step { position: relative; }
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  color: var(--stone-200);
  margin-bottom: var(--space-4);
  transition: color .6s ease;
}
.step.is-passed .step__num { color: var(--green-600); }
.step__wk {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: var(--space-2);
}
.step h3 {
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: var(--space-2);
}
.step p:last-child { font-size: var(--fs-13); line-height: 1.65; color: var(--fg-3); }

/* ============================================================
   11 · WHY US
   ============================================================ */
.why {
  background: var(--bg-canvas);
  padding-block: clamp(90px, 13vh, 160px);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.why-item {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--hl-light);
  overflow: hidden;
  transition: border-color var(--motion-slow) ease;
}
.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(31, 74, 54, .06), transparent 70%);
  opacity: 0;
  transition: opacity var(--motion-base) ease;
  pointer-events: none;
}
.why-item:hover { border-color: var(--green-600); }
.why-item:hover::before { opacity: 1; }
.why-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  color: var(--stone-200);
  margin-bottom: var(--space-4);
  transition: color var(--motion-base) ease;
}
.why-item:hover .why-item__num { color: var(--green-600); }
.why-item h3 {
  font-size: var(--fs-15);
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: var(--space-2);
}
.why-item p:last-child { font-size: var(--fs-13); line-height: 1.7; color: var(--fg-3); }

/* ============================================================
   12 · LIVE — studio feed
   ============================================================ */
.live { padding-block: clamp(90px, 13vh, 160px) 0; background: var(--bg-canvas); }
.live__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--accent-butter);
  animation: pulse-live 1.8s ease-in-out infinite;
  vertical-align: 1px;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 185, 88, .45); opacity: 1; }
  50%      { box-shadow: 0 0 0 7px rgba(230, 185, 88, 0); opacity: .75; }
}

.live__feed { display: flex; flex-direction: column; }
.live-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px 4px;
  border-top: 1px solid var(--hl-light);
  overflow: hidden;
  transition: background var(--motion-base) ease,
              padding var(--motion-base) var(--ease-out);
}
.live-item:last-child { border-bottom: 1px solid var(--hl-light); }
.live-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
              rgba(31, 74, 54, .06), transparent 70%);
  opacity: 0;
  transition: opacity var(--motion-base) ease;
  pointer-events: none;
}
.live-item:hover { background: var(--stone-0); padding-inline-start: 18px; }
.live-item:hover::before { opacity: 1; }
.live-item__date {
  flex: none;
  width: 74px;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  color: var(--fg-3);
}
.live-item__body { flex: 1; min-width: 0; }
.live-item__body h3 {
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 4px;
}
.live-item__body p {
  font-size: var(--fs-14);
  line-height: 1.65;
  color: var(--fg-3);
  max-width: 62ch;
}
.live-item__tag {
  flex: none;
  align-self: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-item__tag--promo { color: #8a6414;         border: 1px solid rgba(230, 185, 88, .6); }
.live-item__tag--app   { color: var(--green-600); border: 1px solid rgba(31, 74, 54, .35); }
.live-item__tag--open  { color: var(--success);   border: 1px solid rgba(45, 122, 79, .35); }
.live-item__tag--new   { color: var(--fg-3);      border: 1px solid var(--line-2); }
.live-item__tag--soon  { color: var(--fg-3);      border: 1px solid var(--line-2); }

/* ============================================================
   13 · WORK — empty state
   ============================================================ */
.work-empty { padding-block: clamp(90px, 13vh, 160px); background: var(--bg-canvas); }
.empty { max-width: 820px; }
.empty .sec-lab { margin-bottom: var(--space-4); }
.empty__title {
  font-family: var(--font-display-he);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.1;
  color: var(--fg-1);
  margin-bottom: var(--space-6);
}
.empty__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--green-500);
}
.empty__sub {
  color: var(--fg-3);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: var(--space-12);
}
.empty__slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.empty-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hl-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  transition: border-color var(--motion-base) ease, transform var(--motion-base) var(--ease-out);
}
.empty-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(200px circle at var(--mx, 50%) var(--my, 50%),
              rgba(31, 74, 54, .06), transparent 70%);
  opacity: 0;
  transition: opacity var(--motion-base) ease;
}
.empty-slot:hover { border-color: var(--green-400); transform: translateY(-4px); }
.empty-slot:hover::before { opacity: 1; }
.empty-slot span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.empty-slot b { font-family: var(--font-display); font-size: var(--fs-18); color: var(--fg-2); }

/* Service panel → service page links */
.srv__more { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.srv__more a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--green-600);
  transition: color var(--motion-base) ease;
}
.srv__more a:hover { color: var(--fg-1); }
.srv__more a span { transition: transform var(--motion-base) var(--ease-out); }
.srv__more a:hover span { transform: translateX(-4px); }
.srv__more a:focus-visible { outline: 2px solid var(--green-500); outline-offset: 3px; }

/* ============================================================
   13b · FAQ
   ============================================================ */
.faq { padding-block: clamp(90px, 13vh, 160px); background: var(--bg-canvas); }
.faq__list {
  max-width: 880px;
  border-top: 1px solid var(--hl-light);
}
.faq-item { border-bottom: 1px solid var(--hl-light); }
.faq-item summary {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: clamp(20px, 3vh, 28px);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display-he);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  color: var(--fg-1);
  transition: color var(--motion-base) ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--fg-3);
  transition: transform .4s var(--ease-precise), color var(--motion-base) ease;
}
.faq-item summary:hover { color: var(--green-600); }
.faq-item summary:hover::after { color: var(--green-600); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 4px;
}
.faq-item[open] summary { color: var(--green-600); }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--green-600); }
.faq-item > p {
  color: var(--fg-3);
  line-height: 1.8;
  max-width: 62ch;
  padding-bottom: clamp(20px, 3vh, 28px);
}
.faq-item[open] > p { animation: faq-in .45s var(--ease-out) both; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .faq-item summary { gap: var(--space-4); }
}

/* ============================================================
   14 · CONTACT
   ============================================================ */
.cta {
  position: relative;
  background:
    radial-gradient(90% 80% at 50% 0%, var(--green-800) 0%, var(--green-900) 70%);
  color: var(--paper-50);
  padding-block: clamp(100px, 15vh, 180px);
  border-top: 1px solid var(--hl-dark);
  overflow: hidden;
  overflow: clip;
}
.cta__wm {
  position: absolute;
  inset-inline-end: -6%;
  top: 50%;
  transform: translateY(calc(-50% + var(--par, 0px))) rotate(8deg);
  width: min(560px, 55vw);
  height: auto;
  opacity: .05;
  pointer-events: none;
  will-change: transform;
}
.cta .sec-lab { color: rgba(251, 247, 238, .55); }
.cta__inner { position: relative; max-width: 860px; }
.cta__title {
  font-family: var(--font-display-he);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.1;
  color: var(--paper-50);
  margin-bottom: var(--space-6);
}
.cta__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-butter);
}

.cta__offer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-6);
  color: rgba(251, 247, 238, .85);
  font-size: var(--fs-14);
  font-weight: 500;
}
.cta__offer-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid rgba(230, 185, 88, .55);
  border-radius: var(--r-pill);
  color: var(--accent-butter);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tr-wide);
  white-space: nowrap;
}

.cta__sub {
  max-width: 52ch;
  line-height: 1.7;
  color: rgba(251, 247, 238, .7);
  margin-bottom: var(--space-12);
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.channel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--hl-dark);
  border-radius: var(--r-lg);
  background: rgba(251, 247, 238, .03);
  overflow: hidden;
  transition: border-color var(--motion-base) ease, background var(--motion-base) ease,
              transform var(--motion-base) var(--ease-out);
}
.channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(251, 247, 238, .08), transparent 70%);
  opacity: 0;
  transition: opacity var(--motion-base) ease;
  pointer-events: none;
}
.channel:hover {
  border-color: var(--hl-dark2);
  background: rgba(251, 247, 238, .06);
  transform: translateY(-4px);
}
.channel:hover::before { opacity: 1; }
.channel__icon {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(251, 247, 238, .07);
  border: 1px solid var(--hl-dark);
  color: var(--accent-butter);
}
.channel__icon svg { width: 20px; height: 20px; }
.channel__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.channel__lab { font-size: var(--fs-12); color: rgba(251, 247, 238, .55); }
.channel__val {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--paper-50);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  direction: ltr; text-align: end;
}
.channel__arrow {
  margin-inline-start: auto;
  color: rgba(251, 247, 238, .4);
  transition: transform var(--motion-base) var(--ease-out), color var(--motion-base) ease;
}
.channel:hover .channel__arrow { transform: translateX(-4px); color: var(--accent-butter); }

.cta__more { font-size: var(--fs-14); color: rgba(251, 247, 238, .6); margin-bottom: var(--space-8); }
.cta__more a { color: var(--accent-butter); border-bottom: 1px solid rgba(230, 185, 88, .4); }
.cta__more a:hover { border-color: var(--accent-butter); }

.cta__or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-8);
  color: rgba(251, 247, 238, .5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
}
.cta__or::before, .cta__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hl-dark);
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.cta__field { display: flex; flex-direction: column; gap: 8px; }
.cta__field--full { grid-column: 1 / -1; }
.cta__field label {
  font-size: var(--fs-13);
  font-weight: 500;
  color: rgba(251, 247, 238, .75);
}
.cta__field input, .cta__field textarea {
  font: inherit;
  color: var(--paper-50);
  background: rgba(251, 247, 238, .05);
  border: 1px solid var(--hl-dark2);
  border-radius: var(--r-md);
  padding: 13px 16px;
  transition: border-color var(--motion-base) ease, background var(--motion-base) ease;
}
.cta__field input::placeholder, .cta__field textarea::placeholder { color: rgba(251, 247, 238, .35); }
.cta__field input:hover, .cta__field textarea:hover { border-color: rgba(251, 247, 238, .38); }
.cta__field input:focus, .cta__field textarea:focus {
  outline: none;
  border-color: var(--accent-butter);
  background: rgba(251, 247, 238, .08);
}
.cta__field textarea { resize: vertical; min-height: 96px; }

.cta__hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
}

.cta__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-13);
  line-height: 1.6;
  color: rgba(251, 247, 238, .68);
  cursor: pointer;
}
.cta__consent input {
  flex: none;
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--accent-butter);
  cursor: pointer;
}
.cta__consent a {
  color: var(--accent-butter);
  border-bottom: 1px solid rgba(230, 185, 88, .4);
}
.cta__consent a:hover { border-color: var(--accent-butter); }

.cta__actions {
  flex-direction: row;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cta__status { font-size: var(--fs-14); color: var(--accent-butter); }
.cta__status--error { color: var(--accent-terracotta); }

/* ============================================================
   15 · FOOTER
   ============================================================ */
.foot {
  position: relative;
  background: var(--green-900);
  color: rgba(251, 247, 238, .7);
  border-top: 1px solid var(--hl-dark);
  padding-block: clamp(40px, 6vh, 64px) 32px;
  overflow: hidden;
  overflow: clip;
}
.foot__wm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(110px, 22vw, 320px);
  line-height: .8;
  text-align: center;
  direction: ltr;
  color: transparent;
  -webkit-text-stroke: 1px rgba(251, 247, 238, .09);
  transform: translateY(var(--par, 0px));
  will-change: transform;
  pointer-events: none;
  user-select: none;
  margin-bottom: clamp(20px, 3vh, 40px);
}
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vh, 56px);
  border-bottom: 1px solid var(--hl-dark);
  margin-bottom: 28px;
}
.foot__brand { display: flex; gap: 16px; align-items: flex-start; }
.foot__brand img {
  width: 44px;
  height: auto;   /* beat the height attribute hint */
  background: var(--paper-50);
  border-radius: 10px;
  padding: 6px;
}
.foot__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-18);
  color: var(--paper-50);
  display: flex; align-items: baseline; gap: 7px;
  margin-bottom: 6px;
}
.foot__name small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .24em;
  color: rgba(251, 247, 238, .55);
}
.foot__brand p:not(.foot__name) { font-size: var(--fs-13); line-height: 1.6; color: rgba(251, 247, 238, .55); max-width: 30ch; }
.foot__prefer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid var(--hl-dark);
  border-radius: var(--r-pill);
  font-size: var(--fs-13);
  font-weight: 500;
  color: rgba(251, 247, 238, .8);
  width: fit-content;
  transition: border-color var(--motion-base) ease, color var(--motion-base) ease,
              background var(--motion-base) ease;
}
.foot__prefer svg { flex: none; }
.foot__prefer:hover {
  border-color: rgba(251, 247, 238, .45);
  color: var(--paper-50);
  background: rgba(251, 247, 238, .05);
}
.foot__prefer:focus-visible { outline: 2px solid var(--paper-50); outline-offset: 3px; }

.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__col h2 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, .5);
  margin-bottom: 6px;
}
.foot__col a {
  font-size: var(--fs-14);
  color: rgba(251, 247, 238, .75);
  width: fit-content;
  transition: color var(--motion-base) ease, transform var(--motion-base) var(--ease-out);
}
.foot__col a:hover { color: var(--accent-butter); transform: translateX(-3px); }

.foot__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--fs-13);
  color: rgba(251, 247, 238, .5);
}
.foot__bot-links {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; justify-content: center; row-gap: 4px;
}
.foot__bot-links a:hover { color: var(--paper-50); }

/* ============================================================
   16 · REVEALS
   ============================================================ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s var(--ease-out);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in [data-stagger] > *,
.js [data-reveal].is-in[data-stagger] > * {
  opacity: 1;
  transform: none;
}

/* ============================================================
   17 · RESPONSIVE
   ============================================================ */
@media (max-width: 1120px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .timeline__steps { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
}

@media (max-width: 980px) {
  .nav__links, .nav__cta .btn-acc { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__sheet { display: flex; }
  .nav__inner { position: relative; }

  .hud--tl, .hud--tr { display: none; }   /* the nav lockup owns the top */
  .hud-x { display: none; }

  .hero__content { padding-top: clamp(260px, 42vh, 420px); padding-top: clamp(260px, 42svh, 420px); }
  .hero__title { font-size: clamp(36px, 8.6vw, 64px); }
  .hero__foot {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-4);
    padding-bottom: 64px;
  }
  .hero__scroll { display: none; }

  .sec-head { flex-direction: column; align-items: flex-start; gap: var(--space-6); }

  .stacker__card { position: static; }
  .panel { min-height: 0; }
  .srv { grid-template-columns: 1fr; }
  .srv__right { order: -1; }
  .panel__num { font-size: clamp(80px, 18vw, 130px); }

  .channels { grid-template-columns: 1fr; }
  .cta__form { grid-template-columns: 1fr; }

  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero__content { padding-inline: 20px; }
  .hero__title { font-size: clamp(34px, 10.4vw, 52px); }
  .hero__sub { font-size: var(--fs-14); margin-bottom: 28px; }
  .hero__offer {
    font-size: var(--fs-13);
    gap: 10px;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__offer-arrow { display: none; }
  .hero__cta { width: 100%; flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-hero { justify-content: space-between; width: 100%; }
  .link-ghost { align-self: center; }
  .hero__foot { grid-template-columns: 1fr; padding-top: 24px; row-gap: 2px; }
  .hero__svc { flex-direction: row; align-items: baseline; justify-content: space-between; }
  .hud--bl, .hud--br { bottom: 12px; }

  .timeline__steps { grid-template-columns: 1fr 1fr; }
  .empty__slots { grid-template-columns: 1fr; }
  .empty-slot { aspect-ratio: 5 / 2; }
  .why__grid { grid-template-columns: 1fr; }
  .manifesto__saves { grid-template-columns: 1fr; gap: 20px; }
  .save__desc { max-width: none; }

  .live-item { flex-wrap: wrap; row-gap: 8px; }
  .live-item__date { width: auto; }
  .live-item__tag { align-self: baseline; order: -1; margin-inline-start: auto; }
  .live-item__body { flex-basis: 100%; }

  .marquee__group em { font-size: clamp(22px, 6.4vw, 34px); }
}

/* ============================================================
   18 · REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .js [data-reveal], .js [data-stagger] > * { opacity: 1; transform: none; }
  .js .hero__title .line > span { transform: none; }
  .js .t-lines .line > span { transform: none; }
  .js .hero__brand, .js .hero__offer, .js .hero__sub, .js .hero__cta, .js .hero__foot { opacity: 1; transform: none; }
  .manifesto__quote .w { opacity: 1 !important; }
  .hero__scroll-line > div { animation: none !important; }
}
