:root {
  --bg: #0c0b08; /* Deep warm clay charcoal */
  --bg-deep: #070605; /* Soot black */
  --ink: #f7f4eb; /* Warm vanilla cream */
  --ink-soft: rgba(247, 244, 235, 0.76);
  --ink-muted: rgba(247, 244, 235, 0.45);
  --light: #fbf9f4; /* Warm linen-cream light sections */
  --navy-text: #221c16; /* Warm dark brown text for light sections */
  --navy-soft: rgba(34, 28, 22, 0.72);
  --amber: #dfb26c; /* Champagne Gold / Candlelight */
  --cyan: #8fa89b; /* Calming sage green */
  --violet: #6c567b; /* Sunset purple */
  --pink: #c06c84; /* Dusty rose */
  --green: #8fa89b; /* Sage green */
  --surface: rgba(247, 244, 235, 0.04);
  --surface-strong: rgba(247, 244, 235, 0.08);
  --line: rgba(223, 178, 108, 0.16);
  --line-soft: rgba(247, 244, 235, 0.06);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 38px; /* Slightly larger, more organic */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

* { box-sizing: border-box; }

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

html {
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle 320px at var(--mouse-x) var(--mouse-y), rgba(223, 178, 108, 0.075) 0%, transparent 100%),
    radial-gradient(circle at 50% -12%, rgba(223, 178, 108, 0.14), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, #12100d 42%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99; /* Overlay texture on EVERYTHING to make it tactile and paper-like */
  pointer-events: none;
  opacity: 0.045; /* Subtle noise grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(90deg, rgba(223, 178, 108, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(223, 178, 108, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 12%, #000, transparent 62%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; font: inherit; }

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--amber);
  color: #171006;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 0.9rem 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 6, 20, 0.7);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  border-color: rgba(255, 181, 71, 0.22);
  background: rgba(5, 6, 20, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.45);
}

.brand span {
  background: linear-gradient(110deg, #fff 0%, #8ee8ff 42%, var(--violet) 76%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header .brand small {
  display: inline-flex;
  margin-left: 0.1rem;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(0.8rem, 2.2vw, 1.7rem);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--amber);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  place-items: center;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease), background 300ms var(--ease);
}

.nav-cta {
  min-height: 38px;
  padding: 0.58rem 1.2rem;
  color: var(--amber);
  background: rgba(223, 178, 108, 0.15);
  border: 1px solid rgba(223, 178, 108, 0.3);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, #dfb26c, #c59853);
  color: #03040a;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 12px 35px rgba(223, 178, 108, 0.18), 
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.primary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 
    0 18px 45px rgba(223, 178, 108, 0.32), 
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(223, 178, 108, 0.5);
  box-shadow: 0 12px 30px rgba(223, 178, 108, 0.08);
}

.section-shell {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

section {
  position: relative;
  scroll-margin-top: 96px;
}

.section-dark {
  color: var(--ink);
}

.section-light {
  background: linear-gradient(180deg, #FAF7F0, #F0E8D5);
  color: var(--navy-text);
}

.hero,
.about-section,
.features-section,
.app-section,
.voice-section,
.privacy-section,
.closing-section,
.core-section,
.abilities-section,
.protected-section,
.beta-section {
  padding: clamp(8rem, 12vw, 12rem) 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 8.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 212, 255, 0.14), transparent 28rem),
    linear-gradient(180deg, transparent 68%, rgba(5, 6, 20, 0.76));
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(24px);
}

.ambient-one {
  right: -10rem;
  top: 12%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), rgba(139, 92, 246, 0.12) 48%, transparent 72%);
}

.ambient-two {
  left: -12rem;
  top: 18%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.12), rgba(139, 92, 246, 0.12) 48%, transparent 72%);
}

.hero-shell,
.split-shell,
.app-shell,
.voice-shell,
.privacy-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.35rem;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.02;
}

h1 em,
h2 em,
h3 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #ffffff, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(223, 178, 108, 0.15);
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.6;
}

.hero-support,
.story-copy p,
.section-head p,
.feature-row p,
.app-copy p,
.section-kicker p:not(.eyebrow),
.founder-copy p,
.disclaimer-card p,
.closing-card p,
.site-footer p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.75;
}

.section-light .story-copy p,
.section-light .section-head p,
.section-light .section-kicker p:not(.eyebrow),
.section-light .disclaimer-card p {
  color: var(--navy-soft);
}

.hero-support {
  max-width: 660px;
  margin-bottom: 2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-row.center {
  justify-content: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
  color: var(--ink-muted);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-halo {
  position: absolute;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), rgba(139, 92, 246, 0.12) 52%, transparent 72%);
  filter: blur(18px);
}

.phone-frame,
.voice-card,
.feature-row,
.disclaimer-card,
.closing-card,
.beta-card,
.pricing-card {
  border: 1px solid rgba(223, 178, 108, 0.16);
  border-radius: 38px 45px 35px 42px / 42px 35px 45px 38px; /* Handmade irregular organic shapes */
  background: linear-gradient(140deg, rgba(247, 244, 235, 0.03), rgba(247, 244, 235, 0.005));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease), border-radius 400ms var(--ease);
}

.phone-frame:hover,
.voice-card:hover,
.disclaimer-card:hover,
.closing-card:hover,
.beta-card:hover,
.pricing-card:hover {
  border-radius: 45px 38px 42px 35px / 35px 42px 38px 45px;
  border-color: rgba(223, 178, 108, 0.35);
}

/* Simulated App Screen inside Phone Mockup */
.interactive-phone {
  padding: 10px !important;
  cursor: default;
}

.simulated-app-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: radial-gradient(circle at 50% 30%, #15120d 0%, #070605 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px 16px 20px;
  color: #fff;
  border: 1px solid rgba(223, 178, 108, 0.08);
}

.app-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  opacity: 0.45;
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.app-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-status-icons svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-bottom: 1rem;
}

.app-logo-area {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-subtitle {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.4;
  font-family: var(--sans);
  font-weight: 700;
}

.app-title {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin: 0;
}

.app-orb-container {
  position: relative;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.2rem 0;
}

.app-morphing-orb {
  width: 100%;
  height: 100%;
  cursor: pointer;
  filter: drop-shadow(0 0 24px rgba(223, 178, 108, 0.45));
  transition: transform 300ms var(--ease);
  z-index: 2;
}

.app-orb-container:hover .app-morphing-orb {
  transform: scale(1.06);
}

.app-orb-glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.35) 0%, transparent 70%);
  filter: blur(14px);
  animation: orbGlowFloat 6s ease-in-out infinite alternate;
  z-index: 1;
}

.app-orb-ripple,
.app-orb-ripple-two {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(161, 196, 253, 0.18);
  border-radius: 50%;
  animation: orbRipple 3.6s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.app-orb-ripple-two {
  animation-delay: 1.8s;
}

@keyframes orbGlowFloat {
  0% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0.95; }
}

@keyframes orbRipple {
  0% { transform: scale(0.7); opacity: 0.85; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes auraPulse {
  0% { transform: scale(0.88); opacity: 0.18; }
  100% { transform: scale(1.08); opacity: 0.35; }
}

.app-instructions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.app-prompt {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}

.app-subprompt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.35;
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
}

.phone-frame {
  position: relative;
  width: min(100%, 360px);
  margin: 0;
  padding: 10px;
  border-radius: 42px;
  border-color: rgba(255, 181, 71, 0.22);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.phone-frame figcaption {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  width: min(92%, 330px);
  transform: translateX(-50%);
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 181, 71, 0.22);
  border-radius: 18px;
  background: rgba(5, 6, 20, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.story-copy {
  max-width: 700px;
}

.story-copy p {
  margin-bottom: 1.1rem;
}

.manifesto-section,
.ritual-section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0;
  overflow: hidden;
}

.manifesto-section::before,
.ritual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 181, 71, 0.08), transparent 30rem),
    radial-gradient(circle at 84% 62%, rgba(139, 92, 246, 0.14), transparent 32rem);
}

.manifesto-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.manifesto-copy h2 {
  max-width: 930px;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

.manifesto-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 181, 71, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 20% 0%, rgba(255, 181, 71, 0.12), transparent 20rem);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.manifesto-panel p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.manifesto-marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.manifesto-marks span {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.8rem, 5vw, 4.8rem);
  text-align: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-color: rgba(255, 181, 71, 0.18);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms ease;
}

.feature-row:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 181, 71, 0.34);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36), 0 0 80px rgba(255, 181, 71, 0.055);
}

.core-card-grid,
.beta-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.3rem, 3vw, 2.1rem);
}

.beta-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.core-card,
.beta-card,
.walk-connection-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 181, 71, 0.13), transparent 18rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.core-card {
  min-height: 330px;
}

.core-card h3 {
  margin: 0 0 1rem;
  color: var(--navy-text);
}

.core-card span,
.abilities-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 181, 71, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-card p,
.walk-connection-card p,
.protected-shell p,
.abilities-shell p,
.trust-card li,
.safety-note {
  color: var(--ink-soft);
  line-height: 1.75;
}

.core-card p {
  color: var(--navy-soft);
  margin-bottom: 0;
}

.core-card span {
  border-color: rgba(180, 107, 18, 0.2);
  background: rgba(255, 181, 71, 0.1);
  color: #9b5a08;
}

.abilities-shell,
.protected-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.abilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-content: center;
}

.abilities-list span {
  margin: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
}

.protected-shell {
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
}

.protected-orb {
  width: min(58vw, 360px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 27%, rgba(255, 255, 255, 0.95) 0 7%, transparent 13%),
    radial-gradient(circle at 48% 44%, #78eaff, #00d4ff 23%, #8b5cf6 58%, #140d3d 100%);
  box-shadow:
    0 0 55px rgba(0, 212, 255, 0.44),
    0 0 140px rgba(139, 92, 246, 0.24),
    inset 0 0 52px rgba(255, 255, 255, 0.16);
}

.walk-connection-shell {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.9fr);
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.trust-card h3 {
  margin: 0 0 0.9rem;
  color: inherit;
}

.trust-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.trust-card li + li {
  margin-top: 0.55rem;
}

.section-light .trust-card li,
.section-light .safety-note {
  color: var(--navy-soft);
}

.safety-note,
.trust-card .text-link {
  grid-column: 1 / -1;
}

.safety-note {
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(17, 23, 53, 0.12);
}

.feature-row span {
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
}

.feature-row p,
.feature-row h3 {
  max-width: 840px;
}

.app-section {
  overflow: hidden;
}

.app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1), transparent 42rem);
}

.orb-universe {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  isolation: isolate;
}

.orb-universe::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 181, 71, 0.1), rgba(0, 212, 255, 0.08) 40%, transparent 68%);
  filter: blur(16px);
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 310px;
  height: 310px;
}

.orbit-two {
  width: 460px;
  height: 460px;
  border-color: rgba(255, 181, 71, 0.13);
}

.center-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.center-morphing-orb-svg {
  position: absolute;
  inset: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(223, 178, 108, 0.38)) drop-shadow(0 0 80px rgba(108, 86, 123, 0.22));
}

.center-orb span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.orb-node {
  position: absolute;
  width: clamp(82px, 9vw, 132px);
  height: clamp(82px, 9vw, 132px);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.16), inset 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.orb-node:hover,
.orb-node:focus-visible {
  transform: translate(-50%, -50%) scale(1.07);
  outline: none;
}

.node-soul { left: 25%; top: 25%; background: radial-gradient(circle at 30% 30%, #ffcb73, #8b5cf6 58%, #241052); }
.node-rest { left: 76%; top: 29%; background: radial-gradient(circle at 30% 30%, #aee9ff, #1e40af 58%, #0c1f54); }
.node-mood { left: 20%; top: 68%; background: radial-gradient(circle at 30% 30%, #ffd0de, #ff6b9d 58%, #5d1232); }
.node-journal { left: 77%; top: 72%; background: radial-gradient(circle at 30% 30%, #dcc6ff, #8b5cf6 58%, #2a145b); }
.node-music { left: 52%; top: 18%; background: radial-gradient(circle at 30% 30%, #9cf0ff, #00d4ff 50%, #102c64); }
.node-still { left: 48%; top: 84%; background: radial-gradient(circle at 30% 30%, #ffffff, #b8b0d4 58%, #4c466a); }

.app-copy {
  max-width: 620px;
}

.mini-screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

.mini-screen-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  transition: transform 260ms var(--ease);
}

.mini-screen-row img:hover {
  transform: translateY(-5px);
}

.ritual-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: center;
}

.ritual-copy {
  max-width: 620px;
}

.ritual-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.ritual-gallery {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: clamp(0.85rem, 2vw, 1.2rem);
}

.ritual-card {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.12), transparent 22rem),
    rgba(5, 6, 20, 0.72);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ritual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 6, 20, 0.34));
}

.ritual-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center center;
}

.ritual-card-tall {
  grid-row: 1 / span 2;
}

.ritual-card-tall img {
  aspect-ratio: 9 / 16;
  object-position: center center;
}

.voice-shell {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.voice-card {
  min-height: 430px;
  display: grid;
  place-items: center;
  gap: 1.4rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-color: rgba(17, 23, 53, 0.12);
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 212, 255, 0.16), transparent 18rem),
    linear-gradient(140deg, rgba(10, 14, 39, 0.12), rgba(255, 255, 255, 0.28));
}

.voice-button {
  width: 164px;
  height: 164px;
  border: 1px solid rgba(255, 181, 71, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, #fff 0 10%, transparent 14%),
    radial-gradient(circle at 42% 42%, #a8efff, var(--cyan) 28%, #7b61ff 58%, #191043 100%);
  box-shadow: 0 0 54px rgba(0, 212, 255, 0.42), 0 0 110px rgba(255, 181, 71, 0.16);
  cursor: pointer;
}

.voice-button.is-active {
  box-shadow: 0 0 70px rgba(105, 215, 143, 0.46), 0 0 120px rgba(255, 181, 71, 0.22);
}

.voice-wave-container {
  width: 100%;
  max-width: 320px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

#voice-canvas {
  width: 300px;
  height: 80px;
  display: block;
}

.voice-status {
  margin: 0;
  color: var(--navy-soft);
  text-align: center;
}

.founder-shell {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 28% 42%, rgba(255, 181, 71, 0.09), transparent 26rem);
}

.founder-photo {
  width: min(100%, 310px);
  margin: 0;
  padding: 0.6rem;
  border-radius: 50%;
  border-color: rgba(255, 181, 71, 0.28);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  border-bottom: 1px solid rgba(255, 181, 71, 0.48);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disclaimer-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-color: rgba(17, 23, 53, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.closing-card {
  max-width: 980px;
  padding: clamp(2.6rem, 7vw, 5rem);
  border-color: var(--line);
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 212, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035));
}

.closing-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  clip-path: circle(50%);
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.35));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  letter-spacing: 0.04em;
}

.site-footer p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.site-footer .footer-bottom {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.orb-tooltip {
  position: fixed;
  z-index: 60;
  max-width: 260px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 6, 20, 0.86);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  color: var(--ink);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.orb-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.orb-tooltip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--amber);
}

.orb-tooltip span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 110ms; }
.reveal-delay-2 { transition-delay: 220ms; }

/* Final luxury polish: keep critical content visible and give dense sections more breathing room. */
.ritual-section,
.abilities-section,
.beta-section {
  overflow: hidden;
}

.ritual-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 212, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 22% 72%, rgba(139, 92, 246, 0.14), transparent 30rem),
    linear-gradient(180deg, #050614 0%, #080b22 56%, #050614 100%);
}

.ritual-copy {
  padding-right: clamp(0rem, 2vw, 1.5rem);
}

.ritual-copy h2,
.abilities-section h2,
.beta-section h2 {
  max-width: 860px;
  margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
}

.ritual-copy p:not(.eyebrow),
.abilities-section .section-kicker p:not(.eyebrow),
.beta-section .section-head p {
  max-width: 760px;
  line-height: 1.9;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.ritual-gallery {
  align-items: stretch;
  padding: clamp(0.5rem, 1.5vw, 1rem);
  border: 1px solid rgba(255, 181, 71, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 212, 255, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.34);
}

.ritual-card {
  background:
    radial-gradient(circle at 50% 16%, rgba(139, 92, 246, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(10, 14, 39, 0.92), rgba(5, 6, 20, 0.86));
}

.core-card-grid {
  align-items: stretch;
}

.core-card {
  gap: 0.85rem;
  padding: clamp(2rem, 4vw, 2.8rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(17, 23, 53, 0.06);
  border-radius: var(--radius);
  box-shadow: 
    0 24px 60px rgba(17, 23, 53, 0.03), 
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.core-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 30px 80px rgba(17, 23, 53, 0.07), 
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.core-card h3 {
  max-width: 12ch;
}

.core-card p {
  max-width: 34ch;
}

.abilities-list {
  gap: 0.95rem;
}

.abilities-list span {
  min-height: 42px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 45px rgba(0, 0, 0, 0.16);
}

.beta-card {
  gap: 0.85rem;
  min-height: 340px;
  padding: clamp(1.8rem, 3.5vw, 2.55rem);
  border-color: rgba(255, 181, 71, 0.18);
}

.beta-card .button {
  margin-top: auto;
  align-self: flex-start;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.045); }
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.62); opacity: 0.64; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.7rem);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(5, 6, 20, 0.92);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .hero-shell,
  .split-shell,
  .manifesto-shell,
  .app-shell,
  .ritual-shell,
  .voice-shell,
  .founder-shell,
  .privacy-shell,
  .abilities-shell,
  .protected-shell,
  .walk-connection-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .phone-frame {
    width: min(100%, 330px);
  }

  .orb-universe {
    min-height: 480px;
  }

  .orbit-two {
    width: 390px;
    height: 390px;
  }

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

  .ritual-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .core-card-grid,
  .beta-card-grid {
    grid-template-columns: 1fr;
  }

  .protected-orb {
    width: min(72vw, 300px);
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero,
  .about-section,
  .features-section,
  .app-section,
  .voice-section,
  .founder-section,
  .privacy-section,
  .closing-section,
  .core-section,
  .abilities-section,
  .protected-section,
  .walk-connection-section,
  .beta-section {
    padding: 4.8rem 0;
  }

  .hero {
    padding-top: 8rem;
  }

  .nav-cta {
    padding-inline: 0.82rem;
  }

  .brand {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .button-row {
    align-items: stretch;
  }

  .button {
    flex: 1 1 220px;
  }

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

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

  .manifesto-marks {
    grid-template-columns: 1fr;
  }

  .feature-row span {
    font-size: 2rem;
  }

  .orb-universe {
    min-height: 390px;
  }

  .orbit-one {
    width: 230px;
    height: 230px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .center-orb {
    width: 130px;
    height: 130px;
  }

  .center-orb span {
    font-size: 1.45rem;
  }

  .orb-node {
    width: 72px;
    height: 72px;
    font-size: 0.78rem;
  }

  .mini-screen-row {
    gap: 0.5rem;
  }

  .voice-card {
    min-height: 360px;
  }

  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }
}

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

/* Homepage typography and mobile refinement */

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 12px;
  border: 1px solid rgba(201, 168, 255, 0.4);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(201, 168, 255, 0.14);
  letter-spacing: 0.15em;
}

.hero h1 {
  background: linear-gradient(135deg, #ffffff 20%, #ebdcb9 60%, #dfb26c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero-lede,
.hero-support {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
}

.hero-support {
  opacity: 0.72;
}

.hero-proof {
  color: #c9a8ff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #c9a8ff;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-proof span + span::before {
  content: "\00B7";
  margin-inline: 0 0.75rem;
  color: #f5a623;
}

@media (max-width: 980px) {
  .hero-shell {
    gap: 3.25rem;
  }

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

  .hero-visual {
    padding-bottom: 0.75rem;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.2), transparent 22rem),
      radial-gradient(circle at 92% 18%, rgba(0, 212, 255, 0.13), transparent 20rem),
      linear-gradient(180deg, var(--bg) 0%, #07091d 44%, var(--bg-deep) 100%);
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 0.58rem 0.68rem;
    border-color: rgba(255, 181, 71, 0.2);
    background: rgba(5, 6, 20, 0.84);
  }

  .site-header .brand small,
  .site-header > .nav-cta {
    display: none;
  }

  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.13em;
  }

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

  .menu-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
    border: 1px solid rgba(255, 181, 71, 0.18);
    background: rgba(255, 255, 255, 0.07);
  }

  .site-nav {
    top: calc(100% + 0.55rem);
    width: 100%;
    padding: 0.65rem;
    border-color: rgba(255, 181, 71, 0.22);
    background: rgba(5, 6, 20, 0.96);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .hero,
  .about-section,
  .features-section,
  .app-section,
  .voice-section,
  .founder-section,
  .privacy-section,
  .closing-section,
  .core-section,
  .abilities-section,
  .protected-section,
  .walk-connection-section,
  .beta-section {
    padding: 4.2rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7.25rem;
  }

  .hero-shell {
    gap: 2.35rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 1.05rem;
    padding: 5px 12px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: 11.2ch;
    margin-bottom: 1.05rem;
    font-size: clamp(3rem, 13.2vw, 3.55rem);
    line-height: 1.03;
  }

  .hero-lede {
    max-width: 34ch;
    margin-bottom: 0.82rem;
    font-size: 18px;
    line-height: 1.58;
  }

  .hero-support {
    max-width: 36ch;
    margin-bottom: 1.55rem;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0.92rem 1.1rem;
  }

  .hero-proof {
    gap: 0.38rem;
    margin-top: 1.1rem;
    font-size: 11px;
    line-height: 1.6;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .hero-proof span + span::before {
    content: none;
  }

  .phone-halo {
    width: min(84vw, 340px);
    opacity: 0.9;
  }

  .phone-frame {
    width: min(86vw, 310px);
    padding: 8px;
    border-radius: 34px;
  }

  .phone-frame img {
    border-radius: 26px;
  }

  .phone-frame figcaption {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 0.75rem;
    padding: 0.72rem 0.85rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    line-height: 1.06;
  }

  .story-copy,
  .app-copy,
  .founder-copy,
  .section-kicker,
  .section-head {
    max-width: 100%;
  }

  .story-copy p,
  .section-head p,
  .feature-row p,
  .app-copy p,
  .section-kicker p:not(.eyebrow),
  .founder-copy p,
  .disclaimer-card p,
  .closing-card p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .feature-row,
  .core-card,
  .beta-card,
  .disclaimer-card,
  .walk-connection-card,
  .voice-card,
  .closing-card {
    border-radius: 24px;
  }

  .feature-row {
    gap: 0.95rem;
    padding: 1.25rem;
  }

  .core-card {
    min-height: auto;
    padding: 1.35rem;
  }

  .app-shell,
  .voice-shell,
  .founder-shell,
  .privacy-shell,
  .protected-shell,
  .walk-connection-shell {
    gap: 2rem;
  }

  .orb-universe {
    min-height: 350px;
    margin-inline: -0.25rem;
  }

  .orbit-one {
    width: 220px;
    height: 220px;
  }

  .orbit-two {
    width: 292px;
    height: 292px;
  }

  .center-orb {
    width: 112px;
    height: 112px;
  }

  .center-orb span {
    font-size: 1.25rem;
  }

  .orb-node {
    width: 64px;
    height: 64px;
    font-size: 0.72rem;
  }

  .mini-screen-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .mini-screen-row img {
    border-radius: 18px;
  }

  .voice-card {
    min-height: 300px;
    padding: 1.4rem;
  }

  .ritual-shell {
    gap: 2rem;
  }

  .ritual-copy h2 {
    max-width: 9ch;
  }

  .ritual-copy p:not(.eyebrow) {
    max-width: 34ch;
  }

  .ritual-card {
    border-radius: 24px;
  }

  .founder-photo {
    width: min(100%, 320px);
    margin-inline: auto;
    border-radius: 26px;
  }

  .footer-links {
    gap: 0.55rem;
  }

  .footer-links a {
    min-height: 40px;
    padding: 0.62rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(2.9rem, 15vw, 3.75rem);
  }

  .hero-lede {
    font-size: 16.5px;
  }

  .hero-proof {
    display: grid;
    gap: 0.28rem;
  }

  .hero-proof span + span::before {
    content: none;
  }
}

/* Connected subpages: Privacy, Changelog, Walk With Me */

.policy-page,
.changelog-page,
.walk-page,
.support-page {
  background:
    radial-gradient(circle at 50% -12%, rgba(0, 212, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 86% 18%, rgba(139, 92, 246, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #07091d 48%, var(--bg-deep) 100%);
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5.8rem, 9vw, 8.5rem) 0;
  scroll-margin-top: 96px;
}

.dark-section {
  color: var(--ink);
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.6px);
  background-size: 180px 180px;
}

.brand small {
  display: block;
  margin-left: 0.25rem;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta,
.cta-primary,
.footer-contact-button,
.liquid-glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  background: var(--amber);
  color: #1a1005;
  font-weight: 850;
  box-shadow: 0 0 28px rgba(255, 181, 71, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.cta-primary:hover,
.footer-contact-button:hover,
.liquid-glass-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(255, 181, 71, 0.24);
}

.liquid-glass-button-soft,
.walk-secondary-link,
.text-link {
  color: var(--amber);
}

.liquid-glass-button-soft,
.walk-secondary-link {
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  box-shadow: none;
}

.liquid-glass-button-small {
  min-height: 38px;
  padding: 0.58rem 0.95rem;
  font-size: 0.82rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.35rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-hero,
.changelog-hero,
.walk-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding-top: 9rem;
  overflow: hidden;
}

.policy-hero-inner,
.changelog-hero-inner,
.walk-hero-inner {
  position: relative;
  z-index: 1;
}

.policy-hero h1,
.release-title,
.walk-hero h1 {
  max-width: 920px;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
}

.policy-subtitle,
.release-subtitle,
.walk-subtitle,
.walk-intro {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.7;
}

.policy-meta,
.release-card-label,
.walk-section-label,
.walk-post-meta,
.footer-official,
.footer-tagline {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-layout,
.release-hero-layout,
.walk-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.policy-summary,
.policy-content,
.release-intro-panel,
.release-orbit-card,
.privacy-release-card,
.walk-feature-card,
.walk-post-card,
.walk-youtube-card,
.walk-story-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.policy-summary,
.release-intro-panel,
.release-orbit-card,
.privacy-release-card,
.walk-post-card,
.walk-youtube-card,
.walk-story-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.policy-summary {
  position: sticky;
  top: 112px;
}

.policy-summary ul,
.release-timeline {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.policy-content {
  padding: clamp(1.5rem, 4vw, 2.6rem);
}

.policy-content section + section {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content p,
.release-story,
.release-disclaimer,
.walk-feature-copy p,
.walk-post-card p,
.walk-youtube-card p,
.footer-encourage,
.footer-copy {
  color: var(--ink-soft);
  line-height: 1.75;
}

.release-orb,
.walk-orb {
  width: 84px;
  height: 84px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, #fff 0 10%, transparent 14%),
    radial-gradient(circle at 42% 42%, #a8efff, var(--cyan) 28%, var(--violet) 58%, #191043 100%);
  box-shadow: 0 0 54px rgba(0, 212, 255, 0.34), 0 0 90px rgba(255, 181, 71, 0.13);
}

.changelog-band {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent);
}

.changelog-section-heading,
.walk-library-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.2rem, 5vw, 4rem);
  text-align: center;
}

.foundation-grid,
.walk-post-grid,
.walk-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.3rem);
}

.release-feature,
.timeline-item {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.release-feature-primary {
  border-top: 0;
}

.release-dash {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--amber);
}

.walk-feature-card {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  align-items: center;
}

.walk-feature-visual {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 42%, rgba(0, 212, 255, 0.16), rgba(139, 92, 246, 0.11) 45%, transparent 70%);
}

.walk-actions,
.walk-card-actions,
.walk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.walk-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-muted);
}

.walk-story-flow {
  display: grid;
  gap: 1rem;
}

.walk-story-panel {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
}

.walk-story-number {
  color: var(--amber);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.9;
}

.theme-toggle-button,
.gradient-dot {
  display: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr) minmax(220px, 0.45fr);
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 1.8rem;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-contact-title {
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-size: 1.8rem;
}

@media (max-width: 980px) {
  .policy-layout,
  .release-hero-layout,
  .walk-feature-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: relative;
    top: auto;
  }

  .foundation-grid,
  .walk-post-grid,
  .walk-flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 4.7rem 0;
  }

  .policy-hero,
  .changelog-hero,
  .walk-hero {
    padding-top: 8rem;
  }

  .policy-hero h1,
  .release-title,
  .walk-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .walk-story-panel {
    grid-template-columns: 1fr;
  }
}

/* Clean subpage system */

.subpage .site-header {
  grid-template-columns: auto 1fr auto;
}

.subpage-hero {
  min-height: 70svh;
  display: grid;
  align-items: end;
  padding: 9rem 0 clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.subpage-hero-inner {
  max-width: 880px;
}

.subpage-hero h1 {
  max-width: 940px;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 8.5vw, 8rem);
  line-height: 0.88;
}

.subpage-hero p:not(.eyebrow):not(.card-meta) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.subpage-section {
  padding: clamp(4.8rem, 8vw, 7.5rem) 0;
}

.compact-section {
  padding-top: 0;
}

.subpage-heading {
  max-width: 780px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.subpage-heading.center {
  margin-inline: auto;
  text-align: center;
}

.clean-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.clean-card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clean-card,
.clean-list-item,
.clean-cta,
.privacy-document {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.clean-card {
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.clean-card p,
.clean-list-item p,
.clean-cta p,
.privacy-document p,
.clean-bullets {
  color: var(--ink-soft);
  line-height: 1.75;
}

.card-meta {
  margin-bottom: 1rem;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clean-list {
  display: grid;
  gap: 0.9rem;
}

.clean-list-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.clean-list-item span {
  color: var(--amber);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
}

.clean-cta {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.clean-cta .release-orb {
  margin: 0;
}

.privacy-clean-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.privacy-clean-layout > .clean-card {
  position: sticky;
  top: 112px;
}

.clean-bullets {
  margin: 0;
  padding-left: 1.1rem;
}

.clean-bullets li + li {
  margin-top: 0.8rem;
}

.privacy-document {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.privacy-document section + section {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-document h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.privacy-document a {
  color: var(--amber);
  border-bottom: 1px solid rgba(255, 181, 71, 0.38);
}

.subpage .footer-inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.subpage .footer-nav {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .subpage .site-header {
    grid-template-columns: auto auto;
  }

  .subpage .site-nav {
    display: none;
  }

  .subpage .header-cta {
    justify-self: end;
  }

  .clean-card-grid,
  .clean-card-grid.two-up,
  .privacy-clean-layout,
  .clean-cta,
  .subpage .footer-inner {
    grid-template-columns: 1fr;
  }

  .privacy-clean-layout > .clean-card {
    position: relative;
    top: auto;
  }

  .subpage .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .subpage .site-header {
    width: min(calc(100% - 28px), var(--max));
    padding: 0.62rem 0.7rem;
  }

  .subpage .brand {
    font-size: 1rem;
  }

  .subpage .brand small {
    display: none;
  }

  .subpage .header-cta {
    min-height: 38px;
    padding: 0.58rem 0.9rem;
    font-size: 0.82rem;
  }

  .subpage-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .clean-list-item {
    grid-template-columns: 1fr;
  }
}

/* Legal and founder pages */
.legal-page {
  min-height: 100svh;
  padding: clamp(7.5rem, 12vw, 10rem) 20px 64px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 181, 71, 0.18), transparent 28rem),
    linear-gradient(180deg, #f7f0df 0%, #efe2c6 100%);
  color: var(--navy-text);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(17, 23, 53, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 36px 120px rgba(17, 23, 53, 0.14);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--navy-text);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy-text);
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  margin: 1rem 0 1.25rem;
}

.legal-content li + li {
  margin-top: 0.5rem;
}

.legal-content a {
  color: #8b530c;
  border-bottom: 1px solid rgba(139, 83, 12, 0.36);
}

.legal-content .eyebrow,
.legal-content .card-meta {
  color: #9b5a08;
}

.founder-story-page {
  min-height: 100svh;
  padding: clamp(7.5rem, 12vw, 10rem) 20px clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 50% 8%, rgba(139, 92, 246, 0.22), transparent 28rem),
    radial-gradient(circle at 50% 34%, rgba(0, 212, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #080b22 0%, #050614 100%);
}

.founder-story-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.founder-portrait-center {
  width: min(62vw, 248px);
  aspect-ratio: 1;
  margin: 1.5rem auto clamp(2rem, 5vw, 3rem);
  padding: 8px;
  border: 1px solid rgba(255, 181, 71, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 181, 71, 0.18), transparent 9rem),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 34px 110px rgba(0, 0, 0, 0.34),
    0 0 90px rgba(139, 92, 246, 0.24);
}

.founder-portrait-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
}

.founder-story-header {
  margin-bottom: clamp(2.1rem, 5vw, 3.4rem);
}

.founder-story-content h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  color: var(--ink);
}

.founder-subhead {
  max-width: none !important;
  margin: 0 auto !important;
  color: rgba(255, 181, 71, 0.88) !important;
  font-size: clamp(1rem, 1.8vw, 1.28rem) !important;
  line-height: 1.45 !important;
  text-align: center !important;
}

.founder-story-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 1.35rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  line-height: 1.9;
  text-align: left;
}

.founder-bio-section {
  margin-top: clamp(2.6rem, 6vw, 4.25rem);
  padding-top: clamp(2.2rem, 5vw, 3.4rem);
  border-top: 1px solid rgba(255, 181, 71, 0.16);
}

.founder-bio-section h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.02;
  text-align: left;
}

.founder-story-content .eyebrow {
  text-align: center;
}

.founder-signature {
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(255, 181, 71, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 181, 71, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.founder-signature p {
  margin: 0 !important;
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  line-height: 1.04 !important;
  text-align: center !important;
}

@media (max-width: 640px) {
  .legal-content {
    padding: 1.45rem;
    border-radius: 22px;
  }

  .founder-story-content p:not(.eyebrow) {
    text-align: left;
  }

  .founder-bio-section h2 {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .ritual-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.15rem 1rem 0.9rem 0;
    margin-right: -1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ritual-gallery::-webkit-scrollbar {
    display: none;
  }

  .ritual-card {
    flex: 0 0 min(78vw, 290px);
    min-height: 420px;
    scroll-snap-align: start;
  }

  .ritual-card-tall {
    grid-row: auto;
  }

  .ritual-card img,
  .ritual-card-tall img {
    aspect-ratio: auto;
  }
}

/* Founder editorial reset: precise, centered, readable */
.founder-page {
  background: #f7f0df;
  color: var(--navy-text);
}

.founder-page .site-header {
  background: rgba(5, 6, 20, 0.88);
}

.founder-story-page {
  min-height: 100svh;
  padding: clamp(7.25rem, 10vw, 9rem) 20px clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 181, 71, 0.16), transparent 26rem),
    linear-gradient(180deg, #f7f0df 0%, #efe2c6 100%);
}

.founder-story-content {
  width: min(100%, 720px);
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(17, 23, 53, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 36px 120px rgba(17, 23, 53, 0.14);
  text-align: left;
}

.founder-story-content .back-link,
.founder-story-content .eyebrow {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.founder-portrait-center {
  width: clamp(142px, 22vw, 188px);
  aspect-ratio: 1;
  margin: 1.25rem auto 2rem;
  padding: 6px;
  border: 1px solid rgba(180, 107, 18, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 22px 70px rgba(17, 23, 53, 0.18);
}

.founder-portrait-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
}

.founder-story-header {
  margin: 0 auto clamp(2.3rem, 5vw, 3.25rem);
  text-align: center;
}

.founder-story-content h1 {
  max-width: 620px;
  margin: 0 auto 0.75rem;
  color: var(--navy-text);
  font-size: clamp(2.45rem, 6vw, 4.4rem);
  line-height: 1;
  text-align: center;
}

.founder-subhead {
  max-width: 560px !important;
  margin: 0 auto !important;
  color: #8b530c !important;
  font-size: clamp(1rem, 2vw, 1.22rem) !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

.founder-story-content p:not(.eyebrow) {
  max-width: 100%;
  margin: 0 0 1.15rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.78;
  text-align: left;
}

.founder-bio-section {
  margin-top: 2.4rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(17, 23, 53, 0.12);
}

.founder-bio-section h2 {
  margin: 0 0 0.85rem;
  color: var(--navy-text);
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.founder-signature {
  margin: clamp(2.8rem, 6vw, 4rem) auto 0;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(180, 107, 18, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 181, 71, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 70px rgba(17, 23, 53, 0.1);
}

.founder-signature p {
  margin: 0 !important;
  color: var(--navy-text) !important;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.1rem) !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

@media (max-width: 640px) {
  .founder-story-content {
    padding: 1.45rem;
    border-radius: 22px;
  }

  .founder-story-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }
}

/* Organized subpage reading layout */
.subpage .site-header {
  width: min(calc(100% - 40px), 1120px);
}

.subpage-hero {
  min-height: auto;
  padding: 7.4rem 0 clamp(2.6rem, 4.8vw, 4.2rem);
}

.subpage-hero-inner {
  max-width: 820px;
}

.subpage-hero h1 {
  max-width: 780px;
  font-size: clamp(3.05rem, 6.4vw, 5.9rem);
  line-height: 0.94;
}

.subpage-hero p:not(.eyebrow):not(.card-meta) {
  max-width: 680px;
}

.subpage-section {
  padding: clamp(3.8rem, 6vw, 6rem) 0;
}

.privacy-clean-layout {
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.92fr);
  gap: clamp(1.4rem, 4vw, 3.6rem);
  max-width: 1100px;
}

.privacy-clean-layout > .clean-card {
  border-color: rgba(255, 181, 71, 0.24);
}

.privacy-document {
  max-width: 760px;
  justify-self: end;
}

.privacy-document section + section {
  margin-top: 1.45rem;
  padding-top: 1.45rem;
}

.privacy-document h2,
.clean-list-item h3,
.clean-card h3 {
  margin-top: 0;
}

.privacy-document p,
.clean-card p,
.clean-list-item p,
.clean-bullets {
  font-size: 0.98rem;
}

.clean-list {
  max-width: 940px;
}

.clean-list-item {
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  border-radius: 24px;
}

.clean-list-item span {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.clean-card-grid.two-up {
  max-width: 980px;
}

.subpage .footer-inner {
  max-width: 1100px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  row-gap: 1.25rem;
}

.subpage .footer-nav {
  align-content: start;
}

@media (max-width: 980px) {
  .privacy-clean-layout,
  .subpage .footer-inner {
    grid-template-columns: 1fr;
  }

  .privacy-document {
    max-width: none;
    justify-self: stretch;
  }

  .privacy-clean-layout > .clean-card {
    position: relative;
    top: auto;
  }

  .subpage .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    padding-top: 7.2rem;
    padding-bottom: 3rem;
  }

  .subpage-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .subpage-section {
    padding: 3.5rem 0;
  }

  .clean-list-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .clean-list-item span {
    font-size: 1.45rem;
  }

  .privacy-document,
  .clean-card,
  .clean-list-item {
    border-radius: 22px;
  }
}

/* Final phone-scale pass: reduce oversized mobile cards and controls without affecting desktop. */
@media (max-width: 640px) {
  .section-shell {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero,
  .about-section,
  .features-section,
  .app-section,
  .voice-section,
  .founder-section,
  .privacy-section,
  .closing-section,
  .core-section,
  .abilities-section,
  .protected-section,
  .walk-connection-section,
  .beta-section,
  .ritual-section {
    padding-block: 3.6rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0.78rem 1rem;
    font-size: 0.93rem;
  }

  .button-row {
    gap: 0.62rem;
  }

  .feature-list,
  .core-card-grid,
  .beta-card-grid {
    gap: 0.82rem;
  }

  .feature-row {
    min-height: 0;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 20px;
  }

  .feature-row span {
    font-size: 1.45rem;
  }

  .feature-row h3 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .feature-row p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .core-card,
  .beta-card,
  .walk-connection-card {
    min-height: 0;
    gap: 0.62rem;
    padding: 1.05rem;
    border-radius: 20px;
  }

  .core-card span,
  .abilities-list span {
    min-height: 30px;
    margin-bottom: 0.35rem;
    padding: 0.34rem 0.62rem;
    font-size: 0.64rem;
  }

  .core-card h3,
  .beta-card h3 {
    max-width: none;
    margin-bottom: 0.35rem;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .core-card p,
  .beta-card p,
  .walk-connection-card p {
    max-width: none;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .beta-card .button {
    width: 100%;
    align-self: stretch;
    margin-top: 0.65rem;
  }

  .voice-card {
    min-height: 260px;
    gap: 0.9rem;
    padding: 1.15rem;
    border-radius: 22px;
  }

  .voice-button {
    width: 118px;
    height: 118px;
  }

  .voice-wave {
    height: 44px;
    transform: scale(0.82);
  }

  .voice-status {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .disclaimer-card {
    gap: 1rem;
    padding: 1.05rem;
    border-radius: 20px;
  }

  .privacy-section .trust-card {
    grid-template-columns: 1fr;
    column-gap: 0.85rem;
    row-gap: 0.95rem;
  }

  .disclaimer-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.15rem;
  }

  .trust-card ul {
    padding-left: 1rem;
  }

  .trust-card li,
  .safety-note {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .trust-card li + li {
    margin-top: 0.32rem;
  }

  .safety-note {
    padding-top: 0.9rem;
  }

  .closing-card {
    padding: 1.6rem 1.05rem;
    border-radius: 22px;
  }

  .closing-card img {
    width: 68px;
    height: 68px;
    margin-bottom: 0.85rem;
    border-radius: 50%;
    clip-path: circle(50%);
    mix-blend-mode: screen;
  }

  .closing-card h2 {
    font-size: clamp(1.95rem, 9.8vw, 2.75rem);
    line-height: 1.02;
  }

  .closing-card p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .founder-photo {
    width: min(100%, 270px);
  }

  .orb-universe {
    min-height: 310px;
  }

  .orbit-one {
    width: 190px;
    height: 190px;
  }

  .orbit-two {
    width: 258px;
    height: 258px;
  }

  .center-orb {
    width: 96px;
    height: 96px;
  }

  .orb-node {
    width: 56px;
    height: 56px;
    font-size: 0.64rem;
  }

  .mini-screen-row img {
    max-height: 170px;
  }
}

@media (max-width: 480px) {
  .ritual-gallery {
    gap: 0.72rem;
    padding: 0.2rem 0.85rem 0.75rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ritual-card {
    flex: 0 0 min(70vw, 245px);
    min-height: 330px;
    max-height: 390px;
    border-radius: 20px;
  }

  .ritual-card img,
  .ritual-card-tall img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .phone-frame {
    width: min(78vw, 270px);
  }
}

/* Production mobile beta optimization: compact scale below tablet width only. */
@media (max-width: 768px) {
  html {
    padding-bottom: env(safe-area-inset-bottom);
  }

  body {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .skip-link {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    left: 0.75rem;
    z-index: 100;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    transform: none;
  }

  .skip-link:focus,
  .skip-link:focus-visible {
    width: auto;
    height: auto;
    min-height: 44px;
    padding: 0.72rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(255, 181, 71, 0.28);
  }

  .site-header {
    top: max(18px, env(safe-area-inset-top) + 6px);
    width: min(calc(100% - 24px), var(--max));
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.48rem;
    padding: 0.6rem 0.85rem;
  }

  .brand {
    gap: 0.42rem;
    font-size: clamp(0.98rem, 4.5vw, 1.18rem);
    letter-spacing: 0.11em;
  }

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

  .site-header .brand small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header > .nav-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 0.52rem 0.72rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero,
  .about-section,
  .features-section,
  .app-section,
  .voice-section,
  .founder-section,
  .privacy-section,
  .closing-section,
  .core-section,
  .abilities-section,
  .protected-section,
  .walk-connection-section,
  .beta-section,
  .pricing-section,
  .ritual-section {
    padding-block: clamp(2.6rem, 8vw, 3.4rem);
  }

  .hero {
    padding-top: 7.25rem;
  }

  .beta-section {
    padding-top: clamp(2.4rem, 7vw, 3.2rem);
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4.75rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.02;
  }

  h3,
  .beta-card h3,
  .core-card h3 {
    font-size: clamp(1.35rem, 6.5vw, 2rem);
    line-height: 1.08;
  }

  .hero-lede,
  .hero-support,
  .story-copy p,
  .section-head p,
  .feature-row p,
  .app-copy p,
  .section-kicker p:not(.eyebrow),
  .founder-copy p,
  .disclaimer-card p,
  .closing-card p,
  .beta-card p,
  .walk-connection-card p {
    font-size: clamp(0.92rem, 3.85vw, 1rem);
    line-height: 1.55;
  }

  .beta-card-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: none;
  }

  .core-card,
  .beta-card,
  .walk-connection-card,
  .feature-row,
  .disclaimer-card,
  .closing-card,
  .voice-card {
    padding: 24px;
    border-radius: 22px;
  }

  .beta-card {
    min-height: 0;
    gap: 0.65rem;
  }

  .beta-card .card-meta {
    margin-bottom: 0.25rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .beta-card h3 {
    margin-bottom: 0.3rem;
  }

  .beta-card p {
    margin-bottom: 0.45rem;
    line-height: 1.5;
  }

  .beta-card .button,
  .button-row .button {
    width: min(100%, 220px);
    max-width: 220px;
    min-width: 0;
    min-height: 46px;
    max-height: 52px;
    align-self: flex-start;
    flex: 0 0 auto;
    margin-top: 0.45rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .hero .button-row .button,
  .closing-card .button-row .button {
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  .button-row {
    align-items: flex-start;
  }

  .voice-button {
    width: clamp(132px, 46vw, 180px);
    height: clamp(132px, 46vw, 180px);
  }

  .protected-orb {
    width: clamp(180px, 54vw, 220px);
  }

  #beta .section-head p:not(.eyebrow) {
    max-width: 34ch;
    margin-bottom: 1.2rem;
    line-height: 1.55 !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header > .nav-cta {
    display: none;
  }

  .beta-card .button,
  .button-row .button {
    width: min(100%, 200px);
    max-width: 200px;
  }

  .hero .button-row .button,
  .closing-card .button-row .button {
    width: 100%;
    max-width: none;
  }
}

/* ==========================================================================
   Pricing Section & Subpage Styles (Added June 2026)
   ========================================================================== */

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.12), transparent 35rem),
    radial-gradient(circle at 10% 70%, rgba(223, 178, 108, 0.08), transparent 30rem),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.08), transparent 30rem);
}

.pricing-header {
  max-width: 800px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}

.pricing-positioning {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--amber);
  margin-top: 1rem;
  font-style: italic;
  font-weight: 400;
}

/* Pricing Toggle */
.pricing-toggle-container {
  display: none !important;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 200ms ease;
  cursor: pointer;
  user-select: none;
}

.toggle-label.active {
  color: var(--ink);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background 300ms ease, border-color 300ms ease;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--ink);
  border-radius: 50%;
  transition: transform 300ms var(--ease), background-color 300ms ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.toggle-checkbox:focus-visible + .toggle-switch {
  outline: 3px solid rgba(0, 212, 255, 0.8);
  outline-offset: 4px;
}

.toggle-checkbox:checked + .toggle-switch {
  background: rgba(223, 178, 108, 0.2);
  border-color: rgba(223, 178, 108, 0.5);
}

.toggle-checkbox:checked + .toggle-switch::after {
  transform: translateX(26px);
  background: var(--amber);
}

.toggle-discount-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(223, 178, 108, 0.12);
  border: 1px solid rgba(223, 178, 108, 0.22);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

/* Pricing Grid */
.pricing-grid {
  width: min(100%, 760px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
}

@media (max-width: 760px) {
  /* Site Header Safe Area adjustments */
  .site-header {
    top: max(18px, env(safe-area-inset-top) + 6px);
    width: min(calc(100% - 24px), var(--max));
    padding: 0.6rem 0.85rem;
  }

  .pricing-grid {
    width: min(100%, 420px);
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
    border-radius: 28px;
  }

  .pricing-card-header {
    margin-bottom: 1rem;
    min-height: auto;
  }

  .pricing-card-name {
    font-size: 1.8rem;
  }

  .pricing-card-desc {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .pricing-card-price-container {
    height: auto;
    margin-bottom: 1rem;
    gap: 0.25rem;
  }

  .pricing-card-price {
    font-size: 2.8rem;
  }

  .pricing-card-period {
    font-size: 0.86rem;
  }

  .pricing-card-price-subtext {
    margin-top: -0.8rem;
    margin-bottom: 1.25rem;
    font-size: 0.76rem;
    min-height: auto;
  }

  .pricing-card-features {
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .pricing-card-features li {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .pricing-badge {
    top: -12px;
    font-size: 0.64rem;
    padding: 0.35rem 1rem;
  }

  /* Centered Hero & Closing Contents */
  .hero-shell,
  .closing-card {
    text-align: center;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .button-row,
  .closing-card .button-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    margin-top: 1.75rem;
  }

  .hero .button-row .button,
  .closing-card .button-row .button {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
    text-align: center;
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Closing Section & Card breathing room */
  .closing-section {
    min-height: 92svh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .closing-card {
    margin-bottom: 3.5rem; /* Pushes footer far below fold */
    padding: 2.2rem 1.25rem;
  }

  /* Newsletter Signup Form Mobile layout */
  #newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin: 1.5rem auto 0;
  }

  #newsletter-form input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    text-align: center;
  }

  #newsletter-form button {
    width: 100%;
    min-height: 48px;
    font-size: 0.86rem;
    justify-content: center;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.8rem, 3vw, 2.5rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card.recommended {
  border-color: rgba(223, 178, 108, 0.35);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 35px 90px rgba(139, 92, 246, 0.18),
    0 0 50px rgba(0, 212, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-card.recommended:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 178, 108, 0.55);
  box-shadow:
    0 40px 100px rgba(139, 92, 246, 0.26),
    0 0 60px rgba(0, 212, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), #c59853);
  color: #03040a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(223, 178, 108, 0.25);
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-card-header {
  margin-bottom: 1.5rem;
  min-height: 110px;
}

.pricing-card-name {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
  line-height: 1;
}

.pricing-card-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.pricing-card-price-container {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.8rem;
  height: 4.8rem; /* prevents layout shift when numbers change */
}

.pricing-card-price {
  font-family: var(--display);
  font-size: clamp(3.2rem, 4.8vw, 4.6rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--ink);
}

.pricing-card-period {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.pricing-card-price-subtext {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: -1.2rem;
  margin-bottom: 1.5rem;
  min-height: 1.2rem;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex-grow: 1;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.pricing-card-features svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--amber);
}

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

/* Why Subscription Section */
.why-subscription-section {
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-subscription-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.why-subscription-copy {
  max-width: 620px;
}

.why-subscription-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.why-subscription-reasons {
  display: grid;
  gap: 2rem;
}

.why-reason-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.why-reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--amber);
}

.why-reason-icon svg {
  width: 20px;
  height: 20px;
}

.why-reason-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}

.why-reason-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* WebGL Shader Background (for dedicated page) */
#shader-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.pricing-page-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(3, 4, 10, 0.2), var(--bg-deep) 80%);
}

/* Media Queries for Pricing Components */
@media (max-width: 980px) {
  .pricing-card-header {
    min-height: auto;
  }

  .pricing-card.recommended {
    transform: none;
  }

  .pricing-card.recommended:hover {
    transform: translateY(-5px);
  }

  .why-subscription-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .why-reason-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .why-reason-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

/* ==========================================================================
   Clean Unified Footer System for Subpages
   ========================================================================== */
.footer-brand-column {
  max-width: 600px;
}

.footer-brand-column .footer-logo {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-brand-column .footer-tagline {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.footer-brand-column .footer-encourage {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.subpage .footer-inner {
  width: 100%;
  margin-inline: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: start;
}

.subpage .site-footer {
  display: block;
}

.subpage .footer-inner .footer-copy {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.subpage .footer-nav {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

@media (max-width: 980px) {
  .subpage .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .subpage .footer-nav {
    justify-content: flex-start;
  }
}

/* Light Section Contrast Enhancements */
.section-light h1 em,
.section-light h2 em,
.section-light h3 em {
  background: linear-gradient(135deg, var(--navy-text), #a27734) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

.section-light .eyebrow {
  color: #765522 !important;
}

.section-light .text-link {
  color: #765522 !important;
  border-bottom-color: rgba(162, 119, 52, 0.4) !important;
}

.section-light .text-link:hover {
  color: var(--navy-text) !important;
  border-bottom-color: var(--navy-text) !important;
}

/* ==========================================================================
   Lumora Amor Brand Link System (Added June 2026)
   ========================================================================== */

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-by {
  display: inline-flex;
  gap: 0.3rem;
  margin-left: 0.1rem;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  user-select: none;
}

.brand-by a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.brand-by a:hover {
  color: var(--amber);
}

.footer-brand-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand-by {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.footer-brand-by a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(248, 245, 236, 0.3);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-brand-by a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.footer-logo-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-logo-link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.footer-copy-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer-copy-link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* For light section footer copyright link */
.section-light .footer-copy-link {
  border-bottom-color: rgba(17, 23, 53, 0.2);
}

.section-light .footer-copy-link:hover {
  color: #a27734 !important;
  border-bottom-color: #a27734 !important;
}

/* ==========================================================================
   10-Card Features Grid Layout (Added for Launch Revamp)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

/* Base style for individual Feature Cards */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem;
  min-height: 250px;
  border: 1px solid rgba(223, 178, 108, 0.16);
  border-radius: 38px 45px 35px 42px / 42px 35px 45px 38px;
  background: linear-gradient(140deg, rgba(247, 244, 235, 0.03), rgba(247, 244, 235, 0.005));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease), border-radius 400ms var(--ease);
}

.feature-card > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.feature-card:hover {
  border-radius: 45px 38px 42px 35px / 35px 42px 38px 45px;
  border-color: rgba(223, 178, 108, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.36), 0 0 80px rgba(223, 178, 108, 0.045);
}

.feature-icon {
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
  color: var(--ink);
  line-height: 1.2;
}

.feature-card p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}

/* Custom positioning for the integrated Voice Wave Widget inside Card 2 */
.voice-widget-card {
  grid-column: span 1;
}

/* On wider screens, let the Voice Style card take 2 columns so the canvas wave has breathing room */
@media (min-width: 981px) {
  .voice-widget-card {
    grid-column: span 2;
  }
}

.voice-card-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(223, 178, 108, 0.08);
  border-radius: 24px;
  background: rgba(5, 6, 20, 0.4);
}

.voice-card-widget .voice-button {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(223, 178, 108, 0.4);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, #fff 0 10%, transparent 14%),
    radial-gradient(circle at 42% 42%, #a8efff, var(--cyan) 28%, #7b61ff 58%, #191043 100%);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), 0 0 60px rgba(223, 178, 108, 0.1);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.voice-card-widget .voice-button:hover {
  transform: scale(1.04);
}

.voice-card-widget .voice-button.is-active {
  box-shadow: 0 0 40px rgba(105, 215, 143, 0.35), 0 0 80px rgba(223, 178, 108, 0.15);
}

/* Premium paywall compliance styles */
.pricing-compliance-disclosure {
  max-width: 820px;
  margin: 3.5rem auto 0;
  text-align: center;
  font-family: var(--sans);
}

.pricing-compliance-disclosure p {
  font-size: 0.72rem;
  line-height: 1.6;
  opacity: 0.45;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.compliance-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.compliance-links .text-link {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.beta-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
  .button-row .button {
    min-width: 220px;
  }
}

/* Newsletter Form Global Styling */
#newsletter-form {
  display: flex;
  gap: 8px;
  transition: opacity 0.3s ease;
}

#newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 178, 108, 0.22);
  background: rgba(5, 6, 20, 0.6);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.86rem;
  outline: none;
}

#newsletter-form button {
  min-height: auto;
  padding: 0.6rem 1.2rem;
  font-size: 0.76rem;
}

/* Cinematic Launch Splash Screen Overlay (Option 1) */
.launch-splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000; /* Needs to cover the fixed header and everything else */
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: #0A0E27;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-sizing: border-box;
  opacity: 1;
  visibility: visible;
  transition: opacity 800ms var(--ease), visibility 800ms var(--ease);
  font-family: var(--sans);
}

.launch-splash-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Background Gradients & Mesh */
.splash-bg-gradients {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(16, 18, 55, 0.8) 0%, rgba(10, 14, 39, 1) 100%);
  pointer-events: none;
}

.splash-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, var(--ink) 1px, transparent 0);
  background-size: 28px 28px;
}

/* Central Floating Glowing Orb (Elyvia presence) */
.splash-orb-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.splash-orb-ambient {
  position: absolute;
  width: min(80vw, 480px);
  height: min(80vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 40%, rgba(236, 72, 153, 0.15) 70%, transparent 100%);
  filter: blur(80px);
  transform-origin: center;
  animation: splashAuraPulse 8s ease-in-out infinite alternate;
}

.splash-orb-core {
  position: absolute;
  width: min(60vw, 300px);
  height: min(60vw, 300px);
  opacity: 0.28;
  border-radius: 40% 60% 70% 30% / 40% 50% 65% 55%;
  background: linear-gradient(135deg, #ffffff 0%, #fbc2eb 30%, #a1c4fd 70%, #c2ffd8 100%);
  filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: splashOrbMorph 10s ease-in-out infinite alternate, rotateClockwise 60s linear infinite;
  mix-blend-mode: screen;
}

@keyframes splashAuraPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 0.95; }
}

@keyframes splashOrbMorph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 65% 55%; transform: translateY(-5px); }
  50% { border-radius: 60% 40% 50% 70% / 55% 45% 60% 40%; transform: translateY(5px) scale(1.02); }
  100% { border-radius: 50% 60% 45% 65% / 45% 55% 50% 60%; transform: translateY(-5px); }
}

/* Floating Elegant Shapes */
.splash-elegant-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  filter: blur(40px);
}

.splash-elegant-shape::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--shape-gradient);
  filter: blur(40px);
  animation: shapeFloat 15s ease-in-out infinite alternate;
}

@keyframes shapeFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(20px) rotate(4deg); }
}

.splash-elegant-shape.shape-1 {
  left: -10%; top: 10%; width: 40vw; height: 160px;
  --shape-gradient: linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(108, 86, 123, 0.1));
}
.splash-elegant-shape.shape-2 {
  right: -5%; top: 20%; width: 35vw; height: 140px;
  --shape-gradient: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(192, 108, 132, 0.08));
}
.splash-elegant-shape.shape-3 {
  left: 15%; bottom: 15%; width: 30vw; height: 120px;
  --shape-gradient: linear-gradient(to right, rgba(108, 86, 123, 0.1), rgba(236, 72, 153, 0.08));
}
.splash-elegant-shape.shape-4 {
  right: -10%; bottom: 10%; width: 45vw; height: 180px;
  --shape-gradient: linear-gradient(to right, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
}

/* Header & Footer Areas */
.splash-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.splash-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.splash-logo img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.splash-logo-by {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

.splash-logo-by a {
  transition: color 180ms ease;
}

.splash-logo-by a:hover {
  color: var(--amber);
}

.splash-footer {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  font-size: 0.74rem;
  color: var(--ink-muted);
}

@media (min-width: 768px) {
  .splash-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

.splash-footer-links {
  display: flex;
  gap: 1rem;
}

.splash-footer-links a {
  transition: color 180ms ease;
}

.splash-footer-links a:hover {
  color: var(--amber);
}

/* Content Main Section */
.splash-main {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.splash-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.splash-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--amber);
  animation: pulse 2s infinite alternate;
}

.splash-badge-text {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  font-family: var(--sans);
}

.splash-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.splash-headline em {
  font-style: normal;
  display: block;
  font-weight: 500;
  background: linear-gradient(135deg, var(--ink) 20%, #c06c84 50%, var(--amber) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(223, 178, 108, 0.05);
}

.splash-subheadline {
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.5vw, 1.16rem);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

/* Countdown Grid */
.splash-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.65rem, 2vw, 1.7rem);
  max-width: 580px;
  width: 100%;
  margin-bottom: 3.5rem;
  user-select: none;
}

.splash-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-countdown-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.splash-countdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin-top: 0.8rem;
}

/* Enter Site CTA Area */
.splash-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.splash-enter-btn {
  background: var(--ink);
  color: #0c0b08;
  font-weight: 800;
  border-radius: 999px;
  padding: 1.1rem 2.5rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 21;
  pointer-events: auto;
}

.splash-enter-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform 300ms var(--ease);
}

.splash-enter-btn:hover {
  transform: translateY(-2px);
  background-color: #ffffff;
  box-shadow: 0 16px 45px rgba(255, 255, 255, 0.15);
}

.splash-enter-btn:hover svg {
  transform: translateX(4px);
}

.splash-enter-btn:active {
  transform: translateY(0);
}

.splash-quote {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 280px;
  line-height: 1.5;
}

@media (max-width: 640px), (max-height: 760px) {
  .launch-splash-overlay {
    overflow-x: hidden;
    overflow-y: auto;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  }

  .splash-header {
    flex-shrink: 0;
  }

  .splash-main {
    flex: 0 0 auto;
    width: 100%;
    padding: 1.2rem 0;
  }

  .splash-badge {
    margin-bottom: 1rem;
  }

  .splash-headline {
    margin-bottom: 0.8rem;
  }

  .splash-subheadline {
    margin-bottom: 1.4rem;
  }

  .splash-countdown-grid {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .splash-countdown-num {
    border-radius: 14px;
    font-size: clamp(1.65rem, 10vw, 2.3rem);
  }

  .splash-countdown-label {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    margin-top: 0.45rem;
  }

  .splash-enter-btn {
    padding: 0.92rem 1.55rem;
  }

  .splash-footer {
    flex-shrink: 0;
    padding-top: 1rem;
  }
}

/* Disable body scroll and hide site layout when splash is active */
body.splash-active {
  overflow: hidden !important;
  height: 100vh !important;
}

body.splash-active .site-header,
body.splash-active #main,
body.splash-active .site-footer,
body.splash-active .skip-link {
  display: none !important;
}

/* If JavaScript is disabled, hide the overlay completely */
.no-js .launch-splash-overlay {
  display: none !important;
}
