/* ============================================================
   CaWe marketing site - styles.css
   Dependency-free. Warm paper canvas, one loud green, quiet AI violet.
   ============================================================ */

:root {
  --canvas: #FAF8F3;
  --card: #fff;
  --ink: #1F1E1B;
  --ink2: #57544E;
  --muted: #8C887F;
  --brand: #1F7A5C;
  --brand-strong: #13614A;
  --brand-tint: #E7F0EB;
  --brand-text: #185C45;
  --ai: #6B5BD2;
  --ai-tint: #EEEBFB;
  --hair: rgba(31, 30, 27, .08);

  --sh-sm: 0 1px 3px rgba(31, 30, 27, .05);
  --sh-hover: 0 16px 38px rgba(31, 30, 27, .10);
  --sh-big: 0 30px 70px -24px rgba(31, 30, 27, .28);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;

  --container: 1180px;
  --gutter: 24px;
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600;
}
.skip-link:focus { left: 16px; }

/* ---------- Focus rings ---------- */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow-ai { color: #b9b1ee; }
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; flex: none; }
.dot-ai { background: var(--ai); }
.dot-green { background: var(--brand); }
.ic-ai { width: 15px; height: 15px; color: var(--ai); }
.eyebrow-ai .ic-ai { color: #b9b1ee; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 10px 18px; border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--brand-strong); box-shadow: var(--sh-hover); }

.btn-secondary { background: var(--card); color: var(--ink); border-color: var(--hair); box-shadow: var(--sh-sm); }
.btn-secondary:hover { border-color: rgba(31,30,27,.18); box-shadow: var(--sh-hover); }

.btn-ghost { background: transparent; color: var(--ink2); }
.btn-ghost:hover { color: var(--ink); background: rgba(31,30,27,.04); }

.btn-white { background: #fff; color: var(--brand-strong); }
.btn-white:hover { box-shadow: var(--sh-hover); }

.btn-translucent { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.30); }
.btn-translucent:hover { background: rgba(255,255,255,.22); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, .78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand img { height: 34px; width: auto; }
.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a { color: var(--ink2); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-desktop a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; background: transparent; border: 1px solid var(--hair);
  border-radius: var(--r-sm); padding: 8px; color: var(--ink);
}
.hamburger i { width: 22px; height: 22px; display: block; }

.mobile-menu {
  border-top: 1px solid var(--hair);
  background: var(--canvas);
}
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px var(--gutter) 20px; }
.mobile-menu a { padding: 12px 4px; color: var(--ink2); font-weight: 500; border-bottom: 1px solid var(--hair); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.lede { color: var(--ink2); font-size: clamp(17px, 2vw, 20px); max-width: 38ch; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 20px 26px; }
.trust-row li { display: flex; align-items: center; gap: 8px; color: var(--ink2); font-size: 14px; font-weight: 500; }
.ic-green { width: 18px; height: 18px; color: var(--brand); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.glow {
  position: absolute; inset: -8% 0 -12% 0; z-index: 0;
  background:
    radial-gradient(46% 50% at 30% 30%, rgba(31,122,92,.18), transparent 70%),
    radial-gradient(40% 46% at 78% 64%, rgba(107,91,210,.16), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}
.glow-soft { inset: 2% 0 2% 0; opacity: .8; }
.media-note { margin-top: 14px; font-size: 12px; line-height: 1.45; color: var(--muted); text-align: center; }
.hero-note { text-align: left; margin-top: 16px; }

.browser-frame {
  position: relative; z-index: 1;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-big);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(#fff, #fbfaf7);
}
.dot-tl { width: 10px; height: 10px; border-radius: 999px; background: #e2ded6; }
.dot-tl:nth-child(1) { background: #f0a8a0; }
.dot-tl:nth-child(2) { background: #f3d199; }
.dot-tl:nth-child(3) { background: #a9d8b7; }
.browser-url {
  margin-left: 10px; font-family: 'Geist Mono', monospace; font-size: 11px;
  color: var(--muted); background: var(--canvas); padding: 3px 10px; border-radius: 999px;
}
.browser-frame img { width: 100%; display: block; }

/* Floating chat card */
.chat-card {
  position: absolute; z-index: 3;
  right: -8px; bottom: -22px;
  width: min(260px, 64%);
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  box-shadow: var(--sh-hover);
  padding: 12px;
}
.chat-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--ink2);
  margin-bottom: 10px;
}
.chat-head i { width: 15px; height: 15px; }
.bubble {
  font-size: 13px; line-height: 1.4; padding: 9px 12px; border-radius: 14px;
  margin-bottom: 7px; max-width: 92%;
}
.bubble-in { background: var(--brand-tint); color: var(--brand-text); border-bottom-left-radius: 4px; }
.bubble-out { background: var(--brand); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble:last-child { margin-bottom: 0; }

/* ---------- Social proof ---------- */
.proof { padding: 8px 0 20px; }
.proof-line {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--ink2); font-size: 14px; font-weight: 500;
  text-align: center;
}
.pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--brand); position: relative; flex: none; }
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  border: 2px solid rgba(31,122,92,.35);
}

/* ---------- Section heads ---------- */
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(27px, 3.4vw, 40px); font-weight: 800; }
.section-sub { color: var(--ink2); font-size: 18px; margin-top: 14px; }

/* ---------- Pain points ---------- */
.pains { padding: 80px 0; }
.pain-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px;
}
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--hair);
}
.pain-ic {
  flex: none; width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center;
}
.pain-ic i { width: 21px; height: 21px; }
.pain-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.pain-item p { color: var(--ink2); font-size: 15px; }

/* ---------- Feature showcase ---------- */
.showcase { padding: 40px 0 80px; }
.show-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 44px 0;
}
.show-row.reverse .show-media { order: 2; }
.show-media { position: relative; }
.show-copy h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.show-copy > p { color: var(--ink2); font-size: 17px; margin-bottom: 22px; }

.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: 15px; margin-bottom: 11px; }
.check-list i { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }

/* mobile/whatsapp media */
.media-mobile { display: flex; align-items: flex-end; justify-content: center; gap: 0; min-height: 420px; }
.phone-frame {
  position: relative; z-index: 1;
  width: 240px; flex: none;
  background: var(--card);
  border: 8px solid #2a2823;
  border-radius: 34px;
  box-shadow: var(--sh-big);
  overflow: hidden;
}
.phone-frame img { width: 100%; display: block; }
.chat-static {
  position: relative; right: auto; bottom: auto;
  margin-left: -44px; margin-bottom: 36px;
  width: 240px; align-self: flex-end;
}

/* ---------- How it works ---------- */
.how { padding: 80px 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--sh-sm);
}
.step-num {
  font-family: 'Geist Mono', monospace; font-size: 13px; font-weight: 600;
  color: var(--brand); background: var(--brand-tint);
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: var(--r-sm);
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink2); font-size: 15px; }

/* ---------- Capabilities ---------- */
.caps { padding: 40px 0 80px; }
.caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cap-card {
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--sh-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cap-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); border-color: rgba(31,30,27,.12); }
.cap-ic {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 18px;
}
.cap-ic i { width: 23px; height: 23px; }
.cap-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.cap-card p { color: var(--ink2); font-size: 15px; }

/* ---------- Differentiator (dark) ---------- */
.diff-wrap { padding: 40px 0 80px; }
.diff {
  background: var(--ink); color: #EFEDE8; border-radius: var(--r-xl);
  padding: 64px clamp(24px, 5vw, 64px);
}
.diff-head { max-width: 760px; margin-bottom: 44px; }
.diff-head h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; }
.diff-sub { color: #b8b4ac; font-size: 18px; margin-top: 16px; }
.diff-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 26px;
}
.diff-ic {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(52,192,138,.15); color: #34C08A;
  display: grid; place-items: center; margin-bottom: 18px;
}
.diff-ic i { width: 22px; height: 22px; }
.diff-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.diff-card p { color: #b8b4ac; font-size: 15px; }

/* ---------- Specialties ---------- */
.specialties { padding: 24px 0 64px; text-align: center; }
.spec-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.spec-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--hair); border-radius: 999px;
  padding: 11px 20px; font-weight: 600; font-size: 15px; color: var(--ink);
  box-shadow: var(--sh-sm);
}
.spec-pill i { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Security ---------- */
.security { padding: 40px 0 80px; }
.sec-card {
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px); box-shadow: var(--sh-sm); text-align: center;
  max-width: 860px; margin: 0 auto;
}
.sec-ic {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--brand-tint); color: var(--brand);
  display: grid; place-items: center; margin: 0 auto 22px;
}
.sec-ic i { width: 28px; height: 28px; }
.sec-card h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.sec-sub { color: var(--ink2); font-size: 17px; margin: 16px auto 28px; max-width: 60ch; }
.sec-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.sec-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--canvas); border: 1px solid var(--hair); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 500; color: var(--ink2);
}
.sec-chip i { width: 16px; height: 16px; color: var(--brand); }

/* ---------- Pricing ---------- */
.pricing { padding: 40px 0 80px; }
.pricing .section-head { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.pricing .eyebrow { justify-content: center; }
.lite-line { color: var(--brand-text); font-weight: 600; font-size: 15px; margin-top: 14px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card {
  position: relative;
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--sh-hover);
  transform: translateY(-8px);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: .01em; white-space: nowrap;
}
.plan-name { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price .amount { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.plan-price .per { color: var(--ink2); font-size: 14px; font-family: 'Geist Mono', monospace; }
.plan-tag { color: var(--ink2); font-size: 15px; margin-bottom: 18px; }
.urgency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ai-tint); color: var(--ai); border: 1px solid rgba(107,91,210,.2);
  font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: var(--r-sm);
  margin-bottom: 18px; line-height: 1.3;
}
.urgency-badge i { width: 14px; height: 14px; flex: none; }
.plan-feats { margin-bottom: 24px; flex: 1; }
.plan-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink); margin-bottom: 11px; }
.plan-feats i { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: 3px; }
.addons-note { text-align: center; color: var(--ink2); font-size: 14px; margin-top: 28px; }

/* ---------- Demo form ---------- */
.demo { padding: 40px 0 80px; }
.demo-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.demo-form-wrap h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.demo-form { margin-top: 28px; max-width: 560px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.req { color: var(--brand); }
.opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(31,122,92,.14);
}
.field textarea { resize: vertical; min-height: 84px; }
.field.invalid input, .field.invalid select { border-color: #c0432f; }
.error { color: #c0432f; font-size: 13px; margin-top: 6px; min-height: 0; }
.error:empty { display: none; }
.form-micro { color: var(--ink2); font-size: 13px; margin-top: 12px; text-align: center; }
.form-secondary { text-align: center; margin-top: 14px; }
.form-secondary a { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-text); font-weight: 600; font-size: 14px; }
.form-secondary i { width: 16px; height: 16px; }
[hidden] { display: none !important; }
.form-success {
  display: flex; align-items: center; gap: 12px;
  background: var(--brand-tint); border: 1px solid rgba(31,122,92,.25); border-radius: var(--r-md);
  padding: 16px 18px; margin-top: 20px; color: var(--brand-text);
}
.form-success i { width: 24px; height: 24px; color: var(--brand); flex: none; }
.form-success p { font-weight: 500; font-size: 15px; }

.demo-expect {
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm); position: sticky; top: calc(var(--header-h) + 24px);
}
.demo-expect h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.expect-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--hair); color: var(--ink); font-size: 15px; font-weight: 500; }
.expect-list li:first-child { border-top: none; padding-top: 0; }
.expect-ic { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; }
.expect-ic i { width: 19px; height: 19px; }

/* ---------- Closing CTA ---------- */
.closing { padding: 20px 0 80px; }
.closing-band {
  background: linear-gradient(135deg, #1F7A5C, #124A39);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center; color: #fff;
  box-shadow: var(--sh-big);
}
.closing-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; }
.closing-band p { color: rgba(255,255,255,.85); font-size: 18px; margin: 16px auto 28px; max-width: 50ch; }
.closing-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hair); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { color: var(--ink2); font-size: 15px; max-width: 30ch; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: 16px; font-family: 'Geist Mono', monospace; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--ink2); font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 0; padding-top: 24px; border-top: 1px solid var(--hair);
}
.footer-bottom p { color: var(--muted); font-size: 14px; font-family: 'Geist Mono', monospace; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { color: var(--ink2); font-size: 14px; }
.footer-bottom a:hover { color: var(--ink); }
.footer-note { font-size: 12px; line-height: 1.5; color: var(--muted); max-width: 680px; margin: 44px 0 20px; }

/* ---------- Scroll reveal (default visible; JS adds pre-hidden) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal.pre-reveal { opacity: 0; transform: translateY(18px); }
  .reveal.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
  /* Hero fade-in on load */
  .hero-copy.reveal, .hero-visual.reveal { animation: heroIn .6s ease both; }
  .hero-visual.reveal { animation-delay: .08s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .header-actions .btn-ghost, .header-actions .btn-primary { display: none; }
  .hamburger { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 0 40px; }
  .lede { max-width: none; }

  .pain-list { grid-template-columns: 1fr; gap: 0; }
  .pain-item:first-child { border-top: 1px solid var(--hair); }

  .show-row, .show-row.reverse { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .show-row.reverse .show-media { order: 0; }

  .steps { grid-template-columns: 1fr 1fr; }
  .caps-grid { grid-template-columns: 1fr 1fr; }
  .diff-cards { grid-template-columns: 1fr; }

  .price-grid { grid-template-columns: 1fr; gap: 28px; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; order: -1; }

  .demo-grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-expect { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 36px 0 32px; }
  .hero-ctas .btn { flex: 1; }
  .chat-card { right: -4px; bottom: -16px; width: min(230px, 76%); }

  .steps { grid-template-columns: 1fr; }
  .caps-grid { grid-template-columns: 1fr; }

  .media-mobile { flex-direction: column; align-items: center; gap: 0; min-height: 0; }
  .phone-frame { width: 210px; }
  .chat-static { margin-left: 0; margin-top: -32px; margin-bottom: 0; width: min(240px, 88%); }

  .pains, .how, .caps, .pricing, .demo, .security, .diff-wrap { padding-top: 56px; padding-bottom: 56px; }
  .diff { padding: 40px 22px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
