/*
 * maik-ai.css — Shared stylesheet for AI With Maik funnels
 * Used by: newsletter-landing-page.html, almost-there.html, thank-you.html
 * Design system: 02-personal-brand/05-design-system/design-system.md
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Poppins:wght@300;400&display=swap');

/* ─────────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────────── */
:root {
  --red:        #c70b30;
  --black:      #0d0d0d;
  --charcoal:   #403e3a;
  --warm-grey:  #a6a297;
  --cream:      #f2eddc;
  --light-grey: #f2f2f2;
  --navy:       #002244;
  --blue:       #4c92db;
  --cool-grey:  #a5acaf;
  --white:      #ffffff;
  --contrast:   #131310;
  --card-dark:  #2e2c29;

  --font-d: 'Playfair Display', Georgia, serif;
  --font-h: Georgia, 'Times New Roman', serif;
  --font-b: 'Poppins', system-ui, sans-serif;

  --container:  960px;
  --narrow:     680px;
  --pad:        24px;
}

/* ─────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font-b); font-weight: 300; color: var(--charcoal); background: var(--black); }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ─────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────── */
.wrap         { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.wrap--narrow { max-width: var(--narrow);   margin: 0 auto; padding: 0 var(--pad); }

/* ─────────────────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  display: block;
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(166,162,151,0.6); }
.accent { color: var(--red); font-style: italic; }

/* ─────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn--red         { background: var(--red);   color: var(--white); }
.btn--red:hover   { background: #a8092a; }
.btn--outline     { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
/* UNUSED (2026-06-02) — not in current pages; keep for product-card / workshop page use
.btn--outline-red { background: transparent; border: 1.5px solid var(--red); color: var(--red); }
.btn--outline-red:hover { background: var(--red); color: var(--white); }
.btn--lg          { font-size: 0.875rem; padding: 18px 44px; }
*/

/* Focus states for keyboard navigation */
.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.hero__link:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 4px; }

/* ─────────────────────────────────────────────────────
   SHARED CARD — dark warm rounded box
   Used in: problem-reveal, daughter-reply, confirm-card
───────────────────────────────────────────────────── */
.card-dark {
  background: var(--card-dark);
  border-radius: 24px;
  padding: 56px 52px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.card-dark__headline {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.card-dark__headline em { color: var(--red); font-style: italic; }
.card-dark__body {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255,255,255,0.28);
}
.card-dark__body em { color: rgba(199,11,48,0.78); font-style: italic; }

/* ─────────────────────────────────────────────────────
   TRUST COPY (below forms)
───────────────────────────────────────────────────── */
.trust-copy {
  font-size: 0.8125rem;
  color: var(--warm-grey);
  margin-top: 12px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────── */
.nav {
  background: var(--black);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 48px; }
.nav__tagline {
  font-family: var(--font-h);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.nav__cta { font-size: 0.75rem; }

@media (max-width: 600px) {
  .nav { padding: 14px 0; }
  .nav__logo img { height: 36px; }
  .nav__tagline { display: none; }
  .nav__cta {
    font-size: 0.6875rem;
    padding: 10px 18px;
    letter-spacing: 0.05em;
  }
}

/* ─────────────────────────────────────────────────────
   HERO (landing page)
───────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(199,11,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__eyebrow span {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
  padding: 0 12px;
}
.hero__eyebrow span + span::before {
  content: '✦';
  padding-right: 12px;
  color: var(--red);
  font-size: 0.5rem;
  vertical-align: middle;
}
.hero__headline {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 28px;
}
.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__sub strong { color: var(--white); font-weight: 400; }
.hero__teaser {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  max-width: 480px;
  margin: 0 auto 32px;
  border-left: 2px solid rgba(199,11,48,0.4);
  padding-left: 16px;
  text-align: left;
}
.hero__offer {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: center;
}
.hero__offer strong { color: rgba(255,255,255,0.75); font-weight: 400; }
.hero__form { margin-bottom: 16px; }
.hero__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-top: 32px;
  transition: color 0.15s;
}
.hero__link:hover { color: var(--white); }
.hero__link__text {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  font-family: var(--font-h);
  transition: color 0.15s;
}
.hero__link:hover .hero__link__text { color: rgba(255,255,255,0.7); }
.hero__link__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(166,162,151,0.25);
  border-radius: 50%;
  color: rgba(166,162,151,0.5);
  transition: border-color 0.15s, color 0.15s;
  animation: bounce-down 2s ease-in-out infinite;
}
.hero__link:hover .hero__link__arrow {
  border-color: rgba(199,11,48,0.5);
  color: var(--red);
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ─────────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────────── */
.marquee-section {
  background: var(--contrast);
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-section::before { left: 0;  background: linear-gradient(to right, var(--contrast), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(to left,  var(--contrast), transparent); }

@media (max-width: 600px) {
  .marquee-section::before,
  .marquee-section::after { width: 40px; }
}
.marquee-label { text-align: center; margin-bottom: 32px; }
.marquee-label h2 {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.marquee-label h2 em { color: var(--red); font-style: italic; }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 48s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  padding: 0 32px;
}
.marquee-item .sep { color: var(--red); margin: 0 12px; opacity: 0.6; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-after {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-h);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0 32px;
}

@media (max-width: 600px) {
  .marquee-section { padding: 48px 0; }
  .marquee-item { font-size: 0.9375rem; padding: 0 20px; }
  .marquee-after { font-size: 0.9375rem; padding: 0 24px; color: rgba(255,255,255,0.75); }
}

/* ─────────────────────────────────────────────────────
   STORY SECTION
───────────────────────────────────────────────────── */
.story-section { background: var(--cream); padding: 100px 0; }
.story-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.story-section__icon { position: sticky; top: 100px; text-align: center; }
.story-section__icon svg { width: 56px; height: 56px; color: var(--warm-grey); opacity: 0.5; margin: 0 auto 16px; }
.story-section__icon-label {
  font-family: var(--font-h);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.story-text { font-size: 1.0625rem; line-height: 1.85; color: var(--charcoal); }
.story-text p { margin-bottom: 24px; }
.story-text p:last-child { margin-bottom: 0; }
.story-text .drop-cap::first-letter {
  font-family: var(--font-d);
  font-size: 4.5rem;
  font-weight: 700;
  float: left;
  line-height: 0.78;
  color: var(--red);
  margin-right: 10px;
  margin-top: 8px;
}
.story-text em { font-style: italic; }
.story-text strong { font-weight: 400; color: var(--black); }
.pull-quote {
  font-family: var(--font-h);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 24px;
  margin: 36px 0;
}
.story-not-ai {
  background: rgba(199,11,48,0.06);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-top: 32px;
  font-family: var(--font-h);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
}
.story-not-ai strong { font-weight: 500; }

/* ─────────────────────────────────────────────────────
   MID CTA
───────────────────────────────────────────────────── */
.mid-cta { background: var(--black); padding: 100px 0; text-align: center; }
.mid-cta h2 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.mid-cta h2 em { color: var(--red); font-style: italic; }
.mid-cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────────────────────── */
.problem-section { background: var(--cream); padding: 100px 0; }
.problem-section h2 {
  font-family: var(--font-d);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  max-width: 640px;
  margin-bottom: 56px;
}
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 56px;
}
.contrast-item { padding: 36px 32px; }
.contrast-item--theirs { background: var(--light-grey); }
.contrast-item--ours   { background: var(--white); }
.contrast-item__label {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.9;
}
.contrast-item--theirs .contrast-item__label { color: var(--warm-grey); }
.contrast-item--ours   .contrast-item__label { color: var(--red); }
.contrast-item__text { font-size: 1rem; line-height: 1.75; color: var(--charcoal); font-weight: 300; }
.contrast-item--theirs .contrast-item__text { opacity: 0.72; }
.problem-reveal {
  background: var(--card-dark);
  border-radius: 24px;
  padding: 56px 52px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.problem-reveal__headline {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.problem-reveal__headline em { color: var(--red); font-style: italic; }
.problem-reveal__body {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255,255,255,0.28);
}
.problem-reveal__body em { color: rgba(255,255,255,0.85); font-style: italic; }

/* ─────────────────────────────────────────────────────
   PROMISE / DOMAIN CARDS
───────────────────────────────────────────────────── */
.promise-section { background: var(--cream); padding: 100px 0; }
.promise-section__header { max-width: 640px; margin-bottom: 64px; }
.promise-section__header h2 {
  font-family: var(--font-d);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.promise-section__header p { font-size: 1.0625rem; line-height: 1.75; color: var(--warm-grey); }
.domains-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.domain-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(64,62,58,0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.domain-card:hover { border-color: rgba(199,11,48,0.25); box-shadow: 0 4px 20px rgba(199,11,48,0.06); }
.domain-card__emoji { font-size: 1.75rem; margin-bottom: 12px; display: block; }
.domain-card__title { font-family: var(--font-h); font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.domain-card__desc  { font-size: 0.875rem; color: var(--warm-grey); line-height: 1.65; }

/* ─────────────────────────────────────────────────────
   OBJECTIONS
───────────────────────────────────────────────────── */
.objections-section { background: var(--black); padding: 100px 0; }
.objections-section__header { text-align: center; margin-bottom: 64px; }
.objections-section__header h2 {
  font-family: var(--font-d);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.objections-section__header p { font-size: 1.0625rem; color: rgba(255,255,255,0.45); }
.objections-intro {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-h);
}
.objections-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 12px; overflow: hidden; }
.objection-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px 28px;
  transition: background 0.15s;
}
.objection-item:hover { background: rgba(255,255,255,0.05); }
.objection-item__q {
  font-family: var(--font-h);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.objection-item__q::before {
  content: '"';
  color: var(--red);
  font-family: var(--font-d);
  font-size: 1.25rem;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 4px;
}
.objection-item__a { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.objection-item__a strong { color: rgba(255,255,255,0.8); font-weight: 300; }
.objection-item__a em     { color: rgba(255,255,255,0.85); font-style: italic; }

/* ─────────────────────────────────────────────────────
   RESOLUTION / DIEGO CLOSE
───────────────────────────────────────────────────── */
.resolution-section { background: var(--cream); padding: 100px 0; }
.resolution-section__inner { max-width: var(--narrow); margin: 0 auto; padding: 0 var(--pad); }
.resolution-text { font-size: 1.0625rem; line-height: 1.85; color: var(--charcoal); }
.resolution-text p { margin-bottom: 24px; }
.daughter-reply {
  background: var(--card-dark);
  border-radius: 24px;
  padding: 56px 52px;
  margin: 40px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.daughter-reply blockquote {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.daughter-reply blockquote em { color: var(--red); }
.daughter-reply .who {
  font-family: var(--font-d);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255,255,255,0.28);
}
.resolution-conclusion {
  background: rgba(199,11,48,0.05);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-top: 32px;
  font-family: var(--font-h);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
}
.resolution-conclusion strong { color: var(--black); font-weight: 500; }

/* ─────────────────────────────────────────────────────
   STATS
───────────────────────────────────────────────────── */
.stats-section { background: var(--navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-item { text-align: center; padding: 32px 16px; }
.stat-item__number {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__number span { color: var(--red); }
.stat-item__label {
  font-family: var(--font-h);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─────────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────────── */
.final-cta {
  background: var(--black);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(199,11,48,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__inner     { position: relative; z-index: 1; }
.final-cta__eyebrow   { margin-bottom: 24px; }
.final-cta h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 48px;
}
.final-cta h2 em { color: var(--red); font-style: italic; }
.final-promises {
  list-style: none;
  max-width: 480px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.final-promises li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}
.final-promises li::before {
  content: '✦';
  color: var(--red);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo img { height: 28px; opacity: 0.7; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  font-size: 0.8125rem;
  color: var(--warm-grey);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }
.footer__legal {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.2);
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-h);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────
   KIT FORM OVERRIDES
───────────────────────────────────────────────────── */
.kit-embed { width: 100%; }
.kit-embed .formkit-form[data-uid="556895e621"] { max-width: 100% !important; }
.kit-embed .formkit-form[data-uid="556895e621"] [data-style="clean"] { padding: 0 !important; }
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: center !important;
  margin: 0 auto !important;
  max-width: 480px !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-field {
  flex: 1 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-input {
  border-radius: 9999px !important;
  border: 1.5px solid rgba(166,162,151,0.4) !important;
  padding: 15px 24px !important;
  font-family: 'Poppins', system-ui, sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.9375rem !important;
  color: #403e3a !important;
  background: #ffffff !important;
  height: auto !important;
  width: 100% !important;
  display: block !important;
  line-height: 1.4 !important;
  transition: border-color 0.15s !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-input:focus {
  border-color: #c70b30 !important;
  outline: none !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-input::placeholder { color: #a5acaf !important; opacity: 1 !important; }
.kit-embed .formkit-form[data-uid="556895e621"] [data-group="checkboxes"] { text-align: center !important; }
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-checkboxes,
.kit-embed .formkit-form[data-uid="556895e621"] [data-group="checkboxes"],
.kit-embed .formkit-form[data-uid="556895e621"] fieldset {
  border: none !important; outline: none !important; box-shadow: none !important;
  background: transparent !important; padding: 0 !important; margin: 0 !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] [data-group="checkbox"] label {
  font-family: 'Poppins', system-ui, sans-serif !important;
  font-weight: 300 !important;
  font-size: 0.8125rem !important;
  color: #a6a297 !important;
  padding-left: 14px !important;
  letter-spacing: 0 !important;
  gap: 0 !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] [data-group="checkbox"] label::before {
  left: 0 !important; top: 2px !important;
  border: 1px solid rgba(166,162,151,0.5) !important;
  background: transparent !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] [data-group="checkbox"] label a {
  color: #c70b30 !important; text-decoration: underline !important; margin-left: 3px !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] [data-group="checkbox"] input[type="checkbox"]:checked + label::before {
  background: #c70b30 !important; border-color: #c70b30 !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-submit {
  flex: 1 0 auto !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 9999px !important;
  background-color: #c70b30 !important;
  color: #ffffff !important;
  font-family: 'Poppins', system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.15s !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-submit > span {
  padding: 15px 32px !important; display: block !important; color: #ffffff !important;
}
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-submit:hover { background-color: #a8092a !important; }
.kit-embed .formkit-form[data-uid="556895e621"] .formkit-submit:hover > span { background-color: transparent !important; }
.kit-embed .formkit-powered-by-convertkit-container { justify-content: center !important; margin-top: 8px !important; }
.kit-embed .formkit-powered-by-convertkit {
  opacity: 0.25 !important; transform: scale(0.75) !important;
  transform-origin: center !important; transition: opacity 0.2s !important;
}
.kit-embed .formkit-powered-by-convertkit:hover { opacity: 0.5 !important; }
.kit-embed .formkit-alert-error {
  border-radius: 8px !important;
  font-family: 'Poppins', system-ui, sans-serif !important;
  font-size: 0.875rem !important;
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .story-section__inner  { grid-template-columns: 1fr; gap: 32px; }
  .story-section__icon   { position: static; display: flex; align-items: center; gap: 12px; }
  .contrast-grid         { grid-template-columns: 1fr; }
  .domains-list          { grid-template-columns: 1fr 1fr; }
  .objections-list       { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer__inner         { flex-direction: column; align-items: flex-start; }
  .card-dark             { padding: 40px 32px; }
  .daughter-reply        { padding: 40px 32px; }
  .problem-reveal        { padding: 40px 32px; }
}
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 64px 0 48px; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__eyebrow span { padding: 0 6px; font-size: 0.625rem; }
  .hero__sub { margin: 0 auto 28px; }
  .hero__teaser { margin: 0 auto 20px; }
  .hero__offer  { margin: 0 auto 16px; }
  /* Page sections */
  .domains-list  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .card-dark     { padding: 32px 24px; }
  .daughter-reply { padding: 32px 24px; }
  .problem-reveal { padding: 32px 24px; }
}

/* ─────────────────────────────────────────────────────
   ALMOST-THERE PAGE
───────────────────────────────────────────────────── */
.confirm-hero {
  background: var(--black);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.confirm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(199,11,48,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.confirm-hero__inner { position: relative; z-index: 1; }

.confirm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(199,11,48,0.4);
  border-radius: 50%;
  margin: 0 auto 32px;
  color: var(--red);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199,11,48,0.2); }
  50%       { box-shadow: 0 0 0 12px rgba(199,11,48,0); }
}
.confirm-headline {
  font-family: var(--font-d);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 20px;
}
.confirm-headline em { color: var(--red); font-style: italic; }
.confirm-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 56px;
}
.confirm-sub strong { color: var(--white); font-weight: 400; }

.steps-section { background: var(--cream); padding: 80px 0; }
.steps-section__header { text-align: center; margin-bottom: 48px; }
.steps-section__header h2 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); }
.steps-list { display: flex; flex-direction: column; gap: 2px; max-width: 560px; margin: 0 auto; }
.step-item {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(64,62,58,0.08);
}
.step-item:first-child { border-radius: 12px 12px 0 0; }
.step-item:last-child  { border-radius: 0 0 12px 12px; }
.step-item--done { background: rgba(199,11,48,0.03); }
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 0.9375rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-number--done    { background: rgba(199,11,48,0.1); color: var(--red); }
.step-number--pending { border: 1.5px solid rgba(166,162,151,0.4); color: var(--warm-grey); }
.step-content__title  { font-family: var(--font-h); font-size: 0.9375rem; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.step-content__desc   { font-size: 0.875rem; color: var(--warm-grey); line-height: 1.6; }
.step-content__desc a { color: var(--red); text-decoration: underline; }
.step-item--done .step-content__title { color: rgba(64,62,58,0.5); }

.quote-section { background: var(--black); padding: 80px 0; }

.spam-tip { background: var(--cream); padding: 64px 0; text-align: center; }
.spam-tip__inner { max-width: 540px; margin: 0 auto; padding: 0 var(--pad); }
.spam-tip h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.spam-tip p  { font-size: 0.9rem; color: var(--warm-grey); line-height: 1.7; }
.spam-tip p strong { color: var(--charcoal); font-weight: 400; }

@media (max-width: 480px) {
  .confirm-hero { padding: 72px 0 56px; }
  .step-item    { padding: 20px; gap: 16px; }
}

/* ─────────────────────────────────────────────────────
   THANK-YOU PAGE
───────────────────────────────────────────────────── */
.welcome-hero {
  background: var(--black);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.welcome-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(199,11,48,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-hero__inner { position: relative; z-index: 1; }

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199,11,48,0.1);
  border: 1px solid rgba(199,11,48,0.3);
  border-radius: 9999px;
  padding: 8px 20px;
  margin: 0 auto 36px;
}
.welcome-badge__dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.welcome-badge__text {
  font-family: var(--font-h);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.welcome-headline {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 24px;
}
.welcome-headline em { color: var(--red); font-style: italic; }
.welcome-sub { font-size: 1.0625rem; line-height: 1.75; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; }
.welcome-sub strong { color: var(--white); font-weight: 400; }

.whats-next { background: var(--cream); padding: 80px 0; }
.whats-next__header { text-align: center; margin-bottom: 48px; }
.whats-next__header h2 { font-family: var(--font-h); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); }
.timeline { display: flex; flex-direction: column; gap: 2px; max-width: 600px; margin: 0 auto; }
.timeline-item {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid rgba(64,62,58,0.08);
}
.timeline-item:first-child { border-radius: 12px 12px 0 0; }
.timeline-item:last-child  { border-radius: 0 0 12px 12px; }
.timeline-marker            { flex-shrink: 0; padding-top: 2px; }
.timeline-marker__when      { font-family: var(--font-h); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); white-space: nowrap; }
.timeline-content__title    { font-family: var(--font-h); font-size: 0.9375rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.timeline-content__desc     { font-size: 0.875rem; color: var(--warm-grey); line-height: 1.65; }
.timeline-content__desc strong { color: var(--charcoal); font-weight: 400; }

.story-teaser { background: var(--black); padding: 80px 0; }

.share-section { background: var(--cream); padding: 72px 0; text-align: center; }
.share-section__inner { max-width: 560px; margin: 0 auto; padding: 0 var(--pad); }
.share-section h2 { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--charcoal); margin-bottom: 12px; line-height: 1.2; }
.share-section h2 em { color: var(--red); font-style: italic; }
.share-section p { font-size: 0.9375rem; color: var(--warm-grey); line-height: 1.7; margin-bottom: 32px; }
.share-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-family: var(--font-b);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.15s;
  border: none;
  cursor: pointer;
}
.share-btn:hover         { opacity: 0.85; }
.share-btn--whatsapp     { background: #25D366; color: #fff; }
.share-btn--linkedin     { background: #0A66C2; color: #fff; }
.share-btn--email        { background: var(--charcoal); color: #fff; }

@media (max-width: 480px) {
  .welcome-hero   { padding: 72px 0 56px; }
  .timeline-item  { padding: 20px; gap: 16px; }
  .share-buttons  { flex-direction: column; align-items: center; }
}
/* ─────────────────────────────────────────────────────
   MOTION ACCESSIBILITY
───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__link__arrow,
  .welcome-badge__dot,
  .confirm-icon,
  .marquee-track {
    animation: none !important;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}