/* AMI — Avaliação das Múltiplas Inteligências
   Editorial sales page system
   ----------------------------------------------------- */

:root {
  /* AMI brand palette — LIGHT THEME · white surfaces with multicolor accents */
  --paper:        #ffffff;          /* primary background — pure white */
  --paper-2:      #fbf6ec;          /* warm cream */
  --paper-3:      #f4ecd9;          /* deeper cream */
  --paper-edge:   #e6dec8;
  --ink:          #15171c;          /* charcoal — matches AMI typography on the logo */
  --ink-soft:     #2a2c33;
  --navy:         #1d1f25;          /* "high-contrast dark surface" — sparingly used */
  --navy-deep:    #15171c;
  --navy-line:    #e6dec8;
  --gold:         #e8360a;          /* vivid orange-red — primary accent (Cinestésica) */
  --gold-soft:    #f5a623;          /* amber — secondary accent (Linguística) */
  --gold-deep:    #b22a06;          /* deep red-orange — hover / deep emphasis */
  --muted:        #6b6f7a;
  --muted-on-dark:#8e9099;
  --rule-paper:   #e6dec8;
  --success:      #2f6b4a;
  --danger:       #8a2c2c;

  /* Multicolor palette for the 8 intelligences (each card colored individually) */
  --c-linguistic:   #f5a623;
  --c-logmath:      #3e9b3e;
  --c-spatial:      #1a8a72;
  --c-bodily:       #d81880;
  --c-musical:      #e8360a;
  --c-interpersonal:#8e24aa;
  --c-intrapersonal:#1565c0;
  --c-naturalist:   #4a90d9;

  /* All-sans system: --serif kept as a name only to preserve display-vs-text semantics in the CSS. */
  --serif: "Inter Tight", "Söhne", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --sans:  "Inter Tight", "Söhne", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --mono:  "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --maxw-narrow: 720px;
  --maxw-mid: 960px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Type ----------------------------------- */
.serif { font-family: var(--serif); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-weight: 300; letter-spacing: -0.045em; }
h2 { font-weight: 350; letter-spacing: -0.04em; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; vertical-align: middle; margin: 0 .75em; opacity: .55; }

.kicker {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Layout --------------------------------- */
.wrap        { max-width: var(--maxw);        margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 40px; }
.wrap-mid    { max-width: var(--maxw-mid);    margin: 0 auto; padding: 0 40px; }

section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }
section.dark  { background: var(--paper-2); color: var(--ink); }
section.dark h1, section.dark h2, section.dark h3 { color: var(--ink); }
section.dark .eyebrow { color: var(--gold); }
section.dark .eyebrow.on-dark { color: var(--gold); }
section.dark p { color: var(--ink-soft); }
section.paper-2 { background: var(--paper-2); }
section.paper-3 { background: var(--paper-3); }

.rule-h { height: 1px; background: var(--rule-paper); border: 0; }
.rule-h.on-dark { background: var(--navy-line); }

/* ---------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 14px 30px -10px rgba(232, 54, 10, .5);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}
.btn-primary:hover {
  background: var(--gold-deep);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 22px 44px -12px rgba(232, 54, 10, .7);
  transform: translateY(-2px);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost.on-dark { color: #f4efe4; border-color: #f4efe4; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost.on-dark:hover { background: #f4efe4; color: var(--navy-deep); }

.cta-meta {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 16px;
}
.dark .cta-meta { color: var(--muted-on-dark); }

/* ---------- Nav ------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 228, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule-paper);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
.nav-brand img { height: 32px; width: auto; }
.nav-brand .nav-logo-horizontal { height: 36px; }

/* Wheel figure */
.wheel-figure {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.wheel-figure img {
  width: 100%; height: auto; display: block;
}
.wheel-figure figcaption {
  margin-top: 20px;
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--muted); line-height: 1.55;
  max-width: 560px; margin-inline: auto;
}

/* Creator (Roberto) section */
.creator-section { padding: 100px 0; background: var(--paper); border-top: 1px solid var(--rule-paper); border-bottom: 1px solid var(--rule-paper); }
.creator-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: center;
}
.creator-photo { margin: 0; }
.creator-photo .photo-slot {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(21,23,28,.35);
  position: relative;
}
.creator-photo .photo-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.creator-photo figcaption {
  margin-top: 20px; text-align: center;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.creator-copy .eyebrow { display: block; margin-bottom: 24px; }
.creator-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.045em; margin-bottom: 28px;
  font-weight: 300; line-height: 1.02;
}
.creator-copy h2 em { color: var(--gold-deep); font-style: italic; font-weight: 400; }
.creator-copy p {
  font-size: 18px; line-height: 1.6; color: var(--ink-soft);
  margin: 0 0 1em;
}
@media (max-width: 960px) {
  .creator-grid { grid-template-columns: 1fr; gap: 40px; }
  .creator-photo { max-width: 280px; margin-inline: auto; }
}
.nav-brand .ami-mark {
  font-weight: 500; font-size: 22px; letter-spacing: .02em;
}
.nav-brand .ami-sub {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-soft); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold); }

/* ---------- Hero (LIGHT THEME) -------------------- */
.hero {
  background: var(--paper-2);
  color: var(--ink);
  padding: 44px 0 0;
  position: relative;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 3; }
.hero h1 { color: var(--ink); }
.hero-sub { color: var(--ink-soft); }
.hero-sub strong { color: var(--ink); }
.hero-eyebrow { color: var(--gold); }
.hero-eyebrow::before { background: var(--gold); }
.hero-meta { color: var(--muted); }
.hero-meta span { color: var(--gold); }

/* Aurora — drifting multicolor blobs (more saturated on light bg) */
.aurora {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-blob {
  position: absolute;
  width: 56vw; height: 56vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .28;
  will-change: transform;
  animation: aurora-drift 24s ease-in-out infinite alternate;
}
.aurora-blob.a1 { background: var(--c-musical);       top: -22%; left: -10%; opacity: .25; }
.aurora-blob.a2 { background: var(--c-bodily);        bottom: -28%; right: -12%; animation-duration: 28s; animation-delay: -9s; opacity: .22; }
.aurora-blob.a3 { background: var(--c-interpersonal); top: 30%; left: 35%; animation-duration: 32s; animation-delay: -14s; opacity: .18; }
.aurora-blob.a4 { background: var(--c-linguistic);    top: -10%; right: 28%; animation-duration: 36s; animation-delay: -18s; opacity: .26; width: 42vw; height: 42vw; }
@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(8vw, -6vh) scale(1.08); }
  100% { transform: translate(-6vw, 5vh) scale(.94); }
}

/* Cursor spotlight on hero (warm orange wash on light bg) */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(380px 380px at var(--mx, 50%) var(--my, 30%),
                              rgba(232, 54, 10, .08),
                              rgba(232, 54, 10, 0) 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 400ms ease-out;
}
.hero:hover::after { opacity: 1; }

/* Gentle wash to soften the aurora & keep contrast */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,.05) 60%, rgba(255,255,255,.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hero entry stagger */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow,
.hero h1,
.hero-sub,
.hero-cta-row,
.hero-meta,
.hero-side {
  animation: fadeUp 700ms cubic-bezier(.2,.7,.2,1) backwards;
}
.hero-eyebrow  { animation-delay: 100ms; }
.hero h1       { animation-delay: 200ms; }
.hero-sub      { animation-delay: 380ms; }
.hero-cta-row  { animation-delay: 520ms; }
.hero-meta     { animation-delay: 620ms; }
.hero-side     { animation-delay: 300ms; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: end;
  padding-bottom: 48px;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: var(--ink);
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-side {
  padding-bottom: 4px;
}
.hero-side .num-stack {
  display: grid; gap: 14px;
  border-left: 1px solid var(--rule-paper);
  padding-left: 24px;
}
.num-stack .num {
  display: flex; align-items: baseline; gap: 12px;
}
.num-stack .num-big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px; line-height: 1;
  color: var(--c-musical);
  letter-spacing: -0.06em;
}
.num-stack .num:nth-child(1) .num-big { color: var(--c-linguistic); }
.num-stack .num:nth-child(2) .num-big { color: var(--c-bodily); }
.num-stack .num:nth-child(3) .num-big { color: var(--c-musical); }
.num-stack .num:nth-child(4) .num-big { color: var(--c-logmath); }
.num-stack .num-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

/* Authority strip (infinite marquee) */
.authority-strip {
  border-top: 1px solid var(--rule-paper);
  border-bottom: 1px solid var(--rule-paper);
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
}
.authority-strip-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.authority-strip-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.authority-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.authority-logos {
  display: flex; align-items: center;
  gap: 48px;
  width: max-content;
  font-family: var(--serif);
  color: var(--ink-soft);
  animation: marquee 42s linear infinite;
}
.authority-strip:hover .authority-logos { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.authority-logos .auth {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; letter-spacing: .04em;
  color: var(--ink-soft);
  white-space: nowrap;
  flex: none;
  font-weight: 500;
}
.authority-logos .auth .seal {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  color: #fff; letter-spacing: 0;
  flex: none;
}

/* ---------- Testimonial bar ------------------------ */
.testimonial-bar {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule-paper);
}
.testimonial-bar blockquote {
  margin: 0; max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 350;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial-bar blockquote::before {
  content: "“"; display: block;
  font-size: 80px; line-height: 0.6; color: var(--gold);
  margin-bottom: 16px; font-family: var(--serif);
  font-weight: 400;
}
.testimonial-bar cite {
  display: block; margin-top: 32px;
  font-style: normal;
  font-family: var(--sans); font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.testimonial-bar cite strong {
  display: block; color: var(--ink); font-weight: 600;
  letter-spacing: 0.02em; font-size: 16px; margin-bottom: 2px;
}

/* ---------- Lead ----------------------------------- */
.lead-section { padding: 140px 0; }
.lead-section .eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.lead-prose {
  max-width: 640px; margin: 0 auto;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
  text-wrap: pretty;
}
.lead-prose p { margin: 0 0 1.4em; }
.lead-prose p.dropcap::first-letter {
  font-size: 4.6em;
  float: left;
  font-weight: 300;
  line-height: 0.88;
  margin: 0.08em 0.12em 0 -0.04em;
  color: var(--gold-deep);
  letter-spacing: -0.06em;
}
.lead-prose strong { color: var(--ink); font-weight: 600; }
.lead-prose em { font-style: italic; color: var(--gold-deep); }
.lead-final {
  margin-top: 48px;
  font-family: var(--sans);
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}

/* ---------- Section heads -------------------------- */
.s-head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.s-head .eyebrow { margin-bottom: 24px; display: block; }
.s-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  letter-spacing: -0.045em;
  font-weight: 350;
  line-height: 1.02;
}
.s-head .deck {
  font-size: 18px; line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
}
.dark .s-head .deck { color: var(--muted-on-dark); }

.s-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 880px; margin: 0 auto 80px;
}
.s-head.center .deck { margin: 24px auto 0; }

/* ---------- Quote grid (mundo está tendo) ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.q-card {
  background: #fff;
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
  position: relative;
  border-top: 4px solid var(--c-musical);
  box-shadow: 0 1px 0 var(--rule-paper), 0 12px 28px -20px rgba(21,23,28,.18);
  transition: transform 240ms ease-out, box-shadow 240ms ease-out;
}
.q-card:nth-child(1) { border-top-color: var(--c-musical); }
.q-card:nth-child(2) { border-top-color: var(--c-bodily); }
.q-card:nth-child(3) { border-top-color: var(--c-interpersonal); }
.q-card:nth-child(4) { border-top-color: var(--c-spatial); }
.q-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 var(--rule-paper), 0 24px 40px -20px rgba(21,23,28,.25);
}
.q-card .q-source {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.q-card .q-source::before {
  content: ""; width: 24px; height: 1px; background: var(--gold);
}
.q-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px; line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 450;
}
.q-card cite {
  display: block; margin-top: 28px;
  font-style: normal;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- Mecanismo / Gardner -------------------- */
.mecanismo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: start;
}
.mecanismo-grid p {
  font-size: 19px; line-height: 1.6;
  color: var(--ink-soft);
}
.mecanismo-grid p + p { margin-top: 1.2em; }
.mecanismo-grid strong { color: var(--ink); font-weight: 600; }

.gardner-card {
  background: var(--paper-2);
  padding: 36px 44px 56px;
  border-left: 3px solid var(--gold);
  position: sticky; top: 100px;
}
.gardner-book {
  margin: -36px -44px 32px;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, #f6f1e6 0%, var(--paper-2) 100%);
  padding: 36px 24px 24px;
  border-bottom: 1px solid var(--rule-paper);
}
.gardner-book img {
  width: auto; max-width: 200px; height: auto;
  box-shadow: 0 18px 36px -14px rgba(21,23,28,.45);
  margin-bottom: 18px;
}
.gardner-book figcaption {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-align: center;
  font-weight: 600; line-height: 1.5;
}
.gardner-card .label {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 24px;
}
.gardner-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px; line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.035em;
  font-weight: 400;
  text-wrap: pretty;
}
.gardner-card cite {
  display: block; margin-top: 28px;
  font-style: normal; font-family: var(--sans);
  font-size: 13px; color: var(--muted); letter-spacing: .04em;
}
.gardner-card cite strong { color: var(--ink); font-weight: 600; display: block; }

/* ---------- O que a AMI mensura -------------------- */
.measure-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule-paper);
  border: 1px solid var(--rule-paper);
  margin-bottom: 80px;
}
.m-stat {
  background: var(--paper);
  padding: 40px 24px;
  text-align: left;
}
.m-stat .num {
  font-family: var(--serif);
  font-size: 88px; line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.07em;
}
.m-stat:nth-child(1) .num { color: var(--c-linguistic); }
.m-stat:nth-child(2) .num { color: var(--c-bodily); }
.m-stat:nth-child(3) .num { color: var(--c-interpersonal); }
.m-stat:nth-child(4) .num { color: var(--c-spatial); }
.m-stat:nth-child(5) .num { color: var(--c-musical); }
.m-stat .num.gold { color: var(--c-bodily); }
.m-stat .lbl {
  margin-top: 16px;
  font-size: 13px; line-height: 1.4;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-paper);
  border: 1px solid var(--rule-paper);
}
.int-card {
  background: var(--paper);
  padding: 36px 36px 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  --c: var(--gold);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms ease-out,
              background 280ms ease-out;
}
.int-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--c);
  transition: width 220ms ease-out;
}
.int-card:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 22px 44px -20px rgba(0,0,0,.18),
              0 0 0 1px color-mix(in srgb, var(--c) 35%, transparent);
}
.int-card:hover::before { width: 6px; }
.int-card:hover .idx { transform: translateX(2px); }
.int-card .idx { transition: transform 220ms ease-out; }
.int-card[data-intel="linguistic"]    { --c: var(--c-linguistic); }
.int-card[data-intel="logmath"]       { --c: var(--c-logmath); }
.int-card[data-intel="spatial"]       { --c: var(--c-spatial); }
.int-card[data-intel="bodily"]        { --c: var(--c-bodily); }
.int-card[data-intel="musical"]       { --c: var(--c-musical); }
.int-card[data-intel="interpersonal"] { --c: var(--c-interpersonal); }
.int-card[data-intel="intrapersonal"] { --c: var(--c-intrapersonal); }
.int-card[data-intel="naturalist"]    { --c: var(--c-naturalist); }
.int-card .idx {
  font-family: var(--serif);
  font-size: 44px; line-height: 1;
  color: var(--c);
  font-weight: 300;
  letter-spacing: -0.06em;
}
.int-card h3 {
  font-size: 26px; letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-weight: 500;
}
.int-card .skills-meta {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c); font-weight: 700;
  margin-bottom: 16px;
}
.int-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.int-card li {
  font-size: 13px;
  background: var(--paper-2);
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
}

/* Extra below the 8 — leadership/style */
.extra-styles {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.style-card {
  border: 1px solid var(--rule-paper);
  background: var(--paper);
  padding: 36px;
}
.style-card .lbl {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 16px;
}
.style-card h4 {
  font-size: 24px; margin-bottom: 14px;
}
.style-card .items {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 8px;
}
.style-card .pill {
  border: 1px solid var(--rule-paper);
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; color: var(--ink-soft);
}
.style-card .pole {
  display: flex; gap: 14px; align-items: center;
  margin-top: 16px; font-family: var(--serif); font-size: 26px;
  color: var(--ink); letter-spacing: -0.01em;
}
.style-card .pole span.x {
  font-family: var(--sans); color: var(--gold); font-size: 16px;
}

/* Famous ----------------------------------------- */
.famous-strip {
  margin-top: 80px;
  padding: 64px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule-paper);
  border-bottom: 1px solid var(--rule-paper);
}
.famous-head { text-align: center; margin-bottom: 48px; }
.famous-head h3 {
  font-size: clamp(32px, 4vw, 48px);
}
.famous-head p {
  margin-top: 16px; color: var(--muted); font-size: 17px;
  max-width: 600px; margin-inline: auto;
}
.famous-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.famous-card {
  background: var(--paper);
  padding: 28px 24px;
  border: 1px solid var(--rule-paper);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.fam-monogram {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-soft);
  font-family: var(--serif); font-size: 26px;
  font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.famous-card .nm {
  font-family: var(--serif); font-size: 19px;
  color: var(--ink); letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 6px;
}
.famous-card .int {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

/* ---------- Entregavel (Report) -------------------- */
.entregavel-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 100px;
}
.entregavel-intro .copy {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.entregavel-intro .copy p + p { margin-top: 1em; }
.entregavel-intro .copy strong { color: var(--ink); font-weight: 600; }
.entregavel-intro .copy .reveal {
  font-family: var(--serif); font-style: italic; color: var(--gold-deep);
}

/* PDF mockup */
.pdf-mock {
  position: relative;
  aspect-ratio: 0.78;
  background: linear-gradient(135deg, #efe9d8 0%, #e0d7bf 100%);
  box-shadow:
    0 1px 0 #fff inset,
    0 30px 60px -20px rgba(7,20,42,.35),
    0 12px 24px -12px rgba(7,20,42,.25);
  padding: 56px 48px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.pdf-mock::before {
  content: ""; position: absolute; top: 0; right: 8px; bottom: 0; width: 6px;
  background: linear-gradient(to right, rgba(0,0,0,.06), transparent);
}
.pdf-mock::after {
  content: ""; position: absolute; top: 8px; right: 0; bottom: -8px; left: 8px;
  background: #ddd3b8;
  z-index: -1;
  box-shadow: 4px 8px 18px -8px rgba(7,20,42,.3);
}
.pdf-mock .pdf-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.pdf-mock .pdf-head .lbl strong { display: block; color: var(--ink); margin-top: 6px; letter-spacing: 0.04em; font-size: 13px; }
.pdf-mock .pdf-head img { height: 42px; width: auto; }
.pdf-mock .pdf-body {
  text-align: left;
}
.pdf-mock .pdf-body .name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.pdf-mock .pdf-body .school {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.pdf-mock .pdf-body .portrait {
  width: 96px; height: 96px;
  background: var(--navy-deep);
  color: var(--gold-soft);
  font-family: var(--serif); font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 32px;
}
.pdf-mock .pdf-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.pdf-mock .pdf-foot .seal {
  border: 1px solid var(--gold); color: var(--gold-deep);
  padding: 6px 10px; font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em;
}

.pdf-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* Section list — 8 modules */
.report-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-paper);
  border: 1px solid var(--rule-paper);
}
.module {
  background: var(--paper);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.module .num {
  font-family: var(--serif);
  font-size: 48px; line-height: 1;
  color: var(--gold);
  font-weight: 350;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.module h3 {
  font-size: 26px; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.module .star {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  background: var(--paper-2); padding: 4px 8px;
  margin-bottom: 14px;
}
.module p {
  font-size: 16px; line-height: 1.55;
  color: var(--muted); margin: 0;
}
.module.highlight {
  background: linear-gradient(135deg, var(--c-musical) 0%, var(--c-bodily) 100%);
  color: #fff;
}
.module.highlight h3 { color: #fff; }
.module.highlight p   { color: rgba(255,255,255,.92); }
.module.highlight .num { color: #fff; }
.module.highlight .star {
  background: rgba(255,255,255,.18);
  color: #fff;
}

/* Strategic note callout */
.strategic-note {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 24px 48px -20px rgba(232, 54, 10, .45);
}
.strategic-note .badge {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; font-weight: 700;
  border: 1px solid rgba(255,255,255,.6);
  padding: 12px 16px;
  display: inline-block;
}
.strategic-note p {
  font-family: var(--serif);
  font-size: 22px; line-height: 1.45; margin: 0;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 500;
  text-wrap: pretty;
}
.strategic-note p strong { color: #fff; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255,255,255,.5); text-underline-offset: 4px; }

/* ---------- Como funciona (timeline) --------------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 36px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.phase {
  padding: 0 24px;
  position: relative;
}
.phase .marker {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 32px; color: var(--gold-deep);
  margin-bottom: 28px;
  position: relative; z-index: 2;
}
.phase .lbl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 12px;
}
.phase h3 {
  font-size: 26px; margin-bottom: 12px; letter-spacing: -0.01em;
}
.phase .meta {
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--muted); font-style: italic;
  margin-bottom: 20px;
}
.phase p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.55;
  margin: 0 0 14px;
}
.phase ul {
  margin: 14px 0 0; padding: 0; list-style: none;
}
.phase ul li {
  font-size: 14px; color: var(--muted);
  padding: 8px 0;
  border-top: 1px solid var(--rule-paper);
  display: flex; gap: 10px; align-items: start;
}
.phase ul li::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--gold); margin-top: 8px; flex: none;
}
.phase ul li:last-child { border-bottom: 1px solid var(--rule-paper); }

/* ---------- Certifications ------------------------- */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cert-card {
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 56px 48px;
  position: relative;
}
.cert-card::after {
  content: "";
  position: absolute; inset: 8px; border: 1px solid rgba(232, 54, 10, .25);
  pointer-events: none;
}
.cert-card .cert-image {
  display: block;
  position: relative;
  margin: -56px -48px 28px;
  background: #fff;
  border-bottom: 1px solid var(--rule-paper);
  overflow: hidden;
  text-decoration: none;
}
.cert-card .cert-image img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.cert-card .cert-image:hover img { transform: scale(1.02); }
.cert-card .cert-image .zoom-hint {
  position: absolute;
  right: 16px; bottom: 16px;
  background: var(--ink); color: #fff;
  padding: 8px 14px;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0; transition: opacity .2s ease;
}
.cert-card .cert-image:hover .zoom-hint { opacity: 1; }
.cert-card .num-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 12px;
}
.cert-card h3 {
  font-size: 28px; margin-bottom: 24px; letter-spacing: -0.01em;
}
.cert-card .meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-paper);
  font-size: 13px;
}
.cert-card .meta .k {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.cert-card .meta .v {
  font-family: var(--serif); color: var(--ink); font-size: 18px;
}
.cert-card p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin: 0; }
.cert-card blockquote {
  margin: 24px 0 0; padding: 24px 0 0;
  border-top: 1px dashed var(--rule-paper);
  font-family: var(--serif); font-style: italic;
  font-size: 17px; line-height: 1.5;
  color: var(--ink-soft);
}
.cert-card blockquote cite {
  display: block; margin-top: 18px;
  font-style: normal; font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
}

.cert-bottom-note {
  margin-top: 56px;
  text-align: center;
  font-family: var(--serif); font-size: 24px;
  color: var(--ink); max-width: 900px; margin-inline: auto;
  letter-spacing: -0.01em; line-height: 1.4;
}
.cert-bottom-note strong { color: var(--gold-deep); font-weight: 500; font-style: italic; }

/* ---------- Authority (Science) ------------------- */
.timeline-figure {
  margin: 64px auto 0;
  max-width: 880px;
}
.timeline-figure img {
  width: 100%; height: auto;
  display: block;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 18px 36px -16px rgba(21,23,28,.22);
}
.timeline-figure figcaption {
  margin-top: 28px;
  text-align: center;
  font-size: 14px; line-height: 1.55;
  color: var(--muted);
  max-width: 720px; margin-inline: auto;
  letter-spacing: 0.005em;
}
.auth-stack { display: grid; gap: 1px; background: var(--rule-paper); }
.auth-row {
  background: var(--paper-2);
  padding: 64px 0;
}
.auth-row-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 200px 1fr; gap: 64px;
  align-items: start;
}
.auth-row .num {
  font-family: var(--serif);
  font-size: 80px; line-height: 1;
  color: var(--gold); font-weight: 700;
  letter-spacing: -0.07em;
}
.auth-row:nth-child(1) .num { color: var(--c-linguistic); }
.auth-row:nth-child(2) .num { color: var(--c-interpersonal); }
.auth-row:nth-child(3) .num { color: var(--c-logmath); }
.auth-row:nth-child(4) .num { color: var(--c-musical); }
.auth-row h3 { font-size: 30px; margin-bottom: 20px; letter-spacing: -0.025em; color: var(--ink); font-weight: 500; }
.auth-row p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; margin: 0; }
.auth-row p + p { margin-top: 1em; }
.auth-row strong { color: var(--ink); font-weight: 700; }
.auth-row blockquote {
  margin: 24px 0 0; padding-left: 24px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: 20px; line-height: 1.45;
  color: var(--ink);
  font-weight: 450;
}
.auth-row blockquote cite {
  display: block; margin-top: 16px;
  font-style: normal; font-family: var(--sans);
  font-size: 13px; color: var(--muted); letter-spacing: 0.04em;
}
.weducation-stats {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-paper);
}
.weducation-stats .stat .n {
  font-family: var(--serif); font-size: 80px;
  line-height: 1; font-weight: 700;
  letter-spacing: -0.07em;
}
.weducation-stats .stat:nth-child(1) .n { color: var(--c-musical); }
.weducation-stats .stat:nth-child(2) .n { color: var(--c-logmath); }
.weducation-stats .stat .l {
  font-size: 14px; color: var(--ink-soft); margin-top: 12px;
  font-weight: 500;
}

/* ---------- 4 Transformações ----------------------- */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--rule-paper);
  border: 1px solid var(--rule-paper);
  gap: 1px;
}
.t-card {
  background: var(--paper);
  padding: 56px 44px;
}
.t-card .marker {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.t-card .num {
  font-family: var(--serif);
  font-size: 64px; line-height: 0.85;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -0.06em;
}
.t-card .marker .lbl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.t-card h3 {
  font-size: 30px; margin-bottom: 20px; letter-spacing: -0.015em;
}
.t-card p {
  font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0;
}
.t-card p + p { margin-top: 1em; }
.t-card strong { color: var(--ink); font-weight: 600; }

/* ---------- Offer table ---------------------------- */
.offer-frame {
  background: var(--paper);
  border: 1px solid var(--gold);
  position: relative;
}
.offer-frame::after {
  content: "";
  position: absolute; inset: 8px; border: 1px solid rgba(177,132,56,.3);
  pointer-events: none;
}
.offer-frame > .inner { padding: 64px; position: relative; z-index: 1; }

.offer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-paper);
}
.offer-block .lbl {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-bottom: 16px;
}
.offer-block h4 {
  font-size: 28px; margin-bottom: 8px; letter-spacing: -0.01em;
}
.offer-block .price {
  font-family: var(--serif);
  font-size: 56px; line-height: 1; color: var(--ink);
  font-weight: 300; letter-spacing: -0.05em;
  margin: 8px 0 8px;
}
.offer-block .price-meta {
  font-size: 14px; color: var(--muted); letter-spacing: 0.04em;
}
.offer-block p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 12px 0 0; }

.scenario-head {
  margin-top: 56px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}
.scenario-head .tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-deep);
  border: 1px solid var(--gold); padding: 8px 12px;
}
.scenario-head h4 { font-size: 28px; }

.offer-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.offer-table th, .offer-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--rule-paper);
  font-size: 16px;
}
.offer-table th {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.offer-table td.v {
  font-family: var(--serif);
  font-size: 22px; color: var(--ink); font-weight: 350;
  text-align: right; letter-spacing: -0.01em;
}
.offer-table tr.total td {
  border-bottom: 0;
  border-top: 2px solid var(--ink);
  padding-top: 28px;
}
.offer-table tr.total td.v {
  color: var(--gold-deep); font-size: 36px;
  font-weight: 400; letter-spacing: -0.03em;
}
.offer-table tr.total td:first-child {
  font-weight: 600; color: var(--ink); font-size: 18px;
}

.offer-kicker {
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 22px; line-height: 1.45;
  color: var(--ink); letter-spacing: -0.01em;
  text-wrap: pretty;
}
.offer-kicker strong { color: var(--gold-deep); font-weight: 500; font-style: italic; }

/* ---------- Fit ----------------------------------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit-col {
  background: #fff;
  padding: 56px 48px;
  border-top: 4px solid var(--c-logmath);
  box-shadow: 0 1px 0 var(--rule-paper), 0 12px 28px -20px rgba(21,23,28,.15);
}
.fit-col.no {
  background: #fff;
  border-top-color: var(--c-bodily);
  color: var(--ink-soft);
}
.fit-col.no h3 { color: var(--ink); }
.fit-col.no h3 em { color: var(--c-bodily); }
.fit-col.no .icon { color: #fff; background: var(--c-bodily); border-color: var(--c-bodily); }
.fit-col h3 {
  font-size: 26px; margin-bottom: 32px;
  letter-spacing: -0.025em;
  font-weight: 500;
  display: flex; align-items: center; gap: 16px;
  color: var(--ink);
}
.fit-col .icon {
  width: 36px; height: 36px;
  background: var(--c-logmath); color: #fff;
  border: 0;
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  font-family: var(--sans);
  flex: none;
}
.fit-col ul { margin: 0; padding: 0; list-style: none; }
.fit-col li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-paper);
  font-size: 16px; line-height: 1.5;
}
.fit-col.no li { border-bottom-color: var(--rule-paper); }
.fit-col li:last-child { border-bottom: 0; }

/* ---------- FAQ ----------------------------------- */
.faq-list { border-top: 1px solid var(--rule-paper); }
.faq-item {
  border-bottom: 1px solid var(--rule-paper);
}
.faq-q {
  display: flex; width: 100%; align-items: center;
  justify-content: space-between; gap: 32px;
  padding: 32px 0;
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--serif);
  font-size: 24px; color: var(--ink);
  text-align: left; letter-spacing: -0.01em;
  font-weight: 400;
}
.faq-q .plus {
  width: 32px; height: 32px;
  border: 1px solid var(--rule-paper);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 18px; color: var(--gold-deep);
  flex: none;
  transition: transform .3s ease, background .2s ease;
}
.faq-item.open .plus {
  background: var(--gold); color: #fff; border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 32px;
  max-width: 760px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Final decision ------------------------- */
.decision {
  background: var(--paper-2);
  color: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.decision::before {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 70vw; height: 70vw;
  max-width: 1000px; max-height: 1000px;
  border-radius: 50%;
  background: var(--c-musical);
  filter: blur(160px);
  opacity: .15;
  pointer-events: none;
}
.decision::after {
  content: "";
  position: absolute;
  bottom: -30%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 1000px; max-height: 1000px;
  border-radius: 50%;
  background: var(--c-interpersonal);
  filter: blur(160px);
  opacity: .12;
  pointer-events: none;
}
.decision .wrap { position: relative; z-index: 2; }
.decision h2 {
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.045em;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.0;
}
.decision h2 em { color: var(--gold); font-style: italic; font-weight: 500; }
.decision-deck {
  margin: 48px auto 0;
  max-width: 760px; text-align: center;
  font-family: var(--serif); font-size: 21px; line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.decision-deck strong { color: var(--ink); font-weight: 700; }
.decision-deck em { color: var(--gold-deep); font-style: italic; }
.decision-divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 56px auto;
  border-radius: 1px;
}
.decision-quote {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.05em;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}
.decision-cta {
  margin-top: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}

/* ---------- PS letter ------------------------------ */
.ps-letter {
  background: var(--paper-2);
  padding: 96px 0;
}
.ps-letter .ps-card {
  max-width: 760px; margin: 0 auto;
  background: var(--paper);
  padding: 56px 64px;
  border-left: 3px solid var(--gold);
}
.ps-letter h4 {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.ps-letter h4 .tag {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 4px 10px;
  margin-right: 12px;
  vertical-align: middle;
}
.ps-letter p {
  font-size: 17px; line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.ps-letter .ps-card + .ps-card { margin-top: 24px; }
.ps-letter strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer references --------------------- */
.refs {
  background: var(--paper-3);
  color: var(--ink-soft);
  padding: 96px 0 64px;
  border-top: 1px solid var(--rule-paper);
}
.refs h3 {
  color: var(--ink);
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.refs .col { font-size: 14px; line-height: 1.7; }
.refs .col p { margin: 0 0 12px; }
.refs .col a { color: var(--gold-deep); font-weight: 600; }
.refs .col strong { color: var(--ink) !important; }
.refs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
  margin-bottom: 64px;
}
.refs-foot {
  padding-top: 48px; border-top: 1px solid var(--rule-paper);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  font-size: 12px; letter-spacing: 0.08em; color: var(--muted);
}
.refs-foot .brand {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--serif); font-size: 18px;
  color: var(--ink); letter-spacing: -0.01em;
}
.refs-foot .brand img { height: 36px; width: auto; }

/* ---------- Final CTA (mid-page repeat) ------------ */
.midcta {
  background: linear-gradient(135deg, var(--c-musical) 0%, var(--gold-deep) 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.midcta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.midcta .wrap-mid { position: relative; z-index: 2; }
.midcta h3 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
  font-weight: 400;
  max-width: 820px; margin: 0 auto 32px;
}
.midcta h3 em { color: #fff; font-style: italic; }
.midcta .btn-primary {
  background: #fff;
  color: var(--gold-deep);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 14px 30px -10px rgba(0,0,0,.25);
}
.midcta .btn-primary:hover { background: var(--ink); color: #fff; }
.midcta .cta-meta { color: rgba(255,255,255,.85); margin-top: 20px; }

/* ---------- Responsive ---------------------------- */
@media (max-width: 960px) {
  body { font-size: 17px; }
  section { padding: 80px 0; }
  .wrap, .wrap-narrow, .wrap-mid { padding: 0 24px; }

  .nav-inner { padding: 10px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-brand .nav-logo-horizontal { height: 30px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; letter-spacing: .03em; }

  .hero { padding: 36px 0 0; overflow-x: hidden; }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-bottom: 48px;
  }
  .hero-grid > * { min-width: 0; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -0.04em; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 16px; gap: 10px; }
  .hero-eyebrow::before { width: 20px; }
  .hero-sub { font-size: 15px; margin-top: 18px; max-width: 100%; }
  .hero-cta-row { margin-top: 22px; gap: 14px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; padding: 16px 18px; font-size: 14px; }
  .hero-side { padding-bottom: 0; }
  .hero-side .num-stack {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    display: grid; gap: 18px 12px;
    padding-left: 18px;
  }
  .num-stack .num { gap: 10px; flex-wrap: wrap; }
  .num-stack .num-big { font-size: 38px; }
  .num-stack .num-label { font-size: 10px; }

  .authority-strip-inner { padding: 16px 20px; gap: 16px; flex-direction: column; align-items: flex-start; }
  .authority-logos { gap: 14px 18px; justify-content: flex-start; }

  .testimonial-bar { padding: 56px 0; }

  .lead-section { padding: 80px 0; }
  .lead-prose { font-size: 19px; padding: 0 8px; }
  .lead-prose p.dropcap::first-letter { font-size: 4em; }

  .s-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }

  .quote-grid { grid-template-columns: 1fr; }
  .q-card { min-height: 0; padding: 36px 28px; }
  .q-card blockquote { font-size: 20px; }

  .mecanismo-grid { grid-template-columns: 1fr; gap: 56px; }
  .gardner-card { padding: 40px 28px; position: static; }
  .gardner-card blockquote { font-size: 24px; }

  .measure-stats { grid-template-columns: repeat(2, 1fr); }
  .m-stat .num { font-size: 64px; }
  .int-grid { grid-template-columns: 1fr; }
  .int-card { padding: 28px 24px; }
  .extra-styles { grid-template-columns: 1fr; }

  .famous-grid { grid-template-columns: repeat(2, 1fr); }

  .entregavel-intro { grid-template-columns: 1fr; gap: 56px; }
  .report-modules { grid-template-columns: 1fr; }
  .module { padding: 32px 24px; }
  .strategic-note { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
  .strategic-note p { font-size: 18px; }

  .timeline { grid-template-columns: 1fr; gap: 56px; }
  .timeline::before { display: none; }
  .phase { padding: 0; border-left: 1px solid var(--gold); padding-left: 28px; }
  .phase .marker { margin-bottom: 16px; }

  .cert-grid { grid-template-columns: 1fr; gap: 24px; }
  .cert-card { padding: 36px 28px; }

  .auth-row-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
  .auth-row .num { font-size: 56px; }
  .weducation-stats { grid-template-columns: 1fr; }

  .transform-grid { grid-template-columns: 1fr; }
  .t-card { padding: 36px 28px; }

  .offer-frame > .inner { padding: 32px 24px; }
  .offer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .offer-block .price { font-size: 40px; }
  .offer-table th, .offer-table td { padding: 16px 8px; font-size: 14px; }
  .offer-table td.v { font-size: 17px; }
  .offer-table tr.total td.v { font-size: 22px; }

  .fit-grid { grid-template-columns: 1fr; }
  .fit-col { padding: 36px 28px; }

  .faq-q { font-size: 18px; padding: 24px 0; gap: 16px; }

  .decision { padding: 96px 0; }
  .decision-quote { font-size: 32px; }

  .ps-letter .ps-card { padding: 32px 28px; }

  .refs-grid { grid-template-columns: 1fr; gap: 32px; }
  .refs-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Scroll-triggered reveal --------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(.2,.7,.2,1),
              transform 800ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Number count-up: avoid font jitter while ticking */
.num-big[data-target],
.m-stat .num[data-target],
.weducation-stats .stat .n[data-target] {
  font-variant-numeric: tabular-nums;
}

/* ---------- Accessibility: reduced motion --------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .aurora,
  .hero::after,
  .authority-logos { animation: none !important; }
  .reveal-up { opacity: 1; transform: none; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-cta-row, .hero-meta, .hero-side {
    animation: none !important;
  }
}
