:root {
  color-scheme: light dark;
  --green: #0b6047;
  --green-deep: #074535;
  --mint: #b8d9cc;
  --cream: #f8f4e8;
  --paper: #fffdf7;
  --ink: #10221b;
  --muted: #64736d;
  --line: rgba(11, 96, 71, .14);
  --shadow: 0 30px 80px rgba(7, 69, 53, .14);
  --radius: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@supports (-webkit-touch-callout: none) {
  * {
    scrollbar-width: none;
  }

  *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  width: min(1180px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px 14px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 12px;
  z-index: 20;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(248,244,232,.82);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 10px 30px rgba(19,39,32,.06);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 11px; font-weight: 760; letter-spacing: -.02em; }
.brand img, .footer-brand img { border-radius: 10px; }
.site-header nav, .site-footer nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a, .site-footer nav a { color: var(--muted); font-size: .9rem; font-weight: 650; }
.site-header nav a:hover, .site-footer nav a:hover { color: var(--green); }
.site-header nav .nav-demo { padding: 9px 14px; border-radius: 11px; background: var(--green); color: var(--cream); }
.site-header nav .nav-demo:hover { background: var(--green-deep); color: var(--cream); }

.hero { min-height: 760px; padding: 92px 0 80px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow, .kicker { color: var(--green); font-size: .76rem; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(11,96,71,.12); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 22px 0 24px; font-size: clamp(3.9rem, 7.5vw, 6.7rem); line-height: .91; letter-spacing: -.075em; font-weight: 820; }
h1 span { color: var(--green); }
.hero-lede { max-width: 620px; color: var(--muted); font-size: 1.12rem; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin: 34px 0 28px; }
.button { min-height: 52px; padding: 0 22px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: .94rem; font-weight: 750; transition: transform .18s ease, background-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: var(--cream); box-shadow: 0 15px 30px rgba(11,96,71,.2); }
.button.primary:hover { background: var(--green-deep); }
.button.quiet { background: rgba(255,255,255,.55); border: 1px solid var(--line); }
.proof { display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: .8rem; font-weight: 700; }
.proof li { display: flex; align-items: center; gap: 6px; }
.proof li span { color: var(--green); }

.hero-visual { min-height: 600px; position: relative; display: grid; place-items: center; }
.halo { width: 470px; height: 470px; position: absolute; border-radius: 50%; background: var(--mint); opacity: .55; filter: blur(1px); }
.phone { overflow: hidden; border: 8px solid #10221b; border-radius: 48px; background: #10221b; box-shadow: var(--shadow); }
.phone img { width: 100%; height: auto; border-radius: 39px; }
.hero-phone { width: 286px; position: relative; z-index: 2; transform: rotate(2deg); }
.floating-card { position: absolute; z-index: 3; min-width: 138px; padding: 15px 18px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,253,247,.86); backdrop-filter: blur(16px); box-shadow: 0 16px 40px rgba(7,69,53,.13); }
.floating-card strong { color: var(--green); font-size: 1.08rem; }
.floating-card span { color: var(--muted); font-size: .73rem; font-weight: 650; }
.card-week { top: 126px; left: 5px; }
.card-days { right: 0; bottom: 110px; }

.signal-bar { background: var(--green); color: var(--cream); display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-bar div { padding: 28px; display: flex; align-items: baseline; justify-content: center; gap: 9px; border-right: 1px solid rgba(248,244,232,.18); }
.signal-bar div:last-child { border-right: 0; }
.signal-bar strong { font-size: 2.4rem; line-height: 1; letter-spacing: -.06em; }
.signal-bar span { color: var(--mint); font-size: .8rem; font-weight: 760; text-transform: uppercase; letter-spacing: .1em; }

.section { padding: 128px 0; }
.section-heading { max-width: 650px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .privacy-block h2, .final-cta h2, .legal-hero h1 { margin: 12px 0 18px; font-size: clamp(2.8rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.06em; }
.section-heading p, .privacy-block p, .final-cta p { color: var(--muted); max-width: 600px; }
.feature-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,247,.64); }
.symbol, .privacy-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: rgba(184,217,204,.55); color: var(--green); }
.symbol svg, .privacy-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 56px 0 9px; font-size: 1.26rem; letter-spacing: -.03em; }
.feature-card p { color: var(--muted); margin-bottom: 0; font-size: .92rem; }

.preview-section { padding: 128px 0; overflow: hidden; background: var(--paper); }
.phone-row { margin-top: 78px; display: grid; grid-template-columns: repeat(3, minmax(0, 290px)); justify-content: center; align-items: center; gap: 30px; }
.preview-item { margin: 0; }
.preview-item.side { transform: scale(.9); opacity: .82; }
.preview-item figcaption { margin-top: 20px; display: flex; justify-content: center; gap: 9px; font-weight: 750; }
.preview-item figcaption span { color: var(--green); }

.privacy-block { margin-top: 116px; margin-bottom: 116px; padding: 54px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; border: 1px solid var(--line); border-radius: 34px; background: var(--paper); }
.privacy-block h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.privacy-block p { margin-bottom: 0; }
.privacy-icon { width: 72px; height: 72px; border-radius: 24px; }
.privacy-icon svg { width: 38px; }
.text-link { color: var(--green); font-weight: 780; white-space: nowrap; }

.final-cta { margin-bottom: 110px; padding: 100px 30px; text-align: center; border-radius: 40px; background: var(--green); color: var(--cream); }
.final-cta img { margin: 0 auto 24px; border-radius: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.final-cta .kicker { color: var(--mint); }
.final-cta p { margin: 0 auto 28px; color: rgba(248,244,232,.74); }
.store-pill { padding: 12px 17px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(248,244,232,.22); border-radius: 999px; background: rgba(248,244,232,.1); font-size: .8rem; font-weight: 760; }
.store-pill span { color: var(--mint); font-size: .6rem; }
.final-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.demo-button { background: var(--cream); color: var(--green-deep); }
.demo-button:hover { background: #fffdf7; }

.site-footer { padding: 0 0 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; color: var(--muted); font-size: .82rem; }
.site-footer > p { margin: 0; text-align: right; }

.legal-main { padding: 90px 0 120px; }
.legal-hero { max-width: 760px; margin-bottom: 56px; }
.legal-hero h1 { margin-top: 18px; }
.legal-hero p { color: var(--muted); font-size: 1.06rem; }
.legal-card { max-width: 820px; padding: clamp(28px, 6vw, 68px); border: 1px solid var(--line); border-radius: 32px; background: var(--paper); }
.legal-card h2 { margin: 42px 0 10px; font-size: 1.35rem; letter-spacing: -.03em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-card ul, .legal-card ol { padding-left: 1.25rem; }
.legal-meta { color: var(--muted); font-size: .82rem; font-weight: 650; }
.support-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 6px; }
details { padding: 19px 0; border-bottom: 1px solid var(--line); }
details:first-of-type { border-top: 1px solid var(--line); }
summary { cursor: pointer; color: var(--ink); font-weight: 740; }
details p { margin: 12px 0 0; }

@media (prefers-color-scheme: dark) {
  :root { --cream: #081b16; --paper: #0d251e; --ink: #f5f2e8; --muted: #a5b5ae; --line: rgba(184,217,204,.15); --shadow: 0 30px 80px rgba(0,0,0,.34); }
  .site-header { background: rgba(8,27,22,.82); border-color: rgba(184,217,204,.12); }
  .button.quiet, .floating-card { background: rgba(13,37,30,.86); }
  .phone { border-color: #020806; background: #020806; }
  .feature-card { background: rgba(13,37,30,.62); }
}

@media (max-width: 820px) {
  .site-header nav a:not(:last-child) { display: none; }
  .hero { min-height: 0; padding-top: 68px; grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .proof { justify-content: center; }
  .hero-visual { min-height: 560px; }
  .card-week { left: 2%; }
  .card-days { right: 2%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-card h3 { margin-top: 34px; }
  .phone-row { grid-template-columns: repeat(3, 235px); gap: 18px; }
  .preview-item.side { transform: scale(.88); }
  .privacy-block { grid-template-columns: auto 1fr; padding: 36px; }
  .privacy-block .text-link { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer > p { text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, 1120px); }
  .brand span { font-size: .92rem; }
  .site-header nav { gap: 14px; }
  h1 { font-size: clamp(3.45rem, 16vw, 5.1rem); }
  .hero { padding-top: 58px; }
  .hero-actions { flex-direction: column; }
  .proof { gap: 12px; }
  .hero-visual { min-height: 525px; }
  .halo { width: 340px; height: 340px; }
  .hero-phone { width: 246px; }
  .floating-card { min-width: 120px; padding: 12px 14px; }
  .card-week { top: 88px; }
  .card-days { bottom: 86px; }
  .signal-bar div { padding: 22px 6px; flex-direction: column; align-items: center; gap: 4px; }
  .signal-bar strong { font-size: 1.9rem; }
  .signal-bar span { font-size: .64rem; }
  .section, .preview-section { padding: 92px 0; }
  .phone-row { width: 100%; display: flex; overflow-x: auto; justify-content: flex-start; scroll-snap-type: x mandatory; padding: 0 8vw 22px; gap: 22px; }
  .preview-item, .preview-item.side { width: 72vw; min-width: 72vw; transform: none; opacity: 1; scroll-snap-align: center; }
  .privacy-block { margin-block: 76px; grid-template-columns: 1fr; text-align: center; }
  .privacy-icon { margin-inline: auto; }
  .privacy-block .text-link { grid-column: 1; white-space: normal; }
  .final-cta { margin-bottom: 76px; padding: 76px 20px; }
  .site-footer nav { gap: 18px; }
  .legal-main { padding-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
