:root {
  --bg: #050706;
  --bg-soft: #0a0f0c;
  --surface: rgba(247, 252, 248, 0.07);
  --surface-strong: rgba(247, 252, 248, 0.12);
  --line: rgba(233, 255, 238, 0.13);
  --text: #f6fbf4;
  --muted: #a6b4a9;
  --lime: #c8ff4d;
  --green: #49f0a2;
  --cyan: #72ecff;
  --ink: #07100b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1180px;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 22% 12%, rgba(73, 240, 162, 0.14), transparent 26rem),
    radial-gradient(circle at 78% 4%, rgba(114, 236, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #050706 0%, #07100b 48%, #030504 100%);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  width: 28rem;
  height: 28rem;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 20%);
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(200, 255, 77, 0.11), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--green), var(--cyan));
  box-shadow: 0 0 22px rgba(73, 240, 162, 0.42);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.62);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(200, 255, 77, 0.26);
  background: rgba(5, 7, 6, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--green) 52%, var(--cyan));
  color: var(--ink);
  font-size: 0.94rem;
  box-shadow: 0 0 28px rgba(200, 255, 77, 0.32);
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246, 251, 244, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.language-menu {
  position: relative;
  z-index: 25;
}

.language-menu summary {
  min-width: 52px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 13px;
  border: 1px solid rgba(200, 255, 77, 0.22);
  border-radius: 999px;
  background: rgba(200, 255, 77, 0.1);
  color: var(--text);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  color: var(--lime);
  content: "▾";
  font-size: 0.65rem;
}

.language-menu[open] summary {
  border-color: rgba(200, 255, 77, 0.42);
  background: rgba(200, 255, 77, 0.16);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 178px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 7, 6, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.language-options a {
  display: flex;
  justify-content: space-between;
  padding: 10px 11px;
  border-radius: 12px;
  color: rgba(246, 251, 244, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
}

.language-options a:hover,
.language-options a.is-active {
  background: rgba(200, 255, 77, 0.12);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

main {
  padding-top: 82px;
}

.hero,
.section-grid {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 1.05fr);
  align-items: center;
  gap: 64px;
  padding: 46px 0 64px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(4rem, 10vw, 7.9rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 650;
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  align-items: center;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.availability span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 251, 244, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(135deg, var(--lime), var(--green));
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(73, 240, 162, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
}

.store-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: #060706;
  color: var(--text);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.store-badge::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.1), transparent 34%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.store-badge:hover {
  border-color: rgba(200, 255, 77, 0.42);
  background: #0c100d;
  box-shadow: 0 22px 58px rgba(73, 240, 162, 0.12);
  transform: translateY(-2px);
}

.store-badge:hover::after {
  transform: translateX(130%);
}

.store-badge.is-disabled {
  opacity: 0.66;
  pointer-events: none;
}

.store-badge-large {
  min-width: 208px;
  min-height: 66px;
}

.store-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.store-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
}

.store-copy small {
  color: rgba(246, 251, 244, 0.74);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.store-copy strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.32rem;
  line-height: 1;
}

.store-badge-play .play-blue {
  fill: #58c6ff;
}

.store-badge-play .play-green {
  fill: #5eea97;
}

.store-badge-play .play-yellow {
  fill: #ffe16a;
}

.store-badge-play .play-red {
  fill: #ff6b6b;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.hero-proof div {
  min-width: 116px;
  padding-left: 16px;
  border-left: 1px solid rgba(200, 255, 77, 0.32);
}

.hero-proof strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.5rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(200, 255, 77, 0.14);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-one {
  width: 570px;
  height: 570px;
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-color: rgba(114, 236, 255, 0.13);
  animation-duration: 26s;
  animation-direction: reverse;
}

.phone-wrap {
  position: relative;
  z-index: 2;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow), 0 0 80px rgba(73, 240, 162, 0.1);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) rotate(-3deg);
  transition: transform 0.22s ease;
  will-change: transform;
}

.phone {
  position: relative;
  overflow: hidden;
  width: min(330px, 72vw);
  height: 650px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background: #050806;
}

.phone::after {
  position: absolute;
  inset: -40% -80%;
  content: "";
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.11), transparent 58%);
  transform: translateX(-42%) rotate(8deg);
  animation: phoneSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  color: rgba(246, 251, 244, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.signal-dot {
  width: 54px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.app-screen {
  height: calc(100% - 34px);
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 12%, rgba(200, 255, 77, 0.18), transparent 9rem),
    linear-gradient(180deg, #111a14, #07100b);
}

.screen-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.screen-head strong {
  color: var(--lime);
}

.today-summary {
  margin-top: 16px;
  padding: 13px;
  border: 1px solid rgba(200, 255, 77, 0.2);
  border-radius: var(--radius);
  background: rgba(200, 255, 77, 0.1);
}

.today-summary span,
.mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.today-summary strong {
  display: block;
  margin-top: 7px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.score-ring {
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  margin: 28px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0b120d 0 58%, transparent 59%),
    conic-gradient(var(--lime), var(--green), rgba(255, 255, 255, 0.08) 74%);
}

.score-ring span {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}

.score-ring small {
  display: block;
  margin-top: -42px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.metric-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.metric-row strong {
  font-size: 0.84rem;
}

.metric-row i {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime) var(--w), rgba(255, 255, 255, 0.13) var(--w));
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.mini-grid div {
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.mini-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.coach-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(200, 255, 77, 0.1);
}

.coach-card span,
.float-card span,
.dashboard-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.coach-card p {
  margin: 8px 0 0;
  color: rgba(246, 251, 244, 0.88);
  font-size: 0.86rem;
  line-height: 1.55;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 178px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 15, 11, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: float 5.5s ease-in-out infinite;
}

.float-card,
.dashboard-panel,
.feature-card,
.integration-card,
.security-list > div {
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.float-card:hover,
.dashboard-panel:hover,
.feature-card:hover,
.integration-card:hover,
.security-list > div:hover {
  border-color: rgba(200, 255, 77, 0.24);
  background: linear-gradient(180deg, rgba(247, 252, 248, 0.14), rgba(255, 255, 255, 0.045));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.float-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.25rem;
}

.float-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.card-macros {
  top: 116px;
  left: 8px;
}

.card-recovery {
  right: 0;
  top: 224px;
  animation-delay: -1.6s;
}

.card-water {
  right: 38px;
  bottom: 96px;
  animation-delay: -3.2s;
}

.logo-strip {
  width: min(calc(100% - 36px), var(--max));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 20px 0 36px;
}

.logo-strip > span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 251, 244, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.integration-logos {
  align-items: stretch;
  padding-bottom: 18px;
}

.integration-logo-card {
  min-width: 104px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 255, 77, 0.12), transparent 5.5rem),
    rgba(255, 255, 255, 0.045);
  color: rgba(246, 251, 244, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.integration-logo-card:hover {
  border-color: rgba(200, 255, 77, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 255, 77, 0.18), transparent 5.5rem),
    rgba(255, 255, 255, 0.075);
  transform: translateY(-3px);
}

.integration-logo-card strong {
  font-size: 0.78rem;
  font-weight: 900;
}

.integration-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.integration-mark::before,
.integration-mark::after {
  position: absolute;
  content: "";
}

.mark-strava::before {
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-bottom: 22px solid #fc4c02;
  transform: translateY(-2px);
}

.mark-strava::after {
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 14px solid #ffb000;
  transform: translate(8px, 4px);
}

.mark-android::before {
  width: 22px;
  height: 16px;
  border-radius: 9px 9px 5px 5px;
  background: #a4c639;
  box-shadow: -8px 10px 0 -5px #a4c639, 8px 10px 0 -5px #a4c639;
}

.mark-android::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #07100b;
  box-shadow: 9px 0 0 #07100b;
  transform: translate(-4px, -2px);
}

.mark-health::before {
  width: 18px;
  height: 18px;
  background: #ff3b5f;
  transform: rotate(45deg) translate(1px, 1px);
}

.mark-health::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff3b5f;
  box-shadow: 12px 0 0 #ff3b5f;
  transform: translate(-6px, -6px);
}

.mark-garmin::before {
  width: 0;
  height: 0;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-bottom: 24px solid #19b5fe;
  transform: rotate(180deg) translateY(-2px);
}

.mark-whoop::before {
  width: 25px;
  height: 5px;
  border-radius: 999px;
  background: #d7ff3f;
  box-shadow: 0 9px 0 #d7ff3f, 0 -9px 0 #d7ff3f;
}

.mark-withings::before {
  width: 22px;
  height: 22px;
  border: 4px solid #f6fbf4;
  border-radius: 50%;
}

.mark-withings::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #49f0a2;
}

.mark-bottle::before {
  width: 14px;
  height: 24px;
  border: 2px solid #72ecff;
  border-radius: 5px 5px 9px 9px;
  background: linear-gradient(180deg, transparent 42%, rgba(114, 236, 255, 0.35) 43%);
}

.mark-bottle::after {
  width: 8px;
  height: 4px;
  border-radius: 3px 3px 0 0;
  background: #72ecff;
  transform: translateY(-16px);
}

.mark-oura::before {
  width: 24px;
  height: 24px;
  border: 5px solid #f6fbf4;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(246, 251, 244, 0.28);
}

.mark-renpho::before {
  width: 26px;
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f6fbf4, #9fb4ff);
}

.mark-renpho::after {
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: #07100b;
  transform: translateY(-5px);
}

.mark-fitbit::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b0b9;
  box-shadow:
    -9px 0 0 #00b0b9,
    9px 0 0 #00b0b9,
    0 -9px 0 #00b0b9,
    0 9px 0 #00b0b9,
    -9px -9px 0 rgba(0, 176, 185, 0.62),
    9px 9px 0 rgba(0, 176, 185, 0.62);
}

.how-section,
.data-flow-section,
.platform,
.ai-section,
.decision-section,
.prep-section,
.integration-deep,
.security,
.faq-section,
.waitlist {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 840px;
}

.section-heading h2,
.waitlist h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.3rem, 5.6vw, 5.7rem);
  font-weight: 650;
  line-height: 0.95;
}

.section-heading p,
.waitlist p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.command-center {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
  margin-top: 42px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.how-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 252, 248, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 28px 28px, rgba(200, 255, 77, 0.16), transparent 10rem);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.how-card::after {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 76px;
  height: 76px;
  content: "";
  border: 1px solid rgba(200, 255, 77, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 77, 0.18), transparent 64%);
}

.how-card:hover {
  border-color: rgba(200, 255, 77, 0.28);
  transform: translateY(-3px);
}

.how-card span {
  color: var(--lime);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.how-card h3 {
  margin: 78px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
}

.how-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(90px, 0.3fr) 1.05fr minmax(90px, 0.3fr) 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  padding: 22px;
  border: 1px solid rgba(200, 255, 77, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 255, 77, 0.14), transparent 16rem),
    radial-gradient(circle at 88% 50%, rgba(114, 236, 255, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.flow-node {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 252, 248, 0.11), rgba(255, 255, 255, 0.035));
}

.flow-node::after {
  position: absolute;
  inset: 14px;
  content: "";
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.flow-node span,
.decision-card span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.flow-node strong,
.decision-card strong {
  display: block;
  margin-top: 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.flow-node p,
.decision-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.flow-tags i {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(246, 251, 244, 0.8);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
}

.flow-core {
  border-color: rgba(200, 255, 77, 0.32);
  background:
    radial-gradient(circle at 50% 0, rgba(200, 255, 77, 0.2), transparent 11rem),
    linear-gradient(180deg, rgba(247, 252, 248, 0.14), rgba(255, 255, 255, 0.04));
}

.flow-line {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(200, 255, 77, 0.2), rgba(114, 236, 255, 0.32));
}

.flow-line span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(200, 255, 77, 0.8);
  transform: translate(-50%, -50%);
  animation: dataPulse 2.6s ease-in-out infinite;
}

.flow-line span:nth-child(2) {
  animation-delay: 0.5s;
}

.flow-line span:nth-child(3) {
  animation-delay: 1s;
}

.dashboard-panel,
.feature-card,
.integration-card,
.security-list > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-strong), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.dashboard-panel {
  min-height: 210px;
  padding: 22px;
}

.panel-main {
  grid-row: span 2;
  min-height: 438px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-top strong {
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.dashboard-panel > strong {
  display: block;
  margin-top: 18px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
}

.dashboard-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.chart {
  height: 260px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 34px;
}

.chart span {
  flex: 1;
  height: var(--h);
  min-height: 42px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--lime), rgba(73, 240, 162, 0.12));
  animation: grow 1.7s ease both;
}

.insight-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
}

.insight-line span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(200, 255, 77, 0.7);
}

.insight-line p {
  margin: 0;
}

.ai-section {
  grid-template-columns: 0.92fr 1.08fr;
  display: grid;
  align-items: center;
  gap: 54px;
}

.ai-chat {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at top right, rgba(114, 236, 255, 0.12), transparent 18rem);
  box-shadow: var(--shadow);
}

.chat-message {
  width: min(90%, 480px);
  padding: 18px;
  border-radius: 16px;
}

.chat-message span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.chat-message p {
  margin: 8px 0 0;
  line-height: 1.62;
}

.chat-message.user {
  justify-self: end;
  background: rgba(255, 255, 255, 0.08);
}

.chat-message.coach {
  background: rgba(200, 255, 77, 0.12);
}

.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.decision-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 252, 248, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 85% 15%, rgba(114, 236, 255, 0.11), transparent 9rem);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.decision-card::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(200, 255, 77, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 77, 0.12), transparent 66%);
}

.decision-card:hover {
  border-color: rgba(200, 255, 77, 0.26);
  background:
    linear-gradient(180deg, rgba(247, 252, 248, 0.14), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 85% 15%, rgba(114, 236, 255, 0.14), transparent 9rem);
  transform: translateY(-3px);
}

.feature-band {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
  padding: 8px 0 96px;
}

.feature-card {
  min-height: 280px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 255, 77, 0.12);
  color: var(--lime);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-card h3 {
  margin: 78px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.timeline::before {
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--lime), rgba(255, 255, 255, 0.14));
}

.timeline-item {
  position: relative;
  min-height: 250px;
  padding: 72px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.timeline-item::before {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--bg);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.timeline-item.active::before {
  background: var(--lime);
  box-shadow: 0 0 26px rgba(200, 255, 77, 0.7);
}

.timeline-item span {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  margin-top: 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.5rem;
}

.timeline-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.integration-card {
  min-height: 178px;
  padding: 24px;
}

.integration-card strong,
.security-list strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.35rem;
}

.integration-card span,
.security-list span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.security {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 54px;
  align-items: start;
}

.security-list {
  display: grid;
  gap: 14px;
}

.security-list > div {
  padding: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 252, 248, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 92% 20%, rgba(200, 255, 77, 0.1), transparent 12rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.22rem;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: var(--lime);
  content: "+";
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.waitlist {
  padding-bottom: 128px;
}

.waitlist-inner {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 7vw, 84px);
  border: 1px solid rgba(200, 255, 77, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 75% 20%, rgba(200, 255, 77, 0.22), transparent 22rem),
    radial-gradient(circle at 20% 75%, rgba(114, 236, 255, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(220px, 390px) auto;
  align-items: end;
  gap: 12px;
  margin-top: 34px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.store-button {
  display: inline-grid;
  min-width: 190px;
  min-height: 62px;
  align-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.store-button:hover {
  border-color: rgba(200, 255, 77, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.store-button span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.store-button strong {
  margin-top: 3px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.26rem;
  line-height: 1.1;
}

.store-apple {
  border-color: rgba(200, 255, 77, 0.35);
  background: linear-gradient(135deg, rgba(200, 255, 77, 0.16), rgba(73, 240, 162, 0.1));
}

.store-disabled {
  opacity: 0.7;
}

.signup-form label {
  display: grid;
  gap: 9px;
}

.signup-form label span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  outline: 0;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
}

.signup-form input:focus {
  border-color: rgba(200, 255, 77, 0.58);
  box-shadow: 0 0 0 4px rgba(200, 255, 77, 0.08);
}

.signup-form.is-submitting button {
  pointer-events: none;
  opacity: 0.72;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  width: min(calc(100% - 36px), var(--max));
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 44px;
  margin: 0 auto;
  padding: 42px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  line-height: 1.65;
}

.footer-brand > a:not(.brand) {
  color: var(--text);
  font-weight: 800;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.8s ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

.legal-page {
  width: min(calc(100% - 36px), 900px);
  min-height: 100svh;
  display: grid;
  align-content: start;
  gap: 34px;
  margin: 0 auto;
  padding: 42px 0 84px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-brand {
  width: fit-content;
}

.legal-card {
  padding: clamp(28px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(200, 255, 77, 0.1), transparent 22rem),
    linear-gradient(180deg, var(--surface-strong), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
}

.legal-card h2 {
  margin: 38px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.45rem;
}

.legal-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-card a:not(.button) {
  color: var(--lime);
  font-weight: 800;
}

.legal-card .button {
  margin-top: 34px;
}

.not-found-card {
  min-height: 520px;
  display: grid;
  align-content: center;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-date {
  color: rgba(200, 255, 77, 0.78) !important;
  font-weight: 800;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.delay-3 {
  transition-delay: 0.26s;
}

.delay-4 {
  transition-delay: 0.34s;
}

.delay-5 {
  transition-delay: 0.42s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -16px, 0);
  }
}

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

@keyframes grow {
  from {
    transform: scaleY(0.18);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes phoneSweep {
  0%,
  42%,
  100% {
    transform: translateX(-52%) rotate(8deg);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  72% {
    transform: translateX(46%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes dataPulse {
  0% {
    left: 0;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.75);
  }
  12%,
  72% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media (max-width: 980px) {
  .hero,
  .ai-section,
  .security {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 20px;
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .command-center,
  .how-grid,
  .flow-board,
  .feature-band,
  .integration-grid,
  .decision-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-line {
    display: none;
  }

  .panel-main {
    grid-column: 1 / -1;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(5, 7, 6, 0.94);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .language-menu {
    margin-top: 4px;
  }

  .site-nav .language-menu summary {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
  }

  .language-options {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  main {
    padding-top: 72px;
  }

  .hero {
    width: min(calc(100% - 28px), var(--max));
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .hero-lede {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

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

  .hero-visual {
    min-height: 560px;
    margin-top: 12px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 330px;
    height: 330px;
  }

  .phone-wrap {
    transform: none;
  }

  .phone {
    height: 600px;
  }

  .float-card {
    width: 150px;
    padding: 13px;
  }

  .card-macros {
    top: 58px;
    left: 0;
  }

  .card-recovery {
    right: 0;
    top: 170px;
  }

  .card-water {
    right: 6px;
    bottom: 58px;
  }

  .platform,
  .data-flow-section,
  .ai-section,
  .decision-section,
  .prep-section,
  .integration-deep,
  .security,
  .faq-section,
  .waitlist {
    width: min(calc(100% - 28px), var(--max));
    padding: 74px 0;
  }

  .command-center,
  .how-grid,
  .flow-board,
  .feature-band,
  .integration-grid,
  .decision-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .flow-node {
    min-height: 220px;
  }

  .panel-main {
    min-height: 380px;
  }

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 48px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .download-actions,
  .download-actions .button,
  .store-button,
  .store-badge {
    width: 100%;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .phone {
    width: min(292px, 78vw);
    height: 590px;
    padding: 13px;
  }

  .app-screen {
    padding: 14px;
  }

  .score-ring {
    width: 128px;
    height: 128px;
    margin: 18px auto;
  }

  .score-ring span {
    font-size: 2.45rem;
  }

  .score-ring small {
    margin-top: -30px;
    font-size: 0.62rem;
  }

  .metric-row {
    margin-top: 9px;
    padding: 10px;
  }

  .mini-grid div {
    min-height: 58px;
    padding: 10px;
  }

  .mini-grid strong {
    font-size: 0.68rem;
  }

  .phone .coach-card {
    display: none;
  }

  .float-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 292px;
    margin-top: 10px;
    animation: none;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
