:root {
  --primary: #ffb100;
  --background: #ffffff;
  --headline: #212121;
  --text-dark: #616161;
  --text-light: #bdbdbd;
  --border: #9f9f9f;
  --soft-border: #d8d8d8;
  --panel: #fffdf8;
  --shadow: 0 18px 42px rgba(33, 33, 33, 0.08);
  --font: "Baloo 2", Arial, sans-serif;
  --tool-flip-duration: 820ms;
  --tool-flip-ease: cubic-bezier(0.37, 0, 0.63, 1);
  --tool-content-inset: 26px;
  --page-max: 1240px;
  --section-x: clamp(18px, 4vw, 42px);
  --section-y: clamp(24px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--headline);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.section {
  padding: var(--section-y) var(--section-x);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: none;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 800;
  line-height: 0.92;
  color: var(--headline);
  white-space: nowrap;
}

h2 {
  font-size: clamp(31px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

h3 {
  font-size: 28px;
  font-weight: 500;
}

.section-subtitle {
  margin-top: 6px;
  color: var(--text-dark);
  font-size: clamp(16px, 2vw, 21px);
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding-top: clamp(22px, 3vw, 38px);
  padding-bottom: clamp(18px, 3vw, 32px);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 42px);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.7vw, 18px);
}

.brand-logo {
  width: clamp(58px, 7.5vw, 96px);
  height: clamp(58px, 7.5vw, 96px);
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(112px, 14vw, 180px);
  height: auto;
}

.store-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
}

.store-link {
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.store-link img {
  width: auto;
  height: clamp(32px, 4.3vw, 58px);
  object-fit: contain;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(236px, 22vw, 300px);
  align-items: stretch;
  gap: clamp(22px, 3vw, 42px);
}

.hero-copy {
  width: min(100%, 820px);
  max-width: 100%;
  justify-self: center;
  text-align: left;
}

.hero-subtitle {
  margin-top: clamp(4px, 0.7vw, 8px);
  max-width: none;
  color: var(--text-dark);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1;
  white-space: nowrap;
}

.hero-action-row {
  display: grid;
  grid-template-columns: clamp(128px, 14vw, 170px) 178px;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  margin-top: clamp(8px, 1.4vw, 18px);
}

.hero-buddy {
  width: clamp(110px, 11.5vw, 150px);
  justify-self: center;
}

.wake-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 178px;
  min-height: clamp(48px, 4.6vw, 64px);
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffb100;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transform-origin: center;
  transition:
    transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 150ms cubic-bezier(0.215, 0.61, 0.355, 1),
    color 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-tap-highlight-color: transparent;
}

.wake-button:focus-visible {
  outline: 2px solid rgba(255, 177, 0, 0.45);
  outline-offset: 4px;
}

.wake-button.is-pressed {
  background: #ffa000;
  transform: scale(0.985);
  transition-duration: 90ms;
}

.wake-button:disabled {
  background: #fff8e1;
  color: #616161;
  cursor: default;
}

.wake-button:disabled.is-pressed {
  transform: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px);
  margin-top: clamp(6px, 1.1vw, 12px);
  width: min(100%, 700px);
}

.hero-stat strong {
  display: block;
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 500;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: var(--text-dark);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 0.96;
}

.stat-note {
  width: var(--hero-layout-width);
  margin-top: clamp(6px, 1vw, 12px);
  color: var(--text-dark);
  font-size: 13px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 20px);
  width: min(100%, 700px);
  margin-top: clamp(8px, 1.4vw, 14px);
}

.stars {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.4vw, 5px);
  color: var(--primary);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.rating-copy strong,
.rating-copy span {
  display: block;
}

.rating-copy strong {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.rating-copy span {
  color: var(--text-dark);
  font-size: clamp(18px, 2vw, 25px);
  white-space: nowrap;
}

.rating-faces {
  display: flex;
  align-items: center;
}

.rating-faces img {
  width: clamp(42px, 4.8vw, 62px);
  height: clamp(42px, 4.8vw, 62px);
  margin-left: clamp(-12px, -1vw, -8px);
  border: 3px solid #ffffff;
  border-radius: 999px;
  object-fit: cover;
}

.rating-faces img:first-child {
  margin-left: 0;
}

.hero-visual {
  --hero-phone-bottom-offset: 30px;
  --hero-zoe-width: clamp(180px, 15vw, 240px);
  --hero-zoe-overlap: clamp(88px, 7.4vw, 112px);
  position: relative;
  min-height: 0;
  padding-top: 0;
}

.hero-meditation {
  position: absolute;
  right: clamp(110px, 10vw, 140px);
  bottom: 0;
  width: var(--hero-zoe-width);
  z-index: 3;
}

.phone-frame {
  --phone-border: 9px;
  --phone-radius: 46px;
  --phone-notch-top: 16px;
  --phone-notch-width: 94px;
  --phone-notch-height: 28px;
  --phone-camera-top: 22px;
  --phone-camera-offset: 28px;
  --phone-camera-size: 9px;
  --phone-screen-radius: 36px;
  box-sizing: content-box;
  position: relative;
  overflow: hidden;
  border: var(--phone-border) solid #151719;
  border-radius: var(--phone-radius);
  background: #111315;
  box-shadow: 0 18px 36px rgba(33, 33, 33, 0.18);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: var(--phone-notch-top);
  left: 50%;
  width: var(--phone-notch-width);
  height: var(--phone-notch-height);
  border-radius: 999px;
  background: #050506;
  transform: translateX(-50%);
  z-index: 4;
}

.phone-frame::after {
  content: "";
  position: absolute;
  top: var(--phone-camera-top);
  left: calc(50% + var(--phone-camera-offset));
  width: var(--phone-camera-size);
  height: var(--phone-camera-size);
  border-radius: 50%;
  background: #102651;
  box-shadow: 0 0 0 2px rgba(70, 120, 210, 0.25);
  z-index: 5;
}

.phone-frame-large {
  --phone-border: clamp(7px, 0.66vw, 9px);
  --phone-radius: 14% / 6.6%;
  --phone-notch-top: 1.65%;
  --phone-notch-width: 38%;
  --phone-notch-height: 5.05%;
  --phone-camera-top: 4.25%;
  --phone-camera-offset: 12.2%;
  --phone-camera-size: 3.9%;
  --phone-screen-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: calc(100% - var(--hero-phone-bottom-offset));
  aspect-ratio: 6 / 13;
  margin: 0;
}

.phone-frame-card {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: var(--how-gif-radius, 7%);
  background: transparent;
  box-shadow: none;
}

.phone-frame-card::before {
  display: none;
}

.phone-frame-card::after {
  display: none;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--phone-screen-radius);
  background: #ffffff;
}

.phone-frame-card .phone-screen {
  border-radius: var(--how-gif-radius, 7%);
}

.optional-screen {
  position: relative;
  display: block;
}

.optional-screen.has-media {
  display: block;
  background: #ffffff;
  border-radius: inherit;
}

.screen-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.how {
  padding-top: clamp(24px, 4vw, 52px);
}

.how-wrap {
  --how-card-width: 25vw;
  --how-gap: clamp(18px, 3vw, 34px);
  --how-gif-width: 23.75vw;
  --how-card-pad: calc(((var(--how-card-width) - var(--how-gif-width)) / 2) - 1px);
  --how-radius: 18px;
  --how-gif-radius: calc(var(--how-radius) * 0.95);
  --how-text-size: clamp(10px, calc(var(--how-card-width) * 0.064), 22px);
  --how-text-pad-bottom: clamp(3px, 0.7vw, 8px);
  --how-text-height: calc((var(--how-text-size) * 2.08) + var(--how-text-pad-bottom));
  --how-square-card-height: calc(var(--how-gif-width) + (3 * var(--how-card-pad)) + var(--how-text-height) + 2px);
  --how-phone-card-height: calc((var(--how-gif-width) * 19.5 / 9) + (3 * var(--how-card-pad)) + var(--how-text-height) + 2px);
  --how-card-group-width: calc((2 * var(--how-card-width)) + var(--how-gap));
  --how-card-left: calc((100vw - var(--how-card-group-width)) / 2);
  --how-card-right: calc(100vw - var(--how-card-left));
  --how-left-rail: var(--how-card-left);
  --how-right-rail: calc(100vw - var(--how-card-right));
  --how-left-character-width: calc(var(--how-left-rail) / 1.1);
  --how-right-character-width: calc(var(--how-right-rail) / 1.1);
  width: 100vw;
  position: relative;
  margin-top: clamp(18px, 3vw, 30px);
  margin-left: calc(50% - 50vw);
}

.how-grid {
  display: flex;
  gap: var(--how-gap);
  justify-content: center;
  align-items: flex-start;
}

.how-column {
  display: flex;
  flex-direction: column;
  gap: var(--how-gap);
  width: var(--how-card-width);
}

.how-card {
  display: flex;
  flex-direction: column;
  gap: var(--how-card-pad);
  width: var(--how-card-width);
  height: auto;
  overflow: hidden;
  min-height: 0;
  padding: var(--how-card-pad);
  border: 1px solid var(--border);
  border-radius: var(--how-radius);
  background: #ffffff;
  z-index: 2;
}

.how-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 clamp(3px, 0.7vw, 8px) var(--how-text-pad-bottom);
  color: var(--text-dark);
  font-size: var(--how-text-size);
  line-height: 1.04;
}

.screen-card {
  width: var(--how-gif-width, 90%);
  aspect-ratio: 1 / 1;
  height: auto;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--how-gif-radius);
  background: #ffffff;
}

.screen-card::before {
  inset: 0;
  border-radius: inherit;
}

.screen-card.tall-screen {
  aspect-ratio: 9 / 19.5;
}

.phone-how-card {
  min-height: 0;
}

.phone-how-card .phone-frame {
  width: var(--how-gif-width, 90%);
  margin: 0 auto;
  border: 0;
  border-radius: var(--how-gif-radius);
  background: transparent;
  box-shadow: none;
}

.phone-how-card .phone-frame::before,
.phone-how-card .phone-frame::after {
  display: none;
}

.phone-how-card p {
  padding-top: 0;
}

.dark-phone .phone-screen {
  background: #ffffff;
}

.how-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}

.how-deco-walter {
  top: calc(var(--how-square-card-height) - var(--how-left-character-width));
  left: calc(var(--how-left-rail) / 2);
  width: var(--how-left-character-width);
}

.how-deco-tom {
  top: calc(var(--how-square-card-height) + var(--how-gap) + (var(--how-phone-card-height) / 2) - (var(--how-right-character-width) / 2));
  left: calc(var(--how-card-right) + (var(--how-right-rail) / 2));
  width: var(--how-right-character-width);
}

.how-deco-finn {
  top: calc((2 * var(--how-square-card-height)) + (2 * var(--how-gap)) + var(--how-phone-card-height) - var(--how-left-character-width));
  left: calc(var(--how-left-rail) / 2);
  width: var(--how-left-character-width);
}

.how-card[data-step="1"] {
  grid-column: 1;
  grid-row: 1;
}

.how-card[data-step="2"] {
  grid-column: 2;
  grid-row: 1;
}

.how-card[data-step="3"] {
  grid-column: 1;
  grid-row: 2;
}

.how-card[data-step="4"] {
  grid-column: 2;
  grid-row: 2;
}

.how-card[data-step="5"] {
  grid-column: 1;
  grid-row: 3;
}

.how-card[data-step="6"] {
  grid-column: 2;
  grid-row: 3;
}

.how-wrap.is-single-column {
  --how-card-width: 50vw;
  --how-gif-width: 47.5vw;
  --how-card-pad: calc(((var(--how-card-width) - var(--how-gif-width)) / 2) - 1px);
  --how-text-size: clamp(10px, calc(var(--how-card-width) * 0.064), 22px);
  --how-card-group-width: var(--how-card-width);
  --how-card-left: calc((100vw - var(--how-card-width)) / 2);
  --how-card-right: calc(100vw - var(--how-card-left));
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.how-wrap.is-single-column .how-grid {
  display: grid;
  grid-template-columns: var(--how-card-width);
}

.how-wrap.is-single-column .how-column {
  display: contents;
}

.how-wrap.is-single-column .how-deco {
  display: block;
  z-index: 3;
}

.how-wrap.is-single-column .how-card {
  width: var(--how-card-width);
}

.how-wrap.is-single-column .how-deco-walter {
  top: calc(var(--how-square-card-height) - var(--how-left-character-width));
  left: calc(var(--how-left-rail) / 2);
  width: var(--how-left-character-width);
}

.how-wrap.is-single-column .how-deco-tom,
.how-wrap.is-single-column .how-deco-finn {
  width: var(--how-left-character-width);
}

.how-wrap.is-single-column .how-deco-tom {
  top: calc((3 * var(--how-square-card-height)) + (3 * var(--how-gap)) + (var(--how-phone-card-height) / 2) - (var(--how-right-character-width) / 2));
  left: calc(var(--how-card-right) + (var(--how-right-rail) / 2));
  width: var(--how-right-character-width);
}

.how-wrap.is-single-column .how-deco-finn {
  top: calc((4 * var(--how-square-card-height)) + (2 * var(--how-phone-card-height)) + (5 * var(--how-gap)) - var(--how-left-character-width));
  left: calc(var(--how-left-rail) / 2);
  width: var(--how-left-character-width);
}

.how-wrap.is-single-column .how-card[data-step="1"] {
  grid-column: 1;
  grid-row: 1;
}

.how-wrap.is-single-column .how-card[data-step="2"] {
  grid-column: 1;
  grid-row: 2;
}

.how-wrap.is-single-column .how-card[data-step="3"] {
  grid-column: 1;
  grid-row: 3;
}

.how-wrap.is-single-column .how-card[data-step="4"] {
  grid-column: 1;
  grid-row: 4;
}

.how-wrap.is-single-column .how-card[data-step="5"] {
  grid-column: 1;
  grid-row: 5;
}

.how-wrap.is-single-column .how-card[data-step="6"] {
  grid-column: 1;
  grid-row: 6;
}

.why {
  padding-top: clamp(24px, 3.6vw, 42px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(100%, 640px);
  margin: clamp(18px, 2.8vw, 28px) auto 0;
}

.compare-card {
  width: min(100%, 300px);
  min-height: 310px;
  padding: clamp(22px, 2.5vw, 30px) clamp(18px, 2.2vw, 28px) 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  justify-self: center;
  text-align: center;
}

.compare-card h3 {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.compare-card ul {
  display: grid;
  gap: 11px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  color: var(--text-dark);
  font-size: clamp(17px, 1.8vw, 20px);
  list-style: none;
  text-align: left;
}

.compare-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
}

.check-list li::before {
  content: "\2713";
  color: var(--primary);
  font-size: 30px;
  line-height: 0.8;
}

.x-list li::before {
  content: "\00d7";
  color: var(--text-dark);
  font-size: 34px;
  line-height: 0.72;
}

.compare-card img {
  width: clamp(96px, 10vw, 122px);
  height: clamp(96px, 10vw, 122px);
  margin: clamp(28px, 4vw, 44px) auto 0;
  object-fit: contain;
}

.squad {
  padding-top: clamp(22px, 3.5vw, 38px);
}

.squad-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  width: min(100%, 900px);
  margin: clamp(20px, 3vw, 32px) auto 0;
}

.squad-image {
  width: 100%;
}

.buddy-selector {
  text-align: center;
}

.buddy-selector h3 {
  margin-bottom: 5px;
}

.buddy-controls {
  --buddy-stage-width: max(232px, calc(var(--focused-buddy-width, 92px) + 112px));
  display: grid;
  grid-template-columns: 48px var(--buddy-stage-width) 48px;
  align-items: center;
  gap: 6px;
  width: min(100%, calc(108px + var(--buddy-stage-width)));
  margin: 0 auto;
  transform: translateY(var(--focused-buddy-offset, 0));
}

.buddy-stage {
  --buddy-image-width: var(--focused-buddy-width, clamp(74px, 8vw, 92px));
  position: relative;
  width: var(--buddy-stage-width);
  height: var(--focused-buddy-height, clamp(210px, 21vw, 250px));
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
}

.buddy-stage.is-dragging {
  cursor: grabbing;
}

.buddy-stage > img,
.buddy-slide img {
  position: absolute;
  top: 0;
  left: calc(50% - (var(--buddy-image-width) / 2));
  width: var(--buddy-image-width);
  height: 100%;
  object-fit: contain;
}

.buddy-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.buddy-track.is-settling {
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.buddy-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--headline);
  cursor: pointer;
  font-size: 46px;
  line-height: 1;
  transition: color 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--primary);
}

.icon-button:disabled {
  cursor: default;
  opacity: 0.45;
}

.buddy-selector h3,
.buddy-selector p {
  transition: opacity 120ms ease;
}

.buddy-selector.is-transitioning h3,
.buddy-selector.is-transitioning p {
  opacity: 0;
}

.buddy-selector p {
  margin-top: 7px;
  color: var(--text-dark);
  font-size: clamp(16px, 1.6vw, 19px);
}

.tools {
  overflow: visible;
  padding-top: clamp(26px, 4vw, 44px);
}

.tools-carousel {
  position: relative;
  width: min(100%, 1060px);
  min-height: 0;
  margin: 24px auto 0;
  --tool-panel-width: 420px;
  --tool-card-size: 134px;
  --tool-card-gap: 30px;
  --tool-content-inset: 26px;
  --tool-inner-offset: calc((var(--tool-panel-width) / 2) + var(--tool-card-gap));
  --tool-outer-offset: calc(var(--tool-inner-offset) + var(--tool-card-size) + var(--tool-card-gap));
  --tool-left-inner-offset: var(--tool-inner-offset);
  --tool-right-inner-offset: var(--tool-inner-offset);
  --tool-left-outer-offset: var(--tool-outer-offset);
  --tool-right-outer-offset: var(--tool-outer-offset);
}

.tool-panel {
  position: relative;
  z-index: 4;
  width: min(100%, var(--tool-panel-width));
  height: 500px;
  margin: 0 auto;
  padding: 20px 26px 16px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
}

.tool-panel.is-morphing {
  z-index: 1020;
  visibility: visible;
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

.tool-panel.is-morphing .tool-panel-icon {
  opacity: 0;
}

.tool-panel.is-morphing h3 {
  opacity: 0;
}

.tool-panel.is-morphing .tool-copy {
  opacity: 0;
  clip-path: none;
  transition: none;
}

.tool-panel .tool-copy {
  transition: none;
}

.tool-panel-icon {
  display: grid;
  place-items: center;
  height: 112px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #f1c8cb;
}

.tool-panel-icon img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.tool-panel h3 {
  margin-bottom: 26px;
}

.tool-copy h4 {
  margin: 24px 0 8px;
  color: var(--headline);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.tool-copy p,
.tool-copy li {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.12;
}

.tool-copy ul {
  margin: 6px 0 0 22px;
  padding: 0;
}

.tool-copy ul.is-two-column {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(4, auto);
  column-gap: 48px;
  max-width: 100%;
}

.tool-copy ul.is-two-column li {
  break-inside: avoid;
}

.tool-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.tool-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--tool-card-size);
  height: var(--tool-card-size);
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(var(--x), -50%) scale(var(--scale));
  opacity: var(--opacity);
  transition: transform var(--tool-flip-duration) var(--tool-flip-ease), opacity 260ms ease;
  -webkit-tap-highlight-color: transparent;
}

.tools-carousel.is-transitioning .tool-card {
  pointer-events: none;
  transition: none !important;
}

.tools-carousel.is-measuring .tool-card {
  transition: none !important;
}

.tool-card[data-distance="0"] {
  opacity: 0;
  pointer-events: none;
}

.tool-card[data-distance="2"],
.tool-card[data-distance="-2"] {
  opacity: 0 !important;
  pointer-events: none;
}

.tool-card.is-hidden {
  display: none;
  transition: none;
}

.tool-card.is-transition-target {
  opacity: 0 !important;
  transition: none !important;
}

.tool-card.is-transition-source {
  opacity: 0 !important;
  pointer-events: none;
  transition: none !important;
}

.tool-card.is-transition-replacement {
  opacity: 0 !important;
  pointer-events: none;
  transition: none !important;
}

.tool-card.is-transition-displaced {
  opacity: 0 !important;
  pointer-events: none;
  transition: none !important;
}

.tool-card:active {
  background: var(--tool-color, #eef4f4);
}

.tool-card:focus {
  outline: none;
}

.tool-card:focus-visible {
  outline: 2px solid rgba(255, 177, 0, 0.6);
  outline-offset: 4px;
}

.tool-card-plate {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--tool-color, #eef4f4);
  pointer-events: none;
}

.tool-card img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.tool-card .tool-card-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  width: 100%;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.tool-card:hover,
.tool-card:focus-visible {
  transform: translate(var(--x), -50%) scale(calc(var(--scale) + 0.04));
}

.tools-carousel.is-measuring .tool-card:hover,
.tools-carousel.is-measuring .tool-card:focus-visible,
.tools-carousel.is-transitioning .tool-card:hover,
.tools-carousel.is-transitioning .tool-card:focus-visible {
  transform: translate(var(--x), -50%) scale(var(--scale));
}

.tool-flip-ghost {
  position: absolute;
  z-index: 1000;
  display: block;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: visible;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  color: var(--headline);
  pointer-events: none;
  transition: none;
}

.tool-flip-ghost--outgoing {
  z-index: 1000;
}

.tool-flip-ghost--displaced {
  z-index: 995;
}

.tool-flip-ghost--replacement {
  z-index: 1005;
}

.tool-flip-ghost--incoming {
  z-index: 1010;
}

.tool-flip-shell,
.tool-flip-plate,
.tool-flip-icon,
.tool-flip-title,
.tool-flip-copy {
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  backface-visibility: hidden;
  transition: none;
}

.tool-flip-shell {
  z-index: 1;
  border: 1px solid var(--border);
  background: #ffffff;
  will-change: left, top, width, height, border-radius;
}

.tool-flip-plate {
  z-index: 3;
  border: 1px solid transparent;
  background: var(--tool-color, #eef4f4);
  will-change: left, top, width, height, border-radius;
}

.tool-flip-icon {
  z-index: 6;
  display: block;
  max-width: none;
  object-fit: contain;
  will-change: left, top, width, height;
}

.tool-flip-title {
  z-index: 7;
  display: block;
  margin: 0;
  padding: 0;
  color: var(--headline);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  will-change: transform, opacity;
}

.tool-flip-copy {
  z-index: 8;
  display: block;
  overflow: visible;
  color: #212121;
  will-change: transform, opacity;
}

.tool-flip-title--to {
  z-index: 9;
}

.testimonials {
  padding-top: clamp(24px, 3.5vw, 40px);
}

.testimonial-shell {
  margin-top: clamp(18px, 2.8vw, 28px);
}

.testimonial-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  width: max-content;
  margin: 0;
  padding: 0 6px 8px;
  list-style: none;
  cursor: grab;
}

.testimonial-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.testimonial-viewport.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.testimonial-card {
  flex: 0 0 clamp(270px, 38vw, 320px);
  min-height: 136px;
  padding: 18px 24px 18px;
  border: 1px solid var(--soft-border);
  border-radius: 14px;
  background: #ffffff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-align: center;
}

.testimonial-card .stars {
  justify-content: center;
  font-size: 28px;
  gap: 2px;
}

.testimonial-card blockquote {
  margin: 4px 0 14px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.18;
}

.testimonial-person {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 18px;
}

.testimonial-person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
}

.testimonial-chevron,
.testimonial-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.testimonial-chevron {
  width: 44px;
  height: 44px;
  color: var(--text-dark);
  font-size: 38px;
  line-height: 1;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.testimonial-chevron:hover,
.testimonial-chevron:focus-visible {
  color: var(--primary);
}

.testimonial-chevron:disabled {
  opacity: 0.28;
  cursor: default;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dot {
  width: 32px;
  height: 32px;
}

.testimonial-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #8a8a8a;
  border-radius: 50%;
  background: #ffffff;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.testimonial-dot:hover::before,
.testimonial-dot:focus-visible::before {
  border-color: var(--primary);
}

.testimonial-dot.is-active::before {
  border-color: var(--primary);
  background: var(--primary);
  transform: scale(1.12);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-viewport {
    scroll-behavior: auto;
  }
}

@media (min-width: 1180px) {
  .testimonial-viewport {
    overflow: visible;
    scroll-behavior: auto;
    scroll-snap-type: none;
  }

  .testimonial-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: clamp(14px, 1.7vw, 22px);
    padding: 0;
    cursor: default;
  }

  .testimonial-card {
    min-width: 0;
    min-height: 160px;
  }

  .testimonial-controls {
    display: none;
  }
}

.download {
  padding-top: clamp(18px, 3vw, 28px);
  padding-bottom: clamp(18px, 3vw, 30px);
}

.download .store-links-large {
  justify-content: center;
}

.store-links-large .store-link img {
  width: auto;
  height: clamp(45px, 5.6vw, 62px);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 42px);
  padding-top: clamp(8px, 2vw, 20px);
}

.contact-buddy {
  width: clamp(130px, 17vw, 190px);
}

.contact h2 {
  text-align: left;
}

.contact a {
  display: inline-block;
  margin-top: 10px;
  color: var(--text-dark);
  font-size: clamp(18px, 2vw, 22px);
  transition: color 160ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--primary);
}

.site-footer {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 16px var(--section-x) 38px;
  color: var(--text-dark);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #f3f3f3;
  transform: translateY(-2px);
}

.social-links img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.site-footer p {
  font-size: clamp(12px, 4vw, 17px);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .buddy-selector h3,
  .buddy-selector p {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .site-shell,
  .site-footer {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 24px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 27px;
  }

  .hero-visual {
    --hero-zoe-width: 180px;
    --hero-zoe-overlap: 108px;
  }

  .hero-meditation {
    right: calc(var(--hero-phone-total-width) - var(--hero-zoe-overlap));
    width: var(--hero-zoe-width);
  }

}

@media (max-width: 820px) {
  :root {
    --tool-content-inset: 15px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 30px 18px;
  }

  h1 {
    font-size: 46px;
    max-width: none;
  }

  h2 {
    font-size: 32px;
  }

  .hero-top {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-wordmark {
    width: 92px;
  }

  .store-links {
    gap: 8px;
  }

  .store-link img {
    width: auto;
    height: 36px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-subtitle {
    font-size: 24px;
    max-width: 520px;
    white-space: normal;
  }

  .hero-action-row {
    grid-template-columns: 92px 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .hero-buddy {
    width: 92px;
  }

  .wake-button {
    min-height: 46px;
    padding: 9px 18px;
    font-size: 24px;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 14px;
    width: 100%;
  }

  .rating-row {
    width: 100%;
  }

  .hero-stat strong {
    font-size: 30px;
  }

  .hero-stat span {
    font-size: 18px;
  }

  .stat-note {
    margin-top: 12px;
    font-size: 12px;
  }

  .rating-row {
    gap: 12px;
    margin-top: 18px;
  }

  .stars {
    font-size: 32px;
  }

  .rating-copy strong {
    font-size: 30px;
  }

  .rating-copy span {
    font-size: 18px;
  }

  .rating-faces img {
    width: 42px;
    height: 42px;
    margin-left: -9px;
  }

  .hero-visual {
    min-height: 390px;
    padding-top: 26px;
  }

  .phone-frame-large {
    position: relative;
    top: auto;
    right: auto;
    width: 220px;
    height: auto;
    margin: 0 auto;
  }

  .hero-meditation {
    right: calc(50% - 145px);
    bottom: -4px;
    width: 150px;
  }

  .how {
    padding-top: 28px;
  }

  .how-wrap {
    --how-card-width: 25vw;
    --how-gap: 14px;
    --how-gif-width: 23.75vw;
    --how-card-pad: calc(((var(--how-card-width) - var(--how-gif-width)) / 2) - 1px);
    --how-text-size: clamp(10px, calc(var(--how-card-width) * 0.064), 22px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .how-grid {
    display: flex;
  }

  .how-column {
    display: flex;
  }

  .how-card {
    width: var(--how-card-width);
    min-height: 0;
  }

  .how-card[data-step="1"] {
    order: 1;
  }

  .how-card[data-step="2"] {
    order: 2;
  }

  .how-card[data-step="3"] {
    order: 3;
  }

  .how-card[data-step="4"] {
    order: 4;
  }

  .how-card[data-step="5"] {
    order: 5;
  }

  .how-card[data-step="6"] {
    order: 6;
  }

  .how-card p {
    font-size: var(--how-text-size);
  }

  .how-deco-walter {
    display: block;
    margin-top: 0;
  }

  .how-deco-tom {
    display: block;
  }

  .how-deco-finn {
    display: block;
    margin-bottom: 0;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
    width: min(100%, 600px);
    gap: 14px;
  }

  .compare-card {
    min-height: 250px;
    padding: 24px 14px 18px;
    border-radius: 18px;
  }

  .compare-card h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .compare-card ul {
    font-size: 15px;
  }

  .compare-card li {
    grid-template-columns: 20px 1fr;
  }

  .check-list li::before {
    font-size: 22px;
  }

  .x-list li::before {
    font-size: 24px;
  }

  .compare-card img {
    width: 92px;
    height: 92px;
    margin-top: 22px;
  }

  .squad-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .squad-image {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .buddy-controls {
    --buddy-stage-width: clamp(184px, 54vw, 232px);
    width: min(100%, calc(108px + var(--buddy-stage-width)));
    margin: 0 auto;
    transform: none;
  }

  .buddy-stage {
    --buddy-image-width: clamp(88px, 10vw, 110px);
    width: var(--buddy-stage-width);
    height: clamp(250px, 27vw, 300px);
  }

  .buddy-selector p {
    margin-top: 0;
  }

  .tools-carousel {
    min-height: 0;
    --tool-panel-width: 250px;
    --tool-card-size: 68px;
    --tool-card-gap: 12px;
    --tool-content-inset: 15px;
    --tool-left-inner-offset: var(--tool-inner-offset);
    --tool-right-inner-offset: var(--tool-inner-offset);
    --tool-left-outer-offset: var(--tool-outer-offset);
    --tool-right-outer-offset: var(--tool-outer-offset);
  }

  .tool-panel {
    width: min(100%, 250px);
    height: 370px;
    padding: 12px 15px 10px;
    border-radius: 18px;
  }

  .tool-panel-icon {
    height: 68px;
    margin-bottom: 10px;
    border-radius: 15px;
  }

  .tool-panel-icon img {
    width: 48px;
    height: 48px;
  }

  .tool-panel h3 {
    margin-bottom: 9px;
    font-size: 20px;
  }

  .tool-copy h4 {
    margin: 10px 0 5px;
    font-size: 12px;
  }

  .tool-copy p,
  .tool-copy li {
    font-size: 13px;
    line-height: 1.04;
  }

  .tool-copy ul {
    margin-top: 4px;
    margin-left: 17px;
  }

  .tool-copy ul.is-two-column {
    column-gap: 24px;
  }

  .tool-card {
    top: 50%;
    padding: 8px 6px;
    border-radius: 14px;
  }

  .tool-card img {
    width: 30px;
    height: 30px;
  }

  .tool-card .tool-card-label {
    margin-top: 4px;
    font-size: 12px;
  }

  .testimonial-track {
    gap: 18px;
    padding-left: 0;
  }

  .testimonial-card {
    flex-basis: clamp(270px, 38vw, 320px);
    min-height: 136px;
    padding: 18px 20px;
  }

  .store-links-large .store-link img {
    width: auto;
    height: 45px;
  }

  .contact {
    gap: 18px;
  }

  .contact-buddy {
    width: 130px;
  }

  .contact h2 {
    font-size: 27px;
  }

  .contact a {
    font-size: 18px;
  }
}

@media (min-width: 780px) and (max-width: 820px) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: stretch;
    gap: 18px;
  }

  .hero-copy {
    width: 100%;
    margin-inline: 0;
  }

  h1 {
    font-size: clamp(44px, 6vw, 46px);
  }

  .hero-subtitle {
    max-width: none;
    font-size: clamp(22px, 3.1vw, 24px);
  }

  .hero-visual {
    --hero-zoe-width: clamp(146px, 22vw, 170px);
    --hero-zoe-overlap: clamp(90px, 13vw, 108px);
    min-height: 0;
    padding-top: 0;
  }

  .phone-frame-large {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: calc(100% - var(--hero-phone-bottom-offset));
    margin: 0;
  }

  .hero-meditation {
    left: auto;
    right: clamp(82px, 12vw, 108px);
    bottom: 0;
    width: var(--hero-zoe-width);
  }
}

@media (max-width: 426px) {
  .how-wrap {
    --how-card-width: 50vw;
    --how-gif-width: 47.5vw;
    --how-card-pad: calc(((var(--how-card-width) - var(--how-gif-width)) / 2) - 1px);
    --how-text-size: clamp(10px, calc(var(--how-card-width) * 0.064), 22px);
    --how-card-group-width: var(--how-card-width);
    --how-card-left: calc((100vw - var(--how-card-width)) / 2);
    --how-card-right: calc(100vw - var(--how-card-left));
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .how-grid {
    display: grid;
    grid-template-columns: var(--how-card-width);
  }

  .how-column {
    display: contents;
  }

  .how-deco {
    display: block;
    z-index: 3;
  }

  .how-card {
    width: var(--how-card-width);
  }

  .how-deco-walter {
    top: calc(var(--how-square-card-height) - var(--how-left-character-width));
    left: calc(var(--how-left-rail) / 2);
    width: var(--how-left-character-width);
  }

  .how-deco-tom,
  .how-deco-finn {
    width: var(--how-left-character-width);
  }

  .how-deco-tom {
    top: calc((3 * var(--how-square-card-height)) + (3 * var(--how-gap)) + (var(--how-phone-card-height) / 2) - (var(--how-right-character-width) / 2));
    left: calc(var(--how-card-right) + (var(--how-right-rail) / 2));
    width: var(--how-right-character-width);
  }

  .how-deco-finn {
    top: calc((4 * var(--how-square-card-height)) + (2 * var(--how-phone-card-height)) + (5 * var(--how-gap)) - var(--how-left-character-width));
    left: calc(var(--how-left-rail) / 2);
    width: var(--how-left-character-width);
  }

  .how-card[data-step="1"] {
    grid-column: 1;
    grid-row: 1;
  }

  .how-card[data-step="2"] {
    grid-column: 1;
    grid-row: 2;
  }

  .how-card[data-step="3"] {
    grid-column: 1;
    grid-row: 3;
  }

  .how-card[data-step="4"] {
    grid-column: 1;
    grid-row: 4;
  }

  .how-card[data-step="5"] {
    grid-column: 1;
    grid-row: 5;
  }

  .how-card[data-step="6"] {
    grid-column: 1;
    grid-row: 6;
  }
}

@media (max-width: 640px) {
  :root {
    --tool-content-inset: 13px;
  }

  .tools-carousel {
    min-height: 0;
    --tool-panel-width: 212px;
    --tool-card-size: 60px;
    --tool-card-gap: 8px;
    --tool-content-inset: 13px;
    --tool-left-inner-offset: 111px;
    --tool-right-inner-offset: 111px;
    --tool-left-outer-offset: 188px;
    --tool-right-outer-offset: 188px;
  }

  .tool-panel {
    width: min(100%, var(--tool-panel-width));
    height: 330px;
    padding: 10px 13px 8px;
    border-radius: 17px;
  }

  .tool-panel-icon {
    height: 58px;
    margin-bottom: 8px;
    border-radius: 14px;
  }

  .tool-panel-icon img {
    width: 42px;
    height: 42px;
  }

  .tool-panel h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .tool-copy h4 {
    margin: 9px 0 4px;
    font-size: 12px;
  }

  .tool-copy p,
  .tool-copy li {
    font-size: 12px;
    line-height: 1.02;
  }

  .tool-copy ul {
    margin-top: 3px;
    margin-left: 16px;
  }

  .tool-copy ul.is-two-column {
    column-gap: 16px;
  }

  .tool-card {
    top: 50%;
    padding: 7px 5px;
    border-radius: 13px;
  }

  .tool-card img {
    width: 28px;
    height: 28px;
  }

  .tool-card .tool-card-label {
    margin-top: 4px;
    font-size: 9px;
  }

}

@media (max-width: 480px) {
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .hero-top {
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .brand {
    flex: 0 0 auto;
    gap: 6px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-wordmark {
    width: 82px;
  }

  .store-links {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 7px;
  }

  .store-link img {
    width: auto;
    height: 30px;
  }

  h1 {
    max-width: none;
    font-size: 36px;
    line-height: 0.94;
    white-space: nowrap;
  }

  .hero-subtitle {
    margin-top: 8px;
    max-width: 410px;
    font-size: 21px;
    line-height: 1.1;
  }

  .hero-action-row {
    grid-template-columns: 118px 178px;
    justify-content: start;
    gap: 20px;
    margin-top: 24px;
  }

  .hero-buddy {
    width: 82px;
    justify-self: center;
  }

  .wake-button {
    align-self: center;
    width: 178px;
  }

  .hero-stats {
    grid-template-columns: minmax(105px, 1.1fr) minmax(105px, 1.1fr) minmax(62px, 0.7fr);
    gap: clamp(6px, 2vw, 10px);
    margin-top: 12px;
    width: 100%;
  }

  .hero-stat strong {
    font-size: 30px;
  }

  .hero-stat span {
    margin-top: 6px;
    font-size: clamp(17px, 4.4vw, 19px);
    line-height: 0.94;
  }

  .stat-note {
    margin-top: 16px;
    font-size: 13px;
  }

  .rating-row {
    display: grid;
    grid-template-columns: max-content max-content minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(6px, 2.2vw, 10px);
    width: 100%;
    margin-top: 24px;
  }

  .stars {
    flex: 0 0 auto;
    gap: 2px;
    font-size: clamp(26px, 7vw, 30px);
  }

  .rating-copy {
    width: max-content;
    min-width: max-content;
  }

  .rating-copy strong {
    font-size: clamp(28px, 7.2vw, 31px);
  }

  .rating-copy span {
    width: max-content;
    font-size: clamp(16px, 4.2vw, 18px);
    white-space: nowrap;
  }

  .rating-faces {
    justify-self: end;
    width: max-content;
    min-width: max-content;
    margin-left: 0;
    overflow: visible;
  }

  .rating-faces img {
    flex: 0 0 auto;
    max-width: none;
    min-width: clamp(28px, 8.4vw, 36px);
    width: clamp(28px, 8.4vw, 36px);
    height: clamp(28px, 8.4vw, 36px);
    margin-left: clamp(-8px, -2vw, -6px);
  }

  .phone-frame-large {
    width: 210px;
  }

  .hero-visual {
    min-height: 380px;
    padding-top: 24px;
  }

  .why-grid {
    gap: 10px;
    width: min(100%, 390px);
  }

  .how-wrap {
    --how-gap: 10px;
  }

  .compare-card {
    padding: 20px 10px 16px;
  }

  .compare-card ul {
    font-size: 14px;
  }

  .tools-carousel {
    min-height: 0;
    --tool-panel-width: 212px;
    --tool-card-size: 60px;
    --tool-card-gap: 8px;
    --tool-content-inset: 13px;
    --tool-left-inner-offset: 111px;
    --tool-right-inner-offset: 111px;
    --tool-left-outer-offset: 188px;
    --tool-right-outer-offset: 188px;
  }

  .tool-panel {
    width: min(100%, var(--tool-panel-width));
    height: 330px;
    padding: 10px 13px 8px;
    border-radius: 17px;
  }

  .tool-panel-icon {
    height: 58px;
    margin-bottom: 8px;
    border-radius: 14px;
  }

  .tool-panel-icon img {
    width: 42px;
    height: 42px;
  }

  .tool-panel h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .tool-copy h4 {
    margin: 9px 0 4px;
    font-size: 12px;
  }

  .tool-copy p,
  .tool-copy li {
    font-size: 12px;
    line-height: 1.02;
  }

  .tool-copy ul {
    margin-left: 16px;
  }

  .tool-copy ul.is-two-column {
    column-gap: 16px;
  }

  .tool-card {
    top: 50%;
    padding: 7px 5px;
    border-radius: 13px;
  }

  .tool-card img {
    width: 28px;
    height: 28px;
  }

  .tool-card .tool-card-label {
    margin-top: 4px;
    font-size: 9px;
  }

  .contact {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(76px, 96px) minmax(0, 1fr);
    gap: 10px;
  }

  .contact-buddy {
    width: 100%;
    max-width: 96px;
    justify-self: end;
  }

  .contact h2 {
    white-space: nowrap;
  }

  .contact a {
    max-width: 100%;
    white-space: nowrap;
  }

  .social-links {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-top {
    gap: 8px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-wordmark {
    width: 70px;
  }

  .store-links {
    gap: 5px;
  }

  .store-link img {
    width: auto;
    height: 26px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-action-row {
    grid-template-columns: 84px 178px;
    gap: 14px;
  }

  .hero-buddy {
    width: 74px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat strong {
    font-size: 27px;
  }

  .hero-stat span {
    font-size: 17px;
  }

  .rating-row {
    column-gap: 8px;
  }

  .stars {
    font-size: 27px;
  }

  .rating-copy strong {
    font-size: 28px;
  }

  .rating-copy span {
    font-size: 17px;
  }

  .rating-faces img {
    min-width: 32px;
    width: 32px;
    height: 32px;
    margin-left: -6px;
  }
}

/* Hero layout rules: full-width rail, responsive type, and locked phone/Zoe relation. */
.hero {
  --hero-h1-size: clamp(38px, 5.4vw, 76px);
  --hero-top-height: min(var(--hero-h1-size), clamp(24px, 5vw, 76px));
  --hero-title-fit-size: var(--hero-h1-size);
  --hero-subtitle-size: clamp(20px, 2.7vw, 34px);
  --hero-button-size: clamp(24px, 2.4vw, 32px);
  --hero-stat-number-size: clamp(30px, 3.2vw, 41px);
  --hero-stat-copy-size: clamp(18px, 2vw, 24px);
  --hero-usp-copy-size: min(var(--hero-stat-copy-size), calc(var(--hero-rail-width) * 0.06));
  --hero-stars-size: clamp(30px, 4vw, 52px);
  --hero-rating-size: clamp(30px, 3.2vw, 42px);
  --hero-review-size: clamp(18px, 2vw, 25px);
  --hero-rail-width: min(100%, 706px);
  --hero-copy-width: var(--hero-rail-width);
  --hero-layout-width: var(--hero-rail-width);
  --hero-copy-max-width: min(60vw, 760px);
  --hero-phone-height: var(--hero-measured-copy-height, clamp(430px, 39vw, 610px));
  --hero-phone-width: calc(var(--hero-phone-height) * 6 / 13);
  --hero-zoe-height: calc(var(--hero-phone-height) * 0.36);
  --hero-zoe-bottom: 0px;
  --hero-zoe-overhang: calc(var(--hero-phone-width) * 0.42);
  --hero-visual-width: calc(var(--hero-phone-width) + var(--hero-zoe-overhang));
  --hero-visual-required-width: calc(var(--hero-visual-width) * 1.2);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-right: var(--section-x);
  padding-left: var(--section-x);
}

.hero-top {
  align-items: center;
  justify-content: space-between;
}

.hero .brand-logo,
.hero .brand-wordmark,
.hero .store-link img {
  width: auto;
  height: var(--hero-top-height);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--hero-copy-width)) minmax(var(--hero-visual-required-width), 1fr);
  align-items: start;
  gap: 0;
  min-height: var(--hero-phone-height);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  width: var(--hero-copy-width);
  max-width: var(--hero-copy-max-width);
  justify-self: start;
  align-self: start;
  text-align: left;
}

.hero h1 {
  width: var(--hero-layout-width);
  max-width: none;
  font-size: var(--hero-title-fit-size);
  white-space: nowrap;
}

.hero-subtitle {
  width: var(--hero-layout-width);
  max-width: var(--hero-layout-width);
  font-size: var(--hero-subtitle-size);
  white-space: normal;
}

.hero-action-row {
  width: var(--hero-layout-width);
  grid-template-columns: max-content minmax(0, 1fr);
  justify-content: stretch;
  gap: 0;
  margin-top: clamp(14px, 2vw, 28px);
}

.hero-buddy {
  width: clamp(82px, 11vw, 150px);
}

.wake-button {
  justify-self: center;
  width: 178px;
  min-height: clamp(48px, 4.4vw, 64px);
  font-size: var(--hero-button-size);
}

.hero-stats {
  width: var(--hero-layout-width);
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 0;
  margin-top: clamp(12px, 2vw, 22px);
}

.hero-stat {
  width: max-content;
  min-width: 0;
}

.hero-stat strong {
  font-size: var(--hero-stat-number-size);
}

.hero-stat span {
  font-size: var(--hero-usp-copy-size);
  line-height: 0.96;
}

.hero-stat span i {
  display: block;
  font-style: normal;
  white-space: nowrap;
}

.rating-row {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  justify-content: space-between;
  align-items: center;
  width: var(--hero-layout-width);
  gap: 0;
  margin-top: clamp(16px, 2vw, 28px);
}

.stars {
  gap: clamp(2px, 0.35vw, 5px);
  font-size: var(--hero-stars-size);
}

.rating-copy strong {
  font-size: var(--hero-rating-size);
}

.rating-copy span {
  font-size: var(--hero-review-size);
}

.rating-faces img {
  width: clamp(34px, 4.6vw, 62px);
  height: clamp(34px, 4.6vw, 62px);
  margin-left: clamp(-12px, -1vw, -7px);
}

.rating-faces img:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  width: var(--hero-visual-required-width);
  height: var(--hero-phone-height);
  min-height: 0;
  padding-top: 0;
  justify-self: center;
  align-self: start;
}

.phone-frame-large::after {
  display: none;
}

.phone-frame-large .screen-media {
  border-radius: 0;
}

.phone-frame-large .phone-screen {
  overflow: visible;
  border-radius: 0;
}

.phone-frame-large {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: calc(50% - (var(--hero-visual-width) / 2) + var(--hero-zoe-overhang));
  right: auto;
  width: auto;
  height: var(--hero-phone-height);
  margin: 0;
}

.hero-meditation {
  right: auto;
  bottom: var(--hero-zoe-bottom);
  left: calc(50% - (var(--hero-visual-width) / 2));
  width: auto;
  height: var(--hero-zoe-height);
}

.hero.hero--stacked {
  --hero-copy-width: 100%;
  --hero-copy-max-width: 100%;
  --hero-measured-copy-height: unset;
  --hero-phone-height: clamp(330px, 92vw, 430px);
}

.hero.hero--stacked .hero-grid {
  display: block;
  min-height: 0;
}

.hero.hero--stacked .hero-copy {
  width: var(--hero-copy-width);
  max-width: var(--hero-copy-max-width);
  margin-inline: 0;
}

.hero.hero--stacked h1,
.hero.hero--stacked .hero-subtitle,
.hero.hero--stacked .hero-action-row,
.hero.hero--stacked .hero-stats,
.hero.hero--stacked .stat-note,
.hero.hero--stacked .rating-row {
  margin-right: auto;
  margin-left: auto;
}

.hero.hero--stacked .rating-row {
  justify-content: start;
  column-gap: clamp(8px, 2.4vw, 18px);
}

.hero.hero--stacked .hero-visual {
  width: 100%;
  height: var(--hero-phone-height);
  margin: clamp(22px, 5vw, 34px) auto 0;
}

.hero.hero--stacked .phone-frame-large {
  left: 50%;
  transform: translateX(-50%);
}

.hero.hero--stacked .hero-meditation {
  left: calc(50% - (var(--hero-phone-width) / 2) - var(--hero-zoe-overhang));
}

@media (max-width: 560px) {
  .testimonial-card {
    flex-basis: clamp(250px, calc(100vw - 90px), 340px);
  }

  .hero .rating-row {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .hero .stars {
    gap: 1px;
    font-size: clamp(24px, 7vw, 30px);
  }

  .hero .rating-copy strong {
    font-size: clamp(28px, 7vw, 30px);
  }

  .hero .rating-copy span {
    font-size: clamp(16px, 4.3vw, 18px);
    white-space: nowrap;
  }

  .hero .rating-faces {
    justify-self: end;
    overflow: visible;
  }

  .hero .rating-faces img {
    width: clamp(30px, 8.2vw, 36px);
    height: clamp(30px, 8.2vw, 36px);
    min-width: 0;
    margin-left: clamp(-8px, -2vw, -6px);
  }

  .hero .rating-faces img:first-child {
    margin-left: 0;
  }
}

/* Final tools sizing contract: percentages with capped inner geometry. */
.tools-carousel {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  --tool-panel-width: min(50vw, 250px);
  --tool-panel-height: calc(var(--tool-panel-width) * 1.5);
  --tool-card-size: min(20vw, 100px);
  --tool-card-gap: min(2.5vw, 20px);
  --tool-content-inset: clamp(9px, calc(var(--tool-panel-width) * 0.064), 16px);
  --tool-title-font-size: clamp(14px, calc(var(--tool-panel-width) * 0.088), 22px);
  --tool-title-margin: clamp(5px, calc(var(--tool-panel-width) * 0.034), 10px);
  --tool-kicker-font-size: clamp(8.5px, calc(var(--tool-panel-width) * 0.052), 13px);
  --tool-kicker-margin-top: clamp(5px, calc(var(--tool-panel-width) * 0.038), 10px);
  --tool-kicker-margin-bottom: clamp(2px, calc(var(--tool-panel-width) * 0.012), 4px);
  --tool-description-font-size: clamp(7px, calc(var(--tool-panel-width) * 0.039), 10px);
  --tool-list-margin-top: clamp(1px, calc(var(--tool-panel-width) * 0.01), 3px);
  --tool-list-indent: clamp(8px, calc(var(--tool-panel-width) * 0.055), 14px);
  --tool-list-column-gap: clamp(8px, calc(var(--tool-panel-width) * 0.08), 24px);
  --tool-list-row-gap: clamp(0px, calc(var(--tool-panel-width) * 0.004), 2px);
  --tool-square-padding: clamp(6px, calc(var(--tool-card-size) * 0.08), 8px);
  --tool-square-icon-size: clamp(28px, calc(var(--tool-card-size) * 0.46), 46px);
  --tool-square-label-size: clamp(9px, calc(var(--tool-card-size) * 0.14), 14px);
  --tool-square-label-gap: clamp(4px, calc(var(--tool-card-size) * 0.05), 5px);
  --tool-inner-offset: calc((var(--tool-panel-width) / 2) + var(--tool-card-gap));
  --tool-outer-offset: calc(var(--tool-inner-offset) + var(--tool-card-size) + var(--tool-card-gap));
  --tool-left-inner-offset: var(--tool-inner-offset);
  --tool-right-inner-offset: var(--tool-inner-offset);
  --tool-left-outer-offset: var(--tool-outer-offset);
  --tool-right-outer-offset: var(--tool-outer-offset);
}

.tool-panel {
  width: var(--tool-panel-width);
  height: var(--tool-panel-height);
  padding: var(--tool-content-inset);
  border-radius: clamp(16px, calc(var(--tool-panel-width) * 0.1), 24px);
}

.tool-panel-icon {
  height: clamp(54px, calc(var(--tool-panel-width) * 0.37), 92px);
  margin-bottom: clamp(8px, calc(var(--tool-panel-width) * 0.04), 14px);
  border-radius: clamp(12px, calc(var(--tool-panel-width) * 0.08), 22px);
}

.tool-panel-icon img {
  width: clamp(36px, calc(var(--tool-panel-width) * 0.27), 68px);
  height: clamp(36px, calc(var(--tool-panel-width) * 0.27), 68px);
}

.tool-panel h3 {
  margin-bottom: var(--tool-title-margin);
  font-size: var(--tool-title-font-size);
}

.tool-copy h4,
.tool-flip-copy h4 {
  margin: var(--tool-kicker-margin-top) 0 var(--tool-kicker-margin-bottom);
  font-size: var(--tool-kicker-font-size);
}

.tool-flip-copy > h4:first-child {
  margin-top: 0;
}

.tool-copy p,
.tool-copy li,
.tool-flip-copy p,
.tool-flip-copy li {
  font-size: var(--tool-description-font-size);
  line-height: 1.02;
}

.tool-copy ul,
.tool-flip-copy ul {
  margin-top: var(--tool-list-margin-top);
  margin-left: var(--tool-list-indent);
}

.tool-copy ul.is-two-column,
.tool-flip-copy ul.is-two-column {
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(4, auto);
  justify-content: space-between;
  column-gap: var(--tool-list-column-gap);
  row-gap: var(--tool-list-row-gap);
  width: calc(100% - var(--tool-list-indent));
}

.tool-copy ul.is-two-column li,
.tool-flip-copy ul.is-two-column li {
  white-space: nowrap;
}

.tool-card {
  padding: var(--tool-square-padding);
  border-radius: clamp(14px, 2.5vw, 28px);
}

.tool-card img {
  width: var(--tool-square-icon-size);
  height: var(--tool-square-icon-size);
}

.tool-card .tool-card-label {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: var(--tool-square-label-gap);
  color: #212121;
  font-size: var(--tool-square-label-size);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-overflow: clip;
  white-space: nowrap;
}

.tool-card:hover,
.tool-card:focus-visible {
  transform: translate(var(--x), -50%) scale(var(--scale));
}

/* Defensive compatibility caps for browsers that drop advanced CSS sizing.
   These max values keep original bitmap/SVG assets from falling back to huge
   intrinsic dimensions if clamp()/min()/var() chains are unsupported or stale. */
.brand-logo {
  max-width: 96px;
  max-height: 96px;
}

.brand-wordmark {
  max-width: 180px;
  max-height: 96px;
}

.store-link img {
  max-width: 260px;
  max-height: 62px;
}

.hero-buddy {
  max-width: 150px;
}

.rating-faces img {
  max-width: 62px;
  max-height: 62px;
}

.compare-card img {
  max-width: 122px;
  max-height: 122px;
}

.squad-image {
  max-width: 560px;
}

[data-buddy-image],
.buddy-slide img {
  max-width: 120px;
}

[data-tool-icon],
.tool-card img,
.tool-panel-icon img {
  max-width: 100px;
  max-height: 100px;
}

.testimonial-card img {
  max-width: 96px;
  max-height: 96px;
}

.contact-buddy {
  max-width: 190px;
}

.social-links img {
  max-width: 30px;
  max-height: 30px;
}

.screen-media,
.optional-screen img {
  max-width: 100%;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #ffffff;
    color: #212121;
  }
}

@supports not (width: clamp(1px, 2px, 3px)) {
  :root {
    --section-x: 24px;
    --section-y: 32px;
    --hero-rail-width: 640px;
    --hero-layout-width: 640px;
    --hero-copy-width: 640px;
    --tool-panel-width: 250px;
    --tool-panel-height: 375px;
    --tool-card-size: 100px;
    --tool-card-gap: 20px;
  }

  .site-shell,
  .site-footer {
    width: 100%;
    max-width: 1240px;
  }

  .section {
    padding: 32px 24px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 26px;
    white-space: normal;
  }

  .hero-grid,
  .hero.hero--stacked .hero-grid {
    display: block;
  }

  .hero-copy,
  .hero-stats,
  .rating-row {
    width: 100%;
    max-width: 640px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .rating-row {
    gap: 12px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 300px);
    justify-content: center;
    gap: 24px;
  }

  .tools-carousel {
    --tool-inner-offset: 145px;
    --tool-outer-offset: 265px;
  }

  @media (max-width: 820px) {
    .section {
      padding: 30px 18px;
    }

    h1 {
      font-size: 42px;
    }

    h2 {
      font-size: 32px;
    }

    .hero-stats {
      gap: 10px;
    }

    .why-grid {
      grid-template-columns: 1fr;
      max-width: 390px;
    }

    .compare-card {
      width: 100%;
    }
  }
}
