/* ============================================================
   MIXTAS — Shopify Fashion Theme · Landing Page
   Design system: editorial-minimal SaaS
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #121110;
  --ink-soft: #2b2926;
  --paper: #ffffff;
  --cream: #f5f3ef;
  --cream-2: #ede9e2;
  --line: #e5e1d9;
  --line-2: #d8d3c9;
  --muted: #6d6a63;
  --muted-2: #9b968d;

  --accent: #95bf47;          /* Shopify brand green */
  --accent-ink: #ffffff;      /* deep green-ink for text on accent */
  --accent-soft: color-mix(in srgb, var(--accent) 12%, var(--paper));

  --maxw: 1200px;
  --radius-s: 9px;
  --radius: 14px;
  --radius-l: 24px;
  --radius-xl: 34px;

  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --shadow-s: 0 1px 2px rgba(18,17,16,.06), 0 4px 14px rgba(18,17,16,.05);
  --shadow-m: 0 8px 30px rgba(18,17,16,.10);
  --shadow-l: 0 30px 70px -20px rgba(18,17,16,.30);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.035em; text-wrap: balance; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.eyebrow--muted { color: var(--muted); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(80px, 11vw, 140px) 0; }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: var(--paper); }

.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 58px); }
.section-head p { margin-top: 22px; font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 560px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 100px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px color-mix(in srgb, var(--accent) 65%, transparent); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 0; font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: -0.05em; }
.brand .dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--ink-soft); padding: 9px 14px; border-radius: 100px; transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--cream-2); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 20px; font-size: 14.5px; }
.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 138px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px; padding: 7px 7px 7px 16px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft); box-shadow: var(--shadow-s);
}
.hero-pill .tag { background: var(--ink); color: var(--paper); font-family: var(--font-display); font-weight: 600; font-size: 11.5px; letter-spacing: .04em; padding: 4px 11px; border-radius: 100px; }
.hero h1 { font-size: clamp(42px, 5.2vw, 70px); margin-top: 26px; max-width: 12ch; }
.hero h1 .accent { color: var(--accent); font-style: italic; font-family: var(--font-display); }
.hero-sub { margin-top: 26px; font-size: clamp(17px, 1.5vw, 21px); color: var(--muted); max-width: 480px; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 38px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.stars { display: flex; gap: 3px; color: var(--accent); }
.trust-meta { font-size: 14.5px; color: var(--muted); }
.trust-meta strong { color: var(--ink); font-weight: 600; }
.trust-divider { width: 1px; height: 30px; background: var(--line-2); }

/* centered hero variant */
body[data-hero="center"] .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 54px; }
body[data-hero="center"] .hero-copy { max-width: 800px; margin: 0 auto; }
body[data-hero="center"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-hero="center"] .hero-cta, body[data-hero="center"] .hero-trust { justify-content: center; }
body[data-hero="center"] .hero-visual { transform: none; max-width: 940px; margin: 0 auto; }
body[data-hero="center"] .hero-pill { margin: 0 auto; }

.hero-visual { position: relative; transform: rotate(.6deg); }

/* ============================================================
   STORE MOCK (reusable CSS "screenshot")
   ============================================================ */
.browser { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-l); }
.browser-bar { display: flex; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--cream); }
.browser-shot { display: block; width: 100%; height: auto; }
.dots { display: flex; gap: 7px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); display: block; }
.browser-url { flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; font-size: 12px; color: var(--muted-2); display: flex; align-items: center; gap: 7px; }
.browser-url svg { flex: none; }

/* the rendered "store" */
.store { --hue: 18; background: var(--paper); }
.store-nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.store-logo { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em; font-size: 16px; }
.store-menu { display: flex; gap: 16px; }
.store-menu span { width: 38px; height: 7px; border-radius: 4px; background: var(--cream-2); }
.store-icons { display: flex; gap: 9px; }
.store-icons span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.store-hero {
  position: relative; aspect-ratio: 16/8.5; overflow: hidden;
  background-color: hsl(var(--hue) 45% 55%);
  background-size: cover; background-position: center top;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.store-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, hsl(var(--hue) 55% 35% / .28) 0%, transparent 34%, rgba(0,0,0,.46)); }
.store-hero .sh-tag { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .18em; color: rgba(255,255,255,.85); text-transform: uppercase; }
.store-hero .sh-title { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em; color: #fff; font-size: clamp(20px, 3vw, 32px); line-height: 1; margin-top: 8px; }
.store-hero .sh-btn { position: relative; z-index: 1; margin-top: 14px; align-self: flex-start; background: #fff; color: #111; font-family: var(--font-display); font-weight: 600; font-size: 11px; padding: 8px 16px; border-radius: 100px; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 18px 22px 24px; }
.pcard .pimg { aspect-ratio: 3/3.6; border-radius: 10px; background-color: hsl(var(--hue) 28% 90%); background-size: cover; background-position: center; position: relative; overflow: hidden; }
.pcard .pline { height: 7px; width: 78%; background: var(--cream-2); border-radius: 4px; margin-top: 10px; }
.pcard .pprice { height: 7px; width: 38%; background: var(--ink); border-radius: 4px; margin-top: 7px; opacity: .85; }

/* ============================================================
   MARQUEE / trust strip
   ============================================================ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: var(--paper); }
.strip-inner { display: flex; align-items: center; gap: 18px; }
.strip-label { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
.marquee { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 32s linear infinite; }
.marquee-item { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); opacity: .55; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   DEMOS
   ============================================================ */
.demos-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 54px; }
.demos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }
.demo { display: block; }
.demo-frame {
  position: relative; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line);
  background: var(--paper); box-shadow: var(--shadow-s);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.demo:hover .demo-frame { transform: translateY(-7px); box-shadow: var(--shadow-l); border-color: var(--line-2); }
.demo-shot { aspect-ratio: 815/900; overflow: hidden; background: var(--cream); }
.demo-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .6s var(--ease); }
.demo:hover .demo-shot img { transform: scale(1.03); }
.demo-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--ink) 55%, transparent); opacity: 0; transition: opacity .35s var(--ease);
  backdrop-filter: blur(2px);
}
.demo:hover .demo-overlay { opacity: 1; }
.demo-overlay .btn { transform: translateY(8px); transition: transform .35s var(--ease); }
.demo:hover .demo-overlay .btn { transform: translateY(0); }
.demo-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 18px 6px 0; }
.demo-name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.demo-ver { font-size: 13px; color: var(--muted-2); font-family: var(--font-display); font-weight: 500; }
.demo-soon .demo-frame { border-style: dashed; box-shadow: none; }
.demo-soon .demo-shot { display: flex; align-items: center; justify-content: center; background: var(--cream); color: var(--muted-2); font-family: var(--font-display); font-weight: 600; letter-spacing: .04em; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; background: var(--paper); margin-top: 64px; }
.feature { padding: 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s var(--ease); }
.feature:nth-child(2n) { border-right: none; }
.feature:nth-child(3), .feature:nth-child(4) { border-bottom: none; }
.feature:hover { background: var(--cream); }
.feat-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; transition: background .3s var(--ease); }
.feature:hover .feat-ico { background: var(--accent); }
.feature h3 { font-size: 23px; letter-spacing: -0.03em; }
.feature p { margin-top: 13px; color: var(--muted); font-size: 16px; }

/* ============================================================
   BUILDER (no-code)
   ============================================================ */
.builder { overflow: hidden; }
.builder .section-head { margin-bottom: 60px; }
.builder-stage { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.bshot { border-radius: var(--radius-l); overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-l); background: #1b1a18; }
.bshot > img { display: block; width: 100%; height: auto; }
.builder-imgs { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; align-items: start; }
.builder-imgs .b-tall { grid-column: 1 / 5; grid-row: 1 / span 3; }
.builder-imgs .b-wide { grid-column: 5 / 13; }
@media (max-width: 820px) { .builder-imgs { grid-template-columns: 1fr; } .builder-imgs .b-tall, .builder-imgs .b-wide { grid-column: 1 / -1; grid-row: auto; } }
.bshot .browser-bar { background: #232220; border-bottom-color: rgba(255,255,255,.08); }
.bshot .browser-url { background: #16110f; border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.bshot-1 { grid-column: 1 / 8; }
.bshot-2 { grid-column: 8 / 13; align-self: start; margin-top: 40px; }
.bshot-3 { grid-column: 1 / 6; margin-top: -30px; }
.bshot-4 { grid-column: 6 / 13; margin-top: -30px; }
.bpanel { padding: 0; }
/* editor mock */
.editor { display: grid; grid-template-columns: 64px 1fr 168px; height: 100%; min-height: 180px; }
.editor-rail { background: #16110f; padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.editor-rail span { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.08); }
.editor-rail span.on { background: var(--accent); }
.editor-canvas { background: repeating-conic-gradient(#1f1e1c 0% 25%, #232220 0% 50%) 0 0 / 22px 22px; padding: 22px; display: flex; align-items: center; justify-content: center; }
.editor-card { width: 100%; max-width: 220px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.editor-card .ec-img { aspect-ratio: 16/9; background: linear-gradient(150deg, hsl(18 65% 70%), hsl(40 50% 45%)); }
.editor-card .ec-b { padding: 12px; }
.editor-card .ec-b i { display: block; height: 7px; border-radius: 4px; background: #e7e3da; margin-bottom: 7px; }
.editor-card .ec-b i:nth-child(2) { width: 60%; }
.editor-panel { background: #1b1a18; border-left: 1px solid rgba(255,255,255,.06); padding: 16px; }
.editor-panel .ep-row { height: 9px; border-radius: 5px; background: rgba(255,255,255,.08); margin-bottom: 12px; }
.editor-panel .ep-row.short { width: 55%; }
.editor-panel .ep-swatches { display: flex; gap: 7px; margin: 16px 0; }
.editor-panel .ep-swatches b { width: 22px; height: 22px; border-radius: 50%; display: block; }
.editor-panel .ep-slider { height: 5px; border-radius: 5px; background: rgba(255,255,255,.12); position: relative; margin: 18px 0; }
.editor-panel .ep-slider::after { content: ""; position: absolute; left: 60%; top: 50%; transform: translate(-50%,-50%); width: 15px; height: 15px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   SECTIONS GRID (Shopify widgets)
   ============================================================ */
.sections-wrap { margin-top: 60px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 18px 11px 14px; font-family: var(--font-display); font-weight: 500; font-size: 15px;
  color: var(--ink-soft); transition: transform .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.chip .ck { width: 21px; height: 21px; border-radius: 50%; background: var(--cream-2); color: var(--muted); display: flex; align-items: center; justify-content: center; flex: none; transition: background .25s var(--ease), color .25s var(--ease); }
.chip:hover { transform: translateY(-3px); border-color: var(--ink); background: var(--ink); color: var(--paper); }
.chip:hover .ck { background: var(--accent); color: var(--accent-ink); }
.sections-note { margin-top: 34px; display: inline-flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); }
.sections-note b { color: var(--ink); }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 62px); letter-spacing: -0.05em; line-height: 1; }
.stat .num .accent { color: var(--accent); }
.stat .lbl { margin-top: 12px; color: var(--muted); font-size: 15.5px; }
.bg-ink .stat .lbl { color: rgba(255,255,255,.6); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--ink); color: var(--paper); padding: clamp(48px, 7vw, 92px);
  text-align: center;
}
.cta-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 130% at 50% -10%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 60%); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { color: #fff; }
.cta-card h2 { font-size: clamp(38px, 5.5vw, 70px); }
.cta-card p { margin: 22px auto 0; max-width: 520px; color: rgba(255,255,255,.66); font-size: 19px; }
.cta-actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.price-was { color: rgba(255,255,255,.5); text-decoration: line-through; font-size: 16px; font-family: var(--font-display); }
.cta-guarantee { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.5); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-guarantee span { display: inline-flex; align-items: center; gap: 7px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 70px 0 40px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { font-size: 28px; }
.footer-brand p { margin-top: 14px; color: var(--muted); max-width: 280px; font-size: 15px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 15px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--muted-2); font-size: 13.5px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js [data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-stagger].in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { transform: none; }
  .demos-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; }
  .feature:nth-child(3) { border-bottom: 1px solid var(--line); }
  .builder-stage { grid-template-columns: 1fr; }
  .bshot-1,.bshot-2,.bshot-3,.bshot-4 { grid-column: auto; margin-top: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .demos-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding-top: 120px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
