/* ==========================================================
   CartPinger — Design System CSS
   Tokens, base, utilities, sections
   ========================================================== */

:root {
  --bg: #0a0a0a;
  --surface-1: #141414;
  --surface-2: #1f1f1f;
  --surface-3: #27272a;
  --border: #27272a;
  --border-strong: #3f3f46;
  --text-1: #fafafa;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --wa: #25d366;
  --wa-soft: rgba(37, 211, 102, 0.12);
  --wa-border: rgba(37, 211, 102, 0.32);
  --cyan: #06b6d4;
  --cyan-soft: rgba(6, 182, 212, 0.12);
  --mint: #4ade80;
  --coral: #f87171;

  --r-card: 12px;
  --r-btn: 8px;
  --r-badge: 6px;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { background: var(--bg); color: var(--text-1); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(37,211,102,0.06), transparent 70%),
    radial-gradient(900px 500px at 90% 400px, rgba(6,182,212,0.04), transparent 70%),
    var(--bg);
  background-attachment: fixed;
}
.mono { font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ---- Type scale ---- */
.display { font-size: clamp(44px, 7.4vw, 80px); line-height: 0.98; letter-spacing: -0.03em; font-weight: 600; }
.h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 600; }
.h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
.h3 { font-size: 24px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 600; }
.lede { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.5; color: var(--text-2); }
.micro { font-size: 13px; line-height: 1.5; color: var(--text-3); }
.eyebrow { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }

/* ---- Layout ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-hed { max-width: 760px; }
.section-hed .h2 { margin: 0 0 14px; }
.section-hed .lede { margin: 0; color: var(--text-2); max-width: 640px; }

/* ---- Reveal animations (transform/opacity only) ---- */
.reveal { opacity: 0; transform: translate3d(0, 14px, 0); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: translate3d(0,0,0); }
.reveal[data-delay="50"]  { transition-delay: 50ms; }
.reveal[data-delay="60"]  { transition-delay: 60ms; }
.reveal[data-delay="80"]  { transition-delay: 80ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="120"] { transition-delay: 120ms; }
.reveal[data-delay="180"] { transition-delay: 180ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="240"] { transition-delay: 240ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="360"] { transition-delay: 360ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="420"] { transition-delay: 420ms; }
.reveal[data-delay="480"] { transition-delay: 480ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }
.reveal[data-delay="540"] { transition-delay: 540ms; }
.reveal[data-delay="600"] { transition-delay: 600ms; }
.reveal[data-delay="700"] { transition-delay: 700ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; transition-delay: 0ms !important; }
}

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; height: 44px; border-radius: var(--r-btn); font-size: 14.5px; font-weight: 500; border: 1px solid transparent; cursor: pointer; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 200ms ease; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--wa); color: #04220f; border-color: rgba(0,0,0,0.15); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -8px rgba(37,211,102,0.55); }
.btn-primary:hover { background: #2bdc6e; }

/* Featured CTA — subtle green pulse, on hover gains a fuller halo */
.btn-glow {
  position: relative; isolation: isolate;
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.btn-glow::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  pointer-events: none; z-index: -1;
  animation: cta-halo 2.4s ease-out infinite;
}
.btn-glow:hover { animation-play-state: paused; box-shadow: 0 0 0 4px rgba(37,211,102,0.18), 0 16px 40px -10px rgba(37,211,102,0.55); transform: translateY(-1px); }
.btn-glow:hover::after { animation-play-state: paused; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -8px rgba(37,211,102,0.55); }
  50%       { box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 10px 32px -8px rgba(37,211,102,0.85); }
}
@keyframes cta-halo {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-glow, .btn-glow::after { animation: none !important; }
}
.btn-secondary { background: transparent; color: var(--text-1); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: #52525b; background: rgba(255,255,255,0.02); }
.btn-cyan { background: transparent; color: var(--text-1); border-color: rgba(6,182,212,0.4); }
.btn-cyan:hover { background: var(--cyan-soft); border-color: rgba(6,182,212,0.7); }
.btn-ghost { background: transparent; color: var(--text-2); border: 1px solid transparent; }
.btn-ghost:hover { color: var(--text-1); background: rgba(255,255,255,0.03); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 22px; font-size: 15.5px; }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ---- Badge / chip ---- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 10px;
  border-radius: var(--r-badge);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-2);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wa); position: relative; }
.badge .dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--wa); opacity: 0.5; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.6; } 100% { transform: scale(2.2); opacity: 0; } }

.chip { display: inline-flex; align-items: center; gap: 6px; height: 22px; padding: 0 8px; border-radius: 4px; font-size: 11.5px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-2); }
.chip-mint { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.25); color: var(--mint); }
.chip-wa { background: var(--wa-soft); border-color: var(--wa-border); color: #6ee19f; }
.chip-cyan { background: var(--cyan-soft); border-color: rgba(6,182,212,0.25); color: #67e8f9; }
.chip-coral { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.22); color: #fca5a5; }

/* ---- Surface card ---- */
.surface { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-card); transition: transform 280ms cubic-bezier(0.16,1,0.3,1), border-color 240ms ease, box-shadow 280ms cubic-bezier(0.16,1,0.3,1); }
.surface-2 { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-card); transition: transform 280ms cubic-bezier(0.16,1,0.3,1), border-color 240ms ease, box-shadow 280ms cubic-bezier(0.16,1,0.3,1); }

/* Premium hover lift */
.bento .b:hover,
.step:not(.featured):hover,
.rm-col:hover,
.price-card:not(.muted):hover,
.founder-link:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 28px 56px -28px rgba(0,0,0,0.6), 0 0 0 1px var(--border-strong); }
.step.featured:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgba(37,211,102,0.35), 0 0 0 1px var(--wa-border); }
.price-card.founder:hover { transform: translateY(-4px); box-shadow: 0 36px 72px -28px rgba(37,211,102,0.45), 0 0 0 1px var(--wa-border); }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; }
.brand-mark { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--wa) 0%, var(--cyan) 100%); display: grid; place-items: center; position: relative; overflow: hidden; transition: transform 400ms cubic-bezier(0.16,1,0.3,1); }
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.05); }
.brand-mark svg { width: 14px; height: 14px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 8px 10px; color: var(--text-2); font-size: 14px; border-radius: 6px; transition: color 140ms; }
.nav-links a:hover { color: var(--text-1); }
.lang { display: inline-flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,0.02); }
.lang button { background: transparent; color: var(--text-3); border: 0; padding: 4px 8px; border-radius: 5px; font-size: 12px; cursor: pointer; }
.lang button.active { background: rgba(255,255,255,0.06); color: var(--text-1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .lang { display: none; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.hero-mesh { position: absolute; inset: -100px -50px 0; pointer-events: none; opacity: 0.55; z-index: 0; }
.hero-mesh::before, .hero-mesh::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
  animation: mesh 14s ease-in-out infinite alternate;
}
.hero-mesh::before { width: 520px; height: 520px; left: 10%; top: 0; background: radial-gradient(circle at 30% 30%, rgba(37,211,102,0.28), transparent 60%); }
.hero-mesh::after { width: 480px; height: 480px; right: 5%; top: 80px; background: radial-gradient(circle at 70% 60%, rgba(6,182,212,0.22), transparent 60%); animation-duration: 18s; }
@keyframes mesh { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(20px, -10px, 0) scale(1.06); } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { margin: 0 0 22px; }
.hero h1 .word { display: inline-block; }
.hero h1.go .word { animation: word-in 700ms cubic-bezier(0.16,1,0.3,1) both; }
.hero h1 .space { display: inline-block; width: 0.27em; }
@keyframes word-in { from { opacity: 0; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: translate3d(0,0,0); } }

.hero-sub { max-width: 580px; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-micro { color: var(--text-3); font-size: 13px; display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-micro span { display: inline-flex; align-items: center; gap: 6px; }
.tick { color: var(--wa); }

.trust { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatars .av {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -8px; background: linear-gradient(135deg, #444, #222); display: grid; place-items: center;
  font-size: 11px; font-weight: 600; color: var(--text-1);
}
.avatars .av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #f59e0b, #ef4444) !important; }
.av-2 { background: linear-gradient(135deg, #06b6d4, #3b82f6) !important; }
.av-3 { background: linear-gradient(135deg, #25d366, #16a34a) !important; }
.av-4 { background: linear-gradient(135deg, #a855f7, #ec4899) !important; }
.av-5 { background: linear-gradient(135deg, #f43f5e, #f97316) !important; }
.trust-text { font-size: 13px; color: var(--text-2); }
.trust-text b { color: var(--text-1); font-weight: 600; }

/* iPhone mockup */
.hero-right { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: 620px; }
.iphone {
  position: relative; width: 320px; height: 640px;
  background: #0d0d0f;
  border: 1px solid #2a2a2e;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 8px #1a1a1d, 0 0 0 9px #2a2a2e;
}
.iphone.go { animation: phone-in 900ms cubic-bezier(0.16,1,0.3,1) both; }
@keyframes phone-in { 0% { opacity: 0; transform: translate3d(40px, 0, 0) rotate(6deg); } 100% { opacity: 1; transform: translate3d(0,0,0) rotate(0); } }
.iphone-screen {
  position: relative; width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.04), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03), transparent 30%),
    linear-gradient(180deg, #0d1a16 0%, #0b1410 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.iphone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; background: #000; border-radius: 16px; z-index: 2;
}
.wa-bar { display: flex; align-items: center; gap: 10px; padding: 44px 14px 10px; background: #1f2c2a; border-bottom: 1px solid rgba(255,255,255,0.05); }
.wa-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--wa), #16a34a); display: grid; place-items: center; font-size: 13px; font-weight: 600; color: #04220f; }
.wa-store { font-size: 13px; font-weight: 600; color: #e5e7eb; line-height: 1.1; }
.wa-status { font-size: 11px; color: #9ca3af; }
.wa-icons { margin-left: auto; display: flex; gap: 12px; color: #9ca3af; font-size: 16px; }
.wa-thread { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.bubble { max-width: 78%; padding: 8px 10px; border-radius: 8px; font-size: 13px; line-height: 1.35; position: relative; box-shadow: 0 1px 0 rgba(0,0,0,0.2); }
.bubble.in { background: #1f2c29; color: #e5e7eb; align-self: flex-start; border-top-left-radius: 2px; }
.bubble.out { background: #056162; color: #f0fdf4; align-self: flex-end; border-top-right-radius: 2px; }
.bubble .time { display: block; font-size: 10px; opacity: 0.6; margin-top: 2px; text-align: right; }
.inline-actions { display: flex; flex-direction: column; gap: 2px; align-self: flex-end; width: 78%; }
.inline-actions button { background: #056162; color: #e0f2fe; border: 0; border-top: 1px solid rgba(255,255,255,0.08); padding: 9px 10px; font-size: 13px; cursor: pointer; text-align: center; }
.inline-actions button:first-child { border-radius: 8px 8px 0 0; border-top: 0; }
.inline-actions button:last-child { border-radius: 0 0 8px 8px; }
.inline-actions button:hover { background: #066d6e; }
.wa-input { display: flex; align-items: center; gap: 8px; padding: 8px 10px 14px; background: #0b1410; }
.wa-input .field { flex: 1; height: 32px; background: #1f2c29; border-radius: 16px; }
.wa-input .send { width: 32px; height: 32px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; color: #04220f; font-size: 14px; }

/* Floating admin card */
.admin-card {
  position: absolute;
  left: -40px; bottom: 36px;
  width: 240px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(20,20,20,0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.6);
}
.admin-card.go { animation: card-in 700ms cubic-bezier(0.16,1,0.3,1) 800ms both; }
@keyframes card-in { 0% { opacity: 0; transform: scale(0.9) translateY(8px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
.admin-card .ac-label { font-size: 11px; color: var(--text-3); letter-spacing: 0.04em; text-transform: uppercase; }
.admin-card .ac-num { font-family: "Geist Mono", monospace; font-size: 28px; color: var(--mint); margin: 4px 0 2px; letter-spacing: -0.02em; }
.admin-card .ac-row { font-size: 12.5px; color: var(--text-2); display: flex; justify-content: space-between; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.admin-card .ac-row b { color: var(--text-1); font-weight: 500; font-family: "Geist Mono", monospace; }

@media (max-width: 960px) {
  .hero-right { min-height: 700px; }
  .iphone { transform: scale(0.95); }
  .admin-card { left: auto; right: -20px; bottom: 0; }
}
@media (max-width: 480px) {
  .hero-right { min-height: 620px; }
  .iphone { transform: scale(0.85); }
  .admin-card { right: -8px; }
}

/* ==========================================================
   LOGOS STRIP
   ========================================================== */
.logos { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; color: var(--text-3); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 56px; }
.logo-item { color: var(--text-3); opacity: 0.7; transition: opacity 220ms ease, color 220ms ease, transform 220ms ease; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 8px; }
.logo-item:hover { opacity: 1; color: var(--text-1); transform: translateY(-1px); }
.logo-item .lo-mark { width: 18px; height: 18px; display: grid; place-items: center; }
@media (max-width: 720px) { .logos-row { gap: 28px; } }

/* ==========================================================
   PROBLEM (3 stat cards)
   ========================================================== */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { padding: 36px 28px; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; }
.stat-num { font-family: "Geist Mono", monospace; font-size: 88px; letter-spacing: -0.04em; line-height: 1; }
.stat-num.dim { color: var(--text-2); }
.stat-num.mint { color: var(--mint); }
.stat-text { color: var(--text-2); font-size: 15px; line-height: 1.5; margin-top: 16px; max-width: 280px; }
.stat-src { color: var(--text-3); font-size: 12px; margin-top: 14px; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; position: relative; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 28px; position: relative; display: flex; flex-direction: column; gap: 16px; }
.step.featured { border-color: var(--wa-border); background: linear-gradient(180deg, rgba(37,211,102,0.05), var(--surface-1)); }
.step-no { font-family: "Geist Mono", monospace; font-size: 13px; color: var(--text-3); letter-spacing: 0.06em; }
.step h3 { margin: 0; }
.step p { margin: 0; color: var(--text-2); font-size: 14.5px; }
.step-visual { height: 160px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border); padding: 14px; overflow: hidden; position: relative; }
.step-foot { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* step 1: WP plugin tile */
.wp-mock { display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: var(--text-2); }
.wp-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 6px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); }
.wp-row.active { border-color: var(--wa-border); background: var(--wa-soft); color: #d1fae5; }
.wp-dot { width: 16px; height: 16px; border-radius: 4px; background: linear-gradient(135deg, var(--wa), var(--cyan)); flex-shrink: 0; }
.wp-name { flex: 1; }
.wp-status { font-size: 10px; color: var(--text-3); }
.wp-row.active .wp-status { color: var(--wa); }

/* step 2: wizard */
.wz { display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.wz-bar { display: flex; gap: 4px; }
.wz-bar span { flex: 1; height: 4px; border-radius: 2px; background: var(--border); }
.wz-bar span.done { background: var(--wa); }
.wz-bar span.cur { background: var(--cyan); animation: cur 1.6s ease-in-out infinite; }
@keyframes cur { 50% { opacity: 0.4; } }
.wz-step { color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.wz-step .ic { width: 14px; height: 14px; border-radius: 50%; background: var(--wa); display: inline-grid; place-items: center; font-size: 9px; color: #04220f; }
.wz-step.pending .ic { background: var(--surface-3); color: var(--text-3); }
.wz-step.cur { color: var(--text-1); }
.wz-step.cur .ic { background: var(--cyan); color: #04220f; }

/* step 3: toggles */
.toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tg { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 6px; font-size: 11.5px; color: var(--text-2); }
.tg .sw { width: 24px; height: 14px; border-radius: 8px; background: var(--surface-3); position: relative; flex-shrink: 0; transition: background 200ms; }
.tg .sw::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; top: 2px; left: 2px; transition: left 200ms; }
.tg.on .sw { background: var(--wa); }
.tg.on .sw::after { left: 12px; }
.tg.on { color: var(--text-1); }

/* ==========================================================
   BENTO
   ========================================================== */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 48px; grid-auto-rows: minmax(180px, auto); }
.bento .b { padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: transform 280ms cubic-bezier(0.16,1,0.3,1), border-color 240ms ease, box-shadow 280ms cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden; }
.bento h3 { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: -0.015em; }
.bento p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.5; }
.b-6-2 { grid-column: span 6; grid-row: span 2; }
.b-6-1 { grid-column: span 6; grid-row: span 1; }
.b-4-1 { grid-column: span 4; grid-row: span 1; }
.b-3-1 { grid-column: span 3; grid-row: span 1; }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .b-6-2, .b-6-1 { grid-column: span 6; grid-row: span 1; }
  .b-4-1, .b-3-1 { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento .b { grid-column: span 1 !important; }
}

.feat-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.feat-bullets li { font-size: 13px; color: var(--text-2); padding-left: 16px; position: relative; }
.feat-bullets li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--wa); }

/* Big bento: WA conversation sequence */
.bento-conv { flex: 1; background: linear-gradient(180deg, #0b1410, #0d1a16); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 220px; }
.conv-row { display: flex; gap: 10px; align-items: flex-start; }
.conv-row .stamp { flex-shrink: 0; font-family: "Geist Mono", monospace; font-size: 10.5px; color: var(--text-3); width: 56px; padding-top: 4px; }
.conv-bubble { background: #056162; color: #f0fdf4; padding: 8px 10px; border-radius: 8px; font-size: 12.5px; line-height: 1.45; max-width: 76%; }
.conv-bubble.soft { background: #1d3a35; }
.conv-bubble.urgent { background: #1d3a35; border: 1px solid rgba(247,113,113,0.2); }
.conv-bubble small { display: block; font-size: 11px; color: var(--mint); margin-top: 4px; }

/* Wizard mock */
.wz-mock { display: flex; flex-direction: column; gap: 8px; font-size: 12px; padding: 14px; background: var(--surface-2); border-radius: 10px; border: 1px solid var(--border); }
.wz-mock .title { font-size: 12.5px; color: var(--text-1); display: flex; gap: 8px; align-items: center; }
.wz-mock .spinner { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--cyan); border-top-color: transparent; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Cost calc mini */
.cc-mini { display: flex; align-items: center; gap: 10px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px; font-family: "Geist Mono", monospace; font-size: 12.5px; }
.cc-mini .l { color: var(--text-3); }
.cc-mini .out { color: var(--mint); }
.cc-mini .arrow { color: var(--text-3); }

/* Lang flags */
.lang-row { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; font-size: 12px; color: var(--text-2); }

/* Order notif */
.notif { display: flex; flex-direction: column; gap: 8px; }
.notif-card { display: flex; gap: 10px; padding: 10px 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; align-items: flex-start; }
.notif-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--wa-soft); border: 1px solid var(--wa-border); display: grid; place-items: center; color: var(--wa); font-size: 14px; flex-shrink: 0; }
.notif-body .head { font-size: 12.5px; color: var(--text-1); }
.notif-body .body { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* OTP */
.otp-mock { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.otp-bubble { background: #056162; color: #f0fdf4; padding: 10px 12px; border-radius: 8px; font-size: 13px; max-width: 100%; }
.otp-code { font-family: "Geist Mono", monospace; font-size: 22px; letter-spacing: 0.3em; color: #ecfeff; margin-top: 4px; }

/* Open source */
.os-mock { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; font-size: 12.5px; }
.os-mock .star { color: #eab308; }

/* Compliance */
.compl-mock { display: flex; gap: 8px; align-items: center; padding: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; font-size: 12px; color: var(--text-2); }
.compl-mock .shield { color: var(--cyan); }

/* Logs de notificaciones */
.logs-mock {
  background: linear-gradient(180deg, #0e0e10, #0a0a0c);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11.5px;
  min-height: 160px;
}
.log-row {
  display: grid;
  grid-template-columns: 70px 90px 1fr;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.04);
}
.log-row:last-child { border-bottom: 0; }
.log-stamp { color: var(--text-3); font-size: 11px; }
.log-id { color: var(--text-2); font-size: 11px; }
.log-stat { font-size: 10.5px; letter-spacing: 0.06em; font-weight: 500; }
.log-stat.ok    { color: var(--mint); }
.log-stat.read  { color: var(--cyan); }
.log-stat.reply { color: #67e8f9; }
.log-stat.fail  { color: var(--coral); }

/* ==========================================================
   CALCULATOR
   ========================================================== */
.calc { padding: 48px; margin-top: 48px; background: linear-gradient(180deg, var(--surface-1), #101010); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; gap: 32px; } .calc { padding: 28px; } }

.input-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.input-group label { font-size: 13px; color: var(--text-2); display: flex; justify-content: space-between; }
.input-group label b { color: var(--text-1); font-family: "Geist Mono", monospace; font-weight: 500; }
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: var(--surface-3); border-radius: 2px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%; background: var(--text-1); border: 3px solid var(--bg);
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 120ms;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--text-1); border: 3px solid var(--bg); cursor: pointer;
}
.seg { display: flex; gap: 4px; padding: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; }
.seg button { flex: 1; background: transparent; border: 0; color: var(--text-3); font-size: 12.5px; padding: 8px 6px; border-radius: 5px; cursor: pointer; font-family: inherit; transition: background 160ms, color 160ms; }
.seg button.active { background: rgba(255,255,255,0.06); color: var(--text-1); }
.seg button:hover:not(.active) { color: var(--text-2); }

.calc-out { display: flex; flex-direction: column; gap: 16px; }
.out-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--border); }
.out-row .l { font-size: 13.5px; color: var(--text-2); }
.out-row .v { font-family: "Geist Mono", monospace; font-size: 18px; color: var(--text-1); }
.diff { text-align: center; padding: 24px; background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.18); border-radius: 12px; }
.diff .l { font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.diff .v { font-family: "Geist Mono", monospace; font-size: 44px; color: var(--mint); letter-spacing: -0.03em; }
.diff .sub { font-size: 12.5px; color: var(--text-3); margin-top: 6px; }
.calc-bars { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.bar { display: grid; grid-template-columns: 110px 1fr 80px; align-items: center; gap: 12px; }
.bar .label { font-size: 12.5px; color: var(--text-2); }
.bar .track { background: var(--surface-3); height: 10px; border-radius: 5px; overflow: hidden; }
.bar .fill { height: 100%; border-radius: 5px; transition: width 400ms cubic-bezier(0.16,1,0.3,1); }
.bar.wa .fill { background: var(--wa); }
.bar.comp .fill { background: var(--coral); }
.bar .val { font-family: "Geist Mono", monospace; font-size: 12.5px; color: var(--text-1); text-align: right; }
.calc-meta { margin-top: 18px; padding: 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; color: var(--text-2); }
.calc-meta b { color: var(--text-1); font-family: "Geist Mono", monospace; font-weight: 500; }

/* ==========================================================
   COMPARE TABLE
   ========================================================== */
.cmp-wrap { margin-top: 40px; overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; }
.cmp { width: 100%; border-collapse: collapse; min-width: 880px; font-size: 13.5px; }
.cmp th, .cmp td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.cmp th { font-weight: 500; color: var(--text-3); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; background: var(--surface-1); position: sticky; top: 0; }
.cmp th:first-child { background: var(--surface-1); }
.cmp td:first-child { color: var(--text-1); font-weight: 500; position: sticky; left: 0; background: var(--bg); }
.cmp tbody tr:hover td { background: rgba(255,255,255,0.015); }
.cmp tbody tr:hover td:first-child { background: #0e0e0e; }
.cmp .wcol { background: rgba(37,211,102,0.04); position: relative; }
.cmp th.wcol { background: rgba(37,211,102,0.07); color: var(--wa); }
.cmp tbody tr:first-child td.wcol { border-top: 1px solid var(--wa-border); }
.cmp tbody tr:last-child td.wcol { border-bottom: 1px solid var(--wa-border); }
.cmp td.wcol { border-left: 1px solid var(--wa-border); border-right: 1px solid var(--wa-border); }
.cmp .yes { color: var(--mint); }
.cmp .no { color: var(--text-3); }
.cell { display: inline-flex; align-items: center; gap: 6px; cursor: help; position: relative; }
.cell .tip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--surface-2); border: 1px solid var(--border-strong); padding: 8px 10px; border-radius: 6px;
  font-size: 12px; color: var(--text-1); white-space: normal; width: 200px; line-height: 1.4;
  opacity: 0; pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; z-index: 10;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.6);
}
.cell:hover .tip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================
   PRICING
   ========================================================== */
.pricing-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: 40px; }
.pricing-grid.pricing-grid-single { grid-template-columns: minmax(0, 640px); justify-content: center; }
@media (max-width: 860px) { .pricing-grid, .pricing-grid.pricing-grid-single { grid-template-columns: 1fr; } }

.price-card { padding: 36px; position: relative; overflow: hidden; }
.price-card.founder { border-color: var(--wa-border); background: linear-gradient(180deg, rgba(37,211,102,0.08), var(--surface-1) 60%); box-shadow: 0 30px 60px -30px rgba(37,211,102,0.3); }
.price-card.founder::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,211,102,0.18), transparent 60%);
  filter: blur(40px); pointer-events: none;
  animation: glow 6s ease-in-out infinite alternate;
}
@keyframes glow { from { opacity: 0.6; } to { opacity: 1; } }
.price-card .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; position: relative; }
.price-num { font-family: "Geist Mono", monospace; font-size: 64px; letter-spacing: -0.04em; line-height: 1; margin: 18px 0 4px; position: relative; }
.price-sub { color: var(--text-2); font-size: 14px; position: relative; }
.price-after-beta { margin-top: 10px; font-size: 13px; color: var(--text-3); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 12px; position: relative; }
.price-after-beta b { color: var(--cyan); }
.price-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 10px; position: relative; }
.price-list li { display: flex; gap: 10px; font-size: 14px; color: var(--text-2); }
.price-list li .ch { color: var(--wa); flex-shrink: 0; margin-top: 3px; }
.price-card.muted { opacity: 0.9; }
.price-card.muted .price-num { color: var(--text-2); }

/* ==========================================================
   ROADMAP
   ========================================================== */
.rm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.rm-grid.rm-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
@media (max-width: 960px) { .rm-grid { grid-template-columns: repeat(2, 1fr); } .rm-grid.rm-grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .rm-grid { grid-template-columns: 1fr; } }
.rm-col { padding: 22px; }
.rm-col-h { margin: 0 0 16px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.rm-col.done .rm-col-h { color: var(--mint); }
.rm-col.prog .rm-col-h { color: var(--cyan); }
.rm-col.next .rm-col-h { color: var(--text-1); }
.rm-col.fut  .rm-col-h { color: var(--text-3); }
.rm-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.rm-list li { font-size: 13.5px; color: var(--text-2); padding: 10px 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; gap: 10px; }
.rm-list li .ic { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; display: grid; place-items: center; font-size: 9px; }
.rm-col.done .ic { background: var(--mint); color: #04220f; }
.rm-col.prog .ic { background: var(--cyan); color: #04220f; }
.rm-col.next .ic { background: var(--surface-3); color: var(--text-2); }
.rm-col.fut  .ic { background: var(--surface-3); color: var(--text-3); }
.rm-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 14.5px; color: var(--cyan); }
.rm-link:hover { color: #67e8f9; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; max-width: 820px; }
.faq-item { background: var(--surface-1); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; transition: border-color 200ms ease; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { padding: 18px 22px; cursor: pointer; list-style: none; display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--text-1); font-weight: 500; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; margin-left: auto; width: 12px; height: 12px; border-right: 1.5px solid var(--text-2); border-bottom: 1.5px solid var(--text-2); transform: rotate(45deg); transition: transform 240ms ease; }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .a { padding: 0 22px 20px; color: var(--text-2); font-size: 14.5px; line-height: 1.6; max-width: 700px; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final {
  text-align: center; padding: 120px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at center top, rgba(37,211,102,0.08), transparent 60%), var(--bg);
  border-top: 1px solid var(--border);
}
.final h2 { margin: 0 auto 18px; max-width: 920px; }
.final .lede { margin: 0 auto 32px; max-width: 560px; }
.micro-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; color: var(--text-3); font-size: 13px; margin-top: 22px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--border); background: #070707; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand { font-size: 13.5px; color: var(--text-3); max-width: 240px; }
.foot-brand .brand { margin-bottom: 12px; }
.foot-col h5 { margin: 0 0 14px; font-size: 12px; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col li a { color: var(--text-2); font-size: 13.5px; transition: color 160ms ease, transform 160ms ease; display: inline-block; }
.foot-col li a:hover { color: var(--text-1); transform: translateX(2px); }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.foot-bottom .copy { color: var(--text-3); font-size: 12.5px; }
.foot-bottom .made { color: var(--text-3); font-size: 12.5px; display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom .made a { color: var(--text-3); transition: color 160ms ease; }
.foot-bottom .made a:hover { color: var(--text-1); }

/* ==========================================================
   WAITLIST FORM
   ========================================================== */
.waitlist {
  display: flex; gap: 8px; align-items: center;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 10px; padding: 6px;
  width: 100%; max-width: 440px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.waitlist:focus-within { border-color: var(--wa-border); box-shadow: 0 0 0 4px rgba(37,211,102,0.08); }
.waitlist input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: none;
  color: var(--text-1); font-family: inherit; font-size: 14.5px;
  padding: 0 10px; height: 40px;
}
.waitlist input::placeholder { color: var(--text-3); }
.waitlist .btn { height: 40px; padding: 0 16px; flex-shrink: 0; }
.waitlist.success {
  border-color: var(--wa-border);
  background: linear-gradient(180deg, rgba(37,211,102,0.06), var(--surface-1));
}
.waitlist-msg { display: flex; align-items: center; gap: 10px; padding: 10px 14px; color: var(--mint); font-size: 14px; }
.waitlist-msg .mono { color: var(--text-2); }
.waitlist-row { display: flex; flex-direction: column; gap: 8px; }
.waitlist-row .micro { color: var(--text-3); font-size: 12.5px; }
.waitlist-center { margin-left: auto; margin-right: auto; }

/* Hero microcopy (FOMO) */
.hero-microcopy {
  display: inline-flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px;
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-2);
  max-width: 440px;
  line-height: 1.45;
}
.hero-microcopy .warn { color: var(--coral); flex-shrink: 0; line-height: 1.45; }
.hero-microcopy b { color: var(--text-1); font-weight: 500; }

/* Built-in-public ribbon */
.bip-strip {
  margin: 0 auto 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-2);
}
.bip-strip b { color: var(--text-1); font-weight: 500; }
.bip-strip .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); position: relative; }
.bip-strip .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--cyan); opacity: 0.5; animation: pulse 2.4s ease-out infinite; }

/* Anchors offset for sticky nav */
section[id] { scroll-margin-top: 80px; }

/* ==========================================================
   HERO — new accurate elements
   ========================================================== */

/* iPhone: time separator */
.wa-time-sep {
  text-align: center; font-size: 10.5px; color: var(--text-3);
  padding: 4px 10px; margin: 2px 0;
}

/* iPhone: recovery link inside bubble */
.recovery-link {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px; color: #67e8f9;
  margin-top: 4px; word-break: break-all;
}

/* iPhone: delivery status row */
.delivery-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; color: var(--text-3);
  align-self: flex-end;
}
.ds-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
}
.ds-dot.delivered { background: #60a5fa; }

/* Admin card header */
.ac-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.ac-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--mint); font-weight: 500; letter-spacing: 0.04em;
}
.ac-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
  animation: pulse 2.4s ease-out infinite;
}
.ac-sub { font-size: 11.5px; color: var(--text-3); margin-bottom: 10px; }
.ac-divider { height: 1px; background: var(--border); margin: 10px 0; }

/* CI badge in trust row */
.ci-badge {
  display: inline-flex; align-items: center; gap: 7px;
  height: 26px; padding: 0 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  font-size: 12px;
  transition: border-color 160ms ease;
}
.ci-badge:hover { border-color: var(--border-strong); }
.ci-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint);
}
.ci-label { color: var(--text-3); font-size: 11px; letter-spacing: 0.06em; }
.ci-status { color: var(--mint); font-weight: 500; font-size: 11.5px; }
.trust-sep { width: 1px; height: 20px; background: var(--border); display: inline-block; }

/* ==========================================================
   BENTO — new accurate cards
   ========================================================== */

/* Widget mock */
.widget-mock {
  background: linear-gradient(180deg, #0e0e10, #131315);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 16px; position: relative; min-height: 80px;
  display: flex; align-items: flex-end; justify-content: flex-end; gap: 10px;
}
.wdg-preview {
  display: flex; align-items: flex-end; gap: 10px; width: 100%;
}
.wdg-bubble {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px 10px 0 10px;
  padding: 8px 12px; font-size: 12.5px; color: var(--text-2);
  flex: 1;
}
.wdg-fab {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 4px 16px -4px rgba(37,211,102,0.6);
  color: #04220f;
}

/* Dashboard KPI mock */
.kpi-mock {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
  display: flex; flex-direction: column; gap: 0;
}
.kpi-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 12.5px;
}
.kpi-row:last-child { border-bottom: 0; }
.kpi-label { color: var(--text-2); }
.kpi-val { color: var(--text-1); font-size: 15px; }

/* GDPR mock */
.gdpr-mock {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
}
.gdpr-check {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: var(--text-2); line-height: 1.4;
}
.gdpr-box {
  width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
  background: var(--wa); display: grid; place-items: center;
  color: #04220f; margin-top: 1px;
}

/* ==========================================================
   TECH SECTION
   ========================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.tech-grid .terminal { grid-column: 1; grid-row: 1 / 3; }
.tech-grid .tech-payload { grid-column: 2; grid-row: 1; }
.tech-grid .tech-stack-cards { grid-column: 2; grid-row: 2; }

@media (max-width: 860px) {
  .tech-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .tech-grid .terminal,
  .tech-grid .tech-payload,
  .tech-grid .tech-stack-cards { grid-column: 1; grid-row: auto; }
}

/* Terminal */
.terminal {
  background: #0e0e10;
  border: 1px solid #2a2a2e;
  border-radius: 12px;
  overflow: hidden;
}
.term-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #1a1a1d;
  border-bottom: 1px solid #2a2a2e;
}
.term-dot { width: 12px; height: 12px; border-radius: 50%; }
.term-title {
  margin-left: 8px; font-size: 12px; color: var(--text-3);
}
.term-body {
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
  font-family: "Geist Mono", monospace;
  font-size: 12.5px; line-height: 1.55;
}
.term-line { color: var(--text-2); white-space: pre-wrap; }
.term-line.dim { color: var(--text-3); }
.term-line.ok { color: var(--mint); }
.term-prompt { color: var(--wa); margin-right: 8px; }
.term-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--text-2); vertical-align: -2px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* API Payload */
.tech-payload {
  background: #0e0e10;
  border: 1px solid #2a2a2e;
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.payload-label {
  padding: 10px 16px;
  background: #1a1a1d;
  border-bottom: 1px solid #2a2a2e;
  font-size: 11px; color: var(--cyan);
  letter-spacing: 0.02em;
}
.payload-body {
  flex: 1; overflow: auto; padding: 16px;
}
.payload-body pre {
  margin: 0;
  font-family: "Geist Mono", monospace;
  font-size: 11.5px; line-height: 1.6;
  color: var(--text-2);
  white-space: pre;
}

/* Tech stack cards */
.tech-stack-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ts-card {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.ts-label {
  font-size: 10.5px; color: var(--text-3);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}
.ts-val {
  font-size: 14px; color: var(--text-1); font-weight: 500;
  letter-spacing: -0.01em;
}
.ts-sub {
  font-size: 11px; color: var(--text-3); line-height: 1.4;
}

/* Roadmap 4-column reset (use full grid) */
.rm-grid { grid-template-columns: repeat(4, 1fr); max-width: unset; }
@media (max-width: 960px) { .rm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rm-grid { grid-template-columns: 1fr; } }
