:root {
  color-scheme: dark;
  --bg: #0e1211;
  --bg-alt: #131917;
  --bg-soft: #181f1d;
  --ink: #edf1ef;
  --muted: #8b938e;
  --muted-strong: #b7beb9;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-strong: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.045);
  --card-strong: rgba(255, 255, 255, 0.06);
  --sage: #83c49c;
  --sage-deep: #7fa087;
  --sage-shadow: rgba(131, 196, 156, 0.22);
  --yellow: #b4a76e;
  --red: #b37e75;
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --content-width: 1180px;
  --nav-height: 76px;
  --section-pad: 104px;
  --num-font: "Nunito", "SF Pro Rounded", ui-rounded, system-ui, sans-serif;
  --text-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--text-font);
  color: var(--ink);
  background:
    radial-gradient(90rem 60rem at 90% -10%, rgba(131, 196, 156, 0.12), transparent 55%),
    radial-gradient(44rem 30rem at 0% 12%, rgba(131, 196, 156, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0d0c 0%, var(--bg) 18%, var(--bg-alt) 100%);
}

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

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

button,
.button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 56px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--hair);
  background: rgba(14, 18, 17, 0.82);
  backdrop-filter: blur(18px);
}

.site-nav__inner {
  width: min(100%, var(--content-width));
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: #0d120f;
  box-shadow: 0 12px 30px rgba(131, 196, 156, 0.2);
}

.brand__mark i {
  font-size: 15px;
}

.brand__text {
  font-family: var(--num-font);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--sage);
  color: #0b100d;
  font-family: var(--num-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 34px var(--sage-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta:hover,
.primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(131, 196, 156, 0.3);
  filter: saturate(1.05);
}

.hero {
  position: relative;
  padding: 86px 0 96px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 180px;
  width: 620px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 196, 156, 0.18) 0%, transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 68px;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--num-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.eyebrow i {
  font-size: 14px;
}

.hero__title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--num-font);
  font-size: clamp(3rem, 7vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__sub {
  max-width: 45ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.hero__note,
.cta-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat__value {
  font-family: var(--num-font);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.stat__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambient-number {
  position: absolute;
  inset: 72px auto auto -8px;
  font-family: var(--num-font);
  font-size: clamp(12rem, 20vw, 18rem);
  line-height: 0.9;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.08em;
  pointer-events: none;
  user-select: none;
}

.device-card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  overflow: hidden;
  transform: translateY(-4px);
  animation: floaty 6s ease-in-out infinite;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.device-card__glow {
  position: absolute;
  inset: auto 8% -10% 8%;
  height: 42%;
  background: radial-gradient(circle, rgba(131, 196, 156, 0.24) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.device-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.floating-watch {
  position: absolute;
  right: -8px;
  bottom: 46px;
  z-index: 3;
  width: 186px;
  padding: 12px;
  border-radius: 28px;
  background: rgba(21, 26, 24, 0.92);
  border: 1px solid var(--hair-strong);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.floating-watch__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.floating-watch__image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #040505;
}

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

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.section--band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.section-head {
  max-width: 64ch;
  margin-bottom: 52px;
}

.section-title {
  margin: 0;
  font-family: var(--num-font);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  text-wrap: pretty;
}

.steps-grid,
.method-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.surface-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hair);
  background: var(--card);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.surface-card--dashed {
  border-style: dashed;
  border-color: var(--hair-strong);
}

.step-card__num,
.metric-card__value {
  color: var(--sage);
  font-family: var(--num-font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-card__title,
.metric-card__title,
.proof-card__title {
  margin: 14px 0 10px;
  font-family: var(--num-font);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.step-card__body,
.metric-card__body,
.proof-card__body {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
  text-wrap: pretty;
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 64px;
}

.feature-row--reverse .feature-copy {
  order: 2;
}

.feature-row--reverse .feature-visual {
  order: 1;
}

.feature-copy {
  min-width: 0;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(131, 196, 156, 0.12);
  color: var(--sage);
  font-family: var(--num-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-title {
  margin: 18px 0 12px;
  font-family: var(--num-font);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.feature-body {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  text-wrap: pretty;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex: 0 0 auto;
}

.shot-card {
  overflow: hidden;
  padding: 18px;
}

.shot-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.shot-card__title {
  font-family: var(--num-font);
  font-size: 16px;
  font-weight: 800;
}

.shot-card__meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.shot-frame {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.shot-frame img {
  width: 100%;
  height: auto;
}

.privacy-grid,
.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.privacy-lock {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(131, 196, 156, 0.28);
  background: rgba(131, 196, 156, 0.12);
  color: var(--sage);
  font-size: 32px;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(131, 196, 156, 0.28);
  background: rgba(131, 196, 156, 0.1);
  color: var(--sage);
  font-family: var(--num-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.privacy-panel {
  padding: 8px 24px;
}

.privacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hair);
}

.privacy-row:last-child {
  border-bottom: 0;
}

.privacy-row__key {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.privacy-row__value {
  text-align: right;
  font-family: var(--num-font);
  font-size: 15px;
  font-weight: 800;
}

.watch-hero {
  position: relative;
  display: grid;
  place-items: center;
}

.watch-stack {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.watch-card {
  width: 168px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hair);
  background: rgba(8, 10, 10, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.watch-card--secondary {
  width: 128px;
  transform: translateY(18px);
  opacity: 0.84;
}

.watch-card--tertiary {
  width: 112px;
  transform: translateY(28px);
  opacity: 0.68;
}

.watch-card img {
  width: 100%;
  height: auto;
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.comp-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--hair);
  background: var(--card);
}

.comp-card__title {
  display: block;
  font-family: var(--num-font);
  font-size: 15px;
  font-weight: 800;
}

.comp-card__body {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-card__value {
  font-size: 28px;
  letter-spacing: -0.04em;
  text-transform: none;
}

.metric-card__title {
  margin-top: 8px;
  font-size: 18px;
}

.proof-card__title {
  font-size: 18px;
}

.proof-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 110px 0 118px;
  background:
    radial-gradient(60rem 24rem at 50% 110%, rgba(131, 196, 156, 0.2), transparent 72%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto 50% -180px;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 196, 156, 0.2) 0%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-band__title {
  max-width: 14ch;
  margin: 0;
  font-family: var(--num-font);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.cta-band__sub {
  max-width: 44ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.54;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.cta-band__req {
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer {
  padding: 56px 0 34px;
  background: var(--bg-alt);
  border-top: 1px solid var(--hair);
}

.site-footer__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-copy {
  max-width: 34ch;
}

.footer-copy__text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  width: min(100%, var(--content-width));
  margin: 38px auto 0;
  padding: 34px 56px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--hair);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.wellness-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.54;
}

.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  max-width: 560px;
  margin: auto;
  padding: 16px;
  background: rgba(19, 25, 23, 0.96);
  border: 1px solid var(--hair-strong);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.5;
}

.consent a {
  color: var(--sage);
}

.consent-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.consent-actions button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.consent-actions .accept {
  background: var(--sage);
  color: #0b100d;
}

.consent-actions .decline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair-strong);
}

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

@media (max-width: 1100px) {
  .container,
  .site-nav__inner,
  .site-footer__inner,
  .footer-bottom {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero__inner,
  .feature-row,
  .privacy-grid,
  .watch-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .feature-row--reverse .feature-copy,
  .feature-row--reverse .feature-visual {
    order: initial;
  }
}

@media (max-width: 820px) {
  :root {
    --section-pad: 72px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 62px;
  }

  .hero__inner {
    gap: 28px;
  }

  .hero__sub,
  .section-sub,
  .cta-band__sub {
    font-size: 15.5px;
  }

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

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

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

  .ambient-number {
    inset: 36px auto auto 0;
    font-size: 10rem;
  }

  .floating-watch {
    right: 6px;
    bottom: 24px;
    width: 146px;
  }

  .site-footer__inner,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .site-nav__inner,
  .site-footer__inner,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav__inner {
    height: 64px;
    gap: 14px;
  }

  .brand__text {
    font-size: 16px;
  }

  .nav-cta,
  .primary-cta {
    min-height: 46px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__actions,
  .cta-band__actions {
    width: 100%;
  }

  .hero__stats {
    gap: 20px;
  }

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

  .device-card {
    width: min(100%, 340px);
  }

  .floating-watch {
    display: none;
  }

  .surface-card,
  .privacy-panel {
    padding: 22px;
  }

  .shot-card {
    padding: 14px;
  }

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

  .watch-stack {
    gap: 10px;
  }

  .watch-card {
    width: 144px;
  }

  .watch-card--secondary {
    width: 110px;
  }

  .watch-card--tertiary {
    display: none;
  }

  .privacy-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-row__value {
    text-align: left;
  }

  .consent-actions {
    flex-direction: column;
  }
}
