@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/dm-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
}

:root {
  --paper: #f3f4ee;
  --paper-deep: #e8ece3;
  --white: #ffffff;
  --ink: #17241f;
  --forest: #173d31;
  --forest-deep: #102c23;
  --lime: #dfff45;
  --lime-soft: #eef8c8;
  --orange: #ff9a6c;
  --blue: #dbe6ff;
  --muted: #647069;
  --line: #d9ded6;
  --line-dark: rgba(255, 255, 255, .16);
  --shadow: 0 28px 80px rgba(30, 53, 42, .12);
  --shadow-device: 0 36px 60px rgba(9, 30, 23, .25), 0 2px 0 rgba(255, 255, 255, .32) inset;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #789500; outline-offset: 4px; }
::selection { background: var(--lime); color: var(--forest-deep); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  background: var(--lime); color: var(--forest-deep); padding: 10px 14px;
  border-radius: 10px; font-weight: 800;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .14em;
  line-height: 1.2; text-transform: uppercase;
}
.eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); content: ''; }
.eyebrow.on-dark { color: #c3d2ca; }
.eyebrow.on-dark::before { background: var(--lime); }
.section-heading { max-width: 720px; }
.section-heading h2, .page-hero h1, .article h1 {
  margin: 0; font-family: Manrope, Arial, sans-serif; font-weight: 700;
  letter-spacing: -.055em; line-height: .99;
}
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.9rem); }
.section-heading p {
  max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.6;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30; padding: 18px 0;
  border-bottom: 1px solid transparent; transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.site-header.is-scrolled {
  background: rgba(243, 244, 238, .9); backdrop-filter: blur(18px);
  border-bottom-color: var(--line); box-shadow: 0 5px 22px rgba(24, 45, 35, .04);
}
.nav-wrap { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: Manrope, sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -.055em; }
.brand-mark {
  display: inline-flex; width: 25px; height: 25px; align-items: flex-end; justify-content: center; gap: 2px;
  padding: 5px; border-radius: 8px; background: var(--forest-deep);
}
.brand-mark i { display: block; width: 3px; border-radius: 3px; background: var(--lime); }
.brand-mark i:nth-child(1) { height: 7px; }.brand-mark i:nth-child(2) { height: 14px; }.brand-mark i:nth-child(3) { height: 10px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #4e5a53; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--forest); }
.nav-cta, .button-primary, .button-secondary, .button-dark {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; gap: 10px;
  padding: 0 18px; border: 0; border-radius: 14px; font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-cta { min-height: 40px; border-radius: 12px; background: var(--forest); color: white; }
.nav-cta:hover, .button-primary:hover, .button-dark:hover { transform: translateY(-2px); box-shadow: 0 13px 22px rgba(23, 61, 49, .18); }
.button-primary { background: var(--lime); color: var(--forest-deep); }
.button-secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, .52); color: var(--forest); }
.button-secondary:hover { transform: translateY(-2px); border-color: #afbbb1; background: var(--white); }
.button-dark { background: var(--forest); color: white; }
.button-arrow { font-size: 18px; line-height: 1; transition: transform .2s ease; }
.button-primary:hover .button-arrow, .button-dark:hover .button-arrow { transform: translateX(3px); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--forest); }
.menu-toggle span { display: block; width: 17px; height: 1.5px; margin: 4px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(5.5px) rotate(45deg); }.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu { display: none; }

/* Hero */
.hero { overflow: hidden; padding: 42px 0 62px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); align-items: center; gap: 28px; min-height: 638px; }
.hero-copy { position: relative; z-index: 2; padding: 38px 0 30px; }
.hero-copy h1 {
  max-width: 700px; margin: 0; font-family: Manrope, Arial, sans-serif; font-size: clamp(3.35rem, 6.6vw, 6.35rem); font-weight: 700; letter-spacing: -.075em; line-height: .91;
}
.hero-copy h1 em { font-style: normal; color: var(--forest); }
.hero-copy .lede { max-width: 510px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.55vw, 1.22rem); line-height: 1.57; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 32px 0 21px; }
.trust-line { display: flex; align-items: center; gap: 9px; margin: 0; color: #647069; font-size: 13px; }
.trust-line svg { flex: 0 0 auto; color: var(--forest); }
.hero-visual { position: relative; min-height: 628px; }
.hero-stage {
  position: absolute; top: 5px; right: min(-3vw, -28px); bottom: 0; left: 0; overflow: hidden;
  border-radius: 48px 0 0 48px; background: var(--forest); isolation: isolate;
}
.hero-stage::before, .hero-stage::after { position: absolute; z-index: -1; border-radius: 50%; content: ''; }
.hero-stage::before { width: 700px; height: 700px; right: -280px; bottom: -420px; border: 1px solid rgba(223,255,69,.45); box-shadow: 0 0 0 45px rgba(223,255,69,.04), 0 0 0 90px rgba(223,255,69,.04), 0 0 0 135px rgba(223,255,69,.03); }
.hero-stage::after { width: 330px; height: 330px; left: -130px; top: -168px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 116px rgba(255,255,255,.018); }
.stage-label { position: absolute; top: 34px; left: 40px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.screen-demo-label { color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.hero-demo-label { position: absolute; z-index: 2; left: 40px; bottom: 27px; }.card-demo-label { position: relative; z-index: 1; display: block; margin-top: 17px; }
.phone { position: absolute; overflow: hidden; border: 7px solid #0d1e18; border-radius: 35px; background: #0d1e18; box-shadow: var(--shadow-device); }
.phone::before { position: absolute; z-index: 2; top: 9px; left: 50%; width: 32%; height: 18px; border-radius: 20px; background: #0d1e18; content: ''; transform: translateX(-50%); }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.hero-phone { width: min(294px, 48%); aspect-ratio: 1179 / 2556; top: 66px; left: 23%; transform: rotate(-4deg); }
.glance-card { position: absolute; z-index: 3; right: 28px; bottom: 53px; width: 202px; padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(18, 50, 40, .84); box-shadow: 0 16px 35px rgba(0,0,0,.18); backdrop-filter: blur(12px); color: white; }
.glance-card .glance-dot { width: 8px; height: 8px; margin-bottom: 13px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(223,255,69,.12); }
.glance-card strong { display: block; font-family: Manrope, sans-serif; font-size: 17px; letter-spacing: -.035em; }.glance-card span { display: block; margin-top: 4px; color: #c0cec7; font-size: 12px; line-height: 1.42; }
.stage-rule { position: absolute; right: 36px; top: 57px; width: 106px; height: 1px; background: rgba(255,255,255,.24); }
.stage-rule::after { position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); content: ''; }
.hero-caption { position: absolute; right: 38px; top: 75px; max-width: 118px; color: #bac9c1; font-size: 11px; line-height: 1.38; }

/* Marquee */
.signal-strip { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #ebeee7; }
.signal-row { display: flex; width: max-content; animation: drift 28s linear infinite; }
.signal-row span { display: inline-flex; align-items: center; gap: 20px; padding: 17px 25px; color: #56625a; font-family: Manrope, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: -.015em; white-space: nowrap; }
.signal-row span::after { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); content: ''; }
@keyframes drift { to { transform: translateX(-50%); } }

/* Problem */
.problem { padding: 142px 0; }
.problem-layout { display: grid; grid-template-columns: .93fr 1.07fr; gap: clamp(34px, 8vw, 130px); align-items: end; }
.problem-statement { max-width: 445px; }
.problem-statement h2 { font-family: Manrope, sans-serif; font-size: clamp(2.7rem, 5vw, 5.15rem); font-weight: 700; letter-spacing: -.065em; line-height: .94; }
.problem-statement h2 span { color: var(--muted); }
.problem-statement p { max-width: 420px; margin: 29px 0 0; color: var(--muted); font-size: 17px; line-height: 1.58; }
.contrast-board { overflow: hidden; border-radius: var(--radius-xl); background: var(--white); box-shadow: 0 16px 43px rgba(34, 58, 45, .06); }
.contrast-intro { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 30px 30px 25px; border-bottom: 1px solid var(--line); }.contrast-intro strong { font-family: Manrope, sans-serif; font-size: 21px; letter-spacing: -.045em; }.contrast-intro span { color: var(--muted); font-size: 13px; text-align: right; }
.contrast-columns { display: grid; grid-template-columns: 1fr 1fr; }
.contrast-column { min-height: 279px; padding: 29px 30px; }.contrast-column + .contrast-column { border-left: 1px solid var(--line); background: #f8f9f6; }
.contrast-column p { margin: 0 0 22px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.contrast-column ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }.contrast-column li { display: flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -.025em; }.contrast-column li::before { width: 8px; height: 8px; border-radius: 50%; background: #bbc4bb; content: ''; }.contrast-column:nth-child(2) li::before { background: var(--lime); box-shadow: 0 0 0 4px var(--lime-soft); }
.contrast-foot { padding: 18px 30px; background: var(--forest); color: white; font-size: 15px; line-height: 1.4; }.contrast-foot strong { color: var(--lime); }

/* Method */
.method { position: relative; overflow: hidden; padding: 130px 0 144px; background: var(--forest); color: white; }
.method::before { position: absolute; width: 830px; height: 830px; right: -535px; top: -380px; border: 1px solid rgba(223,255,69,.23); border-radius: 50%; box-shadow: 0 0 0 80px rgba(223,255,69,.03), 0 0 0 160px rgba(223,255,69,.025); content: ''; }
.method-head { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .65fr); gap: 60px; align-items: end; }.method-head h2 { margin: 0; max-width: 670px; font-family: Manrope, sans-serif; font-size: clamp(2.55rem, 5vw, 5rem); font-weight: 700; letter-spacing: -.065em; line-height: .96; }.method-head p { max-width: 385px; margin: 0 0 6px; color: #bbccc4; font-size: 17px; line-height: 1.58; }
.method-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 67px; }
.method-card { position: relative; min-height: 544px; overflow: hidden; padding: 24px; border: 1px solid var(--line-dark); border-radius: 28px; background: rgba(255,255,255,.055); }.method-card:nth-child(2) { background: rgba(223,255,69,.09); }.method-card::after { position: absolute; z-index: 0; right: -35px; bottom: -94px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ''; }
.method-number { position: relative; z-index: 1; display: block; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .15em; }.method-card h3 { position: relative; z-index: 1; max-width: 240px; margin: 25px 0 9px; font-family: Manrope, sans-serif; font-size: 27px; font-weight: 700; letter-spacing: -.05em; line-height: 1.04; }.method-card p { position: relative; z-index: 1; max-width: 245px; margin: 0; color: #c3d0ca; font-size: 14px; line-height: 1.5; }.method-phone { bottom: -126px; right: 24px; width: 185px; aspect-ratio: 1179 / 2556; }.method-card:nth-child(2) .method-phone { right: 17%; transform: rotate(4deg); }.method-card:nth-child(3) .method-phone { right: 13%; transform: rotate(-4deg); }

/* Benefits */
.benefits { padding: 143px 0 132px; }.benefit-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 61px; }.benefit { min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 23px; background: rgba(255,255,255,.4); transition: transform .25s ease, border-color .25s ease, background .25s ease; }.benefit:hover { transform: translateY(-4px); border-color: #bfc9be; background: var(--white); }.benefit:nth-child(1) { grid-column: span 5; background: var(--lime); border-color: var(--lime); }.benefit:nth-child(2) { grid-column: span 3; }.benefit:nth-child(3) { grid-column: span 4; }.benefit:nth-child(4) { grid-column: span 4; }.benefit:nth-child(5) { grid-column: span 8; background: var(--forest); border-color: var(--forest); color: white; }.benefit-icon { display: grid; width: 39px; height: 39px; margin-bottom: 31px; place-items: center; border-radius: 13px; background: rgba(23,61,49,.1); color: var(--forest); }.benefit:nth-child(5) .benefit-icon { background: rgba(255,255,255,.1); color: var(--lime); }.benefit h3 { margin: 0 0 7px; font-family: Manrope, sans-serif; font-size: 20px; letter-spacing: -.045em; }.benefit p { max-width: 385px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.48; }.benefit:nth-child(1) p { color: #42522c; }.benefit:nth-child(5) p { color: #bdcdc5; }

/* Product gallery */
.product-showcase { overflow: hidden; padding: 0 0 145px; }.showcase-stage { position: relative; overflow: hidden; min-height: 660px; padding: 78px 65px; border-radius: var(--radius-xl); background: #e3e8df; }.showcase-stage::before { position: absolute; width: 770px; height: 770px; left: 50%; top: 80px; border: 1px solid rgba(23,61,49,.11); border-radius: 50%; box-shadow: 0 0 0 80px rgba(23,61,49,.035), 0 0 0 160px rgba(23,61,49,.02); content: ''; transform: translateX(-50%); }.showcase-copy { position: relative; z-index: 1; max-width: 385px; }.showcase-copy h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.5rem, 4.5vw, 4.35rem); font-weight: 700; letter-spacing: -.065em; line-height: .97; }.showcase-copy p { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.55; }.showcase-rule { width: 44px; height: 4px; margin-top: 29px; border-radius: 4px; background: var(--lime); }.gallery-phone { z-index: 1; bottom: -181px; width: 277px; aspect-ratio: 1179 / 2556; }.gallery-phone.one { left: 43%; transform: rotate(-9deg); }.gallery-phone.two { left: 62%; bottom: -105px; transform: rotate(5deg); }.gallery-phone.three { left: 80%; transform: rotate(14deg); }.showcase-note { position: absolute; z-index: 2; right: 40px; top: 43px; display: flex; align-items: center; gap: 8px; color: #445249; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.showcase-note span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* Philosophy */
.philosophy { padding: 0 0 142px; }.philosophy-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); gap: 38px; padding: clamp(33px, 6vw, 74px); border-radius: var(--radius-xl); background: var(--lime); }.philosophy-card h2 { max-width: 650px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.5rem, 4.8vw, 4.8rem); font-weight: 700; letter-spacing: -.068em; line-height: .97; }.philosophy-copy { align-self: end; }.philosophy-copy p { margin: 0; color: #40522d; font-size: 16px; line-height: 1.58; }.philosophy-copy a { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; border-bottom: 1px solid rgba(23,61,49,.38); color: var(--forest-deep); font-size: 14px; font-weight: 800; padding-bottom: 3px; }

/* Panel testimonials */
.testimonials { padding: 0 0 142px; }
.testimonials-head { display: grid; grid-template-columns: minmax(0, .88fr) minmax(280px, .6fr); gap: 42px; align-items: end; }
.testimonials-head h2 { max-width: 670px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.45rem, 4.8vw, 4.75rem); font-weight: 700; letter-spacing: -.067em; line-height: .97; }
.testimonials-head p:not(.eyebrow) { max-width: 355px; margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.quote-grid { display: grid; grid-template-columns: 1.02fr .98fr .98fr; gap: 16px; margin-top: 50px; }
.quote-card { display: flex; min-height: 315px; flex-direction: column; justify-content: space-between; padding: 27px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.52); }
.quote-card:nth-child(1) { background: var(--forest); border-color: var(--forest); color: white; }
.quote-mark { color: var(--lime); font-family: Georgia, serif; font-size: 54px; line-height: .7; }
.quote-card blockquote { margin: 17px 0 20px; font-family: Manrope, sans-serif; font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.14; }
.quote-card p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.quote-card:nth-child(1) p { color: #bfd0c8; }
.panel-card { justify-content: flex-start; gap: 0; }.panel-index { display: block; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .16em; }.panel-card h3 { max-width: 285px; margin: auto 0 15px; font-family: Manrope, sans-serif; font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 650; letter-spacing: -.052em; line-height: 1.12; }.panel-card p { max-width: 295px; font-size: 13px; font-weight: 500; line-height: 1.55; }.panel-card:nth-child(1) p { color: #bfd0c8; }
.panel-method { display: flex; align-items: center; gap: 8px; margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.panel-method::before { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); content: ''; }

/* Editorial + changelog */
.editorial { padding: 0 0 142px; }.editorial-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; margin-top: 52px; }.journal-card, .update-card { border-radius: var(--radius-lg); }.journal-card { min-height: 390px; padding: 34px; background: var(--white); border: 1px solid var(--line); }.journal-card small, .update-card small { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.journal-card h3 { max-width: 480px; margin: 80px 0 15px; font-family: Manrope, sans-serif; font-size: clamp(1.9rem, 3vw, 2.7rem); letter-spacing: -.06em; line-height: 1.03; }.journal-card p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.55; }.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; color: var(--forest); font-size: 14px; font-weight: 800; }.text-link span { font-size: 18px; transition: transform .2s ease; }.text-link:hover span { transform: translateX(3px); }.update-card { position: relative; overflow: hidden; padding: 34px; background: var(--forest); color: white; }.update-card::after { position: absolute; width: 320px; height: 320px; right: -130px; bottom: -185px; border: 1px solid rgba(223,255,69,.28); border-radius: 50%; box-shadow: 0 0 0 45px rgba(223,255,69,.04); content: ''; }.update-card small { color: #b9cac2; }.update-card h3 { position: relative; z-index: 1; max-width: 345px; margin: 30px 0 12px; font-family: Manrope, sans-serif; font-size: clamp(1.85rem, 3vw, 2.6rem); letter-spacing: -.06em; line-height: 1.02; }.update-card p { position: relative; z-index: 1; max-width: 350px; margin: 0; color: #c0d0c8; line-height: 1.55; }.update-card .text-link { position: relative; z-index: 1; color: var(--lime); }

/* FAQ */
.faq { padding: 0 0 136px; }.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(42px, 9vw, 142px); align-items: start; }.faq-intro { position: sticky; top: 88px; }.faq-intro h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.4rem, 4.5vw, 4.5rem); letter-spacing: -.07em; line-height: .95; }.faq-intro p { margin: 21px 0 0; color: var(--muted); }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; list-style: none; font-family: Manrope, sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.038em; cursor: pointer; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); content: '+'; font-family: DM Sans, sans-serif; font-size: 20px; font-weight: 400; line-height: 23px; text-align: center; transition: transform .22s ease, background .22s ease; }.faq-list details[open] summary::after { background: var(--lime); border-color: var(--lime); transform: rotate(45deg); }.faq-answer { max-width: 640px; padding: 0 44px 24px 0; color: var(--muted); line-height: 1.6; }.faq-answer p { margin: 0; }

/* CTA + footer */
.final-cta { padding: 0 0 34px; }.final-cta-box { position: relative; overflow: hidden; padding: clamp(38px, 7vw, 82px); border-radius: var(--radius-xl); background: var(--forest-deep); color: white; }.final-cta-box::before, .final-cta-box::after { position: absolute; border-radius: 50%; content: ''; }.final-cta-box::before { width: 560px; height: 560px; right: -260px; top: -415px; border: 1px solid rgba(223,255,69,.42); box-shadow: 0 0 0 60px rgba(223,255,69,.035), 0 0 0 120px rgba(223,255,69,.025); }.final-cta-box::after { width: 210px; height: 210px; left: -120px; bottom: -145px; border: 1px solid rgba(255,255,255,.16); }.final-cta-box h2 { position: relative; z-index: 1; max-width: 790px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.6rem, 5.6vw, 5.5rem); letter-spacing: -.075em; line-height: .93; }.final-cta-box p { position: relative; z-index: 1; max-width: 490px; margin: 23px 0 29px; color: #c0d0c8; font-size: 17px; line-height: 1.55; }.final-cta-box .button-primary { position: relative; z-index: 1; }.final-cta-alt { position: relative; z-index: 1; display: inline-block; margin: 16px 0 0 4px; color: #dfe9e3; font-size: 15px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }.final-cta-alt:hover { color: var(--lime); }.site-footer { padding: 47px 0 32px; }.footer-top { display: grid; grid-template-columns: 1.2fr repeat(3, .5fr); gap: 24px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }.footer-copy p { max-width: 290px; margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }.footer-links { display: grid; align-content: start; gap: 9px; }.footer-links strong { margin-bottom: 4px; color: #59655e; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }.footer-links a { color: var(--ink); font-size: 14px; font-weight: 600; }.footer-links a:hover { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; color: var(--muted); font-size: 12px; }.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* Inner pages */
.page-hero { padding: 82px 0 86px; }.page-hero .eyebrow { margin-bottom: 22px; }.page-hero h1 { max-width: 860px; font-size: clamp(3.45rem, 7vw, 7.4rem); }.page-hero .lede { max-width: 605px; margin: 27px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }.page-hero .page-hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 29px; }.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-size: 12px; font-weight: 700; }.page-hero.lime { position: relative; overflow: hidden; padding: 85px 0 92px; background: var(--lime); }.page-hero.lime::after { position: absolute; width: 610px; height: 610px; right: -294px; bottom: -450px; border: 1px solid rgba(23,61,49,.24); border-radius: 50%; box-shadow: 0 0 0 70px rgba(23,61,49,.04); content: ''; }
.beta-choice { padding: 58px 0 120px; }.beta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.beta-card { display: flex; flex-direction: column; gap: 13px; padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.55); }.beta-card h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.7rem); letter-spacing: -.055em; line-height: 1; }.beta-card > p { max-width: 440px; margin: 0; color: var(--muted); line-height: 1.55; }.beta-card ol { display: grid; gap: 6px; margin: 4px 0 10px; padding-left: 22px; color: #45534a; font-size: 14px; line-height: 1.5; }.beta-actions { display: grid; gap: 10px; justify-items: start; margin-top: auto; }.beta-actions .button-primary, .beta-actions .button-dark, .beta-actions .button-secondary { text-align: left; }.beta-more { margin-top: 4px; color: var(--forest); font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }.beta-note { max-width: 640px; margin: 36px auto 0; color: var(--muted); font-size: 14px; line-height: 1.6; text-align: center; }.beta-note a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }.timeline-section { padding: 50px 0 135px; }.timeline { max-width: 880px; margin: 0 auto; }.timeline-intro { max-width: 660px; margin-bottom: 55px; }.timeline-intro h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.2rem, 4.1vw, 3.9rem); letter-spacing: -.06em; line-height: .99; }.timeline-intro p { margin: 18px 0 0; color: var(--muted); line-height: 1.6; }.timeline-item { display: grid; grid-template-columns: 145px 1fr; gap: 32px; padding: 0 0 38px; position: relative; }.timeline-item:not(:last-child)::before { position: absolute; top: 30px; bottom: -4px; left: 6px; width: 1px; background: var(--line); content: ''; }.timeline-date { position: relative; z-index: 1; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }.timeline-date::before { display: inline-block; width: 13px; height: 13px; margin-right: 14px; border: 3px solid var(--paper); border-radius: 50%; background: var(--forest); content: ''; vertical-align: -1px; }.timeline-item.current .timeline-date::before { background: var(--lime); box-shadow: 0 0 0 1px var(--forest); }.timeline-content { padding: 26px 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.48); }.timeline-content h3 { margin: 0 0 9px; font-family: Manrope, sans-serif; font-size: 22px; letter-spacing: -.05em; }.timeline-content p { max-width: 610px; margin: 0; color: var(--muted); line-height: 1.55; }.timeline-content ul { display: grid; gap: 7px; margin: 17px 0 0; padding: 0; list-style: none; }.timeline-content li { position: relative; padding-left: 17px; color: #45534a; font-size: 14px; }.timeline-content li::before { position: absolute; left: 0; top: .52em; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); content: ''; }
.vision { padding: 0 0 132px; }.vision-box { padding: clamp(32px, 5vw, 60px); border-radius: var(--radius-xl); background: var(--forest); color: white; }.vision-box h2 { max-width: 650px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.3rem, 4.5vw, 4.4rem); letter-spacing: -.065em; line-height: .97; }.vision-box p { max-width: 570px; margin: 24px 0 0; color: #bdcdc5; font-size: 17px; line-height: 1.58; }
.support-safety { padding: 0 0 132px; }.support-safety-card { max-width: 940px; padding: clamp(30px, 5vw, 57px); border: 1px solid #d5ddca; border-radius: var(--radius-xl); background: #edf2df; }.support-safety-card h2 { max-width: 600px; margin: 0; font-family: Manrope, sans-serif; font-size: clamp(2.2rem, 4.2vw, 4.1rem); letter-spacing: -.062em; line-height: .98; }.support-safety-card p:not(.eyebrow) { max-width: 655px; margin: 21px 0 0; color: #4b5a4d; font-size: 16px; line-height: 1.6; }.support-safety-card a { display: inline-flex; margin-top: 22px; border-bottom: 1px solid rgba(23,61,49,.35); color: var(--forest); font-size: 14px; font-weight: 800; padding-bottom: 3px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; padding: 0 0 132px; }.journal-grid .journal-card { display: flex; min-height: 350px; flex-direction: column; }.journal-grid .journal-card h3 { margin: auto 0 14px; font-size: 26px; }.journal-grid .text-link { margin-top: 23px; }.article { width: min(calc(100% - 48px), 750px); margin: 0 auto; padding: 70px 0 130px; }.article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }.article h1 { font-size: clamp(3rem, 6vw, 5.7rem); }.article .intro { margin: 29px 0 55px; color: var(--muted); font-size: 20px; line-height: 1.55; }.article .rule { width: 48px; height: 4px; margin: 0 0 45px; border-radius: 4px; background: var(--lime); }.article h2 { margin: 46px 0 14px; font-family: Manrope, sans-serif; font-size: 29px; letter-spacing: -.05em; line-height: 1.08; }.article p, .article li { color: #47554c; font-size: 17px; line-height: 1.72; }.article p { margin: 0 0 18px; }.article ul { margin: 0 0 24px; padding-left: 21px; }.article li { margin-bottom: 8px; }.article blockquote { margin: 38px 0; padding: 28px; border-left: 4px solid var(--lime); border-radius: 0 19px 19px 0; background: var(--white); font-family: Manrope, sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -.045em; line-height: 1.25; }.article-end { margin-top: 56px; padding: 26px; border-radius: 20px; background: var(--forest); color: white; }.article-end h2 { margin: 0 0 8px; font-size: 24px; }.article-end p { margin: 0; color: #c4d2cb; font-size: 15px; line-height: 1.55; }.article-end a { display: inline-flex; margin-top: 17px; color: var(--lime); font-weight: 800; }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.privacy { max-width: 790px; padding-bottom: 130px; }.privacy h2 { margin-top: 49px; }.privacy .privacy-lead { margin: 0 0 38px; padding: 27px; border-radius: 20px; background: var(--lime); color: #344a28; font-size: 18px; font-weight: 600; line-height: 1.52; }.privacy strong { color: var(--forest); }.privacy a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* 404 */
.not-found-page { min-height: 100vh; background: var(--forest); color: white; }.not-found { display: flex; width: min(calc(100% - 48px), 760px); min-height: 100vh; margin: 0 auto; padding: clamp(34px, 8vw, 92px) 0; flex-direction: column; align-items: flex-start; justify-content: center; }.not-found .brand { position: absolute; top: 34px; color: white; }.not-found .brand-mark { background: rgba(255,255,255,.12); }.not-found .eyebrow { color: var(--lime); }.not-found h1 { max-width: 650px; margin: 18px 0 0; font-size: clamp(3.4rem, 8vw, 7rem); }.not-found .lede { max-width: 510px; margin: 23px 0 0; color: #c1d0c8; font-size: 18px; line-height: 1.6; }.not-found .button-secondary { border-color: rgba(255,255,255,.32); color: white; }.not-found .button-secondary:hover { border-color: var(--lime); background: rgba(223,255,69,.1); }

/* Reveal */
.reveal { opacity: 1; transform: none; }.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }.js .reveal.in-view { opacity: 1; transform: none; }.reveal.delay-1 { transition-delay: .1s; }.reveal.delay-2 { transition-delay: .18s; }

@media (max-width: 960px) {
  .desktop-nav, .nav-wrap > .nav-cta { display: none; }.menu-toggle { display: block; }.mobile-menu { position: fixed; z-index: 25; inset: 78px 0 auto; padding: 18px 24px 25px; border-bottom: 1px solid var(--line); background: rgba(243,244,238,.98); box-shadow: 0 12px 30px rgba(28,47,38,.09); }.mobile-menu.is-open { display: grid; gap: 4px; }.mobile-menu a { padding: 12px 2px; color: var(--forest); font-family: Manrope, sans-serif; font-weight: 700; }.mobile-menu .button-dark { margin-top: 11px; }.hero-grid { grid-template-columns: 1fr; gap: 12px; }.hero-copy { padding: 20px 0 11px; }.hero-visual { min-height: 530px; max-width: 720px; width: calc(100% + 24px); }.hero-stage { left: 0; right: 0; border-radius: 40px 0 0 40px; }.hero-phone { left: 27%; top: 54px; width: min(270px, 42vw); }.method-grid { grid-template-columns: repeat(3, minmax(215px, 1fr)); overflow-x: auto; padding-bottom: 8px; }.method-card { min-width: 260px; }.showcase-stage { padding: 53px 42px; }.gallery-phone.one { left: 38%; }.gallery-phone.two { left: 61%; }.gallery-phone.three { display: none; }.benefit:nth-child(1) { grid-column: span 6; }.benefit:nth-child(2), .benefit:nth-child(3) { grid-column: span 3; }.benefit:nth-child(4) { grid-column: span 5; }.benefit:nth-child(5) { grid-column: span 7; }.footer-top { grid-template-columns: 1.2fr .7fr .7fr; }.footer-links:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--max)); }.beta-grid { grid-template-columns: 1fr; }.beta-actions { justify-items: stretch; }.site-header { padding: 15px 0; }.hero { padding-top: 22px; padding-bottom: 44px; }.hero-copy h1 { font-size: clamp(3.15rem, 14vw, 4.8rem); }.hero-copy .lede { margin-top: 23px; font-size: 16px; }.hero-actions { margin-top: 27px; }.hero-actions .button-primary, .hero-actions .button-secondary { width: 100%; }.hero-visual { min-height: 477px; width: calc(100% + 16px); }.hero-stage { border-radius: 35px 0 0 35px; }.stage-label { left: 25px; top: 25px; }.hero-demo-label { left: 25px; bottom: 20px; }.hero-phone { top: 59px; left: 25%; width: min(236px, 54vw); }.glance-card { right: 14px; bottom: 32px; width: 180px; padding: 15px; }.stage-rule, .hero-caption { display: none; }.problem, .benefits { padding: 89px 0; }.problem-layout, .method-head, .philosophy-card, .faq-layout, .editorial-grid { grid-template-columns: 1fr; }.problem-layout { gap: 43px; }.problem-statement h2 { margin: 0; }.contrast-intro { align-items: start; flex-direction: column; padding: 24px 22px 20px; }.contrast-intro span { text-align: left; }.contrast-columns { grid-template-columns: 1fr; }.contrast-column { min-height: auto; padding: 24px 22px; }.contrast-column + .contrast-column { border-top: 1px solid var(--line); border-left: 0; }.contrast-foot { padding: 17px 22px; }.method { padding: 85px 0 94px; }.method-head { gap: 23px; }.method-head p { font-size: 16px; }.method-grid { margin-top: 43px; margin-right: -16px; }.method-card { min-height: 505px; }.benefit-grid { grid-template-columns: 1fr; margin-top: 39px; }.benefit, .benefit:nth-child(n) { grid-column: auto; min-height: auto; }.benefit-icon { margin-bottom: 24px; }.product-showcase { padding-bottom: 88px; }.showcase-stage { min-height: 571px; padding: 37px 25px; border-radius: 28px; }.showcase-copy { max-width: 310px; }.showcase-copy p { font-size: 15px; }.showcase-note { top: auto; right: 25px; bottom: 21px; }.gallery-phone { width: 205px; }.gallery-phone.one { left: 25%; bottom: -136px; }.gallery-phone.two { left: 53%; bottom: -87px; }.philosophy { padding-bottom: 88px; }.philosophy-card { gap: 27px; padding: 32px 25px; border-radius: 28px; }.editorial { padding-bottom: 87px; }.editorial-grid { margin-top: 34px; }.journal-card, .update-card { min-height: 320px; padding: 26px; }.journal-card h3 { margin-top: 62px; font-size: 28px; }.faq { padding-bottom: 86px; }.faq-intro { position: static; }.faq-list { margin-top: 28px; }.faq-list summary { padding: 19px 0; font-size: 16px; }.faq-answer { padding-right: 8px; }.final-cta-box { padding: 37px 25px; border-radius: 28px; }.final-cta-box p { font-size: 16px; }.final-cta-box .button-primary { width: 100%; }.footer-top { grid-template-columns: 1fr 1fr; gap: 31px 18px; }.footer-copy { grid-column: 1 / -1; }.footer-links:last-child { grid-column: auto; }.footer-bottom { align-items: start; flex-direction: column; gap: 9px; }.page-hero { padding: 51px 0 59px; }.page-hero .lede { font-size: 16px; }.timeline-section { padding: 15px 0 90px; }.timeline-item { grid-template-columns: 1fr; gap: 12px; }.timeline-item:not(:last-child)::before { display: none; }.timeline-content { padding: 21px; }.timeline-date::before { margin-right: 9px; }.vision { padding-bottom: 84px; }.journal-grid { grid-template-columns: 1fr; padding-bottom: 86px; }.article { width: min(calc(100% - 32px), 750px); padding: 46px 0 87px; }.article .intro { margin-bottom: 38px; font-size: 18px; }.article h2 { font-size: 26px; }.article p, .article li { font-size: 16px; }.article blockquote { margin: 31px 0; padding: 23px; font-size: 21px; }.privacy { padding-bottom: 86px; }
}

@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; }
}

@media (max-width: 700px) {
  .testimonials { padding-bottom: 88px; }
  .testimonials-head { grid-template-columns: 1fr; gap: 19px; }
  .quote-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .quote-card { min-height: 240px; padding: 24px; }
  .quote-card blockquote { font-size: 23px; }
}
