@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-var-latin.woff2") format("woff2-variations"), url("/fonts/inter-var-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: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-var-latin-ext.woff2") format("woff2-variations"), url("/fonts/inter-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: dark;
  --background: #13131b;
  --surface: #1b1b23;
  --surface-raised: #1f1f27;
  --surface-soft: #24242d;
  --ink: #e4e1e8;
  --muted: #8a8a94;
  --muted-bright: #bdbac3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #60f99e;
  --accent-deep: #00522b;
  --accent-ink: #0c1b12;
  --max-width: 1160px;
  --section-pad: clamp(56px, 7vw, 80px);
  --card-radius: 22px;
  --button-radius: 14px;
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-weight: 500;
}

h3 {
  font-weight: 600;
}

::selection {
  color: var(--accent-ink);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(19, 19, 27, 0.42);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(19, 19, 27, 0.78);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.brand-accent {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
  color: var(--muted-bright);
  font-size: 14px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 15px;
  font-size: 13px;
}

.button-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(96, 249, 158, 0.55);
  color: var(--accent);
}

.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: #8bffbb;
}

.eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted-bright);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.115em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding-top: clamp(76px, 9vw, 112px);
  text-align: center;
}

.hero-texture {
  position: absolute;
  z-index: -4;
  inset: -40px 0 auto 0;
  height: 780px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 640px 500px at 50% 8%, #000 0%, rgba(0, 0, 0, 0.5) 55%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 640px 500px at 50% 8%, #000 0%, rgba(0, 0, 0, 0.5) 55%, transparent 85%);
  pointer-events: none;
}

.hero-copy {
  max-width: 720px;
  margin-inline: auto;
}

.hero-copy .eyebrow,
.section-heading .eyebrow,
.stats-heading .eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(44px, 6vw, 60px);
  line-height: 1.13;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted-bright);
  font-size: 17px;
  line-height: 1.65;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.store-badge {
  display: inline-flex;
  min-width: 170px;
  min-height: 54px;
  align-items: center;
  gap: 11px;
  padding: 8px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  border-color: rgba(96, 249, 158, 0.5);
  background: var(--surface-raised);
  transform: translateY(-1px);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.1;
}

.store-badge small {
  color: var(--muted-bright);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.2;
}

.hero-stage {
  position: relative;
  height: 590px;
  margin-top: 64px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 45px;
  left: 50%;
  width: min(680px, 90vw);
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(96, 249, 158, 0.17) 0%, rgba(96, 249, 158, 0.05) 36%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(8px);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: 50%;
  width: min(1150px, 148vw);
  height: min(1150px, 148vw);
  border: 1px solid rgba(96, 249, 158, 0.14);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone {
  position: absolute;
  width: 286px;
  height: 570px;
  padding: 8px;
  border-radius: 39px;
  background: #0b0c10;
  box-shadow: var(--inner-glow), 0 30px 70px rgba(0, 0, 0, 0.5);
}

.phone-back {
  z-index: 1;
  top: 40px;
  left: calc(50% - 235px);
  width: 258px;
  height: 528px;
  transform: rotate(-9deg);
}

.phone-front {
  z-index: 2;
  top: 0;
  left: calc(50% - 25px);
  transform: rotate(5deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: #090a0d;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-back .phone-screen img {
  object-position: 55% top;
}

.orbit-dot {
  position: absolute;
  z-index: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 3px rgba(96, 249, 158, 0.55);
  animation: dot-pulse 3.2s ease-in-out infinite;
}

.orbit-chip {
  position: absolute;
  z-index: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: linear-gradient(rgba(31, 31, 39, 0.85), rgba(31, 31, 39, 0.85)) padding-box,
    linear-gradient(155deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.14)) border-box;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  animation: chip-float 6s ease-in-out infinite;
}

.orbit-chip::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted-bright);
  opacity: 0.5;
  content: "";
}

.orbit-chip-accent::after {
  background: var(--accent);
  opacity: 0.9;
  box-shadow: 0 0 6px 1px rgba(96, 249, 158, 0.6);
}

.orbit-chip svg {
  width: 22px;
  height: 22px;
  stroke: var(--muted-bright);
  stroke-width: 2;
}

.orbit-chip-accent svg {
  stroke: var(--accent);
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone,
  .orbit-chip,
  .orbit-dot {
    animation: none;
  }
}

.stats-strip {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: center;
  margin-top: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-heading {
  padding-right: 32px;
}

.stats-heading .eyebrow {
  margin-bottom: 14px;
}

.stats-heading h2 {
  font-size: 23px;
  line-height: 1.15;
}

.stat {
  min-height: 82px;
  padding: 4px 28px;
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted-bright);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

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

.section-heading {
  max-width: 710px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(34px, 4.5vw, 46px);
  line-height: 1.13;
}

.section-note {
  max-width: 620px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 14px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bento-card,
.feature-card,
.step-card,
.price-card,
.usage-card {
  border: 1px solid transparent;
  border-radius: var(--card-radius);
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.1)) border-box;
  box-shadow: var(--inner-glow);
}

.bento-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
}

.bento-wide {
  grid-column: span 2;
}

.bento-image {
  height: 282px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
}

.bento-wide .bento-image {
  height: 330px;
}

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

.image-summary img {
  object-position: 50% 0%;
}

.image-meal img {
  object-position: 51% 0%;
}

.image-history img {
  object-position: 48% 0%;
  filter: saturate(0.88);
}

.bento-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 26px;
}

.card-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.105em;
  line-height: 1.25;
  text-transform: uppercase;
}

.bento-copy h3,
.feature-card h3,
.step-card h3,
.price-card h3 {
  margin-top: 11px;
  font-size: 21px;
  line-height: 1.2;
}

.bento-copy p:last-child,
.feature-card p,
.step-card p,
.price-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.bento-copy p:last-child {
  margin-top: 11px;
}

.bento-accent {
  grid-column: span 2;
  justify-content: flex-end;
  min-height: 282px;
  padding: 24px;
  border-color: rgba(96, 249, 158, 0.42);
  background: var(--accent);
  color: var(--accent-ink);
}

.bento-accent .accent-number {
  margin: auto 0 11px;
  font-size: clamp(100px, 13vw, 158px);
  font-weight: 500;
  letter-spacing: -0.11em;
  line-height: 0.76;
}

.bento-accent .card-kicker {
  color: rgba(12, 27, 18, 0.68);
}

.bento-accent h3 {
  max-width: 260px;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.08;
}

.bento-accent > p:not(.card-kicker) {
  max-width: 410px;
  margin-top: 10px;
  color: rgba(12, 27, 18, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

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

.icon-tile {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 13px;
  background: linear-gradient(rgba(96, 249, 158, 0.1), rgba(96, 249, 158, 0.1)) padding-box,
    linear-gradient(155deg, rgba(96, 249, 158, 0.55), rgba(96, 249, 158, 0.08) 60%, rgba(96, 249, 158, 0.3)) border-box;
  color: var(--accent);
}

.icon-tile::after {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px 1px rgba(96, 249, 158, 0.55);
  content: "";
}

.icon-tile svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feature-card h3 {
  margin-top: 23px;
  font-size: 17px;
}

.feature-card p {
  margin-top: 9px;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.step-card {
  position: relative;
  display: flex;
  min-height: 184px;
  gap: 18px;
  padding: 24px;
}

.step-card:not(:first-child)::before {
  position: absolute;
  top: 42px;
  left: -33px;
  width: 33px;
  border-top: 1px dashed rgba(96, 249, 158, 0.35);
  content: "";
}

.step-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.step-card p {
  margin-top: 10px;
}

.usage-section {
  overflow: hidden;
}

.usage-section .section-heading {
  margin-bottom: 34px;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.usage-card {
  width: 310px;
  min-height: 190px;
  padding: 22px;
}

.usage-mark {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.usage-card p {
  max-width: 250px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.usage-card small {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.pricing-section .section-heading {
  margin-bottom: 27px;
}

.billing-control {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
}

.billing-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.billing-control label {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.billing-control label span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#billing-monthly:checked + label,
#billing-annual:checked + label {
  background: var(--surface-soft);
  color: var(--ink);
}

#billing-monthly:focus-visible + label,
#billing-annual:focus-visible + label {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 24px 24px;
}

.price-card-popular {
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(155deg, rgba(96, 249, 158, 0.85), rgba(96, 249, 158, 0.15) 60%, rgba(96, 249, 158, 0.5)) border-box;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card h3 {
  max-width: 220px;
  margin-top: 12px;
  font-size: 25px;
}

.price {
  display: flex;
  min-height: 54px;
  align-items: end;
  gap: 6px;
  margin-top: 24px;
}

.price strong {
  max-width: 230px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.price-card:first-child .price strong {
  color: var(--accent);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.price span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.price-description {
  min-height: 47px;
  margin-top: 14px;
}

.check-list {
  display: grid;
  gap: 11px;
  width: 100%;
  margin: 25px 0 28px;
  padding: 0;
  color: var(--muted-bright);
  font-size: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 21px;
}

.check-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.annual-copy {
  display: none;
}

#billing-annual:checked ~ .pricing-grid .monthly-copy {
  display: none;
}

#billing-annual:checked ~ .pricing-grid .annual-copy {
  display: inline;
}

.pricing-footnote {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  padding-bottom: calc(var(--section-pad) + 18px);
}

.faq-list {
  max-width: 850px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 550;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--muted-bright);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  opacity: 0;
}

.faq-list details[open] summary span::before {
  background: var(--accent);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 54px 23px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list details p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-wrap {
  padding-top: 0;
  padding-bottom: var(--section-pad);
}

.closing-card {
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(12, 27, 18, 0.2);
  border-radius: 26px;
  background: var(--accent);
  color: var(--accent-ink);
}

.eyebrow-dark {
  border-color: rgba(12, 27, 18, 0.28);
  color: rgba(12, 27, 18, 0.72);
}

.closing-card h2 {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
}

.closing-card > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 18px;
  color: rgba(12, 27, 18, 0.76);
}

.closing-card .store-badges {
  justify-content: flex-start;
  margin-top: 27px;
}

.store-badge-dark {
  border-color: rgba(12, 27, 18, 0.28);
  background: rgba(12, 27, 18, 0.92);
  color: var(--accent);
}

.store-badge-dark:hover,
.store-badge-dark:focus-visible {
  border-color: rgba(12, 27, 18, 0.55);
  background: var(--accent-ink);
}

.store-badge-dark small {
  color: rgba(96, 249, 158, 0.7);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 22px;
}

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

.footer-brand p {
  max-width: 170px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand .brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-brand .brand {
  font-size: 17px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h3 {
  margin-bottom: 5px;
  color: var(--muted-bright);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 920px) {
  .site-nav {
    gap: 15px;
  }

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

  .bento-wide,
  .bento-accent {
    grid-column: span 2;
  }

  .stats-strip {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .stat {
    padding-inline: 18px;
  }

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

  .price-card {
    padding-inline: 18px;
  }

  .price-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .site-nav {
    display: none;
  }

  .button-small {
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy .eyebrow,
  .section-heading .eyebrow,
  .stats-heading .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 15px;
  }

  .store-badges {
    gap: 8px;
  }

  .store-badge {
    min-width: 0;
    flex: 1 1 145px;
    padding-inline: 11px;
  }

  .store-badge span {
    font-size: 14px;
  }

  .hero-stage {
    width: calc(100% + 32px);
    height: 480px;
    margin-top: 43px;
    margin-right: -16px;
    margin-left: -16px;
    overflow: hidden;
  }

  .hero-glow {
    top: 30px;
    height: 330px;
  }

  .phone {
    width: 220px;
    height: 440px;
    border-radius: 31px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .phone-back {
    top: 46px;
    left: calc(50% - 135px);
    width: 194px;
    height: 395px;
  }

  .phone-front {
    left: calc(50% - 70px);
  }

  .orbit-chip {
    display: none;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding: 24px 0 8px;
  }

  .stats-heading {
    padding: 0 0 16px;
  }

  .stats-heading h2 {
    font-size: 25px;
  }

  .stat {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stat strong {
    font-size: 42px;
  }

  .stat span {
    margin-top: 0;
    text-align: right;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .section-heading h2 {
    font-size: 34px;
  }

  .bento-grid,
  .feature-list,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide,
  .bento-accent {
    grid-column: auto;
  }

  .bento-card {
    min-height: 0;
  }

  .bento-image,
  .bento-wide .bento-image {
    height: 275px;
  }

  .bento-copy {
    padding: 21px;
  }

  .bento-accent {
    min-height: 315px;
  }

  .feature-card {
    min-height: 0;
    padding: 21px;
  }

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

  .steps-grid {
    gap: 12px;
  }

  .step-card {
    min-height: 0;
    padding: 21px;
  }

  .step-card:not(:first-child)::before {
    display: none;
  }

  .usage-card {
    width: min(80vw, 310px);
  }

  .pricing-section .section-heading {
    margin-bottom: 23px;
  }

  .pricing-grid {
    gap: 12px;
  }

  .price-card {
    min-height: 0;
    padding: 23px 21px 21px;
  }

  .price-card-popular {
    order: -1;
  }

  .check-list {
    margin-bottom: 25px;
  }

  .faq-section {
    padding-bottom: 64px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 15px;
  }

  .faq-list details p {
    padding-right: 34px;
    font-size: 13px;
  }

  .closing-wrap {
    padding-bottom: 56px;
  }

  .closing-card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .closing-card h2 {
    font-size: 34px;
  }

  .closing-card .store-badges {
    display: grid;
  }

  .closing-card .store-badge {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    margin-top: 35px;
  }
}

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

  .button,
  .store-badge,
  .site-header {
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
