:root {
  --purple: #7b52f5;
  --purple-deep: #5e36d3;
  --purple-pale: #f0eaff;
  --green: #52d38b;
  --green-deep: #1f9d5d;
  --lime: #caff54;
  --coral: #ff836c;
  --sky: #69c8ff;
  --ink: #333743;
  --muted: #6d7280;
  --line: #e9e6f1;
  --surface: #f8f7fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(67, 48, 121, .12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 92px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}

.skip-link:focus { top: 12px; }

.shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 230, 241, .8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1.1rem;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--purple);
  border-radius: 14px;
  font-size: .88rem;
  box-shadow: 0 8px 24px rgba(123, 82, 245, .26);
}

.desktop-nav { display: flex; gap: 8px; }
.desktop-nav a {
  padding: 10px 14px;
  color: #555b69;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
}
.desktop-nav a:hover { background: var(--surface); color: var(--purple-deep); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(105, 200, 255, .55);
  outline-offset: 3px;
}
.button-small { min-height: 46px; padding: 12px 19px; justify-self: end; }
.button-large { min-height: 62px; padding: 18px 28px; font-size: 1.03rem; }
.button-purple { color: white; background: var(--purple); box-shadow: 0 10px 26px rgba(123, 82, 245, .24); }
.button-purple:hover { background: var(--purple-deep); }
.button-green { color: #113c27; background: var(--green); box-shadow: 0 12px 28px rgba(82, 211, 139, .26); }
.button-green:hover { background: #67dfa0; }
.button-outline { color: var(--purple-deep); border: 2px solid var(--purple-pale); background: white; }
.button-outline:hover { background: var(--purple-pale); }

.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 650px;
  margin-top: 30px;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 6vw, 78px);
}

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill {
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 24px rgba(49, 47, 64, .08);
  color: #5d6270;
  font-size: .83rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
}

h1, h2, h3 { margin-top: 0; line-height: 1.07; letter-spacing: -.04em; }
h1 { margin-bottom: 20px; font-size: clamp(3rem, 4.35vw, 4.7rem); }
h1 span { color: var(--purple); }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 4.2rem); }
h3 { margin-bottom: 12px; font-size: 1.45rem; }

.hero-lead {
  max-width: 570px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}
.microcopy { margin: 14px 0 0; color: #757987; font-size: .9rem; }

.hero-media { position: relative; min-height: 620px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.floating-note {
  position: absolute;
  padding: 15px 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(45, 35, 88, .16);
  backdrop-filter: blur(12px);
  color: #505563;
  line-height: 1.25;
}
.floating-note strong { color: var(--purple-deep); }
.note-top { top: 8%; left: 6%; }
.note-bottom { right: 5%; bottom: 7%; }

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-block: 24px;
}
.promise-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.promise-strip strong { display: block; font-size: 1.05rem; }
.promise-strip p { margin: 2px 0 0; color: var(--muted); font-size: .92rem; }
.promise-number { color: var(--purple); font-weight: 900; font-size: 1.3rem; }

.section { padding-top: 110px; padding-bottom: 40px; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.section-heading p:last-child { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-heading-centered { margin-inline: auto; text-align: center; }
.section-heading-centered p:last-child { margin-inline: auto; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
}
.benefit-card p { margin: 0; max-width: 360px; color: rgba(49, 50, 62, .76); }
.benefit-card h3 { font-size: 2rem; }
.benefit-purple { background: #ece3ff; }
.benefit-coral { background: #ffe6df; }
.benefit-lime { background: #e9ffc1; }
.card-kicker { display: inline-block; margin-bottom: 58px; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.mini-demo {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  padding: 22px;
  background: rgba(255,255,255,.78);
  border-radius: 20px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 30px rgba(80, 49, 148, .12);
}
.mini-demo span { display: block; height: 9px; margin: 9px 0; background: #cdbaf9; border-radius: 99px; }
.mini-demo span:nth-child(2) { width: 78%; background: #9b7ef2; }
.mini-demo span:nth-child(3) { width: 55%; }

.bars { position: absolute; left: 38px; right: 38px; bottom: 32px; height: 116px; display: flex; align-items: end; gap: 14px; }
.bars i { flex: 1; background: rgba(255,255,255,.76); border-radius: 16px 16px 6px 6px; box-shadow: 0 12px 24px rgba(174, 79, 58, .09); }
.bars i:nth-child(1) { height: 42%; }
.bars i:nth-child(2) { height: 68%; }
.bars i:nth-child(3) { height: 86%; }
.bars i:nth-child(4) { height: 100%; background: var(--coral); }

.bot-face { position: absolute; left: 50%; bottom: 28px; width: 170px; height: 140px; transform: translateX(-50%); border-radius: 48px; background: white; box-shadow: 0 22px 38px rgba(97, 126, 30, .15); }
.bot-face i { position: absolute; top: 54px; width: 16px; height: 22px; background: var(--purple); border-radius: 50%; }
.bot-face i:first-child { left: 48px; }
.bot-face i:nth-child(2) { right: 48px; }
.bot-face b { position: absolute; left: 54px; right: 54px; top: 91px; height: 7px; border-bottom: 5px solid var(--purple); border-radius: 0 0 30px 30px; }

.practice-section {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  padding: 28px;
  background: var(--purple-pale);
  border-radius: var(--radius-xl);
}
.practice-image { min-height: 560px; overflow: hidden; border-radius: 28px; }
.practice-image img { width: 100%; height: 100%; object-fit: cover; }
.practice-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 70px); }
.practice-copy h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.check-list { list-style: none; margin: 16px 0 26px; padding: 0; }
.check-list li { display: flex; align-items: center; gap: 12px; margin: 13px 0; font-weight: 750; }
.check-list span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #15482d; }
.text-link { color: var(--purple-deep); font-weight: 850; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: 0 16px 50px rgba(45, 35, 70, .055); }
.program-card:nth-child(2) { transform: translateY(18px); }
.program-card:nth-child(3) { transform: translateY(-10px); }
.module-badge { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 48px; border-radius: 18px; background: var(--purple); color: white; font-weight: 900; }
.program-card:nth-child(2) .module-badge { background: var(--coral); }
.program-card:nth-child(3) .module-badge { background: var(--sky); color: #164d67; }
.program-card:nth-child(4) .module-badge { background: var(--lime); color: #3a5310; }
.module-meta { margin: 0 0 8px; color: var(--purple); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.program-card > p:last-child { color: var(--muted); }

.outcomes-section {
  width: min(1240px, calc(100% - 40px));
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  padding: clamp(42px, 7vw, 90px);
  border-radius: var(--radius-xl);
  background: #22222c;
  color: white;
}
.outcomes-copy p:last-child { color: #babac6; font-size: 1.08rem; }
.outcomes-list { border-top: 1px solid rgba(255,255,255,.15); }
.outcomes-list div { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.outcomes-list span { color: var(--lime); font-weight: 900; }
.outcomes-list p { margin: 0; font-size: 1.18rem; font-weight: 760; }

.format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 960px; margin-inline: auto; }
.format-card { display: flex; flex-direction: column; min-height: 520px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.format-card.featured { background: var(--purple); color: white; border-color: transparent; box-shadow: var(--shadow); }
.format-label { display: inline-block; margin-bottom: 32px; color: var(--purple); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.featured .format-label { color: var(--lime); }
.format-card h3 { font-size: 2.2rem; }
.format-card p { color: var(--muted); }
.featured p { color: #e9e2ff; }
.format-card ul { margin: 24px 0; padding-left: 20px; }
.format-card li { margin: 10px 0; }
.format-card .button { margin-top: auto; }
.featured .button-green { box-shadow: none; }
.team-note { max-width: 760px; margin: 24px auto 0; color: var(--muted); text-align: center; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 25px 46px 25px 0; cursor: pointer; list-style: none; font-size: 1.1rem; font-weight: 820; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 19px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--purple-pale); color: var(--purple); font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details p { margin: -5px 50px 24px 0; color: var(--muted); }

.lesson-section {
  width: min(1240px, calc(100% - 40px));
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
  padding: clamp(38px, 7vw, 88px);
  background: var(--purple);
  border-radius: var(--radius-xl);
  color: white;
}
.lesson-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
.lesson-copy > p:not(.eyebrow) { color: #e6ddff; font-size: 1.08rem; }
.eyebrow-light { color: var(--lime); }
.lesson-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.lesson-points span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.09); font-weight: 750; }

.lead-form { padding: 34px; background: white; color: var(--ink); border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(39, 20, 91, .25); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; margin-bottom: 24px; }
.form-heading span { color: var(--purple); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.form-heading strong { font-size: 1.18rem; }
.lead-form > label:not(.consent) { display: block; margin-bottom: 16px; font-size: .85rem; font-weight: 800; }
input, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 15px 16px;
  color: var(--ink);
  background: #faf9fd;
  border: 1px solid var(--line);
  border-radius: 13px;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: #a1a3ad; }
fieldset { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 16px; padding: 0; border: 0; }
legend { margin-bottom: 8px; font-size: .85rem; font-weight: 800; }
.radio-card { display: flex; align-items: center; gap: 8px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; }
.radio-card input, .consent input { width: 18px; height: 18px; margin: 0; accent-color: var(--purple); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 18px; color: var(--muted); font-size: .78rem; }
.consent a { color: var(--purple-deep); }
.button-submit { width: 100%; }
.form-note { margin: 12px 0 0; color: #90939e; font-size: .75rem; text-align: center; }
.form-note a { color: var(--purple-deep); font-weight: 750; }
.form-status { min-height: 24px; margin-top: 8px; font-size: .85rem; font-weight: 750; text-align: center; }
.form-status.error { color: #bd3b33; }
.form-status.success { color: var(--green-deep); }

.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 0 44px;
  color: var(--muted);
  font-size: .87rem;
}
.site-footer p { margin: 0; text-align: center; }
.site-footer > a:last-child { justify-self: end; }
.brand-footer { color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; justify-self: end; gap: 10px 16px; }

.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 18px;
  width: min(960px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  transform: translateX(-50%);
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(45,35,88,.2);
  backdrop-filter: blur(14px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 4px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .86rem; }
.cookie-banner a { color: var(--purple-deep); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { min-height: 44px; padding: 10px 14px; border-radius: 12px; font-size: .82rem; font-weight: 850; cursor: pointer; }
.cookie-secondary { color: var(--purple-deep); background: white; border: 1px solid var(--line); }
.cookie-primary { color: white; background: var(--purple); border: 1px solid var(--purple); }

.privacy-page { background: var(--surface); }
.privacy-shell { width: min(900px, calc(100% - 40px)); margin: 52px auto; padding: clamp(28px, 5vw, 56px); background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.privacy-shell h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.privacy-shell h2 { margin-top: 36px; font-size: 1.5rem; }
.privacy-shell p, .privacy-shell li { color: var(--muted); }
.privacy-shell a[href^="mailto:"] { color: var(--purple-deep); font-weight: 750; }
.privacy-shell table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .92rem; }
.privacy-shell th, .privacy-shell td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-shell th { background: var(--surface); }
.legal-meta { margin: 12px 0 30px; color: var(--muted); font-size: .9rem; }
.draft-note { padding: 16px; border-radius: 14px; background: #fff2d6; color: #6b511b !important; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; }
  .hero-media { min-height: 520px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 350px; }
  .practice-section, .outcomes-section, .lesson-section { grid-template-columns: 1fr; }
  .practice-image { min-height: 430px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card:nth-child(n) { transform: none; }
  .faq-section { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 700px) {
  .shell, .practice-section, .outcomes-section, .lesson-section, .site-footer { width: min(100% - 24px, 1240px); }
  .site-header { min-height: 66px; padding: 10px 14px; }
  .brand { font-size: .96rem; }
  .brand-mark { width: 38px; height: 38px; }
  .site-header .button { min-height: 42px; padding: 10px 13px; font-size: .78rem; }
  .hero { margin-top: 14px; border-radius: 25px; }
  .hero-copy { min-height: auto; padding: 34px 22px 28px; }
  .hero-media { min-height: 390px; }
  .hero-media img { object-position: 63% center; }
  .floating-note { font-size: .76rem; padding: 11px 13px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.1rem); }
  .promise-strip { grid-template-columns: 1fr; }
  .section { padding-top: 78px; }
  .section-heading { margin-bottom: 30px; }
  .practice-section { padding: 14px; }
  .practice-copy { padding: 34px 12px 22px; }
  .practice-image { min-height: 320px; }
  .program-grid, .format-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 285px; }
  .outcomes-section { gap: 32px; margin-top: 70px; }
  .format-card { min-height: auto; }
  .lesson-section { gap: 35px; margin-top: 80px; padding: 34px 18px; }
  .lead-form { padding: 24px 18px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  fieldset { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand, .site-footer > a:last-child, .footer-links { justify-self: center; }
  .footer-links { flex-direction: column; gap: 8px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 14px; bottom: 10px; padding: 18px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-actions button { width: 100%; }
  .privacy-shell { overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
