:root {
  --ink: #f6ede7;
  --muted: #b9aaa9;
  --dim: #8f8181;
  --night: #110a0e;
  --night-2: #1a0f15;
  --night-3: #24141b;
  --wine: #321922;
  --copper: #e8b77e;
  --copper-strong: #f2c78e;
  --rose: #c47d88;
  --line: rgba(246, 237, 231, .12);
  --line-warm: rgba(232, 183, 126, .25);
  --glass: rgba(31, 18, 24, .72);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --shadow: 0 36px 100px rgba(0, 0, 0, .38);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(116, 55, 72, .22), transparent 38rem),
    var(--night);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

body.nav-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--copper);
  color: var(--night);
}

:focus-visible {
  outline: 2px solid var(--copper-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--night);
  transform: translateY(-150%);
}

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

.container,
.narrow {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 48px, 820px);
}

.section {
  padding: 128px 0;
}

.section-tight {
  padding-top: 48px;
}

.kicker,
.eyebrow,
.console-overline,
.article-tag {
  margin-bottom: 18px;
  color: var(--copper);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display,
.section-heading h2,
.ritual-title h2,
.listening-player h2,
.app-invite h2,
.page-hero h1 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.3vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

h1 em,
h2 em {
  color: var(--copper-strong);
  font-weight: 400;
}

.lead,
.section-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(17, 10, 14, .8);
  backdrop-filter: blur(22px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: .005em;
}

.brand span {
  white-space: nowrap;
}

.brand em {
  color: var(--copper);
  font-weight: 400;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 183, 126, .36);
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .32);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #d8ccca;
  font-size: .91rem;
}

.nav-panel > a:not(.nav-cta) {
  position: relative;
}

.nav-panel > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-panel > a:hover::after,
.nav-panel > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid var(--line-warm);
  border-radius: 999px;
  background: rgba(232, 183, 126, .08);
  color: var(--ink);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.nav-cta:hover {
  background: var(--copper);
  color: var(--night);
  transform: translateY(-1px);
}

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

.hero-v2 {
  position: relative;
  display: grid;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  padding: 76px 0 32px;
  isolation: isolate;
}

.hero-v2::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 10, 14, .18), rgba(17, 10, 14, .76)),
    radial-gradient(circle at 76% 43%, rgba(161, 88, 82, .18), transparent 30rem);
  content: "";
}

.hero-aurora {
  position: absolute;
  z-index: -1;
  top: 20%;
  right: -12%;
  width: min(65vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 25deg, rgba(232, 183, 126, .12), rgba(118, 49, 75, .18), transparent 35%, rgba(214, 120, 100, .13), rgba(232, 183, 126, .1));
  filter: blur(80px);
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  to { transform: translate3d(-5%, -4%, 0) rotate(12deg) scale(1.05); }
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .76fr);
  align-items: center;
  gap: clamp(56px, 8vw, 130px);
}

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

.hero-v2-copy h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.4vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}

.hero-v2-copy h1 em {
  display: block;
  color: var(--copper-strong);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: #c8babb;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 650;
  line-height: 1.1;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  background: var(--copper-strong);
  color: var(--night);
  box-shadow: 0 14px 40px rgba(232, 183, 126, .15);
}

.button-primary:hover {
  background: #ffdaa6;
}

.button-secondary {
  border-color: var(--line-warm);
  background: rgba(255, 255, 255, .025);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(232, 183, 126, .55);
  background: rgba(232, 183, 126, .08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--copper-strong);
  font-weight: 620;
}

.text-link:hover {
  color: #ffe0b2;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 21px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--dim);
  font-size: .78rem;
  list-style: none;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-row li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.hero-console {
  position: relative;
  width: min(100%, 470px);
  margin-inline: auto;
}

.console-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(232, 183, 126, .34);
  border-radius: 38px;
  background: rgba(31, 17, 23, .74);
  box-shadow: 0 55px 130px rgba(0, 0, 0, .56), inset 0 0 0 1px rgba(255, 255, 255, .025);
  backdrop-filter: blur(18px);
}

.console-cover {
  position: relative;
  aspect-ratio: 1.03;
  overflow: hidden;
}

.console-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 10, 14, .82));
  content: "";
}

.console-cover img {
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}

.hero-console:hover .console-cover img {
  transform: scale(1.035);
}

.console-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(17, 10, 14, .6);
  font-size: .74rem;
  backdrop-filter: blur(14px);
}

.console-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px 27px;
}

.console-overline {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: .66rem;
}

.console-info h2 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.console-info p {
  margin: 0;
  color: var(--dim);
  font-size: .83rem;
}

.round-play,
.audio-main-button {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--copper-strong);
  color: var(--night);
  cursor: pointer;
  box-shadow: 0 10px 36px rgba(232, 183, 126, .25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.round-play:hover,
.audio-main-button:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 42px rgba(232, 183, 126, .35);
}

.round-play svg,
.audio-main-button svg {
  width: 23px;
  height: 23px;
}

.icon-pause {
  display: none;
}

[data-audio-toggle].is-playing .icon-play {
  display: none;
}

[data-audio-toggle].is-playing .icon-pause {
  display: block;
}

.console-orbits {
  position: absolute;
  z-index: 0;
  inset: -14%;
  pointer-events: none;
}

.console-orbits i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 183, 126, .11);
  border-radius: 50%;
}

.console-orbits i:nth-child(2) {
  inset: 11%;
  transform: rotate(26deg);
}

.console-orbits i:nth-child(3) {
  inset: 23%;
  transform: rotate(-18deg);
}

.console-signal {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
  color: var(--dim);
}

.console-signal span {
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: var(--copper);
  transform-origin: center;
}

.audio-playing .console-signal span {
  animation: signal .75s ease-in-out infinite alternate;
}

.audio-playing .console-signal span:nth-child(2) { animation-delay: -.2s; }
.audio-playing .console-signal span:nth-child(3) { animation-delay: -.4s; }
.audio-playing .console-signal span:nth-child(4) { animation-delay: -.1s; }
.audio-playing .console-signal span:nth-child(5) { animation-delay: -.3s; }

@keyframes signal {
  to { transform: scaleY(2.2); }
}

.console-signal small {
  margin-left: 9px;
  font-size: .72rem;
}

.hero-scroll-note {
  align-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  color: var(--dim);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-scroll-note i {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.manifesto-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .015);
}

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

.manifesto-strip p {
  margin: 0;
  padding: 27px 34px;
  color: #cbbebc;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-style: italic;
  text-align: center;
}

.manifesto-strip p + p {
  border-left: 1px solid var(--line);
}

.mood-section {
  overflow: hidden;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.section-heading .title-wrap {
  max-width: 850px;
}

.section-heading h2 {
  font-size: clamp(3.3rem, 6.3vw, 7rem);
}

.section-heading .title-wrap > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.mood-hint {
  flex: 0 0 auto;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mood-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #170d12;
  box-shadow: var(--shadow);
  transition: --mood-accent .3s ease;
}

.mood-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
}

.mood-stage::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 10, 14, .08), rgba(17, 10, 14, .18) 38%, rgba(17, 10, 14, .92));
  content: "";
}

.mood-stage > img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: opacity .26s ease, transform .6s cubic-bezier(.22, 1, .36, 1), filter .26s ease;
}

.mood-explorer.is-switching .mood-stage > img {
  opacity: .35;
  filter: blur(8px);
  transform: scale(1.035);
}

.mood-glow {
  position: absolute;
  z-index: 2;
  inset: auto auto 8% 10%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mood-accent);
  filter: blur(110px);
  opacity: .22;
  transition: background .4s ease;
}

.mood-stage-copy {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 5vw, 64px);
  bottom: clamp(30px, 5vw, 58px);
  left: clamp(28px, 5vw, 64px);
}

.mood-stage-copy > span,
.mood-stage-copy > p:first-of-type {
  display: block;
  margin-bottom: 17px;
  color: rgba(246, 237, 231, .66);
  font-size: .73rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mood-stage-copy > p:first-of-type {
  margin-bottom: 7px;
}

.mood-stage-copy h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.mood-rule {
  width: 66px;
  height: 2px;
  margin-bottom: 17px;
  background: var(--mood-accent);
  transition: background .4s ease;
}

.mood-stage-copy > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #d7c9c6;
  font-size: 1rem;
}

.mood-options {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  border-left: 1px solid var(--line);
}

.mood-option {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr 40px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #b8aaa9;
  font-family: var(--serif);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}

.mood-option:last-child {
  border-bottom: 0;
}

.mood-option > span {
  color: var(--dim);
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .12em;
}

.mood-option > i {
  justify-self: end;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width .25s ease;
}

.mood-option:hover,
.mood-option.is-active {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--mood-accent) 11%, transparent));
  color: var(--ink);
}

.mood-option.is-active > i {
  width: 38px;
  background: var(--mood-accent);
}

.ritual-section {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .015), transparent),
    radial-gradient(circle at 20% 40%, rgba(149, 74, 80, .12), transparent 28rem);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(450px, 1.15fr);
  gap: clamp(70px, 10vw, 170px);
}

.ritual-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.ritual-title h2 {
  font-size: clamp(3.4rem, 5.7vw, 6.1rem);
}

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

.ritual-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.ritual-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.ritual-steps li > span {
  color: var(--copper);
  font-size: .72rem;
  letter-spacing: .13em;
}

.ritual-steps h3 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.ritual-steps p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
}

.listening-section {
  background: radial-gradient(circle at 80% 50%, rgba(87, 40, 54, .2), transparent 35rem);
}

.listening-card {
  display: grid;
  grid-template-columns: minmax(350px, .9fr) minmax(430px, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line-warm);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(53, 27, 36, .88), rgba(25, 14, 19, .94));
  box-shadow: var(--shadow);
}

.listening-art {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.listening-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 10, 14, .95));
  content: "";
}

.listening-art > img {
  width: 100%;
  height: 100%;
}

.listening-art > span {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 30px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(17, 10, 14, .58);
  font-size: .73rem;
  backdrop-filter: blur(14px);
}

.listening-quote {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  left: 36px;
  color: #efe3dc;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-style: italic;
  line-height: 1.24;
}

.listening-player {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}

.listening-player h2 {
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 6.3vw, 6.5rem);
}

.listening-summary {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.story-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-bottom: 38px;
  color: #d7c9c6;
  font-size: .8rem;
}

.story-byline span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.story-byline span + span::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 17px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0, 0, 0, .15);
}

.audio-main-button {
  width: 62px;
  height: 62px;
}

.audio-timeline {
  flex: 1;
  min-width: 0;
}

.audio-time-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: .75rem;
}

.audio-time-row strong {
  overflow: hidden;
  color: var(--ink);
  font-weight: 580;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-timeline input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 0;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(90deg, var(--copper) var(--audio-progress, 0%), rgba(255, 255, 255, .13) var(--audio-progress, 0%));
  cursor: pointer;
  appearance: none;
}

.audio-timeline input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid var(--night-2);
  border-radius: 50%;
  background: var(--copper-strong);
  box-shadow: 0 0 0 1px var(--copper-strong);
  appearance: none;
}

.audio-timeline input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 3px solid var(--night-2);
  border-radius: 50%;
  background: var(--copper-strong);
}

.audio-note {
  margin: 0 0 28px;
  color: var(--dim);
  font-size: .75rem;
}

.app-invite-section {
  padding-top: 20px;
}

.app-invite {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: clamp(44px, 7vw, 90px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 50%, rgba(232, 183, 126, .12), transparent 16rem),
    linear-gradient(135deg, rgba(49, 25, 34, .82), rgba(24, 14, 19, .9));
}

.app-invite-mark {
  position: relative;
  display: grid;
  place-items: center;
}

.app-invite-mark::before,
.app-invite-mark span {
  position: absolute;
  width: 150%;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 183, 126, .17);
  border-radius: 50%;
  content: "";
}

.app-invite-mark span {
  width: 195%;
  border-color: rgba(232, 183, 126, .08);
}

.app-invite-mark img {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  border: 1px solid var(--line-warm);
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .42);
}

.app-invite h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.7vw, 6.1rem);
}

.app-invite > div:last-child > p:not(.kicker) {
  max-width: 720px;
  margin-bottom: 29px;
  color: var(--muted);
}

.faq-section {
  padding-top: 80px;
}

.faq-section .display {
  margin-bottom: 50px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--copper);
  font-family: var(--sans);
  font-size: 1.5rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 28px;
  color: var(--muted);
}

/* Shared interior pages */
.page-hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 80% 40%, rgba(137, 62, 76, .18), transparent 32rem);
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -38vw;
  width: 65vw;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 183, 126, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(232, 183, 126, .025), 0 0 0 15vw rgba(232, 183, 126, .018);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 970px;
  margin-bottom: 30px;
}

.page-hero .lead {
  max-width: 720px;
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  gap: 12px;
  margin-bottom: 42px;
  color: var(--dim);
  font-size: .75rem;
}

.breadcrumbs span::before {
  margin-right: 12px;
  color: var(--copper);
  content: "/";
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 31px;
}

.meta-pill {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dim);
  font-size: .7rem;
}

.page-hero .article-meta {
  position: static;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

.store-panel,
.experience-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.phone-mockup {
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 11px;
  border: 1px solid rgba(232, 183, 126, .34);
  border-radius: 48px;
  background: #080508;
  box-shadow: 0 45px 110px rgba(0, 0, 0, .52);
}

.phone-screen {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 38px;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 30%, rgba(13, 8, 11, .94));
  content: "";
}

.phone-screen > img {
  width: 100%;
  height: 100%;
  position: absolute;
}

.phone-ui {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 35px;
  left: 28px;
  text-align: center;
}

.phone-ui small {
  color: var(--copper);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phone-ui h3 {
  margin: 10px 0 28px;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.phone-progress {
  position: relative;
  height: 2px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, .2);
}

.phone-progress::before {
  position: absolute;
  inset: 0 42% 0 0;
  background: var(--copper);
  content: "";
}

.phone-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.phone-controls span:nth-child(2) {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--copper-strong);
  color: var(--night);
}

.store-copy .display,
.experience-copy .display {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.5vw, 5.7rem);
}

.store-copy .section-lead,
.experience-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
}

.store-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: #d7c9c6;
  font-size: .82rem;
}

.store-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 6px rgba(232, 183, 126, .09);
  content: "";
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 28px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 192px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  color: #ded3d0;
}

.store-button svg {
  width: 27px;
  height: 27px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-size: .63rem;
  line-height: 1.2;
}

.store-button strong {
  font-size: .95rem;
  font-weight: 580;
}

.benefit-grid,
.article-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card,
.article-card,
.voice-card {
  position: relative;
  min-height: 310px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(52, 27, 36, .56), rgba(24, 14, 19, .82));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.article-card:hover,
.voice-card:hover {
  border-color: var(--line-warm);
  transform: translateY(-5px);
}

.benefit-card::before {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 46px;
  background: var(--copper);
  content: "";
}

.benefit-card h3,
.article-card h2,
.voice-card h2 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.benefit-card p,
.article-card p,
.voice-card p {
  color: var(--muted);
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.article-card .text-link {
  margin-top: auto;
}

.article-tag {
  display: block;
  margin-bottom: 50px;
}

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

.voice-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: clamp(42px, 6vw, 74px);
  background:
    radial-gradient(circle at 80% 15%, rgba(232, 183, 126, .12), transparent 17rem),
    linear-gradient(145deg, rgba(52, 27, 36, .66), rgba(24, 14, 19, .88));
}

.voice-card:nth-child(2) {
  background:
    radial-gradient(circle at 20% 15%, rgba(166, 91, 107, .14), transparent 17rem),
    linear-gradient(145deg, rgba(40, 24, 34, .74), rgba(22, 13, 18, .9));
}

.voice-card h2 {
  margin: auto 0 20px;
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.voice-card p:not(.kicker) {
  max-width: 490px;
}

.voice-card .actions {
  margin-top: 24px;
}

.sound-panel {
  min-height: 430px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 50%, rgba(178, 87, 99, .17), transparent 20rem), #160d12;
}

.sound-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 270px;
}

.sound-wave span {
  width: 3px;
  height: var(--wave);
  border-radius: 4px;
  background: linear-gradient(var(--copper), var(--rose));
  animation: breathe 2.4s var(--delay) ease-in-out infinite alternate;
}

@keyframes breathe {
  50% { transform: scaleY(.35); opacity: .5; }
}

.player-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.player-copy {
  display: flex;
  flex-direction: column;
}

.player-copy span {
  color: var(--dim);
  font-size: .78rem;
}

.play-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper-strong);
  color: var(--night);
}

.editorial-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: clamp(45px, 7vw, 84px);
  border: 1px solid var(--line-warm);
  border-radius: 34px;
  background: radial-gradient(circle at 80% 20%, rgba(232, 183, 126, .1), transparent 24rem), var(--night-2);
}

.editorial-cta h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
}

.editorial-cta p:not(.kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

/* Articles and legal pages */
.article-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
}

.article-meta,
.legal-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 6px;
  color: var(--dim);
  font-size: .79rem;
}

.article-meta > * {
  display: block;
  margin-bottom: 12px;
}

.article-meta strong {
  color: var(--ink);
}

.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.legal-toc a:hover {
  color: var(--copper);
}

.prose,
.legal-content {
  color: #c5b8b6;
  font-size: 1.02rem;
}

.prose h2,
.legal-content h2 {
  margin: 74px 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.prose h2:first-child,
.legal-content h2:first-child {
  margin-top: 0;
}

.prose h3,
.legal-content h3 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.prose p,
.prose ul,
.prose ol,
.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 22px;
}

.prose a,
.legal-content a {
  color: var(--copper-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose li + li,
.legal-content li + li {
  margin-top: 8px;
}

.quote-block,
.notice,
.warning {
  margin: 36px 0;
  padding: 27px 30px;
  border-left: 2px solid var(--copper);
  background: rgba(232, 183, 126, .055);
  color: #e3d7d2;
}

.quote-block {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.warning {
  border-color: var(--rose);
  background: rgba(196, 125, 136, .06);
}

.legal-table-wrap {
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-weight: 620;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  padding: 78px 0 34px;
  border-top: 1px solid var(--line);
  background: #0c070a;
}

.error-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 70px 24px;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 76, .2), transparent 31rem);
  isolation: isolate;
}

.error-content {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  text-align: center;
}

.error-content .brand {
  margin-bottom: 65px;
}

.error-content h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .88;
}

.error-content h1 em {
  color: var(--copper-strong);
}

.error-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.error-content .actions {
  justify-content: center;
}

.error-orbits {
  position: absolute;
  z-index: 0;
  width: min(80vw, 850px);
  aspect-ratio: 1;
}

.error-orbits i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 183, 126, .1);
  border-radius: 50%;
}

.error-orbits i:nth-child(2) { inset: 14%; }
.error-orbits i:nth-child(3) { inset: 29%; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(0, 1.2fr);
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--dim);
  font-size: .86rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  justify-self: end;
  width: min(100%, 470px);
  color: #c6b9b6;
  font-size: .86rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #75696a;
  font-size: .72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 1080px) {
  .hero-v2-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr);
    gap: 50px;
  }

  .hero-v2-copy h1 {
    font-size: clamp(4rem, 8.7vw, 7.5rem);
  }

  .mood-explorer {
    grid-template-columns: 1fr 330px;
  }

  .listening-card {
    grid-template-columns: .85fr 1.15fr;
  }

  .listening-player {
    padding: 50px;
  }
}

@media (max-width: 860px) {
  .container,
  .narrow {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    z-index: 60;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 38px 24px;
    background: rgba(17, 10, 14, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel > a {
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.8rem;
  }

  .nav-panel > a::after {
    display: none;
  }

  .nav-panel .nav-cta {
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--copper-strong);
    color: var(--night);
    font-family: var(--sans);
    font-size: .95rem;
    text-align: center;
  }

  .hero-v2 {
    padding-top: 58px;
  }

  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-v2-copy {
    max-width: 680px;
  }

  .hero-v2-copy h1 {
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .hero-console {
    width: min(100%, 480px);
  }

  .manifesto-strip .container {
    width: 100%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .mood-explorer {
    grid-template-columns: 1fr;
  }

  .mood-stage {
    min-height: 570px;
  }

  .mood-options {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 76px);
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .mood-option {
    grid-template-columns: 28px 1fr;
    padding: 0 20px;
    border-right: 1px solid var(--line);
    font-size: 1rem;
  }

  .mood-option > i {
    display: none;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ritual-title {
    position: static;
  }

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

  .listening-art {
    min-height: 560px;
  }

  .app-invite {
    grid-template-columns: 145px 1fr;
    gap: 50px;
  }

  .app-invite-mark img {
    width: 125px;
    height: 125px;
    border-radius: 28px;
  }

  .store-panel,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

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

  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-meta,
  .legal-toc {
    position: static;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }

  .editorial-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

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

  body {
    font-size: 15px;
  }

  .container,
  .narrow {
    width: min(100% - 30px, 560px);
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    height: 70px;
  }

  .nav-panel {
    top: 70px;
  }

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

  .hero-v2 {
    min-height: auto;
    padding: 46px 0 28px;
  }

  .hero-v2-grid {
    gap: 58px;
  }

  .hero-v2-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3.75rem, 18.2vw, 5.4rem);
    line-height: .89;
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

  .trust-row {
    gap: 7px 14px;
  }

  .console-shell {
    border-radius: 28px;
  }

  .console-cover {
    aspect-ratio: 1.08;
  }

  .console-info {
    gap: 15px;
    padding: 20px;
  }

  .round-play {
    width: 52px;
    height: 52px;
  }

  .console-badge {
    top: 16px;
    left: 16px;
  }

  .console-signal small {
    font-size: .66rem;
  }

  .hero-scroll-note {
    display: none;
  }

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

  .manifesto-strip p {
    padding: 16px 20px;
  }

  .manifesto-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading h2,
  .ritual-title h2,
  .display,
  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .mood-hint {
    display: none;
  }

  .mood-explorer {
    border-radius: 24px;
  }

  .mood-stage {
    min-height: 460px;
  }

  .mood-stage-copy {
    right: 24px;
    bottom: 27px;
    left: 24px;
  }

  .mood-stage-copy h3 {
    font-size: 2.85rem;
  }

  .mood-options {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 63px);
  }

  .mood-option {
    border-right: 0;
    font-size: 1.05rem;
  }

  .ritual-steps li {
    grid-template-columns: 45px 1fr;
    gap: 11px;
    padding: 31px 0;
  }

  .listening-card {
    border-radius: 28px;
  }

  .listening-art {
    min-height: 430px;
  }

  .listening-quote {
    right: 24px;
    bottom: 25px;
    left: 24px;
    font-size: 1.35rem;
  }

  .listening-player {
    padding: 38px 24px;
  }

  .listening-player h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .audio-controls {
    gap: 15px;
    padding: 16px;
  }

  .audio-main-button {
    width: 54px;
    height: 54px;
  }

  .audio-time-row {
    gap: 8px;
  }

  .audio-time-row strong {
    max-width: 120px;
  }

  .app-invite {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 48px 24px;
    border-radius: 28px;
  }

  .app-invite-mark {
    width: 120px;
    margin-inline: auto;
  }

  .app-invite h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

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

  .page-hero {
    padding: 60px 0 65px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

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

  .phone-screen {
    min-height: 570px;
  }

  .store-buttons,
  .store-button {
    width: 100%;
  }

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

  .voice-card {
    min-height: 400px;
    padding: 35px 26px;
  }

  .sound-panel {
    min-height: 350px;
    padding: 26px 18px;
  }

  .sound-wave {
    min-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
