/* ===== Fonts (self-hosted) =====
   Inter served locally instead of via fonts.googleapis.com/fonts.gstatic.com
   — loading fonts directly from Google's CDN sends every visitor's IP to
   Google before consent, which German and Spanish data-protection guidance
   both flag as an unnecessary personal-data transfer. Self-hosting removes
   the transfer entirely (no consent banner needed for fonts). Both files
   are variable fonts (weight axis 400–900 in one file); italic only needs
   500 site-wide, so it's declared as a single static weight. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/inter-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-italic.woff2') format('woff2');
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ===== Reveal-on-scroll base (defined early on purpose — see note) =====
   Any component below that sets its own permanent `transform` must beat
   this rule by cascade ORDER, not specificity (both are 0,1,0 / 0,2,0).
   Keeping this block at the top of the file lets later component rules
   win the tie naturally. Grouped items get a staggered cascade via
   --reveal-delay (set in script.js) instead of popping in together. */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(.94);
  transition: opacity .8s cubic-bezier(.16,.8,.24,1), transform .8s cubic-bezier(.16,.8,.24,1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===== Tokens =====
   Full rebuild, dark-first — synthesis of two references the user gave:
   Dribbble "Defi Landing Page" (Levi Wilson/QClay: near-black, sparse
   glowing accents, framed tech mood) for the MOOD, and apple.com/
   macbook-air (huge two-tone gradient headlines, generous whitespace,
   confident scale, real alternating light/dark section rhythm) for the
   TYPOGRAPHIC SYSTEM and pacing. Previous attempts only reskinned the
   hero's font on top of the same light-site structure — this is a
   structural rebuild: the hero is full-bleed dark (no inset "framed
   card" anymore), and dark/light sections alternate deliberately down
   the page instead of "dark hero, light everything else". */
:root {
  --red: #C23424;
  --red-deep: #9E2A1D;
  --red-2: #B4412F;
  --red-glow: #ff6b52;
  --gold: #ECCB41;

  --bg: #050505;
  --bg-elevated: #0c0c0e;
  --ink: #0A0A0A;
  --ink-soft: #6E6E73;
  --paper: #FFFFFF;
  --paper-deep: #F5F5F7;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --dim: #98989D;

  --line: rgba(10,10,10,.08);
  --line-on-dark: rgba(255,255,255,.14);

  --display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: .85rem;
  --shadow-soft: 0 20px 50px -20px rgba(10,10,10,.25);
  --shadow-card: 0 14px 34px -18px rgba(10,10,10,.3);
}

html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* Apple-style two-tone headline: the tinted portion fades toward the
   section's own background instead of staying full-strength — used on
   both light sections (tints toward paper) and dark ones (tints toward
   bg), so the same class works everywhere. */
.tint-heading {
  background: linear-gradient(90deg, var(--red) 0%, rgba(194,52,36,.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head--on-dark .tint-heading {
  background: linear-gradient(90deg, var(--red-glow) 0%, rgba(255,107,82,.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; border-radius: 0 0 .5rem 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

section { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.eyebrow--light { color: var(--red-glow); }

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
  text-align: center;
}
.section-head--on-dark h2 { color: var(--white); }
.section-lede {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.section-lede--light { color: rgba(255,255,255,.68); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 1rem 2.1rem; font-size: 1rem; }
.btn--solid {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 26px -10px rgba(194,52,36,.55);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(194,52,36,.6); }
.btn--ghost-dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.22);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  border-color: rgba(10,10,10,.25);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(10,10,10,.06); }

/* ===== Nav =====
   Sticky, transparent over the dark hero, gains a blurred dark
   background as soon as you scroll past it — same bar reads correctly
   on both the dark hero and the light sections beneath it. */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 24px -20px rgba(0,0,0,.6);
}
.nav.is-open {
  background: var(--bg);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__brand-logo {
  height: 42px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 1.8rem;
  font-weight: 500;
  font-size: .92rem;
}
.nav__links a { color: rgba(255,255,255,.75); transition: color .2s ease; }
.nav__links a:hover { color: var(--white); }
.nav__cta { flex-shrink: 0; padding: .65rem 1.3rem; font-size: .88rem; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav__burger span { width: 16px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: .3rem;
  padding: .5rem 1.4rem 1.3rem;
  background: var(--bg);
}
.nav__mobile a {
  padding: .7rem 0;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav__mobile .btn { margin-top: .6rem; width: 100%; }
.nav.is-open .nav__mobile { display: flex; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ===== Hero =====
   Full-bleed dark stage (no inset "framed card" this time — a deliberate
   structural change, not just a font swap). Particle constellation +
   floating labeled chips (our real metrics, Defi-style) drift with a
   subtle parallax tied to the pointer position — the "interactive hero"
   the user asked for, without a photographed device. */
.hero__stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(48% 40% at 20% 15%, rgba(194,52,36,.16), transparent 70%),
    radial-gradient(46% 42% at 84% 80%, rgba(236,203,65,.1), transparent 70%),
    var(--bg);
  overflow: hidden;
  padding: 9rem 1.5rem 4rem;
}
/* Cursor-following glow — the interactive touch, replacing the starfield
   particle canvas the user said "looks like space". A single soft light
   that leans toward the pointer reads as tech/premium without looking
   like an animated background running on its own. script.js writes
   --spot-x/--spot-y (0-100, percent) on mousemove; static and centered
   with no JS (prefers-reduced-motion, or no fine pointer). */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    38rem 38rem at var(--spot-x, 50%) var(--spot-y, 38%),
    rgba(255,255,255,.14),
    rgba(255,255,255,.05) 45%,
    transparent 72%
  );
  transition: background-position .4s ease-out;
}

.hero__metrics {
  display: flex;
  gap: 1.8rem;
  margin: 1.8rem 0 2.2rem;
  padding: 1rem 1.6rem;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-on-dark);
}
.hero__metrics .metric { text-align: center; }
.hero__metrics .metric__num {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 1.2rem;
  color: var(--red-glow);
  display: block;
}
.hero__metrics .metric__label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}
@media (max-width: 480px) {
  .hero__metrics { gap: 1.1rem; padding: .9rem 1.1rem; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem .5rem .5rem 1.1rem;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-on-dark);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: background .2s ease, transform .2s ease;
}
.hero__badge:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(236,203,65,.7);
}
.hero__badge-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: .78rem;
}
.hero__title {
  font-size: clamp(2.3rem, 7vw, 5.4rem);
  margin-bottom: .7rem;
  white-space: nowrap;
}
.hero__title--wrap {
  white-space: normal;
  display: block;
  font-size: clamp(1.9rem, 5.4vw, 4.1rem);
  max-width: 900px;
}
.hero__title--wrap .hero__title-solid,
.hero__title--wrap .hero__title-tint { display: block; }
.hero__title-solid { color: var(--white); }
.hero__title-tint {
  background: linear-gradient(90deg, var(--red-glow) 0%, rgba(255,107,82,.28) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 460px) {
  .hero__title { white-space: normal; }
}
.hero__kicker {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--red-glow);
  margin-bottom: 1.1rem;
}
.hero__sub {
  color: rgba(255,255,255,.6);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 600px;
  margin-bottom: 2.4rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero__microcopy {
  margin-top: 1.1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.hero__trust {
  position: relative;
  z-index: 2;
  margin-top: 4.5rem;
  padding-top: 1.7rem;
  width: 100%;
  max-width: 720px;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.hero__trust-label {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.1rem, 4vw, 2.4rem);
}
.hero__trust-list span {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--white);
  font-size: .92rem;
}

.hero__scroll {
  position: absolute;
  left: clamp(1rem, 3.5vw, 2.2rem);
  bottom: clamp(1rem, 3.5vw, 2rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.5);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__scroll-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__spotlight { transition: none; }
  .hero__scroll-icon { animation: none; }
}
@media (max-width: 560px) {
  .hero__trust-list { gap: .9rem 1.4rem; }
  .hero__scroll { display: none; }
}

/* ===== Quiz (light section) ===== */
.quiz { padding: 7rem 1.5rem; }
.quiz__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 4vw, 3rem);
  max-width: 920px;
  margin: 0 auto;
}
.quiz__step + .quiz__step { margin-top: 2.4rem; }
.quiz__step-label {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.quiz__step-label span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.quiz__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .8rem;
}
.quiz__option {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(10,10,10,.12);
  background: var(--paper-deep);
  cursor: pointer;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.quiz__option-icon { flex-shrink: 0; display: flex; color: var(--red); }
.quiz__option-icon svg { width: 22px; height: 22px; }
.quiz__option.is-selected .quiz__option-icon { color: var(--red-deep); }
.quiz__option:hover { border-color: rgba(194,52,36,.4); transform: translateY(-2px); }
.quiz__option.is-selected {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(194,52,36,.08), rgba(236,203,65,.1));
  box-shadow: 0 10px 24px -14px rgba(194,52,36,.4);
}
.quiz__result { margin-top: 2.4rem; }
.quiz__result-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: linear-gradient(150deg, var(--bg) 0%, #1c1c1c 100%);
  color: var(--white);
  animation: result-in .5s cubic-bezier(.16,.8,.24,1);
}
@keyframes result-in {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quiz__result-eyebrow { color: var(--gold); font-weight: 700; letter-spacing: .1em; font-size: .78rem; text-transform: uppercase; }
.quiz__result-title { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.6rem,3vw,2.1rem); margin: .5rem 0 .2rem; color: var(--white); }
.quiz__result-price { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.6rem,3vw,2rem); color: var(--red-glow); margin-bottom: .9rem; }
.quiz__result-desc { color: rgba(255,255,255,.8); margin-bottom: 1.2rem; }
.quiz__result-list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .55rem; }
.quiz__result-list li { display: flex; gap: .6rem; font-size: .93rem; color: rgba(255,255,255,.9); }
.quiz__result-list li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ===== Portfolio (dark section) ===== */
.portfolio {
  padding: 7rem 1.5rem;
  background: var(--bg);
}
.portfolio__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.portfolio__card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--line-on-dark);
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.16,.8,.24,1), box-shadow .35s ease;
}
.portfolio__card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -22px rgba(0,0,0,.55); }
.portfolio__media {
  aspect-ratio: 1.98 / 1;
  position: relative;
  overflow: hidden;
  background: #111;
}
.portfolio__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s cubic-bezier(.16,.8,.24,1);
}
.portfolio__card:hover .portfolio__media img { transform: scale(1.04); }
/* Honest labeling for pitched-but-not-contracted work (e.g. SoWood) —
   a small badge over the image, framed as a positive "this is a design
   proposal" signal rather than a "we didn't sell this" disclaimer. */
.portfolio__badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  z-index: 2;
  padding: .4rem .8rem;
  border-radius: 100px;
  background: rgba(5,5,5,.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-on-dark);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.portfolio__body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.portfolio__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-glow);
}
.portfolio__body h3 { color: var(--white); }
.portfolio__body p { color: rgba(255,255,255,.65); font-size: .93rem; flex: 1; }
.portfolio__link {
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
  margin-top: .4rem;
}
.portfolio__card--static { cursor: default; }
.portfolio__card--static:hover { transform: none; box-shadow: var(--shadow-card); }
.portfolio__card--static:hover .portfolio__media img { transform: none; }

.portfolio__group-label {
  max-width: var(--container);
  margin: 0 auto .3rem;
  padding: 0 1.5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.portfolio__group-label--concepts { margin-top: 3.2rem; }
.portfolio__group-note {
  max-width: 640px;
  margin: 0 auto 1.4rem;
  padding: 0 1.5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.portfolio__grid + .portfolio__group-label,
.portfolio__group-label + .portfolio__grid { margin-top: 0; }

/* ===== Why (light section) ===== */
.why { padding: 7rem 1.5rem; }
.why__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.why__card {
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}
.why__card:hover { transform: translateY(-6px); }
.why__icon { display: flex; color: var(--red); margin-bottom: 1rem; }
.why__icon svg { width: 30px; height: 30px; }
.why__card h3 { margin-bottom: .5rem; }
.why__card p { color: var(--ink-soft); font-size: .93rem; }

/* ===== Process (dark section) ===== */
.process { padding: 7rem 1.5rem; background: var(--bg-elevated); }
.process__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.process__step {
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-on-dark);
}
.process__num {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red-glow);
  display: block;
  margin-bottom: .6rem;
}
.process__step h3 { color: var(--white); margin-bottom: .5rem; }
.process__step p { color: rgba(255,255,255,.6); font-size: .93rem; }

/* ===== Quiénes somos (dark section) ===== */
.about { padding: 7rem 1.5rem; background: var(--bg); }
.about__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2.4rem;
}
.about__body p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 1rem; }
.about__body p:last-child { margin-bottom: 0; }
.about__body strong { color: var(--white); }
.about__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.about__fact {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-on-dark);
}
a.about__fact:hover { background: rgba(255,255,255,.08); }
.about__fact-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); }
.about__fact-value { font-weight: 700; color: var(--white); font-size: .92rem; }

/* ===== Para quién es / no es (dark section) ===== */
.fit { padding: 7rem 1.5rem; background: var(--bg); }
.fit__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.fit__col {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-on-dark);
}
.fit__col--yes { background: linear-gradient(160deg, rgba(236,203,65,.1), rgba(255,255,255,.02)); }
.fit__col--no { background: rgba(255,255,255,.03); }
.fit__col h3 { color: var(--white); margin-bottom: 1.1rem; }
.fit__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.fit__col li { display: flex; gap: .7rem; font-size: .95rem; color: rgba(255,255,255,.75); }
.fit__col--yes li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.fit__col--no li::before { content: "×"; color: rgba(255,255,255,.4); font-weight: 700; flex-shrink: 0; }
.fit__note { max-width: 720px; margin: 2.2rem auto 0; text-align: center; color: rgba(255,255,255,.65); font-size: .98rem; }
.fit__note strong { color: var(--white); }

/* ===== Qué compras (light section) ===== */
.offer { padding: 7rem 1.5rem; }
.offer__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.offer__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.offer__card-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: .3rem; }
.offer__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: .7rem;
}
.offer__price span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.offer__desc { color: var(--ink-soft); margin-bottom: 1.4rem; }
.offer__list { list-style: none; margin: 0 0 1.6rem; padding: 1.4rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .75rem; }
.offer__list li { display: flex; gap: .7rem; font-size: .95rem; color: var(--ink); }
.offer__list li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }
.offer__closed { font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.offer__promo {
  display: inline-block;
  font-size: .85rem;
  color: var(--ink-soft);
  background: rgba(236,203,65,.14);
  border: 1px solid rgba(236,203,65,.35);
  border-radius: 100px;
  padding: .4rem .9rem;
  margin-bottom: 1rem;
}
.offer__promo strong { color: var(--ink); }
.offer__link { font-weight: 700; color: var(--red); }
.offer__note {
  max-width: 640px;
  margin: 2.2rem auto 0;
  text-align: center;
  font-size: .92rem;
  color: var(--ink-soft);
}

/* ===== FAQs (light section) ===== */
.faqs { padding: 7rem 1.5rem; }
.faqs__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq {
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
}
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
  overflow: hidden;
}
.faq__a p {
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--ink-soft);
  font-size: .95rem;
  min-height: 0;
}
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq.is-open .faq__a p { padding-bottom: 1.3rem; }
.faq.is-open .faq__icon { transform: rotate(45deg); background: var(--red); color: var(--white); }

/* ===== Contact (dark section) ===== */
.contact {
  padding: 7rem 1.5rem;
  background:
    radial-gradient(46% 40% at 18% 10%, rgba(194,52,36,.14), transparent 70%),
    var(--bg);
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__intro h2 { color: var(--white); }
.contact__email {
  display: inline-block;
  margin-top: 1.6rem;
  font-weight: 700;
  color: var(--red-glow);
  border-bottom: 1.5px solid rgba(255,107,82,.4);
  padding-bottom: .15rem;
}
.contact__sticker {
  display: block;
  margin-top: 1.8rem;
  width: 220px;
  max-width: 60%;
  height: auto;
}
.contact__form, .contact__success {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-on-dark);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.contact__hp { display: none; }
.field { display: flex; flex-direction: column; gap: .45rem; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
@media (max-width: 560px) { .field--half { grid-column: 1 / -1; } }
.field label { font-size: .85rem; font-weight: 700; color: var(--white); }
.field label span { font-weight: 400; opacity: .6; }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  color: var(--white);
  font-family: var(--body);
  font-size: .95rem;
  resize: vertical;
}
.field select { appearance: none; -webkit-appearance: none; }
.field select option { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red-glow);
  background: rgba(255,255,255,.1);
}
.contact__submit { grid-column: 1 / -1; justify-self: start; margin-top: .3rem; }
.contact__note { grid-column: 1 / -1; font-size: .82rem; color: rgba(255,255,255,.5); margin-top: -.4rem; }

.contact__success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  text-align: left;
}
.contact__success:not([hidden]) { display: flex; }
.contact__success-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}
.contact__success h3 { color: var(--white); }
.contact__success p { color: rgba(255,255,255,.75); }

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

/* ===== Footer ===== */
.footer { background: var(--bg); padding: 3rem 1.5rem 2.2rem; }
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 2rem;
}
.footer__mark { font-family: var(--display); font-weight: 700; letter-spacing: -.01em; font-size: 1.2rem; color: var(--white); display: block; margin-bottom: .3rem; }
.footer__brand p { color: rgba(255,255,255,.55); font-size: .88rem; }
.footer__brand p a { color: rgba(255,255,255,.75); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.footer__contact { display: flex; flex-direction: column; gap: .3rem; font-size: .9rem; }
.footer__contact span { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.footer__contact a { color: var(--red-glow); font-weight: 600; }
.footer__nav { display: flex; flex-direction: column; gap: .4rem; font-size: .9rem; }
.footer__nav span { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.footer__nav a { color: rgba(255,255,255,.75); font-weight: 600; }
.footer__nav a:hover { color: var(--white); }
.footer__legal { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; }
.footer__legal a { color: rgba(255,255,255,.55); }
.footer__legal a:hover { color: var(--white); }
.footer__meta { text-align: right; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__credit { opacity: .7; margin-top: .2rem; }
@media (max-width: 560px) {
  .footer__inner { flex-direction: column; }
  .footer__meta { text-align: left; }
}

/* ===== Responsive ===== */
@media (max-width: 620px) {
  .quiz, .why, .process, .faqs, .portfolio, .contact { padding-left: 1.1rem; padding-right: 1.1rem; }
  .contact__form, .contact__success { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
}

/* ===== Agent =====
   Scripted button-driven lead-capture widget — same pattern as the
   booking agent on glassyialab.com: a fixed state machine (no generative
   AI, no API key, no backend) that qualifies the visitor with a few
   button questions and captures contact info via the same Netlify Forms
   pipeline as the main contact form. Visibility is class-based
   (`.agent.is-open`), never the `hidden` attribute — this project's
   sibling sites hit a real bug where a component that both sets its own
   `display` unconditionally AND relies on `hidden` for initial state
   shows up expanded on first paint, because author CSS always beats the
   UA's `hidden` styling regardless of specificity. Avoided here from the
   start rather than fixed after. */
.agent {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
}
.agent__toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px -12px rgba(194,52,36,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.agent__toggle:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(194,52,36,.65); }
.agent__toggle-icon { width: 26px; height: 26px; position: absolute; transition: opacity .2s ease, transform .2s ease; }
.agent__toggle-icon--close { opacity: 0; transform: scale(.6) rotate(-45deg); }
.agent.is-open .agent__toggle-icon--chat { opacity: 0; transform: scale(.6) rotate(45deg); }
.agent.is-open .agent__toggle-icon--close { opacity: 1; transform: scale(1) rotate(0); }

.agent__panel {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: calc(100% + 1rem);
  width: min(360px, calc(100vw - 2.4rem));
  max-height: min(600px, 75vh);
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--line-on-dark);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.55);
}
.agent.is-open .agent__panel {
  display: flex;
  animation: agent-in .3s cubic-bezier(.16,.8,.24,1);
}
@keyframes agent-in {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.agent__header {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line-on-dark);
  flex-shrink: 0;
}
.agent__header-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3ecf6b;
  box-shadow: 0 0 8px 2px rgba(62,207,107,.6);
  flex-shrink: 0;
}
.agent__header strong { display: block; color: var(--white); font-size: .95rem; }
.agent__header span { display: block; color: rgba(255,255,255,.5); font-size: .76rem; }
.agent__body {
  padding: 1.3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.agent__msg {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  line-height: 1.5;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-on-dark);
  border-radius: 1rem 1rem 1rem .25rem;
  padding: .8rem 1rem;
  align-self: flex-start;
  max-width: 92%;
}
.agent__options { display: flex; flex-direction: column; gap: .55rem; }
.agent__option {
  text-align: left;
  padding: .7rem .9rem;
  border-radius: .9rem;
  border: 1px solid var(--line-on-dark);
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.agent__option:hover { border-color: rgba(255,107,82,.5); background: rgba(255,255,255,.08); transform: translateX(2px); }
.agent__choice {
  align-self: flex-end;
  background: var(--red);
  color: var(--white);
  border-radius: 1rem 1rem .25rem 1rem;
  padding: .7rem .95rem;
  font-size: .88rem;
  font-weight: 600;
  max-width: 85%;
}
.agent__form { display: flex; flex-direction: column; gap: .7rem; }
.agent__form label { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.6); }
.agent__form input {
  width: 100%;
  margin-top: .3rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .7rem;
  padding: .65rem .8rem;
  color: var(--white);
  font-family: var(--body);
  font-size: .9rem;
}
.agent__form input:focus { outline: none; border-color: var(--red-glow); }
.agent__submit {
  align-self: flex-start;
  margin-top: .2rem;
}
.agent__done {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.agent__done-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .agent { right: 1rem; bottom: 1rem; }
  .agent__toggle { width: 52px; height: 52px; }
  .agent__panel { bottom: calc(100% + .8rem); }
}

/* ===== Promo popup (time-limited offer) ===== */
.promo {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(4px);
}
.promo.is-open { display: flex; }
.promo__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, #171717, #050505);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
  animation: promo-in .4s cubic-bezier(.16,.8,.24,1);
}
@keyframes promo-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .promo__card { animation: none; }
}
.promo__close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-on-dark);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.promo__close:hover { background: rgba(255,255,255,.12); color: var(--white); }
.promo__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.promo__card h3 { color: var(--white); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .8rem; }
.promo__body p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 1.4rem; }
.promo__body strong { color: var(--red-glow); }
.promo__form { display: flex; gap: .6rem; flex-wrap: wrap; }
.promo__hp { display: none; }
.promo__form input {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--white);
  font-family: var(--body);
  font-size: .95rem;
}
.promo__form input::placeholder { color: rgba(255,255,255,.4); }
.promo__form input:focus { outline: none; border-color: var(--red-glow); background: rgba(255,255,255,.1); }
.promo__dismiss {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.promo__dismiss:hover { color: var(--white); }
.promo__fine { margin-top: .9rem; font-size: .78rem; color: rgba(255,255,255,.35); }
.promo__success { display: none; text-align: center; }
.promo__success:not([hidden]) { display: block; }
.promo__success-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.promo__success h3 { color: var(--white); margin-bottom: .5rem; }
.promo__success p { color: rgba(255,255,255,.7); font-size: .95rem; }
@media (max-width: 480px) {
  .promo__form { flex-direction: column; }
  .promo__form button { width: 100%; }
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}
.cookie-banner p { margin: 0; flex: 1 1 260px; line-height: 1.5; color: rgba(255,255,255,.85); }
.cookie-banner a { color: var(--red-glow); }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner__btn {
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--body);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
}
.cookie-banner__btn--accept { background: var(--red); border-color: var(--red); }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* ===== Blog: listing ===== */
.blog-hero {
  padding: clamp(7rem, 14vw, 9rem) 1.5rem 3.5rem;
  background: var(--bg);
}
.blog-list { padding: 1rem 1.5rem 7rem; background: var(--bg); }
.blog-list__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--line-on-dark);
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.16,.8,.24,1), box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -22px rgba(0,0,0,.55); }
.blog-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-glow);
}
.blog-card h2 { color: var(--white); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.3; }
.blog-card p { color: rgba(255,255,255,.65); font-size: .93rem; flex: 1; }
.blog-card__meta { color: rgba(255,255,255,.4); font-size: .78rem; }

/* ===== Blog: article ===== */
.article-hero {
  padding: clamp(7rem, 14vw, 9rem) 1.5rem 3rem;
  background: var(--bg);
}
.article-hero__inner { max-width: 760px; margin: 0 auto; }
.article-hero__back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.6rem;
}
.article-hero__back:hover { color: var(--white); }
.article-hero__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-glow);
  margin-bottom: .9rem;
}
.article-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.12; margin-bottom: 1rem; }
.article-hero__meta { color: rgba(255,255,255,.45); font-size: .85rem; }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.article-body h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 2.6rem 0 1rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.1rem; margin: 1.8rem 0 .7rem; }
.article-body p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.3rem; }
.article-body p strong { color: var(--ink); }
.article-body ul, .article-body ol { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; margin: 0 0 1.3rem 1.3rem; }
.article-body li { margin-bottom: .5rem; }
.article-body a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article-body__lede { font-size: 1.15rem !important; color: var(--ink) !important; }
.article-cta {
  margin: 3rem 0;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  text-align: center;
}
.article-cta h3 { margin-bottom: .6rem; }
.article-cta p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.article-table-wrap { overflow-x: auto; margin: 0 0 1.5rem; }
.article-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.article-table th, .article-table td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); font-size: .92rem; }
.article-table th { font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); background: var(--paper-deep); }
.article-related {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.article-related h3 { margin-bottom: 1.2rem; }
.article-related__list { display: grid; gap: .8rem; }
.article-related__list a {
  display: block;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}
.article-related__list a:hover { background: var(--line); }
