/* ============================================================
   Locto · Landing page — LIGHT system
   Warm-bone canvas, white surfaces, soft teal accents. No dark panels.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text-primary); overflow-x: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--teal-100); color: var(--teal-900); }

:root {
  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 64px);
  --teal-glow: radial-gradient(60% 60% at 50% 42%, rgba(15,110,86,0.10) 0%, rgba(15,110,86,0) 70%);
}

/* ---------- Shared ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 132px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }
.section--tint { background: var(--surface); border-block: 0.5px solid var(--border); }

.eyebrow {
  font-size: var(--fs-tab); font-weight: var(--fw-semibold);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--brand); opacity: 0.5; }
.eyebrow--center { justify-content: center; }

.display {
  font-family: 'Inter Display', var(--font-sans);
  font-weight: var(--fw-light); letter-spacing: -0.03em; line-height: 1.03;
  color: var(--text-primary); text-wrap: balance;
}
.h-xl { font-size: clamp(44px, 7.5vw, 88px); }
.h-lg { font-size: clamp(34px, 5vw, 60px); }
.h-md { font-size: clamp(26px, 3.2vw, 40px); }
.display em { font-style: normal; color: var(--brand); }

.lede {
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55;
  color: var(--text-secondary); font-weight: var(--fw-regular);
  max-width: 30ch; text-wrap: pretty;
}
.lede--center { margin-inline: auto; text-align: center; }

.section-head { max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .display { margin: 16px 0 0; }
.section-head .lede { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-sans); font-size: 15px; font-weight: var(--fw-medium);
  letter-spacing: -0.01em; border: none; border-radius: var(--radius-pill);
  padding: 14px 26px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 1px 2px rgba(4,52,44,0.18), 0 8px 22px rgba(15,110,86,0.20);
}
.btn--primary:hover { background: var(--teal-800); transform: translateY(-2px); box-shadow: 0 2px 4px rgba(4,52,44,0.2), 0 14px 32px rgba(15,110,86,0.28); }
.btn--ghost { background: transparent; color: var(--text-primary); box-shadow: inset 0 0 0 1px var(--border-strong); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--brand); color: var(--brand); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--lg { padding: 17px 32px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 18px var(--gut);
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav.is-stuck { background: rgba(250,248,242,0.82); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); box-shadow: 0 1px 0 var(--border); padding-block: 12px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; }
.brand-lockup .mark { width: 26px; height: 26px; color: var(--brand); }
.brand-lockup .word { font-family: 'Inter Display', var(--font-sans); font-size: 24px; font-weight: var(--fw-medium); letter-spacing: -0.04em; color: var(--brand); }
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link { font-size: 14px; font-weight: var(--fw-medium); color: var(--text-secondary); padding: 8px 14px; border-radius: var(--radius-pill); transition: color var(--dur-fast), background var(--dur-fast); }
.nav__link:hover { color: var(--text-primary); background: rgba(15,110,86,0.06); }
.nav__cta { margin-left: 8px; }
@media (max-width: 720px) { .nav__links .nav__link { display: none; } }

/* ============================================================
   HERO — light
   ============================================================ */
.hero { position: relative; padding-top: clamp(132px, 17vh, 210px); padding-bottom: clamp(72px, 11vh, 140px); overflow: hidden; }
.hero__rings { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0; }
.hero__rings span { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(15,110,86,0.1); }
.hero__glow { position: absolute; right: 6%; top: 36%; width: 560px; height: 560px; transform: translateY(-40%); background: radial-gradient(circle, rgba(15,110,86,0.12) 0%, rgba(15,110,86,0) 62%); pointer-events: none; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; text-align: center; } .hero__copy .eyebrow { justify-content: center; } .hero__cta, .hero__meta { justify-content: center; } .hero__sub { margin-inline: auto; } }
.hero__copy h1 { font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-light); font-size: clamp(44px, 6.6vw, 80px); line-height: 1.0; letter-spacing: -0.035em; margin: 18px 0 0; color: var(--text-primary); text-wrap: balance; }
.hero__copy h1 em { font-style: normal; color: var(--brand); }
.hero__sub { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; color: var(--text-secondary); margin: 20px 0 0; max-width: 26ch; }
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__meta { margin-top: 22px; display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--text-tertiary); }
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

.hero__stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.hero__pedestal { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 320px; height: 320px; border-radius: 50%; background: var(--teal-glow); z-index: 0; }
.menubar { position: absolute; top: 4px; right: 6%; display: flex; align-items: center; gap: 14px; padding: 6px 14px; background: rgba(255,255,255,0.7); border: 0.5px solid var(--border); border-radius: var(--radius-sm); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 12px; color: var(--text-tertiary); box-shadow: 0 4px 14px rgba(4,52,44,0.06); }
.menubar .mb-icon { width: 15px; height: 15px; color: var(--brand); }
.menubar .mb-time { font-variant-numeric: tabular-nums; }
.hero-widget-mount { position: relative; z-index: 1; filter: drop-shadow(0 26px 50px rgba(4,52,44,0.16)); }
.widget-caption { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; color: var(--text-primary); white-space: nowrap; box-shadow: 0 8px 24px rgba(4,52,44,0.08); }
.widget-caption .swatch { width: 9px; height: 9px; border-radius: 50%; transition: background 0.5s var(--ease-out); }

/* ============================================================
   TESTIMONIALS — horizontal break line (photo left, quote right)
   ============================================================ */
.tst { position: relative; overflow: hidden; background: var(--teal-50); border-block: 0.5px solid var(--border); padding-block: clamp(40px, 5vw, 64px); }
.tst .wrap { position: relative; z-index: 1; }
.tst__waves { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.tst__waves svg { width: 100%; height: 100%; display: block; }
.tst__eyebrow { display: inline-flex; margin-bottom: clamp(26px, 4vw, 42px); }
.tst__viewport { max-width: 660px; margin: 0 auto; position: relative; min-height: 210px; }
.tst__slide { position: absolute; inset: 0; display: flex; align-items: center; gap: clamp(24px, 4vw, 48px); padding-right: 38px; opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); pointer-events: none; }
@media (max-width: 640px) { .tst__slide { flex-direction: column; text-align: center; gap: 22px; } }
.tst__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.tst__photo { width: 176px; height: 200px; flex: none; border-radius: var(--radius-2xl); object-fit: cover; box-shadow: 0 16px 40px rgba(4,52,44,0.16); background: var(--surface-2); }
@media (max-width: 640px) { .tst__photo { width: 132px; height: 132px; border-radius: 50%; } }
.tst__body { flex: 1; min-width: 0; }
.tst__quote { font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-light); font-style: italic; font-size: clamp(21px, 2.7vw, 31px); line-height: 1.3; letter-spacing: -0.02em; color: var(--text-primary); margin: 0; max-width: 24ch; text-wrap: balance; quotes: "\201C" "\201D"; }
.tst__quote::before { content: open-quote; }
.tst__quote::after { content: close-quote; }
@media (max-width: 640px) { .tst__quote { margin-inline: auto; } }
.tst__role { margin-top: 22px; font-size: 14px; }
.tst__role b { color: var(--text-primary); font-weight: var(--fw-semibold); }
.tst__role span { color: var(--text-tertiary); }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
.tst__arrow { width: 34px; height: 34px; border-radius: 50%; border: none; background: transparent; color: var(--text-tertiary); display: grid; place-items: center; cursor: pointer; transition: all var(--dur-fast); }
.tst__arrow:hover { color: var(--brand); background: rgba(15,110,86,0.08); }
.tst__dots { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; }
.tst__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); border: none; cursor: pointer; padding: 0; transition: all var(--dur-fast); }
.tst__dot.is-active { background: var(--brand); width: 8px; height: 22px; border-radius: var(--radius-pill); }

/* ============================================================
   HOW IT WORKS — pinned title + tile, explainers scroll up
   ============================================================ */
.how { position: relative; }
.how__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .how__layout { grid-template-columns: 1fr; } }

.how__pinned { position: sticky; top: 0; min-height: 100vh; }
.how__head { position: absolute; top: clamp(80px, 12vh, 124px); left: 0; right: 0; }
.how__head .eyebrow { margin-bottom: 0; }
.how__tilewrap { position: absolute; top: calc(50% + 82px); left: calc(50% + clamp(15px, 2.5vw, 40px)); transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 26px; }
@media (max-width: 900px) {
  .how__pinned { position: static; min-height: auto; padding-top: 92px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 44px; }
  .how__head { position: static; }
  .how__tilewrap { position: static; transform: none; left: auto; }
}
.how__tile { position: relative; display: grid; place-items: center; }
.how__widget-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 340px; height: 340px; border-radius: 50%; background: var(--teal-glow); pointer-events: none; z-index: -1; }
.how__rings { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: -1; }
.how__rings span { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(15,110,86,0.1); }
#how-widget-mount { position: relative; filter: drop-shadow(0 22px 42px rgba(4,52,44,0.16)); }
.how__statecap { position: relative; display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; color: var(--text-primary); box-shadow: 0 8px 24px rgba(4,52,44,0.08); white-space: nowrap; }
.how__statecap .swatch { width: 9px; height: 9px; border-radius: 50%; flex: none; transition: background 0.5s var(--ease-out); }
.how__statecap b { color: var(--text-primary); font-weight: var(--fw-medium); }

.how-tile-anim { animation: how-tile-in 0.45s var(--ease-out); }
@keyframes how-tile-in { from { opacity: 0.45; transform: scale(0.965); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .how-tile-anim { animation: none; } }

/* pulsing Locto mark on the idle tile */
.locto-pulse { animation: locto-pulse 2.4s var(--ease-in-out) infinite; }
@keyframes locto-pulse { 0%, 100% { transform: scale(1); opacity: 0.72; } 50% { transform: scale(1.08); opacity: 1; } }
.locto-ping { position: absolute; width: 56px; height: 56px; border-radius: 50%; border: 2px solid rgba(108,124,118,0.45); animation: locto-ping 2.4s var(--ease-out) infinite; }
@keyframes locto-ping { 0% { transform: scale(0.5); opacity: 0.5; } 80%, 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .locto-pulse, .locto-ping { animation: none; } }

.how__steps { padding-block: 80vh; }
@media (max-width: 900px) { .how__steps { padding-block: 30vh; } }
.how-step { min-height: 52vh; display: flex; flex-direction: column; justify-content: center; opacity: 0.22; transform: translateY(34px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
@media (max-width: 900px) { .how-step { min-height: 46vh; } }
.how-step.is-active { opacity: 1; transform: none; }
.how-step__n { font-family: var(--font-mono); font-size: 13px; color: var(--brand); letter-spacing: 0; margin-bottom: 16px; }
.how-step h3 { margin: 0; font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-light); font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.03em; line-height: 1.06; color: var(--text-primary); }
.how-step p { margin: 16px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.5; color: var(--text-secondary); max-width: 26ch; }

/* ============================================================
   COMBINED value + on-device section
   ============================================================ */
.ethos__head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
@media (max-width: 820px) { .ethos__head { grid-template-columns: 1fr; gap: 16px; } }
.ethos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px) clamp(40px, 6vw, 96px); margin-top: clamp(48px, 7vw, 84px); }
@media (max-width: 720px) { .ethos__grid { grid-template-columns: 1fr; gap: 36px; } }
.ethos__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.ethos__item .ic { color: var(--brand); flex: none; margin-top: 2px; }
.ethos__item .ic svg { width: 30px; height: 30px; }
.ethos__item h3 { margin: 0 0 8px; font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-medium); font-size: 21px; letter-spacing: -0.02em; color: var(--text-primary); }
.ethos__item p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--text-secondary); max-width: 30ch; }

/* ============================================================
   Analytics
   ============================================================ */
.analytics { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; margin-top: 52px; }
@media (max-width: 920px) { .analytics { grid-template-columns: 1fr; } }
.report-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-2xl); padding: 30px; box-shadow: 0 24px 60px rgba(4,52,44,0.08); }
.report-card__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; }
.report-card__head .tt { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); font-weight: var(--fw-semibold); }
.report-card__head .dt { font-size: 13px; color: var(--text-tertiary); font-variant-numeric: tabular-nums; }
.report-stat { display: flex; align-items: baseline; gap: 12px; }
.report-stat .big { font-family: 'Inter Display', var(--font-sans); font-size: 64px; font-weight: var(--fw-light); letter-spacing: -0.04em; line-height: 1; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.report-stat .unit { font-size: 14px; color: var(--text-tertiary); }
.report-stat .pill { margin-left: auto; align-self: center; font-size: 12px; font-weight: var(--fw-semibold); padding: 5px 11px; border-radius: var(--radius-pill); background: var(--ideal-bg-1); color: var(--ideal-ink); }
.report-line { font-size: 14.5px; color: var(--text-secondary); margin: 16px 0 24px; line-height: 1.55; }
.report-line b { color: var(--text-primary); font-weight: var(--fw-medium); }
.spark { display: flex; align-items: flex-end; gap: 7px; height: 92px; padding-top: 8px; border-top: 0.5px solid var(--border); }
.spark .bar { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--gradient-pace); position: relative; transform-origin: bottom; }
.spark .bar::after { content: attr(data-day); position: absolute; bottom: -20px; left: 0; right: 0; text-align: center; font-size: 10px; color: var(--text-tertiary); }
@keyframes bar-grow { from { transform: scaleY(0.02); } to { transform: scaleY(1); } }
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .report-card.in .spark .bar { animation: bar-grow 0.7s var(--ease-out); }
  .js-reveal .report-card.in .spark .bar:nth-child(2){animation-delay:.05s} .js-reveal .report-card.in .spark .bar:nth-child(3){animation-delay:.1s}
  .js-reveal .report-card.in .spark .bar:nth-child(4){animation-delay:.15s} .js-reveal .report-card.in .spark .bar:nth-child(5){animation-delay:.2s}
  .js-reveal .report-card.in .spark .bar:nth-child(6){animation-delay:.25s} .js-reveal .report-card.in .spark .bar:nth-child(7){animation-delay:.3s}
}
.analytics-points { display: flex; flex-direction: column; gap: 24px; }
.apoint { display: grid; grid-template-columns: auto 1fr; gap: 16px; }
.apoint .ic { color: var(--brand); flex: none; margin-top: 2px; }
.apoint .ic svg { width: 24px; height: 24px; }
.apoint h4 { margin: 0 0 5px; font-size: 17px; font-weight: var(--fw-semibold); letter-spacing: -0.01em; }
.apoint p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text-secondary); max-width: 34ch; }

/* ============================================================
   Final CTA — light teal band
   ============================================================ */
.final { background: var(--teal-50); border-block: 0.5px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.final__rings { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(640px, 90vw); aspect-ratio: 1; opacity: 0.9; pointer-events: none; }
.final__rings span { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1px solid rgba(15,110,86,0.12); }
.final__sub { color: var(--text-secondary); font-size: clamp(16px,1.5vw,19px); margin: 18px auto 0; max-width: 40ch; line-height: 1.55; }
.final__cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; position: relative; z-index: 2; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 44px auto 0; }
.faq__item { border-bottom: 0.5px solid var(--border); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; text-align: left; font-family: var(--font-sans); font-size: 18px; font-weight: var(--fw-medium); letter-spacing: -0.01em; color: var(--text-primary); }
.faq__q .plus { flex: none; width: 22px; height: 22px; position: relative; transition: transform var(--dur-base) var(--ease-out); color: var(--brand); }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq__q .plus::before { left: 0; right: 0; top: 10px; height: 2px; }
.faq__q .plus::after { top: 0; bottom: 0; left: 10px; width: 2px; transition: opacity var(--dur-fast); }
.faq__item.is-open .plus { transform: rotate(180deg); }
.faq__item.is-open .plus::after { opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease-out); }
.faq__a p { margin: 0; padding: 0 4px 24px; font-size: 15px; line-height: 1.6; color: var(--text-secondary); max-width: 62ch; }

/* ============================================================
   Footer — light
   ============================================================ */
.footer { background: var(--surface-2); border-top: 0.5px solid var(--border); padding-block: 52px 36px; }
.footer__top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
.footer__tag { margin-top: 12px; font-size: 13px; color: var(--text-tertiary); max-width: 30ch; }
.footer__copy { margin-top: 14px; font-size: 12.5px; color: var(--text-tertiary); }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col h5 { margin: 0 0 12px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); font-weight: var(--fw-semibold); }
.footer__col a { display: block; font-size: 14px; color: var(--text-secondary); padding: 5px 0; transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--brand); }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-tertiary); }

/* ============================================================
   Paywall modal — light
   ============================================================ */
.modal-scrim { position: fixed; inset: 0; z-index: 100; background: rgba(31,41,55,0.32); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base); }
.modal-scrim.is-open { opacity: 1; visibility: visible; }
.paywall { width: min(960px, 100%); max-height: 92vh; overflow-y: auto; background: var(--surface); border-radius: var(--radius-2xl); display: grid; grid-template-columns: 1.05fr 0.95fr; box-shadow: 0 40px 120px rgba(4,52,44,0.28); transform: translateY(16px) scale(0.985); opacity: 0; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base); }
.modal-scrim.is-open .paywall { transform: none; opacity: 1; }
@media (max-width: 760px) { .paywall { grid-template-columns: 1fr; } }
.paywall__aside { background: var(--teal-50); padding: 40px 36px; position: relative; overflow: hidden; display: flex; flex-direction: column; border-right: 0.5px solid var(--border); }
@media (max-width: 760px) { .paywall__aside { border-right: none; border-bottom: 0.5px solid var(--border); } }
.paywall__aside .rings { position: absolute; right: -30%; top: -10%; width: 300px; height: 300px; pointer-events: none; }
.paywall__aside .rings span { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1px solid rgba(15,110,86,0.12); }
.paywall__aside-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.paywall__price { display: flex; align-items: flex-start; gap: 4px; margin: 28px 0 4px; }
.paywall__price .cur { font-size: 28px; font-weight: var(--fw-light); margin-top: 8px; color: var(--brand-ink); }
.paywall__price .amt { font-family: 'Inter Display', var(--font-sans); font-size: 72px; font-weight: var(--fw-light); letter-spacing: -0.04em; line-height: 0.9; color: var(--brand-ink); font-variant-numeric: tabular-nums; }
.paywall__once { font-size: 14px; color: var(--brand); font-weight: var(--fw-semibold); }
.paywall__aside .tagline { font-size: 14px; color: var(--text-secondary); margin: 12px 0 0; line-height: 1.55; }
.paywall__seal { margin-top: auto; padding-top: 28px; font-size: 12.5px; color: var(--text-tertiary); display: flex; align-items: center; gap: 9px; }
.paywall__seal svg { width: 16px; height: 16px; color: var(--brand); flex: none; }
.paywall__main { padding: 40px 38px; position: relative; }
.paywall__close { position: absolute; top: 20px; right: 20px; width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer; background: var(--surface-2); color: var(--text-secondary); display: grid; place-items: center; transition: background var(--dur-fast), color var(--dur-fast); }
.paywall__close:hover { background: var(--teal-50); color: var(--brand); }
.paywall__main .eyebrow { margin-bottom: 14px; }
.paywall__main h2 { font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-medium); font-size: 26px; letter-spacing: -0.02em; margin: 0 0 22px; }
.paywall__feats { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.paywall__feats li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; }
.paywall__feats .ck { width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--teal-50); color: var(--brand); display: grid; place-items: center; margin-top: 1px; }
.paywall__feats .ck svg { width: 13px; height: 13px; }
.paywall__feats .ft { font-size: 14.5px; color: var(--text-primary); font-weight: var(--fw-medium); }
.paywall__feats .ft span { display: block; font-weight: var(--fw-regular); color: var(--text-tertiary); font-size: 13px; margin-top: 2px; line-height: 1.5; }
.paywall__buy { width: 100%; justify-content: center; }
.paywall__fine { text-align: center; font-size: 12px; color: var(--text-tertiary); margin: 14px 0 0; }

/* ============================================================
   Scroll reveal — fail-safe visible
   ============================================================ */
@keyframes reveal-in { from { opacity: 0; transform: translateY(26px); } 60% { opacity: 1; } to { opacity: 1; transform: none; } }
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal.in { animation: reveal-in 0.72s var(--ease-out); }
  .js-reveal .reveal.in[data-d="1"] { animation-delay: 0.07s; }
  .js-reveal .reveal.in[data-d="2"] { animation-delay: 0.14s; }
  .js-reveal .reveal.in[data-d="3"] { animation-delay: 0.21s; }
  .js-reveal .reveal.in[data-d="4"] { animation-delay: 0.28s; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.no-reveal .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }

.center { text-align: center; }
.mono-spec { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); letter-spacing: 0; }

/* ============================================================
   Widget · monologue "take a pause" signal pulse
   ============================================================ */
@keyframes locto-mono-signal-soft   { 0%, 100% { opacity: 1; } 50% { opacity: 0.72; } }
@keyframes locto-mono-signal-strong { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ============================================================
   Hero — eyebrow, fineprint, trust badges
   ============================================================ */
.hero__eyebrow { margin-bottom: 4px; }
.hero__fineprint { margin: 14px 0 0; font-size: 13px; color: var(--text-tertiary); line-height: 1.5; }
@media (max-width: 900px) { .hero__fineprint { margin-inline: auto; } }

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 20px; }
.trust-badges--center { justify-content: center; margin-top: 24px; }
@media (max-width: 900px) { .trust-badges { justify-content: center; } }
.trust-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: var(--fw-medium); color: var(--text-secondary); }
.trust-badge svg { width: 16px; height: 16px; color: var(--brand); flex: none; }

/* ============================================================
   Use-cases — made for founders
   ============================================================ */
.usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px); margin-top: clamp(40px, 6vw, 64px); }
@media (max-width: 920px) { .usecases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usecases__grid { grid-template-columns: 1fr; } }
.usecase { background: var(--surface); border: 0.5px solid var(--border); border-radius: var(--radius-2xl); padding: 26px 24px; box-shadow: 0 14px 40px rgba(4,52,44,0.06); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.usecase:hover { transform: translateY(-3px); box-shadow: 0 22px 56px rgba(4,52,44,0.10); }
.usecase .ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--teal-50); color: var(--brand); margin-bottom: 18px; }
.usecase .ic svg { width: 22px; height: 22px; }
.usecase h3 { margin: 0 0 8px; font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-medium); font-size: 19px; letter-spacing: -0.02em; color: var(--text-primary); }
.usecase p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text-secondary); }

/* ============================================================
   Proof band — "This is the entire interface."
   ============================================================ */
.proof { padding-block: clamp(72px, 11vw, 132px); text-align: center; position: relative; overflow: hidden; }
.proof__inner { display: flex; flex-direction: column; align-items: center; }
.proof__stage { position: relative; display: grid; place-items: center; min-height: 220px; padding: 20px; }
.proof__glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 360px; height: 360px; border-radius: 50%; background: var(--teal-glow); pointer-events: none; z-index: -1; }
#proof-widget-mount { position: relative; filter: drop-shadow(0 26px 50px rgba(4,52,44,0.16)); }
.proof__cap { font-family: 'Inter Display', var(--font-sans); font-weight: var(--fw-light); font-size: clamp(26px, 3.4vw, 42px); letter-spacing: -0.03em; line-height: 1.1; color: var(--text-primary); margin: 36px 0 0; text-wrap: balance; }
.proof__sub { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55; color: var(--text-secondary); margin: 16px auto 0; max-width: 46ch; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing { background: var(--teal-50); border-block: 0.5px solid var(--border); }
.pricing__inner { max-width: 620px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.pricing__body { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--text-secondary); margin: 20px auto 0; max-width: 48ch; }
.pricing__cta { margin-top: 30px; }
.pricing__reassure { margin: 18px 0 0; font-size: 14px; color: var(--text-tertiary); line-height: 1.55; max-width: 44ch; }

/* ============================================================
   From the founder
   ============================================================ */
.founder-note { padding-block: clamp(72px, 10vw, 120px); position: relative; }
.founder-note__inner { max-width: none; margin: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.founder-note__inner .eyebrow { align-self: flex-start; }
.founder-note__mark { color: var(--brand); margin-bottom: 22px; opacity: 0.9; }
.founder-note__mark svg { width: 40px; height: 40px; }
.founder-note__photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 28px 0 4px; box-shadow: 0 12px 32px rgba(4,52,44,0.16); background: var(--surface-2); }
.founder-note__quote { font-family: 'Inter Display', var(--font-sans); font-style: italic; font-weight: var(--fw-light); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.4; letter-spacing: -0.02em; color: var(--text-primary); margin: 18px 0 0; width: min(42ch, 100%); align-self: center; text-align: center; text-wrap: pretty; }
.founder-note__by { margin: 18px 0 0; width: min(42ch, 100%); align-self: center; text-align: center; font-size: 14.5px; font-weight: var(--fw-medium); color: var(--text-secondary); }

/* ============================================================
   Sticky buy bar
   ============================================================ */
.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 12px var(--gut); background: rgba(250,248,242,0.86); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-top: 0.5px solid var(--border); box-shadow: 0 -2px 20px rgba(4,52,44,0.06); transform: translateY(110%); opacity: 0; visibility: hidden; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), visibility var(--dur-base); }
.buybar.is-visible { transform: none; opacity: 1; visibility: visible; }
.buybar__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.buybar__tag { font-size: 14px; color: var(--text-secondary); margin-right: auto; }
.buybar__cta { padding: 12px 22px; }
@media (max-width: 640px) {
  .buybar__inner .brand-lockup .word { display: none; }
  .buybar__tag { display: none; }
  .buybar__inner { justify-content: space-between; }
  .buybar__cta { margin-left: auto; }
}
