/* =====================================================================
   Blump Academy — Capture Page (CRO-optimized)
   Built on tokens.css
   ===================================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg-canvas);
  color: var(--fg-2);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--max-w-page);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================== Buttons ===================== */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn:active { transform: scale(0.97); }
.btn--dark {
  background: var(--ink-900);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 22px 40px;
}
.btn--dark:hover { background: var(--ink-800); box-shadow: 0 16px 40px rgba(14,13,10,0.30); }
.btn--primary { background: var(--blump-500); color: #fff; padding: 20px 36px; font-size: 16px; }
.btn--primary:hover { background: var(--blump-600); box-shadow: var(--shadow-pop); }
.btn .ic { width: 18px; height: 18px; }

/* ===================== Live badge (red dot pulse) ===================== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(8px);
}
.live-badge__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255,59,48,0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,48,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}

/* ===================== Hero (orange brand) ===================== */
.hero {
  position: relative;
  background: var(--blump-500);
  color: #fff;
  overflow: hidden;
  padding: 28px 0 0;
}

.hero__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
}
.hero__wave svg { width: 100%; height: 100%; display: block; }

.hero__bottom-curve { display: none; }

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__header img { height: 34px; width: auto; }

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  min-height: 620px;
  padding-bottom: 56px;
}

.hero__copy { max-width: 640px; }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  display: inline-block;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
}

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero__lede strong { color: #fff; font-weight: 700; }

.hero__date-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  margin-bottom: 28px;
  box-shadow: 0 8px 22px rgba(14,13,10,0.12);
}
.hero__date-pill .cal-emoji {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--blump-500);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 16px 0 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.hero__trust-ic {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--blump-600);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 4px;
  padding-top: 22px;
}
.hero__social-stack {
  display: flex;
  align-items: center;
}
.hero__social-stack img,
.hero__social-stack .hero__social-more {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  margin-left: -10px;
  border: 2px solid var(--blump-500);
  box-shadow: 0 2px 6px rgba(14,13,10,0.18);
  background: var(--ink-900);
}
.hero__social-stack img:first-child,
.hero__social-stack .hero__social-more:first-child { margin-left: 0; }
.hero__social-stack .hero__social-more {
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

.hero__social-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
}
.hero__social-text strong { font-weight: 700; color: #fff; font-size: 14px; }
.hero__social-text span { font-size: 12.5px; color: rgba(255,255,255,0.78); margin-top: 2px; }

/* Hero right column: speakers visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.speakers-stage {
  position: relative;
  width: 560px;
  max-width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.speakers-stage__halo {
  position: absolute;
  inset: 4%;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 50%,
    transparent 72%);
  z-index: 1;
}

.speakers-stage__photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

/* ===================== Authority band ===================== */
.authority-band {
  background: var(--paper-50);
  padding: 64px 0 80px;
}
.authority-band__head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-inline: auto;
}
.authority-band__head .h2 { margin: 8px 0 0; }

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.authority-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--stroke-2);
  text-align: left;
}
.authority-cell:last-child { border-right: 0; }
.authority-cell__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.authority-cell__num span {
  color: var(--blump-500);
  margin-left: 2px;
  font-size: 0.65em;
}
.authority-cell__label {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-2);
  max-width: 26ch;
}

/* ===================== Section general ===================== */
.section {
  padding: 96px 0;
  position: relative;
}
.section--tight { padding: 72px 0; }
.section--paper { background: var(--paper-50); }
.section--paper100 { background: var(--paper-100); }
.section--dark { background: var(--ink-900); color: var(--paper-50); }
.section--dark h2, .section--dark h3 { color: var(--paper-50); }

.section__head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-inline: auto;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blump-600);
  display: inline-block;
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--blump-300); }
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 18px;
  text-wrap: balance;
}
.section--dark .h2 { color: var(--paper-50); }
.section__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 60ch;
  margin: 0 auto;
}
.section--dark .section__sub { color: rgba(250,247,242,0.78); }

/* ===================== Section image (reserved spaces) ===================== */
.hero-image {
  margin: 0 auto 56px;
  max-width: 1100px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(14,13,10,0.65) 70%);
  padding: 80px 28px 24px;
  letter-spacing: 0.01em;
}
.hero-image--wide { max-width: 1180px; }

/* Format layout: image + cards side by side */
.format-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.format-image {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  min-height: 100%;
}
.format-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.format-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(180deg, transparent, rgba(14,13,10,0.70) 100%);
  padding: 80px 22px 22px;
  letter-spacing: 0.01em;
}

/* ===================== Divisor de águas (image + 1 col) ===================== */
.divisor-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.divisor-image {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  align-self: stretch;
  min-height: 380px;
}
.divisor-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.divisor-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(14,13,10,0.70) 70%);
  padding: 80px 22px 20px;
  letter-spacing: 0.01em;
}
.divisor-copy { max-width: 56ch; }
.divisor-copy .eyebrow { margin-bottom: 14px; }
.divisor-copy .h2 { margin: 0 0 20px; }
.divisor-copy .big-lede:last-child { margin-bottom: 0; }

/* ===================== Game changer (two-col with quote) ===================== */
.game-changer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.game-changer__copy .h2 { margin: 12px 0 20px; }
.big-lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 16px;
  max-width: 56ch;
}
.big-lede strong { color: var(--fg-1); font-weight: 600; }
.big-lede em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 65%, var(--blump-100) 65%);
  padding: 0 3px;
}
.game-changer__quote {
  background: var(--ink-900);
  color: var(--paper-50);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.game-changer__quote::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,90,31,0.32), transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  color: var(--blump-400);
  line-height: 0.6;
  margin-bottom: 12px;
  position: relative;
}
.game-changer__quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper-50);
  margin: 0 0 24px;
  position: relative;
}
.quote-author {
  border-top: 1px solid rgba(250,247,242,0.18);
  padding-top: 16px;
  position: relative;
}
.quote-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--paper-50);
  font-weight: 600;
}
.quote-author span {
  display: block;
  font-size: 13px;
  color: rgba(250,247,242,0.65);
  margin-top: 2px;
}

/* ===================== Fit grid (é / não é pra você) ===================== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit {
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  padding: 36px;
}
.fit--yes { border-color: rgba(43,182,115,0.30); background: linear-gradient(180deg, rgba(231,247,238,0.4), #fff 30%); }
.fit--no { border-color: var(--stroke-1); background: var(--paper-50); }

.fit__head { margin-bottom: 20px; }
.fit__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fit__pill--yes { background: var(--trail-50); color: var(--trail-600); }
.fit__pill--no { background: var(--paper-200); color: var(--fg-2); }

.fit ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--fg-2);
}
.fit__ic {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}
.fit--yes .fit__ic { background: var(--trail-500); color: #fff; }
.fit--no .fit__ic { background: var(--ink-300); color: #fff; font-size: 16px; }

/* ===================== Learnings ===================== */
.learnings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.learning {
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.learning:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.learning__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--blump-500);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blump-50);
  display: grid;
  place-items: center;
  font-variant-numeric: tabular-nums;
}
.learning h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--fg-1);
  margin: 0;
  line-height: 1.25;
}
.learning p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}

.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
}
.cta-row__hint {
  font-size: 13px;
  color: var(--fg-3);
}

/* ===================== Bonuses ===================== */
.bonuses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bonus {
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.bonus::before {
  content: '🎁';
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 28px;
  opacity: 0.85;
}
.bonus__tag {
  display: inline-flex;
  width: max-content;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--blump-50);
  color: var(--blump-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bonus h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg-1);
  margin: 0;
  line-height: 1.25;
  padding-right: 40px;
}
.bonus p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}
.bonus__value {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 12px;
  background: var(--paper-100);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  font-weight: 500;
}

/* ===================== Speakers (improved with metrics) ===================== */
.speakers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.speaker-card {
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.speaker-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,90,31,0.04), transparent 55%);
  pointer-events: none;
}
.speaker-card__head {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.speaker-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 12px 26px rgba(255,90,31,0.30);
  background-image: url('../assets/speakers.png');
  background-repeat: no-repeat;
  background-color: var(--blump-500);
  background-size: 500%;
  border: 2px solid #fff;
}
.speaker-card__avatar--felipe { background-position: 25% 14%; }
.speaker-card__avatar--jonathan { background-position: 65% 14%; }

.speaker-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0;
}
.speaker-card__role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-3);
  margin-top: 2px;
  font-weight: 500;
}
.speaker-card__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  position: relative;
}
.speaker-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  padding: 16px 0;
  border-top: 1px solid var(--stroke-2);
  border-bottom: 1px solid var(--stroke-2);
}
.speaker-card__metrics > div {
  text-align: center;
}
.speaker-card__metrics strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--blump-500);
  letter-spacing: -0.02em;
  line-height: 1;
}
.speaker-card__metrics span {
  display: block;
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
  line-height: 1.3;
}
.speaker-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}
.speaker-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-100);
  color: var(--fg-2);
}

/* ===================== Format grid (Como vai ser) ===================== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.format-card {
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.format-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.format-card__ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blump-50);
  color: var(--blump-600);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.format-card__ic svg { width: 24px; height: 24px; }
.format-card strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-1);
  line-height: 1.25;
}
.format-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
}

/* ===================== Agenda timeline ===================== */
.agenda {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.agenda__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
  padding: 20px 24px;
}
.agenda__time {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--blump-600);
  padding-top: 2px;
}
.agenda__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--fg-1);
  font-weight: 600;
  margin-bottom: 4px;
}
.agenda__body span {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.5;
}

/* ===================== Testimonials ===================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 32px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.testimonial__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.5;
  color: var(--blump-400);
  height: 24px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--paper-50);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.12);
  background: var(--ink-900);
}
.testimonial figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--paper-50);
}
.testimonial figcaption span {
  display: block;
  font-size: 12.5px;
  color: rgba(250,247,242,0.65);
  margin-top: 2px;
}

/* ===================== FAQ ===================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur-base);
}
.faq__item[open] { border-color: var(--blump-300); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--fg-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.35;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chevron {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq__chevron::before,
.faq__chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--fg-2);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__chevron::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq__chevron::after  { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chevron::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] .faq__chevron::after  { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] .faq__chevron::before,
.faq__item[open] .faq__chevron::after { background: var(--blump-500); }
.faq__answer {
  padding: 0 28px 24px;
}
.faq__answer p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  max-width: 64ch;
}

/* ===================== Final CTA ===================== */
.final-cta {
  position: relative;
  background: var(--ink-900);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 72px 56px;
  text-align: center;
  overflow: hidden;
  margin: 0 32px;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(255,90,31,0.36), transparent 70%),
    radial-gradient(30% 40% at 0% 100%, rgba(255,90,31,0.16), transparent 70%);
}
.final-cta__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.final-cta h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fff;
  text-wrap: balance;
}
.final-cta p {
  position: relative;
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 36px;
  max-width: 56ch;
}
.final-cta__btn { position: relative; }
.final-cta__perks {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
}

/* ===================== Footer ===================== */
.footer {
  padding: 36px 0 96px;
  background: var(--paper-100);
  margin-top: 0;
  border-top: 1px solid var(--stroke-2);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand img { height: 24px; }
.footer__legal { font-size: 13px; color: var(--fg-3); }

/* ===================== Sticky mobile CTA ===================== */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 80;
  background: var(--blump-500);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 16px 22px;
  font-family: var(--font-body);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(255,90,31,0.40), 0 6px 14px rgba(14,13,10,0.20);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-base), transform var(--dur-base);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta__main {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  display: block;
  text-align: left;
}
.sticky-cta__sub {
  font-weight: 500;
  font-size: 11.5px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  text-align: left;
}
.sticky-cta .ic { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 120px; }
}

/* ===================== Modal ===================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14,13,10,0.65);
  display: none;
  place-items: center;
  padding: 24px;
}
.modal.is-open { display: grid; animation: fadeIn 180ms var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal__card {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 460px;
  width: 100%;
  padding: 40px 36px 32px;
  position: relative;
  animation: scaleIn 260ms var(--ease-out);
  max-height: 92vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: var(--paper-100);
  color: var(--fg-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}
.modal__close:hover { background: var(--paper-200); }
.modal__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--blump-50);
  color: var(--blump-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.modal h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg-1);
  margin: 0 0 6px;
}
.modal__sub {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0 0 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; color: var(--fg-1); }
.field input {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--stroke-1);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--fg-1);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:focus {
  border-color: var(--blump-500);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.20);
}
.form__submit { width: 100%; margin-top: 8px; }
.form__legal {
  margin-top: 14px;
  font-size: 11px;
  color: var(--fg-3);
  text-align: center;
  line-height: 1.5;
}
.form--success { text-align: center; padding: 24px 0; display: none; }
.form--success.is-on { display: block; }
.form--success .ok-circle {
  width: 64px;
  height: 64px;
  background: var(--trail-50);
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--trail-600);
  font-size: 32px;
  font-weight: 700;
}
.form--success h3 { margin-bottom: 8px; font-size: 24px; }
.form--success p { color: var(--fg-3); font-size: 14px; }

/* ===================== Responsive ===================== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero__grid { gap: 48px; }
  .learnings { grid-template-columns: repeat(2, 1fr); }
  .authority-grid { grid-template-columns: repeat(2, 1fr); }
  .authority-cell { border-right: 0; border-bottom: 1px solid var(--stroke-2); }
  .authority-cell:nth-child(odd) { border-right: 1px solid var(--stroke-2); }
  .authority-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .testimonials { grid-template-columns: 1fr; gap: 16px; }
  .game-changer { grid-template-columns: 1fr; gap: 36px; }
  .game-changer__quote { margin-top: 0; }
}

/* Tablet small / Large mobile (≤ 900px) */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .section--tight { padding: 56px 0; }
  .section__head { margin-bottom: 40px; }
  .fit-grid { grid-template-columns: 1fr; }
  .speakers { grid-template-columns: 1fr; gap: 20px; }
  .speaker-card { padding: 28px; }
  .bonuses { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; gap: 14px; }
  .format-layout { grid-template-columns: 1fr; gap: 24px; }
  .format-image { min-height: 280px; max-height: 360px; }
  .hero-image { margin-bottom: 40px; border-radius: var(--r-xl); }
  .hero-image figcaption { font-size: 14px; padding: 60px 22px 18px; }
  .divisor-layout { grid-template-columns: 1fr; gap: 28px; }
  .divisor-image { min-height: 260px; max-height: 320px; }
  .divisor-copy { max-width: none; }
}

/* Hero stacks (≤ 980px) */
@media (max-width: 980px) {
  .container { padding: 0 24px; }
  .hero { padding-top: 24px; }
  .hero__header { justify-content: space-between; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    padding-bottom: 40px;
    text-align: center;
    place-items: center;
  }
  .hero__copy { max-width: 640px; }
  .hero__lede { margin-inline: auto; }
  .hero__date-pill,
  .hero__eyebrow { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__social { justify-content: center; }
  .speakers-stage { width: 460px; }
  .hero__visual { min-height: 0; }
  .hero__bottom-curve { height: 48px; }
  .final-cta { padding: 56px 32px; margin: 0; }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
  .authority-band { padding: 48px 0 56px; }
  .footer { padding: 28px 0 120px; margin-top: 0; }

  /* Hero */
  .hero__header { gap: 12px; margin-bottom: 24px; }
  .hero__header img { height: 28px; }
  .live-badge { font-size: 11px; padding: 7px 12px 7px 10px; letter-spacing: 0.06em; }
  .hero__eyebrow { font-size: 12px; margin-bottom: 16px; letter-spacing: 0.16em; }
  .hero__headline { font-size: clamp(28px, 7.5vw, 38px); }
  .hero__lede { font-size: 15px; }
  .hero__date-pill {
    font-size: 14px;
    padding: 11px 16px;
    gap: 10px;
    margin-bottom: 22px;
  }
  .hero__date-pill .cal-emoji { width: 22px; height: 22px; }
  .hero__date-pill .cal-emoji svg { width: 18px; height: 18px; }
  .speakers-stage { width: 90vw; max-width: 360px; }

  .hero__trust { gap: 16px; font-size: 13px; margin: 14px 0 22px; }
  .hero__trust li { gap: 6px; }
  .hero__social { gap: 12px; padding-top: 18px; flex-wrap: wrap; }
  .hero__social-stack span { width: 30px; height: 30px; font-size: 11px; margin-left: -8px; }
  .hero__social-text { font-size: 13px; text-align: left; }
  .hero__social-text strong { font-size: 13.5px; }
  .hero__social-text span { font-size: 12px; }

  /* Buttons */
  .btn--dark {
    padding: 18px 24px;
    font-size: 13px;
    width: 100%;
  }
  .btn--primary { padding: 18px 28px; font-size: 15px; width: 100%; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { width: 100%; }

  /* Section heads */
  .h2 { font-size: clamp(24px, 6vw, 32px); }
  .section__sub { font-size: 15px; }
  .eyebrow { font-size: 11px; margin-bottom: 12px; }

  /* Authority */
  .authority-grid { grid-template-columns: 1fr; }
  .authority-cell { border-right: 0; border-bottom: 1px solid var(--stroke-2); padding: 24px 22px; }
  .authority-cell:last-child { border-bottom: 0; }
  .authority-cell__num { font-size: 40px; }

  /* Game changer / Divisor */
  .game-changer__quote { padding: 28px 24px; }
  .game-changer__quote p { font-size: 17px; }
  .big-lede { font-size: 15.5px; }
  .divisor-image { min-height: 220px; max-height: 280px; }
  .divisor-image figcaption { font-size: 13px; padding: 50px 18px 16px; }

  /* Fit */
  .fit { padding: 26px; }
  .fit li { font-size: 14.5px; gap: 10px; }

  /* Learnings */
  .learnings { grid-template-columns: 1fr; gap: 14px; }
  .learning { padding: 24px; gap: 12px; }
  .learning h3 { font-size: 18px; }
  .learning p { font-size: 14px; }
  .learning__num { width: 40px; height: 40px; font-size: 18px; }

  /* Bonuses */
  .bonus { padding: 26px; }
  .bonus h3 { font-size: 18px; padding-right: 36px; }
  .bonus::before { font-size: 22px; top: 22px; right: 22px; }

  /* Speakers */
  .speaker-card { padding: 24px; gap: 16px; }
  .speaker-card__head { gap: 16px; }
  .speaker-card__avatar { width: 72px; height: 72px; }
  .speaker-card__name { font-size: 20px; }
  .speaker-card__bio { font-size: 14px; }
  .speaker-card__metrics strong { font-size: 18px; }

  /* Agenda */
  .agenda__row {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .agenda__time { font-size: 14px; }
  .agenda__body strong { font-size: 15px; }
  .agenda__body span { font-size: 13px; }

  /* Format cards */
  .format-card { padding: 24px; }
  .format-card strong { font-size: 17px; }
  .format-card p { font-size: 14px; }

  /* Testimonials */
  .testimonial { padding: 26px; }
  .testimonial blockquote { font-size: 16px; }

  /* FAQ */
  .faq__item summary { padding: 18px 20px; font-size: 15.5px; }
  .faq__answer { padding: 0 20px 20px; }
  .faq__answer p { font-size: 14.5px; }

  /* Final CTA */
  .final-cta { padding: 44px 24px; }
  .final-cta h2 { font-size: clamp(22px, 6.5vw, 30px); }
  .final-cta p { font-size: 15px; }
  .final-cta__perks { gap: 14px 18px; font-size: 13px; }

  /* Footer */
  .footer__row { flex-direction: column; gap: 14px; text-align: center; }
  .footer__legal { font-size: 12px; }

  /* CTA row */
  .cta-row { margin-top: 40px; }

  /* Modal */
  .modal__card { padding: 32px 22px 22px; }
  .modal h3 { font-size: 20px; }
}

/* Very small (≤ 360px) */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero__headline { font-size: 26px; }
  .sticky-cta { padding: 14px 18px; }
  .sticky-cta__main { font-size: 14px; }
}
