/* ─────────────────────────────────────────────────────────────
   BACKSTOCK · LANDING v2 SHARED STYLES
   ───────────────────────────────────────────────────────────── */

:root {
  --bg: #0D0D0D;
  --bg-elev: #141414;
  --bg-card: #171717;
  --bg-card-hover: #1C1C1C;
  --surface: #1A1A1A;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --border-strong: rgba(255,255,255,0.18);
  --text: #F4F4F2;
  --text-secondary: #9C9C9A;
  --text-tertiary: #6E6E6C;
  --accent: #FF8C42;
  --accent-glow: rgba(255,140,66,0.12);
  --accent-dark: #E87A30;
  --accent-light: #FFB07A;
  --warning: #F6C23B;
  --danger: #F6563B;
  --success: #34D399;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --container: 1140px;
  --space-section: 88px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family:'DM Sans',sans-serif;
  background:var(--bg); color:var(--text);
  overflow-x:hidden; line-height:1.6;
  -webkit-font-smoothing:antialiased;
  max-width:100vw;
}

/* ─── LAYOUT ─── */
.container { max-width:var(--container); margin:0 auto; padding:0 28px; width:100%; }

.section { padding:var(--space-section) 0; position:relative; }
.section--alt { background:var(--bg-elev); }
.section--tight { padding:56px 0; }

/* ─── TYPE ─── */
.eyebrow {
  display:inline-block;
  font-family:'Space Mono',monospace;
  font-size:11px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  color:var(--text-tertiary);
}
.eyebrow--accent { color:var(--accent); }
.eyebrow--hair { position:relative; padding-left:28px; }
.eyebrow--hair::before {
  content:''; position:absolute; left:0; top:50%;
  width:18px; height:1px; background:var(--text-tertiary);
}
.eyebrow--accent.eyebrow--hair::before { background:var(--accent); }

h1,h2,h3,h4 { font-family:'Outfit',sans-serif; font-weight:800; letter-spacing:-0.02em; line-height:1.05; }

.display {
  font-family:'Outfit',sans-serif;
  font-weight:800;
  font-size:clamp(42px,6.2vw,76px);
  line-height:1.02;
  letter-spacing:-0.035em;
}
.display .accent {
  background:linear-gradient(135deg,var(--accent) 0%,var(--accent-light) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.display .quiet { color:var(--text-tertiary); font-weight:800; }

.headline {
  font-family:'Outfit',sans-serif; font-weight:800;
  font-size:clamp(32px,3.8vw,48px);
  line-height:1.08; letter-spacing:-0.025em;
}

.subhead {
  font-size:clamp(17px,1.6vw,20px);
  color:var(--text-secondary);
  line-height:1.55;
  max-width:620px;
  text-wrap:pretty;
}

.sectionhead { text-align:center; margin:0 auto 52px; max-width:720px; }
.sectionhead .eyebrow { margin-bottom:16px; }
.sectionhead h2 { margin-bottom:14px; text-wrap:balance; }
.sectionhead p { color:var(--text-secondary); font-size:17px; line-height:1.65; max-width:560px; margin:0 auto; }

/* ─── NAV ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(13,13,13,0.72);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  border-bottom:1px solid var(--border);
  padding:14px 0;
}
nav .container { display:flex; align-items:center; justify-content:space-between; }
.logo {
  font-family:'Outfit',sans-serif; font-weight:800; font-size:22px;
  color:var(--text); text-decoration:none; letter-spacing:-0.02em;
  line-height:1;
}
.logo span { color:var(--accent); }
.logo-sub {
  display:block; font-size:10px; font-weight:600;
  color:var(--text-tertiary); letter-spacing:1.8px;
  text-transform:uppercase; margin-top:2px;
  font-family:'Space Mono',monospace;
}
.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { color:var(--text-secondary); text-decoration:none; font-size:14px; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:var(--text); }
.nav-links a.active { color:var(--text); }

/* Right-side cluster so the cross-link stays visible on mobile */
.nav-right { display:flex; align-items:center; gap:28px; }
.nav-cross {
  color:var(--text-secondary); text-decoration:none;
  font-size:14px; font-weight:500; transition:color 0.2s;
  white-space:nowrap;
}
.nav-cross:hover { color:var(--text); }
.nav-login {
  padding:9px 18px; border-radius:100px;
  background:var(--accent); color:#0D0D0D !important;
  font-weight:700 !important; font-size:13px !important;
  white-space:nowrap; letter-spacing:-0.01em;
}
.nav-login:hover { background:var(--accent-dark); }

/* ─── MOBILE NAV (hamburger) ─── */
.nav-toggle {
  display:none;
  width:40px; height:40px;
  background:transparent; border:1px solid var(--border);
  border-radius:10px; cursor:pointer;
  flex-direction:column; align-items:center; justify-content:center; gap:4px;
  padding:0; margin-left:auto;
  transition:border-color 0.2s, background 0.2s;
}
.nav-toggle:hover { border-color:var(--border-hover); background:rgba(255,255,255,0.03); }
.nav-toggle span {
  display:block; width:18px; height:2px;
  background:var(--text); border-radius:2px;
  transition:transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }

@media (max-width:820px) {
  nav { padding:12px 0; }
  .nav-toggle { display:flex; }
  .nav-right { gap:10px; }
  .nav-cross {
    padding:8px 12px; font-size:13px; font-weight:600;
    border:1px solid var(--border); border-radius:10px;
    color:var(--text);
  }
  .nav-cross:hover { border-color:var(--border-hover); background:rgba(255,255,255,0.03); }
  .nav-links {
    position:fixed; top:66px; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    padding:16px 20px 24px;
    background:rgba(13,13,13,0.96);
    backdrop-filter:blur(24px) saturate(180%);
    -webkit-backdrop-filter:blur(24px) saturate(180%);
    border-bottom:1px solid var(--border);
    max-height:0; overflow:hidden;
    opacity:0; pointer-events:none;
    transition:max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }
  .nav-links.open {
    max-height:420px; opacity:1; pointer-events:auto;
    padding:16px 20px 24px;
  }
  .nav-links a {
    padding:14px 4px; font-size:16px;
    border-bottom:1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom:none; }
  .nav-links a.nav-login {
    margin-top:12px; text-align:center;
    padding:14px 20px !important; font-size:15px !important;
    border-bottom:none;
  }
  .logo { font-size:19px; }
  .logo-sub { font-size:9px; letter-spacing:1.5px; }
}

/* ─── BUTTONS ─── */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  font-family:'DM Sans',sans-serif; font-weight:600; font-size:15px;
  padding:14px 28px; border-radius:100px; border:none;
  cursor:pointer; text-decoration:none; transition:all 0.3s ease;
  white-space:nowrap; letter-spacing:-0.01em;
}
.btn-primary {
  background:var(--accent); color:#0D0D0D;
  box-shadow:0 0 0 0 var(--accent-glow), 0 4px 20px rgba(255,140,66,0.22);
}
.btn-primary:hover {
  background:var(--accent-dark); transform:translateY(-2px);
  box-shadow:0 0 0 4px var(--accent-glow), 0 8px 30px rgba(255,140,66,0.32);
}
.btn-ghost { background:transparent; color:var(--text); border:1px solid var(--border-strong); }
.btn-ghost:hover { border-color:rgba(255,255,255,0.32); background:rgba(255,255,255,0.04); }
.btn svg { width:16px; height:16px; }

/* ─── ICONS ─── */
.icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:10px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  color:var(--text-secondary);
}
.icon svg { width:20px; height:20px; stroke-width:1.5; }
.icon--accent { background:var(--accent-glow); border-color:rgba(255,140,66,0.18); color:var(--accent); }
.icon--danger { background:rgba(246,86,59,0.08); border-color:rgba(246,86,59,0.2); color:var(--danger); }
.icon--success { background:rgba(52,211,153,0.08); border-color:rgba(52,211,153,0.2); color:var(--success); }
.icon--sm { width:32px; height:32px; border-radius:8px; }
.icon--sm svg { width:16px; height:16px; }

/* ─── HERO ─── */
.hero {
  padding:132px 0 64px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-200px; left:50%; transform:translateX(-50%);
  width:900px; height:700px;
  background:radial-gradient(ellipse at center, rgba(255,140,66,0.08) 0%, transparent 55%);
  pointer-events:none; z-index:0;
}
.hero-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.hero-copy { max-width:560px; }
.hero-copy .eyebrow { margin-bottom:24px; }
.hero h1 { margin-bottom:24px; }
.hero-sub { font-size:19px; color:var(--text-secondary); line-height:1.55; margin-bottom:28px; max-width:500px; }
.hero-sub strong { color:var(--text); font-weight:600; }
.hero-bullets { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:32px; max-width:500px; }
.hero-bullets li { display:flex; align-items:flex-start; gap:12px; font-size:15px; color:var(--text-secondary); line-height:1.55; }
.hero-bullets li svg { width:16px; height:16px; color:var(--success); flex-shrink:0; margin-top:4px; }
.hero-ctas { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.hero-micro {
  margin-top:20px; padding-top:20px; border-top:1px solid var(--border);
  font-size:13px; color:var(--text-tertiary); line-height:1.6;
  max-width:500px;
}
.hero-micro strong { color:var(--text-secondary); font-weight:600; }

.hero-visual { position:relative; }

@media (max-width:960px) {
  .hero { padding:110px 0 48px; }
  .hero-inner { grid-template-columns:1fr; gap:48px; }
  .hero-copy { max-width:none; }
}

/* ─── TRUST STRIP (compact, monochrome) ─── */
.trust-strip {
  padding:24px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:var(--bg-elev);
}
.trust-row {
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
}
.trust-cell {
  display:flex; align-items:center; gap:10px;
  font-size:13px; color:var(--text-secondary);
  font-family:'DM Sans',sans-serif;
}
.trust-cell svg { width:16px; height:16px; color:var(--text-tertiary); stroke-width:1.5; }
.trust-cell strong { color:var(--text); font-weight:600; }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  max-width:880px; margin:0 auto; text-align:center;
}
.quote-block blockquote {
  font-family:'Outfit',sans-serif; font-weight:500;
  font-size:clamp(22px,2.4vw,30px); line-height:1.35;
  letter-spacing:-0.015em; color:var(--text);
  margin-bottom:20px; text-wrap:balance;
}
.quote-block blockquote em { font-style:italic; color:var(--accent); font-weight:600; }
.quote-block p { color:var(--text-secondary); font-size:16px; line-height:1.7; max-width:680px; margin:0 auto; text-wrap:pretty; }
.quote-block p strong { color:var(--text); font-weight:600; }

/* ─── PROBLEM CARDS ─── */
.problem-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-top:48px;
}
.problem-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px 26px; transition:border-color 0.3s;
}
.problem-card:hover { border-color:var(--border-hover); }
.problem-card .icon { margin-bottom:20px; }
.problem-card h3 {
  font-family:'Outfit',sans-serif; font-weight:700;
  font-size:19px; line-height:1.25; margin-bottom:12px;
}
.problem-card p { color:var(--text-secondary); font-size:14.5px; line-height:1.65; }
.problem-card p strong { color:var(--text); font-weight:600; }
@media (max-width:880px) { .problem-grid { grid-template-columns:1fr; } }

/* ─── STEPS TIMELINE ─── */
.steps-timeline { max-width:720px; margin:0 auto; position:relative; }
.steps-timeline::before {
  content:''; position:absolute; left:23px; top:14px; bottom:14px; width:1px;
  background:linear-gradient(to bottom, var(--accent), rgba(255,140,66,0.05));
}
.step {
  display:grid; grid-template-columns:48px 1fr; gap:24px;
  padding-bottom:36px; position:relative;
}
.step:last-child { padding-bottom:0; }
.step-num {
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg); border:1.5px solid var(--accent);
  color:var(--accent);
  font-family:'Space Mono',monospace; font-weight:700; font-size:14px;
  z-index:1; position:relative;
}
.step-content { padding-top:10px; }
.step-content h3 {
  font-family:'Outfit',sans-serif; font-weight:700;
  font-size:19px; line-height:1.3; margin-bottom:8px;
}
.step-content p { color:var(--text-secondary); font-size:15px; line-height:1.65; }

/* ─── FEATURE ROW ─── */
.feature-row {
  display:grid; grid-template-columns:1fr 1.1fr; gap:56px;
  align-items:center; padding:48px 0;
  border-top:1px solid var(--border);
}
.feature-row:first-of-type { border-top:none; }
.feature-row.reverse { direction:rtl; }
.feature-row.reverse > * { direction:ltr; }
.feature-text .feature-index {
  font-family:'Space Mono',monospace; font-size:11px;
  letter-spacing:2px; text-transform:uppercase; color:var(--text-tertiary);
  margin-bottom:16px;
}
.feature-text h3 {
  font-family:'Outfit',sans-serif; font-weight:800;
  font-size:clamp(26px,3vw,34px); line-height:1.1;
  letter-spacing:-0.02em; margin-bottom:16px;
  text-wrap:balance;
}
.feature-text > p {
  color:var(--text-secondary); font-size:16px; line-height:1.7;
  margin-bottom:22px; max-width:500px;
}
.feature-text > p strong { color:var(--text); font-weight:600; }
.feature-checklist { list-style:none; display:flex; flex-direction:column; gap:11px; max-width:500px; }
.feature-checklist li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:14.5px; color:var(--text-secondary); line-height:1.55;
}
.feature-checklist li::before {
  content:''; flex-shrink:0; width:5px; height:5px;
  border-radius:50%; background:var(--accent); margin-top:8px;
}
.feature-visual {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  padding:24px; min-height:320px;
  display:flex; flex-direction:column; justify-content:center;
}
@media (max-width:900px) {
  .feature-row, .feature-row.reverse { grid-template-columns:1fr; gap:32px; direction:ltr; padding:40px 0; }
}

/* ─── KEEPING FEATURE VISUALS (order/pick/loc/receive) ─── */
.order-flow,.pick-flow,.receive-flow,.loc-grid { display:flex; flex-direction:column; gap:8px; }
.order-item,.pick-item,.receive-item,.loc-card {
  background:var(--surface); border:1px solid var(--border); border-radius:10px;
  padding:12px 16px; font-size:13px;
  animation:flow-in 0.5s ease backwards;
}
@keyframes flow-in { from { opacity:0; transform:translateX(-14px); } to { opacity:1; transform:translateX(0); } }
.order-item { display:flex; align-items:center; justify-content:space-between; }
.order-item:nth-child(1),.pick-item:nth-child(1),.loc-card:nth-child(1),.receive-item:nth-child(2) { animation-delay:0.05s; }
.order-item:nth-child(2),.pick-item:nth-child(2),.loc-card:nth-child(2),.receive-item:nth-child(3) { animation-delay:0.12s; }
.order-item:nth-child(3),.pick-item:nth-child(3),.loc-card:nth-child(3),.receive-item:nth-child(4) { animation-delay:0.19s; }
.order-item:nth-child(4),.pick-item:nth-child(4),.loc-card:nth-child(4),.receive-item:nth-child(5) { animation-delay:0.26s; }

.order-item-left,.receive-item-left { display:flex; align-items:center; gap:10px; font-size:13px; }
.order-item-left strong,.receive-item-left strong { color:var(--text); font-weight:600; }
.order-item-qty {
  font-family:'Space Mono',monospace; font-weight:700; font-size:13px;
  color:var(--accent); background:var(--accent-glow);
  padding:3px 10px; border-radius:6px;
}
.order-confirm,.receive-confirm {
  margin-top:4px; padding:12px 16px;
  background:var(--surface); border:1px solid var(--border); border-radius:10px;
  display:flex; align-items:center; justify-content:space-between;
  animation:flow-in 0.5s ease backwards; animation-delay:0.33s;
}
.order-confirm-left,.receive-confirm-left { font-size:12px; color:var(--text-secondary); }
.order-confirm-left strong,.receive-confirm-left strong { color:var(--text); }
.order-confirm-btn {
  background:var(--accent); color:var(--bg); border:none; border-radius:8px;
  padding:8px 20px; font-weight:700; font-size:12px; font-family:'DM Sans',sans-serif;
}
.receive-confirm-btn {
  background:var(--success); color:var(--bg); border:none; border-radius:8px;
  padding:8px 20px; font-weight:700; font-size:12px; font-family:'DM Sans',sans-serif;
}
.receive-qty-input {
  font-family:'Space Mono',monospace; font-weight:700; font-size:13px;
  color:var(--success); background:rgba(52,211,153,0.08);
  padding:3px 10px; border-radius:6px; border:1px solid rgba(52,211,153,0.2);
}

.pick-item { display:flex; align-items:center; gap:12px; }
.pick-check { width:22px; height:22px; border-radius:6px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; }
.pick-check.done { background:var(--success); color:var(--bg); }
.pick-check.open { background:transparent; border:2px solid rgba(255,255,255,0.15); }
.pick-item-name { flex:1; }
.pick-item-name strong { color:var(--text); font-weight:600; }
.pick-item-name.checked { text-decoration:line-through; opacity:0.5; }
.pick-qty { font-family:'Space Mono',monospace; font-size:12px; color:var(--text-secondary); }
.pick-progress { margin-top:4px; }
.pick-progress-bar { height:6px; border-radius:3px; background:rgba(255,255,255,0.06); overflow:hidden; margin-bottom:6px; }
.pick-progress-fill { height:100%; border-radius:3px; background:linear-gradient(90deg,var(--accent),var(--accent-light)); width:50%; transition:width 1s ease; }
.pick-progress-label { font-size:11px; color:var(--text-secondary); display:flex; justify-content:space-between; }

.loc-name { font-size:13px; font-weight:600; color:var(--text); margin-bottom:3px; }
.loc-detail { font-size:11px; color:var(--text-secondary); margin-bottom:6px; }
.loc-bar { height:4px; border-radius:2px; background:rgba(255,255,255,0.06); overflow:hidden; }
.loc-bar-fill { height:100%; border-radius:2px; transition:width 1s ease; }
.loc-bar-fill.high { width:94%; background:var(--success); }
.loc-bar-fill.good { width:81%; background:var(--success); }
.loc-bar-fill.mid { width:58%; background:var(--warning); }
.loc-bar-fill.low { width:24%; background:var(--danger); }

.analytics-vis { display:flex; flex-direction:column; gap:10px; }
.analytics-row { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.analytics-stat { background:var(--surface); border-radius:var(--radius-sm); padding:14px; border:1px solid var(--border); }
.analytics-stat-label { font-size:10px; color:var(--text-tertiary); text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; font-family:'Space Mono',monospace; }
.analytics-stat-val { font-family:'Space Mono',monospace; font-size:22px; font-weight:700; color:var(--accent); letter-spacing:-0.02em; }

.pill { display:inline-flex; padding:3px 10px; border-radius:100px; font-size:11px; font-weight:600; }
.pill.critical { background:rgba(246,86,59,0.15); color:var(--danger); }
.pill.stocked { background:rgba(52,211,153,0.12); color:var(--success); }
.pill.low { background:rgba(246,194,59,0.15); color:var(--warning); }
.pill.pending { background:var(--accent-glow); color:var(--accent); }

/* ─── PHONE FRAMES (employee + fulfillment demo) ─── */
.phone-demo-row { display:grid; grid-template-columns:1fr auto 1fr; gap:28px; align-items:center; max-width:1000px; margin:0 auto; }
.phone-demo-col { display:flex; flex-direction:column; align-items:center; }
.phone-demo-label {
  font-family:'Space Mono',monospace; font-size:11px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; color:var(--text-tertiary);
  margin-bottom:16px; display:flex; align-items:center; gap:8px;
}
.phone-demo-label svg { width:14px; height:14px; color:var(--accent); }
.phone-demo-arrow { display:flex; flex-direction:column; align-items:center; }
.phone-demo-arrow-circle {
  width:40px; height:40px; border-radius:50%;
  background:var(--accent-glow); border:1px solid rgba(255,140,66,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--accent);
}
.phone-demo-arrow-circle svg { width:16px; height:16px; }
.phone-demo-arrow span { font-size:11px; color:var(--text-tertiary); margin-top:8px; font-family:'Space Mono',monospace; letter-spacing:0.5px; text-transform:uppercase; }

.phone-frame {
  width:280px; height:560px;
  background:#000; border-radius:36px; padding:10px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.06);
  position:relative;
}
.phone-notch {
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:100px; height:24px; background:#000; border-radius:12px; z-index:5;
}
.phone-screen {
  width:100%; height:100%; background:#0A0A0A; border-radius:28px;
  overflow:hidden; position:relative;
}
@media (max-width:900px) {
  .phone-demo-row { grid-template-columns:1fr; gap:24px; }
  .phone-demo-arrow { transform:rotate(90deg); }
}

/* demo-ness */
.demo-cat-card {
  display:flex; align-items:center; gap:10px;
  padding:10px; border-radius:10px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
}
.demo-cat-icon {
  width:34px; height:34px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.demo-cat-info { flex:1; }
.demo-badge-count {
  background:var(--cat-color,#E63946); color:#fff;
  font-size:10px; font-weight:700; padding:2px 7px; border-radius:100px;
}
.demo-flavor-row {
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:6px 0; border-bottom:1px solid rgba(255,255,255,0.04);
}
.demo-flavor-row:last-child { border-bottom:none; }
.demo-qty-pills { display:flex; gap:3px; }
.demo-qty-pill {
  font-size:9px; padding:3px 6px; border-radius:5px;
  background:rgba(255,255,255,0.04); color:rgba(255,255,255,0.4);
  font-family:'Space Mono',monospace; font-weight:700;
}
.demo-qty-pill.active {
  background:var(--pill-color,#F4D35E); color:#000;
}
.demo-pick-item {
  display:flex; align-items:center; gap:6px;
  padding:4px 6px; border-radius:5px;
  font-size:10px;
}
.demo-pick-item.done { opacity:0.5; }
.demo-pick-check {
  width:12px; height:12px; border-radius:3px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:8px; font-weight:700;
}
.demo-pick-check.done { background:var(--success); color:#000; }
.demo-pick-check.open { background:transparent; border:1.5px solid rgba(255,255,255,0.15); }
.demo-pick-name { flex:1; color:#fff; }
.demo-pick-name.checked { text-decoration:line-through; }
.demo-pick-qty { font-family:'Space Mono',monospace; font-size:9px; color:rgba(255,255,255,0.4); font-weight:700; }

/* ─── BEFORE / AFTER ─── */
.ba-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:900px; margin:0 auto; }
.ba-col { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius); padding:32px 28px; }
.ba-col.without { border-color:rgba(246,86,59,0.15); }
.ba-col.with { border-color:rgba(52,211,153,0.18); }
.ba-col .eyebrow { margin-bottom:20px; display:block; }
.ba-col.without .eyebrow { color:var(--danger); }
.ba-col.with .eyebrow { color:var(--success); }
.ba-col ul { list-style:none; display:flex; flex-direction:column; gap:14px; }
.ba-col li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--text-secondary); line-height:1.55; }
.ba-col li svg { width:14px; height:14px; flex-shrink:0; margin-top:4px; }
.ba-col.without li svg { color:var(--danger); }
.ba-col.with li svg { color:var(--success); }
@media (max-width:720px) { .ba-grid { grid-template-columns:1fr; } }

/* ─── DIFFERENTIATORS ─── */
.diff-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; max-width:880px; margin:0 auto; }
.diff-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px 26px; transition:border-color 0.3s;
}
.diff-card:hover { border-color:var(--border-hover); }
.diff-card .icon { margin-bottom:16px; }
.diff-card h3 { font-family:'Outfit',sans-serif; font-weight:700; font-size:18px; margin-bottom:8px; }
.diff-card p { color:var(--text-secondary); font-size:14px; line-height:1.6; }
@media (max-width:680px) { .diff-grid { grid-template-columns:1fr; } }

/* ─── ROI BOX ─── */
.roi-box {
  max-width:860px; margin:0 auto;
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:48px 44px; position:relative; overflow:hidden;
}
.roi-box::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,140,66,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.roi-box > * { position:relative; }
.roi-box .eyebrow { margin-bottom:16px; }
.roi-box h2 { font-size:clamp(26px,3vw,34px); margin-bottom:14px; text-wrap:balance; }
.roi-box .sub { color:var(--text-secondary); font-size:15px; line-height:1.65; margin-bottom:32px; max-width:600px; }
.roi-inputs { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px; }
.roi-input-group label {
  display:block; font-family:'Space Mono',monospace; font-size:10px;
  font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--text-tertiary); margin-bottom:8px;
}
.roi-input-wrap { position:relative; }
.roi-input-wrap .prefix {
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  color:var(--text-secondary); font-weight:600; font-family:'Space Mono',monospace;
}
.roi-input {
  width:100%; padding:14px 16px; border-radius:10px;
  background:var(--surface); border:1.5px solid var(--border);
  color:var(--text); font-size:16px;
  font-family:'Space Mono',monospace; font-weight:700;
  outline:none; transition:border-color 0.2s;
}
.roi-input:focus { border-color:rgba(255,140,66,0.4); }
.roi-input.has-prefix { padding-left:30px; }

.so-btns { display:flex; gap:8px; justify-content:center; margin-top:8px; }
.so-btn {
  background:var(--surface); border:1.5px solid var(--border);
  color:var(--text-secondary); font-weight:600; font-size:13px;
  padding:10px 18px; border-radius:10px; cursor:pointer; transition:all 0.2s;
  font-family:'Space Mono',monospace;
}
.so-btn:hover { border-color:var(--border-hover); color:var(--text); }
.so-btn.active { background:var(--accent-glow); border-color:rgba(255,140,66,0.4); color:var(--accent); }

.roi-results {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
  margin-top:36px; padding-top:32px; border-top:1px solid var(--border);
}
.roi-result { text-align:center; }
.roi-result-value {
  font-family:'Space Mono',monospace; font-size:clamp(28px,3.4vw,38px);
  font-weight:700; letter-spacing:-0.02em; margin-bottom:6px;
}
.roi-result-value.red { color:var(--danger); }
.roi-result-value.orange { color:var(--accent); }
.roi-result-value.green { color:var(--success); }
.roi-result-label { font-size:12px; color:var(--text-tertiary); line-height:1.5; font-family:'Space Mono',monospace; text-transform:uppercase; letter-spacing:0.5px; }

.roi-highlight {
  margin-top:28px; padding:16px 20px; border-radius:12px;
  background:var(--accent-glow); border:1px solid rgba(255,140,66,0.2);
  text-align:center; font-family:'Space Mono',monospace;
  color:var(--accent); font-weight:700; font-size:14px; letter-spacing:0.3px;
}

/* ─── PRICING ─── */
.pricing-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:880px; margin:0 auto; }
.pricing-grid.single { grid-template-columns:1fr; max-width:520px; }
.pricing-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:36px 32px; position:relative;
}
.pricing-card.featured {
  border-color:rgba(255,140,66,0.3);
  background:linear-gradient(180deg, rgba(255,140,66,0.04) 0%, var(--bg-card) 60%);
  box-shadow:0 0 0 1px rgba(255,140,66,0.12);
}
.pricing-badge {
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#000;
  font-family:'Space Mono',monospace; font-size:10px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:6px 14px; border-radius:100px;
}
.pricing-tier { font-family:'Outfit',sans-serif; font-weight:700; font-size:20px; margin-bottom:6px; }
.pricing-desc { color:var(--text-secondary); font-size:14px; line-height:1.6; margin-bottom:24px; min-height:44px; }
.pricing-price { display:flex; align-items:baseline; gap:4px; margin-bottom:8px; }
.pricing-amount { font-family:'Outfit',sans-serif; font-weight:800; font-size:52px; letter-spacing:-0.03em; line-height:1; }
.pricing-period { color:var(--text-secondary); font-size:15px; }
.pricing-sub { color:var(--text-tertiary); font-size:13px; margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid var(--border); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.pricing-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-secondary); line-height:1.55; }
.pricing-features li svg { width:14px; height:14px; color:var(--success); flex-shrink:0; margin-top:4px; }
.pricing-card .btn { width:100%; justify-content:center; }
@media (max-width:720px) { .pricing-grid { grid-template-columns:1fr; } }

/* ─── FORM ─── */
.form-label {
  display:block; font-family:'Space Mono',monospace; font-size:10px;
  font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--text-tertiary); margin-bottom:8px;
}
.form-input, .form-select {
  width:100%; padding:14px 16px; border-radius:10px;
  background:var(--surface); border:1.5px solid var(--border);
  color:var(--text); font-size:15px; font-family:'DM Sans',sans-serif;
  outline:none; transition:border-color 0.2s;
}
.form-input:focus, .form-select:focus { border-color:rgba(255,140,66,0.4); }
.form-input::placeholder { color:var(--text-tertiary); }
.form-row { margin-bottom:14px; }
.form-row-half { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:14px; }
.form-submit {
  width:100%; padding:16px; border-radius:100px;
  background:var(--accent); color:#000; border:none;
  font-family:'DM Sans',sans-serif; font-weight:700; font-size:16px;
  cursor:pointer; transition:all 0.3s; margin-top:6px;
}
.form-submit:hover { background:var(--accent-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(255,140,66,0.3); }
.form-fine { color:var(--text-tertiary); font-size:12px; text-align:center; margin-top:12px; }
@media (max-width:540px) { .form-row-half { grid-template-columns:1fr; } }

/* ─── TESTIMONIALS ─── */
.testimonial-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; max-width:880px; margin:0 auto; }
.testimonial-card { padding:28px 26px; border-radius:var(--radius); background:var(--bg-card); border:1px solid var(--border); }
.testimonial-card p { color:var(--text); font-size:16px; line-height:1.55; font-style:italic; margin-bottom:18px; text-wrap:pretty; }
.testimonial-meta { display:flex; align-items:center; gap:12px; padding-top:18px; border-top:1px solid var(--border); }
.testimonial-meta-avatar {
  width:36px; height:36px; border-radius:50%;
  background:var(--accent-glow); border:1px solid rgba(255,140,66,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--accent);
}
.testimonial-meta-avatar svg { width:16px; height:16px; }
.testimonial-meta-name { color:var(--text); font-size:13px; font-weight:600; }
.testimonial-meta-sub { color:var(--text-tertiary); font-size:11px; font-family:'Space Mono',monospace; letter-spacing:0.5px; }
@media (max-width:720px) { .testimonial-grid { grid-template-columns:1fr; } }

/* ─── FINAL CTA ─── */
.cta-final {
  max-width:720px; margin:0 auto; text-align:center;
}
.cta-final .eyebrow { margin-bottom:20px; }
.cta-final h2 { margin-bottom:18px; text-wrap:balance; }
.cta-final > p { color:var(--text-secondary); font-size:17px; line-height:1.65; max-width:560px; margin:0 auto 32px; }
.cta-steps { display:flex; align-items:center; justify-content:center; gap:20px; margin-top:32px; flex-wrap:wrap; }
.cta-step { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-secondary); font-family:'Space Mono',monospace; }
.cta-step-num {
  width:22px; height:22px; border-radius:50%;
  background:var(--accent-glow); color:var(--accent);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700;
}

/* ─── FOOTER ─── */
footer { padding:40px 0; border-top:1px solid var(--border); background:var(--bg); }
footer .container { display:flex; flex-direction:column; align-items:center; gap:18px; text-align:center; }
footer p { color:var(--text-tertiary); font-size:13px; }
footer .links { display:flex; gap:28px; flex-wrap:wrap; justify-content:center; }
footer .links a { color:var(--text-secondary); font-size:13px; text-decoration:none; transition:color 0.2s; }
footer .links a:hover { color:var(--text); }

/* ─── SCROLL PROGRESS + REVEAL ─── */
#scrollProgress {
  position:fixed; top:0; left:0; height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-light));
  width:0%; z-index:101; transition:width 0.1s linear;
}
.reveal,
.reveal.revealed { opacity:1; transform:none; }
