:root {
  --bg: #f4eee5;
  --bg-deep: #1a1410;
  --surface: rgba(255, 250, 244, 0.68);
  --surface-strong: rgba(255, 247, 239, 0.88);
  --surface-dark: rgba(34, 24, 18, 0.72);
  --text: #231711;
  --text-soft: rgba(35, 23, 17, 0.76);
  --text-inverse: #f7f1eb;
  --line: rgba(93, 61, 41, 0.14);
  --accent: #d88d52;
  --accent-strong: #bf6f34;
  --accent-soft: rgba(216, 141, 82, 0.18);
  --sage: #77837c;
  --shadow-lg: 0 34px 80px rgba(42, 24, 13, 0.18);
  --shadow-md: 0 18px 44px rgba(42, 24, 13, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0f0b09;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 64px;
}

.background-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f7ede1 0%, #eadbca 36%, #dcc9b4 100%);
}

.background-vignette,
.background-glow,
.background-grain {
  position: absolute;
  inset: 0;
}

.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.03) brightness(1.02);
  pointer-events: none;
}

.background-vignette {
  background:
    linear-gradient(180deg, rgba(249, 241, 232, 0.2) 0%, rgba(244, 233, 220, 0.1) 20%, rgba(20, 13, 10, 0.1) 58%, rgba(16, 11, 9, 0.24) 100%),
    linear-gradient(90deg, rgba(24, 16, 12, 0.42) 0%, rgba(24, 16, 12, 0.24) 34%, rgba(24, 16, 12, 0.06) 58%, rgba(24, 16, 12, 0) 76%),
    radial-gradient(circle at 18% 38%, rgba(255, 246, 235, 0.18), transparent 34%),
    radial-gradient(circle at center, transparent 26%, rgba(26, 20, 16, 0.08) 70%, rgba(26, 20, 16, 0.18) 100%);
}

.background-glow {
  filter: blur(22px);
  transform: translate3d(0, 0, 0);
  animation: floatGlow 18s ease-in-out infinite;
}

.background-glow-one {
  left: -10%;
  top: -6%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 205, 0.42), rgba(224, 144, 79, 0.12) 42%, transparent 72%);
}

.background-glow-two {
  left: 56%;
  top: 10%;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 244, 0.3), rgba(122, 140, 129, 0.12) 44%, transparent 72%);
  animation-duration: 23s;
}

.background-glow-three {
  left: 28%;
  top: 62%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 131, 124, 0.1), rgba(92, 52, 27, 0.12) 40%, transparent 70%);
  animation-duration: 27s;
}

.background-grain {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 32px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(250, 244, 236, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brand-word,
.nav-cta,
.button,
.eyebrow,
.state-tag,
.feature-kicker,
.value-label,
.timeline-number,
.phone-label {
  letter-spacing: 0.01em;
}

.brand-word {
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-logo {
  display: block;
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.96rem;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-cta,
.button {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--text-inverse);
  box-shadow: 0 14px 28px rgba(17, 10, 7, 0.18);
}

.section,
.section-small {
  position: relative;
}

.section {
  padding: 64px 0;
}

.section-small {
  padding: 12px 0 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding-top: 40px;
  min-height: calc(100vh - 120px);
}

.hero-copy-shell {
  max-width: 720px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(251, 245, 238, 0.7), rgba(247, 238, 227, 0.56)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 70px rgba(45, 28, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.02;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 5.8vw, 5.45rem);
  font-weight: 600;
  line-height: 0.96;
}

h1 span {
  color: var(--accent-strong);
}

.hero-text,
.section-heading p,
.feature-card p,
.state-card p,
.timeline-step p,
.design-card p,
.waitlist-copy p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-copy h1,
.hero-copy .hero-text,
.hero-copy .hero-points,
.hero-copy .eyebrow {
  text-shadow: 0 2px 18px rgba(255, 246, 236, 0.12);
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.07rem;
}

.hero-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.hero-email {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(66, 44, 29, 0.12);
  border-radius: 18px;
  background: rgba(255, 251, 246, 0.88);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.hero-email::placeholder {
  color: rgba(35, 23, 17, 0.42);
}

.hero-subactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 14px;
}

.hero-capacity {
  color: rgba(36, 24, 18, 0.68);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-feedback {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #8f4c1e;
  font-size: 0.92rem;
}

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

.waitlist-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(249, 242, 234, 0.52);
  backdrop-filter: blur(12px);
  color: rgba(36, 24, 18, 0.82);
  font-size: 0.94rem;
  box-shadow: 0 14px 34px rgba(64, 39, 21, 0.08);
}

.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff0da, #d8894d 72%);
  box-shadow: 0 0 16px rgba(216, 137, 77, 0.34);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #df9359 0%, #bc6f38 100%);
  color: #fff8f1;
  box-shadow: 0 18px 40px rgba(190, 111, 52, 0.3);
}

.button-secondary {
  border-color: rgba(63, 42, 28, 0.12);
  background: rgba(255, 249, 242, 0.62);
  color: var(--text);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffebd1, #d88d52 70%);
  box-shadow: 0 0 18px rgba(216, 141, 82, 0.32);
}

.hero-signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.signal-item {
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  background: rgba(255, 249, 242, 0.56);
  box-shadow: 0 14px 30px rgba(62, 39, 21, 0.08);
}

.signal-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-item strong {
  display: block;
  color: rgba(35, 23, 17, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.orb-aura,
.orb-core,
.orb-core-inner,
.mini-orb,
.mini-orb-inner {
  border-radius: 999px;
}

.orb-aura {
  position: absolute;
  inset: auto;
  animation: drift 10s ease-in-out infinite;
}

.orb-aura-one {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216, 141, 82, 0.3), transparent 68%);
  filter: blur(12px);
}

.orb-aura-two {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(119, 131, 124, 0.18), transparent 70%);
  animation-duration: 13s;
}

.orb-core {
  position: absolute;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 244, 229, 0.94), rgba(255, 214, 170, 0.92) 28%, rgba(223, 145, 85, 0.96) 60%, rgba(103, 58, 28, 0.94) 100%);
  box-shadow:
    inset 0 -20px 28px rgba(95, 47, 16, 0.2),
    0 28px 64px rgba(144, 84, 41, 0.34),
    0 0 84px rgba(216, 141, 82, 0.24);
  animation: breathe 7.5s ease-in-out infinite;
}

.orb-core-inner {
  position: absolute;
  inset: 22px;
  background: radial-gradient(circle at 40% 35%, rgba(255, 250, 242, 0.92), rgba(255, 230, 196, 0.06) 58%, rgba(255, 255, 255, 0) 72%);
}

.phone-mock {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 34px;
  background: rgba(27, 20, 16, 0.76);
  color: var(--text-inverse);
  backdrop-filter: blur(20px);
  box-shadow: 0 34px 90px rgba(21, 15, 12, 0.34);
}

.phone-topline,
.phone-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
}

.phone-screen {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px 16px 28px;
}

.mini-orb {
  width: 124px;
  height: 124px;
  padding: 16px;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 245, 232, 0.92), rgba(255, 211, 164, 0.84) 34%, rgba(220, 136, 74, 0.92) 72%, rgba(64, 37, 20, 0.92) 100%);
  box-shadow:
    0 0 0 12px rgba(216, 141, 82, 0.08),
    0 18px 40px rgba(216, 141, 82, 0.18);
  animation: breathe 6s ease-in-out infinite;
}

.mini-orb-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 36%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 74%);
}

.mini-copy {
  margin: 0;
  font-size: 0.96rem;
  text-align: center;
  color: rgba(247, 241, 235, 0.84);
}

.breath-visual {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.breath-phase {
  font-size: 0.8rem;
  color: rgba(247, 241, 235, 0.58);
  opacity: 0.5;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.breath-phase {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breath-phase.is-active {
  color: rgba(255, 234, 208, 0.96);
  opacity: 1;
  transform: scale(1);
}

.breath-phase-top {
  margin-bottom: -2px;
}

.breath-phase-bottom {
  margin-top: 2px;
}

.breath-wave {
  position: relative;
  width: 160px;
  height: 220px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.breath-path {
  width: 160px;
  height: 220px;
  overflow: visible;
}

.breath-path path {
  stroke: rgba(247, 241, 235, 0.22);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(255, 228, 198, 0.12));
}

.breath-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe8ce, #e89a61);
  box-shadow: 0 0 20px rgba(216, 141, 82, 0.45);
  will-change: transform;
}

.phone-footer {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(247, 241, 235, 0.52);
  font-size: 0.74rem;
  text-transform: uppercase;
}

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

.value-item,
.feature-card,
.state-card,
.timeline-step,
.design-card,
.waitlist-section {
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-md);
}

.value-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.55);
  backdrop-filter: blur(10px);
}

.value-label,
.feature-kicker,
.state-tag,
.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
}

.value-item strong {
  display: block;
  margin-top: 12px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
}

.section-heading p {
  margin-top: 18px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 36px;
  background: rgba(248, 239, 229, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.experience-grid .section-heading {
  grid-column: 1 / -1;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 242, 0.72);
  backdrop-filter: blur(10px);
}

.feature-card h3,
.state-card h3,
.timeline-step h3,
.design-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.feature-card p,
.state-card p,
.timeline-step p,
.design-card p {
  margin-top: 14px;
}

.feature-large {
  grid-column: span 2;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(36, 25, 18, 0.96), rgba(61, 39, 26, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  color: var(--text-inverse);
}

.feature-large p {
  color: rgba(247, 241, 235, 0.74);
}

.states-section {
  padding-top: 48px;
  margin-top: 18px;
  padding-inline: 40px;
  padding-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 36px;
  background: rgba(247, 239, 228, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

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

.state-card {
  min-height: 176px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.66);
}

.state-card-accent {
  background:
    radial-gradient(circle at top right, rgba(216, 141, 82, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 249, 242, 0.78), rgba(250, 240, 227, 0.7));
}

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

.ritual-section {
  margin-top: 18px;
  padding-inline: 40px;
  padding-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(27, 20, 16, 0.88), rgba(39, 28, 21, 0.84));
  box-shadow: 0 30px 80px rgba(18, 11, 8, 0.28);
}

.ritual-section .section-heading h2,
.ritual-section .section-heading p {
  color: var(--text-inverse);
}

.timeline-step {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(34, 24, 18, 0.9);
  color: var(--text-inverse);
}

.timeline-step p {
  color: rgba(247, 241, 235, 0.72);
}

.design-panel {
  padding-top: 54px;
  margin-top: 18px;
  padding-inline: 40px;
  padding-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 36px;
  background: rgba(248, 239, 229, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

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

.design-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.76), rgba(255, 243, 231, 0.9));
}

.waitlist-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  margin-top: 12px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at right top, rgba(216, 141, 82, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(34, 24, 18, 0.96), rgba(53, 35, 24, 0.94));
  color: var(--text-inverse);
}

.waitlist-copy p {
  color: rgba(247, 241, 235, 0.74);
}

.waitlist-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.waitlist-form input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 249, 243, 0.08);
  color: var(--text-inverse);
}

.waitlist-form input::placeholder {
  color: rgba(247, 241, 235, 0.44);
}

.waitlist-form input:focus-visible,
.hero-email:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(255, 216, 176, 0.92);
  outline-offset: 3px;
}

.form-note,
.form-feedback {
  margin: 0;
  font-size: 0.92rem;
}

.form-note {
  color: rgba(247, 241, 235, 0.64);
}

.form-feedback {
  min-height: 1.4em;
  color: #ffd7b4;
}

.contact-note {
  margin: 2px 0 0;
  color: rgba(247, 241, 235, 0.62);
  font-size: 0.88rem;
}

.contact-note a {
  color: rgba(255, 223, 190, 0.92);
}

.button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
  box-shadow: none;
}

.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;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -22px, 0) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .hero,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .experience-grid,
  .state-grid,
  .design-columns,
  .ritual-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-signal-bar {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
  }

  .brand-logo {
    width: 138px;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    gap: 24px;
    padding-top: 10px;
  }

  .hero-copy-shell {
    padding: 24px 20px 22px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .hero-signup {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .value-strip,
  .experience-grid,
  .ritual-timeline,
  .design-columns {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 48px 0;
  }

  .experience-grid,
  .states-section,
  .ritual-section,
  .design-panel {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .waitlist-section {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
