:root {
  --sky: #66b8e6;
  --sky-soft: #dff4ff;
  --sky-pale: #f1fbff;
  --green: #2f8f4f;
  --green-bright: #6dd45f;
  --forest: #103b2c;
  --forest-2: #0a2d23;
  --forest-3: #062219;
  --leaf: #185d3f;
  --cream: #fffdf5;
  --paper: #f7f7f1;
  --sun: #ffd75e;
  --coral: #ff796d;
  --ink: #08223e;
  --muted: #536b76;
  --white: #fff;
  --line: rgba(8, 34, 62, .12);
  --font-display: "Manrope", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow: 0 30px 80px rgba(7, 35, 31, .16);
  --phone-shadow: 0 45px 90px rgba(4, 27, 30, .34), 0 12px 28px rgba(4, 27, 30, .22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--green);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.section-wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: .98;
}

h3 {
  line-height: 1.08;
}

.section-kicker {
  margin-bottom: 1.3rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #a9e99f;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

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

/* Navigation */
.nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  transition: color .3s ease, background-color .3s ease, box-shadow .3s ease, -webkit-backdrop-filter .3s ease;
}

.nav::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .16);
  content: "";
}

.nav.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 245, .82);
  box-shadow: 0 10px 40px rgba(7, 35, 31, .08);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
}

.nav.is-scrolled::after {
  background: rgba(8, 34, 62, .08);
}

.nav-inner {
  width: var(--wrap);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.05em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(6, 41, 31, .18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  font-size: .85rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  opacity: .86;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -.4rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-left: .4rem;
  padding: .7rem 1rem .7rem 1.15rem;
  color: var(--forest);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(6, 41, 31, .12);
  font-size: .8rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 41, 31, .2);
}

/* Cinematic hero */
.hero {
  position: relative;
  min-height: 860px;
  height: max(100svh, 860px);
  overflow: hidden;
  color: var(--white);
  background: #58abe0;
  isolation: isolate;
}

.hero-sky {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(4, 44, 43, .4) 0%, rgba(4, 44, 43, .15) 42%, transparent 68%), linear-gradient(180deg, rgba(15, 71, 103, .08), transparent 48%, rgba(5, 45, 32, .3)), url("../assets/hero-meadow.jpg");
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 25% 36%, rgba(91, 180, 230, .05), rgba(12, 54, 61, .08) 43%, rgba(7, 40, 30, .25) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(6, 35, 24, .5));
  content: "";
  pointer-events: none;
}

@keyframes hero-breathe {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(0, -5px, 0); }
}

.hero-grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .12;
  background-image:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, .4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 68%, rgba(5, 35, 29, .35) 0 1px, transparent 1.5px);
  background-position: 0 0, 9px 13px;
  background-size: 21px 21px, 25px 25px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--wrap);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .8fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-top: 84px;
  padding-bottom: 48px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(5, 40, 31, .22);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--sun);
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 215, 94, .22);
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3.4rem, 6.6vw, 6.8rem);
  font-weight: 700;
  line-height: .92;
  text-wrap: balance;
  text-shadow: 0 8px 40px rgba(5, 38, 30, .22);
}

.hero h1 em {
  color: #efffdc;
  font-style: normal;
  font-weight: 500;
}

.hero-lede {
  max-width: 600px;
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 3px 20px rgba(5, 38, 30, .3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.button-primary {
  color: var(--forest);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(5, 39, 29, .22);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(5, 39, 29, .3);
}

.button-glass {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .42);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, .2);
}

.play-dot {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  font-size: .56rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  margin-top: 1.6rem;
  font-size: .72rem;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.hero-proof i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: rgba(255, 255, 255, .86);
  border-radius: 50%;
  font-size: .65rem;
  font-style: normal;
  font-weight: 900;
}

.hero-product {
  position: relative;
  align-self: end;
  height: min(80vh, 730px);
  min-height: 600px;
  perspective: 1400px;
}

.phone-shell {
  position: relative;
  padding: 8px;
  overflow: hidden;
  background: #071112;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 48px;
  box-shadow: var(--phone-shadow);
}

.phone-shell::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .5);
  content: "";
  pointer-events: none;
}

.phone-shell img {
  width: 100%;
  height: 100%;
  border-radius: 39px;
  object-fit: cover;
}

.phone-sensor {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 31%;
  height: 24px;
  background: #050a0b;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
}

.phone-home {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: -12%;
  width: min(340px, 73%);
  aspect-ratio: 941 / 1672;
  transform: rotateY(-7deg) rotateZ(2deg);
  animation: phone-float 6s ease-in-out infinite;
}

.phone-goal {
  position: absolute;
  z-index: 1;
  right: -30%;
  bottom: -4%;
  width: min(294px, 63%);
  aspect-ratio: 941 / 1672;
  opacity: .88;
  filter: saturate(.88) brightness(.92);
  transform: rotateY(-15deg) rotateZ(7deg) scale(.9);
}

@keyframes phone-float {
  0%, 100% { transform: rotateY(-7deg) rotateZ(2deg) translateY(0); }
  50% { transform: rotateY(-7deg) rotateZ(2deg) translateY(-12px); }
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.orbit-one {
  top: 12%;
  right: -12%;
  width: 560px;
  height: 560px;
}

.orbit-two {
  top: 22%;
  right: -1%;
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: orbit-spin 30s linear infinite;
}

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

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem .95rem;
  color: var(--forest);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(4, 35, 31, .22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  font-size: .76rem;
  line-height: 1.25;
}

.floating-card strong {
  display: block;
  font-size: .86rem;
}

.floating-circle {
  top: 25%;
  left: -8%;
  animation: float-card 7s ease-in-out infinite -.9s;
}

.floating-status {
  right: -3%;
  bottom: 23%;
  animation: float-card 7s ease-in-out infinite;
}

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

.float-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 12px;
  font-size: 1.15rem;
}

.status-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(109, 212, 95, .2);
}

.status-pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green-bright);
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  to { opacity: 0; transform: scale(1.7); }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 1.3rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 18px;
  height: 28px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 99px;
}

.scroll-cue span::after {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 5px;
  background: var(--white);
  border-radius: 99px;
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: .2; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
}

/* Promise ticker */
.promise-band {
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.promise-track {
  width: max-content;
  min-width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-inline: 2rem;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  white-space: nowrap;
}

.promise-track i {
  color: var(--sun);
  font-style: normal;
}

/* Manifesto */
.manifesto {
  overflow: hidden;
  color: var(--forest);
  background: var(--cream);
}

.manifesto::after {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(131, 221, 113, .2), transparent 68%);
  border-radius: 50%;
  content: "";
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, .65fr);
  column-gap: clamp(3rem, 8vw, 9rem);
}

.manifesto-grid > .section-kicker {
  grid-column: 1 / -1;
}

.display-copy {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: .96;
}

.display-copy span {
  color: var(--green);
}

.manifesto-copy {
  align-self: end;
  max-width: 470px;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.manifesto-stat {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.manifesto-stat strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.manifesto-stat span {
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.3;
}

/* How it works */
.how {
  color: var(--ink);
  background: #eff8ef;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  align-items: end;
  gap: 4rem;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: .25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.step-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(8, 34, 62, .08);
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(16, 59, 44, .06);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(16, 59, 44, .12);
}

.step-featured {
  color: var(--white);
  background: var(--forest);
  border-color: rgba(255, 255, 255, .08);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.step-number {
  color: var(--green);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.step-featured .step-number {
  color: #a9e99f;
}

.step-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #e6f5e5;
  border-radius: 14px;
  font-size: 1.35rem;
}

.step-featured .step-symbol {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.step-card h3 {
  margin-top: 3rem;
  font-size: 1.7rem;
}

.step-card > p {
  margin-top: .9rem;
  color: var(--muted);
  font-size: .93rem;
}

.step-featured > p {
  color: rgba(255, 255, 255, .7);
}

.step-detail,
.circle-stack {
  min-height: 74px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem;
  background: #f1f7f2;
  border: 1px solid rgba(8, 34, 62, .06);
  border-radius: 18px;
}

.step-detail strong,
.circle-caption strong {
  display: block;
  font-size: .78rem;
}

.step-detail small,
.circle-caption small {
  display: block;
  margin-top: .1rem;
  color: var(--muted);
  font-size: .65rem;
}

.bank-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border-radius: 13px;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(16, 59, 44, .08);
}

.bank-detail i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: .7rem;
  font-style: normal;
  font-weight: 800;
}

.circle-stack {
  position: relative;
  color: var(--ink);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.face {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-right: -17px;
  color: var(--white);
  background: var(--sky);
  border: 3px solid var(--forest);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
}

.face-two { background: #e59c5a; }
.face-three { background: #9b80d3; }
.face-four { background: #3da66f; }

.circle-caption {
  margin-left: 1.2rem;
  color: var(--white);
}

.circle-caption small {
  color: rgba(255, 255, 255, .58);
}

.momentum-detail {
  justify-content: space-between;
}

.tiny-chart {
  height: 38px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.tiny-chart i {
  width: 5px;
  height: 35%;
  background: var(--green-bright);
  border-radius: 999px;
}

.tiny-chart i:nth-child(2) { height: 48%; }
.tiny-chart i:nth-child(3) { height: 60%; }
.tiny-chart i:nth-child(4) { height: 78%; }
.tiny-chart i:nth-child(5) { height: 100%; }

/* App showcase */
.app-showcase {
  overflow: hidden;
  color: var(--white);
  background: var(--forest-2);
}

.app-showcase::before {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(88, 168, 220, .22), transparent 68%);
  border-radius: 50%;
  content: "";
}

.showcase-intro {
  position: relative;
  max-width: 850px;
  text-align: center;
  margin-inline: auto;
}

.showcase-intro h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.showcase-intro > p:last-child {
  max-width: 590px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
}

.showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.screen-story {
  min-height: 840px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
}

.screen-story-status {
  background: linear-gradient(180deg, rgba(111, 185, 232, .16), rgba(255, 255, 255, .035));
}

.story-copy {
  padding: clamp(1.7rem, 4vw, 3rem);
}

.story-index {
  color: #a9e99f;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.story-copy h3 {
  max-width: 12ch;
  margin-top: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.story-copy > p {
  max-width: 500px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .65);
}

.story-copy ul {
  margin-top: 1.4rem;
  list-style: none;
}

.story-copy li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .55rem;
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
}

.story-copy li span {
  color: #a9e99f;
  font-weight: 800;
}

.privacy-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem;
}

.privacy-mini span {
  padding: .55rem .75rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .7rem;
}

.privacy-mini i {
  color: #a9e99f;
  font-style: normal;
}

.privacy-mini span:last-child i {
  color: #ff9c91;
}

.device-stage {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  padding: 2rem 2rem 0;
}

.device-stage::before {
  position: absolute;
  bottom: -25%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(102, 184, 230, .32), transparent 64%);
  border-radius: 50%;
  content: "";
}

.screen-story-status .device-stage::before {
  background: radial-gradient(circle, rgba(109, 212, 95, .25), transparent 64%);
}

.showcase-phone {
  width: min(330px, 82%);
  aspect-ratio: 941 / 1672;
  margin-bottom: -15%;
  transform: rotate(-2deg);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.screen-story-status .showcase-phone {
  transform: rotate(2deg);
}

.screen-story:hover .showcase-phone {
  transform: rotate(0) translateY(-12px);
}

/* Goals */
.goals {
  min-height: 950px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.goals-backdrop {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(90deg, rgba(7, 40, 29, .7), rgba(7, 40, 29, .22)), url("../assets/hero-meadow.jpg");
  background-position: center bottom;
  background-size: cover;
  mix-blend-mode: luminosity;
}

.goals::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--forest) 0%, rgba(16, 59, 44, .87) 48%, rgba(16, 59, 44, .66) 100%);
  content: "";
}

.goals-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .86fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.goal-device {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1500px;
}

.goal-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 215, 94, .3), rgba(112, 205, 102, .1) 42%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.goal-halo::before,
.goal-halo::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.goal-halo::before { inset: 11%; }
.goal-halo::after { inset: 23%; border-style: dashed; }

.goal-phone {
  width: min(390px, 82vw);
  aspect-ratio: 941 / 1672;
  transform: rotateY(8deg) rotateZ(-2deg);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.goal-device[data-stage="piglet"] .goal-phone {
  filter: saturate(.72) brightness(.88);
  transform: rotateY(8deg) rotateZ(-2deg) scale(.94);
}

.goal-device[data-stage="golden"] .goal-phone {
  filter: saturate(.9) brightness(.96);
  transform: rotateY(8deg) rotateZ(-2deg) scale(.97);
}

.goal-device[data-stage="radiant"] .goal-phone {
  filter: saturate(1.08) brightness(1.04);
  transform: rotateY(8deg) rotateZ(-2deg) scale(1);
}

.goals-copy h2 {
  max-width: 12ch;
}

.goals-copy > p:not(.section-kicker) {
  max-width: 580px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
}

.goal-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
  margin-top: 2rem;
}

.goal-stage-button {
  min-width: 0;
  padding: .9rem .7rem;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.goal-stage-button:hover {
  transform: translateY(-3px);
}

.goal-stage-button.is-active {
  color: var(--forest);
  background: var(--sun);
  border-color: var(--sun);
}

.goal-stage-button span {
  display: block;
  font-size: .58rem;
  font-weight: 800;
}

.goal-stage-button strong {
  display: block;
  margin-top: .15rem;
  font-family: var(--font-display);
  font-size: .9rem;
}

.goal-stage-button small {
  display: block;
  margin-top: .1rem;
  font-size: .58rem;
  opacity: .72;
}

.goal-progress {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
}

.goal-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .76rem;
  font-weight: 700;
}

.goal-progress > div strong {
  color: var(--sun);
  font-family: var(--font-display);
  font-size: 1rem;
}

.goal-progress-track {
  height: 8px;
  margin-top: .7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
}

.goal-progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green-bright), var(--sun));
  border-radius: inherit;
  transition: width .6s cubic-bezier(.22, 1, .36, 1);
}

.goal-progress p {
  margin-top: .65rem;
  color: rgba(255, 255, 255, .55);
  font-size: .68rem;
}

/* Privacy */
.privacy {
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #e8f8ff 0%, #f9fff2 100%);
}

.privacy::before {
  position: absolute;
  top: -270px;
  left: 50%;
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .95), transparent 70%);
  content: "";
  transform: translateX(-50%);
}

.privacy-heading {
  position: relative;
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.privacy-heading > p:last-child {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.privacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.privacy-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(21, 89, 61, .07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.privacy-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #e3f5df;
  border-radius: 17px;
  font-size: 1.7rem;
}

.privacy-card h3 {
  max-width: 12ch;
  margin-top: auto;
  font-size: 1.55rem;
}

.privacy-card p {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .88rem;
}

.privacy-label {
  margin-top: 1rem;
  color: var(--green);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.text-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 2.5rem auto 0;
  padding-bottom: .25rem;
  color: var(--green);
  border-bottom: 1px solid currentColor;
  font-size: .85rem;
  font-weight: 800;
}

/* Closing */
.closing {
  position: relative;
  min-height: 740px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
  color: var(--white);
  background-image: linear-gradient(180deg, rgba(30, 115, 78, .3), rgba(6, 43, 31, .76)), url("../assets/hero-meadow.jpg");
  background-position: center 68%;
  background-size: cover;
  text-align: center;
}

.closing::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 145, 206, .08), transparent 40%, rgba(3, 33, 24, .52));
  content: "";
}

.closing-light {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 80vw;
  height: 70vw;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .32), transparent 64%);
  transform: translateX(-50%);
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.closing-content > img {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.7rem;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(6, 43, 31, .3);
}

.closing-content .section-kicker {
  color: #efffdc;
}

.closing h2 {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.8rem);
  text-shadow: 0 10px 40px rgba(5, 38, 30, .24);
}

.closing-content > p:not(.section-kicker) {
  max-width: 580px;
  margin: 1.4rem auto 0;
  font-size: 1.1rem;
  text-shadow: 0 3px 20px rgba(5, 38, 30, .3);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 2rem;
}

.store-pill {
  min-width: 178px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: rgba(4, 10, 10, .86);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 12px 32px rgba(5, 38, 30, .2);
}

.store-pill i {
  font-size: 1.25rem;
  font-style: normal;
}

.store-pill span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-pill small {
  font-size: .57rem;
  opacity: .7;
}

.store-pill strong {
  margin-top: .15rem;
  font-size: .92rem;
}

/* Footer */
.footer {
  padding: 3.5rem 0;
  color: var(--white);
  background: var(--forest-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  align-items: start;
  gap: 3rem;
}

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

.footer-tag {
  max-width: 260px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem 1.5rem;
  font-size: .76rem;
  font-weight: 700;
}

.footer-links a {
  opacity: .65;
  transition: opacity .2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-note {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .45);
  font-size: .7rem;
}

.footer-note p + p {
  margin-top: 1.2rem;
}

/* Legal pages */
.back-link {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 800;
}

.legal-hero {
  padding: 150px 0 4.5rem;
  color: var(--white);
  background: linear-gradient(180deg, #58abe0, #a6dff4);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  font-weight: 700;
}

.legal-hero .updated {
  margin-top: .8rem;
  font-size: .82rem;
  font-weight: 600;
}

.legal-body {
  padding: 4rem 0 7rem;
  background: #eef8f2;
}

.legal-card {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(1.6rem, 5vw, 4rem);
  background: var(--white);
  border: 1px solid rgba(8, 34, 62, .08);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(16, 59, 44, .07);
}

.legal-card h2 {
  margin: 2.6rem 0 .8rem;
  font-size: 1.55rem;
  line-height: 1.15;
  scroll-margin-top: 100px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: .95rem;
}

.legal-card p + p {
  margin-top: .8rem;
}

.legal-card ul {
  margin-top: .7rem;
  padding-left: 1.25rem;
}

.legal-card li + li {
  margin-top: .5rem;
}

.legal-card a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-card strong {
  color: var(--ink);
}

.toc {
  margin-top: 1.5rem;
  padding: 1.3rem 1.5rem;
  background: #f1f8ef;
  border-radius: 18px;
}

.toc p {
  color: var(--ink);
  font-weight: 800;
}

.toc ol {
  margin-top: .6rem;
  padding-left: 1.25rem;
}

.toc a {
  text-decoration: none;
}

.legal-body + .footer .footer-grid {
  grid-template-columns: 1fr 1fr 1.1fr;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-rule {
  margin: 2rem 0 1.5rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-help,
.footer-legal {
  max-width: 720px;
  margin-top: .8rem;
  color: rgba(255, 255, 255, .55);
  font-size: .74rem;
}

.footer > .container {
  width: var(--wrap);
  margin-inline: auto;
}

.footer > .container .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero {
    min-height: 920px;
    height: max(100svh, 920px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
    gap: 2rem;
  }

  .hero-product {
    height: 700px;
  }

  .floating-circle {
    left: -3%;
  }

  .screen-story {
    min-height: 780px;
  }
}

@media (max-width: 900px) {
  :root {
    --wrap: min(100% - 36px, 720px);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    height: auto;
    min-height: 1100px;
  }

  .hero-inner {
    min-height: 1100px;
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 140px;
    padding-bottom: 0;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero h1 {
    margin-inline: auto;
  }

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

  .hero-product {
    width: min(560px, 100%);
    height: 650px;
    min-height: 0;
    margin: 0 auto;
  }

  .phone-home {
    right: 22%;
    bottom: -16%;
    width: 58%;
  }

  .phone-goal {
    right: -8%;
    bottom: -12%;
    width: 49%;
  }

  .floating-circle {
    top: 23%;
    left: 4%;
  }

  .floating-status {
    right: 3%;
    bottom: 30%;
  }

  .scroll-cue {
    display: none;
  }

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

  .manifesto-copy {
    margin-top: 2rem;
  }

  .manifesto-stat {
    grid-column: 1;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .step-card {
    min-height: 360px;
  }

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

  .screen-story {
    min-height: 800px;
  }

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

  .goals-copy {
    grid-row: 1;
    text-align: center;
  }

  .goals-copy h2,
  .goals-copy > p:not(.section-kicker) {
    margin-inline: auto;
  }

  .goal-progress {
    text-align: left;
  }

  .goal-device {
    margin-top: 1rem;
  }

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

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

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

  .footer-note {
    grid-column: 1 / -1;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --wrap: calc(100% - 28px);
    --radius-lg: 28px;
  }

  .section {
    padding-block: 5rem;
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .nav-inner {
    height: 68px;
  }

  .brand {
    font-size: 1.2rem;
  }

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

  .nav-cta {
    padding: .6rem .8rem;
    font-size: .7rem;
  }

  .hero {
    min-height: 980px;
  }

  .hero-sky {
    background-image: linear-gradient(180deg, rgba(5, 44, 49, .35), rgba(5, 44, 49, .05) 45%, rgba(5, 45, 32, .24)), url("../assets/hero-meadow.jpg");
    background-position: 43% center;
  }

  .hero-inner {
    min-height: 980px;
    gap: .5rem;
    padding-top: 108px;
  }

  .eyebrow {
    max-width: 310px;
    justify-content: center;
    font-size: .61rem;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.5vw, 4.5rem);
  }

  .hero-lede {
    margin-top: 1.2rem;
    font-size: .93rem;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .button {
    min-height: 48px;
    padding: .72rem 1rem;
    font-size: .78rem;
  }

  .hero-proof {
    display: none;
  }

  .hero-product {
    height: 520px;
    margin-top: 1.2rem;
  }

  .phone-home {
    right: 21%;
    bottom: -12%;
    width: 63%;
    border-radius: 39px;
  }

  .phone-goal {
    right: -25%;
    bottom: -2%;
    width: 55%;
    opacity: .72;
  }

  .phone-shell {
    padding: 6px;
    border-radius: 39px;
  }

  .phone-shell img {
    border-radius: 32px;
  }

  .phone-sensor {
    top: 13px;
    height: 20px;
  }

  .floating-circle {
    top: 17%;
    left: 0;
  }

  .floating-status {
    right: 0;
    bottom: 30%;
  }

  .floating-card {
    gap: .55rem;
    padding: .6rem .7rem;
    border-radius: 15px;
    font-size: .62rem;
  }

  .floating-card strong {
    font-size: .68rem;
  }

  .float-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .promise-track {
    height: 56px;
    justify-content: flex-start;
    animation: marquee 20s linear infinite;
  }

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

  .display-copy {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .steps {
    margin-top: 2.5rem;
  }

  .step-card {
    min-height: 390px;
    border-radius: 24px;
  }

  .step-card h3 {
    margin-top: 2.3rem;
  }

  .screen-story {
    min-height: 690px;
  }

  .story-copy {
    padding: 1.5rem;
  }

  .story-copy h3 {
    font-size: 2.2rem;
  }

  .device-stage {
    padding: 1rem 1rem 0;
  }

  .showcase-phone {
    width: min(290px, 84%);
    margin-bottom: -18%;
  }

  .goals {
    min-height: 1150px;
  }

  .goals-grid {
    gap: 3rem;
  }

  .goal-switcher {
    gap: .35rem;
  }

  .goal-stage-button {
    padding: .75rem .6rem;
  }

  .goal-device {
    margin-bottom: -15%;
  }

  .goal-halo {
    width: 420px;
    height: 420px;
  }

  .goal-phone {
    width: min(315px, 80vw);
  }

  .privacy-card {
    min-height: 250px;
  }

  .closing {
    min-height: 690px;
    background-position: 46% center;
  }

  .closing h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .closing-content > img {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }

  .store-row {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-note {
    grid-column: 1;
  }

  .legal-card {
    border-radius: 22px;
  }

  .footer > .container .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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