:root {
  --rise-orange: #f26f3f;
  --ember-orange: #d95628;
  --deep-agora: #102f3a;
  --night-navy: #132b43;
  --rise-blue: #2f6edb;
  --sky-blue: #69a7f2;
  --rise-violet: #7456c7;
  --sun-gold: #e8ad35;
  --growth-green: #23806d;
  --warm-canvas: #fbf9f5;
  --white: #ffffff;
  --ink: #142f3b;
  --muted: #61767d;
  --line: #dde3e0;
  --blue-wash: #eef5fd;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", Inter, Aptos, ui-sans-serif, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, .75, .25, 1);
  --shadow-blue: 0 34px 90px rgba(19, 43, 67, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--warm-canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(47, 110, 219, .42);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--night-navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.page-progress {
  position: fixed;
  z-index: 600;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.page-progress i {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--rise-orange), var(--rise-blue));
  will-change: transform;
}

.content-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section-index,
.overline {
  margin: 0;
  color: var(--rise-orange);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(251, 249, 245, .72);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  transition: height .35s var(--ease-out), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  height: 68px;
  border-color: rgba(19, 43, 67, .08);
  background: rgba(251, 249, 245, .92);
  box-shadow: 0 12px 36px rgba(19, 43, 67, .055);
}

.nav-shell {
  width: min(1220px, calc(100% - 48px));
  height: 100%;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.brand-link {
  width: 150px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 44px);
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: #65787d;
  font-size: 13px;
  font-weight: 620;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--rise-blue);
  transition: left .35s var(--ease-out), right .35s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--night-navy);
}

.desktop-nav a.active::after {
  left: 0;
  right: 0;
}

.nav-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid #d7dfdc;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--night-navy);
  font-size: 12px;
  font-weight: 720;
  transition: transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease;
}

.nav-status span,
.coming-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rise-orange);
  box-shadow: 0 0 0 5px rgba(242,111,63,.11);
}

.nav-status:hover {
  transform: translateY(-2px);
  border-color: #bfcac7;
  box-shadow: 0 9px 20px rgba(19,43,67,.08);
}

.menu-button,
.mobile-nav {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  align-items: center;
  padding: 132px 0 100px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.65), transparent 52%),
    var(--warm-canvas);
}

.hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -180px;
  width: 55vw;
  height: 330px;
  border-radius: 50%;
  background: rgba(105,167,242,.09);
  filter: blur(60px);
}

.hero-wash {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.wash-blue {
  top: -180px;
  right: -80px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(105,167,242,.22), rgba(47,110,219,.07) 45%, transparent 70%);
}

.wash-orange {
  left: -220px;
  bottom: -280px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(242,111,63,.14), transparent 68%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(54px, 6vw, 88px);
  margin-inline: auto;
}

.hero-copy {
  padding-bottom: 24px;
}

.hero-overline {
  margin-bottom: 22px;
}

.hero-title {
  margin: 0;
  color: var(--night-navy);
  font-size: clamp(56px, 5.45vw, 78px);
  font-weight: 710;
  letter-spacing: -.058em;
  line-height: .99;
}

.hero-title > span {
  display: block;
  overflow: hidden;
  padding: 0 .04em .08em 0;
}

.hero-title i {
  display: block;
  font-style: normal;
}

.js .hero-title i {
  transform: translateY(108%);
  transition: transform 1s var(--ease-out);
}

.js .hero-title > span:nth-child(2) i {
  transition-delay: .12s;
}

body.is-ready .hero-title i {
  transform: translateY(0);
}

.hero-lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: #526a72;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 33px;
}

.primary-action {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--rise-orange);
  color: white;
  box-shadow: 0 16px 32px rgba(242,111,63,.21);
  font-size: 14px;
  font-weight: 750;
  transition: transform .25s var(--ease-out), background .25s ease, box-shadow .25s ease;
}

.primary-action svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease-out);
}

.primary-action:hover {
  transform: translateY(-3px);
  background: var(--ember-orange);
  box-shadow: 0 21px 39px rgba(217,86,40,.27);
}

.primary-action:hover svg {
  transform: translateX(4px);
}

.quiet-action {
  padding: 10px 0;
  border-bottom: 1px solid #bcc8c7;
  color: var(--night-navy);
  font-size: 14px;
  font-weight: 650;
  transition: border-color .2s ease, color .2s ease;
}

.quiet-action:hover {
  border-color: var(--rise-blue);
  color: var(--rise-blue);
}

.hero-footnote {
  max-width: 430px;
  margin: 30px 0 0;
  color: #7b8c90;
  font-size: 12px;
}

.hero-product {
  position: relative;
}

.blue-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 52px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 82% 14%, rgba(105,167,242,.42), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(35,128,109,.25), transparent 33%),
    linear-gradient(145deg, #0d2b3a, #153b60 54%, #2f4f87);
  box-shadow: var(--shadow-blue);
  isolation: isolate;
  transform: translateY(var(--hero-stage-shift, 0)) scale(var(--hero-stage-scale, 1));
  transform-origin: center top;
  will-change: transform;
}

.blue-stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 29px;
  pointer-events: none;
}

.stage-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .55;
  pointer-events: none;
}

.stage-light-one {
  top: -100px;
  right: -70px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(105,167,242,.35);
  box-shadow: 0 0 0 60px rgba(105,167,242,.035), 0 0 0 120px rgba(105,167,242,.018);
}

.stage-light-two {
  left: -120px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  background: rgba(35,128,109,.13);
}

.day-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 27px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 38px 75px rgba(4,17,28,.28);
  color: var(--ink);
}

.day-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.day-card-header span {
  color: #809094;
  font-size: 11px;
  font-weight: 650;
}

.day-card-header h2 {
  margin: 4px 0 0;
  color: var(--night-navy);
  font-size: 21px;
  letter-spacing: -.025em;
}

.day-card-header img {
  width: 34px;
}

.intention-block {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #dfe9f5;
  border-radius: 18px;
  background: linear-gradient(135deg, #edf5ff, #f5f0fb);
}

.intention-block > span {
  color: var(--rise-blue);
  font-size: 11px;
  font-weight: 760;
}

.intention-block > p {
  margin: 7px 0 13px;
  color: var(--night-navy);
  font-size: 16px;
  font-weight: 650;
}

.intention-block button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rise-violet);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.intention-block button i {
  width: 14px;
  height: 14px;
  display: block;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: background .25s ease, box-shadow .25s ease;
}

.intention-block button.held i {
  border-color: var(--growth-green);
  background: var(--growth-green);
  box-shadow: inset 0 0 0 3px #edf5ff;
}

.today-path {
  margin-top: 19px;
}

.path-heading {
  display: flex;
  justify-content: space-between;
  margin: 0 3px 8px;
}

.path-heading span,
.path-heading strong {
  font-size: 11px;
}

.path-heading span {
  color: #778b90;
  font-weight: 700;
}

.path-heading strong {
  color: var(--growth-green);
}

.path-row {
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 7px;
  border: 0;
  border-top: 1px solid #edf0ed;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background .2s ease, transform .2s var(--ease-out);
}

.path-row:hover {
  transform: translateX(3px);
  background: #fafbf9;
}

.path-dot {
  width: 14px;
  height: 14px;
  border: 1px solid #c7d1cf;
  border-radius: 50%;
}

.path-row.complete .path-dot {
  border-color: var(--growth-green);
  background: var(--growth-green);
  box-shadow: inset 0 0 0 3px white;
}

.path-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.path-row strong {
  color: var(--night-navy);
  font-size: 12px;
}

.path-row small {
  margin-top: 1px;
  color: #829195;
  font-size: 11px;
}

.path-row > i {
  color: #8b999c;
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.path-row.complete > i {
  color: var(--growth-green);
}

.circle-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--night-navy);
  color: white;
}

.circle-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--rise-violet);
  font-size: 11px;
  font-weight: 800;
}

.circle-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.circle-note strong {
  font-size: 11px;
}

.circle-note small {
  margin-top: 1px;
  color: #b4c5cd;
  font-size: 11px;
}

.stage-caption {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.63);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.caption-one {
  top: 65px;
  left: 47px;
}

.caption-two {
  right: 45px;
  bottom: 80px;
}

.caption-three {
  left: 44px;
  bottom: 42px;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
  color: #788a8e;
  font-size: 11px;
  font-weight: 650;
}

.hero-scroll span {
  width: 20px;
  height: 32px;
  position: relative;
  border: 1px solid #b4c0bf;
  border-radius: 13px;
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--rise-orange);
  animation: scroll-cue 2.2s ease-in-out infinite;
}

/* Why */

.why-section {
  overflow: clip;
  padding: 150px 0 0;
  background: white;
}

.why-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 65px;
}

.section-index {
  padding-top: 10px;
}

.why-statement h2,
.rhythm-heading h2,
.worlds-heading h2,
.community-copy h2,
.coming-inner h2 {
  margin: 0;
  color: var(--night-navy);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 670;
  letter-spacing: -.052em;
  line-height: 1.04;
  text-wrap: balance;
}

.why-statement h2 {
  max-width: 880px;
}

.why-copy {
  max-width: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-top: 55px;
}

.why-copy p {
  margin: 0;
  color: #60767d;
  font-size: 16px;
  line-height: 1.8;
}

.principle-rail {
  width: min(1300px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 110px auto 0;
  border-top: 1px solid #dbe5ec;
  border-bottom: 1px solid #dbe5ec;
  background: linear-gradient(90deg, #f5f9fd, #eef5fd 48%, #f7f4fc);
}

.principle-rail span {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #dbe5ec;
  color: var(--night-navy);
  font-size: 13px;
  font-weight: 660;
  text-align: center;
}

.principle-rail span:last-child {
  border-right: 0;
}

/* Sticky journey */

.rhythm-section {
  position: relative;
  padding: 150px 0 110px;
  background:
    radial-gradient(circle at 92% 10%, rgba(105,167,242,.18), transparent 23%),
    linear-gradient(180deg, #f3f8fd, #edf4fb);
}

.rhythm-heading {
  max-width: 800px;
}

.rhythm-heading h2 {
  margin-top: 16px;
}

.rhythm-heading > p:last-child {
  max-width: 650px;
  margin: 23px 0 0;
  color: #5e747c;
  font-size: 17px;
}

.journey-scroll {
  display: grid;
  grid-template-columns: minmax(480px, .98fr) minmax(340px, .72fr);
  align-items: start;
  gap: clamp(70px, 9vw, 130px);
  margin-top: 95px;
}

.journey-stage {
  position: sticky;
  top: 104px;
  height: 560px;
}

.journey-stage::before {
  content: "";
  position: absolute;
  inset: 40px -30px -30px 40px;
  border-radius: 42px;
  background: rgba(105,167,242,.17);
  filter: blur(1px);
  transition: background .8s ease, transform .8s var(--ease-out);
}

.journey-stage[data-state="practice"]::before {
  background: rgba(116,86,199,.16);
  transform: translate(8px, -5px);
}

.journey-stage[data-state="reflect"]::before {
  background: rgba(242,111,63,.13);
  transform: translate(-5px, 7px);
}

.journey-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 36px;
  background:
    radial-gradient(circle at 83% 16%, rgba(105,167,242,.43), transparent 28%),
    linear-gradient(145deg, var(--deep-agora), #16466f 63%, #2d5e99);
  box-shadow: 0 36px 85px rgba(19,43,67,.2);
  color: white;
  transition: background .85s ease;
}

.journey-stage[data-state="practice"] .journey-screen {
  background:
    radial-gradient(circle at 78% 12%, rgba(116,86,199,.53), transparent 30%),
    linear-gradient(145deg, #102f3a, #24426d 58%, #5c53a2);
}

.journey-stage[data-state="reflect"] .journey-screen {
  background:
    radial-gradient(circle at 72% 16%, rgba(242,111,63,.36), transparent 28%),
    linear-gradient(145deg, #15313f, #3d416a 58%, #704e94);
}

.screen-top {
  position: absolute;
  z-index: 5;
  inset: 27px 30px auto;
  display: grid;
  grid-template-columns: 29px 1fr 9px;
  align-items: center;
  gap: 11px;
}

.screen-top img {
  width: 28px;
}

.screen-top span {
  color: #d5e3e9;
  font-size: 12px;
  font-weight: 650;
}

.screen-top > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rise-orange);
  box-shadow: 0 0 0 6px rgba(242,111,63,.12);
}

.stage-state {
  position: absolute;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 85px 52px 48px;
  opacity: 0;
  transform: translateY(38px) scale(.97);
  transition:
    opacity .65s ease,
    transform .85s var(--ease-out),
    visibility .65s;
}

.stage-state.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stage-state .state-kicker {
  color: #9bc9f8;
  font-size: 12px;
  font-weight: 740;
}

.stage-state > p {
  max-width: 440px;
  margin: 15px 0 32px;
  color: white;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.stage-state > small {
  max-width: 360px;
  margin-top: 28px;
  color: #b9ced8;
  font-size: 12px;
  line-height: 1.6;
}

.composer-line {
  width: 100%;
  height: 58px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.composer-line span {
  position: absolute;
  left: 18px;
  top: 25px;
  width: 42%;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.55);
}

.composer-line i {
  position: absolute;
  top: 19px;
  right: 18px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--rise-orange);
}

.practice-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.practice-timeline span {
  position: relative;
  padding-top: 22px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 650;
}

.practice-timeline span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.14);
}

.practice-timeline .complete,
.practice-timeline .current {
  color: white;
}

.practice-timeline .complete::before {
  background: var(--growth-green);
}

.practice-timeline .current::before {
  background: var(--sky-blue);
}

.reflection-scale {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  gap: 12px;
}

.reflection-scale span {
  color: #c5d6dd;
  font-size: 11px;
}

.reflection-scale i,
.reflection-scale b {
  height: 7px;
  border-radius: 4px;
}

.reflection-scale i {
  background: rgba(255,255,255,.19);
}

.reflection-scale b {
  background: linear-gradient(90deg, var(--rise-orange), #f9a276);
}

.journey-steps {
  padding-bottom: 9vh;
}

.journey-step {
  min-height: 67vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .34;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .7s var(--ease-out);
}

.journey-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.step-name {
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--rise-orange);
  color: var(--rise-orange);
  font-size: 13px;
  font-weight: 760;
}

.journey-step h3 {
  margin: 20px 0 12px;
  color: var(--night-navy);
  font-size: clamp(31px, 3.4vw, 44px);
  font-weight: 660;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.journey-step p {
  margin: 0;
  color: #5d747c;
  font-size: 16px;
  line-height: 1.75;
}

/* Interest worlds */

.worlds-section {
  padding: 150px 0;
  background: var(--warm-canvas);
}

.worlds-heading {
  max-width: 850px;
}

.worlds-heading h2 {
  margin-top: 16px;
}

.worlds-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5f747b;
  font-size: 17px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.world-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(19,43,67,.07);
  border-radius: 32px;
  isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}

.world-tile:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(19,43,67,.11);
}

.world-manifestation {
  grid-column: span 7;
  background: linear-gradient(145deg, #fff3e9, #fbd6c5);
}

.world-spirituality {
  grid-column: span 5;
  background:
    radial-gradient(circle at 82% 13%, rgba(255,255,255,.24), transparent 30%),
    linear-gradient(145deg, #dcecff, #97c5f5 55%, #6b94df);
}

.world-habits {
  grid-column: span 5;
  background: linear-gradient(145deg, #fff7db, #f5d787);
}

.world-wellbeing {
  grid-column: span 7;
  background: linear-gradient(145deg, #e8f5ef, #abd9c9);
}

.world-shape {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.manifestation-shape i {
  position: absolute;
  border-radius: 50%;
}

.manifestation-shape i:nth-child(1) {
  top: 44px;
  right: 65px;
  width: 180px;
  height: 180px;
  background: linear-gradient(145deg, #ff9d72, #f26f3f 62%, #d74b27);
  box-shadow: 0 30px 50px rgba(217,86,40,.23);
}

.manifestation-shape i:nth-child(2) {
  top: 95px;
  right: 18px;
  width: 280px;
  height: 86px;
  border: 2px solid rgba(217,86,40,.32);
  transform: rotate(-14deg);
}

.manifestation-shape i:nth-child(3) {
  top: 18px;
  right: 174px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.52);
  filter: blur(12px);
}

.spirituality-shape i {
  position: absolute;
  top: 30px;
  width: 135px;
  height: 230px;
  border-radius: 50% 50% 42% 58%;
}

.spirituality-shape i:first-child {
  right: 65px;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(116,86,199,.42));
  transform: rotate(18deg);
}

.spirituality-shape i:last-child {
  right: -4px;
  background: rgba(47,110,219,.4);
  transform: rotate(-13deg);
}

.habits-shape i {
  position: absolute;
  top: 72px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.habits-shape i:nth-child(1) {
  width: 150px;
  height: 150px;
  background: linear-gradient(145deg, #ffc653, #e8ad35);
  box-shadow: 0 25px 45px rgba(232,173,53,.23);
}

.habits-shape i:nth-child(2) {
  top: 47px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(173,117,12,.2);
}

.habits-shape i:nth-child(3) {
  top: 22px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(173,117,12,.11);
}

.wellbeing-shape i {
  position: absolute;
  top: 38px;
  width: 145px;
  height: 220px;
  border-radius: 75% 15% 70% 20%;
  background: linear-gradient(155deg, #58b69c, #23806d);
  box-shadow: 0 25px 45px rgba(35,128,109,.18);
}

.wellbeing-shape i:first-child {
  right: 145px;
  transform: rotate(-24deg);
}

.wellbeing-shape i:last-child {
  right: 60px;
  transform: scaleX(-1) rotate(-17deg);
  opacity: .82;
}

.world-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
}

.world-copy > span {
  color: rgba(19,43,67,.67);
  font-size: 11px;
  font-weight: 730;
}

.world-copy h3 {
  margin: 7px 0 8px;
  color: var(--night-navy);
  font-size: 28px;
  letter-spacing: -.035em;
}

.world-copy p {
  margin: 0;
  color: #456069;
  font-size: 14px;
  line-height: 1.65;
}

.world-spirituality .world-copy > span,
.world-spirituality .world-copy p {
  color: rgba(16,47,58,.78);
}

.worlds-note {
  max-width: 720px;
  margin: 38px auto 0;
  color: #74868a;
  font-size: 13px;
  text-align: center;
}

/* Community product */

.community-section {
  padding: 40px 0 150px;
  background: var(--warm-canvas);
}

.community-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(55px, 7vw, 95px);
  min-height: 760px;
  padding: 76px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 88% 11%, rgba(105,167,242,.41), transparent 27%),
    radial-gradient(circle at 14% 88%, rgba(35,128,109,.24), transparent 29%),
    linear-gradient(135deg, #0c2b39, #173e63 57%, #334a7f);
  color: white;
  box-shadow: 0 36px 86px rgba(19,43,67,.18);
}

.community-stage::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -100px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255,255,255,.025), 0 0 0 170px rgba(255,255,255,.012);
}

.section-index.light {
  color: #ff9b78;
}

.community-copy {
  position: relative;
  z-index: 2;
}

.community-copy h2 {
  margin-top: 16px;
  color: white;
  font-size: clamp(42px, 4.7vw, 63px);
}

.community-copy > p:not(.section-index) {
  margin: 24px 0 0;
  color: #b8ccd5;
  font-size: 16px;
  line-height: 1.8;
}

.community-copy ul {
  display: grid;
  gap: 14px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.community-copy li {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 12px;
  color: #d5e2e7;
  font-size: 13px;
}

.community-copy li span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rise-orange);
}

.community-copy li:nth-child(2) span {
  background: var(--sky-blue);
}

.community-copy li:nth-child(3) span {
  background: #b4a2ef;
}

.community-product {
  position: relative;
  z-index: 2;
}

.feed-window {
  width: min(560px, 100%);
  margin-left: auto;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
  background: rgba(250,251,249,.97);
  color: var(--ink);
  box-shadow: 0 38px 75px rgba(5,18,28,.28);
}

.feed-window > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 2px 18px;
}

.feed-window > header > div:first-child {
  display: flex;
  flex-direction: column;
}

.feed-window > header span {
  color: var(--rise-orange);
  font-size: 11px;
  font-weight: 730;
}

.feed-window > header h3 {
  margin: 3px 0 0;
  color: var(--night-navy);
  font-size: 22px;
}

.feed-avatars,
.response-avatars {
  display: flex;
}

.feed-avatars i,
.response-avatars i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--rise-blue);
  color: white;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.feed-avatars i:nth-child(2),
.response-avatars i:nth-child(2) {
  background: var(--rise-violet);
}

.feed-avatars i:nth-child(3) {
  background: var(--growth-green);
}

.feed-post {
  padding: 22px;
  border: 1px solid #e1e6e2;
  border-radius: 21px;
  background: white;
}

.post-person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.post-person > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--rise-violet), #4c65a5);
  color: white;
  font-size: 12px;
  font-weight: 780;
}

.post-person > div {
  display: flex;
  flex-direction: column;
}

.post-person strong {
  color: var(--night-navy);
  font-size: 13px;
}

.post-person small {
  color: #7c8e92;
  font-size: 11px;
}

.feed-post > p {
  margin: 20px 0 17px;
  color: #334f59;
  font-size: 14px;
  line-height: 1.72;
}

.post-response {
  padding: 14px;
  border-radius: 14px;
  background: #f0f5fb;
}

.post-response > span {
  color: var(--rise-blue);
  font-size: 11px;
  font-weight: 730;
}

.post-response p {
  margin: 5px 0 0;
  color: #48616a;
  font-size: 12px;
}

.feed-post footer {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  color: #73868a;
  font-size: 11px;
  font-weight: 620;
}

.circle-response {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  padding: 13px 15px;
  border-radius: 17px;
  background: linear-gradient(120deg, #ecf4fd, #f2eefb);
}

.circle-response p {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0;
}

.circle-response strong {
  color: var(--night-navy);
  font-size: 12px;
}

.circle-response p span {
  color: #73868b;
  font-size: 11px;
}

.circle-response > b {
  color: var(--rise-blue);
  font-size: 11px;
}

/* Values and closing */

.values-section {
  padding: 150px 0;
  background: #f7f3ec;
}

.values-lines {
  margin-top: 35px;
}

.values-lines > p {
  margin: 0;
  color: #a0a8a8;
  font-size: clamp(43px, 6.4vw, 86px);
  font-weight: 680;
  letter-spacing: -.058em;
  line-height: 1.08;
}

.values-lines .value-accent {
  color: var(--night-navy);
}

.values-detail {
  max-width: 830px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 75px 0 0 auto;
}

.values-detail article {
  padding-top: 22px;
  border-top: 1px solid #d9d7d1;
}

.values-detail h3 {
  margin: 0;
  color: var(--night-navy);
  font-size: 17px;
}

.values-detail p {
  margin: 9px 0 0;
  color: #687b80;
  font-size: 14px;
  line-height: 1.75;
}

.coming-section {
  position: relative;
  min-height: 780px;
  overflow: clip;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.8), transparent 31%),
    linear-gradient(145deg, #f4f8fd, #eef3fc 52%, #fff1e9);
}

.coming-color {
  position: absolute;
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  filter: blur(8px);
  pointer-events: none;
  will-change: transform;
}

.coming-blue {
  top: -160px;
  right: -100px;
  width: 590px;
  height: 590px;
  background: radial-gradient(circle, rgba(47,110,219,.28), rgba(105,167,242,.08) 54%, transparent 70%);
}

.coming-orange {
  left: -170px;
  bottom: -210px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(242,111,63,.2), rgba(232,173,53,.07) 54%, transparent 70%);
}

.coming-inner {
  position: relative;
  z-index: 2;
  max-width: 790px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coming-inner > img {
  width: 88px;
  margin-bottom: 27px;
  filter: drop-shadow(0 18px 28px rgba(242,111,63,.2));
}

.coming-inner .section-index {
  padding: 0;
}

.coming-inner h2 {
  margin-top: 17px;
}

.coming-inner > p:not(.section-index) {
  max-width: 650px;
  margin: 25px auto 0;
  color: #5d747c;
  font-size: 17px;
  line-height: 1.75;
}

.coming-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 11px 16px;
  border: 1px solid rgba(19,43,67,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--night-navy);
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

/* Footer */

.site-footer {
  padding: 64px max(24px, calc((100% - 1160px) / 2)) 26px;
  background:
    radial-gradient(circle at 92% 0, rgba(47,110,219,.2), transparent 29%),
    #081f2a;
  color: white;
}

.footer-shell {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-shell > img {
  width: 150px;
}

.footer-shell > p {
  margin: 0;
  color: #91a9b3;
  font-size: 12px;
  text-align: center;
}

.footer-shell nav {
  display: flex;
  gap: 23px;
}

.footer-shell a {
  color: #a3b6be;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-shell a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #67808b;
  font-size: 11px;
}

/* Motion */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(7px);
  transition:
    opacity .7s ease var(--delay, 0ms),
    transform .9s var(--ease-out) var(--delay, 0ms),
    filter .75s ease var(--delay, 0ms);
}

.js [data-reveal="fade"] {
  transform: none;
  filter: none;
}

.js [data-reveal="text"] {
  transform: translateY(42px);
  filter: blur(9px);
}

.js [data-reveal="scale"],
.js [data-reveal="tile"] {
  transform: translateY(34px) scale(.965);
}

.js [data-reveal="wide"] {
  transform: scaleX(.94);
  transform-origin: center;
  filter: none;
}

.js [data-reveal="mark"] {
  transform: translateY(24px) scale(.82);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.js .hero-product .day-card > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .7s var(--ease-out);
}

.js .hero-product.is-visible .day-card > * {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-product.is-visible .day-card > *:nth-child(1) {
  transition-delay: .18s;
}

.js .hero-product.is-visible .day-card > *:nth-child(2) {
  transition-delay: .3s;
}

.js .hero-product.is-visible .day-card > *:nth-child(3) {
  transition-delay: .42s;
}

.js .hero-product.is-visible .day-card > *:nth-child(4) {
  transition-delay: .54s;
}

.js .world-tile .world-shape {
  transform: translateY(28px) scale(.92);
  opacity: .35;
  transition: transform 1.15s var(--ease-out) .12s, opacity .8s ease .12s;
}

.js .world-tile.is-visible .world-shape {
  transform: none;
  opacity: 1;
}

.motion-active .day-card {
  animation: mobile-card-breathe 5.8s ease-in-out infinite;
}

.motion-active .manifestation-shape i:first-child {
  animation: shape-drift 7s ease-in-out infinite;
}

.motion-active .spirituality-shape i:first-child {
  animation: shape-drift 8s ease-in-out infinite reverse;
}

.motion-active .habits-shape i:first-child {
  animation: shape-breathe 6.5s ease-in-out infinite;
}

.motion-active .wellbeing-shape i:first-child {
  animation: leaf-drift 7.5s ease-in-out infinite;
}

body.page-hidden * {
  animation-play-state: paused !important;
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(10px); opacity: 1; }
}

@keyframes mobile-card-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes shape-drift {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -9px; rotate: 2deg; }
}

@keyframes shape-breathe {
  0%, 100% { scale: 1; }
  50% { scale: 1.035; }
}

@keyframes leaf-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 5px -7px; }
}

/* Responsive */

@media (max-width: 1080px) {
  .hero-shell {
    grid-template-columns: minmax(0, .84fr) minmax(450px, 1.16fr);
    gap: 42px;
  }

  .blue-stage {
    min-height: 600px;
    padding: 42px;
  }

  .community-stage {
    padding: 58px;
    gap: 45px;
  }

  .journey-scroll {
    grid-template-columns: minmax(430px, 1fr) minmax(310px, .7fr);
    gap: 65px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.scrolled {
    height: 66px;
  }

  .nav-shell {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    width: 136px;
  }

  .desktop-nav,
  .nav-status {
    display: none;
  }

  .menu-button {
    width: 43px;
    height: 43px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid #dce3e1;
    border-radius: 13px;
    background: rgba(255,255,255,.7);
  }

  .menu-button i {
    width: 19px;
    height: 1.5px;
    display: block;
    background: var(--night-navy);
    transition: transform .3s var(--ease-out);
  }

  .menu-button[aria-expanded="true"] i:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: grid;
    visibility: hidden;
    padding: 8px 24px 24px;
    border-top: 1px solid #e4e8e5;
    background: rgba(251,249,245,.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .4s var(--ease-out), visibility .3s;
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7e3;
    color: var(--night-navy);
    font-size: 15px;
    font-weight: 650;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .35s ease, transform .45s var(--ease-out);
  }

  .mobile-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav.open a:nth-child(2) { transition-delay: 45ms; }
  .mobile-nav.open a:nth-child(3) { transition-delay: 90ms; }
  .mobile-nav.open a:nth-child(4) { transition-delay: 135ms; }
  .mobile-nav.open a:nth-child(5) { transition-delay: 180ms; }

  .hero {
    min-height: auto;
    padding: 118px 0 94px;
  }

  .hero-shell {
    width: min(680px, calc(100% - 38px));
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 630px;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(55px, 10vw, 76px);
  }

  .hero-product {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .blue-stage {
    min-height: 620px;
  }

  .hero-scroll {
    display: none;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 27px;
  }

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

  .principle-rail {
    grid-template-columns: 1fr 1fr;
  }

  .principle-rail span:nth-child(2) {
    border-right: 0;
  }

  .principle-rail span:nth-child(-n+2) {
    border-bottom: 1px solid #dbe5ec;
  }

  .journey-scroll {
    display: block;
  }

  .journey-stage {
    top: 82px;
    z-index: 2;
    width: min(620px, 100%);
    height: 500px;
    margin-inline: auto;
  }

  .journey-steps {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    margin-inline: auto;
    padding-bottom: 0;
  }

  .journey-step {
    min-height: 60vh;
    justify-content: flex-end;
    padding: 110px 4px 46px;
    opacity: .2;
  }

  .journey-step.is-active {
    opacity: 1;
  }

  .world-manifestation,
  .world-spirituality,
  .world-habits,
  .world-wellbeing {
    grid-column: span 6;
  }

  .community-stage {
    grid-template-columns: 1fr;
    padding: 62px;
  }

  .community-copy {
    max-width: 650px;
  }

  .feed-window {
    margin: 0 auto;
  }

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

  .footer-shell > p {
    text-align: right;
  }

  .footer-shell nav {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .content-shell {
    width: min(100% - 34px, 500px);
  }

  .site-header,
  .site-header.scrolled {
    height: 64px;
  }

  .nav-shell {
    width: calc(100% - 28px);
  }

  .brand-link {
    width: 128px;
  }

  .mobile-nav {
    top: 64px;
  }

  .hero {
    padding: 104px 0 74px;
  }

  .hero-shell {
    width: calc(100% - 30px);
    gap: 42px;
  }

  .hero-overline {
    max-width: 300px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(47px, 13.2vw, 61px);
    line-height: 1.01;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.63;
  }

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

  .primary-action {
    width: 100%;
  }

  .quiet-action {
    align-self: center;
  }

  .hero-footnote {
    margin-top: 25px;
    font-size: 12px;
  }

  .blue-stage {
    min-height: 570px;
    padding: 28px 15px;
    border-radius: 30px;
  }

  .blue-stage::before {
    inset: 12px;
    border-radius: 21px;
  }

  .day-card {
    width: calc(100% - 12px);
    padding: 18px;
    border-radius: 22px;
  }

  .day-card-header h2 {
    font-size: 18px;
  }

  .intention-block {
    padding: 15px;
  }

  .stage-caption {
    display: none;
  }

  .circle-note {
    padding: 10px;
  }

  .why-section,
  .rhythm-section,
  .worlds-section,
  .values-section {
    padding-block: 100px;
  }

  .why-statement h2,
  .rhythm-heading h2,
  .worlds-heading h2,
  .community-copy h2,
  .coming-inner h2 {
    font-size: clamp(39px, 10.8vw, 48px);
  }

  .why-copy {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 35px;
  }

  .why-copy p,
  .rhythm-heading > p:last-child,
  .worlds-heading > p:last-child,
  .coming-inner > p:not(.section-index) {
    font-size: 16px;
  }

  .principle-rail {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .principle-rail span,
  .principle-rail span:nth-child(2) {
    min-height: 67px;
    border-right: 0;
    border-bottom: 1px solid #dbe5ec;
  }

  .principle-rail span:last-child {
    border-bottom: 0;
  }

  .journey-scroll {
    margin-top: 62px;
  }

  .journey-stage {
    top: 78px;
    height: 365px;
  }

  .journey-stage::before {
    inset: 23px -8px -12px 18px;
    border-radius: 29px;
  }

  .journey-screen {
    border-radius: 27px;
  }

  .screen-top {
    inset: 20px 20px auto;
  }

  .stage-state {
    padding: 70px 24px 30px;
  }

  .stage-state > p {
    margin: 11px 0 21px;
    font-size: 30px;
  }

  .stage-state > small {
    margin-top: 18px;
    font-size: 11px;
  }

  .composer-line {
    height: 50px;
  }

  .composer-line span {
    top: 21px;
  }

  .composer-line i {
    top: 15px;
  }

  .journey-step {
    min-height: 54vh;
    padding: 92px 4px 34px;
  }

  .journey-step h3 {
    font-size: 33px;
  }

  .world-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .world-manifestation,
  .world-spirituality,
  .world-habits,
  .world-wellbeing {
    grid-column: auto;
  }

  .world-tile {
    min-height: 390px;
    padding: 25px;
    border-radius: 25px;
  }

  .manifestation-shape i:nth-child(1) {
    right: 50%;
    transform: translateX(50%);
  }

  .manifestation-shape i:nth-child(2) {
    right: 50%;
    transform: translateX(50%) rotate(-14deg);
  }

  .spirituality-shape i:first-child {
    right: 46%;
  }

  .spirituality-shape i:last-child {
    right: 17%;
  }

  .wellbeing-shape i:first-child {
    right: 48%;
  }

  .wellbeing-shape i:last-child {
    right: 22%;
  }

  .community-section {
    padding: 0;
    background: var(--deep-agora);
  }

  .community-stage {
    width: 100%;
    min-height: auto;
    gap: 48px;
    padding: 92px 17px;
    border-radius: 0;
    box-shadow: none;
  }

  .community-copy {
    padding-inline: 2px;
  }

  .feed-window {
    padding: 14px;
    border-radius: 23px;
  }

  .feed-post {
    padding: 17px;
  }

  .feed-post > p {
    font-size: 13px;
  }

  .feed-post footer {
    justify-content: space-between;
    gap: 8px;
  }

  .circle-response {
    align-items: flex-start;
  }

  .response-avatars {
    padding-top: 2px;
  }

  .values-lines > p {
    font-size: clamp(39px, 11.5vw, 53px);
  }

  .values-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 55px;
  }

  .coming-section {
    min-height: 700px;
    padding-inline: 17px;
  }

  .coming-inner > img {
    width: 78px;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
  }

  .footer-shell > p {
    text-align: center;
  }

  .footer-shell nav {
    grid-column: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }

  .primary-action:active,
  .menu-button:active,
  .path-row:active {
    transform: scale(.98);
  }
}

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

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

  .js [data-reveal],
  .js .hero-title i,
  .js .hero-product .day-card > *,
  .js .world-tile .world-shape {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-wash,
  .coming-color {
    transform: none !important;
  }
}
