:root {
  --ink: #04080f;
  --navy: #0a1221;
  --navy-2: #111a2a;
  --navy-3: #141f39;
  --cyan: #6decff;
  --cyan-2: #30b1ff;
  --cyan-soft: rgba(109, 236, 255, 0.14);
  --yellow: #eae18a;
  --orange: #ff8a3d;
  --orange-2: #ff6a1a;
  --text: #ffffff;
  --muted: #9fafc8;
  --muted-2: #c9d5e7;
  --line: rgba(255, 255, 255, 0.11);
  --card: rgba(255, 255, 255, 0.06);
  --light: #f6f8fb;
  --light-text: #132033;
  --light-muted: #526174;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(48, 177, 255, 0.22), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(234, 225, 138, 0.12), transparent 26%),
    linear-gradient(180deg, #04080f 0%, #0a1221 48%, #04080f 100%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 34px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(4, 8, 15, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 172px;
  max-height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  color: var(--muted-2);
  font-size: 14px;
}

.desktop-nav a {
  text-decoration: none;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d1f9ff 0%, #6decff 42%, #30b1ff 100%);
  color: #04101c;
  box-shadow: 0 14px 34px rgba(61, 204, 255, 0.24);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.btn-large {
  min-height: 54px;
  padding: 15px 22px;
  font-size: 16px;
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.hero {
  padding: 128px 0 74px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 54px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-chips span {
  padding: 8px 11px;
  border: 1px solid rgba(109, 236, 255, 0.36);
  border-radius: 999px;
  background: rgba(109, 236, 255, 0.1);
  color: #d1f9ff;
  font-size: 12px;
  font-weight: 800;
}

.centered {
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 640;
  line-height: 0.94;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 620;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-sub {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted-2);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(4, 8, 15, 0.78);
  backdrop-filter: blur(16px);
}

.panel-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-strip {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 26, 42, 0.82);
}

.plan-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-plan {
  display: grid;
  gap: 3px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.mini-plan span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-plan strong {
  color: #ffffff;
  font-size: 17px;
}

.mini-plan small {
  color: var(--muted);
}

.mini-plan.highlighted {
  border-color: rgba(109, 236, 255, 0.62);
  background: var(--cyan-soft);
}

.trust {
  background: #ffffff;
  color: var(--light-text);
}

.trust .section-label {
  color: #526174;
}

.trust-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.trust-grid img {
  max-height: 38px;
  margin: 0 auto;
  object-fit: contain;
}

.trust-text {
  color: #16304d;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.trust-text span {
  color: var(--light-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.light {
  background: var(--light);
  color: var(--light-text);
}

.light p,
.audience p,
.recognition p,
.video-section p,
.course-preview p,
.instructor p,
.community-proof p,
.reviews p,
.book-proof p,
.pricing p,
.next-step p,
.faq p {
  color: var(--light-muted);
}

.section-head {
  max-width: 770px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head.narrow {
  max-width: 700px;
}

.section-head .section-label {
  color: #1d6f9a;
}

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

.outcome-card,
.curriculum-grid article,
.price-card,
.compare-grid article,
.audience-list div,
.lesson-card-grid article,
.unlock-grid article,
.review-card,
.steps div,
.faq-item {
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 26, 42, 0.08);
}

.outcome-card {
  padding: 22px;
}

.outcome-card span,
.curriculum-grid span,
.steps span {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e8f7fb;
  color: #086a92;
  font-size: 12px;
  font-weight: 900;
}

.outcome-card h3,
.curriculum-grid h3,
.price-card h3,
.audience-list strong,
.steps strong {
  color: var(--light-text);
}

.two-col,
.video-grid,
.instructor-grid,
.steps-grid,
.final-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}

.audience {
  background: #ffffff;
  color: var(--light-text);
}

.recognition {
  background: #ffffff;
  color: var(--light-text);
}

.recognition-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
}

.recognition-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(17, 26, 42, 0.16);
}

.authority-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.authority-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #086a92;
  font-size: 13px;
  font-weight: 800;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list div {
  padding: 18px;
}

.audience-list strong,
.audience-list span {
  display: block;
}

.audience-list span {
  margin-top: 5px;
  color: var(--light-muted);
}

.dark {
  background: #08111f;
}

.cyan {
  color: var(--cyan);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.compare-grid article {
  padding: 22px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.compare-grid h3 {
  color: #ffffff;
}

.video-section,
.course-preview,
.instructor,
.community-proof,
.reviews,
.book-proof,
.next-step {
  background: #ffffff;
  color: var(--light-text);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: 0 22px 60px rgba(17, 26, 42, 0.18);
}

.video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  object-fit: cover;
}

.video-frame .video,
.video-frame .video__wrapper,
.video-frame .wistia_responsive_padding,
.video-frame .wistia_responsive_wrapper,
.video-frame .wistia_embed {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}

.video-frame .wistia_responsive_padding {
  position: absolute !important;
  inset: 0 !important;
  padding: 0 !important;
}

.video-frame .wistia_responsive_wrapper {
  position: absolute !important;
  inset: 0 !important;
}

.video-frame iframe,
.video-frame .wistia_embed {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0;
}

.video-frame .video-fallback-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1f9ff, #30b1ff);
  color: #04101c;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.academy-preview-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
}

.preview-feature {
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 24px;
  background: #f6f8fb;
  box-shadow: 0 18px 48px rgba(17, 26, 42, 0.1);
}

.preview-screen {
  padding: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(48, 177, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #07101c, #111a2a);
}

.preview-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.preview-layout {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
}

.preview-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.preview-sidebar span {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.preview-sidebar span.active {
  background: linear-gradient(135deg, #d1f9ff, #30b1ff);
}

.preview-lesson {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.preview-lesson h3,
.preview-lesson p {
  color: #ffffff;
}

.preview-lesson p {
  opacity: 0.82;
}

.lesson-assets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.lesson-assets span {
  padding: 8px 10px;
  border: 1px solid rgba(209, 249, 255, 0.26);
  border-radius: 999px;
  color: #d1f9ff;
  font-size: 12px;
  font-weight: 800;
}

.preview-feature-copy {
  padding: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill.free {
  background: #fff0e6;
  color: #9a3a08;
}

.status-pill.locked {
  background: #e8f7fb;
  color: #086a92;
}

.lesson-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lesson-card-grid article {
  padding: 18px;
}

.lesson-card-grid h3 {
  margin-top: 12px;
}

.inside-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
}

.inside-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(17, 26, 42, 0.16);
}

.inside-copy {
  padding: 26px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 24px;
  background: #f6f8fb;
}

.inside-copy h3 {
  margin-top: 14px;
  color: var(--light-text);
  font-size: 30px;
}

.inside-copy .lesson-assets {
  margin-bottom: 22px;
}

.inside-copy .lesson-assets span {
  border-color: rgba(8, 106, 146, 0.18);
  background: #ffffff;
  color: #086a92;
}

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

.unlock-grid article {
  padding: 18px;
}

.unlock-grid h3 {
  margin-top: 12px;
  color: var(--light-text);
}

.module-preview {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 24px;
  background: #f6f8fb;
}

.module-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.module-preview-head h3 {
  margin-bottom: 0;
  color: var(--light-text);
  font-size: 28px;
}

.module-preview-head .section-label {
  margin-bottom: 8px;
}

.dark-text {
  border-color: rgba(19, 32, 51, 0.18);
  background: #ffffff;
  color: var(--light-text);
}

.module-accordion {
  display: grid;
  gap: 8px;
}

.module-row {
  overflow: hidden;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 14px;
  background: #ffffff;
}

.module-row button {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 11px 14px;
  border: 0;
  background: transparent;
  color: var(--light-text);
  font: inherit;
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}

.module-row button::after {
  content: "+";
  color: #086a92;
  font-weight: 900;
}

.module-row.open button::after {
  content: "-";
}

.module-row button span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #e8f7fb;
  color: #086a92;
  font-size: 12px;
  font-weight: 900;
}

.module-row button em {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--light-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.module-row:first-child button em {
  background: #fff0e6;
  color: #9a3a08;
}

.module-row div {
  display: none;
  padding: 0 14px 14px 54px;
}

.module-row.open div {
  display: block;
}

.module-row.is-extra {
  display: none;
}

.module-preview.expanded .module-row.is-extra {
  display: block;
}

.show-modules {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(19, 32, 51, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--light-text);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.curriculum-grid article {
  padding: 20px;
}

.instructor-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(17, 26, 42, 0.16);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.credential-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #086a92;
  font-size: 13px;
  font-weight: 800;
}

.community-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
}

.community-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(17, 26, 42, 0.14);
}

.book-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 46px;
  padding: 30px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 26px;
  background: #f6f8fb;
}

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

.book-media img {
  display: block;
  width: min(300px, 100%);
  border-radius: 20px;
  filter: drop-shadow(0 24px 36px rgba(17, 26, 42, 0.18));
}

.book-grid h2 {
  color: var(--light-text);
}

.book-grid strong {
  color: var(--light-text);
}

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

.review-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
}

.review-card p {
  margin: 20px 0;
  color: var(--light-text) !important;
  font-size: 21px;
  font-weight: 620;
  line-height: 1.2;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card strong {
  margin-top: auto;
  color: var(--light-text);
}

.review-card small {
  margin-top: 5px;
  color: var(--light-muted);
  line-height: 1.4;
}

.proof-type {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #086a92;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.proof-cta span {
  color: var(--light-muted);
  font-weight: 800;
}

.pricing {
  background: #f6f8fb;
  color: var(--light-text);
}

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

.secure-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -12px auto 28px;
}

.secure-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(19, 32, 51, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--light-text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(17, 26, 42, 0.06);
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.price-card.featured {
  border: 2px solid #30b1ff;
  transform: translateY(-8px);
}

.price-card.free {
  border-color: rgba(255, 106, 26, 0.45);
}

.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #086a92;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.free .badge {
  background: #fff0e6;
  color: #9a3a08;
}

.price {
  margin: 4px 0;
  color: var(--light-text) !important;
  font-size: 42px;
  font-weight: 760;
  letter-spacing: 0;
}

.price-note {
  min-height: 48px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--light-muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #30b1ff;
}

.price-card .btn {
  margin-top: auto;
}

.payment-note {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  padding: 20px;
}

.faq {
  background: #f6f8fb;
  color: var(--light-text);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px;
  border: 0;
  background: #ffffff;
  color: var(--light-text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: #086a92;
  font-weight: 900;
}

.faq-item.open button::after {
  content: "-";
}

.faq-item div {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open div {
  display: block;
}

.final-cta {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer img {
  width: 160px;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .recognition-grid,
  .video-grid,
  .academy-preview-grid,
  .inside-grid,
  .community-grid,
  .book-grid,
  .instructor-grid,
  .steps-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid,
  .unlock-grid,
  .review-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid,
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 138px;
  }

  .site-header .btn {
    display: none;
  }

  .hero {
    padding: 100px 0 46px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-actions,
  .final-actions,
  .proof-cta {
    display: grid;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .proof-cta .btn {
    width: 100%;
  }

  .hero-media-panel {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .mobile-hide-chip {
    display: none !important;
  }

  .plan-strip-grid,
  .trust-grid,
  .compare-grid,
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .mini-plan {
    padding: 14px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .trust-grid img {
    max-height: 28px;
  }

  .outcome-card,
  .price-card,
  .compare-grid article,
  .audience-list div,
  .lesson-card-grid article,
  .unlock-grid article,
  .review-card,
  .steps div {
    padding: 18px;
  }

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

  .preview-sidebar {
    display: none;
  }

  .preview-lesson {
    min-height: auto;
  }

  .module-preview {
    padding: 16px;
  }

  .module-preview-head {
    display: grid;
  }

  .module-preview-head h3 {
    font-size: 24px;
  }

  .inside-copy {
    padding: 18px;
  }

  .inside-copy h3 {
    font-size: 25px;
  }

  .module-row button {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .module-row button em {
    grid-column: 2 / 3;
    justify-self: start;
    font-size: 10px;
  }

  .module-row button::after {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .module-row div {
    padding: 0 12px 12px 50px;
  }

  .review-card p {
    font-size: 20px;
  }

  .community-grid img {
    aspect-ratio: 16 / 10;
  }

  .book-grid {
    padding: 18px;
    gap: 22px;
  }

  .book-media {
    order: -1;
  }

  .footer {
    padding: 24px 0 96px;
  }

  .footer-grid {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer a,
  .footer span {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(4, 8, 15, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky strong,
  .mobile-sticky span {
    display: block;
  }

  .mobile-sticky span {
    color: var(--muted);
    font-size: 12px;
  }

  .mobile-sticky .btn {
    min-height: 42px;
    padding: 10px 14px;
    white-space: nowrap;
  }
}
