@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "Red Rose";
  src: url("/fonts/red-rose.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --cream: #f4f1e8;
  --cream-deep: #e9e4d8;
  --paper: #fbfaf6;
  --ink: #13251e;
  --muted: #627169;
  --green: #006c49;
  --green-dark: #004b33;
  --green-bright: #20a777;
  --mint: #bfdad1;
  --mint-light: #e3eee9;
  --coral: #ee6a4c;
  --blue: #62b6d3;
  --yellow: #e9ca66;
  --line: rgba(19, 37, 30, 0.16);
  --shadow: 0 24px 70px rgba(20, 48, 37, 0.14);
  --display: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(19, 37, 30, 0.1);
  background: rgba(244, 241, 232, 0.9);
  box-shadow: 0 8px 30px rgba(19, 37, 30, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand span {
  font-family: "Red Rose", "Avenir Next", "Helvetica Neue", sans-serif;
  font-weight: 400;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 108, 73, 0.18);
}

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

.desktop-nav a {
  position: relative;
  color: #394a43;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 148px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 27%, rgba(191, 218, 209, 0.55), transparent 28%),
    linear-gradient(122deg, #f7f4ec 0%, var(--cream) 62%, #ebe4d5 100%);
}

.hero::before {
  position: absolute;
  top: -240px;
  left: 46%;
  width: 770px;
  height: 770px;
  border: 1px solid rgba(0, 108, 73, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -195px;
  left: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(0, 108, 73, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(0, 108, 73, 0.025),
    0 0 0 72px rgba(0, 108, 73, 0.02);
  content: "";
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 14% 21%, rgba(19, 37, 30, 0.18) 0 0.55px, transparent 0.7px),
    radial-gradient(circle at 74% 63%, rgba(19, 37, 30, 0.14) 0 0.5px, transparent 0.65px);
  background-size:
    8px 8px,
    11px 11px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(32, 167, 119, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 6.1vw, 88px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: #46564f;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 28px;
}

.play-badge {
  display: inline-block;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.play-badge:hover {
  filter: drop-shadow(0 8px 14px rgba(19, 37, 30, 0.16));
  transform: translateY(-3px);
}

.play-badge img {
  width: 205px;
  height: auto;
  margin: -9px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 2.2;
  text-decoration: none;
}

.text-link span {
  color: var(--green);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
  color: #6b7772;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

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

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 108, 73, 0.17);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.orbit-one {
  top: 7px;
  right: -9px;
  width: 548px;
  height: 548px;
}

.orbit-one::after {
  top: 93px;
  right: 25px;
}

.orbit-two {
  top: 77px;
  right: 62px;
  width: 400px;
  height: 400px;
}

.orbit-two::after {
  right: 70px;
  bottom: 9px;
  background: var(--blue);
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #17231f;
  border-radius: 34px;
  background: #f7f8f9;
  box-shadow: 0 28px 70px rgba(19, 37, 30, 0.25);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: #17231f;
  transform: translateX(-50%);
}

.phone-primary {
  z-index: 4;
  top: 14px;
  left: 136px;
  width: 236px;
  height: 525px;
  transform: rotate(-2.2deg);
}

.phone-secondary {
  z-index: 3;
  top: 67px;
  left: 334px;
  width: 184px;
  height: 408px;
  opacity: 0.93;
  transform: rotate(6deg);
}

.phase-pill {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  min-width: 156px;
  padding: 13px 15px;
  border: 1px solid rgba(19, 37, 30, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 35px rgba(19, 37, 30, 0.13);
  color: #526059;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.phase-pill strong {
  grid-column: 2;
  margin-top: 2px;
  color: var(--ink);
  font-size: 15px;
}

.phase-color {
  grid-row: 1 / span 2;
  width: 4px;
  height: 34px;
  border-radius: 5px;
}

.coral {
  background: var(--coral);
}

.blue {
  background: var(--blue);
}

.phase-pill-top {
  top: 41px;
  left: 4px;
}

.phase-pill-bottom {
  right: 4px;
  bottom: 52px;
}

.focus-card {
  position: absolute;
  z-index: 7;
  bottom: 14px;
  left: 65px;
  min-width: 210px;
  padding: 17px 19px;
  border-radius: 18px;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(0, 75, 51, 0.24);
  color: white;
}

.focus-card > span {
  display: block;
  margin-bottom: 5px;
  color: #bae7d7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-card strong {
  font-size: 14px;
}

.mini-wave {
  position: absolute;
  right: 17px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 19px;
}

.mini-wave i {
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: #b8e6d6;
}

.mini-wave i:nth-child(2),
.mini-wave i:nth-child(4) {
  height: 15px;
}

.mini-wave i:nth-child(3) {
  height: 19px;
}

.proof-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: white;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 15px;
  padding: 26px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: #7ad6b4;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.proof-grid span {
  color: #d7e0dc;
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 120px 0;
}

.feature-intro {
  background: var(--paper);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 58px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.screens-heading h2,
.privacy-copy h2,
.download-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}

.feature-card h3 {
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: clamp(30px, 3.1vw, 43px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.feature-card p:not(.kicker) {
  max-width: 470px;
  margin: 0;
  color: #617068;
  font-size: 14px;
  line-height: 1.7;
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 30px;
  color: rgba(19, 37, 30, 0.34);
  font-family: var(--display);
  font-size: 13px;
}

.feature-card-large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  min-height: 520px;
  background: var(--cream);
}

.phase-stack {
  position: relative;
  display: grid;
  gap: 12px;
}

.phase-stack::before {
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 27px;
  width: 1px;
  background: rgba(19, 37, 30, 0.19);
  content: "";
}

.phase-stack > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 95px;
  padding: 19px 20px;
  border: 1px solid rgba(19, 37, 30, 0.09);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 30px rgba(19, 37, 30, 0.07);
}

.phase-line {
  z-index: 2;
  width: 15px;
  height: 15px;
  border: 5px solid white;
  border-radius: 50%;
  box-sizing: content-box;
}

.coral-bg {
  background: var(--coral);
}

.green-bg {
  background: var(--green-bright);
}

.blue-bg {
  background: var(--blue);
}

.phase-stack span:nth-child(2) {
  display: grid;
  gap: 5px;
}

.phase-stack small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.phase-stack strong {
  font-size: 18px;
  font-weight: 750;
}

.phase-stack b {
  color: #a0aaa5;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 400;
}

.feature-card-dark {
  background: var(--ink);
  color: white;
}

.feature-card-dark .kicker,
.feature-card-dark p:not(.kicker) {
  color: #afd8c9;
}

.feature-card-dark .feature-number {
  color: rgba(255, 255, 255, 0.4);
}

.sound-rings {
  position: absolute;
  right: -80px;
  bottom: -104px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(122, 214, 180, 0.24);
  border-radius: 50%;
}

.sound-rings span {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(122, 214, 180, 0.24);
  border-radius: 50%;
}

.sound-rings span:nth-child(2) {
  inset: 68px;
}

.sound-rings span:nth-child(3) {
  inset: 102px;
}

.sound-rings i {
  position: absolute;
  top: 72px;
  left: 77px;
  color: #7ad6b4;
  font-family: var(--display);
  font-size: 47px;
  font-style: normal;
}

.feature-card-mint {
  background: var(--mint);
}

.quick-values {
  position: absolute;
  right: 38px;
  bottom: 35px;
  left: 38px;
  display: flex;
  gap: 8px;
}

.quick-values span {
  flex: 1;
  padding: 13px 8px;
  border: 1px solid rgba(0, 108, 73, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.57);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  min-height: 400px;
  background: #e7e0d2;
}

.lap-list {
  overflow: hidden;
  border: 1px solid rgba(19, 37, 30, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.69);
}

.lap-list > div {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  align-items: center;
  min-height: 70px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(19, 37, 30, 0.1);
  font-size: 13px;
}

.lap-list > div:last-child {
  border-bottom: 0;
}

.lap-list span {
  color: var(--muted);
}

.lap-list strong {
  color: var(--green-dark);
}

.lap-list em {
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.screens-section {
  overflow: hidden;
  background: var(--cream);
}

.screens-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}

.screens-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.screens-track {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  margin: auto;
  grid-template-columns: repeat(4, minmax(225px, 1fr));
  gap: 16px;
}

.screen-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 30px 26px 0;
  border-radius: 24px;
}

.screen-card::before {
  position: absolute;
  top: 27%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(19, 37, 30, 0.12);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.screen-card-coral {
  background: #ecc4b9;
}

.screen-card-green {
  background: var(--mint);
}

.screen-card-blue {
  background: #b9dce7;
}

.screen-card-ink {
  background: #c8cfcc;
}

.screen-card img {
  position: relative;
  z-index: 2;
  width: min(176px, 76%);
  height: 320px;
  margin: 16px auto -52px;
  border: 6px solid var(--ink);
  border-radius: 26px;
  box-shadow: 0 25px 45px rgba(19, 37, 30, 0.2);
  object-fit: cover;
  object-position: top;
}

.screen-index {
  position: absolute;
  top: 22px;
  right: 25px;
  font-family: var(--display);
  font-size: 12px;
}

.screen-card figcaption {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-height: 92px;
  margin: 0 -26px;
  padding: 20px 22px;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(14px);
}

.screen-card figcaption strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
}

.screen-card figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.swipe-hint {
  display: none;
}

.uses-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.use-card {
  position: relative;
  min-height: 330px;
  padding: 35px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.use-card:hover {
  z-index: 2;
  background: var(--mint-light);
  transform: translateY(-5px);
}

.use-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--display);
  font-size: 13px;
}

.use-card h3 {
  margin: 92px 0 16px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.use-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.privacy-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: var(--green-dark);
  color: white;
}

.privacy-section::before {
  position: absolute;
  top: -290px;
  right: -210px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.02),
    0 0 0 120px rgba(255, 255, 255, 0.015);
  content: "";
}

.privacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 110px;
}

.privacy-copy .kicker {
  color: #7ad6b4;
}

.privacy-copy > p:not(.kicker) {
  max-width: 620px;
  margin: 26px 0 28px;
  color: #c3dbd2;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-copy a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 13px;
  font-weight: 750;
  line-height: 2.2;
  text-decoration: none;
}

.privacy-seal {
  display: grid;
  place-items: center;
}

.seal-ring {
  position: relative;
  display: grid;
  width: 290px;
  height: 290px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  box-shadow:
    0 0 0 21px rgba(255, 255, 255, 0.03),
    inset 0 0 0 21px rgba(255, 255, 255, 0.025);
}

.seal-ring::after {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px var(--green-dark);
  content: "";
}

.seal-ring span {
  color: #9fd7c4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seal-ring strong {
  margin: 8px 0 3px;
  font-family: var(--display);
  font-size: 98px;
  font-weight: 400;
  line-height: 0.9;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0 120px;
  background: var(--cream);
  text-align: center;
}

.download-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(0, 108, 73, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(0, 108, 73, 0.02),
    0 0 0 130px rgba(0, 108, 73, 0.015);
  transform: translate(-50%, -50%);
}

.download-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-inner > img {
  margin-bottom: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 108, 73, 0.22);
}

.download-inner > p:not(.kicker) {
  max-width: 500px;
  margin: 24px auto 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  padding: 60px 0 26px;
  background: var(--ink);
  color: white;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 55px;
}

.footer-brand {
  color: white;
}

.footer-top > p {
  max-width: 380px;
  margin: 0;
  color: #9dafaa;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa19a;
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 27px;
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

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

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(53px, 6.4vw, 70px);
  }

  .hero-stage {
    transform: scale(0.9);
    transform-origin: center right;
  }

  .proof-grid > div {
    padding-inline: 22px;
  }

  .feature-card-large,
  .feature-card-wide {
    gap: 42px;
  }

  .screens-track {
    overflow-x: auto;
    grid-template-columns: repeat(4, 250px);
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screens-track::-webkit-scrollbar {
    display: none;
  }

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

  .swipe-hint {
    display: block;
    width: min(1180px, calc(100% - 48px));
    margin: 15px auto 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

@media (max-width: 800px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 1.5px;
    background: white;
    transition: transform 180ms ease;
  }

  .site-header.is-open .menu-toggle span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--cream);
    opacity: 0;
    transition:
      max-height 240ms ease,
      opacity 180ms ease;
  }

  .site-header.is-open .mobile-nav {
    max-height: calc(100vh - 76px);
    padding: 14px 16px 28px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .mobile-nav a {
    padding: 17px 9px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 25px;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    margin-top: 15px;
    border: 0;
    border-radius: 12px;
    background: var(--green);
    color: white;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 750;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(52px, 13.5vw, 76px);
  }

  .hero-lede {
    margin-inline: auto;
    font-size: 16px;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-stage {
    width: 560px;
    min-height: 540px;
    margin: -18px auto 0;
    transform: scale(0.92);
    transform-origin: top center;
  }

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

  .proof-grid > div {
    min-height: 105px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .feature-bento,
  .feature-card-large,
  .feature-card-wide,
  .screens-heading,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 32px;
  }

  .feature-card-large {
    gap: 45px;
    min-height: auto;
  }

  .feature-card-wide {
    gap: 35px;
  }

  .screens-heading {
    gap: 24px;
  }

  .screens-track {
    width: 100%;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
  }

  .swipe-hint {
    width: calc(100% - 32px);
  }

  .privacy-grid {
    gap: 65px;
  }

  .privacy-copy {
    text-align: center;
  }

  .privacy-copy > p:not(.kicker) {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 70px;
  }

  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
  }

  .hero-note {
    max-width: 350px;
    margin-inline: auto;
  }

  .hero-stage {
    left: 50%;
    width: 550px;
    min-height: 490px;
    margin-left: -275px;
    transform: scale(0.78);
  }

  .proof-grid > div {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 18px 14px;
    text-align: center;
  }

  .proof-grid > div:first-child {
    border-left: 0;
  }

  .proof-grid strong {
    font-size: 29px;
  }

  .section-heading h2,
  .screens-heading h2,
  .privacy-copy h2,
  .download-inner h2 {
    font-size: 44px;
  }

  .feature-card {
    min-height: 350px;
    padding: 29px 24px;
    border-radius: 22px;
  }

  .feature-card-large {
    min-height: auto;
  }

  .phase-stack > div {
    min-height: 82px;
    padding: 14px;
  }

  .phase-stack::before {
    left: 21px;
  }

  .feature-card-wide {
    min-height: auto;
  }

  .lap-list > div {
    grid-template-columns: 0.8fr 1fr;
  }

  .lap-list em {
    display: none;
  }

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

  .use-card {
    min-height: 270px;
  }

  .use-card h3 {
    margin-top: 60px;
  }

  .privacy-section {
    padding: 90px 0;
  }

  .seal-ring {
    width: 245px;
    height: 245px;
  }

  .seal-ring strong {
    font-size: 80px;
  }

  .download-section {
    padding: 95px 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 20px;
  }
}

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

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

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