/* palette: bg=#F2F1EC fg=#15202E accent=#166D3D */
/* fonts: display="Fraunces" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #F2F1EC;
  --bg-alt: #FFFFFF;
  --bg-deep: #15202E;
  --fg: #15202E;
  --fg-soft: #2A3344;
  --muted: #6B7280;
  --accent: #166D3D;
  --accent-deep: #0F4F2C;
  --accent-soft: #D8E9DF;
  --border: rgba(21, 32, 46, 0.10);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1240px;
}

*, *::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; letter-spacing: -0.025em; line-height: 1.06; margin: 0; color: var(--fg); }
p { margin: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow strong { color: var(--accent); font-weight: 600; }

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242, 241, 236, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-color: var(--border);
  box-shadow: 0 4px 24px -16px rgba(21, 32, 46, 0.18);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--fg);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.brand__mark::before { content: 'nv'; }
.brand__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nav { display: flex; gap: 36px; align-items: center; }
.nav a {
  font-size: 14.5px; font-weight: 500;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--accent); }
.nav a[aria-current="page"] {
  color: var(--fg);
}
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--accent);
}
.header__cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.header__cta:hover { background: var(--accent-deep); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.3s 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 {
  position: fixed; inset: 64px 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .header__cta { margin-top: 24px; text-align: center; }

@media (max-width: 880px) {
  .nav, .header__cta:not(.mobile-menu .header__cta) { display: none; }
  .menu-toggle { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding: clamp(60px, 12vw, 140px) 0 clamp(80px, 14vw, 160px);
  position: relative;
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero__eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__lede {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--fg); }
.btn--inverse { background: var(--bg); color: var(--bg-deep); }
.btn--inverse:hover { background: #fff; }

.hero__visual {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--accent-soft);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  animation: heroZoom 9s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__visual::after {
  content: ''; position: absolute; inset: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, rgba(22, 109, 61, 0.18), transparent 60%);
  pointer-events: none;
}
.hero__visual svg { position: relative; width: 78%; height: 78%; color: var(--accent-deep); opacity: 0.7; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 360px; margin: 20px auto 0; }
}

/* ─── STATS ──────────────────────────────────────────── */
.stats {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.stats__lead h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 16px;
}
.stats__lead p { color: var(--fg-soft); max-width: 460px; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 0.9;
  margin-bottom: 14px;
}
.stat__label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-soft);
}
@media (max-width: 880px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats__lead { grid-column: 1 / -1; }
}

/* ─── SPLIT SECTION (two-col image + text) ─────────── */
.split {
  padding: clamp(80px, 12vw, 140px) 0;
}
.split__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split--reverse .split__grid > :first-child { order: 2; }
.split__media {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--accent-soft);
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.split:hover .split__media img { transform: scale(1.03); }

.split h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin: 18px 0 22px;
}
.split__body p {
  color: var(--fg-soft);
  margin-bottom: 16px;
}
.split__body p + p { margin-top: 0; }
.split__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.split__list li {
  display: flex; gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
}
.split__list li:last-child { border-bottom: 1px solid var(--border); }
.split__list strong { font-weight: 600; min-width: 32px; color: var(--accent); font-family: var(--mono); font-size: 13px; }

@media (max-width: 880px) {
  .split__grid { grid-template-columns: 1fr; }
  .split--reverse .split__grid > :first-child { order: 0; }
}

/* ─── CATALOG GRID (programs/courses) ────────────────── */
.catalog {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.catalog__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.catalog h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  max-width: 720px;
}
.catalog__intro { color: var(--fg-soft); max-width: 380px; }
.catalog__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.course-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(21, 32, 46, 0.18);
}
.course-card__tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.course-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.course-card p { color: var(--fg-soft); margin-bottom: 28px; }
.course-card__meta {
  display: flex; justify-content: space-between; align-items: end;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
}
.course-card__hours { color: var(--muted); font-family: var(--mono); }
.course-card__cta { color: var(--accent); font-weight: 500; display: inline-flex; gap: 8px; align-items: center; }
.course-card__cta::after { content: '→'; transition: transform 0.2s var(--ease); }
.course-card:hover .course-card__cta::after { transform: translateX(3px); }
@media (max-width: 720px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .course-card { padding: 26px; }
}

/* ─── MANIFESTO / QUOTE ──────────────────────────────── */
.manifesto {
  padding: clamp(80px, 14vw, 160px) 0;
  background: var(--bg-deep);
  color: #ECECE7;
}
.manifesto__inner { max-width: 920px; margin: 0 auto; text-align: center; }
.manifesto__mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 14px;
}
.manifesto h2 {
  color: #F4F3EE;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-style: italic;
}
.manifesto__attribution {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 236, 231, 0.6);
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
  padding: clamp(80px, 12vw, 140px) 0;
}
.testimonials__head { text-align: center; margin-bottom: 64px; }
.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 720px;
  margin: 16px auto 0;
}
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.t-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.t-card__quote { font-family: var(--serif); font-size: 18px; line-height: 1.55; margin-bottom: 28px; color: var(--fg); }
.t-card__author { display: flex; align-items: center; gap: 14px; }
.t-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
}
.t-card__name { font-weight: 600; font-size: 14.5px; line-height: 1.25; }
.t-card__role { font-size: 12.5px; color: var(--muted); }
@media (max-width: 880px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ─── CTA STRIP ──────────────────────────────────────── */
.cta-strip {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.cta-strip__inner {
  display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center;
}
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 600px;
}
.cta-strip p { color: var(--fg-soft); margin-top: 14px; max-width: 520px; }
@media (max-width: 880px) {
  .cta-strip__inner { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  color: #BFC4CC;
  padding: clamp(70px, 9vw, 110px) 0 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 64px;
}
.footer__brand .brand__mark { background: var(--accent); color: #fff; }
.footer__brand .brand__name { color: #F4F3EE; }
.footer__tagline {
  margin-top: 18px;
  color: rgba(236, 236, 231, 0.6);
  font-size: 14px;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 236, 231, 0.5);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { font-size: 14.5px; color: rgba(236, 236, 231, 0.8); transition: color 0.2s var(--ease); }
.footer a:hover { color: #fff; }
.footer address { font-style: normal; font-size: 14px; line-height: 1.7; color: rgba(236, 236, 231, 0.7); }
.footer__bottom {
  border-top: 1px solid rgba(236, 236, 231, 0.14);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(236, 236, 231, 0.55);
}
.footer__legal a { font-size: 13px; margin-left: 22px; }
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADERS (about/services/contact) ─────────── */
.page-head {
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 6vw, 70px);
}
.page-head .eyebrow { margin-bottom: 24px; }
.page-head h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 900px;
  margin-bottom: 28px;
}
.page-head h1 em { font-style: normal; color: var(--accent); }
.page-head__lede {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--fg-soft);
  max-width: 640px;
  line-height: 1.65;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px);
  padding: clamp(40px, 6vw, 70px) 0 clamp(80px, 12vw, 140px);
}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.contact-card h3 { font-size: 22px; margin-bottom: 18px; }
.contact-card__row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.contact-card__row:first-of-type { border-top: 0; padding-top: 6px; }
.contact-card__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact-card__value { font-size: 16px; color: var(--fg); }

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 6px; }
.form__row label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__row input, .form__row textarea, .form__row select {
  font: inherit;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--fg);
  transition: border-color 0.2s var(--ease);
}
.form__row input:focus, .form__row textarea:focus, .form__row select:focus {
  outline: none;
  border-color: var(--accent);
}
.form__row textarea { resize: vertical; min-height: 140px; font-family: var(--sans); }
.form__row--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--inline > div { display: grid; gap: 6px; }
.form button[type="submit"] {
  background: var(--accent); color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14.5px;
  justify-self: start;
}
.form button[type="submit"]:hover { background: var(--accent-deep); }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── PRINCIPLES (about) ─────────────────────────────── */
.principles {
  padding: clamp(60px, 9vw, 110px) 0;
}
.principles__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.principle {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
}
.principle__num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  color: var(--accent); margin-bottom: 18px;
}
.principle h3 { font-size: 1.4rem; margin-bottom: 12px; }
.principle p { color: var(--fg-soft); font-size: 15.5px; }
@media (max-width: 880px) { .principles__grid { grid-template-columns: 1fr; } }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { padding: clamp(60px, 9vw, 110px) 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 48px; }
.faq__item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq__q { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.faq__a { color: var(--fg-soft); }

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__visual { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── COOKIE POPUP ──────────────────────────────────── */
.cookie-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px;
  background: rgba(21, 32, 46, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-alt);
  padding: 30px 34px;
  max-width: 480px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup h3 { font-size: 1.3rem; margin-bottom: 12px; }
.cookie-popup p { font-size: 14.5px; color: var(--fg-soft); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 11px 22px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cookie-popup__actions button:last-child {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }
.cookie-popup__actions button:first-child:hover { background: var(--bg); }

/* ─── LEGAL (privacidade, termos etc.) ───────────────── */
.legal { padding: clamp(60px, 9vw, 110px) 0; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 32px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.legal p, .legal li { color: var(--fg-soft); margin-bottom: 14px; font-size: 16px; line-height: 1.75; }
.legal ul { padding-left: 22px; }

/* ─── THANKS ─────────────────────────────────────────── */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 0; }
.thanks__inner { max-width: 600px; }
.thanks h1 { font-size: clamp(2.6rem, 6vw, 4rem); margin-bottom: 20px; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { color: var(--fg-soft); margin-bottom: 32px; font-size: 17px; }
