/* =====================================================================
   Alpha Fuel – design system
   Black / electric-blue sports nutrition storefront
   ===================================================================== */
:root {
  --bg: #06080c;
  --bg-2: #0b0f16;
  --surface: #10161f;
  --surface-2: #161e2a;
  --surface-3: #1c2634;
  --border: #1f2a3a;
  --border-2: #2b3950;
  --text: #f2f5f9;
  --text-2: #b6c2d2;
  --muted: #7f8ea3;
  --blue: #2563eb;
  --blue-2: #3b82f6;
  --cyan: #38bdf8;
  --blue-glow: rgba(56, 189, 248, .35);
  --grad: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  --grad-soft: linear-gradient(135deg, rgba(37,99,235,.25), rgba(56,189,248,.08));
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --star: #fbbf24;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(0,0,0,.45);
  --shadow-blue: 0 8px 30px rgba(37,99,235,.35);
  --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container: 1280px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
body.no-scroll { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: .01em; line-height: 1.05; text-transform: uppercase; }
h1 { font-size: clamp(44px, 7vw, 92px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 24px; }
p { margin: 0; }
::selection { background: var(--blue); color: #fff; }

.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 28px); } }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; font-weight: 700; font-size: 14px;
  letter-spacing: .02em; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap; border: 1px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(37,99,235,.3); }
.btn-primary:hover { box-shadow: var(--shadow-blue); filter: brightness(1.08); }
.btn-outline { border-color: var(--border-2); background: transparent; color: var(--text); }
.btn-outline:hover { border-color: var(--cyan); background: rgba(56,189,248,.06); }
.btn-dark { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn-dark:hover { background: var(--surface-3); border-color: var(--border-2); }
.btn-white { background: #fff; color: #0b0f16; }
.btn-white:hover { background: #e8eef7; }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: 10px; display: inline-grid; place-items: center; color: var(--text-2); position: relative; transition: background .2s, color .2s; }
.btn-icon:hover { background: var(--surface-2); color: #fff; }
.btn-icon svg { width: 22px; height: 22px; }

/* ---------- Announcement bar ---------- */
.announce { background: var(--grad); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .02em; overflow: hidden; }
.announce .container { display: flex; justify-content: center; align-items: center; gap: 40px; height: 36px; }
.announce span { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.announce svg { width: 15px; height: 15px; }
@media (max-width: 800px) { .announce span:not(:first-child) { display: none; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(6,8,12,.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.header-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: .02em; text-transform: uppercase; line-height: 1; }
.logo .mark { width: 38px; height: 38px; }
.logo em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.search { position: relative; max-width: 620px; width: 100%; justify-self: center; }
.search form { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; height: 46px; padding: 0 6px 0 16px; transition: border-color .2s, box-shadow .2s; }
.search form:focus-within { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(37,99,235,.2); }
.search input { flex: 1; background: none; border: 0; outline: 0; color: var(--text); font-size: 15px; min-width: 0; }
.search input::placeholder { color: var(--muted); }
.search button { width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; color: var(--muted); }
.search button:hover { background: var(--surface-2); color: #fff; }
.search button svg { width: 20px; height: 20px; }
.search-suggest { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; display: none; z-index: 20; }
.search-suggest.open { display: block; }
.search-suggest a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.search-suggest a:last-child { border-bottom: 0; }
.search-suggest a:hover { background: var(--surface-2); }
.search-suggest .thumb { width: 42px; height: 42px; border-radius: 8px; background: var(--surface-2); flex: none; padding: 4px; }
.search-suggest .thumb svg { width: 100%; height: 100%; }
.search-suggest .name { font-weight: 600; font-size: 14px; }
.search-suggest .cat { font-size: 12px; color: var(--muted); }
.search-suggest .price { margin-left: auto; font-weight: 700; color: var(--cyan); }
.header-actions { display: flex; align-items: center; gap: 4px; }
.badge-count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--cyan); color: #04121d; font-size: 11px; font-weight: 800; display: grid; place-items: center; transform: scale(0); transition: transform .2s cubic-bezier(.5,1.8,.5,1); }
.badge-count.show { transform: scale(1); }
.menu-toggle { display: none; }

/* Nav */
.nav { border-top: 1px solid var(--border); }
.nav-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0; list-style: none; margin: 0; padding: 0; min-height: 48px; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: flex; align-items: center; gap: 6px; height: 48px; padding: 0 10px; font-size: 13.5px; white-space: nowrap; font-weight: 600; color: var(--text-2); border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav-list > li > a:hover, .nav-list > li:hover > a, .nav-list > li > a.active { color: #fff; border-bottom-color: var(--cyan); }
.nav-list > li > a.hot { color: var(--cyan); }
.nav-list > li > a.sale { color: #ff6b6b; }
.nav-list > li > a svg { width: 14px; height: 14px; opacity: .6; }
.mega { position: absolute; top: 100%; left: 0; min-width: 560px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 0 0 14px 14px; padding: 22px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 30; }
.nav-list > li:nth-last-child(-n+6) .mega { left: auto; right: 0; border-radius: 0 0 14px 14px; }
.nav-list > li:hover .mega, .nav-list > li:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega h4 { font-size: 13px; letter-spacing: .12em; color: var(--muted); margin-bottom: 12px; font-family: var(--font-body); font-weight: 700; }
.mega ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mega ul a { display: block; padding: 7px 10px; border-radius: 8px; color: var(--text-2); font-size: 14px; }
.mega ul a:hover { background: var(--surface-2); color: #fff; }
.mega .mega-promo { background: var(--grad-soft); border: 1px solid rgba(56,189,248,.25); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
.mega .mega-promo strong { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; line-height: 1; }
.mega .mega-promo p { color: var(--text-2); font-size: 13px; }
.mega-all { grid-column: 1 / -1; }
.mega-all ul { grid-template-columns: repeat(3, 1fr); }
.nav-list > li.mega-all-parent .mega { min-width: 720px; grid-template-columns: 1fr; }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 200; opacity: 0; visibility: hidden; transition: .25s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; bottom: 0; left: 0; width: min(360px, 88vw); background: var(--bg-2); z-index: 201; transform: translateX(-100%); visibility: hidden; transition: transform .28s cubic-bezier(.2,.8,.2,1), visibility .28s; overflow-y: auto; border-right: 1px solid var(--border); }
.drawer.open { transform: none; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.drawer-body { padding: 8px 0 30px; }
.drawer details { border-bottom: 1px solid var(--border); }
.drawer summary { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; font-weight: 600; cursor: pointer; }
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary svg { width: 16px; height: 16px; color: var(--muted); transition: transform .2s; }
.drawer details[open] summary svg { transform: rotate(180deg); }
.drawer details ul { list-style: none; margin: 0; padding: 0 0 8px; }
.drawer details ul a { display: block; padding: 9px 18px 9px 30px; color: var(--text-2); font-size: 14px; }
.drawer > .drawer-body > a { display: block; padding: 14px 18px; font-weight: 600; border-bottom: 1px solid var(--border); }

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .header-main { grid-template-columns: auto auto 1fr auto; gap: 10px; }
  .menu-toggle { display: inline-grid; }
  .search { grid-column: 1 / -1; grid-row: 2; max-width: none; padding-bottom: 12px; }
  .header-main { height: auto; padding-top: 10px; }
  .nav { display: none; }
  .search form { height: 42px; }
  .logo { font-size: 24px; }
  .logo .mark { width: 32px; height: 32px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--border); }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background-repeat: no-repeat; background-position: right center; background-size: cover;
  background-image: url('../img/banners/hero-banner.jpg?v=f8b2b944da');
  background-image: image-set(url('../img/banners/hero-banner.webp?v=562c512844') type('image/webp'), url('../img/banners/hero-banner.jpg?v=f8b2b944da') type('image/jpeg')); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(90deg, var(--bg) 0%, rgba(6,8,12,.94) 26%, rgba(6,8,12,.72) 42%, rgba(6,8,12,.25) 60%, transparent 78%), linear-gradient(180deg, rgba(6,8,12,.45) 0%, transparent 30%, transparent 65%, var(--bg) 100%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; min-height: 580px; padding: 60px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border-radius: 999px; background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.3); color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .4; } }
.hero h1 { margin: 22px 0 18px; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 18px; color: var(--text-2); max-width: 520px; }
.hero .cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; }
.hero-stats div span { font-size: 13px; color: var(--muted); }
.hero-art { position: relative; height: 480px; pointer-events: none; }
@keyframes floaty { 50% { translate: 0 -14px; } }
@media (max-width: 1024px) {
  /* Stacked: the banner becomes its own cropped block under the copy */
  .hero::after { display: none; }
  .hero::before { background: radial-gradient(900px 500px at 80% 15%, rgba(37,99,235,.22), transparent 60%); }
  .hero .container { grid-template-columns: 1fr; min-height: 0; padding: 44px 0 40px; }
  .hero-art { height: 300px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background-repeat: no-repeat; background-position: 74% center; background-size: cover;
    background-image: url('../img/banners/hero-banner-mobile.jpg?v=b6ecd03829');
    background-image: image-set(url('../img/banners/hero-banner-mobile.webp?v=a88312f2ef') type('image/webp'), url('../img/banners/hero-banner-mobile.jpg?v=b6ecd03829') type('image/jpeg')); }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .hero-art { height: 220px; background-position: 78% center; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-head p { color: var(--muted); margin-top: 6px; }
.section-head .link { color: var(--cyan); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.section-head .link svg { width: 16px; height: 16px; }
.kicker { color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; display: block; margin-bottom: 8px; }

/* Trust strip */
.trust { border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust div { display: flex; align-items: center; gap: 12px; padding: 18px 12px; font-size: 13px; color: var(--text-2); border-right: 1px solid var(--border); }
.trust div:last-child { border-right: 0; }
.trust svg { width: 24px; height: 24px; color: var(--cyan); flex: none; }
.trust strong { display: block; color: var(--text); font-size: 14px; }
@media (max-width: 860px) { .trust .container { grid-template-columns: repeat(2, 1fr); } .trust div:nth-child(2) { border-right: 0; } .trust div:nth-child(-n+2) { border-bottom: 1px solid var(--border); } }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 18px 18px; overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; }
.cat-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(240px 140px at 100% 0%, rgba(37,99,235,.3), transparent 70%); opacity: 0; transition: opacity .25s; }
.cat-card:hover { transform: translateY(-4px); border-color: rgba(56,189,248,.5); box-shadow: 0 14px 40px rgba(0,0,0,.5); }
.cat-card:hover::before { opacity: 1; }
.cat-card .ico { width: 52px; height: 52px; border-radius: 12px; background: var(--grad-soft); border: 1px solid rgba(56,189,248,.25); display: grid; place-items: center; margin-bottom: 40px; position: relative; }
.cat-card .ico svg { width: 28px; height: 28px; color: var(--cyan); }
.cat-card h3 { font-size: 22px; position: relative; }
.cat-card p { color: var(--muted); font-size: 13px; margin-top: 4px; position: relative; }
.cat-card .arrow { position: absolute; right: 16px; bottom: 16px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--muted); transition: .2s; }
.cat-card .arrow svg { width: 14px; height: 14px; }
.cat-card:hover .arrow { background: var(--blue); color: #fff; border-color: var(--blue); }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cat-card { padding: 16px 14px; } .cat-card .ico { margin-bottom: 24px; width: 44px; height: 44px; } .cat-card h3 { font-size: 18px; } }

/* Goals */
.goal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.goal-card { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid rgba(56,189,248,.18); transition: .2s; }
.goal-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.goal-card .ico { width: 54px; height: 54px; flex: none; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(37,99,235,.4); }
.goal-card .ico svg { width: 26px; height: 26px; color: #fff; }
.goal-card h3 { font-size: 22px; }
.goal-card p { font-size: 13px; color: var(--text-2); }
@media (max-width: 900px) { .goal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .goal-grid { grid-template-columns: 1fr; } }

/* Product grid & card */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .product-grid, .product-grid.cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .product-grid, .product-grid.cols-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.product-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.product-card .media { position: relative; aspect-ratio: 1; background: radial-gradient(circle at 50% 60%, rgba(37,99,235,.18), transparent 65%), var(--surface-2); display: grid; place-items: center; padding: 14%; }
.product-card .media svg { width: 100%; height: 100%; filter: drop-shadow(0 14px 18px rgba(0,0,0,.5)); transition: transform .3s; }
.product-card:hover .media svg { transform: scale(1.05) translateY(-3px); }
.product-card .badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.tag { display: inline-block; padding: 4px 8px; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.tag-bestseller { background: var(--cyan); color: #04121d; }
.tag-new { background: var(--blue); color: #fff; }
.tag-sale { background: #ef4444; color: #fff; }
.tag-vegan { background: #22c55e; color: #05240f; }
.tag-save { background: rgba(239,68,68,.15); color: #ff7b7b; border: 1px solid rgba(239,68,68,.35); }
.wish { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(6,8,12,.6); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); z-index: 2; transition: .2s; }
.wish svg { width: 17px; height: 17px; }
.wish:hover { color: #fff; border-color: var(--border-2); }
.wish.on { color: #ff5f7a; border-color: rgba(255,95,122,.5); }
.wish.on svg { fill: currentColor; }
.product-card .body { padding: 14px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .sub { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.product-card .name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.product-card .name a::after { content: ''; position: absolute; inset: 0; }
.stars { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.stars .s { display: inline-flex; gap: 1px; }
.stars .s svg { width: 13px; height: 13px; color: var(--star); }
.stars .s svg.off { color: var(--border-2); }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 6px; }
.price .now { font-weight: 800; font-size: 17px; }
.price .was { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.price .from { font-size: 12px; color: var(--muted); font-weight: 500; }
.product-card .add { margin-top: 10px; position: relative; z-index: 2; }
@media (max-width: 700px) { .product-card .body { padding: 12px; } .product-card .name { font-size: 14px; } .product-card .add { padding: 9px; } }

/* Promo banners */
.promo-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.promo { position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: end; padding: 32px; background: var(--surface); }
.promo::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 100% 0%, rgba(37,99,235,.55), transparent 65%), linear-gradient(180deg, transparent, rgba(0,0,0,.5)); }
.promo.alt::before { background: radial-gradient(500px 300px at 0% 100%, rgba(56,189,248,.4), transparent 65%), linear-gradient(0deg, rgba(0,0,0,.4), transparent); }
.promo > * { position: relative; }
.promo h3 { font-size: clamp(30px, 4vw, 46px); }
.promo p { color: var(--text-2); margin: 8px 0 18px; max-width: 420px; }
.promo .art { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 200px; filter: drop-shadow(0 20px 30px rgba(0,0,0,.6)); }
.promo.alt .art { width: 150px; }
.promo .big { font-family: var(--font-display); font-size: 96px; font-weight: 800; line-height: .9; color: transparent; -webkit-text-stroke: 1px rgba(56,189,248,.5); position: absolute; top: 20px; left: 28px; letter-spacing: .02em; }
@media (max-width: 900px) { .promo-grid { grid-template-columns: 1fr; } .promo { min-height: 240px; padding: 24px; } .promo .art { width: 140px; right: 10px; } .promo .big { font-size: 64px; } }

/* Feature split */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.feature .art-wrap { position: relative; min-height: 420px; background: radial-gradient(circle at 50% 50%, rgba(56,189,248,.35), transparent 60%), var(--bg-2); display: grid; place-items: center; }
.feature .art-wrap svg { width: 260px; filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)); animation: floaty 6s ease-in-out infinite; }
.feature .copy { padding: 40px 48px 40px 0; }
.feature ul { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 10px; }
.feature li { display: flex; gap: 10px; align-items: center; color: var(--text-2); }
.feature li svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } .feature .copy { padding: 0 24px 28px; } .feature .art-wrap { min-height: 280px; } .feature .art-wrap svg { width: 180px; } }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review .stars .s svg { width: 15px; height: 15px; }
.review p { color: var(--text-2); font-size: 14px; flex: 1; }
.review .who { font-size: 13px; }
.review .who strong { display: block; }
.review .who span { color: var(--muted); }
@media (max-width: 1000px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter { background: var(--grad); border-radius: 20px; padding: 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; position: relative; overflow: hidden; }
.newsletter::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 60px solid rgba(255,255,255,.08); }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.85); margin-top: 8px; }
.newsletter form { display: flex; gap: 10px; position: relative; }
.newsletter input { flex: 1; height: 52px; border-radius: 12px; border: 0; padding: 0 18px; background: rgba(0,0,0,.35); color: #fff; outline: 0; min-width: 0; }
.newsletter input::placeholder { color: rgba(255,255,255,.6); }
@media (max-width: 800px) { .newsletter { grid-template-columns: 1fr; padding: 32px 24px; } .newsletter form { flex-direction: column; } }

/* ---------- Footer ---------- */
.footer { margin-top: 40px; background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.footer h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer ul a { color: var(--text-2); font-size: 14px; }
.footer ul a:hover { color: var(--cyan); }
.footer .about p { color: var(--muted); font-size: 14px; margin: 14px 0 18px; max-width: 340px; }
.social { display: flex; gap: 8px; }
.social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-2); }
.social a:hover { border-color: var(--cyan); color: var(--cyan); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 44px; border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.pay { display: flex; gap: 6px; }
.pay span { height: 26px; padding: 0 8px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--border); font-size: 10px; font-weight: 800; letter-spacing: .05em; display: grid; place-items: center; color: var(--text-2); }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer .about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* ---------- Toast & mini cart ---------- */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 400; display: grid; gap: 8px; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow); font-size: 14px; font-weight: 600; animation: toastIn .25s ease; pointer-events: auto; white-space: nowrap; }
.toast svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.toast.out { animation: toastOut .25s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(12px); } }

.minicart { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 94vw); background: var(--bg-2); border-left: 1px solid var(--border); z-index: 301; transform: translateX(100%); visibility: hidden; transition: transform .28s cubic-bezier(.2,.8,.2,1), visibility .28s; display: flex; flex-direction: column; }
.minicart.open { transform: none; visibility: visible; }
.minicart-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 300; opacity: 0; visibility: hidden; transition: .25s; }
.minicart-backdrop.open { opacity: 1; visibility: visible; }
.minicart-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.minicart-head h3 { font-size: 24px; }
.minicart-body { flex: 1; overflow-y: auto; padding: 10px 20px; }
.minicart-foot { padding: 18px 20px; border-top: 1px solid var(--border); display: grid; gap: 10px; }
.minicart-foot .row { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-line .thumb { width: 70px; height: 70px; border-radius: 10px; background: var(--surface-2); padding: 8px; }
.cart-line .thumb svg { width: 100%; height: 100%; }
.cart-line .name { font-weight: 700; font-size: 14px; }
.cart-line .meta { font-size: 12px; color: var(--muted); }
.cart-line .line-price { font-weight: 700; text-align: right; }
.cart-line .remove { color: var(--muted); font-size: 12px; margin-top: 6px; display: inline-flex; gap: 4px; align-items: center; }
.cart-line .remove:hover { color: var(--red); }
.cart-line .remove svg { width: 13px; height: 13px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border-2); border-radius: 8px; overflow: hidden; height: 34px; }
.qty button { width: 32px; height: 100%; display: grid; place-items: center; color: var(--text-2); }
.qty button:hover { background: var(--surface-2); color: #fff; }
.qty button svg { width: 14px; height: 14px; }
.qty input { width: 38px; text-align: center; background: none; border: 0; outline: 0; font-weight: 700; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-lg { height: 48px; border-radius: 10px; }
.qty-lg button { width: 44px; }
.qty-lg input { width: 48px; font-size: 16px; }
.empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.empty svg { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--border-2); }
.empty h3 { color: var(--text); margin-bottom: 6px; }
.ship-bar { font-size: 13px; color: var(--text-2); }
.ship-bar .track { height: 6px; border-radius: 3px; background: var(--surface-3); margin-top: 8px; overflow: hidden; }
.ship-bar .fill { height: 100%; background: var(--grad); border-radius: 3px; transition: width .4s; }
.ship-bar b { color: var(--cyan); }

/* ---------- Breadcrumb & page head ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .6; }
.page-head { padding: 18px 0 24px; }
.page-head h1 { font-size: clamp(36px, 5vw, 60px); }
.page-head p { color: var(--muted); margin-top: 6px; max-width: 640px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-2); font-size: 13px; font-weight: 600; color: var(--text-2); transition: .15s; }
.chip:hover, .chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- Category layout ---------- */
.catalog { display: grid; grid-template-columns: 250px 1fr; gap: 28px; padding-bottom: 60px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 60px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.filters h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.filters fieldset { border: 0; padding: 0; margin: 0 0 20px; }
.filters label { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--text-2); cursor: pointer; }
.filters label:hover { color: #fff; }
.filters input[type=checkbox], .filters input[type=radio] { width: 17px; height: 17px; accent-color: var(--blue-2); }
.filters .count { margin-left: auto; font-size: 12px; color: var(--muted); }
.filters input[type=range] { width: 100%; accent-color: var(--blue-2); }
.filters .range-vals { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); }
.filters-toggle { display: none; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.toolbar .result { color: var(--muted); font-size: 14px; }
.toolbar .result b { color: var(--text); }
.select { position: relative; display: inline-flex; align-items: center; }
.select select { appearance: none; -webkit-appearance: none; background: var(--surface); border: 1px solid var(--border-2); color: var(--text); border-radius: 10px; padding: 10px 38px 10px 14px; font-size: 14px; font-weight: 600; outline: 0; cursor: pointer; }
.select select:focus { border-color: var(--blue-2); }
.select svg { position: absolute; right: 12px; width: 16px; height: 16px; pointer-events: none; color: var(--muted); }
@media (max-width: 900px) {
  .catalog { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 0 0 auto; width: min(340px, 90vw); border-radius: 0; z-index: 250; transform: translateX(100%); visibility: hidden; transition: transform .25s, visibility .25s; overflow-y: auto; padding-top: 70px; }
  .filters.open { transform: none; visibility: visible; }
  .filters .close-filters { position: absolute; top: 16px; right: 16px; }
  .filters-toggle { display: inline-flex; }
}
.filters .close-filters { display: none; }
@media (max-width: 900px) { .filters .close-filters { display: inline-grid; } }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; padding: 20px 0 60px; align-items: start; }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp-main { aspect-ratio: 1; border-radius: 20px; background: radial-gradient(circle at 50% 60%, rgba(37,99,235,.28), transparent 62%), var(--surface); border: 1px solid var(--border); display: grid; place-items: center; padding: 12%; position: relative; overflow: hidden; }
.pdp-main::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(circle, #000 30%, transparent 75%); }
.pdp-main svg { width: 100%; height: 100%; position: relative; filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)); }
.pdp-main .badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 6px; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp-thumbs button { width: 72px; height: 72px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); padding: 10px; transition: .15s; }
.pdp-thumbs button.on, .pdp-thumbs button:hover { border-color: var(--cyan); }
.pdp-thumbs svg { width: 100%; height: 100%; }
.pdp-info .sub { color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pdp-info h1 { font-size: clamp(34px, 4vw, 52px); margin: 6px 0 10px; }
.pdp-info .stars { font-size: 14px; }
.pdp-info .stars .s svg { width: 16px; height: 16px; }
.pdp-info .stars a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.pdp-price .now { font-family: var(--font-display); font-size: 42px; font-weight: 800; line-height: 1; }
.pdp-price .was { color: var(--muted); text-decoration: line-through; font-size: 18px; }
.pdp-short { color: var(--text-2); font-size: 16px; }
.opt { margin-top: 22px; }
.opt .opt-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; }
.opt .opt-label b { color: var(--text); text-transform: none; letter-spacing: 0; }
.opt-list { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-btn { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--border-2); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--text-2); transition: .15s; }
.opt-btn:hover { border-color: var(--cyan); color: #fff; }
.opt-btn.on { border-color: var(--cyan); background: rgba(56,189,248,.12); color: #fff; box-shadow: 0 0 0 1px var(--cyan) inset; }
.opt-btn small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
.opt-btn.on small { color: var(--cyan); }
.buy-row { display: flex; gap: 12px; margin-top: 26px; }
.buy-row .btn-primary { flex: 1; }
.pdp-perks { margin-top: 22px; display: grid; gap: 8px; padding: 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.pdp-perks div { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); }
.pdp-perks svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--green); font-weight: 600; margin-top: 12px; }
.stock i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 26px; } .pdp-gallery { position: static; } .buy-row { position: sticky; bottom: 0; background: var(--bg); padding: 12px 0; z-index: 5; } }

.tabs { border-bottom: 1px solid var(--border); display: flex; gap: 6px; overflow-x: auto; }
.tabs button { padding: 14px 18px; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; margin-bottom: -1px; }
.tabs button.on { color: #fff; border-bottom-color: var(--cyan); }
.tab-panel { display: none; padding: 26px 0; color: var(--text-2); max-width: 820px; }
.tab-panel.on { display: block; }
.tab-panel ul { padding-left: 18px; display: grid; gap: 6px; }
.nutri { width: 100%; max-width: 480px; border-collapse: collapse; font-size: 14px; }
.nutri th, .nutri td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.nutri th { color: var(--muted); font-weight: 600; }
.nutri td:last-child { text-align: right; font-weight: 700; color: var(--text); }
.review-summary { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin-bottom: 24px; }
.review-summary .big { font-family: var(--font-display); font-size: 72px; font-weight: 800; line-height: 1; color: var(--text); }
.bar-row { display: grid; grid-template-columns: 30px 1fr 40px; gap: 10px; align-items: center; font-size: 13px; }
.bar-row .track { height: 8px; background: var(--surface-3); border-radius: 4px; overflow: hidden; }
.bar-row .fill { height: 100%; background: var(--star); }
.pdp-review { padding: 16px 0; border-top: 1px solid var(--border); }
.pdp-review strong { color: var(--text); }

.fbt { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.fbt-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fbt-item { display: flex; align-items: center; gap: 10px; }
.fbt-item .thumb { width: 74px; height: 74px; border-radius: 12px; background: var(--surface-2); padding: 8px; }
.fbt-item .thumb svg { width: 100%; height: 100%; }
.fbt-item .n { font-weight: 700; font-size: 14px; max-width: 140px; }
.fbt-item .p { font-size: 13px; color: var(--muted); }
.fbt .plus { font-size: 26px; color: var(--muted); font-weight: 300; padding: 0 4px; }
.fbt-total { text-align: right; }
.fbt-total .t { font-family: var(--font-display); font-size: 34px; font-weight: 800; line-height: 1; }
.fbt-total small { color: var(--muted); font-size: 13px; display: block; margin-bottom: 10px; }
@media (max-width: 800px) { .fbt { grid-template-columns: 1fr; } .fbt-total { text-align: left; } }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; padding-bottom: 60px; align-items: start; }
.cart-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 22px; }
.cart-table .cart-line { grid-template-columns: 90px 1fr auto auto; padding: 18px 0; }
.cart-table .cart-line .thumb { width: 90px; height: 90px; }
.cart-table .line-price { min-width: 90px; }
.cart-table .cart-line:last-child { border-bottom: 0; }
.summary { position: sticky; top: calc(var(--header-h) + 20px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: grid; gap: 12px; }
.summary h3 { font-size: 26px; margin-bottom: 4px; }
.summary .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); }
.summary .row.total { font-size: 20px; font-weight: 800; color: var(--text); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
.summary .row .free { color: var(--green); font-weight: 700; }
.summary .row .disc { color: var(--green); }
.promo-form { display: flex; gap: 8px; }
.promo-form input { flex: 1; min-width: 0; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.input, .field input, .field select, .field textarea { height: 46px; border-radius: 10px; border: 1px solid var(--border-2); background: var(--bg-2); padding: 0 14px; color: var(--text); outline: 0; width: 100%; transition: border-color .15s, box-shadow .15s; }
.field textarea { height: auto; padding: 12px 14px; }
.input:focus, .field input:focus, .field select:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(37,99,235,.2); }
.field input.invalid { border-color: var(--red); }
.promo-msg { font-size: 13px; }
.promo-msg.ok { color: var(--green); }
.promo-msg.err { color: var(--red); }
.secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--muted); }
.secure svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } .cart-table .cart-line { grid-template-columns: 70px 1fr; } .cart-table .cart-line .thumb { width: 70px; height: 70px; } .cart-table .line-price { grid-column: 2; text-align: left; } .cart-table .qty { grid-column: 2; } }

/* ---------- Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1fr 420px; gap: 32px; padding-bottom: 60px; align-items: start; }
.co-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; }
.co-step h3 { display: flex; align-items: center; gap: 12px; font-size: 24px; margin-bottom: 18px; }
.co-step h3 span { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-body); font-size: 14px; font-weight: 800; display: grid; place-items: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.radio-card { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--border-2); border-radius: 10px; cursor: pointer; transition: .15s; }
.radio-card:hover { border-color: var(--cyan); }
.radio-card input { accent-color: var(--blue-2); width: 18px; height: 18px; }
.radio-card .t { flex: 1; font-weight: 600; font-size: 14px; }
.radio-card .t small { display: block; color: var(--muted); font-weight: 400; }
.radio-card .p { font-weight: 700; }
.radio-card:has(input:checked) { border-color: var(--cyan); background: rgba(56,189,248,.06); }
.co-summary .cart-line { grid-template-columns: 56px 1fr auto; padding: 12px 0; }
.co-summary .cart-line .thumb { width: 56px; height: 56px; padding: 6px; }
.order-done { text-align: center; padding: 60px 20px; max-width: 620px; margin: 0 auto; }
.order-done .check { width: 90px; height: 90px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: var(--shadow-blue); animation: pop .5s cubic-bezier(.5,1.8,.5,1); }
.order-done .check svg { width: 44px; height: 44px; color: #fff; }
@keyframes pop { from { transform: scale(0); } }
.order-done .num { display: inline-block; margin: 14px 0 24px; padding: 10px 18px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border-2); font-family: monospace; font-size: 18px; color: var(--cyan); }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ---------- Static pages ---------- */
.prose { max-width: 760px; color: var(--text-2); font-size: 16px; padding-bottom: 60px; }
.prose h2 { margin: 36px 0 12px; font-size: 32px; color: var(--text); }
.prose p + p { margin-top: 12px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0; }
.stat-row div { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-row strong { display: block; font-family: var(--font-display); font-size: 44px; font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-row span { color: var(--muted); font-size: 13px; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
