:root {
  color-scheme: light;
  --page: #fbf5ea;
  --page-elevated: #fffaf2;
  --surface: rgba(255, 251, 244, 0.76);
  --surface-strong: rgba(255, 252, 247, 0.96);
  --surface-tint: #fff1e5;
  --ink: #46372d;
  --ink-muted: #766457;
  --ink-soft: #9b8a7f;
  --border: rgba(120, 92, 69, 0.12);
  --border-strong: rgba(120, 92, 69, 0.18);
  --cta: #ef9d7b;
  --cta-hover: #e58c67;
  --healthy: #6d9d7f;
  --healthy-bg: #e5f2e7;
  --info: #8ca8d8;
  --info-bg: #edf2fb;
  --gold: #e9c87d;
  --shadow-soft: 0 14px 32px rgba(183, 143, 109, 0.15);
  --shadow-card: 0 18px 46px rgba(180, 146, 117, 0.16);
  --shadow-home-card: 0 14px 34px rgba(172, 139, 113, 0.1);
  --shadow-lg: 0 32px 72px rgba(140, 106, 81, 0.22);
  --carousel-screen-width: 312px;
  --carousel-screen-mobile-width: min(var(--carousel-screen-width), calc(100vw - 40px));
  --gradient-app-bg: linear-gradient(180deg, #fcf6eb 0%, #fbf5ea 58%, #f7efe1 100%);
  --gradient-home-hero-card: linear-gradient(105deg, rgba(255, 248, 239, 0.96) 0%, rgba(255, 252, 247, 0.92) 52%, rgba(255, 235, 224, 0.72) 100%);
  --gradient-home-hero-hill: linear-gradient(180deg, rgba(255, 220, 184, 0.58) 0%, rgba(255, 202, 172, 0.22) 100%);
  --gradient-home-action-diaper: linear-gradient(180deg, rgba(255, 245, 236, 0.98) 0%, rgba(255, 239, 229, 0.9) 100%);
  --gradient-home-action-poop: linear-gradient(180deg, rgba(255, 241, 238, 0.98) 0%, rgba(255, 232, 229, 0.9) 100%);
  --gradient-home-action-feed: linear-gradient(180deg, rgba(192, 222, 195, 0.92) 0%, rgba(235, 245, 233, 0.92) 100%);
  --gradient-home-action-sleep: linear-gradient(180deg, rgba(236, 223, 243, 0.92) 0%, rgba(250, 244, 252, 0.92) 100%);
  --gradient-home-action-symptom: linear-gradient(180deg, rgba(117, 182, 230, 0.94) 0%, rgba(99, 161, 224, 0.94) 100%);
  --gradient-home-action-episode: linear-gradient(180deg, rgba(132, 158, 224, 0.92) 0%, rgba(183, 209, 247, 0.92) 100%);
  --gradient-home-recommendation: linear-gradient(135deg, rgba(255, 244, 214, 0.92) 0%, rgba(255, 250, 241, 0.92) 100%);
  --gradient-hero-glow: radial-gradient(circle at 76% 18%, rgba(255, 214, 119, 0.58) 0%, rgba(255, 214, 119, 0.2) 20%, rgba(255, 255, 255, 0) 50%);
  --gradient-hero-wash: linear-gradient(180deg, rgba(248, 204, 170, 0.14) 0%, rgba(255, 255, 255, 0) 44%);
  --gradient-hero-floor: linear-gradient(180deg, rgba(251, 245, 234, 0) 0%, rgba(251, 245, 234, 0.56) 68%, rgba(251, 245, 234, 0.92) 100%);
  --color-hero-cloud: rgba(255, 255, 255, 0.46);
  --color-hero-cloud-strong: rgba(255, 255, 255, 0.54);
  --color-hero-cloud-soft: rgba(255, 255, 255, 0.36);
  --shadow-home-hero-cloud: 24px -7px 0 rgba(255, 255, 255, 0.78), 50px 2px 0 rgba(255, 255, 255, 0.58), -20px 8px 0 rgba(255, 255, 255, 0.64);
  --gradient-status-healthy: conic-gradient(from 210deg, #e5b08b 0deg, #e4ca8a 120deg, #b8d5bc 280deg, #e5b08b 360deg);
  --gradient-status-caution: conic-gradient(from 210deg, #e7ab86 0deg, #e2c286 170deg, #e2c286 360deg);
  --gradient-status-head: conic-gradient(from 210deg, #b4c6eb 0deg, #b6d7d3 180deg, #92a7d9 360deg);
  --max-width: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--gradient-app-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

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

.hero,
.feature-section,
.testimonial-section,
.pricing-section,
.faq-section,
.site-footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-inline: 0;
  padding: 22px max(20px, calc((100vw - var(--max-width)) / 2)) 14px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(255, 250, 243, 0.55) 74%, transparent);
  backdrop-filter: blur(24px) saturate(1.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(239, 157, 123, 0.18);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a,
.site-footer nav a {
  transition: color 180ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #f26f1d;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 0.92rem;
}

.button-primary {
  color: #fffaf2;
  background: var(--cta);
  box-shadow: 0 15px 32px rgba(239, 157, 123, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cta-hover);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--border);
  box-shadow: 0 12px 24px rgba(120, 92, 69, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero {
  display: grid;
  justify-items: center;
  padding: 72px 0 28px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: #f26f1d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(120, 92, 69, 0.1);
}

.hero h1 {
  width: 100%;
  max-width: 880px;
  margin: 28px 0 0;
  font-size: 4.7rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-line {
  width: 100%;
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.product-showcase {
  overflow: hidden;
  padding: 22px 0 92px;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 40px), 880px);
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker p {
  margin: 0;
}

.section-kicker span {
  height: 1px;
  background: var(--border);
}

.showcase-stage {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  isolation: isolate;
}

.ambient-viewport {
  position: absolute;
  inset: 118px 0 auto 50%;
  z-index: 1;
  width: 100vw;
  overflow: hidden;
  padding: 36px 0 60px;
  transform: translateX(-50%);
}

.ambient-viewport::before,
.ambient-viewport::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 18vw;
  content: "";
  pointer-events: none;
}

.ambient-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--page) 0%, rgba(251, 245, 234, 0) 100%);
}

.ambient-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--page) 0%, rgba(251, 245, 234, 0) 100%);
}

.ambient-loop {
  display: flex;
  width: max-content;
  gap: 24px;
  padding-inline: 24px;
  will-change: transform;
}

[data-carousel="ready"] .ambient-loop {
  animation: screen-loop 56s linear infinite;
}

.showcase-stage:hover .ambient-loop,
.showcase-stage:focus-within .ambient-loop {
  animation-play-state: paused;
}

@keyframes screen-loop {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 390px;
  filter: drop-shadow(0 44px 60px rgba(34, 28, 22, 0.26));
}

.phone-bezel {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  border: 9px solid #07101a;
  border-radius: 48px;
  background: #07101a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 5;
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #020306;
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 7px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--page);
}

.tt-screen {
  color: var(--ink);
  background: var(--gradient-app-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tt-preview {
  display: flex;
  flex: 0 0 var(--carousel-screen-width);
  width: var(--carousel-screen-width);
  height: 565px;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(120, 92, 69, 0.13);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  opacity: 0.82;
}

.ambient-loop .tt-preview:nth-child(2n) {
  margin-top: 42px;
}

.ambient-loop .tt-preview:nth-child(3n) {
  margin-top: 82px;
}

.ambient-loop .tt-preview:nth-child(5n) {
  margin-top: 18px;
}

.tt-phone {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tt-phone-content {
  display: grid;
  gap: 10px;
  padding: 10px 16px 84px;
}

.tt-shell-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  min-height: 92px;
  border-bottom: 1px solid rgba(120, 92, 69, 0.12);
  padding: 24px 16px 13px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.95) 0%, rgba(255, 250, 243, 0.55) 74%, transparent 100%);
  backdrop-filter: blur(24px) saturate(1.18);
}

.tt-preview .tt-shell-header {
  min-height: auto;
  padding: 16px;
}

.tt-avatar,
.tt-sibling {
  display: inline-block;
  overflow: hidden;
  border-radius: 50%;
  color: #fffaf2;
  font-weight: 800;
}

.tt-avatar {
  width: 40px;
  height: 40px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.44);
}

.tt-avatar.maya {
  background: #f77761;
}

.tt-avatar img,
.tt-sibling img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-sibling {
  width: 30px;
  height: 30px;
  background: #2867ec;
  font-size: 0.86rem;
}

.tt-shell-header strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 730;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tt-shell-header small {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tt-phone .tt-shell-header {
  gap: 8px;
}

.tt-phone .tt-shell-header small {
  font-size: 0.68rem;
}

.tt-phone .tt-sibling {
  width: 29px;
  height: 29px;
}

.tt-home-hero {
  position: relative;
  min-height: 124px;
  overflow: hidden;
  border-radius: 20px;
  padding: 14px 16px 12px;
  background: var(--gradient-home-hero-card);
  box-shadow: 0 12px 28px rgba(180, 138, 101, 0.08);
}

.tt-home-hero::before {
  position: absolute;
  right: 14px;
  bottom: -28px;
  width: 128px;
  height: 64px;
  border-radius: 52% 48% 0 0;
  background: var(--gradient-home-hero-hill);
  content: "";
}

.tt-preview .tt-home-hero {
  margin: 0 12px;
}

.tt-home-hero > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 220px;
}

.tt-home-hero p {
  margin: 0;
  color: #c3753d;
  font-size: 0.78rem;
  font-weight: 650;
}

.tt-home-hero h2 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 1.62rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

.tt-home-hero span {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.tt-sun-disc {
  position: absolute;
  right: 60px;
  top: 42px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe1a6;
  opacity: 0.82;
}

.tt-cloud {
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 84px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-home-hero-cloud);
}

.tt-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-home-card);
}

.tt-insights {
  padding: 14px 16px;
}

.tt-preview .tt-insights {
  margin: 0 12px;
  padding: 13px 14px;
}

.tt-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tt-card-head span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-card-head b,
.tt-card-head button {
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  color: #6d9d7f;
  background: #e5f2e7;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
}

.tt-card-head button {
  color: #fffaf2;
  background: var(--cta);
}

.tt-insight-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(229, 219, 211, 0.72);
  padding: 11px 0;
}

.tt-preview .tt-insight-row {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 9px 0;
}

.tt-insight-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tt-insight-row i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
}

.tt-preview .tt-insight-row i {
  width: 36px;
  height: 36px;
}

.tt-insight-row i img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.tt-insight-row.poop i {
  background: rgba(255, 229, 211, 0.9);
}

.tt-insight-row.hydration i {
  background: rgba(223, 248, 236, 0.95);
}

.tt-insight-row.sleep i {
  background: rgba(238, 230, 255, 0.95);
}

.tt-insight-row p {
  min-width: 0;
  margin: 0;
}

.tt-insight-row strong,
.tt-insight-row span,
.tt-insight-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tt-insight-row strong {
  color: #12312b;
  font-size: 0.98rem;
  font-weight: 730;
  line-height: 1.1;
}

.tt-preview .tt-insight-row strong {
  font-size: 0.82rem;
}

.tt-insight-row span {
  color: #1f8c74;
  font-size: 0.8rem;
  font-weight: 600;
}

.tt-insight-row.poop span {
  color: #d73b2f;
}

.tt-insight-row.sleep span {
  color: #6c4fd3;
}

.tt-insight-row small {
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.tt-insight-row b {
  color: #897a71;
  font-size: 1.4rem;
  font-weight: 450;
}

.tt-section-title,
.tt-section-row {
  margin: 0 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1px;
  text-transform: uppercase;
}

.tt-section-row b {
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: none;
}

.tt-quick-grid.home {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 16px;
}

.tt-quick-grid.home span {
  display: grid;
  min-height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  padding: 8px 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 26px rgba(187, 144, 108, 0.08);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
}

.tt-preview .tt-quick-grid.home span {
  min-height: 58px;
  font-size: 0.66rem;
}

.tt-quick-grid.home span:nth-child(1) {
  background: var(--gradient-home-action-diaper);
  color: #6f3219;
}

.tt-quick-grid.home span:nth-child(2) {
  background: var(--gradient-home-action-poop);
  color: #563025;
}

.tt-quick-grid.home span:nth-child(3) {
  background: var(--gradient-home-action-feed);
  color: #12312b;
}

.tt-quick-grid.home span:nth-child(4) {
  background: var(--gradient-home-action-sleep);
  color: #2b2374;
}

.tt-quick-grid.home img,
.tt-quick-grid.home i {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
}

.tt-quick-img.diaper {
  filter: brightness(0) saturate(100%) invert(50%) sepia(86%) saturate(945%) hue-rotate(342deg) brightness(101%) contrast(92%);
}

.tt-quick-img.feed {
  filter: brightness(0) saturate(100%) invert(61%) sepia(39%) saturate(725%) hue-rotate(102deg) brightness(89%) contrast(90%);
}

.tt-asset-mask {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.tt-diaper-mask {
  -webkit-mask-image: url("./assets/app/icons/diaper-icon-2.svg");
  mask-image: url("./assets/app/icons/diaper-icon-2.svg");
}

.tt-bottle-mask {
  -webkit-mask-image: url("./assets/app/icons/bottlefeed-icon.svg");
  mask-image: url("./assets/app/icons/bottlefeed-icon.svg");
}

.tt-symptom-mask {
  -webkit-mask-image: url("./assets/app/icons/symptom-icon.svg");
  mask-image: url("./assets/app/icons/symptom-icon.svg");
}

.tt-episode-mask {
  -webkit-mask-image: url("./assets/app/icons/episode-icon.svg");
  mask-image: url("./assets/app/icons/episode-icon.svg");
}

.tt-health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 16px;
}

.tt-health-grid span {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 13px 12px;
  color: #fffaf2;
  background: var(--gradient-home-action-symptom);
  box-shadow: 0 12px 26px rgba(187, 144, 108, 0.08);
}

.tt-health-grid span:nth-child(2) {
  background: var(--gradient-home-action-episode);
}

.tt-health-grid i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.tt-health-grid img,
.tt-health-grid b {
  width: 21px;
  height: 21px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.tt-health-grid strong,
.tt-health-grid small {
  display: block;
  font-size: 0.86rem;
  line-height: 1.1;
}

.tt-health-grid small {
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 550;
  opacity: 0.84;
}

.tt-episode-card {
  display: grid;
  gap: 4px;
  margin: 0 16px;
  border: 1px solid rgba(120, 92, 69, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-home-card);
}

.tt-episode-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.tt-episode-card span,
.tt-episode-card small {
  color: var(--ink-muted);
  font-size: 0.74rem;
}

.tt-scenic,
.tt-mountain-hero,
.tt-sleep-hero {
  position: relative;
  min-height: 204px;
  overflow: hidden;
  padding: 64px 16px 14px;
}

.tt-scenic::before,
.tt-mountain-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gradient-hero-glow), var(--gradient-hero-wash);
  content: "";
}

.tt-scenic::after {
  position: absolute;
  inset: -42px -12% auto;
  z-index: 0;
  height: 170px;
  background: url("./assets/app/hero/background.svg") center top / 126% auto no-repeat;
  content: "";
  filter: saturate(0.94) hue-rotate(4deg) brightness(1.02);
  opacity: 0.72;
}

.tt-scenic h2,
.tt-mountain-hero h2 {
  position: relative;
  z-index: 3;
  max-width: 170px;
  margin: 0;
  color: #e79a88;
  font-size: 1.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.94;
}

.tt-scenic p,
.tt-mountain-hero p {
  position: relative;
  z-index: 3;
  max-width: 210px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.tt-scenic button,
.tt-mountain-hero button {
  position: absolute;
  right: 16px;
  top: 64px;
  z-index: 3;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: #fffaf2;
  background: var(--cta);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
}

.tt-scenic img {
  position: absolute;
  z-index: 2;
  max-width: none;
  pointer-events: none;
}

.tt-scenic.diaper img {
  right: -80px;
  bottom: -18px;
  width: 270px;
}

.tt-diaper-preview {
  gap: 8px;
}

.tt-diaper-preview > .tt-scenic,
.tt-diaper-preview > .tt-metric-strip,
.tt-diaper-preview > .tt-card {
  flex: 0 0 auto;
}

.tt-diaper-preview .tt-scenic {
  min-height: 194px;
}

.tt-diaper-preview .tt-scenic p {
  max-width: 190px;
  font-size: 0.86rem;
  line-height: 1.2;
}

.tt-diaper-preview .tt-scenic.diaper img {
  right: -54px;
  bottom: -10px;
  width: 250px;
}

.tt-scenic.feed img {
  right: -92px;
  bottom: -4px;
  width: 300px;
}

.tt-feed-preview {
  gap: 8px;
}

.tt-feed-preview > .tt-scenic,
.tt-feed-preview > .tt-metric-strip,
.tt-feed-preview > .tt-card {
  flex: 0 0 auto;
}

.tt-feed-preview .tt-scenic {
  min-height: 190px;
  padding: 64px 16px 14px;
}

.tt-feed-preview .tt-scenic p {
  max-width: 184px;
  font-size: 0.86rem;
  line-height: 1.2;
}

.tt-feed-preview .tt-scenic button {
  top: 66px;
}

.tt-feed-preview .tt-scenic.feed img {
  right: -54px;
  bottom: -12px;
  width: 268px;
}

.tt-scenic.poop img {
  right: -48px;
  bottom: 0;
  width: 240px;
}

.tt-poop-preview {
  gap: 8px;
}

.tt-poop-preview > .tt-scenic,
.tt-poop-preview > .tt-metric-strip,
.tt-poop-preview > .tt-card {
  flex: 0 0 auto;
}

.tt-poop-preview .tt-scenic {
  min-height: 170px;
  padding: 60px 16px 16px;
}

.tt-poop-preview .tt-scenic h2 {
  font-size: 1.72rem;
}

.tt-poop-preview .tt-scenic p {
  max-width: 158px;
  font-size: 0.84rem;
  line-height: 1.18;
}

.tt-poop-preview .tt-scenic button {
  top: 66px;
  min-height: 42px;
  padding-inline: 18px;
}

.tt-poop-preview .tt-scenic.poop img {
  right: -2px;
  bottom: -2px;
  width: 150px;
}

.tt-scenic.growth img {
  right: -72px;
  bottom: -2px;
  width: 248px;
}

.tt-mountain-hero {
  min-height: 206px;
  background: linear-gradient(180deg, rgba(255, 245, 220, 0.42), rgba(251, 245, 234, 0));
}

.tt-mountain-hero::after {
  position: absolute;
  right: -18px;
  bottom: 0;
  left: -22px;
  height: 90px;
  background:
    radial-gradient(100px 60px at 33% 0%, rgba(239, 157, 123, 0.2) 0 68%, transparent 69%),
    radial-gradient(120px 70px at 77% 0%, rgba(239, 157, 123, 0.18) 0 68%, transparent 69%);
  content: "";
}

.tt-mountain-hero .tt-sun-disc {
  right: 18px;
  top: 30px;
  width: 60px;
  height: 60px;
  box-shadow: 0 16px 34px rgba(255, 214, 119, 0.22);
}

.tt-milestone-preview {
  gap: 8px;
}

.tt-milestone-preview > .tt-mountain-hero,
.tt-milestone-preview > .tt-metric-strip,
.tt-milestone-preview > .tt-card {
  flex: 0 0 auto;
}

.tt-milestone-preview .tt-mountain-hero {
  min-height: 190px;
  padding-top: 64px;
}

.tt-milestone-preview .tt-mountain-hero p {
  max-width: 210px;
  font-size: 0.88rem;
  line-height: 1.22;
}

.tt-milestone-preview .tt-mountain-hero::after {
  height: 84px;
}

.tt-metric-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -30px 16px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-home-card);
}

.tt-metric-strip div {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr;
  gap: 0 8px;
  align-content: center;
  border-right: 1px solid rgba(229, 219, 211, 0.72);
  padding: 9px 10px;
}

.tt-metric-strip div:last-child {
  border-right: 0;
}

.tt-metric-strip i,
.tt-metric-strip img {
  grid-row: span 3;
  align-self: start;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}

.tt-metric-strip strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 780;
  line-height: 1;
}

.tt-metric-strip span {
  color: var(--ink-muted);
  font-size: 0.62rem;
  line-height: 1.1;
}

.tt-metric-strip small {
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-diaper-preview .tt-metric-strip {
  z-index: 6;
  height: 76px;
  margin: -28px 14px 0;
  border-radius: 18px;
}

.tt-diaper-preview .tt-metric-strip div {
  min-height: 74px;
  grid-template-columns: 34px 1fr;
  gap: 0 7px;
  padding: 8px 9px;
}

.tt-diaper-preview .tt-metric-strip i,
.tt-diaper-preview .tt-metric-strip img {
  width: 31px;
  height: 31px;
}

.tt-diaper-preview .tt-metric-strip strong {
  font-size: 1.06rem;
}

.tt-diaper-preview .tt-metric-strip span {
  font-size: 0.6rem;
}

.tt-diaper-preview .tt-metric-strip small {
  font-size: 0.56rem;
  line-height: 1.08;
}

.tt-poop-preview .tt-metric-strip {
  z-index: 6;
  height: 66px;
  margin-top: -10px;
  margin-bottom: 0;
  border-radius: 17px;
}

.tt-poop-preview .tt-metric-strip div {
  min-height: 64px;
  grid-template-columns: 31px 1fr;
  padding: 7px 8px;
}

.tt-poop-preview .tt-metric-strip i,
.tt-poop-preview .tt-metric-strip img {
  width: 30px;
  height: 30px;
}

.tt-poop-preview .tt-metric-strip strong {
  font-size: 1.05rem;
}

.tt-feed-preview .tt-metric-strip {
  z-index: 6;
  height: 72px;
  margin-top: -26px;
  margin-bottom: 0;
  border-radius: 18px;
}

.tt-feed-preview .tt-metric-strip div {
  min-height: 70px;
  grid-template-columns: 32px 1fr;
  padding: 8px 9px;
}

.tt-feed-preview .tt-metric-strip i,
.tt-feed-preview .tt-metric-strip img {
  width: 30px;
  height: 30px;
}

.tt-feed-preview .tt-metric-strip strong {
  font-size: 1.04rem;
}

.tt-milestone-preview .tt-metric-strip {
  z-index: 6;
  height: 76px;
  margin: -28px 14px 0;
  border-radius: 18px;
}

.tt-milestone-preview .tt-metric-strip div {
  min-height: 74px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0 7px;
  padding: 8px 9px;
}

.tt-milestone-preview .tt-metric-strip i,
.tt-milestone-preview .tt-metric-strip img {
  width: 31px;
  height: 31px;
}

.tt-milestone-preview .tt-metric-strip strong {
  font-size: 1.06rem;
}

.tt-milestone-preview .tt-metric-strip span {
  font-size: 0.6rem;
}

.tt-milestone-preview .tt-metric-strip small {
  font-size: 0.56rem;
  line-height: 1.08;
}

.tt-health-preview,
.tt-growth-preview {
  gap: 8px;
}

.tt-health-preview > .tt-mountain-hero,
.tt-health-preview > .tt-metric-strip,
.tt-health-preview > .tt-card,
.tt-growth-preview > .tt-scenic,
.tt-growth-preview > .tt-metric-strip,
.tt-growth-preview > .tt-card {
  flex: 0 0 auto;
}

.tt-health-preview .tt-mountain-hero {
  min-height: 190px;
  padding-top: 64px;
}

.tt-health-preview .tt-mountain-hero p {
  max-width: 220px;
  font-size: 0.88rem;
  line-height: 1.22;
}

.tt-health-preview .tt-mountain-hero::after {
  height: 84px;
}

.tt-health-preview .tt-metric-strip {
  z-index: 6;
  height: 104px;
  margin: -30px 16px 0;
  border-radius: 18px;
}

.tt-health-preview .tt-metric-strip div {
  min-height: 102px;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 4px;
  padding: 11px 8px 10px;
  text-align: center;
}

.tt-health-preview .tt-metric-strip i,
.tt-health-preview .tt-metric-strip img {
  grid-row: auto;
  align-self: center;
  width: 32px;
  height: 32px;
}

.tt-health-preview .tt-metric-strip span {
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 740;
  line-height: 1.08;
}

.tt-health-preview .tt-metric-strip strong {
  font-size: 1.28rem;
  line-height: 0.95;
}

.tt-health-preview .tt-metric-strip small {
  color: var(--ink-muted);
  font-size: 0.58rem;
  font-weight: 650;
  line-height: 1.08;
  text-transform: none;
}

.tt-growth-preview .tt-scenic {
  min-height: 190px;
  padding-top: 64px;
}

.tt-growth-preview .tt-scenic p {
  max-width: 190px;
  font-size: 0.88rem;
  line-height: 1.22;
}

.tt-growth-preview .tt-scenic.growth img {
  right: -54px;
  bottom: -10px;
  width: 230px;
}

.tt-growth-preview .tt-metric-strip {
  z-index: 6;
  height: 82px;
  margin: -28px 14px 0;
  border-radius: 18px;
}

.tt-growth-preview .tt-metric-strip div {
  min-height: 80px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0 8px;
  padding: 9px 8px;
}

.tt-growth-preview .tt-metric-strip i,
.tt-growth-preview .tt-metric-strip img {
  width: 30px;
  height: 30px;
}

.tt-growth-preview .tt-metric-strip strong {
  font-size: 1.02rem;
}

.tt-growth-preview .tt-metric-strip small {
  font-size: 0.56rem;
  line-height: 1.05;
}

.tt-growth-preview .tt-metric-strip span {
  font-size: 0.62rem;
}

.tt-quick-card {
  margin: 0 16px;
  padding: 15px 16px;
}

.tt-quick-card p {
  margin: 7px 0 12px;
  color: var(--ink-muted);
  font-size: 0.76rem;
  line-height: 1.32;
}

.tt-tile-row,
.tt-two-grid,
.tt-three-actions {
  display: grid;
  gap: 9px;
}

.tt-tile-row {
  grid-template-columns: repeat(3, 1fr);
}

.tt-tile-row span,
.tt-two-grid span,
.tt-three-actions span {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid rgba(120, 92, 69, 0.08);
  border-radius: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(172, 139, 113, 0.07);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  text-align: center;
}

.tt-tile-row img {
  width: 42px;
  height: 30px;
  object-fit: contain;
}

.tt-tile-row.poop-types img {
  width: 56px;
}

.tt-poop-preview .tt-poop-quick {
  padding: 11px 16px;
}

.tt-poop-preview .tt-poop-quick .tt-card-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.tt-poop-preview .tt-poop-quick .tt-card-head b {
  padding: 6px 12px;
  color: var(--ink-muted);
  background: rgba(255, 251, 244, 0.82);
  border: 1px solid rgba(120, 92, 69, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.tt-poop-preview .tt-poop-quick .tt-card-head b:last-child {
  border: 0;
  padding-inline: 2px;
  background: transparent;
  box-shadow: none;
}

.tt-poop-preview .tt-poop-quick p {
  margin: 5px 0 8px;
  font-size: 0.7rem;
  line-height: 1.18;
}

.tt-poop-preview .tt-tile-row.poop-types {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tt-poop-preview .tt-tile-row.poop-types span {
  min-height: 43px;
  gap: 4px;
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.66);
}

.tt-poop-preview .tt-tile-row.poop-types img {
  width: 62px;
  height: 14px;
}

.tt-poop-preview .tt-poop-quick > small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.6rem;
  line-height: 1.1;
}

.tt-feed-preview .tt-feed-quick {
  padding: 12px 16px 14px;
}

.tt-feed-preview .tt-feed-quick .tt-card-head {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 10px;
}

.tt-feed-preview .tt-feed-quick .tt-card-head b {
  color: var(--ink-muted);
}

.tt-feed-preview .tt-feed-quick .tt-card-head b:first-of-type {
  padding: 6px 12px;
  color: #6d9d7f;
  background: #e5f2e7;
  border: 0;
}

.tt-feed-preview .tt-feed-quick .tt-card-head b:not(:first-of-type) {
  padding-inline: 0;
  background: transparent;
}

.tt-feed-preview .tt-feed-quick p {
  margin: 5px 0 9px;
  font-size: 0.72rem;
  line-height: 1.2;
}

.tt-feed-preview .feed-types {
  gap: 8px;
}

.tt-feed-preview .feed-types span {
  min-height: 54px;
  gap: 6px;
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.68);
}

.tt-feed-icon {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
}

.tt-feed-icon::before,
.tt-feed-icon::after {
  content: "";
}

.tt-feed-milk {
  background: rgba(220, 244, 222, 0.95);
}

.tt-feed-milk::before {
  width: 11px;
  height: 15px;
  border: 2px solid #35bf74;
  border-radius: 60% 60% 70% 70%;
  transform: rotate(45deg);
}

.tt-feed-snack {
  background: rgba(255, 229, 242, 0.95);
}

.tt-feed-snack::before {
  width: 16px;
  height: 10px;
  border: 2px solid #e57aa8;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.tt-feed-snack::after {
  position: absolute;
  top: 9px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #e57aa8;
}

.tt-feed-bottle {
  background: rgba(220, 244, 222, 0.95);
}

.tt-feed-bottle img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(61%) sepia(39%) saturate(725%) hue-rotate(102deg) brightness(89%) contrast(90%);
}

.tt-feed-solids {
  background: rgba(255, 231, 213, 0.95);
}

.tt-feed-solids::before {
  width: 13px;
  height: 17px;
  border-right: 2px solid #c57e4d;
  border-left: 2px solid #c57e4d;
}

.tt-feed-solids::after {
  position: absolute;
  top: 7px;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #c57e4d;
}

.tt-tile-row.letters i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #35bf74;
  background: #e5f2e7;
  font-style: normal;
  font-weight: 800;
}

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

.tt-two-grid span {
  min-height: 64px;
}

.tt-insight-card {
  display: grid;
  gap: 7px;
  margin: 0 16px;
  padding: 15px 16px;
}

.tt-insight-card.green {
  background: linear-gradient(135deg, rgba(245, 255, 249, 0.9) 0%, rgba(255, 255, 255, 0.88) 62%, rgba(255, 250, 244, 0.92) 100%);
}

.tt-insight-card.peach {
  background: linear-gradient(135deg, rgba(255, 248, 242, 0.92) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(245, 255, 249, 0.9) 100%);
}

.tt-poop-preview .tt-poop-insight {
  gap: 5px;
  padding: 12px 16px 13px;
}

.tt-poop-preview .tt-poop-insight .tt-card-head b {
  color: #6d9d7f;
  background: #e5f2e7;
  border: 0;
}

.tt-insight-card h3,
.tt-latest h3,
.tt-trend h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.18;
}

.tt-insight-card p,
.tt-latest p,
.tt-report-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.tt-sleep-hero {
  min-height: 342px;
  padding: 30px 16px 24px;
  background: linear-gradient(135deg, rgba(246, 241, 255, 0.94), rgba(255, 255, 255, 0.72));
}

.tt-sleep-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7c58ee;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-sleep-hero h2 {
  position: relative;
  z-index: 2;
  max-width: 180px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.82rem;
  font-weight: 780;
  line-height: 1.02;
}

.tt-sleep-hero p {
  position: relative;
  z-index: 2;
  max-width: 190px;
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.tt-sleep-hero > img {
  position: absolute;
  right: -58px;
  bottom: 72px;
  width: 260px;
}

.tt-nap-pill {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 12px;
  align-items: center;
  width: 196px;
  margin-top: 24px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-home-card);
}

.tt-nap-pill i {
  grid-row: span 3;
}

.tt-nap-pill span,
.tt-nap-pill small {
  color: var(--ink-muted);
  font-size: 0.73rem;
}

.tt-nap-pill strong {
  color: #7c58ee;
  font-size: 1rem;
}

.tt-sleep-next {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  margin: -34px 16px 0;
  border-color: rgba(255, 220, 176, 0.72);
  padding: 16px;
  background: var(--gradient-home-recommendation);
}

.tt-sleep-next .tt-star {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf2;
  background: #ffe09c;
  font-size: 1.2rem;
}

.tt-sleep-next span {
  color: #f5a017;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tt-sleep-next h3,
.tt-sleep-next p {
  margin: 2px 0 0;
}

.tt-sleep-next h3 {
  color: var(--ink);
  font-size: 1rem;
}

.tt-sleep-next p {
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1.25;
}

.tt-sleep-next button {
  grid-column: 1 / -1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fffaf2;
  background: linear-gradient(180deg, #ffc24a 0%, #ffa329 100%);
  font: inherit;
  font-weight: 800;
}

.tt-sleep-preview {
  gap: 8px;
}

.tt-sleep-preview > .tt-sleep-hero,
.tt-sleep-preview > .tt-sleep-next,
.tt-sleep-preview > .tt-section-title,
.tt-sleep-preview > .tt-three-actions {
  flex: 0 0 auto;
}

.tt-sleep-preview .tt-sleep-hero {
  min-height: 298px;
  padding: 28px 16px 18px;
}

.tt-sleep-preview .tt-sleep-label {
  font-size: 0.76rem;
}

.tt-sleep-preview .tt-sleep-hero h2 {
  max-width: 174px;
  margin-top: 24px;
  font-size: 1.7rem;
}

.tt-sleep-preview .tt-sleep-hero p {
  max-width: 184px;
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.28;
}

.tt-sleep-preview .tt-sleep-hero > img {
  right: -40px;
  bottom: 34px;
  width: 232px;
}

.tt-sleep-preview .tt-nap-pill {
  width: 190px;
  margin-top: 18px;
  grid-template-columns: 40px 1fr;
  gap: 0 10px;
  padding: 13px 14px;
}

.tt-sleep-preview .tt-nap-pill span,
.tt-sleep-preview .tt-nap-pill small {
  font-size: 0.7rem;
}

.tt-sleep-preview .tt-sleep-next {
  grid-template-columns: 40px 1fr;
  gap: 8px 10px;
  margin: 0 16px;
  padding: 13px 15px 14px;
}

.tt-sleep-preview .tt-sleep-next .tt-star {
  width: 40px;
  height: 40px;
}

.tt-sleep-preview .tt-sleep-next span {
  font-size: 0.68rem;
}

.tt-sleep-preview .tt-sleep-next h3 {
  font-size: 0.95rem;
}

.tt-sleep-preview .tt-sleep-next p {
  font-size: 0.7rem;
  line-height: 1.22;
}

.tt-sleep-preview .tt-sleep-next button {
  min-height: 38px;
}

.tt-sleep-preview .tt-three-actions span {
  min-height: 58px;
}

.tt-three-actions {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 16px;
}

.tt-health-actions {
  display: grid;
  gap: 10px;
  margin: 0 16px;
  padding: 16px;
}

.tt-health-actions h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.tt-health-actions > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(120, 92, 69, 0.1);
  border-radius: 16px;
  padding: 13px 14px;
}

.tt-health-actions i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #edf2fb;
}

.tt-health-actions img {
  width: 22px;
  height: 22px;
}

.tt-health-actions p {
  margin: 0;
}

.tt-health-actions strong,
.tt-health-actions span {
  display: block;
}

.tt-health-actions strong {
  font-size: 0.94rem;
}

.tt-health-actions span {
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1.28;
}

.tt-latest,
.tt-trend,
.tt-report-card {
  margin: 0 16px;
  padding: 16px;
}

.tt-latest > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.tt-latest h3 {
  margin-top: 12px;
  font-size: 1.16rem;
}

.tt-latest p {
  margin-top: 10px;
}

.tt-trend {
  display: grid;
  gap: 10px;
}

.tt-chart {
  height: 78px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, transparent 0 24%, rgba(120, 92, 69, 0.09) 24% 25%, transparent 25% 49%, rgba(120, 92, 69, 0.09) 49% 50%, transparent 50% 74%, rgba(120, 92, 69, 0.09) 74% 75%, transparent 75%),
    linear-gradient(160deg, transparent 0 40%, #e99672 40% 44%, transparent 44% 100%);
}

.tt-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.tt-date-grid label {
  display: grid;
  gap: 7px;
}

.tt-date-grid span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tt-date-grid strong {
  display: flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(120, 92, 69, 0.12);
  border-radius: 999px;
  padding-inline: 14px;
  color: var(--ink);
  font-size: 0.8rem;
}

.tt-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tt-chip-wrap span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid #705644;
  border-radius: 999px;
  padding-inline: 12px;
  color: #705644;
  background: rgba(255, 251, 244, 0.6);
  font-size: 0.7rem;
  font-weight: 700;
}

.tt-care-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 16px;
}

.tt-care-tools span {
  display: grid;
  min-height: 64px;
  place-items: center;
  border: 1px solid rgba(70, 190, 118, 0.1);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(235, 249, 236, 0.96) 0%, rgba(220, 244, 222, 0.96) 100%);
  color: #0d2538;
  font-size: 0.72rem;
  font-weight: 800;
}

.tt-care-tools span:nth-child(2),
.tt-care-tools span:nth-child(3) {
  border-color: rgba(55, 138, 222, 0.1);
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98) 0%, rgba(220, 236, 255, 0.98) 100%);
}

.tt-bottom-nav {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  height: 68px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 6px 7px;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.tt-bottom-nav span {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 760;
  line-height: 1;
}

.tt-bottom-nav .active {
  color: #f26f1d;
  background: linear-gradient(180deg, rgba(255, 241, 229, 0.92) 0%, rgba(255, 248, 239, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.tt-bottom-nav em {
  max-width: 100%;
  overflow: hidden;
  padding-inline: 1px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tt-nav-icon {
  display: block;
  width: 21px;
  height: 21px;
  color: currentColor;
  flex: 0 0 auto;
}

.tt-nav-img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(61%) sepia(8%) saturate(470%) hue-rotate(344deg) brightness(90%) contrast(86%);
  opacity: 0.96;
}

.tt-drop,
.tt-clock,
.tt-calendar,
.tt-moon,
.tt-utensils,
.tt-shield,
.tt-scale,
.tt-ruler,
.tt-head,
.tt-star-icon,
.tt-stop,
.tt-pencil {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #edf2fb;
}

.tt-drop {
  background: rgba(223, 248, 236, 0.95);
}

.tt-drop::before {
  width: 10px;
  height: 14px;
  border: 2px solid #44b9a6;
  border-radius: 60% 60% 70% 70%;
  content: "";
  transform: rotate(45deg);
}

.tt-clock {
  background: rgba(255, 241, 229, 0.95);
}

.tt-clock::before {
  width: 14px;
  height: 14px;
  border: 2px solid #ff8156;
  border-radius: 50%;
  content: "";
}

.tt-calendar {
  background: rgba(238, 230, 255, 0.95);
}

.tt-calendar::before {
  width: 15px;
  height: 15px;
  border: 2px solid #7c58ee;
  border-radius: 4px;
  content: "";
}

.tt-moon {
  background: rgba(238, 230, 255, 0.95);
}

.tt-moon::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: -4px 2px 0 0 #7c58ee;
  content: "";
}

.tt-utensils::before {
  color: #7c58ee;
  content: "⅄";
  font-weight: 850;
}

.tt-shield::before {
  width: 14px;
  height: 16px;
  border: 2px solid #6d9d7f;
  border-radius: 8px 8px 10px 10px;
  content: "";
}

.tt-scale::before {
  content: "⌂";
}

.tt-ruler::before {
  content: "↙";
}

.tt-head::before {
  content: "◉";
}

.tt-star-icon::before {
  color: #35bf74;
  content: "☆";
  font-size: 1rem;
  font-weight: 850;
}

.tt-stop::before {
  width: 12px;
  height: 12px;
  border: 2px solid #ef9d7b;
  border-radius: 4px;
  content: "";
}

.tt-pencil::before {
  color: #2f86dd;
  content: "✎";
  font-size: 1rem;
}

.feature-section {
  padding: 64px 0 48px;
}

.faq-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.05;
}

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

.feature-block {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 0 8px;
  text-align: center;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon-coral { color: #f26f1d; background: rgba(255, 229, 211, 0.9); }
.icon-mint { color: #2f7f62; background: #d7f2df; }
.icon-blue { color: #2f86dd; background: #dcecff; }
.icon-lavender { color: #7c58ee; background: rgba(238, 230, 255, 0.95); }
.icon-gold { color: #bb8d4a; background: #fff0d6; }

.feature-block h3 {
  margin: 6px 0 0;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.feature-block p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.testimonial-section {
  display: grid;
  justify-items: center;
  padding: 10px 0 54px;
}

.testimonial-carousel {
  position: relative;
  width: min(100%, 680px);
  min-height: 204px;
}

.testimonial-frame {
  overflow: hidden;
  border-radius: 24px;
}

.testimonial-track {
  --testimonial-gap: 18px;
  display: flex;
  gap: var(--testimonial-gap);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 168px;
  flex: 0 0 100%;
  grid-template-columns: 58px 1fr;
  gap: 10px 18px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  padding: 30px 38px 22px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 46px rgba(180, 146, 117, 0.12);
}

.testimonial-quote {
  justify-self: end;
  color: #ff7f5e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.8;
}

.testimonial-card blockquote {
  max-width: 52ch;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.5;
}

.testimonial-card figcaption {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(120, 92, 69, 0.16);
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.testimonial-card small {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(158, 143, 132, 0.22);
  cursor: pointer;
  transition: background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.testimonial-dot[aria-current="true"] {
  background: #ff8b6b;
  transform: scale(1.08);
}

.testimonial-dot:focus-visible {
  outline: 2px solid rgba(255, 127, 94, 0.42);
  outline-offset: 4px;
}

.pricing-section {
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 20px 0 82px;
}

.pricing-heading,
.download-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.pricing-heading {
  gap: 10px;
}

.pricing-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.08;
}

.pricing-heading p,
.download-panel p {
  max-width: 660px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(120, 92, 69, 0.08);
}

.pricing-card-featured {
  border-color: rgba(239, 157, 123, 0.42);
  background: linear-gradient(145deg, rgba(255, 241, 229, 0.95), rgba(255, 255, 255, 0.72));
  box-shadow: 0 22px 52px rgba(180, 146, 117, 0.18);
}

.plan-badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 12px;
  color: #9b4f2f;
  background: rgba(255, 229, 211, 0.92);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.plan-badge-muted {
  color: #496d59;
  background: var(--healthy-bg);
}

.pricing-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.1;
}

.plan-subtitle {
  margin: 7px 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-price {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  color: #2f7f62;
  content: "✓";
  font-weight: 900;
}

.plan-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding-inline: 16px;
}

.comparison-block {
  display: grid;
  min-width: 0;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 34px rgba(120, 92, 69, 0.07);
}

.comparison-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 8px 18px;
}

.comparison-heading h3,
.download-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: 0;
}

.comparison-heading p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  -webkit-overflow-scrolling: touch;
}

.comparison-scroll:focus-visible {
  outline: 3px solid rgba(239, 157, 123, 0.38);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(120, 92, 69, 0.1);
  padding: 15px 16px;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--ink);
  background: rgba(255, 241, 229, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 24%;
  color: var(--ink);
  font-weight: 850;
}

.comparison-table td {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-notes {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(120, 92, 69, 0.1);
  border-radius: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 26px rgba(120, 92, 69, 0.06);
}

.pricing-notes p {
  position: relative;
  margin: 0;
  padding: 9px 0 9px 22px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.pricing-notes p::before {
  position: absolute;
  left: 0;
  top: 1.12em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  content: "";
}

.pricing-notes p:last-child {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(120, 92, 69, 0.1);
  margin-top: 4px;
  padding-top: 13px;
}

.download-panel {
  gap: 7px;
  padding-top: 4px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.pricing-section > .store-buttons {
  margin-top: -10px;
}

.store-button {
  display: inline-flex;
  min-width: 174px;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 8px 14px;
  color: #fffaf2;
  background: #050505;
  box-shadow: 0 12px 22px rgba(34, 28, 22, 0.14);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(34, 28, 22, 0.18);
}

.store-button svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.store-button .apple-mark {
  width: 25px;
  height: 31px;
}

.store-button span {
  display: grid;
  justify-items: start;
  line-height: 1;
}

.store-button small {
  font-size: 0.62rem;
  font-weight: 650;
}

.store-button strong {
  margin-top: 3px;
  font-size: 1.08rem;
  font-weight: 780;
}

.faq-section {
  display: grid;
  gap: 30px;
  padding: 92px 0 96px;
}

.faq-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.faq-heading h2 {
  max-width: 680px;
  margin-top: 10px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 26px rgba(120, 92, 69, 0.06);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary::after {
  color: #f26f1d;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.legal-page {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
  padding: 72px 0 96px;
}

.legal-hero {
  display: grid;
  max-width: 820px;
  gap: 18px;
  padding-bottom: 44px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.94;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.16rem;
  line-height: 1.55;
}

.legal-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.legal-pill-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding-inline: 15px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 780;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.legal-summary,
.legal-section {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(120, 92, 69, 0.07);
}

.legal-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.legal-summary-strong {
  background: linear-gradient(145deg, rgba(255, 241, 229, 0.88), rgba(255, 255, 255, 0.68));
}

.legal-summary h2,
.legal-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
}

.legal-summary p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.legal-summary p:last-child {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 720;
}

.legal-content {
  display: grid;
  gap: 12px;
}

.legal-section {
  padding: 24px;
}

.legal-callout {
  border-color: rgba(239, 157, 123, 0.34);
  background: linear-gradient(145deg, rgba(255, 241, 229, 0.9), rgba(255, 255, 255, 0.7));
}

.legal-section p {
  max-width: 76ch;
  margin: 12px 0 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.legal-section a {
  color: #d96e43;
  font-weight: 760;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding: 30px 0 42px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  color: var(--ink-muted);
  font-weight: 720;
}

.site-footer p {
  justify-self: end;
  margin: 0;
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 4rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero,
  .legal-page,
  .feature-section,
  .testimonial-section,
  .pricing-section,
  .faq-section,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 14px 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 16px;
  }

  .site-header > .button {
    max-width: 126px;
    padding-inline: 14px;
  }

  .hero {
    padding: 44px 0 18px;
  }

  .hero .eyebrow {
    min-height: 38px;
    padding-inline: 18px;
    font-size: 0.7rem;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 2.25rem;
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.03rem;
  }

  .hero-actions {
    max-width: 360px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .product-showcase {
    padding-bottom: 64px;
  }

  .section-kicker {
    width: min(calc(100% - 28px), 560px);
    gap: 12px;
    font-size: 0.7rem;
  }

  .showcase-stage {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 22px;
  }

  .phone-shell {
    order: 1;
    width: min(88vw, 390px);
  }

  .ambient-viewport {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    overflow-x: auto;
    padding: 4px 14px 18px;
    transform: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ambient-viewport::before,
  .ambient-viewport::after {
    display: none;
  }

  .ambient-loop {
    gap: 14px;
    padding-inline: 0;
    animation: none !important;
    transform: none !important;
  }

  .ambient-loop [aria-hidden="true"] {
    display: none;
  }

  .ambient-loop .tt-preview {
    flex-basis: var(--carousel-screen-mobile-width);
    width: var(--carousel-screen-mobile-width);
    height: 565px;
    margin-top: 0 !important;
    opacity: 1;
    scroll-snap-align: center;
  }

  .feature-section {
    padding: 42px 0 38px;
  }

  .faq-heading h2 {
    font-size: 2.1rem;
    line-height: 1.12;
  }

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

  .feature-block {
    padding-inline: 2px;
  }

  .testimonial-section {
    padding-bottom: 42px;
  }

  .testimonial-card {
    grid-template-columns: 34px 1fr;
    gap: 8px 12px;
    border-radius: 22px;
    padding: 24px 20px 38px;
  }

  .testimonial-quote {
    font-size: 3rem;
  }

  .testimonial-card blockquote {
    font-size: 0.98rem;
  }

  .pricing-section {
    gap: 22px;
    padding: 8px 0 60px;
  }

  .pricing-heading h2 {
    font-size: 2rem;
  }

  .pricing-card {
    border-radius: 24px;
    padding: 20px;
  }

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

  .comparison-block {
    border-radius: 24px;
    padding: 16px;
  }

  .comparison-heading {
    display: grid;
    align-items: start;
  }

  .pricing-notes {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 16px;
  }

  .pricing-notes p:last-child {
    grid-column: auto;
  }

  .store-buttons {
    gap: 10px;
  }

  .store-button {
    min-width: 160px;
  }

  .faq-section {
    gap: 26px;
    padding: 72px 0;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 44px 0 72px;
  }

  .legal-hero {
    padding-bottom: 30px;
  }

  .legal-hero h1 {
    font-size: 2.6rem;
    line-height: 1;
  }

  .legal-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-summary {
    position: static;
  }

  .legal-section {
    border-radius: 20px;
    padding: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    gap: 8px;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .phone-shell {
    width: min(92vw, 352px);
  }

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

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

  .testimonial-quote {
    justify-self: start;
  }

  .testimonial-card figcaption {
    grid-column: 1;
  }

  .store-buttons,
  .store-button {
    width: 100%;
  }

  .tt-phone-content {
    padding-inline: 14px;
  }

  .tt-shell-header {
    padding-inline: 14px;
  }

  .tt-health-grid {
    gap: 8px;
    margin-inline: 14px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .ambient-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ambient-loop {
    animation: none !important;
    transform: none !important;
  }

  .ambient-loop [aria-hidden="true"] {
    display: none;
  }

  .ambient-loop .tt-preview {
    scroll-snap-align: center;
  }

  .testimonial-frame {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-track {
    transform: none !important;
  }

  .testimonial-card {
    scroll-snap-align: center;
  }

  .testimonial-card[aria-hidden="true"] {
    display: none;
  }

  .testimonial-dots {
    display: none;
  }
}

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

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

  .ambient-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ambient-loop {
    animation: none !important;
    transform: none !important;
  }

  .ambient-loop [aria-hidden="true"] {
    display: none;
  }

  .ambient-loop .tt-preview {
    scroll-snap-align: center;
  }
}
