:root {
  --ink: #102326;
  --muted: #587072;
  --deep: #08292c;
  --night: #041517;
  --teal: #0b8f88;
  --teal-soft: #68d5cd;
  --teal-dark: #09625f;
  --gold: #caa760;
  --coral: #d8785f;
  --ivory: #fbf7ee;
  --mist: #edf7f5;
  --white: #ffffff;
  --line: rgba(16, 35, 38, 0.12);
  --shadow: 0 24px 80px rgba(5, 31, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--night);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 12px 6vw;
  color: var(--white);
  background: #041113;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 220px;
}

.brand-mark {
  display: none;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(202, 167, 96, 0.38);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 2px;
  line-height: 1;
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-actions {
  justify-self: end;
  flex-wrap: nowrap;
}

.solid-button,
.outline-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  color: currentColor;
}

.button-icon svg,
.icon-box svg,
.distance-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon svg {
  fill: currentColor;
  stroke: none;
}

.solid-button {
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
}

.solid-button:hover,
.outline-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.solid-button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.solid-button.small {
  min-height: 40px;
  padding: 10px 16px;
}

.solid-button.full {
  width: 100%;
}

.outline-button.full {
  width: 100%;
}

.outline-button {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.outline-button.dark {
  color: var(--deep);
  border-color: rgba(8, 41, 44, 0.28);
}

.ghost-button {
  min-height: 40px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 52px;
  min-height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
  min-height: clamp(560px, calc(100vh - 140px), 690px);
  padding: 34px 6vw 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 36%, rgba(11, 143, 136, 0.38), transparent 29%),
    linear-gradient(100deg, #02090b 0%, #041719 45%, #063b3b 100%);
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  margin-left: clamp(20px, 4.2vw, 84px);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-identity {
  position: absolute;
  left: clamp(430px, calc(62vw - 330px), 730px);
  bottom: clamp(-112px, calc(3vh - 130px), -88px);
  z-index: 4;
  width: max-content;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-watermark {
  position: absolute;
  left: clamp(38vw, 43vw, 49vw);
  top: 34px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  color: rgba(104, 213, 205, 0.09);
  line-height: 0.88;
  pointer-events: none;
}

.hero-watermark-csa,
.hero-watermark-system {
  font-weight: 900;
}

.hero-watermark-csa {
  font-size: clamp(5.8rem, 13vw, 14rem);
}

.hero-watermark-system {
  margin-top: 0.08em;
  font-size: clamp(4.9rem, 11vw, 11.8rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.03;
}

.hero-title {
  margin: 0;
  line-height: 0.95;
}

.hero-kicker,
.hero-name {
  margin: 0;
  color: #ffffff;
}

.hero-kicker {
  margin-bottom: 8px;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 500;
  white-space: nowrap;
}

.hero-name {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.hero-title-line {
  display: block;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  font-weight: 900;
}

.hero-title-accent {
  display: block;
  margin-top: 6px;
  font-size: clamp(3rem, 5.6vw, 6rem);
  color: var(--teal-soft);
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.7;
  white-space: pre-line;
}

.text-teal {
  color: var(--teal-soft);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  margin-right: -6vw;
  overflow: hidden;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: absolute;
  right: 96px;
  bottom: 0;
  z-index: 1;
  height: min(98%, 650px);
  width: auto;
  max-width: none;
  border-radius: 0;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.34));
}

.section {
  padding: 92px 6vw;
  background: var(--white);
}

.section:nth-of-type(odd) {
  background: var(--ivory);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin: 0 auto 38px;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.15;
}

h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  line-height: 1.7;
}

.painpoint-grid article,
.device-grid article,
.course-card,
.module-list,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.painpoint-grid,
.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.painpoint-grid article,
.device-grid article {
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 35, 38, 0.06);
}

.painpoint-section {
  background: #07191b;
}

.painpoint-heading {
  margin-bottom: 30px;
}

.painpoint-mark {
  display: block;
  width: 36px;
  height: 4px;
  margin: 0 auto 18px;
  background: var(--teal);
  border-radius: 999px;
}

.painpoint-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--ink);
  background: transparent;
  border-radius: 8px;
  font-weight: 900;
}

.icon-box svg {
  width: 54px;
  height: 54px;
}

.painpoint-grid p,
.device-grid p,
.section-heading p,
.course-card p,
.faq-list p {
  color: var(--muted);
}

.reveal-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 21, 23, 0.96), rgba(8, 41, 44, 0.93)),
    var(--night);
}

.distance-panel {
  display: grid;
  grid-template-columns: 0.8fr auto 1.2fr;
  gap: 32px;
  align-items: center;
}

.distance-examples h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.distance-examples p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
}

.distance-examples strong,
.distance-types strong,
.distance-caption strong {
  color: var(--teal-soft);
}

.distance-arrow {
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
}

.distance-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.distance-types article {
  min-height: 178px;
  padding: 18px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.distance-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  color: var(--white);
}

.distance-types p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.distance-caption {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.system-section {
  background: #0a2023;
}

.system-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  text-align: center;
}

.system-layout .section-heading {
  margin: 0 auto;
}

.csa-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
  width: min(860px, 100%);
  margin: 0 auto;
}

.csa-item {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.csa-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.csa-node {
  display: grid;
  place-items: center;
  width: 184px;
  min-height: 184px;
  padding: 24px 14px 20px;
  text-align: center;
  color: var(--white);
  background: var(--teal);
  border: 4px solid var(--mist);
  border-radius: 50%;
  aspect-ratio: 1;
  outline: 3px solid var(--teal);
  box-shadow: 0 18px 42px rgba(8, 41, 44, 0.08);
}

.csa-node strong {
  display: block;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.1;
}

.csa-node span {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1.62rem;
  line-height: 1.08;
  font-weight: 900;
}

.csa-node.dark {
  background: #114149;
  outline-color: #0f5961;
}

.csa-node.active {
  background: var(--teal);
  outline-color: var(--teal);
}

.csa-node.active strong,
.csa-node.active span {
  color: var(--white);
}

.csa-plus {
  align-self: start;
  margin-top: 64px;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 900;
}

.csa-summary {
  margin: 28px auto 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
}

.csa-summary strong {
  color: var(--teal);
}

.device-grid {
  margin-top: 44px;
}

.device-grid article span {
  color: var(--coral);
  font-weight: 900;
}

.course-section {
  background: var(--white);
}

.course-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.course-layout-featured {
  grid-template-columns: minmax(220px, 0.78fr) minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.course-book-panel {
  display: grid;
  place-items: center;
}

.course-book {
  position: relative;
  width: min(250px, 100%);
  aspect-ratio: 0.72;
  margin: 8px auto 0;
  perspective: 900px;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.28));
}

.book-cover {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  padding: 26px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 78, 75, 0.92), rgba(3, 33, 36, 0.98));
  border: 1px solid rgba(104, 213, 205, 0.28);
  border-radius: 2px 7px 7px 2px;
  transform: rotateY(-8deg);
  transform-origin: left center;
  overflow: hidden;
}

.book-cover::after {
  content: "CSA";
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: rgba(104, 213, 205, 0.14);
  font-size: 5.3rem;
  font-weight: 900;
}

.book-spine {
  position: absolute;
  left: -12px;
  top: 6px;
  bottom: 6px;
  width: 26px;
  background: linear-gradient(180deg, #042529, #031719);
  border-radius: 2px 0 0 2px;
  transform: skewY(-5deg);
}

.book-crown {
  color: rgba(202, 167, 96, 0.56);
  font-size: 1.2rem;
}

.book-cover strong {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(1.72rem, 2.5vw, 2.18rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.book-cover small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.book-cover em {
  position: absolute;
  left: 24px;
  bottom: 28px;
  color: rgba(104, 213, 205, 0.18);
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 900;
}

.course-pillar-stack {
  display: grid;
  gap: 14px;
  align-content: center;
}

.course-pillar {
  min-height: 108px;
  padding: 18px 20px;
  background: #10282b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.course-pillar span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-soft);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.course-pillar strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.5;
}

.course-card {
  position: sticky;
  top: 100px;
  padding: 30px;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 41, 44, 0.96), rgba(4, 17, 19, 0.98));
  color: var(--white);
  box-shadow: var(--shadow);
}

.course-card > * {
  position: relative;
  z-index: 1;
}

.course-card::after {
  content: "CSA";
  position: absolute;
  right: -8px;
  bottom: 10px;
  color: rgba(104, 213, 205, 0.08);
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 1;
}

.course-card p {
  color: rgba(255, 255, 255, 0.76);
}

.course-card .outline-button.full,
.purchase-panel .solid-button.full {
  margin-top: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.price-row span {
  color: rgba(255, 255, 255, 0.7);
}

.module-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  background: #0d2427;
}

.module-list div {
  min-height: 118px;
  padding: 22px;
  color: #edf7f5;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.module-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-soft);
}

.outcomes-section {
  background:
    linear-gradient(180deg, #07191b, #0a2023);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.outcome-grid article {
  min-height: 210px;
  padding: 28px;
  color: #edf7f5;
  background: #10282b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.outcome-grid strong {
  display: block;
  color: var(--teal-soft);
  font-size: 1.22rem;
  line-height: 1.3;
}

.outcome-grid p {
  color: rgba(237, 247, 245, 0.72);
}

.preview-section {
  background: var(--ivory);
}

.preview-layout,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.video-frame {
  display: grid;
  place-items: center;
  min-height: 370px;
  padding: 30px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(5, 24, 27, 0.72), rgba(5, 24, 27, 0.72)),
    linear-gradient(135deg, #08292c, #0b8f88);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.play-button {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  background: var(--gold);
  clip-path: polygon(28% 18%, 28% 82%, 82% 50%);
}

.video-frame p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.video-frame span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.credibility-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 20, 22, 0.98), rgba(7, 78, 75, 0.92)),
    var(--deep);
}

.authority-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.authority-strip h2 {
  font-size: clamp(1.65rem, 2.45vw, 2.3rem);
  line-height: 1.28;
}

.authority-strip article {
  min-height: 150px;
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.authority-strip span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal-soft);
  font-weight: 900;
}

.authority-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.authority-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.authority-strip strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.authority-strip p {
  margin: 10px 0 0;
  color: rgba(237, 247, 245, 0.68);
  font-size: 0.9rem;
}

.faq-preview {
  background: var(--mist);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px 6vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 17, 19, 0.96), rgba(9, 98, 95, 0.92)),
    var(--deep);
}

.final-cta h2,
.final-cta p {
  margin: 0;
}

.final-cta p:not(.eyebrow) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding: 42px 6vw;
  color: rgba(255, 255, 255, 0.72);
  background: #051315;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.placeholder-main {
  min-height: 70vh;
  padding: 110px 6vw;
  background: var(--ivory);
}

.placeholder-panel {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(8, 41, 44, 0.1);
}

.placeholder-panel h1 {
  margin: 0;
  font-size: 2.65rem;
}

.placeholder-panel p {
  color: var(--muted);
}

.placeholder-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.form-shell {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.form-shell label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.form-shell input,
.form-shell textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-shell textarea {
  min-height: 130px;
  resize: vertical;
}

.modal-open {
  overflow: hidden;
}

.lead-capture-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.lead-capture-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.lead-capture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 12, 0.72);
  backdrop-filter: blur(6px);
}

.lead-capture-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(2, 10, 12, 0.35);
}

.lead-capture-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lead-capture-close:hover {
  color: var(--deep);
  background: rgba(8, 41, 44, 0.08);
}

.lead-capture-kicker {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-capture-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.lead-capture-description {
  margin: 14px 0 0;
  color: var(--muted);
}

.lead-capture-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.lead-capture-form label {
  color: var(--ink);
  font-weight: 900;
}

.lead-capture-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-capture-note {
  margin: 2px 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.lead-capture-error,
.lead-capture-success {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.lead-capture-error {
  color: #b54a4a;
}

.lead-capture-success {
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
}

.public-page {
  background: var(--ivory);
}

.simple-header {
  gap: 28px;
  min-height: 68px;
  padding: 12px 6vw;
  background: #041113;
}

.simple-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.simple-header nav a:hover {
  color: var(--gold);
}

.page-hero {
  padding: 92px 6vw;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 8%, rgba(104, 213, 205, 0.2), transparent 28%),
    linear-gradient(135deg, #041517, #08292c 52%, #09625f);
}

.page-hero h1,
.page-hero p {
  width: min(860px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.course-hero .placeholder-actions {
  margin-top: 26px;
}

.content-section {
  width: min(1180px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 74px 0;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.info-card-grid.compact article,
.purchase-panel,
.contact-card,
.contact-notes,
.faq-page-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 41, 44, 0.07);
}

.info-card-grid.compact article {
  min-height: 122px;
  padding: 22px;
}

.info-card-grid strong,
.info-card-grid span {
  display: block;
}

.info-card-grid strong {
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.info-card-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.quote-band {
  width: min(1180px, calc(100% - 12vw));
  margin-bottom: 40px;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 21, 23, 0.97), rgba(9, 98, 95, 0.94)),
    var(--night);
  border-radius: 8px;
}

.quote-band h2 {
  color: var(--white);
}

.quote-band p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.76);
}

.purchase-panel {
  padding: 28px;
}

.purchase-panel span,
.purchase-panel strong {
  display: block;
}

.purchase-panel span {
  color: var(--muted);
  font-weight: 900;
}

.purchase-panel strong {
  margin: 8px 0 14px;
  color: var(--teal-dark);
  font-size: 2.2rem;
}

.public-modules {
  margin-top: 32px;
}

.faq-page-list {
  display: grid;
  gap: 12px;
}

.faq-page-list details {
  padding: 22px 24px;
}

.faq-page-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-page-list p,
.contact-notes p,
.policy-body p,
.split-panel p {
  color: var(--muted);
}

.contact-card,
.contact-notes {
  padding: 28px;
}

.policy-body {
  max-width: 880px;
}

.policy-body h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.policy-body h2:first-child {
  margin-top: 0;
}

html[data-theme="dark"] body {
  color: #edf7f5;
  background: #07191b;
}

html[data-theme="dark"] .site-header {
  background: #041113;
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 70% 18%, rgba(104, 213, 205, 0.24), transparent 31%),
    linear-gradient(135deg, #030c0e 0%, #08292c 45%, #07514f 100%);
}

html[data-theme="dark"] .section,
html[data-theme="dark"] .section:nth-of-type(odd),
html[data-theme="dark"] .problem-section,
html[data-theme="dark"] .course-section,
html[data-theme="dark"] .credibility-section,
html[data-theme="dark"] .outcomes-section,
html[data-theme="dark"] .faq-preview,
html[data-theme="dark"] .placeholder-main,
html[data-theme="dark"] .public-page {
  background: #07191b;
}

html[data-theme="dark"] .system-section,
html[data-theme="dark"] .preview-section {
  background: #0a2023;
}

html[data-theme="dark"] .painpoint-section,
html[data-theme="dark"] .reveal-section,
html[data-theme="dark"] .credibility-section,
html[data-theme="dark"] .final-cta,
html[data-theme="dark"] .quote-band {
  background:
    linear-gradient(90deg, rgba(4, 17, 19, 0.98), rgba(8, 76, 74, 0.92)),
    #041517;
}

html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .placeholder-panel h1,
html[data-theme="dark"] .page-hero h1,
html[data-theme="dark"] .contact-notes h2,
html[data-theme="dark"] .policy-body h2 {
  color: #f3fbf9;
}

html[data-theme="dark"] p,
html[data-theme="dark"] .painpoint-grid p,
html[data-theme="dark"] .device-grid p,
html[data-theme="dark"] .csa-item p,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .faq-list p,
html[data-theme="dark"] .faq-page-list p,
html[data-theme="dark"] .contact-notes p,
html[data-theme="dark"] .policy-body p,
html[data-theme="dark"] .split-panel p,
html[data-theme="dark"] .placeholder-panel p {
  color: rgba(237, 247, 245, 0.72);
}

html[data-theme="dark"] .painpoint-grid article,
html[data-theme="dark"] .device-grid article,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .faq-page-list details,
html[data-theme="dark"] .placeholder-panel,
html[data-theme="dark"] .info-card-grid.compact article,
html[data-theme="dark"] .purchase-panel,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-notes {
  color: #edf7f5;
  background: #10282b;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .icon-box,
html[data-theme="dark"] .csa-node {
  color: #daf8f5;
  background: var(--teal);
  border-color: #0a2023;
  outline-color: var(--teal);
}

html[data-theme="dark"] .csa-node strong,
html[data-theme="dark"] .csa-node span,
html[data-theme="dark"] .device-grid article span,
html[data-theme="dark"] .info-card-grid strong,
html[data-theme="dark"] .purchase-panel strong {
  color: var(--teal-soft);
}

html[data-theme="dark"] .info-card-grid span,
html[data-theme="dark"] .purchase-panel span {
  color: rgba(237, 247, 245, 0.68);
}

html[data-theme="dark"] .csa-node strong,
html[data-theme="dark"] .csa-node span {
  color: #ffffff;
}

html[data-theme="dark"] .csa-node.dark {
  background: #114149;
  outline-color: #0f5961;
}

html[data-theme="dark"] .csa-node.active {
  background: var(--teal);
}

html[data-theme="dark"] .csa-plus,
html[data-theme="dark"] .csa-summary {
  color: #edf7f5;
}

html[data-theme="dark"] .csa-summary strong {
  color: var(--teal-soft);
}

html[data-theme="dark"] .module-list {
  background: #0d2427;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .module-list div {
  color: #edf7f5;
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .module-list span {
  color: var(--teal-soft);
}

html[data-theme="dark"] .course-card {
  background:
    linear-gradient(180deg, #092426, #061315);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .outline-button.dark {
  color: #edf7f5;
  border-color: rgba(255, 255, 255, 0.28);
}

html[data-theme="dark"] .form-shell input,
html[data-theme="dark"] .form-shell textarea {
  color: #edf7f5;
  background: #07191b;
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .lead-capture-card {
  color: #edf7f5;
  background: #0a2023;
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .lead-capture-kicker,
html[data-theme="dark"] .lead-capture-success {
  color: var(--teal-soft);
}

html[data-theme="dark"] .lead-capture-description,
html[data-theme="dark"] .lead-capture-note,
html[data-theme="dark"] .lead-capture-close {
  color: rgba(237, 247, 245, 0.72);
}

html[data-theme="dark"] .lead-capture-close:hover {
  color: #edf7f5;
  background: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .lead-capture-form label {
  color: #edf7f5;
}

html[data-theme="dark"] .lead-capture-form input {
  color: #edf7f5;
  background: #07191b;
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .form-shell input::placeholder,
html[data-theme="dark"] .form-shell textarea::placeholder,
html[data-theme="dark"] .lead-capture-form input::placeholder {
  color: rgba(237, 247, 245, 0.42);
}

html[data-theme="dark"] .faq-list summary,
html[data-theme="dark"] .faq-page-list summary {
  color: #f3fbf9;
}

html[data-theme="dark"] .brand-mark {
  color: var(--gold);
}

html[data-theme="light"] .theme-toggle {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(8, 41, 44, 0.16);
}

html[data-theme="light"] body {
  background: var(--ivory);
}

html[data-theme="light"] .site-header,
html[data-theme="light"] .simple-header {
  background: #041113;
}

html[data-theme="light"] .painpoint-section,
html[data-theme="light"] .outcomes-section {
  background: #f3f8f8;
}

html[data-theme="light"] .system-section {
  background: #eef6f6;
}

html[data-theme="light"] .credibility-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 20, 22, 0.98), rgba(7, 78, 75, 0.92)),
    var(--deep);
}

html[data-theme="light"] .credibility-section h2,
html[data-theme="light"] .authority-strip strong {
  color: var(--white);
}

html[data-theme="light"] .authority-strip p {
  color: rgba(237, 247, 245, 0.74);
}

html[data-theme="light"] .painpoint-heading h2,
html[data-theme="light"] .system-section h2,
html[data-theme="light"] .outcomes-section h2,
html[data-theme="light"] .outcomes-section h3 {
  color: var(--ink);
}

html[data-theme="light"] .system-section .section-heading p,
html[data-theme="light"] .csa-item p {
  color: var(--muted);
}

html[data-theme="light"] .outcome-grid article {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 38px rgba(8, 41, 44, 0.07);
}

html[data-theme="light"] .outcome-grid strong {
  color: var(--teal-dark);
}

html[data-theme="light"] .outcome-grid p,
html[data-theme="light"] .outcomes-section .section-heading p {
  color: var(--muted);
}

html[data-theme="light"] .module-list {
  background: var(--ivory);
}

html[data-theme="light"] .module-list div {
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="light"] .module-list span {
  color: var(--teal-dark);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 8px;
  }

  .site-header.nav-open .header-actions {
    justify-content: flex-start;
  }

  .hero,
  .distance-panel,
  .system-layout,
  .course-layout,
  .course-showcase,
  .preview-layout,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .authority-strip {
    grid-template-columns: 1fr 1fr;
  }

  .simple-header,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .simple-header {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-identity {
    left: clamp(190px, calc(61vw - 330px), 430px);
    bottom: -108px;
  }

  .hero-watermark {
    left: clamp(46vw, 54vw, 60vw);
    top: 52px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-title-accent {
    font-size: clamp(3.1rem, 12vw, 5.2rem);
  }

  .hero-visual {
    min-height: 540px;
    margin-right: 0;
  }

  .hero-visual img {
    right: 96px;
    left: auto;
    height: 100%;
    max-width: min(520px, 84vw);
  }

  .course-layout-featured {
    grid-template-columns: 1fr;
  }

  .course-pillar-stack {
    align-content: start;
  }

  .csa-plus {
    margin-top: 74px;
  }

  .painpoint-grid,
  .device-grid,
  .info-card-grid,
  .outcome-grid,
  .module-list {
    grid-template-columns: 1fr;
  }

  .distance-types {
    grid-template-columns: 1fr;
  }

  .course-card {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .simple-header,
  .hero,
  .section,
  .final-cta,
  .site-footer,
  .placeholder-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-watermark {
    left: 50%;
    top: 82px;
    transform: translateX(-18%);
  }

  .hero-identity {
    position: static;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-watermark-csa {
    font-size: clamp(4.1rem, 22vw, 6.4rem);
  }

  .hero-watermark-system {
    font-size: clamp(3.65rem, 18vw, 5.2rem);
  }

  .hero-title-line {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero-title-accent {
    margin-top: 2px;
    font-size: clamp(2.8rem, 14vw, 3.9rem);
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, rgba(4, 17, 19, 0.3) 0%, rgba(4, 17, 19, 0.05) 38%, transparent 62%);
  }

  .hero-visual img {
    position: relative;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(420px, 95vw);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .cta-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .solid-button,
  .outline-button,
  .ghost-button {
    width: 100%;
  }

  .csa-diagram {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .csa-node {
    width: min(180px, 65vw);
    min-height: min(180px, 65vw);
  }

  .csa-plus {
    margin-top: 0;
    text-align: center;
  }

  .authority-strip {
    grid-template-columns: 1fr;
  }

  .authority-strip article {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .distance-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .distance-types article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .placeholder-panel {
    padding: 28px;
  }

  .placeholder-panel h1 {
    font-size: 2.2rem;
  }

  .page-hero {
    padding: 72px 22px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .content-section,
  .quote-band {
    width: calc(100% - 44px);
  }

  .quote-band {
    padding: 28px;
  }
}
