:root {
  --ink: #101936;
  --ink-soft: #4b5877;
  --paper: #f4f5ff;
  --paper-deep: #dde2ff;
  --white: #ffffff;
  --blue: #5c4df2;
  --blue-dark: #161c4d;
  --mint: #40e0bd;
  --mint-dark: #087c69;
  --coral: #ff557a;
  --orange: #ff884f;
  --yellow: #ffd34f;
  --lilac: #a681ff;
  --line: #cfd5e9;
  --shadow: 0 18px 50px rgba(16, 25, 54, 0.18);
  --shadow-small: 0 10px 28px rgba(16, 25, 54, 0.14);
  --shell: min(1180px, calc(100% - 48px));
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Black", "Avenir Next", Inter, ui-sans-serif, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(92, 77, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 77, 242, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

body::before {
  top: 18vh;
  left: -150px;
  border: 44px solid var(--mint);
  background: transparent;
}

body::after {
  right: -170px;
  bottom: 10vh;
  border: 44px solid var(--coral);
  background: transparent;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 1.01;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

h1 em,
h2 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after,
h2 em::after {
  position: absolute;
  right: 1%;
  bottom: 0.02em;
  left: 1%;
  height: 0.11em;
  background: var(--coral);
  content: "";
  transform: rotate(-1.5deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.section-shell {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

.section-pad {
  padding-top: 120px;
  padding-bottom: 120px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  background: var(--coral);
}

.eyebrow-light {
  color: var(--mint);
}

.section-intro {
  max-width: 840px;
}

.section-intro > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 78px;
  padding: 13px max(24px, calc((100vw - 1180px) / 2));
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(19, 39, 63, 0.1);
  background: rgba(248, 242, 232, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--coral);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--coral);
  transform: rotate(-2deg);
}

.brand-mark i {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--ink);
}

.brand-mark i:nth-child(1) {
  width: 72%;
}

.brand-mark i:nth-child(2) {
  width: 100%;
}

.brand-mark i:nth-child(3) {
  width: 48%;
  background: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--blue);
  box-shadow: none;
}

.button-small:hover,
.button-small:focus-visible {
  box-shadow: none;
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--mint);
}

.button-wide {
  width: 100%;
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  padding-top: 42px;
  padding-bottom: 82px;
  align-items: start;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 62px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 28px;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.text-link {
  border-bottom: 2px solid var(--coral);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.quick-facts {
  display: grid;
  max-width: 620px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.quick-facts li {
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.quick-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.quick-facts span {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.hero-visual {
  position: relative;
  padding: 26px 0 32px 20px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -28px;
  width: 86%;
  height: 94%;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  transform: rotate(5deg);
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 26px 26px 70px 26px;
  background: var(--white);
  box-shadow: 12px 13px 0 var(--ink);
  transform: rotate(1.5deg);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.visual-label {
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: grid;
  min-width: 240px;
  padding: 13px 16px;
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  grid-template-columns: 24px 1fr;
  column-gap: 9px;
  box-shadow: 4px 4px 0 var(--coral);
}

.visual-label > span {
  color: var(--yellow);
  grid-row: span 2;
}

.visual-label strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.visual-label small {
  color: #d8e2ed;
  font-size: 0.63rem;
}

.orbit-card {
  position: absolute;
  display: flex;
  padding: 9px 13px;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--ink);
}

.orbit-card span {
  color: var(--blue);
  font-family: var(--font-display);
}

.orbit-one {
  top: 0;
  left: -6px;
  transform: rotate(-5deg);
}

.orbit-two {
  right: -6px;
  bottom: 5px;
  transform: rotate(4deg);
}

.trust-band {
  color: var(--white);
  background: var(--ink);
}

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

.trust-grid article {
  display: grid;
  min-height: 178px;
  padding: 38px 36px;
  align-items: start;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 60px 1fr;
  gap: 18px;
}

.trust-grid article:first-child {
  border-left: 0;
}

.trust-index {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--mint);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.trust-grid h2 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.trust-grid p {
  margin-bottom: 0;
  color: #cbd5df;
  font-size: 0.84rem;
  line-height: 1.55;
}

.problem-section {
  position: relative;
}

.problem-section::after {
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 36px;
  width: 110px;
  height: 110px;
  border: 22px solid var(--mint);
  border-radius: 50%;
  content: "";
  transform: rotate(15deg);
}

.problem-section .section-intro {
  max-width: 910px;
}

.problem-layout {
  display: grid;
  margin-top: 48px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.problem-lede {
  color: var(--ink-soft);
  font-size: 1.23rem;
  line-height: 1.7;
}

.contrast-list {
  border-top: 2px solid var(--ink);
}

.contrast-list > div {
  display: grid;
  padding: 21px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr;
  gap: 18px;
}

.contrast-list span {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contrast-no {
  color: #87311d;
  background: #f9c7b9;
}

.contrast-yes {
  color: #14533b;
  background: #c3ead7;
}

.contrast-list p {
  margin: 0;
  font-weight: 720;
}

.learning-section {
  color: var(--white);
  background: var(--ink);
}

.section-intro-light > p:last-child {
  color: #cbd5df;
}

.learning-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learning-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  border: 2px solid #496078;
  border-top: 8px solid var(--accent);
  border-radius: 18px;
  background: #1b3551;
}

.learning-card::after {
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border: 20px solid var(--accent);
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.accent-blue { --accent: #6f9cff; }
.accent-mint { --accent: var(--mint); }
.accent-yellow { --accent: var(--yellow); }
.accent-coral { --accent: var(--coral); }
.accent-lilac { --accent: var(--lilac); }
.accent-orange { --accent: var(--orange); }

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #91a4b9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.card-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  transform: rotate(-3deg);
}

.learning-card h3 {
  color: var(--white);
  font-size: 1.48rem;
}

.learning-card p {
  color: #cbd5df;
  font-size: 0.9rem;
}

.learning-card ul {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.learning-card li {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.format-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
}

.format-heading > p {
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.session-flow {
  display: grid;
  margin: 66px 0 34px;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--paper-deep);
  list-style: none;
}

.session-flow li {
  position: relative;
  min-height: 245px;
  padding: 28px 26px;
  border-left: 1px solid var(--line);
}

.session-flow li:first-child {
  border-left: 0;
}

.session-flow li > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-display);
  box-shadow: 3px 3px 0 var(--ink);
}

.session-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: -12px;
  width: 22px;
  height: 22px;
  border-top: 3px solid var(--coral);
  border-right: 3px solid var(--coral);
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.session-flow small {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.session-flow p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.between-sessions {
  display: grid;
  padding: 32px 36px;
  align-items: center;
  border-left: 8px solid var(--mint-dark);
  background: #dcefe5;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 55px;
}

.between-sessions h3,
.between-sessions p {
  margin-bottom: 0;
}

.mini-kicker {
  color: var(--mint-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.between-sessions p {
  color: var(--ink-soft);
}

.quest-method {
  color: var(--white);
  background: var(--blue-dark);
}

.quest-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 86px;
}

.quest-copy {
  align-self: center;
}

.quest-copy > p:not(.eyebrow) {
  color: #d9e5f5;
}

.explain-gate {
  display: flex;
  margin-top: 38px;
  padding: 22px;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--mint);
  background: #123b7f;
  box-shadow: 6px 6px 0 #0e326b;
}

.explain-gate > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.explain-gate strong,
.explain-gate p {
  display: block;
}

.explain-gate p {
  margin-bottom: 0;
  color: #d9e5f5;
  font-size: 0.82rem;
}

.quest-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quest-steps li {
  display: grid;
  min-height: 100px;
  padding: 18px 0;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: 74px 1fr;
  gap: 22px;
}

.quest-steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quest-steps li > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.55rem;
  transform: rotate(-3deg);
}

.quest-steps strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.quest-steps p {
  margin-bottom: 0;
  color: #d9e5f5;
  font-size: 0.88rem;
}

.safety-panel {
  padding: 58px;
  border: 3px solid var(--ink);
  border-radius: 26px 26px 80px 26px;
  background: var(--white);
  box-shadow: 13px 13px 0 var(--mint);
}

.safety-heading {
  display: grid;
  margin-bottom: 46px;
  align-items: center;
  grid-template-columns: 96px 1fr;
  gap: 30px;
}

.shield-mark {
  display: grid;
  width: 88px;
  height: 98px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 44px 44px 56px 56px;
  color: var(--white);
  background: var(--mint-dark);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-4deg);
}

.safety-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.safety-grid article {
  position: relative;
  padding: 34px;
  background: var(--white);
}

.safety-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.safety-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.founder-section {
  background: #e5ddd0;
}

.founder-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.founder-portrait {
  position: relative;
  max-width: 410px;
  padding: 26px 26px 72px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--coral);
  transform: rotate(-2deg);
}

.portrait-crop {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--paper-deep);
}

.portrait-crop img {
  width: 165%;
  max-width: none;
  height: auto;
  transform: translate(-19.7%, -3%);
}

.portrait-note {
  position: absolute;
  right: 26px;
  bottom: 20px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.portrait-note strong {
  font-family: var(--font-display);
}

.portrait-note span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.founder-lede {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1.55;
}

.founder-copy > p:not(.eyebrow):not(.founder-lede) {
  color: var(--ink-soft);
}

.founder-facts {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.founder-facts > div {
  padding: 23px;
  border-top: 5px solid var(--blue);
  background: var(--white);
}

.founder-facts > div:last-child {
  border-top-color: var(--mint-dark);
}

.founder-facts strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
}

.founder-facts p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.collab-card {
  display: grid;
  max-width: 1050px;
  margin: 0 auto;
  padding: 52px 58px;
  align-items: center;
  border: 3px solid var(--ink);
  background: var(--white);
  grid-template-columns: 180px 1fr;
  gap: 60px;
  box-shadow: 11px 11px 0 var(--yellow);
}

.collab-stamp {
  position: relative;
  display: flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2.2rem;
  transform: rotate(-7deg);
}

.collab-stamp i {
  width: 3px;
  height: 54px;
  margin: 0 15px;
  background: var(--coral);
  transform: rotate(28deg);
}

.collab-card h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}

.collab-card > div:last-child > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.collab-clarifier {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.79rem;
}

.pricing-section {
  color: var(--white);
  background: var(--ink);
}

.pricing-intro > p:last-child {
  color: #cbd5df;
}

.pricing-grid {
  display: grid;
  max-width: 990px;
  margin: 62px auto 0;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.price-card {
  display: flex;
  min-height: 610px;
  padding: 38px;
  flex-direction: column;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: var(--white);
}

.club-card {
  background: #dcefe5;
  box-shadow: 10px 10px 0 var(--mint-dark);
}

.price-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.club-card .price-label {
  background: var(--mint-dark);
}

.price-card h3 {
  font-size: 2rem;
}

.price {
  margin: 24px 0 28px;
}

.price strong,
.price span {
  display: block;
}

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

.price span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.price-card ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 12px 0 12px 29px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.price-card li::before {
  position: absolute;
  top: 13px;
  left: 2px;
  color: var(--mint-dark);
  content: "✓";
  font-weight: 900;
}

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

.price-card > small {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.club-note {
  margin-top: auto;
  margin-bottom: 0;
  padding: 20px;
  border-left: 5px solid var(--mint-dark);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.club-note strong {
  display: block;
  margin-bottom: 5px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.faq-list {
  border-top: 2px solid var(--ink);
}

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

.faq-list summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 1.7rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  padding: 0 50px 25px 0;
  color: var(--ink-soft);
}

.final-cta {
  padding: 86px 0;
  color: var(--white);
  background: var(--blue);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: #e0eafa;
}

.site-footer {
  padding: 58px 0 32px;
  color: var(--white);
  background: #0b1c2e;
}

.footer-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 18px;
}

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

.footer-inner > div > p {
  margin-bottom: 0;
  color: #9eb0c2;
  font-size: 0.85rem;
}

.footer-inner nav {
  display: flex;
  gap: 26px;
}

.footer-inner nav a {
  color: #d6e0ea;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: var(--mint);
}

.copyright {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid #273a4e;
  color: #7f93a7;
  font-size: 0.72rem;
  grid-column: 1 / -1;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: static;
}

.legal-main {
  max-width: 900px;
  padding-top: 90px;
  padding-bottom: 110px;
}

.legal-main > p {
  color: var(--ink-soft);
}

.legal-stack {
  display: grid;
  margin-top: 48px;
  gap: 18px;
}

.legal-stack section {
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-stack h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.legal-stack h3 {
  margin-top: 24px;
  font-size: 1rem;
}

.legal-stack p,
.legal-stack li,
.legal-stack address {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-stack p:last-child,
.legal-stack ul:last-child {
  margin-bottom: 0;
}

.legal-stack address {
  font-style: normal;
}

.back-link {
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--blue);
}

/* Futuristic hero-team theme */
.site-header {
  color: var(--white);
  border-bottom-color: rgba(64, 224, 189, 0.28);
  background: rgba(8, 13, 34, 0.95);
}

.brand-mark {
  border-radius: 5px 14px 5px 14px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--coral);
}

.brand small {
  color: var(--mint);
}

.button {
  border-radius: 5px 14px 5px 14px;
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary,
.button-small {
  color: var(--white);
  background: var(--blue);
}

.button-primary {
  box-shadow: 6px 6px 0 var(--coral);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 2px 2px 0 var(--coral);
}

.hero {
  position: relative;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 28px;
  right: 42%;
  width: 190px;
  height: 18px;
  border-top: 5px solid var(--coral);
  border-bottom: 5px solid var(--yellow);
  content: "";
  transform: rotate(-7deg);
}

.hero h1 {
  text-wrap: balance;
}

h1 em::after,
h2 em::after {
  height: 0.08em;
  background: var(--mint);
  transform: rotate(-2deg);
}

.schedule-note {
  display: flex;
  width: fit-content;
  margin: 24px 0 0;
  padding: 8px 12px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.schedule-note span {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual::before {
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--yellow);
  clip-path: polygon(8% 0, 100% 0, 100% 83%, 87% 100%, 0 100%, 0 16%);
}

.visual-frame {
  border-radius: 8px 8px 46px 8px;
  box-shadow: 13px 13px 0 var(--ink), 20px 20px 0 var(--coral);
  transform: rotate(0.8deg);
}

.visual-frame img {
  aspect-ratio: 16 / 10;
  object-position: 76% center;
}

.visual-label,
.orbit-card {
  border-radius: 4px 10px 4px 10px;
}

.visual-label {
  background: rgba(8, 13, 34, 0.94);
  box-shadow: 4px 4px 0 var(--mint);
}

.orbit-card {
  color: var(--white);
  border-color: var(--mint);
  background: var(--blue-dark);
  box-shadow: 4px 4px 0 var(--coral);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orbit-card span {
  color: var(--yellow);
}

.trust-band,
.learning-section,
.pricing-section {
  position: relative;
  overflow: hidden;
  background-color: #080d22;
  background-image:
    linear-gradient(135deg, rgba(92, 77, 242, 0.16) 25%, transparent 25%),
    linear-gradient(315deg, rgba(64, 224, 189, 0.08) 25%, transparent 25%);
  background-size: 72px 72px;
}

.trust-grid article {
  border-left-color: rgba(64, 224, 189, 0.22);
}

.trust-index {
  border-radius: 7px 18px 7px 18px;
  transform: rotate(-3deg);
}

.problem-section::after {
  border-color: var(--lilac);
  border-radius: 8px 28px 8px 28px;
  transform: rotate(16deg);
}

.contrast-list {
  border-top-width: 4px;
  border-top-color: var(--blue);
}

.learning-card {
  border-color: #35436f;
  border-top-width: 0;
  border-radius: 6px 22px 6px 22px;
  background: #121c40;
  box-shadow: 6px 6px 0 rgba(64, 224, 189, 0.11);
}

.learning-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--accent);
  content: "";
}

.card-symbol {
  border-radius: 4px 14px 4px 14px;
}

.session-flow {
  border-width: 3px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--blue);
}

.session-flow li > span {
  border-radius: 5px 14px 5px 14px;
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--coral);
  transform: rotate(-3deg);
}

.between-sessions {
  border: 2px solid var(--ink);
  border-left: 9px solid var(--mint-dark);
  background: #dcfff5;
  box-shadow: 7px 7px 0 var(--yellow);
}

.quest-method {
  position: relative;
  overflow: hidden;
  background-color: #24145c;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

.quest-method::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 58px solid rgba(255, 211, 79, 0.12);
  border-radius: 50%;
  content: "";
}

.framework-signature {
  width: fit-content;
  margin-top: 28px;
  padding: 7px 10px;
  border: 1px solid var(--yellow);
  color: var(--yellow) !important;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.explain-gate {
  background: #171b57;
  box-shadow: 6px 6px 0 var(--coral);
}

.quest-steps li > span {
  border-radius: 5px 18px 5px 18px;
  background: rgba(255, 211, 79, 0.08);
}

.safety-panel {
  border-radius: 8px 28px 8px 28px;
  box-shadow: 13px 13px 0 var(--mint), 20px 20px 0 var(--blue);
}

.shield-mark {
  border-radius: 8px 34px 34px 34px;
  background: var(--blue);
  box-shadow: 6px 6px 0 var(--coral);
}

.founder-section {
  background-color: #e5e4ff;
  background-image:
    linear-gradient(45deg, rgba(92, 77, 242, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 85, 122, 0.06) 25%, transparent 25%);
  background-size: 54px 54px;
}

.founder-portrait,
.collab-card {
  border-radius: 6px 24px 6px 24px;
}

.founder-portrait {
  box-shadow: 12px 12px 0 var(--coral), 20px 20px 0 var(--yellow);
}

.founder-facts > div {
  border: 2px solid var(--ink);
  border-top: 7px solid var(--blue);
  box-shadow: 5px 5px 0 var(--paper-deep);
}

.collab-card {
  box-shadow: 11px 11px 0 var(--yellow), 18px 18px 0 var(--blue);
}

.collab-stamp {
  border-radius: 8px 42px 8px 42px;
  background: #eceaff;
}

.membership-layout {
  display: grid;
  max-width: 1040px;
  margin: 62px auto 0;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
}

.membership-card {
  min-height: 0;
  border-color: var(--yellow);
  border-radius: 6px 24px 6px 24px;
  box-shadow: 12px 12px 0 var(--coral);
}

.membership-card .price-label {
  color: var(--ink);
  background: var(--yellow);
}

.membership-card > small {
  color: var(--ink-soft);
}

.membership-side {
  display: flex;
  padding: 44px;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #39497e;
  background: rgba(18, 28, 64, 0.88);
  box-shadow: 10px 10px 0 var(--mint);
}

.membership-side h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.membership-side > p {
  color: #cbd6ef;
}

.side-code {
  display: block;
  margin-bottom: 24px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.membership-side .club-note {
  color: var(--ink);
  border-left-color: var(--coral);
  background: var(--yellow);
}

.faq-list {
  border-top-width: 4px;
  border-top-color: var(--blue);
}

.faq-list details[open] {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 5px 5px 0 var(--paper-deep);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--blue);
}

.final-cta::after {
  position: absolute;
  top: -90px;
  right: 4%;
  width: 230px;
  height: 230px;
  border: 44px solid rgba(255, 211, 79, 0.24);
  border-radius: 50%;
  content: "";
}

.site-footer {
  background: #080d22;
}

@media (max-width: 1080px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.8rem;
  }

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

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

  .founder-layout {
    gap: 58px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 77px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px 24px 28px;
    align-items: stretch;
    flex-direction: column;
    border-bottom: 2px solid var(--ink);
    border-bottom-color: var(--mint);
    background: #080d22;
    box-shadow: var(--shadow-small);
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 5px 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    padding-top: 66px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .hero-visual {
    max-width: 700px;
    padding-left: 0;
  }

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

  .trust-grid article,
  .trust-grid article:first-child {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .trust-grid article:first-child {
    border-top: 0;
  }

  .problem-layout,
  .format-heading,
  .quest-layout,
  .founder-layout,
  .membership-layout,
  .faq-section,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .problem-layout,
  .format-heading,
  .quest-layout,
  .founder-layout,
  .membership-layout,
  .faq-section {
    gap: 46px;
  }

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

  .session-flow li:nth-child(3) {
    border-left: 0;
  }

  .session-flow li:nth-child(3),
  .session-flow li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .session-flow li:nth-child(2)::after {
    display: none;
  }

  .safety-panel {
    padding: 44px 36px;
  }

  .founder-portrait {
    max-width: 380px;
  }

  .collab-card {
    grid-template-columns: 130px 1fr;
    gap: 38px;
  }

  .collab-stamp {
    width: 125px;
    height: 125px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    gap: 38px;
  }

  .final-cta .button {
    justify-self: start;
  }

  .membership-layout {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

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

  .main-nav {
    top: 69px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 70px;
    gap: 38px;
  }

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

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

  .hero-actions .text-link {
    padding: 8px 0;
    text-align: center;
  }

  .quick-facts {
    gap: 0;
  }

  .quick-facts li {
    padding: 0 10px;
  }

  .quick-facts strong {
    font-size: 0.93rem;
  }

  .quick-facts span {
    font-size: 0.64rem;
  }

  .schedule-note {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hero-visual {
    padding-top: 18px;
  }

  .hero-visual::before {
    right: -10px;
  }

  .visual-frame {
    border-radius: 18px 18px 44px 18px;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .visual-label {
    right: 10px;
    bottom: 10px;
    min-width: 0;
    padding: 9px 10px;
  }

  .visual-label small {
    display: none;
  }

  .orbit-card {
    display: none;
  }

  .trust-grid article {
    padding: 30px 8px;
  }

  .problem-layout {
    margin-top: 32px;
  }

  .contrast-list > div {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }

  .learning-grid,
  .safety-grid,
  .founder-facts,
  .pricing-grid,
  .membership-layout {
    grid-template-columns: 1fr;
  }

  .learning-grid {
    margin-top: 42px;
  }

  .learning-card {
    min-height: 0;
  }

  .session-flow {
    grid-template-columns: 1fr;
  }

  .session-flow li,
  .session-flow li:nth-child(3) {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .session-flow li:first-child {
    border-top: 0;
  }

  .session-flow li::after,
  .session-flow li:not(:last-child)::after {
    display: none;
  }

  .session-flow li > span {
    margin-bottom: 24px;
  }

  .between-sessions {
    padding: 26px 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quest-steps li {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .quest-steps li > span {
    width: 50px;
    height: 50px;
  }

  .safety-panel {
    padding: 34px 20px;
    border-radius: 20px 20px 50px 20px;
    box-shadow: 7px 7px 0 var(--mint);
  }

  .safety-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .shield-mark {
    width: 66px;
    height: 72px;
    border-radius: 32px 32px 42px 42px;
  }

  .safety-grid article {
    padding: 28px 14px;
  }

  .founder-layout {
    gap: 54px;
  }

  .founder-portrait {
    padding: 18px 18px 66px;
  }

  .portrait-note {
    right: 18px;
    left: 18px;
  }

  .collab-card {
    padding: 36px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .collab-stamp {
    width: 105px;
    height: 105px;
    font-size: 1.55rem;
  }

  .collab-stamp i {
    height: 38px;
  }

  .pricing-grid {
    gap: 38px;
  }

  .price-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .membership-side {
    padding: 32px 24px;
  }

  .price-card .button,
  .club-note {
    margin-top: 24px;
  }

  .faq-list summary {
    font-size: 1.05rem;
  }

  .faq-list details p {
    padding-right: 0;
  }

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

  .final-cta .button {
    width: 100%;
  }

  .footer-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .legal-main {
    padding-top: 60px;
  }

  .legal-stack section {
    padding: 24px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
