:root {
  color-scheme: dark;
  --ink: #f5f8ff;
  --muted: #9daac2;
  --muted-strong: #c7d0e1;
  --navy-950: #020714;
  --navy-900: #041027;
  --navy-850: #071833;
  --navy-800: #0a1e3e;
  --cyan: #4be1e7;
  --violet: #8f7dff;
  --gold: #f4cf76;
  --line: rgba(204, 224, 255, 0.12);
  --line-strong: rgba(204, 224, 255, 0.2);
  --surface: rgba(9, 25, 52, 0.72);
  --surface-solid: #081a37;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shell: min(1200px, calc(100vw - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 4% 9%, rgba(35, 202, 220, 0.09), transparent 28rem),
    radial-gradient(circle at 94% 24%, rgba(115, 94, 255, 0.11), transparent 30rem),
    var(--navy-950);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 55%);
  content: "";
  pointer-events: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition:
    padding 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  padding: 11px 0;
  border-color: var(--line);
  background: rgba(2, 8, 20, 0.78);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px) saturate(140%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(111, 229, 242, 0.2);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(42, 213, 226, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.button-ghost,
.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: rgba(83, 222, 230, 0.48);
  background: rgba(69, 213, 224, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, #5de8eb, #7e82ff);
  box-shadow: 0 15px 40px rgba(66, 196, 226, 0.2);
  color: #031022;
}

.button-primary:hover {
  box-shadow: 0 18px 48px rgba(66, 196, 226, 0.32);
}

.button-light {
  background: var(--ink);
  color: #071630;
}

.hero {
  padding-top: 104px;
}

.eyebrow,
.section-kicker,
.video-tags {
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  min-height: clamp(590px, 72vh, 720px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(20px, 5vw, 76px);
  padding: clamp(70px, 9vw, 112px) clamp(30px, 7vw, 86px) 100px;
  border: 1px solid var(--line-strong);
  border-radius: clamp(20px, 3vw, 36px);
  background:
    radial-gradient(circle at 79% 34%, rgba(82, 97, 224, 0.18), transparent 19rem),
    radial-gradient(circle at 7% 94%, rgba(35, 202, 220, 0.1), transparent 23rem),
    linear-gradient(145deg, #06152e 0%, #07132b 52%, #0b1638 100%);
  box-shadow: var(--shadow);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.82), transparent 72%);
  content: "";
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.5;
}

.hero-orb-cyan {
  right: 23%;
  bottom: 9%;
  width: 170px;
  height: 170px;
  background: rgba(48, 217, 226, 0.16);
  animation: ambient-drift 9s ease-in-out infinite alternate;
}

.hero-orb-violet {
  top: 8%;
  right: 4%;
  width: 250px;
  height: 250px;
  background: rgba(111, 86, 255, 0.14);
  animation: ambient-drift 12s ease-in-out 1s infinite alternate-reverse;
}

.hero-moon {
  position: absolute;
  top: 14%;
  right: 12%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 34px rgba(244, 207, 118, 0.25);
  transform: rotate(-18deg);
}

.hero-moon::after {
  position: absolute;
  top: -8px;
  left: 14px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0a1634;
  content: "";
}

.hero-wave {
  position: absolute;
  right: -3%;
  bottom: -4%;
  left: -3%;
  width: 106%;
  height: 48%;
  opacity: 0.62;
}

.hero-wave path {
  fill: none;
  stroke: url(#wave-gradient);
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.hero-wave path:nth-child(2) {
  opacity: 0.42;
  stroke-width: 1.25;
}

.hero-wave path:nth-child(3) {
  opacity: 0.2;
  stroke-width: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-copy .eyebrow {
  margin-bottom: 20px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 7.4vw, 7.15rem);
  font-weight: 530;
  letter-spacing: -0.072em;
  line-height: 0.89;
  text-wrap: balance;
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 290px);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
}

.hero-mark img {
  width: 58%;
  height: 58%;
  border: 1px solid rgba(91, 227, 235, 0.28);
  border-radius: 50%;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(74, 218, 228, 0.12);
}

.hero-mark-ring {
  position: absolute;
  border: 1px solid rgba(103, 223, 234, 0.18);
  border-radius: 50%;
}

.hero-mark-ring-one {
  inset: 7%;
  border-right-color: rgba(151, 126, 255, 0.55);
  animation: orbit 20s linear infinite;
}

.hero-mark-ring-two {
  inset: 0;
  border-top-color: transparent;
  border-left-color: rgba(83, 224, 232, 0.42);
  transform: rotate(28deg);
}

.hero-mark::before {
  position: absolute;
  top: 14%;
  right: 14%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(244, 207, 118, 0.7);
  content: "";
}

.hero-mantra {
  position: absolute;
  right: clamp(30px, 7vw, 86px);
  bottom: 28px;
  left: clamp(30px, 7vw, 86px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #b9c8dc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-mantra i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ambient-drift {
  to {
    transform: translate3d(28px, -22px, 0) scale(1.1);
  }
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 36px 0 0;
  margin: 0;
  list-style: none;
}

.signal-row li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 28px;
  border-left: 1px solid var(--line);
}

.signal-row li:first-child {
  padding-left: 0;
  border-left: 0;
}

.signal-row strong {
  font-size: 1rem;
  font-weight: 650;
}

.signal-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding-top: clamp(100px, 13vw, 172px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: start;
  margin-top: 22px;
}

.display-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 5.2rem);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro-copy {
  max-width: 560px;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 20px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}

.section-heading .display-title {
  margin-top: 15px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

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

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(15, 39, 75, 0.72), rgba(4, 15, 34, 0.92));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  transition:
    transform 380ms var(--ease),
    border-color 380ms ease,
    box-shadow 380ms ease;
}

.video-card:hover {
  border-color: rgba(90, 218, 232, 0.28);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.26);
  transform: translateY(-5px);
}

.video-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.72fr);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-850);
}

.video-shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 7, 20, 0.58), transparent 48%);
  content: "";
  pointer-events: none;
}

.video-shell img,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-shell img {
  transition: transform 800ms var(--ease), filter 350ms ease;
}

.video-card:hover .video-shell img {
  transform: scale(1.035);
}

.video-shell.is-playing::after,
.video-shell.is-playing > img,
.video-shell.is-playing > .play-button,
.video-shell.is-playing > .duration,
.video-shell.is-playing > .featured-label,
.video-shell.is-playing > .new-label {
  display: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 66px;
  height: 66px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(245, 249, 255, 0.9);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  place-items: center;
  transform: translate(-50%, -50%);
  transition:
    transform 260ms var(--ease),
    background 260ms ease;
}

.play-button:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #06132d;
}

.duration,
.featured-label,
.new-label {
  position: absolute;
  z-index: 3;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(2, 8, 20, 0.68);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.duration {
  right: 14px;
  bottom: 14px;
}

.featured-label,
.new-label {
  top: 14px;
  left: 14px;
  border-color: rgba(80, 227, 232, 0.25);
  background: rgba(5, 28, 45, 0.75);
  color: #8bf4f4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-content {
  padding: 26px 28px 29px;
}

.video-card-featured .video-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.video-tags {
  margin-bottom: 12px;
  color: #73dbe2;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.video-content h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.video-content h3 a {
  transition: color 180ms ease;
}

.video-content h3 a:hover {
  color: var(--cyan);
}

.video-content > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.playlist-section {
  scroll-margin-top: 100px;
}

.playlist-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(105, 228, 236, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(130, 112, 255, 0.34), transparent 22rem),
    linear-gradient(135deg, #0b3860, #172758 64%, #291e5c);
}

.playlist-panel::before {
  position: absolute;
  right: 22%;
  bottom: -90px;
  width: 420px;
  height: 180px;
  border: 22px solid rgba(69, 223, 231, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.playlist-panel > * {
  position: relative;
  z-index: 1;
}

.playlist-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius-lg) - 8px);
  background: #06142c;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.34);
}

.playlist-player > img,
.playlist-player > iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.playlist-player > img {
  filter: saturate(0.82) brightness(0.72);
  transform: scale(1.02);
  transition: transform 900ms var(--ease), filter 300ms ease;
}

.playlist-player:hover > img {
  filter: saturate(0.95) brightness(0.78);
  transform: scale(1.055);
}

.playlist-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 15, 34, 0.36), rgba(10, 12, 41, 0.58));
  pointer-events: none;
}

.playlist-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  color: #07162f;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease), background 240ms ease;
  white-space: nowrap;
}

.playlist-play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}

.playlist-play-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  place-items: center;
}

.playlist-play-icon::after {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #06132d;
  content: "";
}

.playlist-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(2, 8, 20, 0.65);
  color: #d8e3f2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.playlist-player.is-playing > img,
.playlist-player.is-playing > .playlist-shade,
.playlist-player.is-playing > .playlist-play,
.playlist-player.is-playing > .playlist-badge {
  display: none;
}

.playlist-copy h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.9rem, 3.7vw, 3.4rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.playlist-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: #c3cde2;
}

.playlist-copy .button {
  margin-top: 28px;
}

.ritual-section {
  padding-bottom: clamp(100px, 13vw, 172px);
}

.ritual-section .display-title {
  margin-top: 16px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.ritual-card {
  min-height: 280px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.ritual-card:last-child {
  border-right: 0;
}

.ritual-card > span {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.ritual-card h3 {
  margin: 78px 0 10px;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.ritual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 120px);
  padding-bottom: clamp(110px, 13vw, 170px);
}

.faq-heading .display-title {
  margin-top: 15px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 550;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 240ms var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 670px;
  padding: 0 42px 28px 0;
  margin: -5px 0 0;
  color: var(--muted);
}

.faq-list details a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(1, 5, 14, 0.46);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  padding: 56px 0 48px;
}

.footer-grid > div:first-child > p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 34px;
  align-content: start;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  color: #74819a;
  font-size: 0.75rem;
}

.footer-credit a {
  color: var(--muted-strong);
}

.footer-credit a:hover {
  color: var(--cyan);
}

.not-found {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.not-found img {
  margin-bottom: 30px;
  border-radius: 50%;
  box-shadow: 0 20px 70px rgba(75, 225, 231, 0.18);
}

.not-found h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 1;
}

.not-found > p:not(.section-kicker) {
  margin: 0 0 28px;
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}

.js .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.js .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

.js .reveal[data-delay="3"] {
  transition-delay: 270ms;
}

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

@media (max-width: 920px) {
  .intro-grid,
  .section-heading,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .intro-grid,
  .section-heading,
  .faq-section {
    gap: 34px;
  }

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

  .video-card-featured .video-content {
    padding: 28px;
  }

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

  .ritual-card:nth-child(2) {
    border-right: 0;
  }

  .ritual-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .hero-stage {
    min-height: 620px;
    grid-template-columns: minmax(0, 1fr) 220px;
    padding-inline: clamp(28px, 6vw, 58px);
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 8.7vw, 5.5rem);
  }

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

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1200px);
    --radius-lg: 22px;
  }

  .site-header {
    padding: 12px 0;
    background: rgba(2, 8, 20, 0.7);
    backdrop-filter: blur(16px);
  }

  .brand span,
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 93px;
  }

  .hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 66px 23px 74px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
    font-size: 0.64rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 15vw, 4.35rem);
    line-height: 0.92;
  }

  .hero-lede {
    margin-top: 23px;
  }

  .hero-mark {
    width: 170px;
    grid-row: 1;
  }

  .hero-moon {
    top: 7%;
    right: 8%;
    width: 36px;
    height: 36px;
  }

  .hero-moon::after {
    top: -7px;
    left: 11px;
    width: 35px;
    height: 35px;
  }

  .hero-wave {
    bottom: -1%;
    height: 35%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-mantra {
    right: 22px;
    bottom: 24px;
    left: 22px;
    justify-content: center;
    gap: 8px;
    font-size: 0.57rem;
    letter-spacing: 0.12em;
  }

  .button {
    width: 100%;
  }

  .nav .button {
    width: auto;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 26px;
  }

  .signal-row li,
  .signal-row li:first-child {
    display: grid;
    grid-template-columns: 110px 1fr;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-top: 94px;
  }

  .display-title {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-card-featured {
    grid-column: auto;
  }

  .video-content,
  .video-card-featured .video-content {
    padding: 23px 22px 25px;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .playlist-panel {
    gap: 28px;
    padding: 31px 24px;
  }

  .playlist-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

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

  .ritual-card,
  .ritual-card:nth-child(2) {
    min-height: auto;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .ritual-card:first-child {
    border-top: 0;
  }

  .ritual-card h3 {
    margin-top: 38px;
  }

  .faq-section {
    padding-bottom: 95px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

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

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