:root {
  --navy: #0f2442;
  --navy-deep: #07182e;
  --navy-light: #183960;
  --blue: #04adff;
  --blue-dark: #008fd9;
  --teal: #00d5ac;
  --ink: #14223a;
  --text: #46546a;
  --muted: #748096;
  --white: #ffffff;
  --soft: #f4f7fa;
  --line: #dfe7ee;
  --shadow: 0 22px 70px rgba(15, 36, 66, 0.14);
  --radius: 24px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.offer-expired {
  --blue: #00c7a0;
  --blue-dark: #00a986;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 110px 0;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-soft {
  background: var(--soft);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(15, 36, 66, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 38px;
}

.brand {
  color: var(--navy);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.brand span {
  color: var(--teal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #354259;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
summary:focus-visible,
.desktop-nav a:focus-visible {
  outline: 3px solid rgba(4, 173, 255, 0.35);
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(4, 173, 255, 0.3);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(4, 173, 255, 0.38);
}

.button-outline {
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid var(--blue);
}

.button-large {
  min-height: 58px;
  padding-inline: 34px;
  font-size: 17px;
}

.button-block {
  width: 100%;
}

.nav-cta {
  min-height: 44px;
  margin-left: 8px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 95px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 28%, rgba(4, 173, 255, 0.13), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 50%, #102d50);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 330px;
  height: 330px;
  top: -140px;
  right: -80px;
  background: rgba(0, 213, 172, 0.08);
}

.hero-orb-two {
  width: 250px;
  height: 250px;
  bottom: -130px;
  left: 9%;
  background: rgba(4, 173, 255, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #008e74;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero-lead {
  max-width: 640px;
  margin: 27px 0 0;
  color: #d7e3ef;
  font-size: 18px;
}

.hero-lead strong {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 35px;
}

.timer-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d3dfec;
  font-size: 13px;
}

.timer-inline strong {
  color: var(--teal);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.timer-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 18px;
}

.hero-microcopy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 21px 0 0;
  color: #c1cfde;
  font-size: 12px;
}

.microcopy-divider {
  width: 1px;
  height: 17px;
  margin-inline: 3px;
  background: rgba(255, 255, 255, 0.24);
}

.course-visual {
  position: relative;
  min-height: 480px;
}

.course-glow {
  position: absolute;
  width: 520px;
  height: 250px;
  right: 2%;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(4, 173, 255, 0.2);
  filter: blur(75px);
}

.video-card {
  position: absolute;
  z-index: 2;
  width: min(520px, 88%);
  top: 50px;
  left: 50%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 19px;
  background: #101b2c;
  box-shadow: 0 38px 85px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
}

.video-card-top {
  display: flex;
  justify-content: space-between;
  padding: 3px 5px 13px;
  color: #b5c5d7;
  font-size: 10px;
  font-weight: 700;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 310px;
  overflow: hidden;
  border-radius: 10px;
  background: #f8fbfd;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 28px 15px;
  background: #123153;
}

.dashboard-sidebar span {
  width: 28px;
  height: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.34);
}

.dashboard-sidebar span:first-child {
  background: var(--teal);
}

.dashboard-main {
  padding: 28px 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.metric-row span {
  height: 54px;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background:
    linear-gradient(#bac7d4 0 0) 12px 13px / 55% 5px no-repeat,
    linear-gradient(#0f2442 0 0) 12px 29px / 34% 9px no-repeat,
    #fff;
}

.dashboard-main svg {
  width: 100%;
  height: 170px;
}

.play-button {
  position: absolute;
  display: grid;
  width: 76px;
  height: 76px;
  top: 51%;
  left: 50%;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 13px 35px rgba(4, 173, 255, 0.4);
  transform: translate(-50%, -50%);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid white;
}

.resource-sheet {
  position: absolute;
  z-index: 3;
  width: 190px;
  min-height: 275px;
  top: 160px;
  padding: 22px 19px;
  color: var(--ink);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}

.resource-sheet-left {
  left: -18px;
  transform: rotate(-5deg);
}

.resource-sheet-right {
  right: -16px;
  transform: rotate(5deg);
}

.sheet-tag {
  color: #008e74;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.resource-sheet h2 {
  margin: 8px 0 18px;
  font-size: 16px;
  line-height: 1.3;
}

.sheet-lines,
.resource-sheet ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sheet-lines span {
  display: block;
  height: 1px;
  background: #d7e0e8;
}

.resource-sheet li {
  position: relative;
  height: 11px;
  padding-left: 20px;
}

.resource-sheet li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  border: 1px solid var(--teal);
  border-radius: 2px;
}

.resource-sheet li span {
  display: block;
  height: 2px;
  transform: translateY(4px);
  background: #d7e0e8;
}

.benefit-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.benefit-item:first-child {
  border-left: 1px solid var(--line);
}

.benefit-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #008e74;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}

.benefit-item strong,
.benefit-item small {
  display: block;
}

.benefit-item strong {
  color: var(--ink);
  font-size: 14px;
}

.benefit-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.bundle-copy h2,
.faq-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.light h2,
.section-heading.light > p:last-child {
  color: var(--white);
}

.section-heading.light > p:last-child {
  color: #b9cadb;
}

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

.problem-card {
  position: relative;
  min-height: 320px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid #e3e9ef;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(15, 36, 66, 0.07);
}

.problem-card .number {
  position: absolute;
  top: 19px;
  right: 24px;
  color: #e0e7ee;
  font-size: 42px;
  font-weight: 850;
}

.problem-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.problem-card p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 90px;
}

.avatar-stage {
  position: relative;
  isolation: isolate;
  max-width: 440px;
  margin-inline: auto;
}

.avatar-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 88%;
  height: 78%;
  right: -4%;
  bottom: 2%;
  border-radius: 28px;
  background: var(--navy);
  transform: rotate(4deg);
}

.avatar-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.avatar-ring {
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  top: -40px;
  left: -48px;
  border: 26px solid rgba(0, 213, 172, 0.16);
  border-radius: 50%;
}

.avatar-badge {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 28px;
  min-width: 166px;
  padding: 14px 18px;
  color: var(--white);
  border-radius: 13px;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(15, 36, 66, 0.25);
}

.avatar-badge span,
.avatar-badge strong {
  display: block;
}

.avatar-badge span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
}

.avatar-badge strong {
  margin-top: 2px;
  font-size: 18px;
}

.about-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  font-size: 17px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.proof-grid div {
  padding: 20px 13px;
  background: var(--white);
  text-align: center;
}

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

.proof-grid strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}

.proof-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.system {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(4, 173, 255, 0.12), transparent 38%),
    var(--navy);
}

.system-steps {
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: center;
}

.system-step {
  min-height: 330px;
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  color: var(--navy-deep);
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.step-art {
  position: relative;
  width: 100px;
  height: 76px;
  margin: 0 auto 24px;
}

.step-art span,
.step-art i,
.step-art b {
  position: absolute;
  display: block;
}

.step-account span {
  width: 82px;
  height: 57px;
  top: 3px;
  left: 8px;
  border: 2px solid var(--blue);
  border-radius: 7px;
}

.step-account i {
  width: 20px;
  height: 20px;
  top: 19px;
  left: 39px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.step-account b {
  width: 40px;
  height: 13px;
  top: 43px;
  left: 29px;
  border: 2px solid var(--teal);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.step-target span,
.step-target i,
.step-target b {
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.step-target span {
  width: 70px;
  height: 70px;
  top: 1px;
  left: 15px;
}

.step-target i {
  width: 45px;
  height: 45px;
  top: 13px;
  left: 27px;
}

.step-target b {
  width: 17px;
  height: 17px;
  top: 27px;
  left: 41px;
  background: var(--teal);
  border-color: var(--teal);
}

.step-chart {
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}

.step-chart span,
.step-chart i,
.step-chart b {
  bottom: 0;
  width: 20px;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
}

.step-chart span {
  height: 30px;
  left: 10px;
}

.step-chart i {
  height: 52px;
  left: 40px;
  background: var(--teal);
}

.step-chart b {
  height: 69px;
  left: 70px;
}

.system-step h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.system-step p {
  margin: 12px 0 0;
  color: #b6c7d8;
  font-size: 14px;
}

.step-connector {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.step-connector::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--teal);
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 45px;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.mid-cta strong,
.mid-cta span {
  display: block;
}

.mid-cta strong {
  color: var(--white);
  font-size: 17px;
}

.mid-cta span {
  margin-top: 3px;
  color: #b8c8d9;
  font-size: 12px;
}

.mid-cta b {
  color: var(--teal);
}

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

.module-card {
  position: relative;
  min-height: 390px;
  padding: 32px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 20px 55px rgba(15, 36, 66, 0.15);
}

.module-card.featured {
  transform: translateY(-12px);
  background: linear-gradient(160deg, #12365c, var(--navy));
  box-shadow: 0 26px 65px rgba(15, 36, 66, 0.22);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 15px;
  color: var(--navy-deep);
  border-radius: 0 0 0 14px;
  background: var(--teal);
  font-size: 10px;
  font-weight: 850;
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.module-top span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.module-top small {
  color: #94a9bd;
  font-size: 10px;
}

.module-card h3 {
  margin: 35px 0 27px;
  font-size: 28px;
  line-height: 1.28;
}

.module-card ul,
.offer-summary ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.offer-summary li {
  position: relative;
  padding-left: 25px;
  color: #c5d3e2;
  font-size: 14px;
}

.module-card li::before,
.offer-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

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

.bundle-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 20px;
}

.bundle-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.bundle-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.bundle-list li > span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--navy);
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 213, 172, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.bundle-list strong,
.bundle-list small {
  display: block;
}

.bundle-list strong {
  color: var(--ink);
  font-size: 14px;
}

.bundle-list small {
  color: var(--muted);
  font-size: 11px;
}

.bundle-art {
  position: relative;
  min-height: 480px;
}

.bundle-art::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 75%;
  top: 13%;
  left: 13%;
  border-radius: 50%;
  background: rgba(4, 173, 255, 0.14);
  filter: blur(45px);
}

.bundle-video,
.bundle-template,
.bundle-checklist {
  position: absolute;
  border-radius: 17px;
  box-shadow: 0 26px 60px rgba(15, 36, 66, 0.22);
}

.bundle-video {
  z-index: 3;
  width: 64%;
  min-height: 310px;
  top: 25px;
  left: 18%;
  padding: 48px 35px;
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 213, 172, 0.2), transparent 30%),
    var(--navy);
}

.bundle-video span {
  color: var(--teal);
  font-size: 44px;
  font-weight: 300;
}

.bundle-video strong {
  display: block;
  margin-top: 5px;
  font-size: 28px;
  line-height: 1.3;
}

.bundle-video i {
  display: grid;
  width: 55px;
  height: 55px;
  margin-top: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: var(--blue);
  font-style: normal;
}

.bundle-template {
  z-index: 2;
  width: 49%;
  min-height: 220px;
  right: 0;
  bottom: 10px;
  padding: 24px;
  background: white;
  transform: rotate(4deg);
}

.bundle-template > span,
.bundle-checklist > span {
  color: #008e74;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.fake-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 20px;
}

.fake-table i {
  height: 28px;
  border: 1px solid #dfe7ee;
  background: #f8fafc;
}

.bundle-checklist {
  z-index: 4;
  width: 38%;
  min-height: 210px;
  bottom: 0;
  left: 3%;
  padding: 24px;
  background: #fff;
  transform: rotate(-5deg);
}

.bundle-checklist i {
  display: block;
  height: 11px;
  margin-top: 15px;
  padding-left: 20px;
  border-bottom: 2px solid #dfe7ee;
}

.outcomes {
  padding-block: 90px;
}

.outcome-track {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  max-width: 970px;
  margin: 0 auto;
}

.outcome-track div {
  text-align: center;
}

.outcome-track span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  color: var(--navy);
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: rgba(0, 213, 172, 0.1);
  font-size: 15px;
  font-weight: 900;
}

.outcome-track strong {
  color: var(--ink);
  font-size: 13px;
}

.outcome-track i {
  position: relative;
  height: 1px;
  margin: 0 17px 34px;
  background: #b9c6d3;
}

.outcome-track i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--teal);
}

.offer {
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 173, 255, 0.17), transparent 35%),
    var(--navy);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 990px;
  margin: 0 auto;
  overflow: hidden;
  border-top: 7px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.3);
}

.offer-summary,
.offer-price {
  padding: 49px;
}

.offer-summary {
  color: var(--text);
}

.offer-kicker {
  margin: 0;
  color: #008e74;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.offer-summary h3 {
  margin: 10px 0 26px;
  color: var(--ink);
  font-size: 32px;
}

.offer-summary li {
  color: var(--text);
}

.secure-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.secure-note span {
  color: #008e74;
}

.offer-price {
  border-left: 1px solid var(--line);
  background: #f8fafc;
  text-align: center;
}

.offer-timer {
  padding: 12px 18px;
  border-radius: 12px;
  background: #eaf3f7;
}

.offer-timer span,
.offer-timer strong {
  display: block;
}

.offer-timer span {
  color: var(--muted);
  font-size: 10px;
}

.offer-timer strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: 0.07em;
}

.original-price {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.price-label {
  margin: 12px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.price {
  margin: 0;
  color: var(--blue-dark);
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.saving {
  display: inline-flex;
  margin: 8px 0 20px;
  padding: 3px 13px;
  color: #007c65;
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.offer-price small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-heading p:last-child {
  margin-top: 19px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #edf3f7;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 12px;
  height: 2px;
  background: var(--navy);
}

.accordion summary span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 720px;
  margin: -6px 0 24px;
  padding-right: 45px;
  color: var(--muted);
}

.final-cta {
  padding: 66px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.site-footer {
  padding: 38px 0 105px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 99;
  display: none;
  right: 12px;
  bottom: 12px;
  left: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(7, 24, 46, 0.96);
  box-shadow: 0 18px 50px rgba(7, 24, 46, 0.34);
  backdrop-filter: blur(16px);
}

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

.mobile-buy-bar span {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.mobile-buy-bar strong {
  color: var(--teal);
  font-size: 13px;
}

.mobile-buy-bar .button {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 20px;
}

.noscript-note {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 18px;
  color: #412b00;
  border: 1px solid #f2bf46;
  border-radius: 10px;
  background: #fff4ce;
  text-align: center;
  font-size: 13px;
}

.thank-you-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 173, 255, 0.17), transparent 32%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 55%, #102d50);
}

.thank-you-header {
  padding: 25px 0;
}

.thank-you-header .brand {
  color: var(--white);
}

.thank-you-main {
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: 50px 0 90px;
}

.thank-you-shell {
  width: min(100%, 880px);
  text-align: center;
}

.thank-you-avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto 22px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  color: var(--navy-deep);
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(0, 213, 172, 0.27);
  font-size: 34px;
  font-weight: 900;
}

.thank-you-shell h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.thank-you-lead {
  max-width: 670px;
  margin: 22px auto 0;
  color: #d7e3ef;
  font-size: 19px;
}

.thank-you-lead strong {
  color: var(--teal);
}

.delivery-card {
  margin-top: 42px;
  padding: 38px;
  color: var(--text);
  border-top: 6px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.delivery-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  text-align: center;
}

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

.delivery-step {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--soft);
}

.delivery-step span {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--navy);
  place-items: center;
  margin-bottom: 13px;
  border-radius: 50%;
  background: rgba(0, 213, 172, 0.18);
  font-size: 11px;
  font-weight: 900;
}

.delivery-step strong,
.delivery-step small {
  display: block;
}

.delivery-step strong {
  color: var(--ink);
  font-size: 14px;
}

.delivery-step small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.delivery-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.thank-you-actions {
  margin-top: 28px;
}

.tracking-status {
  margin: 18px 0 0;
  color: #9db1c5;
  font-size: 10px;
}

@media (max-width: 700px) {
  .thank-you-header {
    padding: 20px 0;
  }

  .thank-you-main {
    min-height: calc(100vh - 70px);
    padding: 35px 0 60px;
  }

  .thank-you-shell h1 {
    font-size: 43px;
  }

  .thank-you-lead {
    font-size: 16px;
  }

  .delivery-card {
    padding: 28px 20px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }
}

.mobile-only {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-microcopy {
    justify-content: center;
  }

  .course-visual {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .resource-sheet-left {
    left: 0;
  }

  .resource-sheet-right {
    right: 0;
  }

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

  .benefit-item:nth-child(2) {
    border-right: 0;
  }

  .benefit-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .about-grid,
  .bundle-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .avatar-stage {
    width: min(430px, 90%);
  }

  .system-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-connector {
    width: 1px;
    height: 36px;
    margin-inline: auto;
  }

  .step-connector::after {
    top: auto;
    right: -4px;
    bottom: -1px;
    border-top: 7px solid var(--teal);
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
  }

  .module-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

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

  .bundle-art {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
  }

  .offer-card {
    grid-template-columns: 1fr;
    max-width: 670px;
  }

  .offer-price {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 65px 0 56px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-lead strong {
    font-size: 23px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .timer-inline {
    justify-content: center;
  }

  .hero-microcopy {
    gap: 7px;
    font-size: 10px;
  }

  .course-visual {
    min-height: 360px;
  }

  .video-card {
    width: 88%;
    top: 35px;
    padding: 9px;
  }

  .dashboard-preview {
    grid-template-columns: 42px 1fr;
    min-height: 240px;
  }

  .dashboard-sidebar {
    padding: 22px 8px;
  }

  .dashboard-sidebar span {
    width: 21px;
  }

  .dashboard-main {
    padding: 20px 14px;
  }

  .metric-row {
    gap: 6px;
  }

  .metric-row span {
    height: 42px;
  }

  .dashboard-main svg {
    height: 130px;
  }

  .resource-sheet {
    width: 122px;
    min-height: 200px;
    top: 135px;
    padding: 15px 12px;
  }

  .resource-sheet h2 {
    font-size: 11px;
  }

  .sheet-lines,
  .resource-sheet ul {
    gap: 8px;
  }

  .resource-sheet-left {
    left: -7px;
  }

  .resource-sheet-right {
    right: -7px;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:nth-child(2) {
    min-height: 92px;
    padding: 18px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about-copy h2,
  .bundle-copy h2,
  .faq-heading h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
  }

  .about-copy {
    text-align: left;
  }

  .avatar-badge {
    right: -5px;
    bottom: 12px;
  }

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

  .system-step {
    min-height: auto;
  }

  .mid-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .module-card {
    min-height: auto;
  }

  .bundle-art {
    min-height: 390px;
  }

  .bundle-video {
    width: 75%;
    left: 12%;
  }

  .bundle-template {
    width: 53%;
  }

  .bundle-checklist {
    width: 43%;
  }

  .outcome-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outcome-track i {
    width: 1px;
    height: 26px;
    margin: 0 auto;
  }

  .outcome-track i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    border-top: 6px solid var(--teal);
    border-right: 3px solid transparent;
    border-bottom: 0;
    border-left: 3px solid transparent;
  }

  .offer-summary,
  .offer-price {
    padding: 33px 25px;
  }

  .price {
    font-size: 54px;
  }

  .accordion summary {
    font-size: 15px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 135px;
  }

  .mobile-only {
    display: initial;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 34px;
  }

  .button-large {
    padding-inline: 20px;
    font-size: 15px;
  }

  .mobile-buy-bar .button {
    padding-inline: 14px;
    font-size: 13px;
  }
}

/* Ojoy exact-copy refresh */
.hero h1 {
  max-width: 720px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.11;
}

.hero-subheadline {
  max-width: 700px;
  margin: 27px 0 0;
  color: #d7e3ef;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}

.hero-credibility {
  max-width: 700px;
  margin: 12px 0 0;
  color: #9fb2c7;
  font-size: 14px;
  line-height: 1.65;
}

.ojoy-problem-grid .problem-card {
  min-height: 410px;
}

.ojoy-problem-grid .problem-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 19px 0 43px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.ojoy-problem-grid .problem-card h3 {
  max-width: 260px;
}

.ojoy-problem-grid .problem-card p {
  font-size: 15px;
  line-height: 1.8;
}

.empathy-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 22%, rgba(0, 213, 172, 0.1), transparent 28%),
    #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 88px;
}

.story-heading {
  position: sticky;
  top: 125px;
}

.story-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.story-panel {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid #dfe7ee;
  border-radius: 28px;
  background: #f8fafc;
  box-shadow: 0 25px 70px rgba(15, 36, 66, 0.09);
}

.story-panel::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 95px;
  top: 50px;
  left: -4px;
  border-radius: 8px;
  background: linear-gradient(var(--teal), var(--blue));
}

.story-panel p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.check-list,
.about-achievements,
.choice-card ul,
.final-copy ul,
.value-panel ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li,
.about-achievements li,
.choice-card li,
.final-copy li,
.value-panel li {
  position: relative;
  padding-left: 30px;
  line-height: 1.65;
}

.check-list li::before,
.about-achievements li::before,
.choice-own li::before,
.final-copy li::before,
.value-panel li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #008e74;
  font-weight: 900;
}

.story-panel blockquote {
  position: relative;
  margin: 34px 0;
  padding: 26px 30px 26px 70px;
  color: var(--navy);
  border-radius: 18px;
  background: #eaf5f7;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.55;
}

.story-panel blockquote::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 24px;
  color: var(--teal);
  font-size: 62px;
  font-family: Georgia, serif;
  line-height: 1;
}

.curriculum.section-dark {
  background:
    radial-gradient(circle at 50% -20%, rgba(4, 173, 255, 0.23), transparent 42%),
    var(--navy-deep);
}

.ojoy-module-grid {
  align-items: stretch;
}

.ojoy-module-grid .module-card {
  min-height: 510px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 43, 72, 0.92);
}

.ojoy-module-grid .module-card.featured {
  background: linear-gradient(160deg, #15476f, #0f2442);
}

.ojoy-module-grid .module-card h3 {
  margin: 32px 0 26px;
  font-size: 22px;
  line-height: 1.48;
}

.ojoy-module-grid .module-card li {
  line-height: 1.7;
}

.ojoy-module-grid .module-card li strong {
  color: #fff;
}

.included-refresh {
  background:
    linear-gradient(135deg, rgba(4, 173, 255, 0.04), transparent 38%),
    #f4f7fa;
}

.included-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(46px, 6vw, 86px);
}

.included-benefits {
  display: grid;
  gap: 14px;
}

.included-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  align-items: start;
  padding: 21px;
  border: 1px solid #dce5ed;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(15, 36, 66, 0.06);
}

.included-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: rgba(0, 213, 172, 0.16);
  font-size: 12px;
  font-weight: 850;
}

.included-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.included-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.course-workspace {
  position: relative;
  padding: 24px 0 78px;
}

.course-workspace::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 58%;
  top: 0;
  right: -2%;
  border-radius: 50%;
  background: rgba(4, 173, 255, 0.15);
  filter: blur(65px);
}

.workspace-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(15, 36, 66, 0.21);
}

.workspace-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 18px;
  color: #b7c6d5;
  background: #0d1f38;
  font-size: 10px;
}

.workspace-bar strong {
  color: #fff;
  font-size: 12px;
}

.workspace-bar > span {
  justify-self: end;
  color: var(--teal);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a4e66;
}

.window-dots i:first-child { background: #ff6b6b; }
.window-dots i:nth-child(2) { background: #ffd166; }
.window-dots i:last-child { background: var(--teal); }

.workspace-body {
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 340px;
}

.lesson-list {
  padding: 23px 15px;
  border-right: 1px solid #e2e8ef;
  background: #f7f9fb;
}

.lesson-list > p {
  margin: 0 8px 18px;
  color: #7c8da0;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.lesson {
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  padding: 11px 9px;
  border-radius: 10px;
}

.lesson.active {
  background: #e8f8f5;
}

.lesson > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #587087;
  border-radius: 8px;
  background: #e8edf2;
  font-size: 9px;
  font-weight: 850;
}

.lesson.active > span {
  color: #006e5a;
  background: rgba(0, 213, 172, 0.22);
}

.lesson b,
.lesson small {
  display: block;
}

.lesson b {
  color: var(--ink);
  font-size: 10px;
}

.lesson small {
  margin-top: 2px;
  color: #8999aa;
  font-size: 8px;
}

.lesson-player {
  padding: 24px;
  background: #fff;
}

.player-stage {
  position: relative;
  display: flex;
  min-height: 242px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(0, 213, 172, 0.15), transparent 52%),
    radial-gradient(circle at 83% 22%, rgba(4, 173, 255, 0.22), transparent 28%),
    #102b48;
}

.player-stage::before,
.player-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.player-stage::before {
  width: 250px;
  height: 250px;
  right: -110px;
  top: -130px;
}

.player-stage::after {
  width: 190px;
  height: 190px;
  left: -120px;
  bottom: -110px;
}

.player-label {
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.player-stage > strong {
  z-index: 1;
  margin-top: 9px;
  color: #fff;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.42;
}

.player-stage .preview-play {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-top: 20px;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(4, 173, 255, 0.35);
}

.player-stage .preview-play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
}

.player-progress {
  position: relative;
  height: 4px;
  margin-top: 17px;
  border-radius: 10px;
  background: #e3e9ef;
}

.player-progress i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.player-progress span {
  position: absolute;
  right: 0;
  top: 9px;
  color: #8192a4;
  font-size: 8px;
}

.workspace-resources {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 13px;
  width: 92%;
  margin: -26px auto 0;
}

.template-preview,
.checklist-preview {
  min-width: 0;
  padding: 17px;
  border: 1px solid #e0e7ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(15, 36, 66, 0.15);
}

.template-preview header,
.checklist-preview header {
  display: grid;
  gap: 3px;
  margin-bottom: 13px;
}

.template-preview header span,
.checklist-preview header span {
  color: #008e74;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.template-preview header strong,
.checklist-preview header strong {
  color: var(--ink);
  font-size: 11px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #dfe6ed;
  border-radius: 7px;
}

.template-grid b,
.template-grid i {
  min-width: 0;
  padding: 7px 6px;
  overflow: hidden;
  border-right: 1px solid #e2e8ee;
  border-bottom: 1px solid #e2e8ee;
  color: #607286;
  font-size: 7px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.template-grid b {
  color: var(--navy);
  background: #eef4f7;
}

.checklist-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-preview li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #607286;
  font-size: 8px;
}

.checklist-preview li i {
  display: grid;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  place-items: center;
  color: #007c65;
  border: 1px solid var(--teal);
  border-radius: 4px;
  background: #e8faf6;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.outcome-promise {
  max-width: 900px;
  margin: 6px auto 0;
  padding: 24px 30px;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 20px 45px rgba(15, 36, 66, 0.15);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 850;
}

.about-achievements {
  margin-top: 12px;
}

.about-emphasis {
  padding: 20px 22px;
  color: var(--navy);
  border-left: 5px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: #eaf8f5;
}

.ojoy-offer-card .offer-summary {
  text-align: center;
}

.ojoy-offer-card .offer-summary > p:last-of-type {
  max-width: 430px;
  margin: 24px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.ojoy-offer-card .offer-timer {
  margin-top: 26px;
}

.value-panel {
  text-align: left;
}

.value-title {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 850;
}

.value-panel ul {
  margin-top: 24px;
}

.value-panel li {
  color: var(--text);
}

.investment-line {
  margin: 28px 0 25px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.6;
}

.choices {
  background: #f4f7fa;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 1040px;
  margin: 0 auto;
}

.choice-card {
  position: relative;
  min-height: 400px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid #dde5ec;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 36, 66, 0.08);
}

.choice-card > span {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.choice-stay > span {
  color: #874f4f;
  background: #fff0f0;
}

.choice-own > span {
  color: #006e5a;
  background: #e3faf5;
}

.choice-card h3 {
  margin: 20px 0 27px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.35;
}

.choice-card li {
  color: var(--text);
}

.choice-stay li::before {
  content: "×";
  position: absolute;
  top: -2px;
  left: 0;
  color: #db6e6e;
  font-size: 22px;
  font-weight: 900;
}

.decision-line {
  margin: 34px 0 0;
  color: var(--navy);
  text-align: center;
  font-size: 22px;
}

.final-reminder {
  max-width: 860px;
  text-align: center;
}

.final-reminder h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 58px);
  letter-spacing: -0.04em;
}

.final-copy {
  max-width: 650px;
  margin: 30px auto 34px;
  color: #d0ddea;
  font-size: 17px;
  line-height: 1.75;
}

.final-copy ul {
  display: inline-grid;
  margin: 13px auto 25px;
  text-align: left;
}

.final-copy p {
  margin: 8px 0;
}

.final-copy strong {
  color: #fff;
  font-size: 21px;
}

.final-trust {
  margin: 20px 0 0;
  color: #aebfd0;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .included-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
  }

  .workspace-body {
    grid-template-columns: 175px 1fr;
  }

  .lesson-list {
    padding-inline: 10px;
  }
}

@media (max-width: 900px) {
  .story-grid,
  .included-layout {
    grid-template-columns: 1fr;
  }

  .story-heading {
    position: static;
  }

  .ojoy-module-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  .ojoy-module-grid .module-card {
    min-height: auto;
  }

  .ojoy-module-grid .module-card.featured {
    transform: none;
  }

  .course-workspace {
    max-width: 760px;
    margin-inline: auto;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .choice-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(35px, 10vw, 47px);
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-credibility {
    font-size: 13px;
  }

  .ojoy-problem-grid .problem-card {
    min-height: auto;
  }

  .story-panel {
    padding: 27px 23px;
  }

  .story-panel blockquote {
    padding: 24px 22px 24px 54px;
    font-size: 18px;
  }

  .story-panel blockquote::before {
    left: 15px;
  }

  .included-card {
    grid-template-columns: 46px 1fr;
    padding: 18px 16px;
  }

  .included-card > span {
    width: 40px;
    height: 40px;
  }

  .course-workspace {
    padding-bottom: 20px;
  }

  .workspace-bar {
    grid-template-columns: 1fr auto;
  }

  .workspace-bar > strong {
    display: none;
  }

  .workspace-body {
    grid-template-columns: 1fr;
  }

  .lesson-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 13px;
    border-right: 0;
    border-bottom: 1px solid #e2e8ef;
  }

  .lesson-list > p {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  .lesson {
    display: block;
    margin-top: 0;
    padding: 8px;
  }

  .lesson > span {
    margin-bottom: 7px;
  }

  .lesson b {
    font-size: 8px;
  }

  .lesson-player {
    padding: 14px;
  }

  .player-stage {
    min-height: 215px;
  }

  .workspace-resources {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: 12px;
  }

  .outcome-promise {
    margin-top: 30px;
    padding-inline: 20px;
  }

  .ojoy-offer-card .offer-summary {
    padding-bottom: 22px;
  }

  .value-panel {
    border-top: 1px solid var(--line);
  }

  .choice-card {
    padding: 30px 24px;
  }

  .final-copy {
    font-size: 15px;
  }
}
