/* ─── FONTS ──────────────────────────────────────────────────────────── */
@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800,900&f[]=general-sans@400,500,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Caveat:wght@500;600;700&display=swap");

/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  /* Paper warm whites */
  --paper:        oklch(96.5% 0.008 65);
  --paper-2:      oklch(94.5% 0.013 62);
  --paper-3:      oklch(92.5% 0.018 60);
  --card:         oklch(98%   0.005 65);

  /* Ink — warm near-blacks */
  --ink:          oklch(18% 0.012 55);
  --ink-2:        oklch(28% 0.010 55);
  --ink-3:        oklch(40% 0.009 55);
  --ink-4:        oklch(54% 0.008 55);
  --ink-5:        oklch(66% 0.007 55);
  --ink-6:        oklch(74% 0.007 55);

  /* Hairlines */
  --rule:         oklch(86% 0.012 55);
  --rule-2:       oklch(90% 0.010 55);
  --rule-strong:  oklch(76% 0.014 55);

  /* Accent — deep terracotta */
  --terra:        oklch(54% 0.14 42);
  --terra-deep:   oklch(45% 0.13 40);
  --terra-soft:   oklch(74% 0.10 50);
  --terra-wash:   oklch(54% 0.14 42 / 0.10);
  --terra-line:   oklch(54% 0.14 42 / 0.28);

  /* Dark sections */
  --graphite:     oklch(18% 0.014 50);
  --graphite-2:   oklch(22% 0.014 50);
  --graphite-ink: oklch(94% 0.010 65);
  --graphite-ink-2: oklch(70% 0.012 55);

  /* Type */
  --font-display: "Cabinet Grotesk", system-ui, -apple-system, sans-serif;
  --font-body:    "General Sans", system-ui, -apple-system, sans-serif;
  --font-serif:   "Instrument Serif", Georgia, serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, monospace;
}

/* ─── BASE ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: #2a241d;
  color: var(--ink);
  background: #f4f0e8;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html { background: #f4f0e8; background: var(--paper); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--terra); color: var(--paper); }

/* ─── UTIL ───────────────────────────────────────────────────────────── */
.shell { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }
.shell-wide { max-width: 1440px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.mono-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}
.hairline { height: 1px; background: var(--rule); border: 0; margin: 0; }
.hairline-strong { height: 1px; background: var(--ink); border: 0; margin: 0; }

/* ─── BUTTON ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s, color .2s, box-shadow .25s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--terra);
  color: var(--paper);
}
.btn-primary:hover { background: var(--terra-deep); box-shadow: 0 10px 30px oklch(54% 0.14 42 / 0.35); }
.btn-terra {
  background: var(--terra);
  color: var(--paper);
}
.btn-terra:hover { background: var(--terra-deep); box-shadow: 0 10px 30px oklch(54% 0.14 42 / 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s, gap .25s;
  white-space: nowrap;
}
.arrow-link:hover { color: var(--terra); border-color: var(--terra); gap: 12px; }

/* ─── REVEAL ─────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* ─── CURSOR DOT ─────────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terra);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, opacity .25s, mix-blend-mode .25s;
  mix-blend-mode: multiply;
  opacity: 0;
}
.cursor-dot.show { opacity: 1; }
.cursor-dot.expand {
  width: 56px;
  height: 56px;
  background: oklch(54% 0.14 42 / 0.18);
  mix-blend-mode: normal;
}
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ─── MARQUEE ────────────────────────────────────────────────────────── */
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marquee-roll 60s linear infinite;
  will-change: transform;
}
@keyframes marquee-roll {
  to { transform: translateX(-50%); }
}
.marquee-vert {
  position: relative;
  overflow: hidden;
}
.marquee-vert-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: marquee-vert-roll 60s linear infinite;
  will-change: transform;
}
@keyframes marquee-vert-roll {
  to { transform: translateY(-50%); }
}

/* ─── TABULAR ────────────────────────────────────────────────────────── */
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1, "lnum" 1; }

/* ─── DOT GRID BACKGROUND ────────────────────────────────────────────── */
.dot-bg {
  background-image: radial-gradient(circle, var(--rule) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ─── NOISE ──────────────────────────────────────────────────────────── */
.noise {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ─── NAV ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 24px);
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  background: rgba(244, 240, 232, 0.72);
  background: oklch(96.5% 0.008 65 / 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
          backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 12px 32px -16px oklch(20% 0.014 50 / 0.18),
    0 4px 12px -8px oklch(20% 0.014 50 / 0.08);
  transition: top .35s, padding .35s, max-width .35s, background .35s;
}
.nav.scrolled {
  top: 12px;
  max-width: 980px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(244, 240, 232, 0.86);
  background: oklch(96.5% 0.008 65 / 0.86);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.nav.scrolled .nav-logo img { height: 26px; }
.nav-logo span.dot { width: 8px; height: 8px; background: var(--terra); border-radius: 50%; display: inline-block; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 8px 12px;
  color: var(--ink-3);
  transition: color .2s, background .2s;
  white-space: nowrap;
  border-radius: 8px;
}
.nav-links a:hover { color: var(--ink); background: oklch(94.5% 0.013 62 / 0.8); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1.5px;
  background: var(--terra);
  border-radius: 1px;
}
@media (max-width: 880px) { .nav-links { display: none; } }

/* mobile hamburger + drawer */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--rule-strong);
  background: var(--card);
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
}
.hamburger:hover { background: var(--paper-2); border-color: var(--ink); }
.hamburger .bars {
  display: flex; flex-direction: column; gap: 4px; width: 18px;
}
.hamburger .bars span {
  display: block; height: 2px; background: var(--ink); border-radius: 1px;
}
@media (max-width: 880px) {
  .hamburger { display: inline-flex; }
}

.drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: oklch(18% 0.012 55 / 0.50);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.drawer-panel {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: min(82vw, 360px);
  background: var(--paper);
  border-right: 1px solid var(--rule);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  box-shadow: 8px 0 32px oklch(20% 0.014 50 / 0.10);
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 12px;
}
.drawer-head img { height: 30px; width: auto; }
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--rule-strong);
  background: var(--card);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  padding: 0;
}
.drawer-close:hover { background: var(--ink); color: var(--paper); }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  transition: color .2s, padding .2s;
  text-decoration: none;
}
.drawer-link:hover { color: var(--terra); padding-left: 8px; }
.drawer-link .ico { color: var(--ink-5); }
.drawer-link:hover .ico { color: var(--terra); }
.drawer-foot {
  margin-top: auto;
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.drawer-foot .note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.drawer-foot .btn { justify-content: center; }

/* ─── REVIEWS STRIP (after hero) ─────────────────────────────────────── */
.reviews-strip {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
.reviews-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  padding: 22px 24px;
  text-decoration: none;
  transition: background .25s;
}
.reviews-strip a:hover { background: var(--paper-2); }
.reviews-strip .stars {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--terra);
  font-size: 22px;
  line-height: 1;
}
.reviews-strip .stars svg { display: block; }
.reviews-strip .rate {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.reviews-strip .rate em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.reviews-strip .sep {
  width: 1px; height: 20px;
  background: var(--rule-strong);
  display: inline-block;
}
.reviews-strip .who {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.reviews-strip .who strong { font-weight: 700; color: var(--ink); }
.reviews-strip .cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--terra);
  transition: gap .25s, color .2s;
}
.reviews-strip a:hover .cta { gap: 12px; color: var(--terra-deep); }
@media (max-width: 720px) {
  .reviews-strip a { gap: 14px; padding: 16px 20px; }
  .reviews-strip .who, .reviews-strip .sep:nth-of-type(2) { display: none; }
}

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 40px;
  min-height: 86dvh;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 32vw, 420px);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1080px) {
  .hero-main { grid-template-columns: 1fr; gap: 24px; }
  .hero-portrait { max-height: 420px; aspect-ratio: 1/1; max-width: 360px; margin-inline: auto; justify-self: center; }
}
@media (max-width: 640px) {
  .hero-portrait { display: none; }
}

/* portrait — faded edges, signature below */
.hero-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 580px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-portrait .img-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
}
.hero-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.92) contrast(1.02);
  -webkit-mask-image: radial-gradient(ellipse 58% 64% at center 40%, #000 14%, rgba(0,0,0,0.6) 50%, transparent 86%);
          mask-image: radial-gradient(ellipse 58% 64% at center 40%, #000 14%, rgba(0,0,0,0.6) 50%, transparent 86%);
}
.hero-portrait .sign-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  margin-top: -16px;
  position: relative;
  z-index: 2;
}
.hero-portrait .sign-block .sig {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 48px;
  line-height: 0.9;
  color: var(--terra);
  letter-spacing: -0.005em;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.hero-portrait .sign-block .role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
}

/* deprecated left-column hero signature */
.hero-sign { display: none; }

/* live activity panel */
.hero-live {
  border: 1px solid var(--rule);
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 8px 24px oklch(20% 0.014 50 / 0.06);
}
.hero-live-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.hero-live-head .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.hero-live-head .live-blip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}
.hero-live-head .live-blip .b {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  position: relative;
}
.hero-live-head .live-blip .b::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.35;
  animation: blip-pulse 1.8s cubic-bezier(.16,1,.3,1) infinite;
}

.hero-live-feed {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  height: 220px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.hero-live-feed-inner {
  display: flex; flex-direction: column; gap: 12px;
  animation: live-roll 30s linear infinite;
}
@keyframes live-roll {
  to { transform: translateY(-50%); }
}
.hero-live-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}
.hero-live-item .time {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-5);
}
.hero-live-item .what {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.hero-live-item .what .marker {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}
.hero-live-item .who {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink-4);
}

.hero-live-foot {
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: baseline;
}
.hero-live-foot .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-live-foot .v em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.hero-live-foot .l {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-5);
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-pulse {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.hero-pulse .blip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
  position: relative;
  display: inline-block;
}
.hero-pulse .blip::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--terra);
  opacity: .35;
  animation: blip-pulse 1.8s cubic-bezier(.16,1,.3,1) infinite;
}
@keyframes blip-pulse {
  0% { transform: scale(.6); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 18ch;
}
.hero-display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 56ch;
  margin-top: 40px;
}
.hero-sub-2 {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 56ch;
  margin-top: 18px;
}
.hero-sub-2 strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.hero-cta-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-cta-row .small-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-4);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  margin-top: 64px;
}
.hero-stat {
  padding: 24px 22px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-stat .v em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.hero-stat .l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
@media (max-width: 720px) {
  .hero-stat-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ─── TICKER (text-only kinetic) ─────────────────────────────────────── */
.ticker {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.ticker-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* ─── SECTION SCAFFOLD ──────────────────────────────────────────────── */
.section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section + .section { border-top: 1px solid var(--rule); }
.section-dark { background: var(--graphite); color: var(--graphite-ink); }
.section-dark .section-label, .section-dark .section-title { color: var(--graphite-ink); }
.section-paper { background: var(--paper-2); }

.section-label-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex; align-items: center; gap: 12px;
}
.section-label .num { color: var(--terra); }
.section-label .rule { width: 56px; height: 1px; background: var(--ink); display: inline-block; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.section-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 40ch;
}

/* ─── PROBLEM ────────────────────────────────────────────────────────── */
.problem-list {
  border-top: 1px solid var(--ink);
}

/* ─── FAQ (section 01) ──────────────────────────────────────────────── */
/* Native <details> behavior — explicit so editor overlays don't break it */
.faq-list details > *:not(summary) {
  display: none;
}
.faq-list details[open] > *:not(summary) {
  display: block;
}
.faq-list {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item:last-of-type { border-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  transition: padding .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover { background: var(--paper-2); }
.faq-item:hover summary { padding-left: 8px; }
.faq-item .faq-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--ink-6);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color .3s;
}
.faq-item[open] .faq-num { color: var(--terra); }
.faq-item .faq-q-wrap { min-width: 0; }
.faq-item .faq-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 10px;
}
.faq-item .faq-q {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}
.faq-item .faq-chev {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--ink-3);
  border: 1px solid var(--rule-strong);
  background: var(--card);
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .25s, color .25s, border-color .25s;
  margin-top: 4px;
  flex-shrink: 0;
}
.faq-item[open] .faq-chev {
  transform: rotate(45deg);
  background: var(--terra);
  color: var(--paper);
  border-color: var(--terra);
}
.faq-item .faq-a {
  padding: 0 56px 36px 88px;
  max-width: 880px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  color: var(--ink-2);
  animation: faq-reveal 0.4s ease-out;
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .faq-item summary { grid-template-columns: 44px 1fr 36px; gap: 14px; padding: 22px 0; }
  .faq-item .faq-num { font-size: 24px; }
  .faq-item .faq-chev { width: 36px; height: 36px; }
  .faq-item .faq-a { padding: 0 8px 24px 58px; font-size: 14.5px; }
}

.faq-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
  padding: 22px 26px;
  border: 1px solid var(--terra-line);
  border-radius: 12px;
  background: var(--card);
}
.problem-item {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.4fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background .3s;
  position: relative;
}
.problem-item:hover { background: var(--paper-2); }
.problem-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--ink-6);
  transition: color .3s;
}
.problem-item:hover .num { color: var(--terra); }
.problem-item .scene {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
  position: relative;
  padding-left: 56px;
}
.problem-item .scene::before {
  content: "NO";
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--terra);
  letter-spacing: -0.02em;
}
.problem-item .scene em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.problem-item .body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 42ch;
}
.problem-item .body .fix-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 980px) {
  .problem-item { grid-template-columns: 56px 1fr; gap: 18px; }
  .problem-item .num { font-size: 38px; }
  .problem-item .scene { padding-left: 42px; }
  .problem-item .scene::before { top: 6px; }
  .problem-item .body { grid-column: 2; }
}

/* ─── CASES MARQUEE (vertical columns) ───────────────────────────────── */
.cases-strip {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  height: 680px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  overflow: hidden;
}
.case-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.case-col-track {
  display: flex; flex-direction: column; gap: 14px;
  animation: case-roll linear infinite;
  will-change: transform;
}
@keyframes case-roll {
  to { transform: translateY(-50%); }
}
@media (max-width: 880px) { .case-col:nth-child(n+2) { display: none; } }
@media (min-width: 881px) and (max-width: 1120px) { .case-col:nth-child(3) { display: none; } }

.case-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 8px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
}
.case-card:hover {
  transform: translateY(-2px);
  border-color: var(--terra-line);
  box-shadow: 0 12px 32px oklch(20% 0.014 50 / 0.08);
}
.case-card .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
}
.case-card .headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 2px;
}
.case-card .headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.case-card .sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-3);
}
.case-card .body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-3);
}
.case-card .foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.case-card .foot .client {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.case-card .foot .contact {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

/* ─── METHOD ─────────────────────────────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.method-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 1.1fr;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.method-row:last-child { border-bottom: 1px solid var(--ink); }
.method-row .step {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--ink-6);
}
.method-row .step em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.method-row .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.method-row .when {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 10px;
}
.method-row .desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 42ch;
}
.method-row .artifact {
  align-self: stretch;
}

/* artifact mini-cards */
.artifact-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--card);
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  display: flex; flex-direction: column; gap: 8px;
  height: 100%;
  min-height: 140px;
  box-shadow: 0 4px 16px oklch(20% 0.014 50 / 0.05);
}
.artifact-card .head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-5);
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.artifact-card .head .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--terra);
}
.artifact-card .head .live .b { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }

@media (max-width: 980px) {
  .method-row { grid-template-columns: 56px 1fr; gap: 18px; }
  .method-row .step { font-size: 38px; }
  .method-row .desc, .method-row .artifact { grid-column: 2; }
}

/* ─── DIFFERENTIATOR (vs table) ──────────────────────────────────────── */
.vs-table {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  align-items: stretch;
}
.vs-row:last-child { border-bottom: 0; }
.vs-row > div {
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.vs-row .topic {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-right: 1px solid var(--rule);
}
.vs-row .topic .sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-4);
  margin-top: 4px;
}
.vs-row .typical {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
  border-right: 1px solid var(--rule);
  background: var(--paper-2);
}
.vs-row .typical::before {
  content: "Lo típico";
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-5);
  margin-bottom: 6px;
}
.vs-row .mine {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--card);
}
.vs-row .mine::before {
  content: "Cómo lo hago";
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
  font-weight: 600;
}
.vs-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--ink);
}
.vs-header > div {
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}
@media (max-width: 880px) {
  .vs-header { display: none; }
  .vs-row { grid-template-columns: 1fr; }
  .vs-row > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .vs-row > div:last-child { border-bottom: 0; }
}

/* ─── ROI TABLE ──────────────────────────────────────────────────────── */
.roi-table {
  border-top: 1px solid var(--ink);
}
.roi-thead, .roi-row {
  display: grid;
  grid-template-columns: 1.4fr 80px 80px 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
}
.roi-thead {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  border-bottom: 1px solid var(--ink);
}
.roi-row { transition: background .25s; cursor: default; }
.roi-row:hover { background: var(--paper-2); }
.roi-row .sector {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.roi-row .ctx {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-5);
  margin-top: 2px;
}
.roi-row .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.roi-row .roi {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--terra);
}
.roi-row .roi em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.roi-row .per1k {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-2);
}
.roi-row .spark {
  display: flex; align-items: flex-end; gap: 2px; height: 28px;
}
.roi-row .spark .bar {
  flex: 1;
  background: var(--terra-soft);
  border-radius: 1px;
}
.roi-row .spark .bar.peak { background: var(--terra); }
@media (max-width: 880px) {
  .roi-thead { display: none; }
  .roi-row { grid-template-columns: 1fr auto; gap: 8px; }
  .roi-row .num, .roi-row .per1k, .roi-row .spark { grid-column: 1 / -1; font-size: 14px; }
  .roi-row .roi { grid-column: 2; grid-row: 1; }
}

/* ─── PLATFORMS ──────────────────────────────────────────────────────── */
.platforms-strip {
  display: flex; gap: 14px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.platform-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--card);
  white-space: nowrap;
  transition: border-color .25s, transform .25s;
}
.platform-pill:hover { border-color: var(--terra-line); transform: translateY(-2px); }
.platform-pill .ico {
  width: 18px; height: 18px;
  display: inline-block;
}
.platform-pill .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.platform-pill .sub {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink-4);
}

/* ─── ABOUT ─────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }
.about-letter {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--ink-2);
}
.about-letter p { margin-bottom: 22px; max-width: 56ch; }
.about-letter p:first-of-type::first-line {
  font-family: var(--font-display);
  font-weight: 700;
}
.about-letter em.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  font-size: 1.08em;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: transparent;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.92);
  -webkit-mask-image: radial-gradient(ellipse 62% 68% at center 38%, #000 18%, rgba(0,0,0,0.55) 52%, transparent 86%);
          mask-image: radial-gradient(ellipse 62% 68% at center 38%, #000 18%, rgba(0,0,0,0.55) 52%, transparent 86%);
}
.about-photo-badge {
  position: absolute;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  width: max-content;
  max-width: 90%;
}
.about-photo-badge .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.about-photo-badge .role {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink-4);
  margin-top: 1px;
}
.about-photo-badge .avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  background: var(--card);
  border: 1px solid var(--terra-line);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 12px oklch(20% 0.014 50 / 0.08);
}
.about-photo-badge .avail .b { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); position: relative; }
.about-photo-badge .avail .b::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.35;
  animation: blip-pulse 1.8s cubic-bezier(.16,1,.3,1) infinite;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.about-mini-stats .s {
  padding: 18px 14px;
  border-right: 1px solid var(--rule);
}
.about-mini-stats .s:last-child { border-right: 0; }
.about-mini-stats .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.about-mini-stats .v em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.about-mini-stats .l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
  line-height: 1.3;
}

/* ─── ROTATING WORD ──────────────────────────────────────────────────── */
.rotor {
  display: inline-flex;
  position: relative;
  vertical-align: baseline;
  overflow: hidden;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.rotor-track {
  display: inline-flex;
  flex-direction: column;
  transition: transform .65s cubic-bezier(.72, 0, .2, 1);
  will-change: transform;
}
.rotor-track > span {
  display: block;
  line-height: 1.05;
  white-space: nowrap;
}
.rotor::after {
  content: "";
  position: absolute;
  bottom: 0.04em; left: 0; right: 0.06em;
  height: 2px;
  background: var(--terra);
  opacity: 0.20;
  border-radius: 1px;
}

/* ─── SIGNATURE (handwritten) ─────────────────────────────────────── */
.signature {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 64px;
  color: var(--terra);
  margin-top: 8px;
  letter-spacing: -0.005em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-3deg);
  transform-origin: left center;
}
.signature-row {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.signature-row .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-bottom: 8px;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonial-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) { .testimonial-hero { grid-template-columns: 1fr; } }
.testimonial-hero .quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.testimonial-hero .quote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.testimonial-hero .quote::before {
  content: "“";
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 96px;
  line-height: 0.7;
  color: var(--terra);
  margin-bottom: 8px;
}
.testimonial-hero .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
}
.testimonial-hero .author .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--terra-deep);
}
.testimonial-hero .author .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.testimonial-hero .author .r {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-4);
}

.testimonial-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
@media (max-width: 1180px) { .testimonial-secondary { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px) { .testimonial-secondary { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonial-secondary { grid-template-columns: 1fr; } }
.t-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px;
  transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column;
}
.t-card:hover { border-color: var(--terra-line); transform: translateY(-2px); }
.t-card .t-sector {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 12px;
}
.t-card .body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}
.t-card .foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.t-card .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terra-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--terra-deep);
  flex-shrink: 0;
}
.t-card .n { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.t-card .r { font-family: var(--font-body); font-size: 11px; color: var(--ink-4); line-height: 1.3; }

/* ─── PLAZAS ─────────────────────────────────────────────────────────── */
.plazas {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) { .plazas { grid-template-columns: 1fr; } }
.plazas .meter {
  position: relative;
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--card);
}
.plazas .meter-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.plazas .meter-row .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 0.9;
}
.plazas .meter-row .big em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}
.plazas .meter-row .of {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-4);
}
.plazas .meter-bar {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}
.plazas .meter-bar .slot {
  flex: 1;
  height: 38px;
  border-radius: 4px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
}
.plazas .meter-bar .slot.taken {
  background: var(--ink);
  border-color: var(--ink);
}
.plazas .meter-bar .slot.next {
  background: var(--terra);
  border-color: var(--terra);
  animation: slot-pulse 2s ease-in-out infinite;
}
@keyframes slot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}
.plazas .meter-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-top: 14px;
}

/* ─── CTA / Letter close ─────────────────────────────────────────────── */
.cta-letter {
  text-align: left;
  max-width: 760px;
}
.cta-letter h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--graphite-ink);
  text-wrap: balance;
}
.cta-letter h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--terra-soft);
}
.cta-letter p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--graphite-ink-2);
  margin-top: 32px;
  max-width: 56ch;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-5);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid li {
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  padding: 4px 0;
  color: var(--ink-2);
}
.footer-grid ul { padding: 0; margin: 0; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-5);
}

/* ─── WHATSAPP FAB ───────────────────────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terra);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  z-index: 60;
  box-shadow: 0 8px 24px oklch(54% 0.14 42 / 0.34);
  transition: transform .25s, background .25s, box-shadow .25s;
  opacity: 0; pointer-events: none;
  transform: scale(0.7);
}
.fab.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.fab:hover { background: var(--terra-deep); box-shadow: 0 12px 32px oklch(54% 0.14 42 / 0.42); transform: scale(1.06); }
@media (min-width: 880px) { .fab { display: none; } }

/* ─── SKIP LINK ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus { left: 16px; top: 16px; background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: 6px; z-index: 9999; }
