:root {
  color-scheme: dark;
  --bg: #0c1010;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --ink: #fff7ed;
  --muted: #d5cabe;
  --gold: #e7bd69;
  --sage: #8fcf9c;
  --violet: #9f8bd6;
  --rose: #d98fa4;
  --line: rgba(255, 255, 255, 0.16);
  --veil: rgba(255, 247, 237, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(120deg, rgba(231, 189, 105, 0.1), transparent 24%, rgba(143, 207, 156, 0.07) 52%, transparent 74%),
    linear-gradient(180deg, #15120f 0%, #151523 48%, #0c1010 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 247, 237, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.035) 1px, transparent 1px);
  background-size: 92px 92px, 92px 92px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 74%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 189, 105, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 12%, rgba(143, 207, 156, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 72%, rgba(159, 139, 214, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 78%, rgba(255, 247, 237, 0.16) 0 1px, transparent 2px);
  background-size: 180px 180px, 230px 230px, 260px 260px, 210px 210px;
  animation: starDrift 34s linear infinite;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-content: center;
  gap: 44px;
  padding: 22px 0 30px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 80px 0 -30px;
  z-index: -1;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 16%, rgba(231, 189, 105, 0.2), transparent 34%),
    radial-gradient(circle at 20% 55%, rgba(143, 207, 156, 0.13), transparent 30%),
    radial-gradient(circle at 78% 42%, rgba(159, 139, 214, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(7, 6, 10, 0.1), rgba(7, 8, 9, 0.72));
  filter: saturate(1.08);
}

.hero-portal-orbit {
  position: absolute;
  inset: 118px auto auto 50%;
  width: min(520px, 70vw);
  aspect-ratio: 1;
  translate: -50% 0;
  pointer-events: none;
  opacity: 0.52;
}

.hero-portal-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(231, 189, 105, 0.16);
  border-radius: 50%;
  transform: rotate(var(--turn, 0deg)) scale(var(--scale, 1));
}

.hero-portal-orbit span:nth-child(2) {
  --turn: 28deg;
  --scale: 0.72;
  border-color: rgba(143, 207, 156, 0.14);
}

.hero-portal-orbit span:nth-child(3) {
  --turn: -18deg;
  --scale: 0.48;
  border-color: rgba(159, 139, 214, 0.16);
}

.hero-magic-field {
  position: absolute;
  inset: 92px 0 0;
  pointer-events: none;
  z-index: 0;
}

.hero-moon {
  position: absolute;
  top: 18px;
  right: min(8vw, 96px);
  width: 94px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 247, 237, 0.92), rgba(231, 189, 105, 0.7) 28%, rgba(231, 189, 105, 0.15) 58%, transparent 70%);
  box-shadow: 0 0 46px rgba(231, 189, 105, 0.24);
  opacity: 0.44;
}

.hero-moon::after {
  content: "";
  position: absolute;
  inset: -2px 0 0 24px;
  border-radius: 50%;
  background: rgba(17, 13, 10, 0.88);
}

.floating-sigil {
  position: absolute;
  color: rgba(231, 189, 105, 0.42);
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 42px);
  text-shadow: 0 0 18px rgba(231, 189, 105, 0.24);
  animation: sigilFloat 12s ease-in-out infinite;
}

.sigil-one {
  left: 3%;
  top: 24%;
}

.sigil-two {
  right: 30%;
  top: 18%;
  animation-delay: -3s;
}

.sigil-three {
  right: 5%;
  top: 58%;
  animation-delay: -6s;
}

.sigil-four {
  left: 44%;
  top: 72%;
  animation-delay: -9s;
}

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

.brand,
.nav-actions,
.hero-actions,
.trust-row,
.web-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand small,
.eyebrow,
.trust-row,
footer span,
.waitlist-form small,
.qr-card span {
  color: var(--muted);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 189, 105, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.nav-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-actions a,
.primary-action,
.secondary-action,
.waitlist-form button {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  font-weight: 800;
}

.nav-actions a:not(.nav-cta),
.secondary-action {
  background: rgba(255, 247, 237, 0.07);
}

.nav-cta,
.primary-action,
.waitlist-form button {
  border: 0;
  color: #101413;
  background: linear-gradient(135deg, var(--gold), var(--sage));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 26px rgba(231, 189, 105, 0.16);
}

.hero-grid,
.split-section,
.web-access,
.qr-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.86fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  overflow-wrap: break-word;
}

h2 {
  position: relative;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 0.98;
  overflow-wrap: break-word;
}

.section-intro h2::after,
.quiz-teaser-copy h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--sage), transparent);
  box-shadow: 0 0 18px rgba(231, 189, 105, 0.24);
}

h3 {
  font-size: 23px;
}

p,
li,
span {
  line-height: 1.56;
}

.hero-copy > p,
.section-intro p,
.split-section p,
.web-access p,
.qr-section p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.trust-row,
.web-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 30px 0 20px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.hero-app-showcase {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-areas:
    "phones"
    "proof";
  grid-template-rows: minmax(470px, 1fr) auto;
  gap: 14px;
  align-items: center;
  justify-items: center;
}

.hero-app-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 4% 6%;
  border: 1px solid rgba(231, 189, 105, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 20%, rgba(231, 189, 105, 0.2), transparent 34%),
    radial-gradient(circle at 76% 58%, rgba(143, 207, 156, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.hero-app-showcase::after {
  content: "";
  position: absolute;
  inset: 16% 18% 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 189, 105, 0.16), transparent 62%);
  filter: blur(10px);
  animation: portalPulse 8s ease-in-out infinite;
}

.hero-phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: #0c0d10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-phone-sections {
  position: relative;
  grid-area: phones;
  z-index: 2;
  width: min(330px, 72%);
  aspect-ratio: 9 / 16;
  opacity: 1;
  transform: none;
}

.hero-phone-sections img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.hero-phone-main {
  z-index: 2;
  width: min(305px, 72%);
  aspect-ratio: 9 / 16;
  transform: translateX(-34px);
}

.hero-phone-secondary {
  z-index: 1;
  right: 6%;
  bottom: 11%;
  width: min(205px, 48%);
  aspect-ratio: 9 / 16;
  opacity: 0.92;
  transform: none;
}

.hero-proof-panel {
  position: relative;
  grid-area: proof;
  z-index: 3;
  right: auto;
  bottom: auto;
  width: min(300px, 72%);
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(231, 189, 105, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.14), rgba(143, 207, 156, 0.08)),
    rgba(9, 10, 10, 0.88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.hero-proof-panel span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-panel strong {
  line-height: 1.34;
}

.app-preview {
  display: grid;
  justify-items: center;
}

.phone-frame {
  width: min(360px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.22));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.phone-speaker {
  width: 92px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.phone-screen {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 10%, rgba(231, 189, 105, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(17, 21, 20, 0.96), rgba(30, 24, 42, 0.96));
  overflow: hidden;
}

.photo-screen {
  min-height: auto;
  gap: 0;
  padding: 0;
  background: #0c0d10;
}

.photo-screen img {
  width: 100%;
  height: min(510px, 78vh);
  object-fit: contain;
  object-position: center top;
  padding: 10px;
}

.screen-caption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.08), rgba(143, 207, 156, 0.05)),
    rgba(0, 0, 0, 0.22);
}

.screen-caption strong {
  color: var(--ink);
}

.screen-caption span {
  color: var(--muted);
  font-size: 14px;
}

.phone-screen > * {
  min-width: 0;
}

.phone-screen h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.02;
  overflow-wrap: normal;
}

.phone-screen article,
.feature-strip article,
.app-depth-grid article,
.journey-timeline article,
.system-depth-grid article,
.screen-card,
.tier-grid article,
.waitlist-form,
.plan-grid article,
.language-grid article,
.web-access,
.qr-card,
footer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(159, 139, 214, 0.045)),
    rgba(0, 0, 0, 0.1);
}

.phone-screen article {
  display: grid;
  gap: 4px;
  padding: 14px;
  width: 100%;
}

.phone-screen article span {
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 12px 0 56px;
}

.feature-section {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.feature-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.feature-card,
.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(159, 139, 214, 0.045)),
    rgba(0, 0, 0, 0.1);
  padding: 18px;
}

.feature-card h3,
.gallery-grid figcaption {
  color: var(--gold);
  font-size: 1rem;
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.app-depth-section,
.complete-guide-section,
.personalisation-section,
.beginner-path-section,
.level-section,
.early-screens-section,
.standout-section,
.comparison-section,
.process-section,
.founder-story-section,
.system-depth-section,
.trust-section,
.community-section,
.connected-guidance-section,
.free-premium-section {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.app-depth-grid,
.complete-guide-grid,
.standout-grid,
.comparison-grid,
.process-grid,
.trust-grid,
.system-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-depth-grid article,
.complete-guide-grid article,
.standout-grid article,
.comparison-grid article,
.process-grid article,
.trust-grid article,
.system-depth-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 18px;
}

.app-depth-grid span,
.standout-grid span,
.process-grid span,
.journey-timeline span {
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(231, 189, 105, 0.26);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-depth-grid p,
.complete-guide-grid p,
.standout-grid p,
.comparison-grid span,
.process-grid p,
.trust-grid span,
.system-depth-grid span,
.journey-timeline p,
.personalisation-flow p,
.tier-grid li {
  color: var(--muted);
}

.complete-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.complete-guide-grid strong,
.standout-grid strong,
.comparison-grid strong,
.process-grid strong,
.trust-grid strong {
  color: var(--sage);
}

.standout-section {
  padding-top: 84px;
}

.standout-grid article {
  border-color: rgba(231, 189, 105, 0.26);
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.09), rgba(143, 207, 156, 0.045)),
    rgba(0, 0, 0, 0.13);
}

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

.comparison-grid article {
  min-height: 142px;
}

.comparison-grid article:not(.mystora-card) {
  opacity: 0.86;
}

.comparison-grid .mystora-card {
  border-color: rgba(143, 207, 156, 0.38);
  background:
    linear-gradient(135deg, rgba(143, 207, 156, 0.13), rgba(231, 189, 105, 0.07)),
    rgba(0, 0, 0, 0.16);
}

.process-grid article {
  border-color: rgba(159, 139, 214, 0.28);
}

.personalisation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.personalisation-flow article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 18px;
}

.personalisation-flow span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #101413;
  font-weight: 900;
  background: var(--sage);
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.journey-timeline article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 16px;
}

.journey-timeline p,
.system-depth-grid span {
  margin: 0;
}

.system-depth-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.system-depth-grid article {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.system-depth-grid strong {
  color: var(--sage);
}

.correspondence-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.correspondence-guide article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(231, 189, 105, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.1), rgba(143, 207, 156, 0.06)),
    rgba(0, 0, 0, 0.16);
}

.correspondence-guide h3 {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1.06;
}

.correspondence-guide p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

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

.level-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 22px;
}

.level-grid h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
}

.level-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.level-grid li + li {
  margin-top: 8px;
}

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

.community-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.community-main-card,
.community-points article {
  display: grid;
  align-content: start;
  min-width: 0;
  border: 1px solid rgba(143, 207, 156, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 207, 156, 0.13), rgba(231, 189, 105, 0.065)),
    rgba(0, 0, 0, 0.16);
}

.community-main-card {
  gap: 12px;
  padding: 24px;
}

.community-main-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.04;
}

.community-main-card p:not(.eyebrow),
.community-points span {
  margin: 0;
  color: var(--muted);
}

.community-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.community-points article {
  gap: 8px;
  padding: 18px;
}

.community-points strong {
  color: var(--sage);
  font-size: 18px;
}

.connected-guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.connected-guidance-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(231, 189, 105, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.09), rgba(143, 207, 156, 0.055)),
    rgba(0, 0, 0, 0.14);
}

.connected-guidance-grid strong {
  color: var(--gold);
  font-size: 18px;
}

.connected-guidance-grid span {
  color: var(--muted);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tier-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 22px;
}

.tier-grid h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
}

.tier-grid ul {
  margin: 0;
  padding-left: 20px;
}

.tier-grid li + li {
  margin-top: 8px;
}

.feature-strip article,
.plan-grid article,
.language-grid article {
  display: grid;
  gap: 5px;
  padding: 17px;
}

.feature-strip span,
.plan-grid span,
.language-grid span {
  color: var(--muted);
}

.early-screens-section {
  padding-top: 34px;
}

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

.early-screens-grid article {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(231, 189, 105, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.08), rgba(143, 207, 156, 0.045)),
    rgba(0, 0, 0, 0.16);
}

.early-screens-grid img {
  width: 100%;
  height: clamp(240px, 28vw, 350px);
  object-fit: contain;
  object-position: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0d10;
}

.early-screens-grid strong {
  min-height: 32px;
  color: var(--sage);
  text-align: center;
}

.screens-section,
.email-plan,
.language-section,
.share-section,
.split-section,
.web-access,
.qr-section {
  padding: 74px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.founder-story-panel {
  max-width: 920px;
  padding: 26px;
  border: 1px solid rgba(231, 189, 105, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.12), rgba(143, 207, 156, 0.08), rgba(159, 139, 214, 0.08)),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.founder-story-panel p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 0.94rem + 0.24vw, 1.14rem);
  line-height: 1.72;
}

.founder-story-panel p + p {
  margin-top: 16px;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 10px;
}

.product-vision-panel {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(231, 189, 105, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.08), rgba(143, 207, 156, 0.07)),
    rgba(0, 0, 0, 0.16);
}

.product-vision-panel article {
  display: grid;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.product-vision-panel strong {
  color: var(--gold);
}

.product-vision-panel span {
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.waitlist-value-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 38px;
}

.waitlist-value-showcase article {
  min-width: 0;
  border: 1px solid rgba(231, 189, 105, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.12), rgba(143, 207, 156, 0.07), rgba(159, 139, 214, 0.045)),
    rgba(0, 0, 0, 0.2);
  padding: 24px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.waitlist-value-showcase .value-lead {
  grid-row: span 2;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3vw, 38px);
  border-color: rgba(231, 189, 105, 0.42);
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.14), rgba(143, 207, 156, 0.08), rgba(217, 143, 164, 0.07)),
    rgba(0, 0, 0, 0.22);
}

.waitlist-value-showcase h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
}

.waitlist-value-showcase span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--gold);
  color: #090909;
  font-weight: 900;
}

.waitlist-value-showcase strong {
  display: block;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.08;
}

.waitlist-value-showcase p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.waitlist-value-showcase .value-lead p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.18rem);
}

.waitlist-value-showcase .primary-action {
  width: fit-content;
  margin-top: 8px;
}

.professional-feature-suite {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 38px;
}

.professional-feature-suite article {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.08), rgba(217, 143, 164, 0.05), rgba(143, 207, 156, 0.04)),
    rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.professional-feature-suite .suite-lead {
  grid-row: span 2;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 3.2vw, 42px);
  border-color: rgba(143, 207, 156, 0.34);
  background:
    linear-gradient(145deg, rgba(143, 207, 156, 0.12), rgba(231, 189, 105, 0.08), rgba(159, 139, 214, 0.06)),
    rgba(0, 0, 0, 0.22);
}

.professional-feature-suite h3 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
}

.professional-feature-suite span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.professional-feature-suite strong {
  display: block;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.08;
}

.professional-feature-suite p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.professional-feature-suite .suite-lead p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 0.94rem + 0.24vw, 1.16rem);
}

.feature-directory {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 38px;
}

.feature-directory article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(231, 189, 105, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.075), rgba(143, 207, 156, 0.045), rgba(159, 139, 214, 0.04)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.feature-directory .directory-lead {
  grid-row: span 2;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 3.2vw, 42px);
  border-color: rgba(231, 189, 105, 0.42);
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.14), rgba(159, 139, 214, 0.07), rgba(143, 207, 156, 0.06)),
    rgba(0, 0, 0, 0.22);
}

.feature-directory h3 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
}

.feature-directory strong {
  display: block;
  color: var(--gold);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.08;
}

.feature-directory p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.feature-directory .directory-lead p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 0.94rem + 0.24vw, 1.16rem);
}

.feature-widget-intro {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 0 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(231, 189, 105, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.12), rgba(143, 207, 156, 0.065), rgba(159, 139, 214, 0.055)),
    rgba(0, 0, 0, 0.22);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.feature-widget-intro h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
}

.feature-widget-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.94rem + 0.24vw, 1.16rem);
  line-height: 1.62;
}

.real-app-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(231, 189, 105, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.09), rgba(143, 207, 156, 0.06)),
    rgba(0, 0, 0, 0.16);
}

.real-app-copy,
.real-screen {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.real-app-copy {
  display: grid;
  align-content: center;
  padding: 22px;
}

.real-app-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
}

.real-app-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.real-screen {
  display: grid;
  overflow: hidden;
  margin: 0;
}

.real-screen img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #0c0d10;
}

.real-screen.wide img {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.real-screen figcaption {
  display: grid;
  gap: 6px;
  min-height: 124px;
  padding: 12px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.real-screen figcaption strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.real-screen figcaption span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.42;
}

.free-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
  margin: 0 0 22px;
  padding: 20px;
  border: 1px solid rgba(143, 207, 156, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 207, 156, 0.12), rgba(231, 189, 105, 0.06)),
    rgba(0, 0, 0, 0.16);
}

.free-showcase-copy {
  display: grid;
  align-content: center;
}

.free-showcase-copy h3,
.premium-divider h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
}

.free-showcase-copy p:not(.eyebrow),
.free-proof-grid span,
.premium-divider p:not(.eyebrow) {
  color: var(--muted);
}

.free-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.free-proof-grid article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  min-height: 158px;
  padding: 16px;
  border: 1px solid rgba(143, 207, 156, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.free-proof-grid strong {
  color: var(--sage);
  font-size: clamp(25px, 3.2vw, 42px);
  line-height: 1;
}

.free-proof-grid span {
  font-size: 14px;
}

.premium-divider {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 24px;
  border-radius: 8px;
}

.premium-divider {
  border: 1px solid rgba(231, 189, 105, 0.3);
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.12), rgba(217, 143, 164, 0.07)),
    rgba(0, 0, 0, 0.16);
}

.premium-value-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(231, 189, 105, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 189, 105, 0.13), rgba(143, 207, 156, 0.07)),
    rgba(255, 255, 255, 0.045);
}

.premium-value-panel article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(231, 189, 105, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.premium-value-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.premium-value-panel strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.premium-value-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.screen-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(231, 189, 105, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.065), rgba(143, 207, 156, 0.04)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  object-fit: contain !important;
  object-position: center center;
  border-bottom: 1px solid var(--line);
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(231, 189, 105, 0.12), rgba(159, 139, 214, 0.07), rgba(8, 10, 12, 0.98));
}

.screen-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 20px 22px 24px;
}

.screen-card.free {
  border-color: rgba(143, 207, 156, 0.26);
}

.screen-card.premium {
  border-color: rgba(229, 189, 105, 0.34);
}

.screen-card.feature-focus {
  border-color: rgba(231, 189, 105, 0.46);
  box-shadow: inset 0 0 0 1px rgba(231, 189, 105, 0.1), 0 22px 58px rgba(0, 0, 0, 0.24);
}

.screen-card p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.screen-card h3 {
  margin-bottom: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.feature-widget-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature-widget-grid .screen-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  min-height: 100%;
  overflow: hidden;
  border-color: rgba(231, 189, 105, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.075), rgba(143, 207, 156, 0.045), rgba(159, 139, 214, 0.04)),
    rgba(0, 0, 0, 0.22);
}

.feature-widget-grid .screen-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 3px solid rgba(231, 189, 105, 0.66);
  opacity: 0.9;
}

.feature-widget-grid .screen-card img {
  display: none;
}

.feature-widget-grid .screen-card div {
  position: relative;
  min-height: 100%;
  padding: 24px;
}

.feature-widget-grid .screen-card .eyebrow {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(231, 189, 105, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(231, 189, 105, 0.08);
  font-size: 10px;
  line-height: 1;
}

.feature-widget-grid .screen-card h3 {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}

.feature-widget-grid .screen-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

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

.split-section ul {
  padding-left: 18px;
  color: var(--muted);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.22);
}

.waitlist-form .consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}

.waitlist-form .consent input {
  min-height: 20px;
  margin-top: 3px;
}

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

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

.share-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(143, 207, 156, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(143, 207, 156, 0.11), rgba(231, 189, 105, 0.06)),
    rgba(0, 0, 0, 0.16);
}

.share-copy-box {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.share-copy-box strong {
  color: var(--sage);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.share-copy-box span,
.share-panel small {
  color: var(--muted);
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.share-buttons button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.065);
  font-weight: 900;
  cursor: pointer;
}

.share-buttons button:hover,
.share-buttons button:focus-visible {
  border-color: rgba(231, 189, 105, 0.58);
  background: rgba(231, 189, 105, 0.13);
  outline: none;
}

.share-buttons button[data-share-channel="native"],
.share-buttons button[data-share-channel="copy"] {
  color: #101413;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--sage));
}

.share-panel small {
  grid-column: 1 / -1;
  min-height: 20px;
  font-weight: 700;
}

.pathway-section,
.quiz-teaser-section,
.realm-grid {
  position: relative;
}

.pathway-section {
  margin-top: 28px;
  padding: 46px;
  border: 1px solid rgba(231, 189, 105, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(231, 189, 105, 0.13), transparent 36%),
    radial-gradient(circle at 90% 28%, rgba(143, 207, 156, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.pathway-grid,
.realm-grid,
.quiz-glimpse-panel,
.quiz-stat-row {
  display: grid;
  gap: 14px;
}

.pathway-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.pathway-grid article,
.realm-grid article,
.quiz-glimpse-panel span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 12, 0.42);
}

.pathway-grid article::after,
.realm-grid article::after,
.quiz-glimpse-panel span::after,
.feature-widget-grid .screen-card::after {
  content: "";
  position: absolute;
  inset: -80% auto auto -40%;
  width: 54%;
  height: 220%;
  rotate: 18deg;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 237, 0.13), transparent);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.pathway-grid article:hover::after,
.realm-grid article:hover::after,
.quiz-glimpse-panel span:hover::after,
.feature-widget-grid .screen-card:hover::after {
  opacity: 1;
  transform: translateX(260%);
}

.pathway-grid article:hover,
.realm-grid article:hover,
.feature-widget-grid .screen-card:hover {
  border-color: rgba(231, 189, 105, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 0 26px rgba(231, 189, 105, 0.08);
}

.pathway-grid article {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.pathway-grid article::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 1px solid rgba(231, 189, 105, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 35%, rgba(255, 247, 237, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, rgba(231, 189, 105, 0.24), transparent 62%);
}

.pathway-grid article:nth-child(even)::before {
  border-radius: 8px;
  transform: rotate(45deg);
  background:
    radial-gradient(circle at 50% 50%, rgba(143, 207, 156, 0.28), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.pathway-grid strong,
.realm-grid strong,
.quiz-glimpse-panel span {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.pathway-grid span,
.realm-grid span {
  color: var(--muted);
  font-size: 14px;
}

.realm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0 30px;
}

.realm-grid article {
  min-height: 132px;
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 20px;
}

.realm-grid article:nth-child(odd),
.pathway-grid article:nth-child(3n + 1) {
  border-color: rgba(231, 189, 105, 0.2);
}

.realm-grid article:nth-child(even),
.pathway-grid article:nth-child(3n + 2) {
  border-color: rgba(143, 207, 156, 0.2);
}

.quiz-teaser-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin: 30px 0;
  padding: 32px;
  border: 1px solid rgba(231, 189, 105, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(159, 139, 214, 0.18), transparent 35%),
    radial-gradient(circle at 14% 90%, rgba(143, 207, 156, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.quiz-teaser-section::before,
#waitlist::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(231, 189, 105, 0.1);
  border-radius: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.quiz-teaser-copy p {
  color: var(--muted);
  font-size: 17px;
}

.quiz-stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.quiz-stat-row span {
  padding: 16px;
  border: 1px solid rgba(231, 189, 105, 0.22);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
}

.quiz-stat-row strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.quiz-glimpse-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
}

.quiz-glimpse-panel span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--ink);
  font-weight: 900;
}

.quiz-glimpse-panel span:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(231, 189, 105, 0.15), rgba(255, 255, 255, 0.04));
}

.quiz-glimpse-panel span:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(143, 207, 156, 0.14), rgba(255, 255, 255, 0.04));
}

.quiz-glimpse-panel span:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(159, 139, 214, 0.16), rgba(255, 255, 255, 0.04));
}

#waitlist {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(231, 189, 105, 0.2);
  border-radius: 8px;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(231, 189, 105, 0.16), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(143, 207, 156, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.primary-action,
.nav-cta,
.waitlist-form button {
  position: relative;
  overflow: hidden;
}

.primary-action::after,
.nav-cta::after,
.waitlist-form button::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 36%;
  height: 180%;
  rotate: 20deg;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: buttonGlimmer 4.8s ease-in-out infinite;
}

@keyframes starDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 180px 180px, -230px 230px, 260px -260px, -210px -210px; }
}

@keyframes portalPulse {
  0%, 100% { opacity: 0.48; transform: scale(0.96); }
  50% { opacity: 0.82; transform: scale(1.04); }
}

@keyframes sigilFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.28; }
  50% { transform: translate3d(0, -18px, 0) rotate(8deg); opacity: 0.56; }
}

@keyframes buttonGlimmer {
  0%, 58% { transform: translateX(0); opacity: 0; }
  68% { opacity: 0.7; }
  100% { transform: translateX(420%); opacity: 0; }
}

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

.site-language-picker {
  display: grid;
  gap: 8px;
  width: min(320px, 100%);
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-language-picker select {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(229, 189, 105, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--cream);
  font-weight: 900;
}

.goog-te-banner-frame,
.goog-te-gadget,
#google_translate_element {
  display: none !important;
}

body {
  top: 0 !important;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.language-grid article {
  min-height: 128px;
  border-color: rgba(143, 207, 156, 0.24);
  background:
    linear-gradient(145deg, rgba(143, 207, 156, 0.08), rgba(229, 189, 105, 0.06)),
    rgba(0, 0, 0, 0.1);
}

.web-access,
.qr-section {
  padding: 26px;
}

.app-difference {
  align-items: stretch;
}

.difference-points {
  display: grid;
  gap: 12px;
}

.difference-points article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.difference-points strong {
  font-size: 18px;
}

.difference-points span {
  color: var(--muted);
  font-size: 15px;
}

.qr-card {
  display: grid;
  gap: 14px;
  justify-self: center;
  width: min(360px, 100%);
  margin: 0;
  padding: 20px;
  background: #f7f0e8;
  color: #111514;
}

.qr-card img {
  width: min(270px, 100%);
  justify-self: center;
}

.qr-card figcaption {
  display: grid;
  gap: 5px;
  text-align: center;
}

.qr-card span {
  color: #4f4a43;
}

footer {
  display: grid;
  gap: 8px;
  margin: 42px 0 28px;
  padding: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--gold);
  font-weight: 800;
}

.legal-main {
  padding: 22px 0 56px;
}

.legal-hero,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(159, 139, 214, 0.045)),
    rgba(0, 0, 0, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.legal-hero {
  margin: 42px 0 24px;
  padding: clamp(28px, 5vw, 56px);
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 72px);
}

.legal-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.legal-card section {
  display: grid;
  gap: 10px;
}

.legal-card h2,
.legal-card h3 {
  margin-bottom: 0;
}

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

.legal-card a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-card ul,
.legal-card ol {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .topbar,
  .hero-grid,
  .split-section,
  .web-access,
  .qr-section {
    grid-template-columns: 1fr;
  }

  .quiz-teaser-section {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }

  .nav-actions {
    justify-content: flex-start;
  }

  .feature-strip,
  .feature-grid,
  .gallery-grid,
  .early-screens-grid,
  .app-depth-grid,
  .complete-guide-grid,
  .standout-grid,
  .comparison-grid,
  .process-grid,
  .personalisation-flow,
  .journey-timeline,
  .level-grid,
  .plan-grid,
  .language-grid,
  .product-vision-panel,
  .professional-feature-suite,
  .feature-directory,
  .pathway-grid,
  .realm-grid,
  .system-depth-grid,
  .trust-grid,
  .share-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .free-showcase,
  .real-app-showcase,
  .community-showcase,
  .correspondence-guide,
  .tier-grid,
  .share-panel {
    grid-template-columns: 1fr;
  }

  .system-depth-grid article {
    grid-template-columns: 1fr;
  }

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

  .premium-value-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-app-showcase {
    min-height: 560px;
  }

  .hero-phone-main {
    transform: translateX(-58px);
  }

  .real-app-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .real-app-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .product-vision-panel {
    grid-template-columns: 1fr;
  }

  .waitlist-value-showcase {
    grid-template-columns: 1fr;
  }

  .professional-feature-suite {
    grid-template-columns: 1fr;
  }

  .waitlist-value-showcase .value-lead {
    grid-row: auto;
  }

  .professional-feature-suite .suite-lead {
    grid-row: auto;
  }

  .feature-directory {
    grid-template-columns: 1fr;
  }

  .pathway-grid,
  .realm-grid,
  .quiz-stat-row,
  .quiz-glimpse-panel {
    grid-template-columns: 1fr;
  }

  .feature-directory .directory-lead {
    grid-row: auto;
  }

  .topbar {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 18px 0 24px;
  }

  .pathway-section,
  .quiz-teaser-section,
  #waitlist {
    padding: 20px;
  }

  .hero-portal-orbit {
    display: none;
  }

  .hero-magic-field {
    opacity: 0.42;
  }

  .hero-moon {
    width: 74px;
    right: 8px;
  }

  .floating-sigil {
    font-size: 22px;
  }

  section {
    padding-block: 26px;
  }

  .hero-copy > p,
  .section-intro p,
  .split-section p,
  .web-access p,
  .qr-section p {
    font-size: 15.5px;
  }

  .hero-actions {
    gap: 8px;
  }

  .primary-action,
  .secondary-action,
  .waitlist-form button {
    width: 100%;
  }

  .trust-row {
    gap: 7px;
  }

  .trust-row span {
    padding: 7px 9px;
    font-size: 12px;
  }

  .nav-actions a {
    flex: 1 1 135px;
  }

  .nav-actions a:not(.nav-cta) {
    display: none;
  }

  .nav-actions .nav-cta {
    flex: 0 0 auto;
  }

  .hero-app-showcase {
    min-height: auto;
    grid-template-areas:
      "phones"
      "proof";
    grid-template-rows: 410px auto;
    align-items: stretch;
    justify-items: stretch;
    gap: 14px;
  }

  .hero-app-showcase::before {
    position: relative;
    grid-area: phones;
    inset: auto;
    width: 100%;
    height: 100%;
  }

  .hero-phone-main {
    grid-area: phones;
    align-self: center;
    justify-self: start;
    width: min(230px, 63%);
    margin-left: 10px;
    transform: none;
  }

  .hero-phone-secondary {
    grid-area: phones;
    align-self: end;
    justify-self: end;
    width: min(150px, 42%);
    right: auto;
    bottom: auto;
    margin-right: 8px;
    margin-bottom: 18px;
  }

  .hero-phone-sections {
    grid-area: phones;
    align-self: center;
    justify-self: center;
    width: min(235px, 68%);
    margin: 0;
    transform: none;
  }

  .hero-proof-panel {
    position: relative;
    grid-area: proof;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 14px;
  }

  .phone-frame {
    width: min(305px, 100%);
    border-radius: 28px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 0.95;
  }

  h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  h3 {
    font-size: 20px;
  }

  .section-intro {
    margin-bottom: 16px;
  }

  .feature-strip,
  .feature-grid,
  .gallery-grid,
  .early-screens-grid,
  .app-depth-grid,
  .complete-guide-grid,
  .standout-grid,
  .comparison-grid,
  .process-grid,
  .personalisation-flow,
  .journey-timeline,
  .level-grid,
  .screens-grid,
  .waitlist-value-showcase,
  .professional-feature-suite,
  .feature-directory,
  .plan-grid,
  .language-grid,
  .community-showcase,
  .connected-guidance-grid,
  .community-points,
  .system-depth-grid,
  .trust-grid,
  .tier-grid,
  .correspondence-guide,
  .free-proof-grid,
  .premium-value-panel,
  .share-buttons {
    grid-template-columns: 1fr;
  }

  .free-showcase,
  .waitlist-value-showcase article,
  .professional-feature-suite article,
  .feature-directory article,
  .premium-value-panel,
  .real-app-showcase,
  .share-panel {
    padding: 14px;
  }

  .real-app-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .real-app-copy {
    grid-column: 1 / -1;
    padding: 16px;
  }

  .real-app-copy p:not(.eyebrow) {
    display: none;
  }

  .real-screen img {
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    padding: 10px;
  }

  .real-screen.wide {
    grid-column: 1 / -1;
  }

  .real-screen.wide img {
    height: auto;
    max-height: none;
  }

  .free-proof-grid article {
    min-height: auto;
  }

  .screen-card {
    grid-template-columns: 1fr;
  }

  .screen-card img {
    height: auto;
    padding: 10px;
  }

  .early-screens-grid img {
    height: clamp(280px, 82vw, 380px);
  }

  .screen-card div {
    padding: 20px 22px 24px;
  }

  .screen-card h3 {
    font-size: 21px;
  }

  .phone-screen {
    min-height: 440px;
    padding: 22px;
  }

  .photo-screen {
    min-height: auto;
    padding: 0;
  }

  .photo-screen img {
    height: min(330px, 52vh);
  }

  .language-grid,
  .comparison-section,
  .process-section,
  .app-depth-section,
  .complete-guide-section,
  .personalisation-section,
  .beginner-path-section,
  .level-section,
  .system-depth-section,
  .trust-section,
  .email-plan {
    display: none;
  }

  .feature-strip,
  .standout-grid,
  .tier-grid,
  .difference-points {
    gap: 10px;
  }

  .feature-strip article,
  .standout-grid article,
  .tier-grid article,
  .difference-points article,
  .early-screens-grid article {
    min-height: auto;
    padding: 16px;
  }

  .language-section .section-intro p {
    display: none;
  }

  .split-section ul {
    display: none;
  }

  .early-screens-grid,
  .free-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .screens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .real-app-showcase {
    grid-template-columns: 1fr;
  }

  .early-screens-grid img {
    height: clamp(130px, 38vw, 190px);
  }

  .free-showcase {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .free-showcase-copy {
    grid-column: 1 / -1;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .free-showcase-copy p:not(.eyebrow) {
    display: none;
  }

  .screen-card {
    display: block;
    min-height: auto;
    border-radius: 8px;
  }

  .screen-card img {
    height: auto;
    max-height: none;
    object-fit: contain !important;
    object-position: center;
    padding: 8px;
  }

  .screen-card div {
    padding: 12px;
  }

  .screen-card h3 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.15;
  }

  .screen-card p:not(.eyebrow) {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .screen-card .eyebrow {
    margin-bottom: 7px;
    font-size: 9px;
  }

  footer {
    margin-top: 20px;
  }
}

.feature-widget-grid .screen-card {
  display: grid;
  grid-template-rows: 1fr;
}

.feature-widget-grid .screen-card img {
  display: none !important;
}
