@font-face {
  font-family: "Clash Display";
  src: url("fonts/6bc0d8fd-728e-46aa-982f-2372fcb71726.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Clash Display";
  src: url("fonts/8b2629bc-a3c1-42aa-b0f1-db6c062b6683.otf") format("opentype");
  font-weight: 700;
}

:root {
  --ink: #0e0b16;
  --panel: #17111f;
  --panel-soft: #21172e;
  --text: #ffffff;
  --muted: #c8bdd6;
  --purple: #7d1fff;
  --purple-deep: #5b10d6;
  --purple-bright: #b018ff;
  --violet: #c084fc;
  --pink: #f472b6;
  --cyan: #22d3ee;
  --green: #58d68d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Clash Display", Arial, sans-serif;
  color: var(--text);
  background: var(--ink);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(14, 11, 22, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

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

.brand strong {
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-map-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-0.35em);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid rgba(10, 8, 16, 0.88);
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 48%, var(--purple-bright) 100%);
  box-shadow: 0 14px 40px rgba(125, 31, 255, 0.28);
  font-weight: 400;
}

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

.button-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-quiz,
.button-quiz:visited {
  background: linear-gradient(135deg, #0891b2 0%, #22d3ee 48%, #67e8f9 100%);
  color: #000;
  box-shadow: 0 14px 40px rgba(103, 232, 249, 0.26);
}

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

.section,
.section-dark,
.section-muted {
  padding: clamp(44px, 5vw, 82px) clamp(20px, 5vw, 72px);
}

.section-dark {
  background:
    radial-gradient(circle at 20% 15%, rgba(125, 31, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(34, 211, 238, 0.22), transparent 26%),
    linear-gradient(135deg, #0e0b16 0%, #17111f 58%, #09070d 100%);
}

.section-muted {
  background: linear-gradient(180deg, var(--panel), var(--ink));
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.hero-copy,
.page-hero > div {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.05rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.72rem, 3vw, 2.85rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(88vw, 560px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(from 110deg, rgba(244, 114, 182, 0.42), rgba(34, 211, 238, 0.44), rgba(88, 214, 141, 0.24), rgba(125, 31, 255, 0.42), rgba(244, 114, 182, 0.42));
  filter: blur(34px);
  opacity: 0.74;
}

.map-img {
  position: relative;
  width: min(72vw, 430px);
  filter: drop-shadow(0 22px 70px rgba(34, 211, 238, 0.18));
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.12rem;
}

.pillar-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.pillar-card,
.feature-grid article,
.process-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.framework-band {
  position: relative;
  overflow: hidden;
}

.framework-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 68%);
  pointer-events: none;
}

.pillar-card p,
.feature-grid p,
.process-card p,
.split p {
  color: var(--muted);
}

.card-mark {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pillar-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 4.8vw, 58px);
  align-items: center;
}

.rounded-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(120deg, var(--pink), var(--cyan));
}

.cta-band {
  text-align: center;
}

.cta-band p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: clamp(52px, 5.5vw, 74px);
  padding-bottom: clamp(38px, 4.5vw, 62px);
}

.with-orb {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 4.8vw, 68px);
}

.orb-img,
.map-panel {
  justify-self: center;
  width: min(70vw, 390px);
  filter: drop-shadow(0 26px 80px rgba(125, 31, 255, 0.32));
}

.map-panel {
  width: min(76vw, 520px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.proof-strip div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(125, 31, 255, 0.18), rgba(34, 211, 238, 0.08));
}

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

.proof-strip strong {
  font-size: 2.2rem;
}

.proof-strip span {
  color: var(--muted);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.value-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

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

.value-list strong {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.12rem;
}

.value-list span {
  color: var(--muted);
}

.tutorial-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.tutorial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 0;
  color: var(--text);
  text-align: left;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(125, 31, 255, 0.16), rgba(34, 211, 238, 0.07)),
    rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.tutorial-card:hover,
.tutorial-card:focus-visible {
  border-color: rgba(103, 232, 249, 0.55);
  background: rgba(15, 23, 42, 0.94);
  transform: translateY(-3px);
}

.tutorial-thumb {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.tutorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  transform: translate(-50%, -50%);
}

.play-mark::before {
  content: "";
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.tutorial-copy {
  display: block;
  flex: 1 1 auto;
  min-height: 136px;
  padding: 16px;
}

.tutorial-copy h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.tutorial-copy p {
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.88rem;
  line-height: 1.45;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2, 6, 23, 0.82);
}

.modal-backdrop[hidden] {
  display: none;
}

.video-modal {
  position: relative;
  overflow: hidden;
  width: min(100%, 980px);
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f172a;
}

.close-modal {
  position: absolute;
  right: 13px;
  top: 13px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font: inherit;
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  cursor: pointer;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-copy {
  padding: 20px;
}

.modal-copy h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.modal-copy p {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
}

.book-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.book-showcase p {
  color: var(--muted);
}

.book-cover-large,
.book-cover-small {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.book-cover-large {
  justify-self: center;
  max-width: 420px;
}

.element-card {
  display: flex;
  flex-direction: column;
}

.element-card img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.figure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.figure-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(125, 31, 255, 0.16), rgba(34, 211, 238, 0.07)),
    rgba(255, 255, 255, 0.055);
}

.figure-link {
  display: block;
  margin-bottom: 22px;
  border-radius: 8px;
}

.figure-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.figure-link:hover img {
  transform: scale(1.015);
}

.figure-grid article img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 160ms ease;
}

.figure-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.figure-grid p {
  color: var(--muted);
}

.example-stack {
  display: grid;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}

.example-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.example-figure {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.example-figure:hover img {
  transform: scale(1.025);
}

.example-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  transition: transform 180ms ease;
}

.example-copy {
  display: grid;
  gap: 14px;
}

.example-row p {
  margin: 0;
  color: var(--muted);
}

.book-cta {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}

.book-cover-small {
  width: min(100%, 390px);
  max-width: 390px;
}

.book-cta-content {
  display: grid;
  gap: 16px;
  justify-items: start;
  max-width: 760px;
}

.book-cta p {
  color: var(--muted);
}

.source-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 700;
}

.process-card ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.process-card li + li {
  margin-top: 10px;
}

.feature-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.join-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.join-hero-copy {
  max-width: 840px;
}

.join-hero-panel {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(125, 31, 255, 0.22), rgba(34, 211, 238, 0.08)),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.join-hero-panel img {
  width: min(44vw, 156px);
  justify-self: center;
  filter: drop-shadow(0 18px 42px rgba(34, 211, 238, 0.18));
}

.join-hero-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  text-align: center;
}

.join-hero-panel p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  text-align: center;
}

.element-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.element-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(9, 7, 13, 0.52);
}

.element-strip i {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.air-dot {
  background: linear-gradient(120deg, #8b5cf6, #3b82f6);
}

.fire-dot {
  background: linear-gradient(120deg, #ef4444, #f97316);
}

.water-dot {
  background: linear-gradient(120deg, #3b82f6, #14b8a6);
}

.earth-dot {
  background: linear-gradient(120deg, #22c55e, #eab308);
}

.compact-list {
  margin-top: 0;
}

.membership-promo {
  background:
    radial-gradient(circle at 20% 15%, rgba(125, 31, 255, 0.28), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(34, 211, 238, 0.16), transparent 26%),
    linear-gradient(135deg, #0e0b16 0%, #17111f 58%, #09070d 100%);
}

.membership-promo-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.membership-promo-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.membership-promo-heading h2 {
  margin-bottom: 16px;
}

.membership-promo-heading p:not(.promo-kicker) {
  color: #f3f4f6;
  font-size: 1.12rem;
}

.promo-kicker {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px auto 0;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  border-radius: 8px;
  color: #f9fafb;
  background: #111827;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.benefit-grid h3,
.benefit-grid p {
  margin-bottom: 0;
}

.benefit-grid h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.benefit-grid p {
  margin-top: 8px;
  color: #f3f4f6;
  font-size: 0.9rem;
  line-height: 1.6;
}

.benefit-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 4px 12px 0 0;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(192, 132, 252, 0.95), rgba(34, 211, 238, 0.82));
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.45);
}

.benefit-icon::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: 6px;
  border-radius: 99px;
  background: #111827;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 52px auto 0;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(75, 85, 99, 0.9);
  border-radius: 8px;
  color: #f9fafb;
  background: #111827;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.plan-card h3,
.plan-card p {
  margin-bottom: 0;
}

.plan-card h3 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 1.6rem;
}

.plan-card p:not(.plan-eyebrow):not(.savings-note):not(.subscription-agreement) {
  color: #f3f4f6;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.plan-content {
  flex: 1 1 auto;
}

.plan-eyebrow {
  color: #d8b4fe;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.limited-time-burst {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  padding: 10px;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(50% 0, 59% 18%, 78% 8%, 82% 29%, 100% 35%, 86% 50%, 100% 65%, 82% 71%, 78% 92%, 59% 82%, 50% 100%, 41% 82%, 22% 92%, 18% 71%, 0 65%, 14% 50%, 0 35%, 18% 29%, 22% 8%, 41% 18%);
  background: #facc15;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
  transform: rotate(12deg);
}

.limited-time-burst span {
  transform: rotate(-4deg);
}

.price-info {
  margin-top: 24px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-line span {
  color: #d1d5db;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.price-line strong {
  color: #ffffff;
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  line-height: 1;
}

.price-note {
  margin-top: 10px;
  font-size: 0.98rem;
}

.savings-note {
  margin-top: 12px;
  color: #e9d5ff;
  font-size: 0.98rem;
  font-weight: 700;
}

.membership-actions {
  margin-top: 32px;
  text-align: center;
}

.subscription-agreement {
  margin-top: 16px;
  color: #d1d5db;
  font-size: 0.76rem;
  line-height: 1.55;
}

.subscription-agreement a {
  color: #ede9fe;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subscription-agreement a:hover {
  color: #ffffff;
}

.featured-sales-plan {
  border-color: #c4b5fd;
  background: #24173f;
  box-shadow: 0 24px 80px rgba(125, 31, 255, 0.28);
  transform: translateY(-6px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #09070d;
}

.site-footer > a {
  color: var(--text);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer a:not(.brand) {
  color: var(--muted);
}

.site-footer a:not(.brand):hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex: 0 1 760px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 760px;
  font-size: 0.88rem;
}

.footer-disclaimer {
  flex: 0 1 760px;
  max-width: 760px;
  margin: 8px 0 0 auto;
  color: rgba(200, 189, 214, 0.78);
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: left;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  max-width: 760px;
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.legal-page h3 {
  margin-top: 28px;
  font-size: 1.18rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page a {
  color: var(--cyan);
  font-weight: 700;
}

.legal-page ul,
.legal-page ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.legal-meta {
  margin-bottom: 30px;
  color: var(--cyan);
  font-weight: 700;
}

.legal-callout {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .with-orb,
  .join-hero {
    grid-template-columns: 1fr;
  }

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

  .pillar-grid,
  .feature-grid,
  .feature-grid.five,
  .proof-strip,
  .value-list,
  .book-showcase,
  .benefit-grid,
  .tutorial-grid,
  .figure-grid,
  .plan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .book-cta,
  .example-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px 14px;
    padding: 14px 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.86rem;
  }

  .nav-map-mark {
    font-size: 0.66em;
  }

  .button-small {
    min-height: 36px;
    padding: 8px 14px;
  }

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

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .pillar-grid,
  .feature-grid,
  .feature-grid.five,
  .proof-strip,
  .value-list,
  .book-showcase,
  .benefit-grid,
  .tutorial-grid,
  .figure-grid,
  .plan-grid,
  .element-strip {
    grid-template-columns: 1fr;
  }

  .book-cover-large,
  .book-cover-small {
    max-width: 100%;
  }

  .featured-sales-plan {
    transform: none;
  }

  .limited-time-burst {
    right: 16px;
    top: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-disclaimer {
    flex: 0 1 auto;
    margin-right: auto;
  }
}
