:root {
  --forest: #0b241c;
  --forest-soft: #12382b;
  --forest-faint: #dfe9dd;
  --ink: #10221b;
  --cream: #f6f3e8;
  --paper: #fffdf7;
  --lime: #c7ff51;
  --aqua: #6fe7d8;
  --violet: #9c8cff;
  --orange: #ffb36b;
  --muted: #607068;
  --line: #dcded3;
  --radius: 28px;
  --shadow: 0 28px 70px rgba(20, 45, 35, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { background: var(--lime); left: 12px; padding: 10px 14px; position: fixed; top: -80px; z-index: 50; }
.skip-link:focus { top: 12px; }

.site-header {
  align-items: center;
  background: rgba(11, 36, 28, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}
.wordmark { font-size: 24px; font-weight: 840; letter-spacing: -.06em; text-decoration: none; width: fit-content; }
.wordmark span { color: var(--lime); }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a { color: #c6d4cb; font-size: 13px; font-weight: 690; text-decoration: none; }
.site-header nav a:hover { color: white; }
.header-cta { border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: 13px; font-weight: 790; justify-self: end; padding: 11px 17px; text-decoration: none; }
.header-cta:hover { background: white; color: var(--forest); }

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(111, 231, 216, .13), transparent 29%),
    radial-gradient(circle at 6% 92%, rgba(199, 255, 81, .09), transparent 27%),
    var(--forest);
  color: white;
  display: grid;
  gap: clamp(40px, 5vw, 76px);
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .65fr);
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(46px, 5.3vw, 72px) clamp(20px, 7vw, 112px);
  position: relative;
}
.hero::before, .hero::after { border: 1px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; pointer-events: none; position: absolute; }
.hero::before { height: 410px; left: -260px; top: 52%; width: 410px; }
.hero::after { height: 560px; right: -250px; top: -190px; width: 560px; }
.hero-copy { max-width: 760px; position: relative; z-index: 1; }
.eyebrow { align-items: center; color: #dce9df; display: flex; font-size: 12px; font-weight: 780; gap: 10px; letter-spacing: .14em; margin: 0 0 24px; text-transform: uppercase; }
.eyebrow > span { background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 6px rgba(199,255,81,.09); flex: 0 0 auto; height: 8px; width: 8px; }
.eyebrow.dark { color: #53635a; }
.hero h1 { font-size: clamp(51px, 7.15vw, 102px); letter-spacing: -.072em; line-height: .94; margin: 0; max-width: 880px; }
h1 em, h2 em { color: var(--lime); display: block; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; letter-spacing: -.055em; }
.hero-lead { color: #c4d3c8; font-size: clamp(17px, 1.8vw, 22px); line-height: 1.56; margin: 28px 0 34px; max-width: 650px; }

.waitlist-form { max-width: 650px; scroll-margin-top: 110px; }
.waitlist-form > label { display: block; font-size: 14px; font-weight: 790; margin-bottom: 10px; }
.form-intro { color: #c4d3c8; font-size: 13px; line-height: 1.5; margin: -3px 0 12px; }
.form-row { background: white; border-radius: 16px; display: flex; gap: 8px; padding: 7px; transition: box-shadow .2s ease; }
.form-row:focus-within { box-shadow: 0 0 0 4px rgba(199,255,81,.22); }
.form-row input { background: transparent; border: 0; color: var(--ink); flex: 1; min-width: 0; outline: 0; padding: 13px 14px; }
.form-row input::placeholder { color: #7d8982; }
.form-row input[aria-invalid="true"] { color: #a52828; }
.form-row button { align-items: center; background: var(--lime); border: 0; border-radius: 11px; color: #0c261d; cursor: pointer; display: inline-flex; font-weight: 830; gap: 10px; justify-content: center; padding: 13px 18px; transition: background .2s ease, transform .2s ease; white-space: nowrap; }
.form-row button:hover { background: #d6ff77; transform: translateY(-1px); }
.form-row button:disabled { cursor: wait; opacity: .7; transform: none; }
.consent-row { align-items: flex-start; color: #d6e0d9; cursor: pointer; display: flex !important; font-size: 12px !important; font-weight: 560 !important; gap: 10px; line-height: 1.5; margin: 13px 2px 0 !important; }
.consent-row input { accent-color: var(--lime); flex: 0 0 auto; height: 17px; margin: 1px 0 0; width: 17px; }
.consent-row input[aria-invalid="true"] { outline: 2px solid #ffbd9b; outline-offset: 2px; }
.form-note, .form-status { color: #9fb1a6; font-size: 12px; line-height: 1.5; margin: 10px 2px 0; }
.privacy-link { color: #edf5ef; text-decoration: underline; text-underline-offset: 3px; }
.form-status { font-weight: 720; min-height: 20px; }
.form-status[data-kind="success"] { color: var(--lime); }
.form-status[data-kind="error"] { color: #ffbd9b; }
.honeypot { height: 1px; left: -9999px; opacity: 0; position: absolute; width: 1px; }

.hero-product { background: rgba(250, 249, 242, .98); border: 1px solid rgba(255,255,255,.58); border-radius: var(--radius); box-shadow: 0 42px 105px rgba(0,0,0,.28); color: var(--ink); justify-self: center; max-width: 440px; padding: 26px; position: relative; transform: rotate(1.5deg); width: 100%; z-index: 1; }
.product-head { align-items: center; display: flex; justify-content: space-between; }
.product-label { font-size: 12px; font-weight: 820; letter-spacing: .06em; text-transform: uppercase; }
.live-pill { align-items: center; background: #e4f2e7; border-radius: 999px; color: #315b43; display: inline-flex; font-size: 10px; font-weight: 800; gap: 6px; padding: 7px 10px; text-transform: uppercase; }
.live-pill i { background: #38a968; border-radius: 50%; height: 7px; width: 7px; }
.product-kicker { color: #78847d; font-size: 12px; margin: 33px 0 0; }
.product-count { display: block; font-family: Georgia, serif; font-size: 92px; font-weight: 500; letter-spacing: -.075em; line-height: .9; margin-top: 6px; }
.product-caption { color: #53615a; margin: 8px 0 28px; }
.benefit-list { display: grid; gap: 9px; }
.benefit-list article { align-items: center; background: white; border: 1px solid #e7e7dd; border-radius: 15px; display: grid; gap: 11px; grid-template-columns: auto 1fr auto; padding: 11px; }
.benefit-icon { border-radius: 11px; display: grid; font-size: 18px; height: 42px; place-items: center; width: 42px; }
.benefit-icon.lime { background: var(--lime); }.benefit-icon.aqua { background: var(--aqua); }.benefit-icon.violet { background: var(--violet); }
.benefit-list small, .benefit-list strong { display: block; }
.benefit-list small { color: #738078; font-size: 10px; margin-bottom: 3px; }
.benefit-list strong { font-size: 13px; }.benefit-list b { font-size: 12px; }
.example-note { color: #87918b; font-size: 9px; letter-spacing: .075em; margin: 14px 0 0; text-align: center; text-transform: uppercase; }

.promise-bar { align-items: center; background: var(--lime); color: var(--forest); display: flex; font-size: 12px; font-weight: 800; gap: clamp(20px, 4vw, 60px); justify-content: center; letter-spacing: .04em; min-height: 58px; padding: 14px 20px; text-transform: uppercase; }
.promise-bar i { font-style: normal; }

.section { margin: 0 auto; max-width: 1440px; padding: clamp(88px, 10vw, 150px) clamp(20px, 7vw, 112px); }
.section-heading { align-items: end; display: grid; gap: 22px clamp(30px, 6vw, 90px); grid-template-columns: 1.2fr .8fr; margin-bottom: 54px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; }
.section h2 { font-size: clamp(42px, 5.7vw, 78px); letter-spacing: -.065em; line-height: 1; margin: 0; }
.section h2 em { color: #23654d; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0; max-width: 520px; }

.moments { padding-bottom: 96px; }
.moment-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.moment-card { border: 1px solid rgba(16,34,27,.1); border-radius: 24px; display: flex; flex-direction: column; min-height: 470px; overflow: hidden; padding: 25px; position: relative; }
.moment-lime { background: #e7fcb9; }.moment-aqua { background: #ccefeb; }.moment-violet { background: #e2dcff; }
.moment-top { align-items: center; display: flex; justify-content: space-between; margin-bottom: 45px; }
.moment-top > span { border: 1px solid rgba(16,34,27,.3); border-radius: 999px; font-size: 11px; font-weight: 800; padding: 7px 9px; }
.moment-top b { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.moment-card h3 { font-size: clamp(25px, 2.3vw, 35px); letter-spacing: -.045em; line-height: 1.05; margin: 0 0 18px; }
.moment-card > p { color: #44564d; font-size: 14px; line-height: 1.6; margin: 0 0 30px; }
.mini-alert { align-items: center; background: rgba(255,255,255,.77); border-radius: 16px; box-shadow: 0 16px 36px rgba(30,60,45,.09); display: flex; gap: 11px; margin-top: auto; padding: 13px; transform: rotate(-1.5deg); }
.mini-alert > span { background: var(--orange); border-radius: 11px; display: grid; flex: 0 0 auto; font-weight: 900; height: 40px; place-items: center; width: 40px; }
.mini-alert small, .mini-alert strong { display: block; }.mini-alert small { color: #68776f; font-size: 10px; }.mini-alert strong { font-size: 12px; margin-top: 2px; }
.mini-choices { display: grid; gap: 8px; margin-top: auto; }
.mini-choices span { align-items: center; background: rgba(255,255,255,.7); border-radius: 13px; display: flex; font-size: 12px; font-weight: 750; justify-content: space-between; padding: 14px; }
.mini-stack { height: 95px; margin-top: auto; position: relative; }
.mini-stack span { background: white; border: 1px solid rgba(16,34,27,.1); border-radius: 999px; box-shadow: 0 10px 25px rgba(20,40,32,.08); font-size: 11px; font-weight: 800; left: 0; padding: 11px 16px; position: absolute; }
.mini-stack span:nth-child(1) { left: 5%; top: 6px; transform: rotate(-5deg); }.mini-stack span:nth-child(2) { left: 34%; top: 42px; transform: rotate(4deg); }.mini-stack span:nth-child(3) { left: 59%; top: 2px; transform: rotate(-2deg); }
.disclaimer { color: #77837c; font-size: 11px; line-height: 1.6; margin: 24px auto 0; max-width: 740px; text-align: center; }

.category-band { background: var(--forest); color: white; overflow: hidden; padding: 26px 20px; }
.category-track { align-items: center; display: flex; font-family: Georgia, serif; font-size: clamp(25px, 3.1vw, 45px); font-style: italic; gap: clamp(18px, 3vw, 46px); justify-content: center; white-space: nowrap; }
.category-track i { color: var(--lime); font-family: inherit; font-size: 12px; font-style: normal; }

.how { align-items: start; display: grid; gap: clamp(50px, 10vw, 150px); grid-template-columns: .85fr 1.15fr; }
.how-intro { position: sticky; top: 120px; }
.how-intro h2 { font-size: clamp(43px, 5.2vw, 72px); }
.how-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; margin: 24px 0 28px; max-width: 540px; }
.demo-link { align-items: center; display: inline-flex; font-size: 14px; font-weight: 800; gap: 8px; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li { align-items: start; border-top: 1px solid #cdd3cb; display: grid; gap: 22px; grid-template-columns: auto 1fr; padding: 34px 0 42px; }
.steps li:last-child { border-bottom: 1px solid #cdd3cb; }
.steps li > span { border: 1px solid #b9c4bb; border-radius: 50%; display: grid; font-family: Georgia, serif; font-size: 18px; height: 44px; place-items: center; width: 44px; }
.steps h3 { font-size: clamp(25px, 2.2vw, 34px); letter-spacing: -.04em; margin: 5px 0 12px; }
.steps p { color: var(--muted); line-height: 1.65; margin: 0; max-width: 580px; }

.statement { background: var(--forest); border-radius: 34px; color: white; margin-bottom: clamp(70px, 8vw, 120px); max-width: min(1280px, calc(100% - 40px)); padding-left: clamp(30px, 7vw, 100px); padding-right: clamp(30px, 7vw, 100px); }
.statement > p { color: var(--lime); font-size: 12px; font-weight: 800; letter-spacing: .13em; margin: 0 0 25px; text-transform: uppercase; }
.statement h2 { max-width: 1000px; }.statement h2 em { color: var(--aqua); }
.statement-points { border-top: 1px solid rgba(255,255,255,.15); display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 55px; padding-top: 25px; }
.statement-points span { color: #b9c9bf; font-size: 13px; line-height: 1.5; }.statement-points b { color: white; display: block; font-size: 15px; }

.demo-callout { align-items: center; background: var(--aqua); border-radius: 28px; display: grid; gap: 50px; grid-template-columns: 1fr auto; margin-bottom: 50px; max-width: min(1280px, calc(100% - 40px)); padding: clamp(42px, 6vw, 75px); }
.demo-badge { border: 1px solid rgba(16,34,27,.35); border-radius: 999px; display: inline-block; font-size: 10px; font-weight: 850; letter-spacing: .08em; margin-bottom: 18px; padding: 7px 10px; text-transform: uppercase; }
.demo-callout h2 { font-size: clamp(37px, 4.2vw, 62px); max-width: 820px; }
.demo-callout p { color: #33564e; line-height: 1.65; margin: 21px 0 0; max-width: 770px; }
.button-secondary, .button-primary { align-items: center; border-radius: 999px; display: inline-flex; font-size: 14px; font-weight: 840; gap: 16px; justify-content: center; padding: 17px 21px; text-decoration: none; white-space: nowrap; }
.button-secondary { background: var(--forest); color: white; }.button-secondary:hover { background: #173d30; }

.faq { display: grid; gap: clamp(40px, 8vw, 110px); grid-template-columns: .8fr 1.2fr; }
.compact-heading { display: block; margin: 0; }.compact-heading .eyebrow { margin-bottom: 24px; }.compact-heading h2 { font-size: clamp(42px, 5vw, 66px); }
.faq-list { border-top: 1px solid #c9d0c8; }
.faq details { border-bottom: 1px solid #c9d0c8; }
.faq summary { align-items: center; cursor: pointer; display: flex; font-size: 17px; font-weight: 780; gap: 20px; justify-content: space-between; list-style: none; padding: 24px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { color: var(--muted); line-height: 1.7; margin: -5px 40px 24px 0; }

.final-cta { align-items: end; background: var(--forest); border-radius: 34px 34px 0 0; color: white; display: grid; gap: 60px; grid-template-columns: 1fr auto; margin-top: 30px; max-width: min(1440px, calc(100% - 40px)); padding-bottom: 80px; padding-top: 80px; }
.final-cta h2 { font-size: clamp(52px, 7vw, 96px); }.final-cta h2 em { color: var(--lime); }
.final-cta > div > p:last-child { color: #b7c9be; line-height: 1.65; margin: 24px 0 0; max-width: 650px; }
.button-primary { background: var(--lime); color: var(--forest); }.button-primary:hover { background: white; }

.site-footer { align-items: start; background: #061812; color: #9bb0a4; display: grid; gap: 28px; grid-template-columns: .55fr 1.2fr .8fr auto; padding: 42px clamp(20px, 7vw, 112px); }
.footer-wordmark { color: white; }.site-footer p { font-size: 12px; line-height: 1.6; margin: 0; max-width: 410px; }
.site-footer > div { display: flex; flex-wrap: wrap; gap: 18px; }.site-footer > div a { color: #c6d2ca; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }.site-footer small { font-size: 11px; white-space: nowrap; }

.privacy-page { background: var(--cream); }
.privacy-page .site-header { position: static; }
.privacy-page .site-header nav { justify-self: center; }
.legal-hero { background: var(--forest); color: white; padding: clamp(68px, 9vw, 126px) clamp(20px, 12vw, 180px); }
.legal-hero-inner { max-width: 960px; }
.legal-hero h1 { font-size: clamp(48px, 7vw, 92px); letter-spacing: -.065em; line-height: .96; margin: 0; }
.legal-hero h1 em { color: var(--lime); display: block; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; }
.legal-hero .legal-lead { color: #c4d3c8; font-size: clamp(17px, 2vw, 22px); line-height: 1.6; margin: 27px 0 0; max-width: 780px; }
.legal-meta { color: #9fb1a6; font-size: 12px; letter-spacing: .06em; margin: 24px 0 0; text-transform: uppercase; }
.legal-layout { align-items: start; display: grid; gap: clamp(42px, 8vw, 110px); grid-template-columns: minmax(210px, .36fr) minmax(0, 1fr); margin: 0 auto; max-width: 1180px; padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 90px); }
.legal-nav { border-left: 2px solid var(--lime); display: grid; gap: 12px; padding-left: 20px; position: sticky; top: 32px; }
.legal-nav strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.legal-nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
.legal-nav a:hover { color: var(--forest); }
.legal-content { max-width: 760px; }
.legal-section { border-top: 1px solid var(--line); padding: 36px 0 42px; }
.legal-section:first-child { border-top: 0; padding-top: 0; }
.legal-section h2 { font-size: clamp(29px, 3.2vw, 42px); letter-spacing: -.045em; line-height: 1.05; margin: 0 0 18px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-section p { margin: 0 0 14px; }
.legal-section ul { margin: 15px 0 0; padding-left: 20px; }
.legal-section li + li { margin-top: 8px; }
.legal-callout { background: #e7fcb9; border: 1px solid rgba(16,34,27,.1); border-radius: 20px; color: var(--ink) !important; padding: 20px 22px; }
.legal-callout a { font-weight: 800; }
.legal-note { background: #e2dcff; border-radius: 18px; padding: 18px 20px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }.site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 68px; }.hero-copy { max-width: 780px; }.hero-product { justify-self: start; max-width: 580px; transform: none; }
  .moment-grid { grid-template-columns: 1fr; }.moment-card { min-height: 380px; }.mini-stack { max-width: 420px; }
  .how { grid-template-columns: 1fr; }.how-intro { position: static; }.how-intro h2 { max-width: 800px; }
  .faq { grid-template-columns: 1fr; }.compact-heading { max-width: 720px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .site-header { height: 66px; padding: 0 18px; }.wordmark { font-size: 22px; }.header-cta { font-size: 11px; padding: 9px 11px; }
  .hero { gap: 54px; min-height: auto; padding: 58px 18px 72px; }.hero h1 { font-size: clamp(48px, 14vw, 65px); }.hero-lead { font-size: 17px; margin-top: 24px; }
  .form-row { background: transparent; display: grid; padding: 0; }.form-row:focus-within { box-shadow: none; }.form-row input { background: white; border-radius: 13px; padding: 16px; }.form-row input:focus { box-shadow: 0 0 0 4px rgba(199,255,81,.22); }.form-row button { min-height: 54px; }
  .hero-product { padding: 20px; }.product-count { font-size: 77px; }.benefit-list article { grid-template-columns: auto 1fr; }.benefit-list article > b { display: none; }
  .promise-bar { align-items: flex-start; flex-direction: column; gap: 7px; padding: 17px 20px; }.promise-bar i { display: none; }
  .section { padding: 82px 18px; }.section-heading { display: block; }.section-heading .eyebrow { margin-bottom: 22px; }.section-heading > p:last-child { margin-top: 22px; }.section h2 { font-size: clamp(41px, 12vw, 58px); }
  .moments { padding-bottom: 70px; }.moment-grid { gap: 13px; }.moment-card { min-height: 430px; padding: 22px; }.moment-top { margin-bottom: 36px; }
  .category-band { padding: 21px 0; }.category-track { justify-content: flex-start; padding-left: 20px; }
  .steps li { padding: 27px 0 34px; }.steps li > span { height: 38px; width: 38px; }
  .statement, .demo-callout, .final-cta { border-radius: 24px; max-width: calc(100% - 24px); }.statement-points { grid-template-columns: 1fr; }
  .demo-callout { align-items: start; grid-template-columns: 1fr; padding: 38px 24px; }.button-secondary { width: 100%; }
  .faq { gap: 44px; }.faq summary { font-size: 15px; }.faq details p { margin-right: 0; }
  .final-cta { align-items: start; border-radius: 24px 24px 0 0; grid-template-columns: 1fr; padding: 54px 25px; }.final-cta h2 { font-size: clamp(49px, 14vw, 68px); }.button-primary { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding: 40px 20px; }.site-footer > div { order: 3; }.site-footer small { order: 4; }
  .legal-hero { padding: 62px 20px 70px; }.legal-hero h1 { font-size: clamp(47px, 14vw, 65px); }
  .legal-layout { display: block; padding: 54px 20px 76px; }.legal-nav { margin-bottom: 50px; position: static; }.legal-section { padding: 30px 0 35px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
