/* =========================================================
   Shopify Bug Fix — landing page
   Premium dark system. Vanilla CSS, no deps.
   Type: Inter / Inter Tight.  Accent: single green.
   Spacing scale: 4 / 8 / 16 / 24 / 48 / 96
   ========================================================= */

:root {
  /* surfaces */
  --bg:        #0a0a0b;          /* near-black, not pure */
  --bg-2:      #0c0c0e;          /* alt section */
  --surface:   rgba(255,255,255,.022);
  --surface-2: rgba(255,255,255,.05);
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);

  /* text */
  --ink:       #ededee;          /* off-white, never #fff */
  --ink-dim:   #b7b7bd;
  --muted:     #86868f;
  --muted-2:   #5c5c63;

  /* one accent only */
  --accent:    #3ee08a;
  --accent-ink:#04140c;
  --accent-dim:rgba(62,224,138,.12);
  --danger:    #ff6b6b;
  --danger-dim:rgba(255,107,107,.12);

  /* scale */
  --s-1: 4px; --s-2: 8px; --s-3: 16px; --s-4: 24px; --s-6: 48px; --s-8: 96px;
  --radius: 14px;
  --maxw: 1140px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Inter Tight", var(--sans);

  /* lucide-style icon masks (1.5–2px stroke) */
  --ic-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  --ic-x: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='M6 6l12 12'/%3E%3C/svg%3E");
  --ic-plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* keep real content above the ambient glow */
.nav, main, .footer { position: relative; z-index: 1; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-4); }
.container-narrow { max-width: 760px; }

/* ---------- Ambient cursor glow ---------- */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 12%),
              rgba(62,224,138,.10), rgba(62,224,138,.04) 40%, transparent 62%);
  opacity: 1;
  will-change: background;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .14s ease, background .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(0) scale(.99); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 0 0 1px rgba(62,224,138,.2), 0 8px 30px rgba(62,224,138,.16); }
.btn-primary:hover { background: #54ec9d; transform: translateY(-1px); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink-dim); background: var(--surface-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,11,.6);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(10,10,11,.78); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; font-size: 17px; }
.logo span { color: var(--muted); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { color: var(--accent-ink) !important; background: var(--accent); padding: 8px 15px; border-radius: 8px; font-weight: 600; }
.nav-cta:hover { background: #54ec9d; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Shared section ---------- */
.section { padding: var(--s-8) 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s-3);
}
.eyebrow::before { content: ""; width: 16px; height: 1px; background: var(--accent); opacity: .6; }
.section-title { font-family: var(--display); font-size: clamp(27px, 3.4vw, 40px); font-weight: 700; line-height: 1.1; margin: 0 0 var(--s-3); letter-spacing: -.03em; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 660px; margin: 0 0 var(--s-6); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 120px 0 var(--s-8); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -10% -10% auto; height: 620px; z-index: -1;
  background:
    radial-gradient(680px 360px at 72% -4%, rgba(62,224,138,.10), transparent 60%),
    radial-gradient(560px 320px at 4% 8%, rgba(255,255,255,.04), transparent 55%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); color: var(--ink-dim); font-size: 13px; font-weight: 500; margin-bottom: var(--s-4);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6.1vw, 74px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin: 0 0 var(--s-4);
  max-width: 17ch;
}
.hero h1 .accent { color: var(--accent); }
.hero .lede { font-size: 19px; line-height: 1.55; color: var(--ink-dim); max-width: 600px; margin: 0 0 var(--s-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--s-6); }
.hero-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 26px; padding: 0; margin: 0; }
.hero-meta li { position: relative; color: var(--muted); font-size: 14px; padding-left: 24px; }
.hero-meta li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px;
  background: var(--accent); -webkit-mask: var(--ic-check) center/contain no-repeat; mask: var(--ic-check) center/contain no-repeat;
}

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: var(--s-3); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-4); }

.pain-card { transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.pain-card:hover { transform: translateY(-2px); border-color: var(--line-2); background: var(--surface-2); }
.pain-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--accent); margin-bottom: var(--s-3);
}
.pain-icon svg { width: 20px; height: 20px; }
.pain-card h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; margin: 0 0 6px; }
.pain-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Offer ---------- */
.offer-head { text-align: center; max-width: 720px; margin: 0 auto var(--s-6); }
.offer-head .eyebrow { justify-content: center; }
.offer-head .section-sub { margin-left: auto; margin-right: auto; }
.offer-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-4); align-items: start; }
.offer-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6); }
.offer-card h3 { margin: 0 0 var(--s-3); font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.offer-safety { margin: var(--s-4) 0 0; padding-top: var(--s-4); border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.check-list, .x-list { list-style: none; padding: 0; margin: 0; }
.check-list li, .x-list li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--ink-dim); font-size: 14.5px; }
.check-list li::before, .x-list li::before {
  content: ""; position: absolute; left: 2px; top: 3px; width: 17px; height: 17px;
}
.check-list li::before { background: var(--accent); -webkit-mask: var(--ic-check) center/contain no-repeat; mask: var(--ic-check) center/contain no-repeat; }
.x-list li { color: var(--muted); }
.x-list li::before { background: var(--danger); -webkit-mask: var(--ic-x) center/contain no-repeat; mask: var(--ic-x) center/contain no-repeat; }

.offer-price {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: var(--s-6); position: sticky; top: 80px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: var(--s-4); }
.price { font-family: var(--display); font-size: 46px; font-weight: 800; letter-spacing: -.03em; }
.price-note { color: var(--muted); font-size: 14px; }
.turnaround { margin: var(--s-3) 0 0; text-align: center; font-size: 13px; color: var(--accent); font-weight: 600; }
.scope-note { color: var(--muted); font-size: 13px; text-align: center; margin: 6px 0 0; }
.scope-box { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.scope-label { font-size: 12px; font-weight: 600; color: var(--muted); margin: 0 0 var(--s-3); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Proof / demo ---------- */
.proof-disclaimer {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-left: 2px solid var(--accent);
  color: var(--ink-dim); border-radius: 12px; padding: 16px 18px; font-size: 14.5px;
  margin: 0 0 var(--s-6); max-width: 780px;
}
.proof-disclaimer strong { color: var(--ink); }
.proof-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-6); }
.proof-links .btn { gap: 9px; }
.proof-links svg { width: 16px; height: 16px; }
.tag { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.tag-before { background: var(--danger-dim); color: var(--danger); }
.tag-after { background: var(--accent-dim); color: var(--accent); }

/* === Interactive before/after demo === */
.demo-lead { margin: 0 0 var(--s-4); color: var(--ink-dim); font-size: 16px; max-width: 720px; line-height: 1.5; }
.demo-lead strong { color: var(--ink); font-weight: 600; }
.demo { max-width: 1000px; }
.demo-controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: var(--s-4); }
.seg { display: inline-flex; padding: 4px; gap: 2px; background: var(--surface); border: 1px solid var(--line); border-radius: 11px; }
.seg-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border: none; border-radius: 8px; cursor: pointer;
  background: transparent; color: var(--muted); font-family: var(--sans);
  font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; transition: background .15s ease, color .15s ease;
}
.seg-btn svg { width: 15px; height: 15px; }
.seg-btn:hover { color: var(--ink-dim); }
.seg-btn.is-active { background: var(--surface-2); color: var(--ink); }
.demo[data-mode="broken"] .seg-state .seg-btn[data-mode="broken"].is-active { background: var(--danger-dim); color: var(--danger); }
.demo[data-mode="fixed"]  .seg-state .seg-btn[data-mode="fixed"].is-active  { background: var(--accent-dim); color: var(--accent); }

.demo-frame {
  border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
  background: #0d0d10; box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transition: max-width .35s ease, margin .35s ease;
  max-width: 100%; margin: 0 auto;
}
.demo[data-device="mobile"] .demo-frame { max-width: 340px; border-radius: 30px; padding: 8px; background: #050506; }
.demo-chrome { display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border-bottom: 1px solid var(--line); background: #0d0d10; }
.demo[data-device="mobile"] .demo-chrome { display: none; }
.demo-dots { display: flex; gap: 6px; }
.demo-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); display: block; }
.demo-url { flex: 1; min-width: 0; height: 22px; line-height: 22px; border-radius: 6px; background: var(--surface); border: 1px solid var(--line); padding: 0 10px; font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo[data-device="mobile"] .demo-notch { display: block; height: 22px; position: relative; }
.demo-notch { display: none; }
.demo[data-device="mobile"] .demo-notch::before { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 110px; height: 6px; border-radius: 999px; background: #1c1c20; }

/* the store stage — light, reads like a real shop.
   stage is the (non-scrolling) positioning context; the product scrolls in .mp-scroll
   so the cart drawer/backdrop always pin to the visible viewport. */
.demo-stage {
  position: relative; overflow: hidden; background: #fff; color: #15151a;
  height: 500px;
}
.mp-scroll { height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.demo[data-device="mobile"] .demo-stage { height: 540px; border-radius: 22px; }
.demo[data-device="mobile"] .mp-scroll { border-radius: 22px; }

.mp-bar { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; border-bottom: 1px solid #ececf0; position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); z-index: 5; }
.mp-brand { font-weight: 700; font-size: 12.5px; letter-spacing: .08em; color: #15151a; }
.mp-cart { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #15151a; }
.mp-cart svg { width: 17px; height: 17px; }
.mp-count { min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: #ededf0; color: #555; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease, transform .2s ease; }
.demo.cart-bump .mp-count { transform: scale(1.25); }

.mp-body { display: flex; gap: 28px; padding: 24px; align-items: flex-start; }
.demo[data-device="mobile"] .mp-body { flex-direction: column; gap: 16px; padding: 16px; }
.mp-media-wrap { flex: 1; min-width: 0; max-width: 340px; }
.demo[data-device="mobile"] .mp-media-wrap { max-width: none; }
.mp-info { flex: 1.1; }
.mp-media {
  width: 100%; aspect-ratio: 1/1; border-radius: 12px;
  background: linear-gradient(150deg, #eef1f5 0%, #dfe4ec 48%, #c9d0db 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mp-hoodie { width: 76%; height: 76%; filter: drop-shadow(0 14px 22px rgba(20, 24, 32, .20)); }
.demo[data-device="mobile"][data-mode="broken"] .mp-media-wrap .mp-thumbs { display: none; }
.mp-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.mp-thumbs i { width: 46px; height: 46px; border-radius: 8px; background: linear-gradient(150deg, #eef1f5, #d3dae4); display: block; }
.mp-thumbs i:first-child { outline: 1.5px solid #15151a; outline-offset: 1px; }
.mp-info { flex: 1; }
.mp-title { font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 4px; }
.mp-price { font-size: 17px; font-weight: 600; color: #15151a; margin: 0 0 14px; }
.mp-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #8a8a93; margin: 0 0 7px; }
.mp-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.mp-pill { padding: 7px 13px; border: 1px solid #dadae0; border-radius: 8px; background: #fff; font-size: 13px; cursor: pointer; transition: border-color .15s, background .15s; }
.mp-pill.sel { border-color: #15151a; background: #f3f3f5; font-weight: 600; }
.mp-add {
  width: 100%; padding: 14px; border: none; border-radius: 10px;
  background: #15151a; color: #fff; font-size: 14.5px; font-weight: 600; cursor: pointer;
  font-family: var(--sans); transition: transform .08s ease, background .15s ease;
}
.mp-add:hover { background: #000; }
.mp-add:active { transform: scale(.985); }
.mp-meta { margin: 13px 0 0; font-size: 12.5px; color: #8a8a93; }

/* mobile burial: broken = oversized image pushes CTA below the fold */
.demo[data-device="mobile"][data-mode="broken"] .mp-media { aspect-ratio: 1/1; }
.demo[data-device="mobile"][data-mode="fixed"]  .mp-media { aspect-ratio: 4/3; }
.demo[data-device="mobile"][data-mode="fixed"]  .mp-body { order: 0; }

/* dead-click hint (broken only) */
.demo-deadhint {
  position: absolute; left: 50%; bottom: 18px; transform: translate(-50%, 8px);
  max-width: 80%; background: #15151a; color: #fff; padding: 9px 13px; border-radius: 9px;
  font-size: 12.5px; line-height: 1.4; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.3);
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 20;
}
.demo-deadhint strong { color: #ff8585; }
.demo.dead-show .demo-deadhint { opacity: 1; transform: translate(-50%, 0); }

/* cart drawer (fixed) */
.demo-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.34); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 10; }
.demo.cart-open .demo-backdrop { opacity: 1; visibility: visible; }
.demo-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: 300px; max-width: 86%;
  background: #fff; border-left: 1px solid #ececf0; box-shadow: -16px 0 40px rgba(0,0,0,.16);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 15; display: flex; flex-direction: column; padding: 18px;
}
.demo.cart-open .demo-drawer { transform: translateX(0); }
.demo-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.demo-drawer-head h4 { margin: 0; font-size: 15px; font-weight: 700; }
.demo-drawer-close { border: none; background: none; cursor: pointer; color: #8a8a93; display: inline-flex; padding: 4px; }
.demo-drawer-close svg { width: 18px; height: 18px; }
.demo-lines { flex: 1; overflow-y: auto; }
.demo-empty { color: #8a8a93; font-size: 13px; margin-top: 12px; }
.demo-line { display: flex; gap: 11px; padding: 12px 0; border-bottom: 1px solid #f0f0f3; }
.demo-line-img { width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(135deg, #d7dde6, #8b97a8); }
.demo-line-b { flex: 1; min-width: 0; }
.demo-line-t { font-size: 13px; font-weight: 600; }
.demo-line-v { font-size: 11.5px; color: #8a8a93; margin: 1px 0 6px; }
.demo-line-row { display: flex; align-items: center; justify-content: space-between; }
.demo-qty { display: inline-flex; align-items: center; border: 1px solid #e2e2e8; border-radius: 7px; overflow: hidden; }
.demo-qty button { width: 24px; height: 24px; border: none; background: #f6f6f8; cursor: pointer; font-size: 14px; color: #15151a; }
.demo-qty span { width: 26px; text-align: center; font-size: 12.5px; }
.demo-line-price { font-size: 13px; font-weight: 600; }
.demo-foot { border-top: 1px solid #ececf0; padding-top: 13px; }
.demo-sub { display: flex; justify-content: space-between; font-weight: 700; font-size: 14.5px; margin-bottom: 11px; }
.demo-checkout { width: 100%; padding: 12px; border: none; border-radius: 9px; background: #15151a; color: #fff; font-weight: 600; font-size: 13.5px; cursor: pointer; }

/* toast */
.demo-toast { position: absolute; top: 16px; left: 50%; transform: translate(-50%, -16px); background: #15151a; color: #fff; padding: 9px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 500; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 25; }
.demo.toast-show .demo-toast { opacity: 1; transform: translate(-50%, 0); }

.demo-caption { margin: var(--s-4) 0 0; color: var(--muted); font-size: 14.5px; max-width: 760px; line-height: 1.55; }
.demo-caption strong { color: var(--ink); font-weight: 600; }

/* --- broken: a normal-but-neglected store. Functional, just not conversion-focused
   (slightly looser rhythm, generic image, default-theme button). NOT disabled-looking. --- */
.demo[data-mode="broken"] .mp-pills { gap: 5px; }
.demo[data-mode="broken"] .mp-pill { border-radius: 3px; padding: 6px 11px; font-size: 12px; border-color: #d4d4da; color: #44444c; }
.demo[data-mode="broken"] .mp-pill.sel { background: #fff; border-color: #8a8a93; font-weight: 500; }
/* default-theme CTA: clearly clickable, just smaller, flatter, not full-width */
.demo[data-mode="broken"] .mp-add {
  width: auto; padding: 10px 20px; border-radius: 4px;
  background: #5a6472; color: #fff; font-weight: 500; font-size: 13.5px;
}
.demo[data-mode="broken"] .mp-add:hover { background: #515b68; }
/* slightly less intentional spacing + typography rhythm */
.demo[data-mode="broken"] .mp-title { letter-spacing: -.01em; font-weight: 600; }
.demo[data-mode="broken"] .mp-label { color: #9a9aa2; letter-spacing: .02em; margin-bottom: 5px; }
.demo[data-mode="broken"] .mp-meta { margin-top: 11px; }
/* generic, un-styled product image area */
.demo[data-mode="broken"] .mp-media { background: #e7e9ee; }
.demo[data-mode="broken"] .mp-hoodie { display: none; }
.demo[data-mode="broken"] .mp-ph { display: block; }
.demo[data-mode="broken"] .mp-thumbs i:first-child { outline: none; }

/* mildly cluttered promo strip — only the neglected (broken) store shows it */
.mp-promo { display: none; }
.demo[data-mode="broken"] .mp-promo {
  display: block; margin: 0 0 13px; padding: 6px 9px; border-radius: 4px;
  background: #fbf2e3; border: 1px solid #f0e2c6; color: #8a5a23;
  font-size: 10.5px; line-height: 1.35;
}

/* generic image placeholder icon (hidden unless broken) */
.mp-ph { display: none; width: 34%; height: 34%; color: #b4b8c1; }

/* fixed: a clear, alive cart count once items land */
.demo.cart-filled .mp-count { background: #15151a; color: #fff; }

/* satisfying swap when you flip broken <-> fixed */
.demo.mode-anim .mp-body { animation: demoSwap .42s cubic-bezier(.4,0,.2,1); }
@keyframes demoSwap {
  0%   { opacity: .35; transform: translateY(6px) scale(.992); filter: blur(1px); }
  100% { opacity: 1;   transform: none; filter: none; }
}

/* before/after points row */
.demo-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-4); }
.pt { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 500; border: 1px solid var(--line); transition: opacity .2s ease; }
.pt svg { width: 13px; height: 13px; flex-shrink: 0; }
.pt-bad { color: var(--danger); background: var(--danger-dim); border-color: rgba(255,107,107,.22); }
.pt-good { color: var(--accent); background: var(--accent-dim); border-color: rgba(62,224,138,.24); }
.demo[data-mode="broken"] .pt-good { display: none; }
.demo[data-mode="fixed"]  .pt-bad  { display: none; }

/* ---------- Process ---------- */
.process-grid { margin-top: var(--s-1); }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-4); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; background: var(--accent-dim);
  color: var(--accent); font-family: var(--display); font-weight: 700; font-size: 16px; margin-bottom: var(--s-3);
}
.step h3 { margin: 0 0 6px; font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Fit ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.fit-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s-6); }
.fit-yes { border-color: rgba(62,224,138,.26); }
.fit-no { border-color: rgba(255,107,107,.2); }
.fit-card h3 { margin: 0 0 var(--s-3); font-size: 17px; font-weight: 600; letter-spacing: -.02em; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer; color: var(--ink); text-align: left;
  font-family: var(--sans); font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; padding: 22px 0;
}
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; color: transparent; transition: transform .25s ease; }
.faq-icon::before { content: ""; position: absolute; inset: 0; background: var(--accent); -webkit-mask: var(--ic-plus) center/contain no-repeat; mask: var(--ic-plus) center/contain no-repeat; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { color: var(--muted); font-size: 15px; margin: 0 0 22px; padding-right: 30px; }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact .eyebrow { justify-content: center; }
.contact .section-sub { margin-left: auto; margin-right: auto; }
.contact-alt { color: var(--muted); font-size: 14px; margin-top: var(--s-3); }
.contact-alt a { color: var(--accent); }
.contact-alt a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: var(--s-4) 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: var(--muted-2); font-size: 13px; }
.footer-inner strong { color: var(--ink-dim); font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 920px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-price { position: static; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { padding: 92px 0 64px; }
  .glow { display: none; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 10px; padding: 13px; }

  .grid-3 { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .proof-links .btn { width: 100%; }
  .demo-controls { flex-direction: column; align-items: stretch; }
  .seg { justify-content: center; }
}

@media (max-width: 430px) {
  .container { padding: 0 18px; }
  .offer-card, .offer-price, .card, .step, .fit-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .glow { display: none; }
}
