:root {
  color-scheme: dark;
  --ink: #fffaf1;
  --paper: #edf3ef;
  --muted: #a6b0ab;
  --dim: #6f7a76;
  --black: #020303;
  --page-black: #020303;
  --charcoal: #070907;
  --graphite: #101410;
  --line: rgba(255, 250, 241, 0.12);
  --strong-line: rgba(255, 250, 241, 0.22);
  --sage: #7f8f68;
  --sage-deep: #657552;
  --aqua: #83b9bf;
  --amber: #d9b46a;
  --copper: #c88b73;
  --violet: #a482c9;
  --rose: #d86f98;
  --glow-white: #fffaf1;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --demo-brightness: 1;
  --demo-contrast: 0.95;
  --demo-saturation: 0.97;
  --demo-warmth: 0.058;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
}

.earth-texture {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 250, 241, 0.035) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 64%, rgba(217, 180, 106, 0.045) 0 1px, transparent 1.2px);
  background-size: 34px 34px, 47px 47px;
  mix-blend-mode: soft-light;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

main {
  transition: none;
}

main > section:not(.hero),
.site-footer {
  filter: brightness(var(--demo-brightness)) contrast(var(--demo-contrast)) saturate(var(--demo-saturation));
  transition: filter 180ms ease;
}

.comfort-effects {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 224, 184, var(--demo-warmth)), transparent 38%),
    linear-gradient(180deg, rgba(216, 111, 152, calc(var(--demo-warmth) * 0.42)), rgba(217, 180, 106, calc(var(--demo-warmth) * 0.58)));
  mix-blend-mode: multiply;
  opacity: 0.34;
  transition: background 180ms ease, opacity 180ms ease;
}

body::selection {
  background: rgba(216, 111, 152, 0.22);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  padding: 0 clamp(18px, 4vw, 46px);
  border-bottom: 0;
  color: #fffaf1;
  background: var(--page-black);
  backdrop-filter: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: var(--page-black);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 28px;
  height: 28px;
  border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%;
  border: 1px solid rgba(255, 250, 241, 0.16);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 250, 241, 0.18), transparent 30%),
    radial-gradient(circle at 66% 72%, rgba(216, 111, 152, 0.84), transparent 48%),
    linear-gradient(135deg, #e0c46f 0%, #d86f98 100%);
  box-shadow:
    inset 0 0 12px rgba(255, 246, 229, 0.34),
    0 8px 22px rgba(0, 0, 0, 0.26);
  animation:
    brand-morph 8.5s ease-in-out infinite,
    brand-breathe 10s ease-in-out infinite;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.brand-mark::before {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 250, 241, 0.12), transparent 30%),
    radial-gradient(circle at 72% 68%, rgba(131, 185, 191, 0.88), transparent 46%),
    linear-gradient(135deg, #a482c9 0%, #83b9bf 100%);
  mix-blend-mode: normal;
  opacity: 0;
  animation: brand-palette-a 18s ease-in-out infinite;
}

.brand-mark::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 250, 241, 0.1), transparent 28%),
    radial-gradient(circle at 70% 72%, rgba(164, 130, 201, 0.66), transparent 44%),
    linear-gradient(135deg, #83b9bf 0%, #7f8f68 100%);
  mix-blend-mode: normal;
  opacity: 0;
  animation: brand-palette-b 18s ease-in-out infinite;
}

.footer-links a:hover {
  opacity: 1;
}

.button {
  border-radius: 8px;
  font-weight: 760;
}

.hero {
  --screen-radius: 0px;
  --screen-scale: 1;
  position: relative;
  height: 300svh;
  overflow: visible;
  display: block;
  padding: 0;
  color: #fffaf1;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 246, 229, 0.12), transparent 24%),
    radial-gradient(circle at 58% 36%, rgba(216, 111, 152, 0.15), transparent 34%),
    radial-gradient(circle at 38% 28%, rgba(131, 185, 191, 0.12), transparent 32%),
    linear-gradient(180deg, #020303 0%, #060806 58%, #080b08 78%, #020303 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 42svh;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 3, 3, 0.34) 42%, #020303 100%);
  pointer-events: none;
}

.hero-stage {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  margin-inline: 0;
  overflow: hidden;
}

.hero.is-pin-active .hero-stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
}

.hero.is-pin-complete .hero-stage {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 100svh;
}

.static-display {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: var(--screen-radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 246, 229, 0.12), transparent 24%),
    radial-gradient(circle at 48% 48%, rgba(216, 111, 152, 0.12), transparent 34%),
    radial-gradient(circle at 58% 45%, rgba(131, 185, 191, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(8, 14, 13, 0.96), rgba(2, 4, 5, 0.98)),
    #020303;
  box-shadow:
    inset 0 0 150px rgba(0, 0, 0, 0.78),
    inset 0 0 24px rgba(131, 185, 191, 0.1),
    0 50px 120px rgba(35, 30, 24, 0.22);
  transform: scale(var(--screen-scale));
  transform-origin: center center;
  will-change: transform, border-radius;
}

.static-display::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  border-left: 42px solid rgba(255, 250, 241, 0.06);
  border-right: 42px solid rgba(255, 250, 241, 0.06);
  opacity: 0.5;
  pointer-events: none;
}

.static-display::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 250, 241, 0.075) 0 1px, transparent 1px 6px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.72));
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
}

.static-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.98;
  filter: saturate(1.35) contrast(1.08);
  transition: opacity 1300ms ease, filter 1300ms ease;
}

.static-display.is-settled .static-canvas {
  opacity: 0.82;
  filter: saturate(0.95) contrast(0.96);
}

.static-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(131, 185, 191, 0.24) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(216, 111, 152, 0.16) 0 1px, transparent 1.3px);
  background-size: 23px 19px, 31px 29px;
  opacity: 0.22;
  mix-blend-mode: screen;
  transition: opacity 1300ms ease;
}

.static-display.is-settled .static-grain {
  opacity: 0.08;
}

.static-mark {
  position: relative;
  z-index: 2;
  display: inline-grid;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: min(760px, 72vw);
  color: #fffaf1;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px) scale(0.98);
  animation: mark-arrive 5.4s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.static-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  right: 8%;
  top: -96px;
  bottom: -90px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 246, 229, 0.58), transparent 28%),
    radial-gradient(ellipse at center, rgba(216, 111, 152, 0.18), transparent 43%),
    radial-gradient(ellipse at center, rgba(131, 185, 191, 0.2), transparent 58%);
  filter: blur(14px);
  opacity: 0.9;
  transition: opacity 1400ms ease, transform 1400ms ease;
}

.static-display.is-settled .static-mark::before {
  opacity: 1;
  transform: scale(1.06);
}

.static-mark strong {
  font-size: clamp(42px, 7.4vw, 104px);
  font-weight: 820;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(255, 246, 229, 0.82),
    0 0 46px rgba(131, 185, 191, 0.26),
    0 0 66px rgba(216, 111, 152, 0.16);
}

.static-mark-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 241, 0.68));
  box-shadow: 0 0 18px rgba(131, 185, 191, 0.24);
}

.static-mark-rule:last-child {
  background: linear-gradient(90deg, rgba(255, 250, 241, 0.68), transparent);
}

@keyframes brand-morph {
  0%,
  100% {
    border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%;
    transform: rotate(0deg);
  }
  33% {
    border-radius: 56% 44% 58% 42% / 46% 58% 42% 54%;
    transform: rotate(2deg);
  }
  66% {
    border-radius: 42% 58% 44% 56% / 58% 44% 56% 42%;
    transform: rotate(-2deg);
  }
}

@keyframes brand-breathe {
  0%,
  100% {
    filter: saturate(0.96) brightness(1.02);
  }
  50% {
    filter: saturate(1.08) brightness(1.08);
  }
}

@keyframes brand-palette-a {
  0%,
  24%,
  100% {
    opacity: 0;
  }
  36%,
  56% {
    opacity: 0.78;
  }
  68% {
    opacity: 0.18;
  }
}

@keyframes brand-palette-b {
  0%,
  52%,
  100% {
    opacity: 0;
  }
  68%,
  88% {
    opacity: 0.72;
  }
}

@keyframes brand-orbit {
  0%,
  100% {
    transform: translate(-14%, -10%) scale(0.86);
  }
  50% {
    transform: translate(18%, 16%) scale(1.1);
  }
}

.shot-top span,
.price-label {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes mark-arrive {
  0%,
  34% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(12px) scale(0.98);
  }
  58%,
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.button.primary {
  color: #07100d;
  background: linear-gradient(135deg, #d8f0a9, #84c987);
  box-shadow: 0 16px 44px rgba(132, 201, 135, 0.22);
}

.button.secondary {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.08);
}

.button.wide {
  width: 100%;
}

.section,
.belief-band {
  position: relative;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 62px);
  background-color: var(--page-black);
  isolation: isolate;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 84px;
}

.scroll-scene {
  --scene-progress: 0;
  --scene-softness: 0.06;
  --scene-orbit: 18%;
  --scene-strain: 0.72;
  --scene-calm: 0.24;
  --scene-scan-shift: -28%;
  --scene-bar-1: 0.24;
  --scene-bar-2: 0.16;
  --scene-bar-3: 0.32;
  --scene-bar-4: 0.18;
  --profile-shift: 18px;
  --profile-glow: 0.04;
  position: relative;
  overflow: hidden;
}

.scroll-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(216, 111, 152, 0.08) 42% 43%, transparent 43%),
    radial-gradient(circle at var(--scene-orbit) 48%, rgba(131, 185, 191, 0.14), transparent 28%);
}

[data-reveal],
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1),
    border-color 220ms ease,
    background 220ms ease;
}

[data-reveal].is-visible,
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.belief-band {
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  background: var(--page-black);
}

.belief-band .section-inner {
  display: flex;
  justify-content: center;
}

.belief-band .story-copy {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.belief-band .story-copy h2 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.belief-band .story-copy p:last-child {
  max-width: 820px;
  margin-inline: auto;
  color: rgba(255, 250, 241, 0.55);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 680;
  line-height: 1.35;
}

.ritual-section {
  min-height: clamp(540px, 70vh, 740px);
  display: flex;
  align-items: center;
  background: var(--page-black);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.belief-grid {
  display: block;
}

.story-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.story-copy h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.story-copy p:last-child {
  max-width: 660px;
}

.calibration-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.065), rgba(255, 250, 241, 0.028)),
    rgba(16, 20, 16, 0.72);
  box-shadow: var(--shadow);
}

.calibration-panel article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.55fr);
  gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(168, 217, 145, var(--profile-glow)), transparent),
    rgba(255, 250, 241, 0.045);
  transform: translateX(var(--profile-shift));
  transition: transform 180ms linear, background 180ms linear;
}

.calibration-panel span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 820;
}

.calibration-panel output {
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 780;
}

.calibration-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.calibration-panel article:last-child {
  min-height: 78px;
}

.calibration-control input[type="range"] {
  --fill: 50%;
  width: 100%;
  height: 22px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: transparent;
}

.calibration-control input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--sage), var(--aqua), var(--rose)) 0 / var(--fill) 100% no-repeat,
    rgba(255, 250, 241, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.08);
}

.calibration-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -6px;
  border: 2px solid rgba(255, 250, 241, 0.84);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, var(--glow-white), transparent 32%),
    linear-gradient(135deg, var(--rose), var(--aqua));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.calibration-control input[type="range"]::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--sage), var(--aqua), var(--rose)) 0 / var(--fill) 100% no-repeat,
    rgba(255, 250, 241, 0.13);
}

.calibration-control input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 250, 241, 0.84);
  border-radius: 50%;
  background: var(--rose);
}

.calibration-sample {
  position: relative;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 56% 46%, rgba(255, 246, 229, 0.24), transparent 26%),
    radial-gradient(circle at 48% 48%, rgba(216, 111, 152, calc(var(--demo-warmth) * 1.7)), transparent 42%),
    linear-gradient(180deg, rgba(16, 20, 16, 0.92), rgba(7, 9, 7, 0.88));
  filter: brightness(var(--demo-brightness)) contrast(var(--demo-contrast)) saturate(var(--demo-saturation));
}

.calibration-sample::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0 1px, transparent 1px 8px);
}

.calibration-sample i {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.18);
}

.calibration-sample i:nth-child(1) {
  top: 24%;
}

.calibration-sample i:nth-child(2) {
  top: 46%;
  right: 28%;
}

.calibration-sample i:nth-child(3) {
  top: 68%;
  right: 40%;
}

.belief-grid p:last-child,
.story-copy p:last-child,
.section-heading p,
.education-grid p,
.shot p,
.price-card p,
.faq-grid p,
.site-footer p {
  color: var(--muted);
  font-size: 17px;
}

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

.wide-heading {
  max-width: 900px;
}

.education-section {
  background: var(--page-black);
}

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

.flip-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.07), rgba(255, 250, 241, 0.035)),
    linear-gradient(135deg, rgba(216, 111, 152, 0.045), transparent 50%);
  box-shadow: var(--shadow);
}

.flip-card {
  min-height: 360px;
  padding: 0;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.flip-card:focus-visible {
  border-color: rgba(216, 111, 152, 0.48);
  box-shadow: 0 0 0 3px rgba(216, 111, 152, 0.14), var(--shadow);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 360px;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.07), rgba(255, 250, 241, 0.035)),
    linear-gradient(135deg, rgba(216, 111, 152, 0.045), transparent 50%);
}

.flip-back {
  transform: rotateY(180deg);
  justify-content: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 111, 152, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(18, 22, 18, 0.96), rgba(2, 3, 3, 0.98));
}

.education-grid article span,
.flip-face span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.learn-mark {
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.06);
  overflow: hidden;
}

.pwm-mark {
  background:
    repeating-linear-gradient(90deg, rgba(217, 180, 106, 0.72) 0 4px, transparent 4px 10px),
    rgba(217, 180, 106, 0.12);
}

.dither-mark {
  background:
    radial-gradient(circle at 16px 16px, rgba(127, 143, 104, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 42px 24px, rgba(131, 185, 191, 0.82) 0 3px, transparent 4px),
    radial-gradient(circle at 28px 46px, rgba(216, 111, 152, 0.72) 0 3px, transparent 4px),
    rgba(255, 250, 241, 0.07);
}

.brightness-mark {
  background:
    linear-gradient(135deg, rgba(255, 246, 229, 0.94), rgba(216, 111, 152, 0.48), rgba(131, 185, 191, 0.34)),
    #151812;
}

.type-mark {
  display: grid;
  place-items: center;
}

.type-mark::after {
  content: "Aa";
  color: var(--ink);
  font-size: 25px;
  font-weight: 760;
}

.blink-mark::before,
.distance-mark::before {
  content: "";
  position: absolute;
  inset: 18px 11px;
  border: 2px solid var(--sage);
}

.blink-mark::before {
  inset: 20px 10px;
  border-radius: 50% 50% 48% 48% / 62% 62% 38% 38%;
  transform: scaleX(1.42) rotate(-2deg);
}

.blink-mark::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 250, 241, 0.9) 0 1.5px, transparent 2px),
    var(--sage);
  box-shadow: 0 0 12px rgba(127, 143, 104, 0.32);
}

.distance-mark::before {
  border-radius: 2px;
  border-color: var(--aqua);
  transform: perspective(60px) rotateX(34deg);
}

.screenshot-section {
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 24% 38%, rgba(131, 185, 191, 0.07), transparent 30%),
    radial-gradient(circle at 78% 30%, rgba(216, 111, 152, 0.055), transparent 26%),
    var(--page-black);
}

.product-tour-intro {
  max-width: 760px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  grid-template-areas:
    "display display"
    "blink menu";
  gap: clamp(30px, 4.4vw, 64px) clamp(34px, 6vw, 92px);
  align-items: end;
}

.price-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.07), rgba(255, 250, 241, 0.035));
  box-shadow: var(--shadow);
}

.shot {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shot.large {
  min-height: 0;
}

.shot-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.shot-top strong {
  font-size: 18px;
}

.display-shot {
  grid-area: display;
}

.menu-shot {
  grid-area: menu;
  max-width: 360px;
  justify-self: center;
}

.blink-panel-shot {
  grid-area: blink;
  max-width: 620px;
  justify-self: center;
}

.shot-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  margin-bottom: 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: visible;
}

.shot-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.lead-shot {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.lead-shot img {
  object-position: center top;
  filter: saturate(0.96) contrast(1.02) drop-shadow(0 34px 34px rgba(0, 0, 0, 0.48));
}

.shot-media.compact {
  min-height: 0;
}

.popover-shot {
  min-height: 0;
  background: transparent;
}

.popover-shot img {
  width: auto;
  max-width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02) drop-shadow(0 28px 32px rgba(0, 0, 0, 0.54));
}

.blink-shot {
  background: transparent;
}

.blink-shot img {
  object-position: center top;
  filter: saturate(0.94) contrast(1.02) drop-shadow(0 28px 32px rgba(0, 0, 0, 0.48));
}

.shot p {
  max-width: 650px;
  margin-top: 2px;
  color: color-mix(in srgb, var(--muted) 74%, transparent);
  font-size: clamp(14px, 1.08vw, 16px);
}

.display-shot p {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.menu-shot .shot-top,
.blink-panel-shot .shot-top {
  justify-content: flex-start;
}

.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 1.14fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.pricing-grid.single-price {
  display: block;
  max-width: 880px;
}

.pricing-section {
  background: var(--page-black);
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.8vw, 52px);
  border-color: rgba(255, 250, 241, 0.18);
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 111, 152, 0.18), transparent 31%),
    radial-gradient(circle at 14% 92%, rgba(168, 217, 145, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.025)),
    #060806;
  box-shadow:
    0 0 0 1px rgba(168, 217, 145, 0.08),
    0 32px 90px rgba(0, 0, 0, 0.52);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.18), transparent 34%, transparent 68%, rgba(216, 111, 152, 0.13));
  opacity: 0.28;
}

.single-price .price-card {
  margin-inline: auto;
}

.price-card strong {
  display: block;
  margin: 8px 0 14px;
  color: #fffaf1;
  font-size: clamp(72px, 9vw, 124px);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(255, 250, 241, 0.1);
}

.price-promise {
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 760;
}

.price-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--paper);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.checkout-note {
  margin: 12px 0 0;
  color: var(--dim);
  font-size: 14px;
  text-align: center;
}

.checkout-note.is-warning {
  color: var(--amber);
}

.faq-section {
  background: var(--page-black);
}

.creator-section {
  background: var(--page-black);
}

.subpage-main {
  min-height: calc(100svh - 120px);
}

.about-page {
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  padding-top: clamp(118px, 14vw, 180px);
}

.about-page h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.creator-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.07), rgba(255, 250, 241, 0.035)),
    rgba(255, 250, 241, 0.04);
  box-shadow: var(--shadow);
}

.creator-copy p {
  color: var(--paper);
  font-size: 18px;
}

.creator-copy .button {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  display: block;
  font-weight: 780;
}

.faq-item p {
  display: none;
  margin: 12px 0 0;
}

.faq-item[aria-expanded="true"] {
  border-color: rgba(216, 111, 152, 0.26);
  background: rgba(216, 111, 152, 0.085);
}

.faq-item[aria-expanded="true"] p {
  display: block;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 62px);
  background:
    linear-gradient(180deg, var(--page-black) 0%, rgba(2, 3, 3, 0.96) 100%),
    var(--page-black);
  border-top: 0;
}

.site-footer,
.site-footer p,
.site-footer .footer-links {
  color: #fffaf1;
}

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

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

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

@media (min-width: 1440px) {
  :root {
    --max: 1320px;
  }

  .site-header {
    padding-inline: max(46px, calc((100vw - 1540px) / 2));
  }

  .static-mark {
    width: min(860px, 60vw);
  }

  .static-mark strong {
    font-size: clamp(86px, 6vw, 126px);
  }

  .education-grid,
  .screenshot-grid {
    gap: 18px;
  }

  .screenshot-grid {
    row-gap: clamp(40px, 5vw, 78px);
  }
}

@media (max-width: 1020px) {
  .hero {
    height: 280svh;
  }

  .belief-grid,
  .ritual-grid,
  .creator-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .belief-band,
  .ritual-section {
    min-height: auto;
  }

  .calibration-panel {
    max-width: 620px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "display"
      "blink"
      "menu";
    gap: 38px;
  }

  .menu-shot,
  .blink-panel-shot {
    max-width: none;
  }

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

  .shot.large {
    grid-row: span 1;
  }

}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 60px;
    padding-inline: 14px;
    background: var(--page-black);
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: var(--page-black);
    border-bottom-color: transparent;
  }

  section[id] {
    scroll-margin-top: 72px;
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

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

  .hero {
    height: 270svh;
    padding: 0;
  }

  .hero-stage {
    top: 0;
    height: 100svh;
    margin-inline: 0;
  }

  .static-display {
    border-radius: var(--screen-radius);
    box-shadow:
      inset 0 0 86px rgba(0, 0, 0, 0.78),
      inset 0 0 16px rgba(131, 185, 191, 0.1),
      0 30px 76px rgba(35, 30, 24, 0.24);
  }

  .static-display::before {
    border-left-width: 22px;
    border-right-width: 22px;
  }

  .static-mark {
    width: min(300px, 86vw);
  }

  .static-mark-rule {
    display: none;
  }

  .static-mark strong {
    font-size: clamp(42px, 14vw, 58px);
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.25;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  h3 {
    font-size: 19px;
  }

  .footer-grid,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 15px;
  }

  .section,
  .belief-band {
    padding: 58px 16px;
  }

  .scroll-scene::before {
    opacity: 0;
  }

  .belief-grid,
  .ritual-grid,
  .creator-grid,
  .pricing-grid,
  .faq-grid {
    gap: 22px;
  }

  [data-reveal],
  .scroll-reveal {
    transform: translateY(16px);
  }

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

  .story-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .calibration-panel {
    padding: 10px;
  }

  .calibration-panel article {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .belief-grid p:last-child,
  .section-heading p,
  .education-grid p,
  .shot p,
  .creator-copy p,
  .price-card p,
  .faq-grid p,
  .site-footer p {
    font-size: 15px;
  }

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

  .education-grid {
    gap: 10px;
  }

  .flip-card,
  .flip-card-inner {
    min-height: 330px;
  }

  .flip-face {
    padding: 18px;
  }

  .learn-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
  }

  .shot {
    min-height: auto;
    padding: 0;
  }

  .shot.large {
    min-height: auto;
  }

  .shot-media {
    min-height: 0;
  }

  .shot-media.compact {
    min-height: 0;
  }

  .popover-shot img {
    max-width: min(72%, 240px);
  }

  .price-card {
    padding: 22px 18px;
  }

  .price-card strong {
    font-size: clamp(56px, 22vw, 76px);
  }

  .price-card ul {
    margin: 22px 0;
    gap: 10px;
  }

  .faq-item {
    padding: 16px;
  }

  .site-footer {
    padding: 30px 16px;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 14px;
  }

  .hero {
    padding-inline: 0;
  }

  .button {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .static-grain,
  .static-mark {
    animation: none;
  }

  .static-grain {
    opacity: 0.16;
    transform: none;
  }

  .static-mark {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
