:root {
  /* Clean near-white base + deep-emerald accent system (premium financial). */
  --cream: #f7f8f5;
  --cream-soft: #ffffff;
  --line: #e7eae3;
  --line-soft: #eef1ec;
  --ink: #15201b;
  --ink-83: rgba(21, 32, 27, 0.86);
  --ink-82: rgba(21, 32, 27, 0.82);
  --ink-55: rgba(21, 32, 27, 0.55);
  --ink-40: rgba(21, 32, 27, 0.34);
  --ink-08: rgba(21, 32, 27, 0.08);
  --ink-04: rgba(21, 32, 27, 0.045);
  --ink-03: rgba(21, 32, 27, 0.03);
  --muted: #545f58;
  --green: #176b4c;
  --green-bright: #2f8d68;
  --green-wash: rgba(23, 107, 76, 0.06);
  --navy: #16304a;
  --blue: #16304a;
  --gold: #b07d2e;
  --button-inset: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 1px 2px rgba(21, 32, 27, 0.12);
  --shadow-sm: 0 1px 2px rgba(21, 32, 27, 0.04), 0 1px 0 rgba(21, 32, 27, 0.02);
  --shadow: 0 18px 44px -22px rgba(21, 32, 27, 0.28), 0 2px 8px rgba(21, 32, 27, 0.05);
  --shadow-lg: 0 40px 90px -40px rgba(21, 32, 27, 0.38), 0 8px 24px rgba(21, 32, 27, 0.06);
  --focus: 0 18px 44px -22px rgba(21, 32, 27, 0.3);
  --radius-card: 16px;
  --radius-container: 22px;
  --pill: 9999px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 92% -8%, rgba(47, 141, 104, 0.12), transparent 34rem),
    radial-gradient(circle at 2% 2%, rgba(22, 48, 74, 0.05), transparent 30rem),
    var(--cream);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(21, 32, 27, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 32, 27, 0.02) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 60%);
}

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

/* Serif display accent (premium editorial touch in headlines). */
.ser { font-family: "Newsreader", Georgia, serif; font-style: italic; font-weight: 500; color: var(--green); }

.page-shell { width: min(100%, 1320px); margin: 0 auto; overflow: clip; padding: 0 8px; }
.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin: 16px auto 0;
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; padding: 4px 0; }
.brand img { width: 168px; height: auto; }
.nav { display: flex; gap: 2px; align-items: center; color: var(--ink-82); font-size: 14.5px; font-weight: 500; }
.nav a { padding: 9px 14px; border-radius: var(--pill); transition: .18s ease; }
.nav a:hover { background: var(--green-wash); color: var(--green); }

.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--pill);
  min-height: 48px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  white-space: nowrap;
}
.header-cta span, .btn span { transition: transform .2s ease; }
.header-cta:hover span, .btn:hover span { transform: translateX(3px); }
.header-cta, .btn-primary { background: var(--green); color: #fff; box-shadow: var(--button-inset); }
.header-cta:hover, .btn-primary:hover { background: #13593f; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { border: 1px solid var(--ink-40); color: var(--ink); background: rgba(255,255,255,.7); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

.section-pad { padding: 104px 36px; }

/* Cinematic illustrated hero banner */
.hero {
  position: relative;
  margin: 18px 0 0;
  border-radius: var(--radius-container);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  box-shadow: var(--shadow-lg);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(96deg, rgba(7,21,15,0.88) 0%, rgba(7,21,15,0.66) 34%, rgba(7,21,15,0.24) 60%, rgba(7,21,15,0.04) 82%); }
.hero-inner { position: relative; z-index: 1; align-self: center; max-width: 760px; padding: 80px 64px; color: #fff; }
.hero h1 { color: #fff; }
.hero .ser { color: #9ed8be; }
.hero-subhead { color: rgba(255, 255, 255, 0.88); max-width: 580px; }
.eyebrow.on-dark { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.24); color: #fff; box-shadow: none; }
.eyebrow.on-dark::before { background: #fff; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2); }
.btn-ghost-light { border: 1px solid rgba(255, 255, 255, 0.5); color: #fff; background: rgba(255, 255, 255, 0.07); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; transform: translateY(-1px); }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.hero-stats strong { display: block; font-family: "Newsreader", serif; font-size: 42px; line-height: 1; letter-spacing: -1px; color: #fff; }
.hero-stats span { color: rgba(255, 255, 255, 0.78); font-size: 13px; font-weight: 500; }
.orb { display: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 15px 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--cream-soft);
  color: var(--green);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 3px rgba(47,141,104,.18); }
.section-header .eyebrow { margin-bottom: 20px; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 6.4vw, 74px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 22px;
  max-width: 880px;
}
h2 { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.06; letter-spacing: -1.4px; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 20px; line-height: 1.28; letter-spacing: -0.3px; font-weight: 600; }
p { color: var(--muted); line-height: 1.55; font-size: 16px; font-weight: 400; }
.hero-subhead { max-width: 600px; font-size: 19px; line-height: 1.45; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 36px; }

.trust-row { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row div {
  min-width: 132px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--cream-soft);
  box-shadow: var(--shadow-sm);
}
.trust-row strong { display: block; font-size: 34px; line-height: 1; letter-spacing: -1px; font-weight: 700; color: var(--green); font-family: "Newsreader", serif; }
.trust-row span { color: var(--muted); font-size: 13px; font-weight: 500; }

/* Hero visual — premium glass dashboard card */
.dashboard-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-container);
  background: var(--cream-soft);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dashboard-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 0%, rgba(47,141,104,.12), transparent 16rem); pointer-events: none; }
.window-bar { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.dots { display: flex; gap: 7px; }
.dots span { width: 9px; height: 9px; border-radius: 50%; background: #d8ddd6; }
.dots span:nth-child(2) { background: #cfe0d6; }
.dots span:nth-child(3) { background: var(--green-bright); }
.url-pill { color: var(--muted); font-size: 12px; border: 1px solid var(--line); border-radius: var(--pill); padding: 7px 14px; background: var(--cream); }
.dashboard-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px; }
.score-panel, .lesson-list, .chart-card, .coach-note { border: 1px solid var(--line-soft); border-radius: var(--radius-card); background: var(--cream); padding: 18px; }
.score-panel { display: grid; place-items: center; text-align: center; min-height: 214px; }
.score-panel p, .score-panel small, .coach-note p { margin: 0; color: var(--muted); }
.score-ring { width: 122px; height: 122px; margin: 16px 0; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--green) 0 72%, var(--line) 72% 100%); position: relative; }
.score-ring::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--cream); }
.score-ring span { position: relative; z-index: 1; font-size: 30px; font-weight: 700; letter-spacing: -0.9px; color: var(--green); }
.lesson-list { display: flex; flex-direction: column; gap: 10px; }
.lesson { display: flex; align-items: center; gap: 10px; padding: 11px 12px; color: var(--muted); border-radius: 10px; background: var(--ink-03); font-size: 13px; font-weight: 500; }
.lesson span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-40); }
.lesson.done, .lesson.active { color: var(--ink); }
.lesson.done { background: var(--green-wash); }
.lesson.done span { background: var(--green); }
.lesson.active { outline: 1.5px solid var(--green); background: var(--cream-soft); }
.lesson.active span { background: var(--green-bright); }
.chart-head { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.chart-head strong { color: var(--green); font-weight: 700; }
.bars { display: flex; align-items: end; gap: 10px; height: 112px; margin-top: 16px; }
.bars i { flex: 1; border-radius: 7px 7px 4px 4px; background: linear-gradient(180deg, var(--green-bright), var(--green)); min-height: 26px; animation: rise 1.4s ease both; }
.bars i:nth-child(1){height:34%}.bars i:nth-child(2){height:48%}.bars i:nth-child(3){height:42%}.bars i:nth-child(4){height:70%}.bars i:nth-child(5){height:62%}.bars i:nth-child(6){height:88%}
.coach-note { background: linear-gradient(160deg, var(--green), #0f5238); border-color: transparent; color: #eaf3ee; }
.coach-note p { color: rgba(234,243,238,.72); }
.coach-note strong { display: block; margin-top: 10px; font-size: 17px; line-height: 1.4; font-weight: 600; color: #fff; }

.split-section { padding: 88px 36px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: center; }
.text-card, .cost-card, .signup-card, .movement-card { border: 1px solid var(--line); border-radius: var(--radius-container); background: var(--cream-soft); box-shadow: var(--shadow); }
.text-card { padding: 38px; }
.text-card p { font-size: 18px; line-height: 1.55; }
.muted strong { color: var(--green); }
.section-header { max-width: 820px; margin-bottom: 44px; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-header.center .eyebrow { margin-inline: auto; }
.section-header.center p:not(.eyebrow) { max-width: 720px; margin-inline: auto; font-size: 18px; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0 18px; }
.stat-grid article { padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--cream-soft); box-shadow: var(--shadow-sm); }
.stat-grid strong { display: block; font-size: clamp(42px, 5.4vw, 58px); line-height: 1; letter-spacing: -1.4px; color: var(--green); font-weight: 700; font-family: "Newsreader", serif; }
.stat-grid span { color: var(--muted); font-weight: 500; margin-top: 6px; display: block; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.insight-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--cream-soft); box-shadow: var(--shadow-sm); transition: .2s ease; }
.insight-grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--green-wash); color: var(--green); font-weight: 600; font-size: 20px; margin-bottom: 18px; }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module-card { display: block; min-height: 340px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-container); background: var(--cream-soft); box-shadow: var(--shadow-sm); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.module-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.module-card.featured { grid-column: span 1; }
.module-card img { width: 100%; height: 182px; object-fit: cover; filter: saturate(.92); border-bottom: 1px solid var(--line-soft); transition: transform .4s ease; }
.module-card:hover img { transform: scale(1.04); }
.module-card > div { padding: 22px 24px 24px; }
.module-card span { color: var(--green); font-size: 13px; font-weight: 700; font-family: "Newsreader", serif; font-style: italic; }
.module-card h3 { margin: 6px 0 8px; }
.module-card p { margin-bottom: 0; font-size: 14.5px; }
.card-more { display: inline-block; margin-top: 14px; color: var(--green); font-style: normal; font-size: 13.5px; font-weight: 700; }
.card-more::after { content: ""; }

.movement-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; padding: 44px; align-items: center; background: linear-gradient(150deg, var(--green), #0e4d35); border-color: transparent; color: #eaf3ee; box-shadow: var(--shadow-lg); }
.movement-card .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }
.movement-card .eyebrow::before { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.2); }
.movement-card h2 { color: #fff; }
.movement-card p { color: rgba(234,243,238,.82); font-size: 17px; }
.movement-card .btn-primary { background: #fff; color: var(--green); }
.movement-card .btn-primary:hover { background: #eef3ef; }
.play-card { min-height: 300px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-container); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center; gap: 16px; padding: 30px; transition: .2s ease; }
.play-card:hover { background: rgba(255,255,255,.14); }
.play-icon { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--green); font-size: 26px; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.play-card small { color: rgba(234,243,238,.82); font-weight: 500; }

.workshops { display: grid; grid-template-columns: .95fr 1.05fr; gap: 18px; align-items: stretch; }
.cost-card, .signup-card { padding: 44px; }
.cost-card { background: var(--cream-soft); }
.nothing { font-size: clamp(56px, 9vw, 100px); line-height: .95; letter-spacing: -2px; font-weight: 700; color: var(--green); margin-bottom: 22px; font-family: "Newsreader", serif; font-style: italic; }
.signup-card { background: linear-gradient(165deg, #fbfdfb, #f1f6f2); }
.signup-card h3 { font-size: 24px; }
.signup-card p, .signup-card small { color: var(--muted); }
.signup-card label { display: grid; gap: 8px; color: var(--ink); font-weight: 600; font-size: 14px; margin: 0 0 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input { width: 100%; border: 1px solid var(--line); background: var(--cream-soft); border-radius: 12px; min-height: 52px; padding: 0 16px; color: var(--ink); outline: none; transition: .16s ease; }
input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,141,104,.16); }
.signup-card .btn { border: 0; width: 100%; cursor: pointer; margin: 6px 0 14px; }

.site-footer { margin: 56px 0 32px; border: 1px solid var(--line); border-radius: var(--radius-container); background: var(--cream-soft); padding: 40px; box-shadow: var(--shadow-sm); }
.footer-brand { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line-soft); }
.footer-brand img { width: 210px; }
.footer-brand p { max-width: 520px; margin: 0; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 32px 0; }
.footer-links h4 { color: var(--ink); margin: 0 0 14px; font-size: 14px; font-weight: 700; }
.footer-links a, .footer-links span { display: block; color: var(--muted); margin: 9px 0; line-height: 1.5; transition: .16s ease; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; color: var(--ink-55); font-size: 13px; border-top: 1px solid var(--line-soft); padding-top: 22px; }

[data-reveal] { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.js-ready [data-reveal]:not(.is-visible) { opacity: 1; transform: translateY(12px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.site-header[data-reveal] { opacity: 1; transform: none; }
@keyframes rise { from { transform: scaleY(.4); opacity: .45; } to { transform: scaleY(1); opacity: 1; } }

@media (max-width: 1080px) {
  .nav { display: none; }
  .hero, .split-section, .movement-card, .workshops { grid-template-columns: 1fr; }
  .dashboard-card { max-width: 680px; }
  .module-grid, .stat-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-header { padding-left: 16px; }
  .brand img { width: 142px; }
  .header-cta { display: none; }
  .section-pad, .split-section { padding: 68px 18px; }
  h1 { font-size: 42px; letter-spacing: -1.2px; }
  h2 { font-size: 32px; letter-spacing: -0.8px; }
  .hero { min-height: 520px; }
  .hero-img { object-position: 76% center; }
  .hero-inner { padding: 56px 24px; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 34px; }
  .trust-row div { flex: 1 1 40%; }
  .dashboard-grid, .module-grid, .stat-grid, .insight-grid, .footer-links, .field-row { grid-template-columns: 1fr; }
  .movement-card, .cost-card, .signup-card, .text-card { padding: 28px; }
  .site-footer { margin: 40px 0 20px; padding: 26px; }
  .footer-brand, .footer-bottom { display: block; }
  .footer-brand img { width: 170px; margin-bottom: 18px; }
}
