/* palette: bg=#FFFFFF fg=#0A0A0F accent=#3A31E8 */
/* fonts: display="Archivo" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F3F3F6;
  --fg: #0A0A0F;
  --fg-soft: #26262E;
  --muted: #6B6B76;
  --accent: #3A31E8;
  --accent-deep: #2A22C4;
  --dark: #0A0A0F;
  --dark-2: #131320;
  --line: #E4E4E9;
  --border: rgba(10, 10, 15, 0.12);
  --serif: 'Archivo', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; margin: 0; }
p { margin: 0; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: clamp(72px, 12vw, 160px) 0; }
.section--tight { padding: clamp(56px, 8vw, 110px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #EDEDF2; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section--dark .eyebrow { color: #8f89ff; }
.section--dark .eyebrow::before { background: #8f89ff; }

.h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  line-height: 1.65;
  color: var(--fg-soft);
  max-width: 60ch;
}
.section--dark .lead { color: #b9b9c6; }
.muted { color: var(--muted); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid var(--fg);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }
.btn--light { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--light:hover { background: #fff; color: var(--dark); border-color: #fff; transform: translateY(-2px); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 15px; color: var(--accent); border-color: var(--accent); }
.link-arrow span { transition: transform 0.3s var(--ease); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(10, 10, 15, 0.35);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .header__inner { height: 76px; padding: 0 32px; } }
.brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand__dot { width: 9px; height: 9px; background: var(--accent); display: inline-block; border-radius: 1px; }
.nav { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; gap: 34px; }
}
.nav__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--fg); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 96px 24px 40px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu__foot { margin-top: auto; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05) brightness(0.72);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.55) 0%, rgba(10,10,15,0.12) 32%, rgba(10,10,15,0.72) 100%),
    linear-gradient(90deg, rgba(58,49,232,0.22) 0%, rgba(10,10,15,0) 55%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px clamp(48px, 8vw, 96px);
}
@media (min-width: 768px) { .hero__inner { padding: 0 32px clamp(64px, 8vw, 110px); } }
.hero .eyebrow { color: #b9b4ff; }
.hero .eyebrow::before { background: #b9b4ff; }
.hero__title {
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 15ch;
  margin: 0 0 28px;
}
.hero__title em { font-style: normal; color: #8f89ff; }
.hero__sub {
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.6;
  color: #cfcfdb;
  max-width: 54ch;
  margin: 0 0 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  position: absolute;
  top: clamp(90px, 12vh, 130px);
  right: 32px;
  z-index: 1;
  display: none;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 1024px) { .hero__meta { display: block; } }
.hero__meta strong { display: block; color: #fff; font-weight: 500; font-size: 13px; margin-bottom: 2px; }
.hero__meta + .hero__meta { margin-top: 26px; }

/* ---------- Statement / manifesto ---------- */
.statement { text-align: center; }
.statement__text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto;
}
.statement__text em { font-style: normal; color: var(--accent); }
.statement__foot {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Section head ---------- */
.section__head {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(48px, 7vw, 84px);
}
@media (min-width: 900px) {
  .section__head { grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 48px; }
  .section__head .lead { justify-self: end; }
}

/* ---------- Feature split ---------- */
.feature { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
  .feature--rev .feature__media { order: 2; }
}
.feature + .feature { margin-top: clamp(72px, 10vw, 150px); }
.feature__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__index {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(10,10,15,0.55);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.feature__body h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
}
.feature__body p { color: var(--fg-soft); margin-bottom: 26px; }
.feature__list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 0; }
.feature__list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--fg-soft);
}
.feature__list li:last-child { border-bottom: 1px solid var(--line); }
.feature__list b { font-family: var(--mono); font-size: 12px; color: var(--accent); font-weight: 500; min-width: 34px; }

/* ---------- Principles (numbered essay) ---------- */
.principles { display: grid; gap: 0; }
.principle {
  display: grid;
  gap: 14px;
  padding: clamp(34px, 5vw, 54px) 0;
  border-top: 1px solid var(--line);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) {
  .principle { grid-template-columns: 120px 1fr 1.2fr; gap: 48px; align-items: start; }
}
.principle__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.principle h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.principle p { color: var(--fg-soft); font-size: 16px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--dark); padding: clamp(30px, 5vw, 52px) clamp(22px, 3vw, 34px); }
.stat__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.stat__num em { font-style: normal; color: #8f89ff; }
.stat__label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a2a2b2;
}

/* ---------- Cards ---------- */
.cards { display: grid; gap: 24px; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px -10px rgba(10,10,15,0.16); border-color: var(--fg); }
.card__idx {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 26px;
}
.card h3 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 14px; }
.card p { color: var(--fg-soft); font-size: 15.5px; margin-bottom: 26px; }
.card__foot { margin-top: auto; }

/* ---------- Pull quote ---------- */
.quote { text-align: left; max-width: 22ch; }
.quote__mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.6;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.quote__text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.6vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.section--dark .quote__mark { color: #8f89ff; }
.quote__cite {
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .quote__cite { color: #9a9aac; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.faq__icon::before { top: 11px; left: 0; width: 24px; height: 2px; }
.faq__icon::after { top: 0; left: 11px; width: 2px; height: 24px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__body { padding: 0 44px 30px 0; color: var(--fg-soft); font-size: 16px; max-width: 74ch; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta__title {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
  margin: 0 auto 30px;
}
.cta__title em { font-style: normal; color: var(--accent); }
.section--dark .cta__title em { color: #8f89ff; }
.cta__sub { margin: 0 auto 40px; max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: clamp(48px, 6vw, 90px); } }
.contact-info dl { margin: 0; display: grid; gap: 0; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-info dd { margin: 6px 0 24px; font-size: 17px; color: var(--fg); }
.contact-info dd a:hover { color: var(--accent); }

.contact-form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  border-radius: 0;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,49,232,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; gap: 22px; }
@media (min-width: 600px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.form-consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #c7c7d2; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__grid { display: grid; gap: 48px; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer__brand .brand { color: #fff; font-size: 24px; margin-bottom: 20px; }
.footer__brand p { color: #9a9aac; max-width: 34ch; font-size: 15px; }
.footer__col h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d7d8e;
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.footer__col a { font-size: 15px; color: #c7c7d2; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__col address { font-style: normal; font-size: 15px; line-height: 1.7; color: #9a9aac; }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d7d8e;
}
.footer__bottom a:hover { color: #fff; }

/* ---------- Cookie popup ---------- */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 36px;
  max-width: 480px;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.4);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 { font-size: 1.4rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.cookie-popup__card p { font-size: 14px; color: var(--fg-soft); line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button {
  padding: 12px 24px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  flex: 1;
}
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: clamp(120px, 16vw, 200px) 0 clamp(56px, 8vw, 96px); border-bottom: 1px solid var(--line); }
.page-hero__eyebrow { margin-bottom: 26px; }
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead { margin-top: 28px; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.015em; margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.prose p { color: var(--fg-soft); margin-bottom: 18px; }
.prose ul { color: var(--fg-soft); padding-left: 20px; margin-bottom: 18px; display: grid; gap: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose__updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Big obrigado ---------- */
.thanks { min-height: 78vh; display: flex; align-items: center; }
.thanks h1 { font-size: clamp(3rem, 9vw, 7rem); line-height: 0.96; letter-spacing: -0.03em; margin-bottom: 24px; }
.thanks h1 em { font-style: normal; color: var(--accent); }
