@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-body-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-heading-family: "Instrument Serif", "Iowan Old Style", Baskerville, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  min-height: 100vh;
  background: #faf8f4;
  color: #1e1e1e;
  font-family: var(--font-body-family);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid #788270;
  outline-offset: 4px;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #1e1e1e;
  color: #faf8f4;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

button {
  font: inherit;
}

.breathe-site {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  overflow: clip;
  background: #faf8f4;
  color: #1e1e1e;
  font-family: var(--font-body-family);
}

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

.ambient-grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.024;
  background-image:
    repeating-radial-gradient(circle at 18% 28%, #1e1e1e 0 0.55px, transparent 0.7px 4px),
    repeating-radial-gradient(circle at 74% 62%, #1e1e1e 0 0.45px, transparent 0.65px 5px);
  background-size: 7px 7px, 9px 9px;
  mix-blend-mode: multiply;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, calc(100% - 64px));
  min-height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(30, 30, 30, 0.18);
}

.wordmark {
  width: fit-content;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: 2rem;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.site-header .wordmark {
  font-size: 1.72rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav a,
.header-download,
footer a {
  color: inherit;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 280ms ease;
}

.site-header nav a:hover,
.header-download:hover,
footer a:hover {
  opacity: 0.5;
}

.header-download {
  justify-self: end;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.language-menu {
  position: relative;
  display: inline-flex;
  flex: none;
}

.language-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 116px;
  min-height: 44px;
  padding: 0 14px 0 16px;
  gap: 14px;
  border: 1px solid rgba(30, 30, 30, 0.22);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.72);
  color: inherit;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition:
    background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.language-menu__trigger:hover,
.language-menu.is-open .language-menu__trigger {
  border-color: rgba(30, 30, 30, 0.42);
  background: rgba(250, 248, 244, 0.98);
}

.language-menu__chevron {
  width: 12px;
  height: 8px;
  flex: none;
  margin-left: 2px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.language-menu.is-open .language-menu__chevron {
  transform: rotate(180deg);
}

.language-menu__popover {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 7px;
  border: 1px solid rgba(30, 30, 30, 0.16);
  border-radius: 14px;
  background: oklch(0.975 0.009 88);
  box-shadow: 0 18px 42px rgba(30, 30, 30, 0.13);
  animation: language-menu-in 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.language-menu__popover[hidden] {
  display: none;
}

.language-menu__popover > button {
  display: grid;
  grid-template-columns: 1fr auto 14px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  gap: 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.language-menu__popover > button:hover,
.language-menu__popover > button:focus-visible {
  background: rgba(89, 98, 79, 0.09);
}

.language-menu__popover > button:focus-visible {
  outline-offset: -2px;
}

.language-menu__popover > button small {
  color: #777971;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.language-menu__popover > button::after {
  color: #59624f;
  content: "";
  font-size: 0.76rem;
  text-align: right;
}

.language-menu__popover > button[aria-selected="true"] {
  background: rgba(89, 98, 79, 0.12);
  font-weight: 650;
}

.language-menu__popover > button[aria-selected="true"]::after {
  content: "✓";
}

@keyframes language-menu-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header-download span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 350ms ease;
}

.header-download:hover span {
  transform: translate(3px, 3px);
}

.hero {
  position: relative;
  min-height: 1440px;
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(84px, 9vw, 138px) 0 60px;
}

.kicker {
  margin: 0 0 46px;
  color: #6e7069;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1240px;
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(5rem, 9.2vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
  margin-left: clamp(44px, 14vw, 190px);
  color: #6f786a;
  font-weight: 400;
}

.hero__support {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(850px, 69%);
  margin: 70px 0 0 auto;
}

.hero__support > p {
  max-width: 390px;
  margin: 0;
  color: #575852;
  font-family: var(--font-heading-family);
  font-size: clamp(1.32rem, 1.8vw, 1.62rem);
  line-height: 1.28;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  padding: 14px 20px 15px;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  background: #1e1e1e;
  color: #faf8f4;
  line-height: 1.02;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.12);
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms ease,
    background 360ms ease;
}

.app-store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(30, 30, 30, 0.17);
}

.store-badge {
  cursor: default;
  user-select: none;
}

.store-badge:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.12);
}

.app-store-button:focus-visible {
  outline: 2px solid #788270;
  outline-offset: 4px;
}

.app-store-button span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.app-store-button small {
  margin-bottom: 3px;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.app-store-button--compact {
  min-width: 176px;
  padding: 12px 18px 13px;
}

.app-store-button--inverted {
  border-color: #faf8f4;
  background: #faf8f4;
  color: #1e1e1e;
}

.apple-mark {
  position: relative;
  top: -1px;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero__art {
  position: relative;
  width: 100%;
  height: 840px;
  margin-top: 58px;
  overflow: hidden;
  background: #c8c2b0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 91%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 91%, transparent 100%);
}

.hero__art > img {
  position: absolute;
  inset: -9% -3%;
  width: 106%;
  height: 118%;
  object-fit: cover;
  object-position: center center;
  transition: transform 120ms linear;
  will-change: transform;
  filter: saturate(0.82) contrast(0.96);
  transform: scale(1.075);
  animation: landscapeDrift 24s ease-in-out infinite alternate;
}

.hero__art-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.18), transparent 28%, transparent 72%, rgba(250, 248, 244, 0.18)),
    linear-gradient(180deg, rgba(250, 248, 244, 0.15), transparent 25%, transparent 70%, rgba(250, 248, 244, 0.22));
}

.hero__caption {
  position: absolute;
  right: max(32px, calc((100vw - 1320px) / 2));
  bottom: 84px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  color: rgba(250, 248, 244, 0.9);
  text-shadow: 0 2px 20px rgba(20, 25, 20, 0.36);
}

.hero__caption span,
.quote-section__aside span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.hero__caption p {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: 1.35rem;
  line-height: 1.2;
}

.floating-particles,
.rhythm-stage__particles,
.privacy__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-particles i,
.rhythm-stage__particles i,
.privacy__particles i {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.58);
  box-shadow: 0 0 12px rgba(250, 248, 244, 0.48);
  animation: particleDrift 10s ease-in-out infinite alternate;
}

.editorial-section {
  position: relative;
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #73736d;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-marker > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.philosophy {
  min-height: 900px;
  padding: 168px 0 150px;
}

.philosophy__statement {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 2fr);
  gap: clamp(40px, 9vw, 150px);
  align-items: start;
  margin-top: 110px;
}

.dropcap {
  max-width: 230px;
  margin: 13px 0 0;
  color: #71716b;
  font-size: 0.76rem;
  line-height: 1.65;
}

.philosophy h2,
.rhythms__heading h2,
.download h2 {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(3.8rem, 6.4vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.philosophy h2 em,
.rhythms__heading h2 em,
.download h2 em {
  color: #737d6e;
  font-weight: 400;
}

.philosophy__notes {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 360px;
  gap: 110px;
  align-items: center;
  justify-content: end;
  margin-top: 120px;
  padding-right: 6vw;
}

.philosophy__notes > p {
  margin: 0;
  color: #54564f;
  font-size: 0.92rem;
  line-height: 1.85;
}

.quiet-orbit {
  position: relative;
  width: 260px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.quiet-orbit span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(92, 103, 88, 0.34);
  border-radius: 50%;
  animation: orbitBreathe 9s ease-in-out infinite;
}

.quiet-orbit span:nth-child(2) {
  inset: 26%;
  animation-delay: -1.5s;
}

.quiet-orbit span:nth-child(3) {
  inset: 39%;
  animation-delay: -3s;
}

.quiet-orbit i {
  position: absolute;
  top: 11%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #788270;
  transform-origin: 0 103px;
  animation: orbitTurn 15s linear infinite;
}

.how-it-works {
  padding: 175px 0 180px;
  border-top: 1px solid rgba(30, 30, 30, 0.16);
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  margin-top: 94px;
}

.how-it-works h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(4.2rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.steps {
  margin-top: 88px;
  border-top: 1px solid rgba(30, 30, 30, 0.16);
}

.steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.16);
}

.steps article > span {
  padding-top: 4px;
  color: #7b8074;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.steps h3 {
  margin: 0 0 8px;
  font-family: var(--font-body-family);
  font-size: 0.82rem;
  font-weight: 600;
}

.steps p {
  max-width: 370px;
  margin: 0;
  color: #73736c;
  font-size: 0.78rem;
  line-height: 1.6;
}

.interface-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  overflow: hidden;
  border-radius: 42% 42% 4px 4px;
  background: #e9e5dc;
}

.interface-stage__halo {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(105, 118, 103, 0.25);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 40px rgba(105, 118, 103, 0.035),
    0 0 0 90px rgba(105, 118, 103, 0.025);
  animation: orbitBreathe 11s ease-in-out infinite;
}

.interface-stage__note {
  position: absolute;
  right: 28px;
  bottom: 24px;
  max-width: 150px;
  margin: 0;
  color: #73776f;
  font-family: var(--font-heading-family);
  font-size: 1rem;
  line-height: 1.25;
}

.app-crop {
  position: relative;
  z-index: 2;
  width: min(390px, calc(100% - 70px));
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(44, 48, 42, 0.12);
  border-radius: 34px;
  background: #f8f5ed;
  color: #283027;
  box-shadow:
    0 28px 75px rgba(56, 60, 50, 0.18),
    0 3px 10px rgba(56, 60, 50, 0.06);
}

.app-crop__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 18px;
  border-bottom: 1px solid rgba(44, 48, 42, 0.1);
  font-family: var(--font-heading-family);
  font-size: 1.22rem;
}

.text-button {
  border: 0;
  background: transparent;
  color: #687265;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-crop__body {
  padding: 45px 28px 32px;
  text-align: center;
}

.app-crop__eyebrow {
  margin: 0 0 52px;
  color: #7c8179;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-orbit {
  position: relative;
  width: min(260px, 80%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.mini-orbit > span {
  position: absolute;
  inset: 4%;
  border: 1px solid rgba(104, 114, 101, 0.24);
  border-radius: 50%;
}

.mini-orbit > span:nth-child(2) {
  inset: 15%;
}

.mini-orbit > span:nth-child(3) {
  inset: 27%;
}

.mini-orbit--running > span {
  animation: orbitBreathe 8s ease-in-out infinite;
}

.mini-orbit--running > span:nth-child(2) {
  animation-delay: -1.2s;
}

.mini-orbit--running > span:nth-child(3) {
  animation-delay: -2.4s;
}

.is-paused .mini-orbit > span {
  animation-play-state: paused;
}

.mini-orbit__centre {
  position: absolute;
  inset: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #778173;
  color: #f7f4ed;
  box-shadow: 0 10px 34px rgba(85, 98, 82, 0.28);
}

.mini-orbit__centre small {
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-orbit__centre strong {
  margin-top: 2px;
  font-family: var(--font-heading-family);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.app-crop__timing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(44, 48, 42, 0.1);
}

.app-crop__timing span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading-family);
  font-size: 1.45rem;
}

.app-crop__timing small {
  margin-bottom: 5px;
  color: #878b83;
  font-family: var(--font-body-family);
  font-size: 0.46rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rhythms {
  padding: 185px 0 190px;
  border-top: 1px solid rgba(30, 30, 30, 0.16);
}

.rhythms__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(200px, 0.35fr);
  gap: 70px;
  align-items: end;
  margin: 100px 0 110px;
}

.rhythms__heading h2 em {
  display: block;
}

.rhythms__heading > p {
  max-width: 210px;
  margin: 0 0 12px;
  color: #6e7068;
  font-size: 0.78rem;
  line-height: 1.7;
}

.rhythm-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(430px, 1.42fr) minmax(245px, 0.8fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: center;
  min-height: 900px;
  padding: 64px clamp(34px, 5vw, 72px);
  overflow: hidden;
  background: oklch(92.8% 0.013 88);
}

.rhythm-tabs {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
}

.rhythm-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  min-height: 96px;
  padding: 21px 2px 20px;
  border: 0;
  border-bottom: 1px solid oklch(24% 0.012 95 / 0.15);
  background: transparent;
  color: oklch(50% 0.01 95);
  cursor: pointer;
  text-align: left;
  transition:
    color 300ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rhythm-tabs button:first-child {
  border-top: 1px solid oklch(24% 0.012 95 / 0.15);
}

.rhythm-tabs__index {
  padding-top: 5px;
  font-family: var(--font-body-family);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.rhythm-tabs__label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.rhythm-tabs__label strong {
  font-family: var(--font-heading-family);
  font-size: clamp(1.42rem, 2vw, 1.76rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.rhythm-tabs__label small {
  overflow: hidden;
  color: oklch(54% 0.014 95 / 0.75);
  font-size: 0.55rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rhythm-tabs button.is-active {
  color: oklch(23% 0.012 95);
  transform: translateX(12px);
}

.rhythm-tabs button.is-active::before {
  position: absolute;
  top: 27px;
  left: -13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: oklch(54% 0.06 145);
  box-shadow: 0 0 0 5px oklch(54% 0.06 145 / 0.1);
  content: '';
}

.rhythm-tabs button:focus-visible {
  outline: 1px solid oklch(54% 0.06 145);
  outline-offset: 5px;
}

.rhythm-stage {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 748px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.session-preview {
  position: relative;
  width: min(490px, 100%);
  height: 690px;
  overflow: hidden;
  border: 1px solid oklch(99% 0.008 95 / 0.11);
  border-radius: 48px;
  background:
    radial-gradient(circle at 50% 54%, oklch(30% 0.012 120 / 0.2), transparent 38%),
    linear-gradient(145deg, oklch(18% 0.009 250), oklch(9% 0.007 260));
  color: oklch(95.5% 0.013 94);
  box-shadow:
    0 42px 100px oklch(25% 0.03 135 / 0.27),
    0 9px 24px oklch(20% 0.02 135 / 0.15),
    inset 0 1px 0 oklch(99% 0.008 95 / 0.06);
  transition:
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  isolation: isolate;
}

.session-preview::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, oklch(10% 0.008 250 / 0.7), transparent 24%, transparent 72%, oklch(8% 0.006 250 / 0.72)),
    radial-gradient(circle at 50% 45%, transparent 0 26%, oklch(5% 0.006 250 / 0.13) 76%);
  content: '';
}

.session-preview.is-switching {
  transform: scale(0.988);
}

.session-preview__canvas,
.session-preview__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.session-preview__canvas {
  z-index: 0;
  display: block;
}

.session-preview__fallback {
  z-index: 0;
  display: none;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, oklch(38% 0.018 110 / 0.35), transparent 48%);
}

.no-webgl .session-preview__fallback {
  display: block;
}

.session-preview__fallback span {
  position: absolute;
  top: 34%;
  left: 42%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: oklch(95.5% 0.013 94 / 0.8);
  box-shadow: 0 0 14px oklch(95.5% 0.013 94 / 0.55);
  animation: particleDrift 8s ease-in-out infinite alternate;
}

.session-preview__fallback span:nth-child(2) { top: 48%; left: 68%; animation-delay: -1.5s; }
.session-preview__fallback span:nth-child(3) { top: 57%; left: 25%; animation-delay: -3s; }
.session-preview__fallback span:nth-child(4) { top: 66%; left: 55%; animation-delay: -4.5s; }
.session-preview__fallback span:nth-child(5) { top: 73%; left: 36%; animation-delay: -6s; }
.session-preview__fallback span:nth-child(6) { top: 42%; left: 52%; animation-delay: -7.5s; }

.session-preview__chrome {
  position: absolute;
  top: 18px;
  right: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  color: oklch(95.5% 0.013 94 / 0.72);
  font-size: 0.72rem;
  font-weight: 550;
  text-align: center;
}

.session-preview__close,
.session-preview__pause {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid oklch(99% 0.008 95 / 0.1);
  border-radius: 50%;
  background: oklch(99% 0.008 95 / 0.065);
  color: inherit;
}

.session-preview__close {
  font-family: var(--font-body-family);
  font-size: 1.45rem;
  font-weight: 250;
  line-height: 1;
}

.session-preview__pause {
  padding: 0;
  cursor: pointer;
  transition:
    background 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.session-preview__pause:hover {
  background: oklch(99% 0.008 95 / 0.12);
  transform: scale(1.04);
}

.session-preview__pause > span {
  width: 10px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.session-preview__pause[aria-pressed='true'] > span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.session-preview__metrics {
  position: absolute;
  top: 78px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.session-preview__metrics > span {
  display: flex;
  min-width: 66px;
  flex-direction: column;
  align-items: center;
  padding: 7px 12px 8px;
  border: 1px solid oklch(99% 0.008 95 / 0.07);
  border-radius: 999px;
  background: oklch(99% 0.008 95 / 0.045);
}

.session-preview__metrics b {
  font-size: 0.67rem;
  font-weight: 580;
}

.session-preview__metrics small {
  color: oklch(95.5% 0.013 94 / 0.45);
  font-size: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-preview__cue {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 14px;
  pointer-events: none;
  text-align: center;
}

.session-preview__cue small {
  margin-bottom: 8px;
  color: oklch(95.5% 0.013 94 / 0.52);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.session-preview__cue strong {
  font-family: var(--font-heading-family);
  font-size: clamp(3.6rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 3px 24px oklch(5% 0.006 250 / 0.55);
}

.session-preview__cue > span {
  margin-top: 13px;
  color: oklch(95.5% 0.013 94 / 0.52);
  font-family: var(--font-heading-family);
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}

.session-preview__progress {
  position: absolute;
  right: 26px;
  bottom: 47px;
  left: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(var(--phase-count, 3), 1fr);
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.session-preview__progress li {
  min-width: 0;
}

.session-preview__progress i {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  background: oklch(95.5% 0.013 94 / 0.16);
}

.session-preview__progress i::after {
  position: absolute;
  inset: 0;
  background: oklch(95.5% 0.013 94 / 0.82);
  content: '';
  transform: scaleX(var(--phase-progress, 0));
  transform-origin: left;
}

.session-preview__progress li.is-complete i::after {
  transform: scaleX(1);
}

.session-preview__progress small {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  color: oklch(95.5% 0.013 94 / 0.38);
  font-size: 0.43rem;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.session-preview__progress li.is-active small {
  color: oklch(95.5% 0.013 94 / 0.72);
}

.session-preview__technology {
  position: absolute;
  bottom: 16px;
  left: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: oklch(95.5% 0.013 94 / 0.33);
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-preview__technology span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: oklch(78% 0.1 145);
  box-shadow: 0 0 9px oklch(78% 0.1 145 / 0.7);
}

.session-preview.is-paused .session-preview__technology span {
  background: oklch(72% 0.05 80);
  box-shadow: none;
}

.rhythm-stage__caption {
  max-width: 350px;
  margin: 27px auto 0;
  color: oklch(47% 0.014 95);
  font-size: 0.66rem;
  line-height: 1.6;
  text-align: center;
}

.rhythm-detail {
  align-self: center;
}

.rhythm-detail__mode {
  margin: 0 0 16px;
  color: oklch(49% 0.055 145);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rhythm-detail h3 {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.rhythm-detail > [data-rhythm-description] {
  min-height: 76px;
  margin: 22px 0 32px;
  color: oklch(44% 0.012 95);
  font-family: var(--font-heading-family);
  font-size: 1.18rem;
  line-height: 1.35;
}

.rhythm-detail__sequence {
  margin: 0;
  padding: 0;
  border-top: 1px solid oklch(24% 0.012 95 / 0.15);
  list-style: none;
}

.rhythm-detail__sequence li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 49px;
  border-bottom: 1px solid oklch(24% 0.012 95 / 0.15);
}

.rhythm-detail__sequence span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: oklch(43% 0.01 95);
  font-size: 0.63rem;
  font-weight: 600;
}

.rhythm-detail__sequence i {
  width: 5px;
  height: 5px;
  border: 1px solid oklch(47% 0.05 145 / 0.6);
  border-radius: 50%;
}

.rhythm-detail__sequence b {
  font-family: var(--font-heading-family);
  font-size: 1.55rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.rhythm-detail__visuals {
  margin-top: 28px;
}

.rhythm-detail__visuals > p {
  margin: 0 0 10px;
  color: oklch(48% 0.012 95);
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rhythm-detail__visuals > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.rhythm-detail__visuals button {
  min-height: 38px;
  padding: 7px 9px;
  border: 1px solid oklch(24% 0.012 95 / 0.14);
  border-radius: 999px;
  background: transparent;
  color: oklch(44% 0.012 95);
  cursor: pointer;
  font-size: 0.57rem;
  font-weight: 600;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rhythm-detail__visuals button:hover {
  transform: translateY(-1px);
}

.rhythm-detail__visuals button.is-active {
  border-color: oklch(22% 0.012 95);
  background: oklch(22% 0.012 95);
  color: oklch(96% 0.012 95);
}

.rhythm-detail__note {
  margin: 24px 0 0;
  color: oklch(49% 0.01 95);
  font-size: 0.6rem;
  line-height: 1.65;
}

.personalised {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  width: 100%;
  min-height: 1180px;
  background: #f0ece3;
}

.personalised__art {
  position: relative;
  min-height: 1180px;
  overflow: hidden;
}

.personalised__art img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.96);
  transform: scale(1.045);
  transition: transform 140ms linear;
}

.personalised__art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(29, 33, 27, 0.58));
  content: '';
}

.personalised__art > p {
  position: absolute;
  z-index: 2;
  right: 54px;
  bottom: 58px;
  margin: 0;
  color: #f9f6ef;
  font-family: var(--font-heading-family);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-align: right;
}

.personalised__content {
  display: flex;
  flex-direction: column;
  padding: 110px clamp(40px, 7vw, 110px) 90px;
}

.personalised__copy {
  max-width: 540px;
  margin-top: 100px;
}

.personalised__copy h2 {
  margin: 0 0 42px;
  font-family: var(--font-heading-family);
  font-size: clamp(3.8rem, 5.7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.personalised__copy > p:last-child {
  max-width: 400px;
  margin: 0;
  color: #666860;
  font-size: 0.84rem;
  line-height: 1.8;
}

.settings-stage {
  display: flex;
  justify-content: flex-end;
  margin-top: 90px;
}

.settings-crop {
  width: min(500px, 100%);
  overflow: hidden;
  border: 1px solid rgba(30, 30, 30, 0.11);
  border-radius: 28px;
  background: #faf8f4;
  box-shadow: 0 24px 65px rgba(60, 61, 54, 0.12);
}

.settings-crop__header {
  display: flex;
  justify-content: space-between;
  padding: 25px 28px 16px;
  color: #6f756c;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.settings-crop__header p {
  margin: 0;
}

.settings-crop h3 {
  max-width: 300px;
  margin: 32px 28px 40px;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.settings-crop__options {
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}

.settings-crop__options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 61px;
  padding: 0 28px;
  border: 0;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  background: transparent;
  color: #2f312e;
  cursor: pointer;
  font-size: 0.71rem;
  text-align: left;
  transition: background 240ms ease;
}

.settings-crop__options button:hover {
  background: #f2eee5;
}

.settings-crop__options button > span:last-child {
  color: #7a7c75;
}

.settings-crop__options i {
  margin-left: 8px;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
}

.settings-crop__options b {
  font-weight: 400;
}

.switch {
  position: relative;
  width: 38px;
  height: 22px;
  border-radius: 99px;
  background: #d6d2ca;
  transition: background 280ms ease;
}

.switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #faf8f4;
  box-shadow: 0 1px 4px rgba(30, 30, 30, 0.15);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.switch--on {
  background: #7b8576;
}

.switch--on i {
  transform: translateX(16px);
}

.privacy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1.64fr);
  gap: 80px;
  min-height: 860px;
  padding: 110px max(32px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: #475146;
  color: #f8f5ed;
}

.privacy .section-marker {
  align-self: start;
  color: rgba(248, 245, 237, 0.65);
}

.privacy__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 940px;
}

.privacy__index {
  margin: 0 0 82px;
  color: rgba(248, 245, 237, 0.48);
  font-size: 0.58rem;
  letter-spacing: 0.17em;
}

.privacy h2 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.86;
}

.privacy__content > p:nth-child(3) {
  max-width: 470px;
  margin: 74px 0 0 auto;
  color: rgba(248, 245, 237, 0.74);
  font-size: 0.86rem;
  line-height: 1.8;
}

.privacy__proof {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 46px;
}

.privacy__proof span {
  padding: 10px 14px;
  border: 1px solid rgba(248, 245, 237, 0.22);
  border-radius: 99px;
  color: rgba(248, 245, 237, 0.76);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
}

.privacy__link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 34px 0 0 auto;
  color: #f8f5ed;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.privacy__link:hover {
  opacity: 0.64;
}

.privacy__particles i {
  background: rgba(248, 245, 237, 0.36);
}

.quote-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1080px;
  overflow: hidden;
  background: #d6d1c3;
}

.quote-section__image {
  position: absolute;
  inset: 0;
}

.quote-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.62) brightness(0.77) contrast(0.94);
  transform: scale(1.05);
}

.quote-section__image div {
  position: absolute;
  inset: 0;
  background: rgba(35, 41, 33, 0.24);
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 80px));
  margin: 0;
  color: #faf8f4;
  text-align: center;
}

.quote-section blockquote p {
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(4.4rem, 7.4vw, 7.5rem);
  letter-spacing: -0.048em;
  line-height: 0.9;
  text-shadow: 0 5px 35px rgba(25, 30, 25, 0.28);
}

.quote-section blockquote em {
  display: block;
  font-weight: 400;
}

.quote-section__aside {
  position: absolute;
  right: max(34px, calc((100vw - 1320px) / 2));
  bottom: 52px;
  z-index: 2;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  color: rgba(250, 248, 244, 0.82);
}

.quote-section__aside p {
  max-width: 170px;
  margin: 0;
  font-size: 0.69rem;
  line-height: 1.55;
}

.download {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 940px;
  padding: 140px max(32px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: #ded8ca;
}

.download__inner {
  position: relative;
  z-index: 3;
  width: min(830px, 70%);
}

.download h2 {
  margin-bottom: 64px;
}

.download h2 em {
  display: block;
}

.download .app-store-button--inverted {
  border-color: #1e1e1e;
  background: #1e1e1e;
  color: #faf8f4;
}

.download__note {
  max-width: 330px;
  margin: 35px 0 0;
  color: #676960;
  font-size: 0.72rem;
  line-height: 1.65;
}

.download__interface {
  position: absolute;
  right: clamp(-110px, 1vw, 30px);
  bottom: -210px;
  z-index: 2;
  width: 430px;
  transform: rotate(4deg);
}

.download__interface .app-crop {
  width: 100%;
  min-height: 660px;
  background: #f7f4ed;
  box-shadow: 0 36px 100px rgba(59, 61, 53, 0.22);
}

.download__interface .app-crop__body {
  padding-top: 75px;
}

footer {
  display: grid;
  grid-template-columns: 0.72fr 0.68fr 1.6fr;
  gap: 32px;
  align-items: center;
  min-height: 190px;
  padding: 55px max(32px, calc((100vw - 1320px) / 2));
  border-top: 1px solid rgba(30, 30, 30, 0.15);
  background: #faf8f4;
}

footer > p {
  margin: 0;
  color: #72736d;
  font-family: var(--font-heading-family);
  font-size: 1rem;
}

footer > nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

footer > span {
  grid-column: 3;
  color: #8a8a84;
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-align: right;
  text-transform: uppercase;
}

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

.has-js .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(38px);
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s ease;
}

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

.particles i:nth-child(1) { left: 8%; top: 68%; animation-delay: -0.7s; animation-duration: 8s; }
.particles i:nth-child(2) { left: 17%; top: 48%; animation-delay: -2.1s; animation-duration: 10s; }
.particles i:nth-child(3) { left: 23%; top: 75%; animation-delay: -4.3s; animation-duration: 12s; }
.particles i:nth-child(4) { left: 31%; top: 38%; animation-delay: -1.5s; animation-duration: 9s; }
.particles i:nth-child(5) { left: 36%; top: 62%; animation-delay: -5.2s; animation-duration: 13s; }
.particles i:nth-child(6) { left: 42%; top: 84%; animation-delay: -3.2s; animation-duration: 11s; }
.particles i:nth-child(7) { left: 47%; top: 50%; animation-delay: -7.1s; animation-duration: 15s; }
.particles i:nth-child(8) { left: 52%; top: 71%; animation-delay: -2.7s; animation-duration: 10s; }
.particles i:nth-child(9) { left: 58%; top: 28%; animation-delay: -6.4s; animation-duration: 14s; }
.particles i:nth-child(10) { left: 63%; top: 58%; animation-delay: -1.2s; animation-duration: 9s; }
.particles i:nth-child(11) { left: 69%; top: 78%; animation-delay: -4.8s; animation-duration: 12s; }
.particles i:nth-child(12) { left: 75%; top: 43%; animation-delay: -3.8s; animation-duration: 11s; }
.particles i:nth-child(13) { left: 82%; top: 67%; animation-delay: -7.8s; animation-duration: 16s; }
.particles i:nth-child(14) { left: 89%; top: 53%; animation-delay: -0.4s; animation-duration: 8s; }
.particles i:nth-child(15) { left: 13%; top: 87%; animation-delay: -5.7s; animation-duration: 13s; }
.particles i:nth-child(16) { left: 28%; top: 91%; animation-delay: -2.4s; animation-duration: 10s; }
.particles i:nth-child(17) { left: 59%; top: 88%; animation-delay: -6.9s; animation-duration: 14s; }
.particles i:nth-child(18) { left: 86%; top: 85%; animation-delay: -3.5s; animation-duration: 12s; }

@keyframes particleDrift {
  0% {
    opacity: 0.08;
    transform: translate3d(-8px, 13px, 0) scale(0.72);
  }
  50% {
    opacity: 0.66;
  }
  100% {
    opacity: 0.14;
    transform: translate3d(12px, -16px, 0) scale(1.2);
  }
}

@keyframes orbitBreathe {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes mainBreath {
  0%,
  100% {
    box-shadow: 0 24px 70px rgba(73, 83, 69, 0.2);
    transform: scale(0.78);
  }
  27%,
  42% {
    box-shadow: 0 42px 120px rgba(73, 83, 69, 0.3);
    transform: scale(1);
  }
  78% {
    box-shadow: 0 25px 72px rgba(73, 83, 69, 0.2);
    transform: scale(0.78);
  }
}

@keyframes landscapeDrift {
  from {
    transform: scale(1.075) translate3d(0, -0.8%, 0);
  }
  to {
    transform: scale(1.105) translate3d(0, 1.2%, 0);
  }
}

@media (max-width: 1050px) {
  .site-header {
    width: min(100% - 40px, 920px);
  }

  .site-header nav {
    display: none;
  }

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

  .hero__copy,
  .editorial-section {
    width: calc(100% - 40px);
  }

  .hero__support {
    width: 82%;
  }

  .philosophy__statement {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dropcap {
    max-width: 360px;
  }

  .philosophy__notes {
    grid-template-columns: 1fr 280px;
    gap: 60px;
    padding-right: 0;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .rhythm-experience {
    grid-template-columns: minmax(180px, 0.55fr) minmax(360px, 1fr);
    padding: 48px 40px;
  }

  .rhythm-detail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr);
    column-gap: 64px;
    padding: 38px 0 6px;
  }

  .rhythm-detail__mode,
  .rhythm-detail h3,
  .rhythm-detail > [data-rhythm-description],
  .rhythm-detail__note {
    grid-column: 1;
  }

  .rhythm-detail__sequence {
    grid-row: 1 / span 3;
    grid-column: 2;
  }

  .rhythm-detail__visuals {
    grid-row: 4 / span 2;
    grid-column: 2;
  }

  .rhythm-detail > [data-rhythm-description] {
    min-height: 0;
  }

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

  .personalised__content {
    padding-inline: 45px;
  }

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

  .download__inner {
    width: 72%;
  }

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

  footer > nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  footer > span {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  .header-download {
    display: none;
  }

  .site-header .wordmark {
    font-size: 1.45rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__copy {
    padding-top: 76px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 13.6vw, 4.6rem);
    line-height: 0.84;
  }

  .hero h1 em {
    margin-left: 3vw;
  }

  .hero__support {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin: 52px 0 0;
    padding: 0 20px 0 clamp(28px, 12vw, 46px);
    gap: 34px;
  }

  .hero__support > p {
    width: min(280px, 100%);
  }

  .hero__art {
    height: 620px;
    margin-top: 40px;
  }

  .hero__caption {
    right: 22px;
    bottom: 58px;
  }

  .philosophy,
  .how-it-works,
  .rhythms {
    min-height: 0;
    padding: 110px 0;
  }

  .philosophy__statement {
    margin-top: 75px;
  }

  .philosophy h2,
  .rhythms__heading h2,
  .download h2 {
    font-size: clamp(3.7rem, 15vw, 5.3rem);
  }

  .philosophy__notes {
    grid-template-columns: 1fr;
    gap: 70px;
    justify-items: center;
    margin-top: 80px;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .how-it-works h2 {
    font-size: clamp(4rem, 16vw, 5.4rem);
  }

  .interface-stage {
    min-height: 690px;
    border-radius: 44% 44% 4px 4px;
  }

  .rhythms__heading {
    grid-template-columns: 1fr;
    gap: 36px;
    margin: 72px 0;
  }

  .rhythm-experience {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 35px 24px 52px;
  }

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

  .rhythm-tabs button,
  .rhythm-tabs button:first-child {
    min-height: 100px;
    padding: 18px 10px;
    border-top: 0;
  }

  .rhythm-tabs button:nth-child(odd) {
    border-right: 1px solid oklch(24% 0.012 95 / 0.15);
  }

  .rhythm-tabs button.is-active {
    transform: none;
  }

  .rhythm-tabs button.is-active::before {
    top: 20px;
    left: 2px;
  }

  .rhythm-stage {
    min-height: 0;
  }

  .session-preview {
    width: 100%;
    height: min(650px, 145vw);
    min-height: 540px;
    border-radius: 36px;
  }

  .rhythm-detail {
    grid-column: auto;
    display: block;
    padding-top: 16px;
  }

  .rhythm-detail > [data-rhythm-description] {
    min-height: 0;
  }

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

  .personalised__art {
    min-height: 760px;
  }

  .personalised__content {
    padding: 95px 20px 110px;
  }

  .personalised__copy {
    margin-top: 72px;
  }

  .settings-stage {
    margin-top: 65px;
  }

  .privacy {
    min-height: 820px;
    gap: 70px;
    padding-block: 90px;
  }

  .privacy h2 {
    font-size: clamp(4.3rem, 17vw, 6rem);
  }

  .privacy__content > p:nth-child(3) {
    margin-top: 58px;
  }

  .privacy__proof {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .quote-section {
    min-height: 860px;
  }

  .quote-section blockquote {
    width: calc(100% - 40px);
  }

  .quote-section blockquote p {
    font-size: clamp(3.8rem, 15vw, 5.6rem);
  }

  .download {
    min-height: 980px;
    align-items: flex-start;
    padding-block: 110px;
  }

  .download__inner {
    width: 100%;
  }

  .download__interface {
    right: -150px;
    bottom: -340px;
    opacity: 0.76;
  }

  footer {
    grid-template-columns: 1fr;
    padding-block: 58px;
  }

  footer > nav {
    flex-wrap: wrap;
  }

  footer > span {
    grid-column: auto;
    text-align: left;
  }
}

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

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

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

/* Broken Image Fallback Styles */
img.broken-image-fallback {
  position: relative;
  display: inline-block;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  object-fit: none;
  object-position: center;
  animation: fadeIn 0.3s ease-in-out;
}

.dark img.broken-image-fallback {
  background: #1f2937;
  border-color: #374151;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Verified product imagery */
.release-status {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px 14px;
  border: 1px solid rgba(30, 30, 30, 0.18);
  border-radius: 999px;
  color: #2c2d29;
  font-size: 0.76rem;
  line-height: 1.05;
  text-align: left;
}

.release-status span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.release-status small {
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.release-status--compact {
  min-width: 188px;
  padding-inline: 18px;
}

.release-status--inverted {
  border-color: #1e1e1e;
  background: #1e1e1e;
  color: #faf8f4;
}

.app-screenshot {
  position: relative;
  z-index: 2;
  width: min(330px, calc(100% - 72px));
  margin: 0;
  padding: 9px 9px 0;
  overflow: hidden;
  border: 1px solid rgba(44, 48, 42, 0.12);
  border-radius: 38px;
  background: #f8f5ed;
  box-shadow:
    0 28px 75px rgba(56, 60, 50, 0.18),
    0 3px 10px rgba(56, 60, 50, 0.06);
}

.app-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.app-screenshot figcaption {
  padding: 13px 10px 15px;
  color: #73776f;
  font-size: 0.55rem;
  line-height: 1.45;
  text-align: center;
}

.app-screenshot--session {
  width: min(330px, 100%);
  border-color: rgba(255, 255, 255, 0.08);
  background: #07100f;
  box-shadow:
    0 42px 100px oklch(25% 0.03 135 / 0.27),
    0 9px 24px oklch(20% 0.02 135 / 0.15);
}

.app-screenshot--session figcaption {
  color: rgba(250, 248, 244, 0.62);
}

.app-screenshot--settings {
  width: min(370px, 100%);
}

.rhythm-tabs article {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  min-height: 96px;
  padding: 21px 2px 20px;
  border-bottom: 1px solid oklch(24% 0.012 95 / 0.15);
  color: oklch(28% 0.012 95);
}

.rhythm-tabs article:first-child {
  border-top: 1px solid oklch(24% 0.012 95 / 0.15);
}

.rhythm-detail__copy {
  margin: 22px 0 30px;
  color: oklch(44% 0.012 95);
  font-family: var(--font-heading-family);
  font-size: 1.18rem;
  line-height: 1.35;
}

.rhythm-detail__facts {
  margin: 0;
  padding: 0;
  border-top: 1px solid oklch(24% 0.012 95 / 0.15);
  list-style: none;
}

.rhythm-detail__facts li {
  padding: 14px 0;
  border-bottom: 1px solid oklch(24% 0.012 95 / 0.15);
  color: oklch(43% 0.01 95);
  font-size: 0.63rem;
  font-weight: 560;
  line-height: 1.55;
}

.download__interface > img {
  display: block;
  width: 100%;
  height: auto;
  border: 9px solid #f7f4ed;
  border-radius: 44px;
  background: #f7f4ed;
  box-shadow: 0 36px 100px rgba(59, 61, 53, 0.22);
}

@media (max-width: 1050px) {
  .rhythm-detail__mode,
  .rhythm-detail h3,
  .rhythm-detail__copy,
  .rhythm-detail__note {
    grid-column: 1;
  }

  .rhythm-detail__facts {
    grid-row: 1 / span 4;
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .rhythm-tabs article,
  .rhythm-tabs article:first-child {
    min-height: 100px;
    padding: 18px 10px;
    border-top: 0;
  }

  .rhythm-tabs article:nth-child(odd) {
    border-right: 1px solid oklch(24% 0.012 95 / 0.15);
  }

  .app-screenshot--home {
    width: min(320px, calc(100% - 42px));
  }

  .rhythm-detail__facts {
    margin-top: 28px;
  }
}

/* App-aligned landing page refresh */
:root {
  --site-paper: #f4eddd;
  --site-ink: #24231f;
  --site-muted: #6f6b61;
  --site-sage: #7e9078;
  --site-line: rgba(52, 49, 41, 0.16);
}

body,
.breathe-site {
  background:
    radial-gradient(circle at 76% 14%, rgba(211, 197, 197, 0.64), transparent 27%),
    radial-gradient(circle at 16% 52%, rgba(252, 247, 227, 0.92), transparent 34%),
    var(--site-paper);
  color: var(--site-ink);
}

.ambient-grain {
  display: none;
}

.site-header {
  width: min(1320px, calc(100% - 64px));
  min-height: 78px;
  border-bottom-color: var(--site-line);
}

.wordmark,
.site-header .wordmark {
  font-size: 1.82rem;
}

.wordmark--brand {
  display: inline-flex;
  align-items: center;
}

.wordmark--brand img {
  display: block;
  width: 168px;
  height: auto;
}

.site-header nav a,
.header-download,
footer a {
  letter-spacing: 0.105em;
}

.language-menu__trigger {
  border-color: var(--site-line);
  background: rgba(255, 253, 246, 0.5);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.78fr);
  gap: clamp(58px, 8vw, 142px);
  align-items: center;
  width: min(1320px, calc(100% - 64px));
  min-height: min(850px, calc(100svh - 78px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 116px) 0 clamp(74px, 9vw, 138px);
}

.hero__copy {
  width: auto;
  margin: 0;
  padding: 0;
}

.hero .kicker {
  margin-bottom: 28px;
  color: var(--site-sage);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4.7rem, 7.7vw, 7.8rem);
  letter-spacing: -0.06em;
  line-height: 0.83;
}

.hero h1 em {
  display: inline;
  margin: 0;
  color: var(--site-sage);
}

.hero__support {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: auto;
  margin: 40px 0 0;
  gap: 28px;
}

.hero__support > p {
  max-width: 320px;
  color: #565248;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
}

.release-status {
  min-width: 166px;
  border-color: rgba(51, 49, 42, 0.2);
  background: rgba(255, 253, 246, 0.46);
}

.hero__art {
  grid-column: 2;
  grid-row: 1;
  height: clamp(610px, 52vw, 760px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(82, 75, 57, 0.2);
  border-radius: 48% 48% 28px 28px;
  background: #d8d0bc;
  box-shadow: 0 34px 80px rgba(83, 75, 58, 0.17);
  -webkit-mask-image: none;
  mask-image: none;
}

.hero__art > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 50% 68%;
  filter: saturate(0.9) contrast(0.96);
  transform: none;
  animation: none;
}

.hero__art-wash {
  background: linear-gradient(180deg, rgba(252, 248, 235, 0.12), transparent 46%, rgba(32, 31, 27, 0.2));
}

.hero__caption {
  right: 36px;
  bottom: 38px;
  gap: 16px;
}

.hero__caption p {
  font-size: 1.18rem;
}

.how-it-works,
.rhythms {
  border-top-color: var(--site-line);
}

.interface-stage {
  min-height: 740px;
  border: 1px solid rgba(92, 106, 87, 0.16);
  border-radius: 36px;
  background: linear-gradient(155deg, #e8e4d6, #f7f1e5);
}

.interface-stage__halo {
  width: 68%;
  border-color: rgba(106, 128, 101, 0.23);
  box-shadow: 0 0 0 34px rgba(106, 128, 101, 0.035), 0 0 0 76px rgba(106, 128, 101, 0.018);
}

.app-screenshot {
  width: min(356px, calc(100% - 62px));
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: 0 24px 60px rgba(72, 68, 56, 0.22), 0 3px 8px rgba(72, 68, 56, 0.1);
}

.app-screenshot img {
  border-radius: 34px;
}

.app-screenshot figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.rhythm-experience {
  border: 1px solid rgba(88, 84, 72, 0.12);
  border-radius: 34px;
  background: rgba(250, 247, 238, 0.72);
}

.rhythm-tabs article {
  min-height: 78px;
  padding-block: 16px;
}

.rhythm-tabs__label strong {
  font-size: clamp(1.28rem, 1.75vw, 1.56rem);
}

.release-status--inverted {
  border-color: #1e1e1e;
  background: #1e1e1e;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: 0;
    padding-block: 78px 94px;
  }

  .hero__art {
    grid-column: auto;
    grid-row: auto;
    width: min(620px, 100%);
    height: 650px;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero {
    width: min(100% - 40px, 620px);
  }

  .site-header {
    min-height: 68px;
  }

  .site-header .wordmark {
    font-size: 1.58rem;
  }

  .wordmark--brand img {
    width: 128px;
  }

  .hero {
    gap: 44px;
    padding: 52px 0 70px;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 5.8rem);
    line-height: 0.84;
  }

  .hero__support {
    display: grid;
    gap: 22px;
    margin-top: 32px;
  }

  .hero__art {
    width: 100%;
    height: 510px;
    border-radius: 44% 44% 24px 24px;
  }

  .hero__caption {
    right: 24px;
    bottom: 26px;
  }

  .interface-stage,
  .rhythm-experience {
    border-radius: 24px;
  }

  .app-screenshot {
    width: min(340px, calc(100% - 40px));
  }
}
