/* ─────────────────────────────────────────
   SHARED PAGE UTILITIES
───────────────────────────────────────── */
.w { max-width:var(--max-w); margin:0 auto; padding:0 28px; }
.section-label { font-family:var(--mono); font-size:10.5px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--stone-400); margin-bottom:14px; }
.section-h { font-size:clamp(28px,3.8vw,46px); font-weight:700; letter-spacing:-.03em; line-height:1.08; color:var(--ink); margin-bottom:18px; }
.section-h em { font-style:normal; font-weight:300; color:var(--stone-400); }
.section-sub { font-size:16px; line-height:1.7; color:var(--stone-600); }
.btn-primary { display:inline-flex; align-items:center; gap:7px; padding:12px 22px; background:var(--ink); color:#fff; font-size:14px; font-weight:500; border-radius:9px; text-decoration:none; letter-spacing:-.01em; transition:opacity .15s, transform .15s; border:none; cursor:pointer; font-family:var(--font); }
.btn-primary:hover { opacity:.85; transform:translateY(-1px); }
.btn-primary svg { width:14px; height:14px; stroke:#fff; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.btn-ghost { display:inline-flex; align-items:center; gap:7px; padding:12px 22px; background:transparent; color:var(--stone-600); font-size:14px; font-weight:400; border-radius:9px; border:1px solid var(--border-strong); text-decoration:none; transition:all .15s; }
.btn-ghost:hover { color:var(--ink); background:var(--stone-50); }

/* ─────────────────────────────────────────
   PAGE HERO — merchants specific
───────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--stone-600);
  margin-bottom: 22px;
}
.page-hero-eyebrow::before { content:''; width:7px; height:7px; border-radius:50%; background:#96bf48; flex-shrink:0; }
.page-hero h1 {
  font-size: clamp(36px,4.8vw,60px); font-weight: 700;
  letter-spacing: -.035em; line-height: 1.06;
  color: var(--ink); margin-bottom: 22px;
}
.page-hero h1 em { font-style: normal; font-weight: 300; color: var(--stone-400); }
.page-hero-sub { font-size: 17px; line-height: 1.7; color: var(--stone-600); max-width: 460px; margin-bottom: 36px; }
.page-hero-sub strong { color: var(--ink); font-weight: 500; }
.page-hero-ctas { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.page-hero-trust { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--stone-400); flex-wrap:wrap; }
.trust-sep { width:3px; height:3px; border-radius:50%; background:var(--stone-200); }

/* right — day-in-life card stack */
.hero-cards {
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.hero-time-card {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 12px; padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-time-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.htc-time {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  color: var(--stone-400); letter-spacing: .04em;
  margin-top: 2px; flex-shrink: 0; min-width: 52px;
}
.htc-body {}
.htc-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 3px; letter-spacing: -.01em; }
.htc-detail { font-size: 12.5px; color: var(--stone-600); line-height: 1.5; }
.htc-detail strong { color: var(--ink); font-weight: 500; }
.htc-detail .up { color: var(--green); font-weight: 600; }
.htc-detail .dn { color: var(--red); font-weight: 600; }
.htc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px; margin-top: 1px;
}
.htc-icon.g { background: var(--green-bg); }
.htc-icon.r { background: var(--red-bg); }
.htc-icon.a { background: var(--amber-bg); }
.htc-icon.t { background: var(--teal-bg); }
.htc-icon.n { background: var(--stone-50); }
@media(max-width:860px) {
  .page-hero-inner { grid-template-columns:1fr; gap:48px; }
  .page-hero-sub { max-width:100%; }
}

/* ─────────────────────────────────────────
   PROBLEM MOMENTS  (horizontal scroll on mobile)
───────────────────────────────────────── */
.moments-section { padding: 96px 0; background: var(--stone-50); }
.moments-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-top: 48px;
}
.moment-card { background: var(--white); padding: 36px 32px; }
.moment-card:hover { background: var(--off); }
.moment-num { font-family:var(--mono); font-size:11px; color:var(--stone-200); margin-bottom:14px; font-weight:500; }
.moment-q {
  font-size: 16px; font-weight: 600; letter-spacing: -.02em;
  color: var(--ink); line-height: 1.35; margin-bottom: 12px;
}
.moment-before {
  font-size: 13px; line-height: 1.65; color: var(--stone-600);
  padding: 10px 13px; background: var(--red-bg);
  border-radius: 8px; margin-bottom: 12px;
  border-left: 2px solid #fca5a5;
}
.moment-after {
  font-size: 13px; line-height: 1.65; color: var(--stone-800);
  padding: 10px 13px; background: var(--green-bg);
  border-radius: 8px;
  border-left: 2px solid #86efac;
}
.moment-after strong { color: var(--green); font-weight: 600; }
@media(max-width:760px) { .moments-grid { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────
   COPILOT SECTION
───────────────────────────────────────── */
.copilot-section { padding: 96px 0; }
.copilot-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 72px; align-items: start; margin-top: 52px;
}
.copilot-features { display:flex; flex-direction:column; gap:16px; margin-bottom:28px; }
.copilot-feat {
  display:flex; align-items:flex-start; gap:12px;
  padding:0;
}
.cf-num { font-family:var(--mono); font-size:10.5px; color:var(--stone-300); font-weight:500; margin-top:2px; flex-shrink:0; min-width:24px; }
.cf-title { font-size:15px; font-weight:600; letter-spacing:-.015em; color:var(--ink); margin-bottom:4px; }
.cf-body { font-size:13.5px; line-height:1.65; color:var(--stone-600); }
.copilot-langs {
  display:flex; flex-wrap:wrap; gap:6px; margin-top:20px;
}
.lang-pill {
  padding:4px 10px; border:1px solid var(--border-md);
  border-radius:100px; font-size:12px; color:var(--stone-600);
  background: var(--white);
}

/* chat terminal */
.chat-terminal {
  background: var(--white); border: 1px solid var(--border-md);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); position: sticky; top: 84px;
}
.ct-bar {
  background: var(--ink); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.ct-dots { display:flex; gap:6px; }
.ct-dots span { width:10px; height:10px; border-radius:50%; }
.ct-dots span:nth-child(1){background:#ff5f57}
.ct-dots span:nth-child(2){background:#febc2e}
.ct-dots span:nth-child(3){background:#28c840}
.ct-title { font-size:11.5px; color:rgba(255,255,255,.4); font-family:var(--mono); }
.ct-body { padding:18px; display:flex; flex-direction:column; gap:12px; min-height:280px; }
.ct-msg { display:flex; gap:9px; }
.ct-msg.user { flex-direction:row-reverse; }
.ct-av { width:26px; height:26px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:600; margin-top:1px; }
.ct-av.u { background:var(--ink); color:#fff; }
.ct-av.s { background:var(--stone-100); color:var(--stone-600); }
.ct-bub { max-width:88%; padding:9px 13px; border-radius:11px; font-size:13px; line-height:1.55; }
.ct-msg.user .ct-bub { background:var(--ink); color:#fff; border-radius:11px 3px 11px 11px; }
.ct-msg.st   .ct-bub { background:var(--stone-50); color:var(--ink); border-radius:3px 11px 11px 11px; }
.ct-insight { font-size:11.5px; color:var(--stone-600); margin-top:5px; font-style:italic; }
.ct-chip { display:inline-block; margin-top:7px; background:var(--white); border:1px solid var(--border-md); color:var(--stone-600); font-size:11px; padding:3px 9px; border-radius:100px; font-family:var(--mono); }
.ct-typing { display:flex; align-items:center; gap:4px; padding:10px 13px; background:var(--stone-50); border-radius:3px 11px 11px 11px; width:fit-content; }
.ct-typing span { width:5px; height:5px; border-radius:50%; background:var(--stone-400); }
.ct-typing span:nth-child(1){animation:ctBounce .9s 0s ease infinite}
.ct-typing span:nth-child(2){animation:ctBounce .9s .15s ease infinite}
.ct-typing span:nth-child(3){animation:ctBounce .9s .3s ease infinite}
@keyframes ctBounce{0%,100%{transform:translateY(0)}40%{transform:translateY(-5px)}}
.ct-footer { padding:10px 14px; border-top:1px solid var(--border); display:flex; align-items:center; gap:10px; }
.ct-input-mock { flex:1; background:var(--stone-50); border:1px solid var(--border-md); border-radius:8px; padding:8px 13px; font-size:13px; color:var(--stone-400); font-family:var(--font); white-space:nowrap; overflow:hidden; }
.ct-cursor { display:inline-block; width:2px; height:12px; background:var(--ink); margin-left:1px; vertical-align:middle; border-radius:1px; animation:ctCursor .7s step-end infinite; }
@keyframes ctCursor{0%,100%{opacity:1}50%{opacity:0}}
.ct-send { width:32px; height:32px; background:var(--ink); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; border:none; cursor:pointer; }
.ct-send svg { width:13px; height:13px; stroke:#fff; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
@media(max-width:860px) { .copilot-layout { grid-template-columns:1fr; } .chat-terminal { position:static; } }

/* ─────────────────────────────────────────
   6 MODULES — merchant focused breakdown
───────────────────────────────────────── */
.modules-section { padding: 96px 0; background: var(--stone-50); }
.modules-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-top: 52px;
}
.module-card {
  background: var(--white); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: background .15s;
}
.module-card:hover { background: var(--off); }
.module-card.dark { background: var(--ink); }
.module-card.dark:hover { background: #1a1a18; }
.mod-icon { font-size: 22px; margin-bottom: 14px; }
.mod-title { font-size: 16px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin-bottom: 8px; }
.module-card.dark .mod-title { color: #fff; }
.mod-desc { font-size: 13.5px; line-height: 1.65; color: var(--stone-600); margin-bottom: 16px; flex: 1; }
.module-card.dark .mod-desc { color: rgba(255,255,255,.45); }
.mod-qs { display:flex; flex-direction:column; gap:6px; }
.mod-q { font-size:12px; color:var(--stone-600); padding:7px 10px; background:var(--stone-50); border-radius:7px; line-height:1.4; }
.module-card.dark .mod-q { background:rgba(255,255,255,.07); color:rgba(255,255,255,.5); }
.mod-link { display:inline-flex; align-items:center; gap:4px; margin-top:16px; font-size:12.5px; font-weight:500; color:var(--ink); text-decoration:none; font-family:var(--mono); letter-spacing:.02em; }
.module-card.dark .mod-link { color:rgba(255,255,255,.6); }
.mod-link:hover { opacity:.7; }
@media(max-width:760px) { .modules-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:480px) { .modules-grid { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────
   DAILY EMAIL
───────────────────────────────────────── */
.email-section { padding: 96px 0; }
.email-layout { display:grid; grid-template-columns:1fr 1.1fr; gap:72px; align-items:center; }
.email-mock { background:var(--white); border:1px solid var(--border-md); border-radius:16px; overflow:hidden; box-shadow:var(--shadow-lg); }
.em-head { background:var(--ink); padding:16px 20px; display:flex; align-items:center; gap:12px; }
.em-icon { width:34px; height:34px; background:rgba(255,255,255,.1); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.em-icon svg { width:16px; height:16px; stroke:rgba(255,255,255,.8); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.em-head h4 { font-size:13.5px; font-weight:500; color:#fff; margin-bottom:2px; }
.em-head span { font-size:11px; color:rgba(255,255,255,.35); font-family:var(--mono); }
.em-body { padding:18px; display:flex; flex-direction:column; gap:10px; }
.em-row { display:flex; align-items:flex-start; gap:10px; padding:11px 13px; background:var(--stone-50); border-radius:10px; border:1px solid var(--border); }
.em-ico { width:28px; height:28px; border-radius:7px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:13px; }
.em-ico.up{background:var(--green-bg)} .em-ico.dn{background:var(--red-bg)} .em-ico.inf{background:#eff6ff}
.em-row h5 { font-size:13px; font-weight:500; color:var(--ink); margin-bottom:2px; }
.em-row p { font-size:12px; color:var(--stone-600); line-height:1.5; }
.em-delta { font-size:12px; font-weight:600; margin-top:2px; }
.em-delta.up{color:var(--green)} .em-delta.dn{color:var(--red)}
.em-action { display:inline-flex; align-items:center; gap:5px; margin-top:6px; padding:6px 12px; background:var(--ink); color:#fff; font-size:11.5px; font-weight:500; border-radius:7px; cursor:pointer; }
.em-action svg { width:11px; height:11px; stroke:#fff; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.email-points { display:flex; flex-direction:column; gap:18px; margin-top:32px; }
.email-point { display:flex; align-items:flex-start; gap:12px; }
.ep-icon { width:36px; height:36px; background:var(--stone-50); border:1px solid var(--border-md); border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; }
.ep-title { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:3px; letter-spacing:-.01em; }
.ep-body { font-size:13px; line-height:1.6; color:var(--stone-600); }
@media(max-width:860px) { .email-layout { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────
   MERCHANT PROOF / SCENARIOS
───────────────────────────────────────── */
.scenarios-section { padding: 96px 0; background: var(--stone-50); }
.scenarios-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:52px; }
.scenario-card {
  background:var(--white); border:1px solid var(--border-md);
  border-radius:14px; padding:28px 26px;
}
.sc-scenario { font-family:var(--mono); font-size:10px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:var(--stone-400); margin-bottom:10px; }
.sc-q { font-size:15px; font-weight:600; letter-spacing:-.02em; color:var(--ink); margin-bottom:14px; line-height:1.3; }
.sc-before { font-size:13px; color:var(--stone-600); line-height:1.6; padding:10px 13px; background:var(--red-bg); border-radius:8px; border-left:2px solid #fca5a5; margin-bottom:10px; }
.sc-answer { font-size:13px; color:var(--stone-800); line-height:1.6; padding:10px 13px; background:var(--green-bg); border-radius:8px; border-left:2px solid #86efac; }
.sc-answer strong { color:var(--green); }
@media(max-width:700px) { .scenarios-grid { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────
   AGENCY UPSELL STRIP
───────────────────────────────────────── */
.agency-strip {
  background: var(--ink); padding: 64px 28px;
  text-align: center;
}
.agency-strip h3 { font-size: clamp(22px,3vw,34px); font-weight: 700; letter-spacing: -.03em; color: #fff; margin-bottom: 12px; }
.agency-strip p { font-size:15px; color:rgba(255,255,255,.45); max-width:480px; margin:0 auto 28px; line-height:1.65; }
.agency-strip-btns { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; }
.strip-btn-wh { display:inline-flex; align-items:center; gap:6px; padding:11px 22px; background:#fff; color:var(--ink); font-size:14px; font-weight:600; border-radius:9px; text-decoration:none; transition:opacity .15s; }
.strip-btn-wh:hover { opacity:.9; }
.strip-btn-gh { display:inline-flex; align-items:center; gap:6px; padding:11px 22px; background:transparent; color:rgba(255,255,255,.55); font-size:14px; border-radius:9px; border:1px solid rgba(255,255,255,.15); text-decoration:none; transition:all .15s; }
.strip-btn-gh:hover { color:rgba(255,255,255,.85); border-color:rgba(255,255,255,.3); }

/* ─────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────── */
.final-cta { padding:112px 28px; text-align:center; border-top:1px solid var(--border); }
.final-cta h2 { font-size:clamp(30px,4.2vw,52px); font-weight:700; letter-spacing:-.04em; line-height:1.06; color:var(--ink); max-width:600px; margin:0 auto 18px; }
.final-cta h2 em { font-style:normal; font-weight:300; color:var(--stone-400); }
.final-cta p { font-size:16px; color:var(--stone-600); max-width:400px; margin:0 auto 36px; line-height:1.65; }
.final-btns { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.final-trust { display:flex; align-items:center; justify-content:center; gap:6px; font-size:12px; color:var(--stone-400); flex-wrap:wrap; }
.final-trust-sep { width:3px; height:3px; border-radius:50%; background:var(--stone-200); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: var(--ink); }
.foot-cta-zone { max-width:var(--max-w); margin:0 auto; padding:64px 28px 56px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:60px; border-bottom:1px solid rgba(255,255,255,.07); }
.foot-cta-zone h2 { font-size:clamp(24px,3vw,38px); font-weight:700; letter-spacing:-.035em; line-height:1.1; color:#fff; }
.foot-cta-zone h2 em { font-style:normal; font-weight:300; color:rgba(255,255,255,.3); }
.foot-cta-zone p { font-size:14px; color:rgba(255,255,255,.4); margin-top:8px; line-height:1.65; }
.foot-cta-btns { display:flex; flex-direction:column; gap:10px; align-items:flex-end; flex-shrink:0; }
.foot-btn-primary { display:inline-flex; align-items:center; gap:8px; padding:13px 24px; background:#fff; color:var(--ink); font-size:14px; font-weight:600; border-radius:10px; text-decoration:none; white-space:nowrap; transition:opacity .15s, transform .15s; }
.foot-btn-primary:hover { opacity:.9; transform:translateY(-1px); }
.foot-btn-ghost { display:inline-flex; align-items:center; gap:8px; padding:12px 24px; background:transparent; color:rgba(255,255,255,.5); font-size:13.5px; border-radius:10px; text-decoration:none; border:1px solid rgba(255,255,255,.12); white-space:nowrap; transition:all .15s; }
.foot-btn-ghost:hover { color:rgba(255,255,255,.8); border-color:rgba(255,255,255,.22); }
.foot-links-zone { max-width:var(--max-w); margin:0 auto; padding:48px 28px; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; border-bottom:1px solid rgba(255,255,255,.07); }
.foot-brand-logo { display:flex; align-items:center; gap:9px; text-decoration:none; margin-bottom:14px; }
.foot-manifesto { font-size:13px; line-height:1.6; color:rgba(255,255,255,.32); max-width:230px; margin-bottom:16px; }
.foot-green-tag { display:inline-flex; align-items:center; gap:5px; background:rgba(150,191,72,.1); border:1px solid rgba(150,191,72,.2); border-radius:6px; padding:3px 9px; margin-bottom:20px; font-family:var(--mono); font-size:10px; font-weight:500; color:rgba(150,191,72,.8); letter-spacing:.04em; }
.foot-green-tag::before { content:''; width:6px; height:6px; border-radius:50%; background:#96bf48; flex-shrink:0; }
.foot-socials { display:flex; gap:8px; }
.foot-soc { width:30px; height:30px; border-radius:7px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; text-decoration:none; transition:background .15s; }
.foot-soc:hover { background:rgba(255,255,255,.1); }
.foot-soc svg { width:13px; height:13px; stroke:rgba(255,255,255,.45); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.foot-nav-col h5 { font-family:var(--mono); font-size:10px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:16px; }
.foot-nav-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.foot-nav-col ul li a { font-size:13px; color:rgba(255,255,255,.45); text-decoration:none; display:flex; align-items:center; gap:5px; transition:color .15s; }
.foot-nav-col ul li a:hover { color:rgba(255,255,255,.85); }
.ft-tag { font-family:var(--mono); font-size:9px; font-weight:500; background:rgba(255,255,255,.07); border-radius:3px; padding:1px 5px; color:rgba(255,255,255,.28); letter-spacing:.05em; text-transform:uppercase; }
.foot-bar { max-width:var(--max-w); margin:0 auto; padding:18px 28px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.foot-bar-left { font-family:var(--mono); font-size:11px; color:rgba(255,255,255,.18); }
.foot-bar-right { display:flex; gap:18px; }
.foot-bar-right a { font-size:11.5px; color:rgba(255,255,255,.22); text-decoration:none; transition:color .15s; }
.foot-bar-right a:hover { color:rgba(255,255,255,.5); }
@media(max-width:900px) { .foot-cta-zone { grid-template-columns:1fr; gap:28px; } .foot-cta-btns { flex-direction:row; align-items:flex-start; } .foot-links-zone { grid-template-columns:1fr 1fr; gap:32px; } }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .55s ease, transform .55s ease; }
.reveal.in { opacity:1; transform:translateY(0); }
