:root {
  --ink: #071613;
  --ink-soft: #0d2520;
  --ink-card: #102d27;
  --paper: #f4f1e8;
  --paper-deep: #e7e2d5;
  --white: #fffef8;
  --muted: #65736d;
  --muted-light: #9eafa8;
  --line: rgba(7, 22, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent: #dcff69;
  --accent-bright: #e9ff9c;
  --coral: #ff7d5b;
  --blue: #82d7ff;
  --focus: #71d5ff;
  --radius-sm: 0.85rem;
  --radius: 1.35rem;
  --radius-lg: 2rem;
  --container: 72rem;
  --shadow: 0 1.5rem 4rem rgba(1, 15, 12, 0.18);
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

html.is-locked,
html.is-locked body {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-sticky-cta {
  padding-bottom: calc(5.6rem + env(safe-area-inset-bottom));
}

body:not(.content-revealed) .skip-link {
  display: none;
}

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

button,
summary,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.2rem;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 850;
  text-decoration: none;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: clip;
  padding: 4.8rem 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #4d635c;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #9cb0a8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 840;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 12.5vw, 5.6rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.25rem, 9vw, 4.5rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  max-width: 43rem;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 26rem;
  margin: 0;
  color: #56645f;
  font-size: 0.92rem;
}

.section-heading--light > p {
  color: #8ca099;
}

/* VSL gate */

.vsl-gate {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  background: var(--ink);
  transition: min-height 0.55s ease;
}

.vsl-gate.is-revealed {
  display: block;
  min-height: 0;
}

.vsl-shell {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 1rem), 60rem);
  overflow: hidden;
  border-radius: 0.75rem;
  background: #000;
  box-shadow: 0 1.25rem 5rem rgba(0, 0, 0, 0.4);
  transition: width 0.45s ease, border-radius 0.45s ease, margin 0.45s ease;
}

.vsl-gate.is-revealed .vsl-shell {
  width: min(calc(100% - 2rem), 60rem);
  margin: max(1rem, env(safe-area-inset-top)) auto 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
}

.vsl-video,
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.vsl-video {
  object-fit: contain;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #dde6e2;
  text-align: center;
}

.video-placeholder__mark {
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  margin-bottom: 0.8rem;
  place-items: center;
  border: 1px solid #5b6d66;
  border-radius: 50%;
  padding-left: 0.15rem;
}

.video-placeholder small {
  margin-top: 0.25rem;
  color: #7e8e88;
  font-size: 0.72rem;
}

/* Product showroom hero */

.showroom-hero {
  position: relative;
  overflow: hidden;
  opacity: 0;
  padding: 4.4rem 0 3rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(220, 255, 105, 0.12), transparent 18rem),
    radial-gradient(circle at 5% 70%, rgba(130, 215, 255, 0.07), transparent 20rem),
    var(--ink);
  transform: translateY(1rem);
}

.showroom-hero.is-visible {
  animation: reveal-up 0.6s ease forwards;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(220, 255, 105, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  top: 15rem;
  right: -12rem;
  width: 30rem;
  height: 30rem;
}

.hero-orbit--two {
  right: -6rem;
  bottom: 7rem;
  width: 15rem;
  height: 15rem;
}

.showroom-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(220, 255, 105, 0.22);
  border-radius: 999px;
  background: rgba(220, 255, 105, 0.07);
  color: #dfff7b;
  padding: 0.45rem 0.7rem;
  font-size: 0.66rem;
  font-weight: 780;
}

.availability i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(220, 255, 105, 0.12);
}

.showroom-copy h1 {
  max-width: 47rem;
  text-wrap: balance;
}

.hero-lead {
  max-width: 35rem;
  margin: 0 0 1.8rem;
  color: #aebdb7;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-purchase {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.4rem;
}

.hero-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0.05rem 0.8rem;
}

.hero-price span {
  grid-column: 1 / -1;
  color: #81958d;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-price strong {
  font-family: var(--font-display);
  font-size: 2.65rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-price small {
  color: #91a39c;
  padding-bottom: 0.25rem;
  font-size: 0.7rem;
  white-space: nowrap;
}

.hero-price small b {
  color: #d7e2de;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  padding: 0.95rem 1.15rem;
  font: 850 0.92rem/1.2 var(--font-body);
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-0.1rem);
}

.button:active {
  transform: translateY(0.06rem) scale(0.99);
}

.button--primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0.9rem 2rem rgba(173, 215, 54, 0.16);
}

.button--primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 1rem 2.4rem rgba(173, 215, 54, 0.22);
}

.button--wide {
  width: 100%;
}

.button__arrow {
  font-size: 1.2rem;
  transition: transform 0.15s ease;
}

.button:hover .button__arrow {
  transform: translateX(0.2rem);
}

.button.is-loading {
  pointer-events: none;
}

.button.is-loading .button__label,
.button.is-loading .button__arrow {
  opacity: 0.12;
}

.button__loader {
  position: absolute;
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.15rem solid rgba(7, 22, 19, 0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.button.is-loading .button__loader {
  display: block;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  color: #859890;
  font-size: 0.68rem;
  list-style: none;
}

.trust-line li::before {
  margin-right: 0.38rem;
  color: var(--accent);
  content: "✓";
}

.product-stage {
  position: relative;
  width: min(100%, 34rem);
  min-height: 28rem;
  margin-inline: auto;
  padding: 2.3rem 0.6rem 1.5rem;
  perspective: 70rem;
}

.product-stage::before {
  position: absolute;
  inset: 8% 3% 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 255, 105, 0.16), rgba(220, 255, 105, 0.025) 47%, transparent 68%);
  filter: blur(0.2rem);
  content: "";
}

.course-screen {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 1.2rem;
  background: #0b211c;
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.42);
  transform: rotateY(-5deg) rotateX(2deg);
}

.course-screen__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  padding: 0.8rem 0.9rem;
}

.mini-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.mini-brand b {
  color: var(--accent);
}

.screen-status {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #91a59d;
  padding: 0.25rem 0.5rem;
  font-size: 0.55rem;
}

.course-screen__content {
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem;
}

.course-cover {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border-radius: 0.9rem;
  background:
    linear-gradient(130deg, rgba(220, 255, 105, 0.14), transparent 55%),
    #15382f;
  padding: 1.2rem;
}

.course-cover > span {
  color: #9db0a9;
  font-size: 0.62rem;
  font-weight: 750;
  text-transform: uppercase;
}

.course-cover > strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 12rem;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.memory-symbol {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(220, 255, 105, 0.23);
  border-radius: 50%;
}

.memory-symbol::before,
.memory-symbol::after {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(220, 255, 105, 0.2);
  border-radius: 50%;
  content: "";
}

.memory-symbol::after {
  inset: 3.2rem;
}

.memory-symbol i {
  position: absolute;
  z-index: 2;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem rgba(220, 255, 105, 0.1);
}

.memory-symbol i:nth-child(1) { top: 0.9rem; left: 5rem; }
.memory-symbol i:nth-child(2) { top: 4.4rem; left: 1.1rem; }
.memory-symbol i:nth-child(3) { right: 1rem; bottom: 3.5rem; }
.memory-symbol i:nth-child(4) { right: 4.7rem; bottom: 1.1rem; }
.memory-symbol i:nth-child(5) { top: 4.8rem; left: 5.1rem; }

.memory-symbol b {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  transform: translate(-50%, -50%);
}

.lesson-preview {
  display: grid;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.85rem;
}

.lesson-preview > span {
  margin-bottom: 0.2rem;
  color: #84978f;
  font-size: 0.56rem;
  font-weight: 750;
  text-transform: uppercase;
}

.lesson-preview div {
  display: grid;
  grid-template-columns: 1.7rem 1fr 2.2rem;
  align-items: center;
  gap: 0.45rem;
}

.lesson-preview i {
  color: #71867d;
  font-size: 0.55rem;
  font-style: normal;
}

.lesson-preview b {
  font-size: 0.68rem;
  font-weight: 700;
}

.lesson-preview em {
  height: 0.18rem;
  overflow: hidden;
  border-radius: 999px;
  background: #2e4840;
}

.lesson-preview em::after {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--accent);
  content: "";
}

.float-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 31, 26, 0.92);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.25);
  color: #bdcac5;
  padding: 0.5rem 0.75rem;
  font-size: 0.62rem;
  backdrop-filter: blur(0.6rem);
}

.float-tag b {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
}

.float-tag--modules { top: 0; left: 0; }
.float-tag--bonus { right: -0.1rem; top: 4.5rem; }
.float-tag--guarantee { bottom: 0; left: 0.2rem; }

.peek-cue {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem auto 0;
  color: #81948d;
  font-size: 0.7rem;
  font-weight: 750;
  text-decoration: none;
}

.peek-cue span {
  color: var(--accent);
  font-size: 1rem;
}

/* Modules collection */

.collection {
  background: var(--paper);
  color: var(--ink);
}

.module-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ece8dd;
  box-shadow: 0 1.5rem 4rem rgba(7, 22, 19, 0.08);
}

.module-browser__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: #53615c;
  font-size: 0.68rem;
  font-weight: 780;
}

.swipe-hint {
  color: #7b8984;
  font-weight: 650;
}

.swipe-hint b {
  color: var(--ink);
  font-size: 0.9rem;
}

.module-rail {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 1rem;
  scroll-padding-inline: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.module-rail::-webkit-scrollbar {
  display: none;
}

.module-card {
  position: relative;
  width: min(77vw, 18rem);
  min-width: min(77vw, 18rem);
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 19, 0.12);
  border-radius: 1.25rem;
  background: #fffdf6;
  padding: 1.1rem;
  scroll-snap-align: start;
}

.module-card--featured {
  background: var(--ink-soft);
  color: var(--white);
}

.module-card__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #85928e;
  font-size: 0.65rem;
  font-weight: 850;
}

.module-card__visual {
  position: relative;
  display: grid;
  height: 12.8rem;
  margin-bottom: 1.2rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.95rem;
  background: #e3dfd2;
}

.module-card--featured .module-card__visual {
  background: #173c33;
}

.module-card > p {
  margin: 0 0 0.45rem;
  color: #77847f;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-card h3 {
  margin-bottom: 0.7rem;
}

.module-card small {
  display: block;
  color: #63706b;
  font-size: 0.78rem;
  line-height: 1.5;
}

.module-card--featured small {
  color: #9eb0a9;
}

.visual-code i {
  position: absolute;
  width: 6rem;
  height: 1px;
  background: rgba(220, 255, 105, 0.28);
  transform-origin: left center;
}

.visual-code i:nth-child(1) { transform: rotate(30deg); }
.visual-code i:nth-child(2) { transform: rotate(150deg); }
.visual-code i:nth-child(3) { transform: rotate(270deg); }

.visual-code b {
  display: grid;
  width: 4.7rem;
  height: 4.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  box-shadow: 0 0 0 1.2rem rgba(220, 255, 105, 0.07);
}

.visual-image {
  background: #ffe1d8;
}

.visual-image i,
.visual-image em {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border: 0.9rem solid var(--coral);
  transform: rotate(28deg);
}

.visual-image em {
  border-color: #ffb7a1;
  transform: rotate(62deg);
}

.visual-image b {
  z-index: 2;
  color: #75301c;
  font-size: 2.4rem;
}

.visual-palace {
  grid-template-columns: repeat(3, 2.5rem);
  align-content: center;
  gap: 0.5rem;
  background: #dcecff;
}

.visual-palace i {
  width: 2.5rem;
  height: 4.8rem;
  border-radius: 2.5rem 2.5rem 0 0;
  background: #5792bd;
}

.visual-palace i:nth-child(2) { height: 6.5rem; background: #2f6f9e; }
.visual-palace b { position: absolute; right: 1.2rem; bottom: 1.2rem; width: 0.8rem; height: 0.8rem; border-radius: 50%; background: var(--coral); }

.visual-chain {
  grid-template-columns: repeat(4, 2rem);
  gap: 0.8rem;
  background: #e6eed4;
}

.visual-chain::before {
  position: absolute;
  width: 9rem;
  height: 1px;
  background: #718653;
  content: "";
}

.visual-chain i {
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border: 0.35rem solid #718653;
  border-radius: 50%;
  background: #e6eed4;
}

.visual-number {
  grid-template-columns: auto auto auto;
  gap: 0.8rem;
  background: #efe5ff;
  color: #503c75;
}

.visual-number b { font-family: var(--font-display); font-size: 1.6rem; }
.visual-number i { font-style: normal; }
.visual-number em { font-size: 2.2rem; font-style: normal; }

.visual-text {
  align-content: center;
  gap: 0.75rem;
  background: #f2e2cc;
}

.visual-text i {
  width: 72%;
  height: 0.55rem;
  border-radius: 999px;
  background: #b69a75;
}

.visual-text i:nth-child(2) { width: 58%; }
.visual-text i:nth-child(3) { width: 66%; }
.visual-text b { position: absolute; right: 1.4rem; bottom: 1.2rem; color: var(--coral); font-size: 1.6rem; }

.visual-target {
  background: #d8efe7;
}

.visual-target i {
  position: absolute;
  border: 0.15rem solid #4b8a76;
  border-radius: 50%;
}

.visual-target i:nth-child(1) { width: 8rem; height: 8rem; }
.visual-target i:nth-child(2) { width: 5rem; height: 5rem; }
.visual-target b { z-index: 1; display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); }

.rail-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 1rem 1rem;
}

.rail-dots i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #b4b0a7;
  transition: width 0.2s ease, background 0.2s ease;
}

.rail-dots i.is-active {
  width: 1.1rem;
  background: var(--ink);
}

.collection-result {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.1rem 0.8rem;
  margin-top: 1.2rem;
  border-left: 0.22rem solid var(--coral);
  padding: 0.65rem 0 0.65rem 1rem;
}

.collection-result > span {
  grid-row: span 2;
  color: #7c8984;
  font: 850 0.8rem/1 var(--font-body);
}

.collection-result p,
.collection-result strong {
  margin: 0;
}

.collection-result p {
  color: #77837f;
  font-size: 0.78rem;
}

.collection-result strong {
  max-width: 40rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

/* Bonuses */

.bonuses {
  background: var(--ink-soft);
}

.bonus-gallery {
  display: grid;
  gap: 1rem;
}

.bonus-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #123129;
}

.bonus-card__art {
  position: relative;
  display: grid;
  min-height: 12rem;
  place-items: center;
  overflow: hidden;
}

.bonus-card__art > b {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(7, 22, 19, 0.35);
  font-size: 0.7rem;
}

.bonus-card__copy {
  border-top: 1px solid rgba(7, 22, 19, 0.12);
  background: var(--paper);
  color: var(--ink);
  padding: 1.2rem;
}

.bonus-card__copy > span {
  display: block;
  margin-bottom: 1.1rem;
  color: #72817b;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-card__copy h3 {
  margin-bottom: 0.55rem;
}

.bonus-card__copy p {
  margin: 0;
  color: #5e6b66;
  font-size: 0.82rem;
}

.bonus-card--challenge .bonus-card__art {
  align-content: center;
  background: var(--accent);
  color: var(--ink);
}

.bonus-card--challenge .bonus-card__art span {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.bonus-card--challenge .bonus-card__art i {
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bonus-card--kit .bonus-card__art {
  grid-template-columns: repeat(3, 3.8rem);
  align-items: end;
  justify-items: stretch;
  gap: 0.35rem;
  background: #9ddfff;
}

.bonus-card--kit .bonus-card__art i {
  display: block;
  width: 100%;
  height: 6.5rem;
  border-radius: 3.8rem 3.8rem 0 0;
  background: #38789a;
}

.bonus-card--kit .bonus-card__art i:nth-child(2) {
  height: 9.2rem;
  background: #1d5e7f;
}

.bonus-card--kit .bonus-card__art i:nth-child(3) {
  height: 5rem;
  background: #5f9eba;
}

.bonus-card--speak .bonus-card__art {
  background: #ff9b7f;
}

.bonus-card--speak .bonus-card__art span {
  width: 7.5rem;
  height: 5rem;
  border-radius: 50%;
  background: #732f1e;
}

.bonus-card--speak .bonus-card__art span::after {
  position: absolute;
  top: calc(50% + 2rem);
  left: calc(50% - 2.5rem);
  border-width: 1.2rem 1.2rem 0 0;
  border-style: solid;
  border-color: #732f1e transparent transparent;
  content: "";
}

.bonus-card--speak .bonus-card__art i,
.bonus-card--speak .bonus-card__art em {
  position: absolute;
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--accent);
}

.bonus-card--speak .bonus-card__art i { transform: translate(-2rem, -0.4rem); }
.bonus-card--speak .bonus-card__art em { transform: translate(2rem, 0.4rem); }

.bonus-caption {
  margin: 1rem auto 0;
  color: #859a92;
  font-size: 0.7rem;
  text-align: center;
}

/* Offer */

.offer-section {
  background: var(--paper);
  color: var(--ink);
}

.offer-layout {
  display: grid;
  gap: 2.2rem;
}

.offer-summary h2 {
  max-width: 39rem;
}

.offer-tally {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.offer-tally div {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

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

.offer-tally strong {
  color: #284b40;
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.offer-tally span {
  margin-top: 0.35rem;
  color: #64726d;
  font-size: 0.68rem;
  line-height: 1.3;
}

.offer-note {
  margin: 1.2rem 0 0;
  color: #74817c;
  font-size: 0.76rem;
}

.checkout-card {
  overflow: hidden;
  border: 1px solid rgba(7, 22, 19, 0.12);
  border-radius: var(--radius-lg);
  background: #fffdf7;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.checkout-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem;
}

.checkout-card__head span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.checkout-card__head small {
  color: var(--accent);
  font-size: 0.56rem;
  font-weight: 750;
  text-transform: uppercase;
}

.checkout-list {
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
}

.checkout-list li {
  display: grid;
  grid-template-columns: 1.6rem 1fr auto;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0.2rem;
  font-size: 0.76rem;
}

.checkout-list i {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 50%;
  background: #e6efcf;
  color: #365527;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.checkout-list b {
  color: #73817b;
  font-size: 0.62rem;
}

.checkout-price {
  padding: 1rem 0.2rem 1.2rem;
  text-align: center;
}

.checkout-price > span {
  display: block;
  color: #6e7c76;
  font-size: 0.67rem;
  font-weight: 750;
  text-transform: uppercase;
}

.checkout-price > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.checkout-price small {
  padding-bottom: 0.45rem;
  color: #596762;
  font-size: 0.72rem;
}

.checkout-price strong {
  font-family: var(--font-display);
  font-size: 3.2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.checkout-price p {
  margin: 0.3rem 0 0;
  color: #71807a;
  font-size: 0.75rem;
}

.checkout-price p b {
  color: var(--ink);
}

.checkout-microcopy {
  margin: 0.7rem 0 0;
  color: #77847f;
  font-size: 0.64rem;
  text-align: center;
}

.checkout-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.checkout-flow span {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  color: #61706a;
  font-size: 0.56rem;
  text-align: center;
}

.checkout-flow b {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.6rem;
}

.checkout-flow i {
  color: #9aa59f;
  font-size: 0.7rem;
  font-style: normal;
}

/* Guarantee */

.guarantee {
  background:
    radial-gradient(circle at 20% 50%, rgba(220, 255, 105, 0.08), transparent 18rem),
    var(--ink);
}

.guarantee-layout {
  display: grid;
  gap: 2.2rem;
}

.guarantee-seal {
  position: relative;
  display: grid;
  width: 15rem;
  height: 15rem;
  margin-inline: auto;
  place-content: center;
  border: 1px solid rgba(220, 255, 105, 0.35);
  border-radius: 50%;
  background: rgba(220, 255, 105, 0.04);
  text-align: center;
}

.guarantee-seal::before,
.guarantee-seal::after {
  position: absolute;
  inset: 0.8rem;
  border: 1px dashed rgba(220, 255, 105, 0.24);
  border-radius: 50%;
  content: "";
}

.guarantee-seal::after {
  inset: 2.2rem;
  border-style: solid;
}

.guarantee-seal span,
.guarantee-seal small,
.guarantee-seal b {
  position: relative;
  z-index: 2;
}

.guarantee-seal span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.guarantee-seal small {
  margin-top: 0.6rem;
  color: #afc0b9;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guarantee-seal b {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  max-width: 44rem;
}

.guarantee-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 0;
  color: #a4b5ae;
  font-size: 0.92rem;
}

.guarantee-path {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.6rem;
}

.guarantee-path span {
  color: #d8e1dd;
  font-size: 0.62rem;
  font-weight: 780;
}

.guarantee-path i {
  width: 0.35rem;
  height: 0.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

/* FAQ and final */

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq-layout {
  display: grid;
  gap: 1.4rem;
}

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

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

.faq summary {
  display: grid;
  min-height: 3.9rem;
  cursor: pointer;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 820;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #6d7b75;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq details[open] summary span {
  background: var(--ink);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq details div {
  padding: 0 2.8rem 1.2rem 0;
}

.faq details p {
  margin: 0;
  color: #596762;
  font-size: 0.84rem;
}

.final-cta {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 2rem 2rem;
}

.final-cta__inner {
  position: relative;
  max-width: 48rem;
  text-align: center;
}

.final-index {
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  margin: 0 auto 1.6rem;
  place-items: center;
  border: 1px solid rgba(220, 255, 105, 0.3);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 900;
}

.final-cta h2 {
  max-width: 44rem;
  margin-inline: auto;
  text-wrap: balance;
}

.final-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
}

.final-price strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.final-price span {
  border-left: 1px solid var(--line-light);
  color: #9cafA7;
  padding-left: 1rem;
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: left;
}

.final-cta .button {
  max-width: 29rem;
}

.final-cta__inner > p:last-child {
  margin: 0.8rem 0 0;
  color: #879a93;
  font-size: 0.67rem;
}

.site-footer {
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: #7f928b;
  padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom));
  text-align: center;
}

.brand {
  display: inline-block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem 0;
  font-size: 0.72rem;
}

.site-footer [aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

.site-footer small {
  display: block;
  max-width: 42rem;
  margin: 0.45rem auto 0;
  font-size: 0.62rem;
}

.sticky-cta {
  position: fixed;
  right: 0.6rem;
  bottom: 0.6rem;
  left: 0.6rem;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  background: rgba(7, 22, 19, 0.94);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.34);
  padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
  backdrop-filter: blur(0.9rem);
}

.sticky-cta > div small,
.sticky-cta > div strong {
  display: block;
}

.sticky-cta > div small {
  color: #869990;
  font-size: 0.54rem;
}

.sticky-cta > div strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sticky-cta .button {
  min-height: 2.9rem;
  padding: 0.7rem;
  font-size: 0.76rem;
}

.sticky-cta__close {
  display: grid;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  place-items: center;
  border: 0;
  background: transparent;
  color: #8fa098;
  font-size: 1.2rem;
}

.noscript-message {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 300;
  border-radius: 0.7rem;
  background: #fff;
  color: #111;
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 46rem) {
  .container { width: min(100% - 3rem, var(--container)); }
  .section { padding: 6.5rem 0; }
  .showroom-hero { padding: 6rem 0 4rem; }
  .showroom-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr); align-items: center; }
  .hero-purchase { grid-template-columns: 13.5rem minmax(15rem, 21rem); align-items: center; }
  .hero-purchase .button { width: 100%; }
  .product-stage { min-height: 34rem; padding-top: 2.5rem; }
  .course-screen__content { grid-template-columns: 1.2fr 0.8fr; }
  .course-cover { min-height: 27rem; }
  .lesson-preview { align-content: center; }
  .section-heading { grid-template-columns: 1fr auto; align-items: end; }
  .module-card { width: 19rem; min-width: 19rem; }
  .bonus-gallery { grid-template-columns: repeat(3, 1fr); }
  .offer-layout { grid-template-columns: minmax(0, 0.85fr) minmax(23rem, 0.72fr); align-items: center; gap: 5rem; }
  .guarantee-layout { grid-template-columns: 18rem 1fr; align-items: center; gap: 4rem; }
  .faq-layout { grid-template-columns: 0.7fr 1fr; gap: 5rem; }
  .sticky-cta { right: 1.2rem; bottom: 1.2rem; left: auto; width: min(26rem, calc(100% - 2.4rem)); }
}

@media (min-width: 70rem) {
  .course-screen { transform: rotateY(-8deg) rotateX(2deg); }
  .module-rail { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
