/* ==========================================================
   Unscoped — Landing Page
   ========================================================== */

* { box-sizing: border-box; }

:root {
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --surface-2: #F1EAD9;
  --text: #182420;
  --text-soft: #5E6E66;
  --text-faint: #93A69C;
  --accent: #1F5D50;
  --accent-dark: #163F37;
  --gold: #B97A2E;
  --line: #E3DBC9;
  --shadow: rgba(22, 63, 55, 0.14);

  --footer-bg: #0F1C17;
  --footer-surface: #16281F;
  --footer-text: #EEEBE1;
  --footer-text-soft: #93A69C;
  --footer-accent: #57B79B;
  --footer-line: #26392F;

  --font-display: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Roboto Mono', 'SF Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 14px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}

p { margin: 0 0 16px; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--accent); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 640px; margin: 0 auto; }
.narrow-wide { max-width: 880px; margin: 0 auto; }

.section { padding: 88px 0; }
@media (max-width: 640px) { .section { padding: 64px 0; } }

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 14px;
}

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head .section-sub { font-size: 17px; margin-top: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: transparent; color: var(--accent); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--accent); background: var(--surface); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand-lockup { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--text); }
.logo-mark { height: 22px; width: auto; }
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  text-decoration: none; color: var(--text-soft); font-size: 14.5px; font-weight: 500;
}
.site-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 0 auto; }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 12px 24px 20px;
}
.mobile-nav a {
  text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500;
  padding: 12px 4px; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 12px; width: 100%; }

.site-header.nav-open .mobile-nav { display: flex; }

@media (max-width: 860px) {
  .site-nav, .header-actions .btn-sm { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- product chip (browser-chrome frame for screenshots) ---------- */
.chip {
  border-radius: var(--radius-md); border: 1px solid var(--line);
  background: var(--surface); box-shadow: 0 18px 46px var(--shadow);
  overflow: hidden;
}
.chip-bar {
  display: flex; align-items: center; gap: 6px; padding: 11px 14px;
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.chip-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.chip-url {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-soft);
  background: var(--bg); border: 1px solid var(--line); border-radius: 5px; padding: 2px 10px;
}
.chip img { display: block; width: 100%; height: auto; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 96px; }
.hero-inner { display: grid; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(32px, 4.6vw, 52px); }
.hero-sub { font-size: 18px; max-width: 46ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { justify-self: center; width: 100%; }
.chip-hero { max-width: 560px; margin: 0 auto; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-visual { justify-self: end; }
}

/* ---------- problem / solution ---------- */
.problem, .solution { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem h2, .solution h2 { font-size: clamp(26px, 3.4vw, 34px); }
.problem p, .solution p { font-size: 17px; }
.problem-close, .solution-close { color: var(--text); font-weight: 600; }

/* ---------- how it works ---------- */
.steps { display: flex; flex-direction: column; gap: 64px; }
.step { display: grid; gap: 28px; align-items: center; }
.step-index {
  display: inline-block; font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--accent); background: var(--surface); border: 1px solid var(--line);
  border-radius: 50%; width: 40px; height: 40px; line-height: 38px; text-align: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 16px; max-width: 40ch; }

@media (min-width: 860px) {
  .step { grid-template-columns: 1fr 1.15fr; gap: 56px; }
  .step:nth-child(even) .step-shot { order: -1; }
}

/* ---------- features ---------- */
.feature-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
}
.feature-card { background: var(--surface); padding: 32px 28px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 15px; margin: 0; }

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- demo ---------- */
.demo .section-head { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.demo .eyebrow { text-align: center; }
.video-frame {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow); background: #000; margin-bottom: 24px;
}
.video-frame video { width: 100%; display: block; aspect-ratio: 1280 / 720; background: #000; }

.walkthrough-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; color: var(--accent); font-weight: 600; font-size: 15px;
}
.walkthrough-link:hover { color: var(--accent-dark); }

/* ---------- who it's for ---------- */
.audience h2 { font-size: clamp(26px, 3.4vw, 34px); }
.audience p { font-size: 17px; }
.audience-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.audience-list li {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text);
  padding: 16px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
}

/* ---------- pricing ---------- */
.pricing h2 { font-size: clamp(26px, 3.4vw, 34px); }
.trust-statement {
  font-size: 16px; font-style: italic; color: var(--text-soft);
  border-left: 2px solid var(--accent); padding-left: 16px;
  margin: 20px 0 36px;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: 0 18px 46px var(--shadow); padding: 36px 32px;
}
.pricing-card-head { border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 24px; }
.pricing-name {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px;
}
.pricing-amount {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 44px);
  color: var(--text); margin: 0; letter-spacing: -0.01em; line-height: 1.15;
}
.pricing-period {
  display: block; font-family: var(--font-body); font-weight: 500; font-size: 15px;
  color: var(--text-soft); margin-top: 6px; letter-spacing: 0;
}
.pricing-includes { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pricing-includes li { font-size: 15.5px; color: var(--text); padding-left: 26px; position: relative; }
.pricing-includes li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700; font-size: 14px;
}
.pricing-guarantee { font-size: 14.5px; font-weight: 600; color: var(--accent); margin: 0 0 24px; }
.pricing-cta { display: flex; width: 100%; text-align: center; }

/* ---------- early access ---------- */
.early-access { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.early-access h2 { font-size: clamp(26px, 3.4vw, 34px); }
.early-access p { font-size: 16px; }

.ea-form { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.ea-row { display: flex; flex-direction: column; gap: 6px; }
.ea-row label { font-size: 13px; font-weight: 600; color: var(--text); }
.ea-row input {
  font: inherit; font-size: 16px; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--bg); color: var(--text);
}
.ea-row input:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.ea-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ea-submit { margin-top: 8px; align-self: flex-start; }
.ea-status { font-size: 14.5px; font-weight: 600; min-height: 1.4em; margin: 0; }
.ea-status[data-state="success"] { color: var(--accent); }
.ea-status[data-state="error"] { color: #B4482F; }

/* ---------- faq ---------- */
.faq h2 { font-size: clamp(26px, 3.4vw, 34px); }
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { background: var(--surface); padding: 4px 24px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 20px; color: var(--text-faint); flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 20px; font-size: 15.5px; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.footer-brand { color: var(--footer-text); }
.footer-brand .wordmark { color: var(--footer-text); }
.footer-tagline { color: var(--footer-text-soft); font-size: 15px; margin: 0; }
.footer-copyright { color: var(--footer-text-soft); font-size: 13px; margin: 24px 0 0; padding-top: 24px; border-top: 1px solid var(--footer-line); width: 100%; }
.site-footer .btn-primary { background: var(--footer-accent); color: var(--footer-bg); }
.site-footer .btn-primary:hover { background: #6ECDAF; }
