@font-face {
  font-family: Manrope;
  src: url('/assets/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
.sounds-section {
  padding-block: 20px 90px;
  scroll-margin-top: 30px;
}
.sounds-section .section-heading p {
  padding: 0;
  margin-top: 20px;
}
.sound-toolbar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.sound-search-label {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sound-search-label input {
  max-width: 440px;
  width: 100%;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
.sound-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sound-filters button,
.player-secondary,
.sound-settings select {
  color: var(--ink);
  background: var(--sky);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 24px;
  font: inherit;
  font-size: 12px;
}
.sound-filters button[aria-pressed='true'] {
  background: #2d7ff9;
  border-color: #2d7ff9;
  color: white;
}
.sound-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.sound-card {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  padding: 20px;
  color: var(--ink);
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 94px;
}
.sound-card[aria-pressed='true'] {
  border-color: #5eaaff;
  background: #16365b;
}
.sound-glyph {
  color: #5eaaff;
  font-size: 26px;
  width: 28px;
  flex-shrink: 0;
}
.sound-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.sound-card small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 5px;
}
.sound-card-play {
  margin-left: auto;
  color: #5eaaff;
  font-size: 12px;
}
.sound-player {
  position: sticky;
  bottom: 15px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 22px;
  margin-top: 25px;
  background: #102443;
  border: 1px solid #356ba5;
  border-radius: 20px;
  box-shadow: 0 8px 35px #0006;
}
.now-playing {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.now-playing img {
  border-radius: 22%;
}
.now-playing strong {
  font-size: 14px;
}
.now-playing p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.transport {
  display: flex;
  gap: 10px;
}
.transport button {
  border: 0;
  min-width: 75px;
}
.volume-label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  font-size: 11px;
  width: 155px;
}
.volume-label input {
  grid-column: 1/-1;
  width: 100%;
}
input[type='range'],
input[type='checkbox'] {
  accent-color: #5eaaff;
}
.sound-settings {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-block: 30px;
}
.sound-settings > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.sound-settings label {
  font-size: 13px;
}
.sleep-timer-form {
  width: 100%;
}
.sleep-timer-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.sleep-timer-form legend {
  font-size: 13px;
  margin-bottom: 14px;
}
.timer-inputs {
  display: flex;
  gap: 12px;
}
.timer-inputs label {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}
.timer-inputs input {
  width: 100%;
  min-width: 0;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}
.timer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.timer-actions button:disabled {
  opacity: 0.5;
  cursor: default;
}
.timer-error {
  font-size: 12px;
  color: #ffb8b8;
  margin-top: 10px;
}
#timer-status {
  font-variant-numeric: tabular-nums;
}
.sound-settings small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.check-label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.check-label input {
  width: 18px;
  height: 18px;
}
.sound-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  max-width: 850px;
}
.sound-help summary {
  cursor: pointer;
  color: var(--ink);
  padding-block: 12px;
}
.dim-screen {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  background: #000;
  color: #89919e;
  padding: 30px;
}
.dim-screen[open] {
  display: grid;
  place-items: center;
}
.dim-screen::backdrop {
  background: #000;
}
.dim-screen > div {
  text-align: center;
}
.dim-screen img {
  opacity: 0.4;
  margin-bottom: 35px;
}
.dim-screen h2 {
  font-size: 32px;
  letter-spacing: -1px;
}
.dim-screen p {
  margin: 20px 0 35px;
  font-size: 13px;
}
.dim-screen button {
  padding: 16px;
  border: 1px solid #353940;
  background: #08090c;
  color: #929aaa;
  border-radius: 30px;
  margin: 5px;
}
@media (max-width: 1000px) {
  .sound-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .sound-list {
    grid-template-columns: 1fr;
  }
  .sound-filters {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 10px;
  }
  .sound-filters button {
    flex-shrink: 0;
  }
  .sound-search-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sound-player {
    flex-wrap: wrap;
    padding: 16px;
    gap: 15px;
    bottom: 8px;
  }
  .now-playing {
    flex-basis: 55%;
  }
  .now-playing img {
    display: none;
  }
  .volume-label {
    width: 100%;
  }
  .sound-settings {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sounds-section {
    padding-bottom: 60px;
  }
  .transport {
    gap: 6px;
  }
  .transport button {
    min-width: 58px;
    padding: 12px;
  }
}
:root {
  --paper: #0a1628;
  --ink: #eaf2ff;
  --blue: #5eaaff;
  --sky: #0f1f3a;
  --mist: #203e63;
  --muted: #a4bfdf;
  --line: #233d60;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #7bbbff;
  outline-offset: 6px;
}
::selection {
  background: #194c85;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
button {
  color: inherit;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wrap {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1.8px;
}
.wordmark svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.4;
  margin-right: 9px;
}
.brand-dot {
  color: var(--blue);
}
nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
}
nav a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--blue);
  color: white;
  padding: 19px 25px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}
.button:hover {
  background: #87beff;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button-small {
  padding: 14px 20px;
  background: transparent;
  color: var(--ink);
  border: 1px solid #356ba5;
}
.button-small:hover {
  background: var(--sky);
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 10px;
  min-height: 652px;
  padding-block: 48px 70px;
}
.intro {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.intro > span,
.availability > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}
h1 {
  font-size: clamp(56px, 5.8vw, 82px);
  letter-spacing: -4px;
  line-height: 1.08;
}
.lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
}
.hero .lead {
  max-width: 410px;
  margin-top: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.hero-actions > span {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.breathing-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.breath-instrument {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid #163358;
  border-radius: 50%;
  inset: 0;
}
.orbit-middle {
  inset: 8%;
  border-color: #204574;
}
.orbit-inner {
  inset: 17%;
  background: #10274a;
  border-color: #2865aa;
}
.breath-core {
  z-index: 1;
  width: 53%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 35% 25%, #2d7ff9 0%, #185bb1 65%, #10325f 100%);
  box-shadow:
    0 16px 55px #00000026,
    inset 0 0 22px #5eaaff26;
  transition: transform 4s linear;
}
.breath-core svg {
  width: 45px;
  height: 28px;
  stroke-width: 2;
  margin-bottom: 19px;
  color: #d3e8ff;
}
.breath-core > span:first-of-type {
  font-size: 24px;
  letter-spacing: -0.7px;
}
.breath-sub {
  font-size: 10px;
  color: #c2dbf6;
  margin-top: 10px;
}
.orbit-dot {
  position: absolute;
  background: #6eaeef;
  border: 5px solid var(--paper);
  border-radius: 50%;
  width: 19px;
  height: 19px;
  z-index: 2;
}
.dot-one {
  top: 17%;
  right: 10%;
}
.dot-two {
  bottom: 10%;
  left: 18%;
  width: 14px;
  height: 14px;
  border-width: 3px;
}
.breath-toggle {
  margin-top: 19px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  padding: 12px;
  border-radius: 30px;
}
.play-icon {
  display: grid;
  place-items: center;
  border: 1px solid #356ba5;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 9px;
  color: var(--blue);
}
.preview-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.activity-strip {
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  font-size: 18px;
  letter-spacing: -0.4px;
}
.strip-star {
  font-size: 24px;
  color: #5eaaff;
  font-weight: 400;
}
.explore {
  padding-block: 105px 110px;
  scroll-margin-top: 32px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}
h2 {
  font-size: clamp(36px, 4vw, 50px);
  letter-spacing: -2px;
  line-height: 1.15;
}
.section-heading p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  padding-right: 70px;
}
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.tabs button {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-size: 14px;
}
.tabs button[aria-selected='true'] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.tabs button:hover:not([aria-selected='true']) {
  background: var(--sky);
}
.tabs button > span {
  font-size: 18px;
}
.activity-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f1f3a;
  border-radius: 24px;
  overflow: hidden;
  min-height: 465px;
}
.activity-copy {
  padding: 45px 55px;
}
.activity-symbol {
  font-size: 27px;
  color: var(--blue);
  display: block;
  margin-bottom: 20px;
}
.activity-copy h3 {
  font-size: 37px;
  line-height: 1.18;
  letter-spacing: -1.5px;
  max-width: 340px;
}
.activity-copy p {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 20px;
  max-width: 350px;
  color: var(--muted);
}
.activity-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 2.3;
}
.activity-copy li:before {
  content: '✓';
  color: var(--blue);
  margin-right: 10px;
}
.product-preview {
  margin: 34px 34px 34px 12px;
  border-radius: 20px;
  background: #0a1628;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 32px #00000019;
}
.preview-top,
.preview-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  gap: 12px;
}
.preview-top > span:first-child {
  font-weight: 600;
  font-size: 13px;
}
.preview-pill {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 9px;
}
.timer-face {
  display: grid;
  place-items: center;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0deg 260deg, #193453 260deg);
  margin: 22px auto;
  padding: 5px;
}
.timer-inner {
  background: #0a1628;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}
.timer-inner span {
  font-size: 11px;
  color: var(--muted);
}
.timer-inner strong {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -2px;
}
.preview-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.approach {
  background: #0c1a30;
  padding-block: 90px;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.approach .lead {
  margin-top: 23px;
  font-size: 15px;
}
.principles article + article {
  border-top: 1px solid #233d60;
  padding-top: 26px;
  margin-top: 26px;
}
.principles h3 {
  font-size: 21px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.principles p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 410px;
}
.ritual-art {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 120px;
  margin-top: 32px;
}
.ritual-art span {
  display: block;
  width: 42px;
  border-radius: 30px;
  background: #4675ab;
  height: 44px;
}
.ritual-art span:nth-child(2) {
  height: 75px;
  background: #5197df;
}
.ritual-art span:nth-child(3) {
  height: 110px;
  background: #5eaaff;
}
.ritual-art span:nth-child(4) {
  height: 75px;
  background: #327fce;
}
.ritual-art span:nth-child(5) {
  background: #284e7e;
}
.faq {
  padding-block: 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.questions details {
  border-bottom: 1px solid var(--line);
}
.questions summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary span {
  font-size: 23px;
  color: var(--blue);
  line-height: 1;
}
.questions details[open] summary span {
  transform: rotate(45deg);
}
.questions details p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 24px;
  max-width: 530px;
}
.get-app {
  padding-bottom: 72px;
  scroll-margin-top: 30px;
}
.get-app-inner {
  background: var(--ink);
  color: white;
  border-radius: 26px;
  padding: 60px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.availability {
  font-size: 11px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #a4c8ee;
  margin-bottom: 23px;
}
.availability > span {
  background: #78b7ff;
}
.get-app h2 {
  font-size: 55px;
}
.get-app h2 + p {
  font-size: 14px;
  line-height: 1.9;
  color: #bbd2ed;
  margin-top: 22px;
}
.launch-action {
  text-align: center;
  min-width: 250px;
}
.launch-mark {
  display: grid;
  place-items: center;
  width: 75px;
  height: 75px;
  background: #153f70;
  color: #5eaaff;
  margin: 0 auto 22px;
  border-radius: 20px;
  font-size: 51px;
  font-weight: 300;
}
.launch-action p {
  font-size: 15px;
}
.launch-note {
  display: block;
  margin-top: 9px;
  font-size: 11px;
  color: #a4bfdf;
}
.launch-download {
  margin-top: 22px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 35px;
  gap: 24px;
}
.footer .wordmark {
  font-size: 28px;
}
.footer p,
.footer > span {
  font-size: 11px;
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 16px;
  background: white;
  z-index: 9;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 740px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  h1 {
    font-size: 60px;
    letter-spacing: -3px;
  }
  .hero {
    min-height: 610px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions > span {
    display: none;
  }
  .activity-copy {
    padding: 35px;
  }
  .activity-copy h3 {
    font-size: 32px;
  }
  .product-preview {
    margin: 25px 25px 25px 0;
    padding: 22px;
  }
  .timer-face {
    width: 200px;
  }
  .section-heading p {
    padding-right: 0;
  }
  .approach-grid {
    gap: 45px;
  }
  .get-app-inner {
    padding: 45px;
  }
  .get-app h2 {
    font-size: 46px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 88px;
    gap: 12px;
  }
  .wordmark {
    font-size: 29px;
  }
  .wordmark svg {
    width: 27px;
    margin-right: 6px;
  }
  nav {
    display: none;
  }
  .button-small {
    font-size: 11px;
    padding: 11px 15px;
    gap: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 40px;
    gap: 26px;
  }
  .intro {
    font-size: 11px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(48px, 10.9vw, 70px);
    letter-spacing: -2.5px;
  }
  .hero .lead {
    font-size: 15px;
    line-height: 1.9;
    max-width: 370px;
    margin-top: 23px;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero-actions > span {
    display: block;
    font-size: 10px;
  }
  .button {
    padding: 16px 20px;
    font-size: 12px;
    gap: 24px;
  }
  .breath-instrument {
    width: min(100%, 360px);
  }
  .breath-core > span:first-of-type {
    font-size: 21px;
  }
  .breath-core svg {
    width: 35px;
    margin-bottom: 12px;
  }
  .breath-sub {
    font-size: 9px;
  }
  .breath-toggle {
    margin-top: 8px;
  }
  .preview-note {
    font-size: 9px;
  }
  .activity-strip {
    font-size: 12px;
    padding-block: 20px;
  }
  .strip-star {
    font-size: 15px;
  }
  .explore {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  h2 {
    font-size: 37px;
    letter-spacing: -1.5px;
  }
  .section-heading p {
    font-size: 13px;
    margin-top: 20px;
  }
  .section-heading p br {
    display: none;
  }
  .tabs {
    overflow-x: auto;
    padding: 4px 4px 10px;
    margin-inline: -4px;
    gap: 7px;
  }
  .tabs button {
    flex: 0 0 auto;
    min-width: 115px;
    padding: 14px;
    font-size: 12px;
    gap: 24px;
  }
  .activity-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .activity-copy {
    padding: 30px;
  }
  .activity-copy h3 {
    font-size: 33px;
  }
  .activity-symbol {
    margin-bottom: 15px;
  }
  .activity-copy p {
    font-size: 13px;
  }
  .product-preview {
    margin: 0 20px 20px;
    min-height: 325px;
  }
  .timer-face {
    width: 200px;
  }
  .approach {
    padding-block: 60px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ritual-art {
    height: 95px;
    margin-top: 18px;
  }
  .ritual-art span {
    width: 32px;
  }
  .ritual-art span:nth-child(3) {
    height: 85px;
  }
  .ritual-art span:nth-child(2),
  .ritual-art span:nth-child(4) {
    height: 60px;
  }
  .faq {
    padding-block: 65px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .questions summary {
    font-size: 13px;
    padding-block: 22px;
  }
  .get-app {
    padding-bottom: 45px;
  }
  .get-app-inner {
    padding: 35px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .get-app h2 {
    font-size: 43px;
  }
  .launch-action {
    text-align: left;
    min-width: 0;
  }
  .launch-mark {
    display: none;
  }
  .footer {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer .wordmark {
    width: 100%;
  }
  .footer p,
  .footer > span {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  .breath-core {
    transition: none;
  }
}

/* Neon Blue: the same blue palette as the mobile app. */
:root {
  color-scheme: dark;
}
.wordmark {
  display: block;
  width: 148px;
  line-height: 0;
}
.wordmark img {
  width: 100%;
  height: auto;
}
.button {
  color: #071526;
}
.button-small {
  color: var(--ink);
}
.tabs button[aria-selected='true'] {
  background: #5eaaff;
  border-color: #5eaaff;
  color: #071526;
}
.get-app-inner {
  background: #102443;
  color: var(--ink);
  border: 1px solid #254b78;
}
.launch-mark {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 22%;
  box-shadow: 0 12px 25px #00000040;
}
.footer .wordmark {
  width: 125px;
}
.skip-link:focus {
  background: #0f1f3a;
}
@media (max-width: 700px) {
  .wordmark {
    width: 125px;
  }
  .footer .wordmark {
    width: 125px;
    flex-basis: 125px;
  }
  .launch-mark {
    display: block;
    margin: 0 0 20px;
    width: 80px;
    height: 80px;
  }
}

/* Sounds leads; previews follow in their own quiet section. */
.sounds-section {
  padding-block: 45px 110px;
}
.sounds-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 85px;
  padding-bottom: 100px;
}
.sound-eyebrow {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.sounds-intro h1 {
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.sounds-intro .lead {
  max-width: 440px;
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.8;
}
.library-link {
  display: inline-flex;
  gap: 35px;
  align-items: center;
  margin-top: 36px;
  padding-block: 12px;
  border-bottom: 1px solid var(--blue);
  font-size: 15px;
}
.library-link span {
  color: var(--blue);
  font-size: 23px;
}
.listening-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.sound-player {
  position: static;
  display: block;
  margin: 0;
  padding: 30px 34px 26px;
  border-radius: 40px;
  background: linear-gradient(155deg, #203047, #102039);
  border: 1px solid #31425d;
  box-shadow: none;
  text-align: center;
  min-width: 0;
}
.player-state {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  color: #92b9ef;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.player-state > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71839d;
}
.sound-player[data-playing='true'] .player-state > span:first-child {
  background: var(--blue);
}
.sound-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border: 2px solid #ffffff09;
  border-radius: 50%;
  margin: 14px auto 8px;
}
.sound-orbit::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid #ffffff13;
  border-radius: 50%;
}
.sound-emblem {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #80b7b9;
  color: #0a2133;
}
.sound-emblem svg {
  width: 42px;
  height: 46px;
  stroke-width: 1.7;
}
.sound-player h2 {
  font-size: clamp(27px, 3vw, 37px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}
#sound-description {
  color: #91b5e6;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
  min-height: 21px;
}
.player-divider {
  height: 2px;
  background: #ffffff0a;
  margin-top: 24px;
}
.sound-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 60px;
}
.sound-wave i {
  height: var(--height);
  width: 4px;
  background: #5eaaff;
  opacity: 0.5;
  border-radius: 5px;
  transform: scaleY(0.45);
}
.sound-player[data-playing='true'] .sound-wave i {
  animation: sound-pulse 1.2s ease-in-out infinite alternate;
  animation-delay: var(--delay);
}
@keyframes sound-pulse {
  from {
    transform: scaleY(0.45);
  }
  to {
    transform: scaleY(1);
  }
}
.sound-player .transport {
  justify-content: center;
  align-items: center;
  gap: 45px;
}
.sound-player .transport-side {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  min-width: 44px;
  padding: 8px 0;
  color: #91b5e6;
  background: none;
  border: 0;
  font-size: 12px;
}
.transport-side > span {
  font-size: 26px;
  line-height: 28px;
}
.transport-side svg {
  width: 27px;
  height: 28px;
  fill: currentColor;
  stroke-width: 1;
}
#sound-toggle {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  padding: 0;
  border-radius: 50%;
  background: #2d7ff9;
  color: #08182b;
  font-size: 29px;
  border: 0;
}
#sound-toggle:hover {
  background: #5eaaff;
}
#sound-status {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  min-height: 18px;
  margin: 14px 0;
}
.sound-player .volume-label {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid #ffffff0c;
  padding-top: 20px;
  color: #91b5e6;
}
.volume-label svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke-width: 1.7;
}
.sound-player .volume-label input {
  flex: 1;
  min-width: 0;
  width: auto;
  margin: 0;
}
.volume-label output {
  min-width: 30px;
}
.library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  scroll-margin-top: 35px;
}
.library-heading .sound-eyebrow {
  margin-bottom: 15px;
}
.library-heading h2 {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
}
.library-heading > span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}
.listening-options {
  margin-top: 32px;
  border-block: 1px solid var(--line);
}
.listening-options > summary {
  padding: 22px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
}
.sound-help {
  margin-top: 12px;
}
.app-sections {
  padding-block: 110px;
  border-block: 1px solid var(--line);
  background: #0c1a2d;
  scroll-margin-top: 20px;
}
.app-sections .section-heading {
  margin-bottom: 65px;
  align-items: end;
}
.app-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.app-feature {
  min-width: 0;
  scroll-margin-top: 35px;
}
.feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.feature-heading h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
}
.feature-heading > span {
  color: var(--muted);
  font-size: 11px;
}
.app-screen {
  background: #0a1628;
  border: 1px solid #26364e;
  border-radius: 30px;
  padding: 30px;
}
.screen-title {
  font-size: clamp(25px, 2.7vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.2;
  font-weight: 500;
}
.screen-description {
  color: #91b5e6;
  line-height: 1.65;
  font-size: 13px;
  margin: 18px 0 30px;
}
.routine-card {
  border: 1px solid #2b3c57;
  border-radius: 25px;
  padding: 20px;
  margin-top: 15px;
  background: #102039;
}
.routine-card h4,
.preview-category h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.routine-card p,
.preview-category p {
  color: #91b5e6;
  font-size: 12px;
  line-height: 1.65;
  margin-top: 8px;
}
.quick-timer,
.routine-title,
.preview-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quick-timer,
.custom-interval {
  border-color: #377be0;
  background: #1c2d45;
}
.routine-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #112039;
  color: #5eaaff;
  font-size: 25px;
}
.preview-arrow {
  margin-left: auto;
  color: #438bf0;
  font-size: 28px;
}
.routine-title small {
  font-size: 9px;
  color: #6faaff;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.custom-interval > p {
  margin-top: 17px;
}
.interval-bar {
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(to right, #f35c62 50%, #31b8eb 50%);
  margin-top: 17px;
}
.routine-card .interval-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.interval-meta span:first-child {
  color: #ff7c82;
}
.interval-meta span:last-child {
  color: #59c6ec;
}
.interval-meta b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  margin-left: 5px;
}
.preview-category {
  margin: 30px 0 17px;
}
.preview-category > span:last-child {
  margin-left: auto;
  color: #91b5e6;
  font-size: 13px;
}
.preview-category .routine-icon {
  background: #1c2d45;
}
.favorite {
  color: #2d7ff9;
  margin-left: 5px;
}
.breath-card .routine-title {
  align-items: start;
  justify-content: space-between;
}
.round-arrow {
  border: 1px solid #69adf8;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #69adf8;
  font-size: 24px;
}
.breath-pattern {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px;
  border-radius: 20px;
  background: #1c2d45;
  margin-top: 22px;
  font-size: 11px;
  line-height: 1.7;
}
.rhythm-bars {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.rhythm-bars i {
  width: 8px;
  height: 32px;
  border-radius: 8px;
  background: #5eaaff;
}
.rhythm-bars i:nth-child(2n) {
  background: #8ebdf4;
}
.rhythm-bars i:nth-child(3) {
  opacity: 0.5;
}
.breath-meta {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  color: #91b5e6;
  line-height: 1.6;
}
.feature-caption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 22px;
  max-width: 420px;
}
.more-activities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-block: 55px;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}
.more-activities article {
  display: flex;
  gap: 20px;
}
.more-activities h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.more-activities p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 380px;
}
input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
@media (max-width: 1000px) {
  .sounds-hero {
    gap: 35px;
  }
  .app-preview-grid,
  .more-activities {
    gap: 30px;
  }
  .app-screen {
    padding: 22px;
  }
  .routine-card {
    padding: 16px;
  }
  .routine-card h4,
  .preview-category h4 {
    font-size: 17px;
  }
}
@media (max-width: 700px) {
  .sounds-section {
    padding-block: 28px 65px;
  }
  .sounds-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 65px;
  }
  .sounds-intro .lead {
    font-size: 16px;
    margin-top: 20px;
  }
  .sounds-intro h1 {
    font-size: clamp(48px, 12vw, 72px);
  }
  .library-link {
    margin-top: 17px;
  }
  .listening-note {
    margin-top: 14px;
  }
  .sound-player {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
    padding: 25px;
    border-radius: 34px;
  }
  .sound-player .transport {
    gap: 38px;
  }
  .library-heading {
    align-items: start;
    gap: 10px;
  }
  .library-heading > span {
    margin-top: 43px;
    font-size: 11px;
  }
  .library-heading h2 {
    font-size: 27px;
  }
  .app-sections {
    padding-block: 65px;
  }
  .app-sections .section-heading {
    margin-bottom: 40px;
  }
  .app-preview-grid,
  .more-activities {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .app-screen {
    padding: 24px;
  }
  .screen-title {
    font-size: 30px;
  }
  .more-activities {
    padding-block: 35px;
    margin-top: 40px;
    gap: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sound-player[data-playing='true'] .sound-wave i {
    animation: none;
    transform: scaleY(1);
  }
}
