/* ============================================================
   ITÁLICA — Lavender Risograph Monumentalism
   ============================================================ */

:root {
  --cream: #F8EDD9;
  --cream-deep: #EFE1C6;
  --cobalt: #1E3FB8;
  --cobalt-deep: #142C8A;
  --ink: #061B50;
  --ink-soft: #3D4A78;
  --lavender: #D7CCF5;
  --lavender-light: #F1EAFB;
  --indigo: #1B1746;
  --signal: #F3B79A;

  --font: "Sora", "Neue Montreal", "Aktiv Grotesk", system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 88px);
  --nav-h: 72px;
  --rule: 1px solid color-mix(in srgb, var(--cobalt) 32%, transparent);
  --rule-light: 1px solid color-mix(in srgb, var(--cream) 30%, transparent);

  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ---------- browser surfaces ---------- */
::selection { background: var(--cobalt); color: var(--cream); }
.why ::selection, .hero ::selection, .numbers ::selection, .cta ::selection { background: var(--cream); color: var(--cobalt); }
:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 4px; }
.hero :focus-visible, .numbers :focus-visible, .cta :focus-visible, .why :focus-visible { outline-color: var(--cream); }
html { scrollbar-color: var(--cobalt) var(--cream); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 60;
  opacity: .11;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.16 0 0 0 0 0.45 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(4) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- type ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; color: var(--cobalt);
  display: flex; align-items: center; gap: 14px;
}
.eyebrow .num { font-weight: 300; opacity: .8; }
.eyebrow--light { color: var(--lavender-light); }

.h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02; letter-spacing: -.03em; font-weight: 500;
  color: var(--cobalt);
  text-wrap: balance;
}
.h2--light { color: var(--lavender-light); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.5; color: var(--ink); }
.link {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: var(--cobalt); border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: opacity .3s;
}
.link:hover { opacity: .6; }
.link--light { color: var(--lavender-light); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; min-height: 44px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid transparent; white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s, transform .35s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn--solid { background: var(--cobalt); color: var(--cream); border-color: var(--cobalt); }
.btn--solid:hover { background: var(--cobalt-deep); border-color: var(--cobalt-deep); }
.btn--cream { background: var(--cream); color: var(--cobalt); border-color: var(--cream); }
.btn--cream:hover { background: var(--lavender-light); }
.btn--ghost-light { color: var(--lavender-light); border-color: color-mix(in srgb, var(--lavender-light) 55%, transparent); }
.btn--ghost-light:hover { background: color-mix(in srgb, var(--lavender-light) 14%, transparent); border-color: var(--lavender-light); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--gutter);
  color: var(--lavender-light);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  color: var(--cobalt);
  border-bottom: var(--rule);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 18px; height: 24px; fill: currentColor; }
.brand__word { font-size: 20px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.nav__links { display: flex; gap: 34px; justify-self: center; }
.nav__links a {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { justify-self: end; display: flex; align-items: center; gap: 22px; }
.lang { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .14em; font-weight: 500; }
.lang a { opacity: .5; transition: opacity .3s; padding: 6px 2px; }
.lang a[aria-current="page"], .lang a:hover { opacity: 1; }
.nav .btn--solid { padding: 12px 18px; min-height: 40px; }
.nav:not(.is-scrolled) .btn--solid { background: var(--cream); color: var(--cobalt); border-color: var(--cream); }

.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 49;
  background: var(--cream); padding: 40px var(--gutter);
  display: flex; flex-direction: column; gap: 22px;
  border-top: var(--rule);
}
.mobile-menu a:not(.btn) { font-size: 2rem; font-weight: 500; letter-spacing: -.02em; color: var(--cobalt); }
.mobile-menu .btn { align-self: flex-start; margin-top: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  overflow: hidden; background: var(--indigo);
  color: var(--lavender-light);
}
.hero__img { position: absolute; inset: 0; }
.hero__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%;
  transform: scale(1.08);
  animation: heroIn 2.2s var(--ease-out) forwards;
  will-change: transform;
}
@keyframes heroIn { to { transform: scale(1); } }
:lang(es) .hero__title { font-size: clamp(2.6rem, 5.6vw, 5.2rem); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(27,23,70,.66) 0%, rgba(27,23,70,.36) 40%, rgba(27,23,70,0) 66%),
    linear-gradient(180deg, rgba(27,23,70,.35) 0%, rgba(27,23,70,0) 30%, rgba(27,23,70,.45) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 40px) var(--gutter) clamp(56px, 10vh, 120px);
  max-width: 720px;
}
.hero__title {
  font-size: clamp(2.8rem, 6.4vw, 5.8rem);
  line-height: .98; letter-spacing: -.035em; font-weight: 500;
  margin: 0 0 26px; color: #fff;
  text-wrap: balance;
}
.hero__sub { font-size: clamp(1rem, 1.35vw, 1.2rem); max-width: 560px; color: var(--lavender-light); opacity: .92; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note { margin-top: 28px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .78; }

.hero__content > * { opacity: 0; transform: translateY(24px); animation: rise 1.2s var(--ease-out) forwards; }
.hero__content > :nth-child(1) { animation-delay: .35s; }
.hero__content > :nth-child(2) { animation-delay: .55s; }
.hero__content > :nth-child(3) { animation-delay: .75s; }
.hero__content > :nth-child(4) { animation-delay: .95s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 36px; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; opacity: 0;
  animation: rise 1s 1.4s var(--ease-out) forwards;
}
.hero__scroll i { display: block; width: 1px; height: 48px; background: currentColor; transform-origin: top; animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden; border-top: var(--rule); border-bottom: var(--rule);
  padding: 14px 0; color: var(--cobalt);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.ticker__track { display: flex; width: max-content; animation: ticker 60s linear infinite; }
.ticker__track span { padding-right: 1em; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-25%); } }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(72px, 10vw, 140px) var(--gutter); }
.section__head {
  display: flex; align-items: center; gap: 24px;
  padding-bottom: 18px; margin-bottom: clamp(40px, 6vw, 88px);
  border-bottom: var(--rule);
}
.rail { position: relative; width: 28px; height: 1px; }
.rail::before, .rail::after, .rail {
  background: color-mix(in srgb, var(--cobalt) 55%, transparent);
}
.rail::before, .rail::after { content: ""; position: absolute; left: 0; width: 100%; height: 1px; }
.rail::before { top: -6px; } .rail::after { top: 6px; }
.rail--light, .rail--light::before, .rail--light::after { background: color-mix(in srgb, var(--cream) 45%, transparent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal--delay { transition-delay: .15s; }
.reveal--delay2 { transition-delay: .3s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- manifesto ---------- */
.manifesto__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.manifesto__text { padding-top: clamp(8px, 2vw, 32px); display: flex; flex-direction: column; gap: 26px; max-width: 520px; }
.manifesto__text .h2 { margin-bottom: 6px; }
.manifesto__text .link { align-self: flex-start; }
.manifesto__fig { justify-self: end; width: calc(100% + var(--gutter)); max-width: 760px; margin-right: calc(-1 * var(--gutter)); margin-bottom: calc(-1 * clamp(72px, 10vw, 140px)); }
.manifesto__fig img {
  width: 100%; height: auto;
  mix-blend-mode: darken;
  -webkit-mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
}

/* ---------- how ---------- */
.how { border-top: var(--rule); }
.how__layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.how__intro { display: flex; flex-direction: column; gap: 40px; }
.how__fig { width: calc(100% + var(--gutter)); max-width: 680px; margin-left: calc(-1 * var(--gutter)); }
.how__fig img { width: 100%; height: auto; mix-blend-mode: darken; }

.steps {
  display: grid; grid-template-columns: 1fr 1fr;
  border: var(--rule); position: relative;
}
.steps::before, .steps::after {
  content: ""; position: absolute; width: 7px; height: 7px; background: var(--cobalt);
  border-radius: 50%; z-index: 1;
}
.steps::before { top: -4px; left: -4px; }
.steps::after { bottom: -4px; right: -4px; }
.step {
  padding: 28px 28px 34px; min-height: 260px;
  display: flex; flex-direction: column; gap: 14px;
  border-right: var(--rule); border-bottom: var(--rule);
  transition: background .5s var(--ease), color .5s var(--ease);
  color: var(--cobalt);
}
.step:nth-child(2n) { border-right: 0; }
.step:nth-last-child(-n+2) { border-bottom: 0; }
.step__n { font-size: 11px; letter-spacing: .18em; font-weight: 500; }
.step h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; }
.step p { margin-top: auto; font-size: .95rem; line-height: 1.5; color: var(--ink); max-width: 30ch; }
.step--solid, .step:hover { background: var(--cobalt); color: var(--cream); }
.step--solid p, .step:hover p { color: var(--cream); }
.steps:hover .step--solid:not(:hover) { background: transparent; color: var(--cobalt); }
.steps:hover .step--solid:not(:hover) p { color: var(--ink); }

/* ---------- numbers ---------- */
.numbers {
  position: relative; overflow: hidden; background: var(--indigo);
  min-height: 78vh; display: grid; align-items: center;
  color: var(--lavender-light);
}
.numbers__img { position: absolute; inset: 0; }
.numbers__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; will-change: transform; }
.numbers::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,23,70,.7) 0%, rgba(27,23,70,.4) 40%, rgba(27,23,70,0) 68%);
}
.numbers__content { position: relative; z-index: 1; padding: clamp(80px, 12vw, 160px) var(--gutter); max-width: 860px; }
.numbers__content .h2 { margin: 24px 0 56px; }
.stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(24px, 5vw, 72px); justify-content: start; }
.stat dt { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; letter-spacing: -.04em; font-weight: 300; font-variant-numeric: tabular-nums; }
.stat dt small { font-size: .38em; letter-spacing: 0; font-weight: 400; }
.stat dd { margin: 12px 0 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; max-width: 18ch; }

/* ---------- coverage ---------- */
.coverage__layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.coverage__intro { position: sticky; top: calc(var(--nav-h) + 32px); display: flex; flex-direction: column; gap: 24px; max-width: 440px; }
.coverage__intro .btn { align-self: flex-start; margin-top: 8px; }

.lines { border-top: var(--rule); }
.line {
  display: grid; grid-template-columns: 44px 1fr; grid-template-areas: "n t" "n d";
  column-gap: 12px; padding: 22px 16px 22px 0;
  border-bottom: var(--rule); position: relative; overflow: hidden;
  color: var(--cobalt); cursor: default;
  transition: color .45s var(--ease);
}
.line::before {
  content: ""; position: absolute; inset: 0; background: var(--cobalt);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); z-index: 0;
}
.line > * { position: relative; z-index: 1; transition: transform .45s var(--ease); }
.line__n { grid-area: n; font-size: 11px; letter-spacing: .18em; font-weight: 500; padding-top: 6px; }
.line__t { grid-area: t; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 500; letter-spacing: -.02em; }
.line__d {
  grid-area: d; font-size: .95rem; color: var(--ink-soft);
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .5s var(--ease), opacity .45s var(--ease);
}
.line__d > span { overflow: hidden; }
.line:hover, .line:focus-visible { color: var(--cream); outline: none; }
.line:hover > *, .line:focus-visible > * { transform: translateX(16px); }
.line:hover::before, .line:focus-visible::before { transform: scaleX(1); }
.line:hover .line__d, .line:focus-visible .line__d { grid-template-rows: 1fr; opacity: 1; color: var(--cream); }
.line:hover .line__d > span, .line:focus-visible .line__d > span { padding-top: 8px; }

/* ---------- why (cobalt) ---------- */
.why { background: var(--cobalt); color: var(--cream); }
.why .section__head { border-bottom: var(--rule-light); }
.why .h2 { max-width: 14ch; margin-bottom: clamp(40px, 6vw, 80px); color: var(--cream); }
.compare { border-top: var(--rule-light); }
.compare__row {
  display: grid; grid-template-columns: 1fr 1.2fr 1.2fr; gap: 24px;
  padding: 22px 0; border-bottom: var(--rule-light); align-items: baseline;
}
.compare__row--head { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; opacity: .75; }
.compare__row [role="rowheader"] { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; opacity: .75; }
.compare__row [role="cell"] { font-size: clamp(1rem, 1.4vw, 1.2rem); opacity: .7; }
.compare__row .compare__us { opacity: 1; font-weight: 500; color: #fff; }
.compare__row--head .compare__us { color: #fff; }

/* ---------- m&a due diligence ---------- */
.ma { border-top: var(--rule); }
.ma__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.ma__fig { overflow: hidden; }
.ma__fig img { width: 100%; height: auto; transition: transform 1.4s var(--ease-out); }
.ma__fig:hover img { transform: scale(1.03); }
.ma__text { display: flex; flex-direction: column; gap: 26px; }
.ma__text .h2 { max-width: 14ch; }
.ma__sides { display: grid; grid-template-columns: 1fr 1fr; border-top: var(--rule); }
.ma__side { padding: 22px 24px 26px 0; border-bottom: var(--rule); }
.ma__side + .ma__side { padding-left: 24px; border-left: var(--rule); }
.ma__side h3 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--cobalt); margin-bottom: 12px; }
.ma__side p { font-size: .95rem; line-height: 1.5; color: var(--ink); }
.ma__text .link { align-self: flex-start; }

/* ---------- faq ---------- */
.faq { border-top: var(--rule); }
.faq__layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq__list { border-top: var(--rule); }
.qa { border-bottom: var(--rule); }
.qa summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); font-weight: 500; letter-spacing: -.01em; color: var(--cobalt);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { position: relative; flex: 0 0 18px; height: 18px; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; background: var(--cobalt); inset: 50% auto auto 0; width: 18px; height: 1px; transition: transform .4s var(--ease); }
.qa summary i::after { transform: rotate(90deg); }
.qa[open] summary i::after { transform: rotate(0); }
.qa p { padding: 0 0 26px; max-width: 58ch; color: var(--ink); }
.qa[open] p { animation: rise .6s var(--ease-out); }

/* ---------- final cta ---------- */
.cta {
  position: relative; overflow: hidden; background: var(--indigo);
  min-height: 90vh; display: grid; align-items: center; justify-items: end;
  color: var(--lavender-light);
}
.cta__img { position: absolute; inset: 0; }
.cta__img img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; will-change: transform; }
/* The form needs a legible ground: the veil now covers the whole content column. */
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(270deg, rgba(27,23,70,.8) 0%, rgba(27,23,70,.68) 32%, rgba(27,23,70,.3) 58%, rgba(27,23,70,0) 78%); }
.cta__content { position: relative; z-index: 1; padding: clamp(80px, 12vw, 160px) var(--gutter); max-width: 620px; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.cta__content .h2 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
.cta__content > p { font-size: clamp(1rem, 1.35vw, 1.2rem); opacity: .9; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 8px; justify-content: flex-end; }

/* ---------- contact form (lives in the final cta, over the image) ---------- */
/* The heading stays right-aligned with the section; the form reads as a left-aligned block. */
.form {
  width: 100%; text-align: left; color-scheme: dark;
  display: flex; flex-direction: column; gap: 20px; margin-top: 10px;
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
/* Bot trap: off-screen rather than display:none, so bots still fill it in. */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.field--wide { grid-column: 1 / -1; }
.field__label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; color: var(--lavender-light); opacity: .75;
}
.field__input {
  font: inherit; font-size: 15px; line-height: 1.45; color: var(--cream);
  width: 100%; padding: 12px 14px; min-height: 46px; border-radius: 0;
  background: color-mix(in srgb, var(--cream) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cream) 34%, transparent);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.field__input::placeholder { color: var(--lavender-light); opacity: .62; }
.field__input:hover { border-color: color-mix(in srgb, var(--cream) 55%, transparent); }
.field__input:focus { background: color-mix(in srgb, var(--cream) 18%, transparent); border-color: var(--cream); }
.field__input--area { resize: vertical; min-height: 96px; }

.field__consent {
  display: flex; align-items: flex-start; gap: 12px; margin: 0;
  font-size: .9rem; line-height: 1.5; color: var(--lavender-light); opacity: .88;
}
.field__check { flex: none; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--cream); }
.field__legal { border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity .3s; }
.field__legal:hover { opacity: .65; }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.form__foot .btn { min-width: 200px; }
.form__foot .btn[disabled] { cursor: progress; opacity: .6; }
.form__status { margin: 0; max-width: 40ch; font-size: .9rem; line-height: 1.45; color: var(--lavender-light); }
.form__status--ok { color: var(--cream); }
.form__status--error { color: var(--signal); }

.cta__content > .cta__alt {
  align-self: stretch; text-align: left; font-size: .9rem; opacity: .75;
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px;
}

/* ---------- footer ---------- */
.footer { position: relative; background: var(--cream); color: var(--cobalt); overflow: hidden; }
.footer__top {
  position: relative; z-index: 1;
  padding: clamp(64px, 9vw, 120px) var(--gutter) 0;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(32px, 6vw, 96px);
}
.footer__brand { display: flex; flex-direction: column; gap: 22px; }
.footer__brand p { max-width: 34ch; color: var(--ink-soft); }
.footer__brand .brand__word { font-size: 26px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols .footer__h { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer__cols a { display: block; padding: 5px 0; color: var(--ink-soft); font-size: .95rem; transition: color .3s; }
.footer__cols a:hover { color: var(--cobalt); }
.footer__copy { grid-column: 1 / -1; padding: clamp(40px, 6vw, 80px) 0 0; font-size: .95rem; }
.footer__img { position: relative; margin-top: -6vw; }
.footer__img img {
  width: 100%; height: auto; mix-blend-mode: darken;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 34%);
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: auto 1fr; }
  .nav__right { gap: 14px; }
  .nav .btn--solid { display: none; }
  .nav__burger { display: flex; }
  .manifesto__grid, .how__layout, .coverage__layout, .ma__layout, .faq__layout { grid-template-columns: 1fr; }
  .manifesto__fig { justify-self: end; width: min(100%, 480px); margin-right: calc(-1 * var(--gutter)); margin-bottom: calc(-1 * clamp(72px, 10vw, 140px)); }
  .how__fig { width: min(100%, 520px); margin-left: calc(-1 * var(--gutter)); }
  .coverage__intro { position: static; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero__img img { object-position: 42% 50%; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; min-height: 0; }
  .step:nth-last-child(-n+2) { border-bottom: var(--rule); }
  .step:last-child { border-bottom: 0; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .compare__row { grid-template-columns: 1fr; gap: 6px; }
  .compare__row--head { display: none; }
  .compare__row [role="cell"]:not(.compare__us)::before { content: "✕  "; opacity: .6; }
  .compare__row .compare__us::before { content: "Itálica  →  "; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .ma__sides { grid-template-columns: 1fr; }
  .ma__side + .ma__side { padding-left: 0; border-left: 0; }
  .form__grid { grid-template-columns: 1fr; }
  .form__foot .btn { width: 100%; min-width: 0; }
  .cta { justify-items: start; }
  .cta::after { background: linear-gradient(180deg, rgba(27,23,70,.25) 0%, rgba(27,23,70,.62) 45%, rgba(27,23,70,.78) 100%); }
  .cta__content { text-align: left; align-items: flex-start; }
  .cta__actions { justify-content: flex-start; }
  .numbers::after { background: linear-gradient(180deg, rgba(27,23,70,.55) 0%, rgba(27,23,70,.5) 60%, rgba(27,23,70,.7) 100%); }
  .footer__img { margin-top: -2vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__content > *, .hero__scroll { opacity: 1; transform: none; }
  .grain { animation: none; }
}

/* ---------- legal pages ---------- */
.legal { padding: calc(var(--nav-h) + clamp(48px, 8vw, 110px)) var(--gutter) clamp(72px, 10vw, 140px); }
.legal__inner { max-width: 72ch; }
.legal h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -.03em; font-weight: 500; color: var(--cobalt); text-wrap: balance; margin-bottom: 14px; }
.legal__updated { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); margin-bottom: clamp(32px, 5vw, 56px); padding-bottom: 18px; border-bottom: var(--rule); }
.legal h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.15; letter-spacing: -.02em; font-weight: 600; color: var(--cobalt); margin: clamp(36px, 5vw, 56px) 0 14px; }
.legal h3 { font-size: 1.05rem; font-weight: 600; color: var(--cobalt); margin: 26px 0 8px; }
.legal p, .legal li { line-height: 1.6; }
.legal p + p { margin-top: 14px; }
.legal ul, .legal ol { padding-left: 1.2em; margin: 12px 0 16px; }
.legal ul { list-style: disc; } .legal ol { list-style: decimal; }
.legal li + li { margin-top: 6px; }
.legal a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal strong { font-weight: 600; }
mark.todo { background: color-mix(in srgb, var(--cobalt) 12%, transparent); color: var(--cobalt); padding: 0 .3em; border-bottom: 1px dashed var(--cobalt); font-weight: 500; }
.page-legal .nav, .page-404 .nav { color: var(--cobalt); }
.page-legal .nav:not(.is-scrolled) .btn--solid, .page-404 .nav:not(.is-scrolled) .btn--solid { background: var(--cobalt); color: var(--cream); border-color: var(--cobalt); }

/* ---------- 404 ---------- */
.not-found { min-height: 100svh; display: grid; align-items: center; padding: calc(var(--nav-h) + 40px) var(--gutter) 80px; }
.not-found__code { font-size: clamp(5rem, 16vw, 14rem); line-height: .9; letter-spacing: -.05em; font-weight: 300; color: var(--cobalt); }
.not-found p { margin: 20px 0 30px; max-width: 46ch; }
