:root {
  --bg: #f6f7fb;
  --bg-2: #eef1f8;
  --surface: #ffffff;
  --ink: #0b1220;
  --ink-2: #334155;
  --muted: #6b7280;
  --line: #e6e9f0;
  --brand: #0891b2;
  --brand-2: #2563eb;
  --brand-3: #22d3ee;
  --brand-ink: #0e7490;
  --accent: #f43f5e;
  --gold: #f59e0b;
  --color: #3b82f6;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(15, 30, 66, 0.06);
  --shadow: 0 18px 44px rgba(15, 30, 66, 0.10);
  --shadow-lg: 0 40px 90px rgba(15, 30, 66, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
.container { width: min(1180px, 92%); margin-inline: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- Announcement marquee ---------- */
.announce { background: var(--ink); color: #dbeafe; overflow: hidden; white-space: nowrap; font-size: 0.8rem; letter-spacing: 0.3px; }
.announce__track { display: inline-flex; gap: 46px; padding: 9px 0; animation: marquee 28s linear infinite; }
.announce__track span { flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.72); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.header.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 28px; padding: 16px 0; }
.brand { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.5px; position: relative; display: inline-flex; align-items: baseline; }
.brand span { color: var(--brand); }
.brand__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-left: 3px; }
.nav { display: flex; gap: 26px; margin-left: auto; font-weight: 500; font-size: 0.95rem; color: var(--ink-2); }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--brand); transition: width 0.25s var(--ease); }
.nav a:hover::after { width: 100%; }
.cart-btn { position: relative; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 14px; cursor: pointer; color: var(--ink); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.cart-count { position: absolute; top: -7px; right: -7px; background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 40px; overflow: hidden; }
.hero__orbs, .finale__orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__orbs span { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.hero__orbs span:nth-child(1) { width: 420px; height: 420px; background: #7dd3fc; top: -120px; left: -80px; }
.hero__orbs span:nth-child(2) { width: 360px; height: 360px; background: #c4b5fd; top: 40px; right: -100px; }
.hero__orbs span:nth-child(3) { width: 300px; height: 300px; background: #fbcfe8; bottom: -120px; left: 40%; opacity: 0.35; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }

/* Stage / product */
.stage__frame { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); background: linear-gradient(160deg, #1c2440 0%, #0b1220 100%); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; display: grid; place-items: center; }
.stage__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.gthumb { width: 68px; height: 68px; border-radius: 14px; cursor: pointer; border: 2px solid var(--line); overflow: hidden; padding: 0; background: #0b1220; transition: 0.2s var(--ease); }
.gthumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gthumb:hover { transform: translateY(-2px); }
.gthumb.is-active { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent); transform: translateY(-2px); }
.stage__glow { position: absolute; width: 70%; aspect-ratio: 1/1; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--color) 55%, #fff) 0%, transparent 65%); filter: blur(10px); opacity: 0.75; transition: background 0.5s var(--ease); }
.product { position: relative; z-index: 2; width: 74%; filter: drop-shadow(0 30px 30px rgba(15,30,66,0.18)); animation: float 6s ease-in-out infinite; }
.product--sm { width: 210px; animation: none; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.wind { position: absolute; left: 8%; top: 30%; z-index: 1; opacity: 0.5; }
.wind i { display: block; height: 3px; border-radius: 3px; background: color-mix(in srgb, var(--color) 60%, #fff); margin: 10px 0; animation: gust 2.4s ease-in-out infinite; }
.wind i:nth-child(1){ width: 60px; } .wind i:nth-child(2){ width: 90px; animation-delay: .3s; } .wind i:nth-child(3){ width: 44px; animation-delay: .6s; }
@keyframes gust { 0%,100% { transform: translateX(0); opacity: .2; } 50% { transform: translateX(18px); opacity: .7; } }

/* Product SVG theming */
.pf-shadow { fill: rgba(15,30,66,0.12); }
.pf-body { fill: url(#g) ; fill: color-mix(in srgb, var(--color) 82%, #0b1220 8%); }
.pf-body-hi { fill: color-mix(in srgb, var(--color) 40%, #fff); opacity: .5; }
.pf-screen { fill: #0b1220; }
.pf-screen-num { fill: var(--brand-3); font-family: var(--font); font-weight: 800; font-size: 30px; }
.pf-screen-bar { fill: #22c55e; }
.pf-ring { fill: color-mix(in srgb, var(--color) 92%, #0b1220 6%); }
.pf-ring2 { fill: color-mix(in srgb, var(--color) 70%, #fff 30%); }
.pf-blades { transform-origin: 200px 175px; transform-box: view-box; animation: spin 3.2s linear infinite; }
.pf-blade { fill: color-mix(in srgb, var(--color) 45%, #fff); opacity: .96; }
.pf-hub { fill: color-mix(in srgb, var(--color) 88%, #0b1220 6%); }
.pf-hub2 { fill: color-mix(in srgb, var(--color) 30%, #fff); }
.pf-guard * { fill: none; stroke: rgba(255,255,255,0.45); stroke-width: 2; }
@keyframes spin { to { transform: rotate(360deg); } }
.pf-mini { width: 100%; aspect-ratio: 1/1; border-radius: 50%; background: conic-gradient(from 0deg, color-mix(in srgb,var(--color) 85%,#000) 0 25%, color-mix(in srgb,var(--color) 55%,#fff) 25% 50%, color-mix(in srgb,var(--color) 85%,#000) 50% 75%, color-mix(in srgb,var(--color) 55%,#fff) 75%); box-shadow: inset 0 0 0 12px color-mix(in srgb,var(--color) 25%,#fff), inset 0 0 0 16px #fff, var(--shadow); animation: spin 5s linear infinite; }
@media (prefers-reduced-motion: reduce) { .product, .pf-blades, .pf-mini, .wind i, .announce__track { animation: none !important; } }

.stage__thumbs { display: flex; gap: 12px; margin-top: 16px; justify-content: center; }
.thumb { width: 60px; height: 60px; border-radius: 14px; cursor: pointer; border: 2px solid var(--line); background: #fff; display: grid; place-items: center; transition: 0.2s var(--ease); }
.thumb span { width: 30px; height: 30px; border-radius: 50%; background: var(--c); }
.thumb.is-active { border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent); transform: translateY(-2px); }

/* Buy box */
.buybox { max-width: 500px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.72rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 14px; }
.hero__title { font-family: var(--display); font-weight: 600; font-size: clamp(2.6rem, 5vw, 3.9rem); line-height: 1.02; letter-spacing: -1.5px; }
.hero__title em { color: var(--brand); }
.hero__lead { color: var(--ink-2); font-size: 1.08rem; margin: 18px 0 22px; max-width: 44ch; }
.ratingline { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.ratingline a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.stars-sm { color: var(--gold); letter-spacing: 1px; }

.pricebar { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 22px; flex-wrap: wrap; }
.price-now { font-family: var(--display); font-size: 2.3rem; font-weight: 600; color: var(--ink); letter-spacing: -1px; }
.price-was { text-decoration: line-through; color: var(--muted); font-weight: 600; font-size: 1.1rem; }
.price-pill { background: #fee2e2; color: #be123c; font-weight: 700; font-size: 0.78rem; padding: 4px 11px; border-radius: 999px; }
.pricebar--center { justify-content: center; }

.opt { margin: 20px 0; }
.opt--row { display: flex; gap: 12px; align-items: stretch; }
.opt__head { font-weight: 600; margin-bottom: 12px; font-size: 0.95rem; }
.swatches { display: flex; gap: 12px; }
.swatch { width: 42px; height: 42px; border-radius: 50%; cursor: pointer; background: var(--c); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); transition: 0.2s var(--ease); }
.swatch:hover { transform: scale(1.06); }
.swatch.is-active { box-shadow: 0 0 0 2px var(--brand); transform: scale(1.12); }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 14px; background: #fff; }
.qty__btn { width: 46px; height: 54px; border: 0; background: none; font-size: 1.35rem; cursor: pointer; color: var(--ink); border-radius: 14px; }
.qty__btn:hover { background: var(--bg-2); }
.qty__input { width: 46px; height: 54px; border: 0; text-align: center; font-size: 1.05rem; font-weight: 700; background: none; }

.btn { border: 0; cursor: pointer; border-radius: 14px; font-weight: 700; font-size: 1rem; padding: 16px 26px; font-family: inherit; transition: transform 0.08s ease, box-shadow 0.25s var(--ease), background 0.25s; letter-spacing: 0.2px; }
.btn:active { transform: translateY(1px) scale(0.995); }
.btn--primary { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff; box-shadow: 0 12px 28px color-mix(in srgb, var(--brand-2) 34%, transparent); }
.btn--primary:hover { box-shadow: 0 18px 38px color-mix(in srgb, var(--brand-2) 46%, transparent); transform: translateY(-2px); }
.btn--soft { background: #fff; border: 1.5px solid var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--soft:hover { border-color: var(--brand); color: var(--brand-ink); }
.btn--grow { flex: 1; }
.btn--block { width: 100%; margin-top: 12px; }
.btn--lg { font-size: 1.1rem; padding: 18px 40px; }

.pay { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted); }
.pay__icons { display: flex; gap: 7px; flex-wrap: wrap; }
.payico { height: 26px; width: 40px; border-radius: 5px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.3px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }

.assurances { list-style: none; margin-top: 18px; display: grid; gap: 9px; font-size: 0.9rem; color: var(--ink-2); font-weight: 500; }
.assurances b { color: #16a34a; margin-right: 8px; }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 34px 0; text-align: center; }
.stats__grid strong { font-family: var(--display); display: block; font-size: 1.9rem; font-weight: 600; }
.stats__grid span { color: #93a4c2; font-size: 0.85rem; }

/* ---------- Sections shared ---------- */
section { scroll-margin-top: 90px; }
.kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 0.72rem; font-weight: 700; color: var(--brand-ink); display: inline-block; margin-bottom: 12px; }
.kicker--center { display: block; text-align: center; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head--left { text-align: left; margin: 0 0 30px; }
.section-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.08; letter-spacing: -1px; }
.section-title--left { text-align: left; }

/* ---------- Story rows ---------- */
.story { padding: 90px 0; }
.story__row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.story__row:last-child { margin-bottom: 0; }
.story__row--rev .story__media { order: 2; }
.story__text h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 12px; }
.story__text p { color: var(--ink-2); font-size: 1.05rem; max-width: 46ch; }
.tile { aspect-ratio: 4/3.4; border-radius: var(--radius-lg); position: relative; box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line); }
.tile::after { content: ""; position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%; right: -8%; bottom: -14%; background: rgba(255,255,255,0.35); filter: blur(10px); }
.tile img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.tile__tag { position: absolute; z-index: 2; top: 18px; left: 18px; background: rgba(255,255,255,0.9); backdrop-filter: blur(6px); padding: 7px 14px; border-radius: 999px; font-weight: 700; font-size: 0.82rem; box-shadow: var(--shadow-sm); }
.tile--a { background: linear-gradient(140deg, #a5b4fc, #6366f1); }
.tile--b { background: linear-gradient(140deg, #67e8f9, #0891b2); }
.tile--c { background: linear-gradient(140deg, #fda4af, #ec4899); }

/* ---------- Video showcase ---------- */
.showcase { position: relative; overflow: hidden; padding: 100px 0; background: var(--ink); color: #fff; }
.showcase__orbs span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.showcase__orbs span:nth-child(1){ width: 420px; height: 420px; background: var(--brand-2); top: -120px; left: -80px; }
.showcase__orbs span:nth-child(2){ width: 380px; height: 380px; background: #8b5cf6; bottom: -140px; right: -80px; }
.showcase__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.showcase__text .kicker { color: var(--brand-3); }
.showcase__text .section-title { color: #fff; }
.showcase__text p { color: #c7d2e4; font-size: 1.06rem; margin: 16px 0 22px; max-width: 46ch; }
.ticks { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.ticks li { position: relative; padding-left: 30px; color: #e2e8f0; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: color-mix(in srgb, var(--brand-3) 25%, transparent); color: var(--brand-3); font-size: 0.72rem; font-weight: 800; display: grid; place-items: center; }
.phone { position: relative; width: min(300px, 78%); margin-inline: auto; aspect-ratio: 9/19; border-radius: 40px; padding: 10px; background: linear-gradient(160deg, #1f2b45, #0b1220); box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.06); }
.phone::before { content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; border-radius: 6px; background: rgba(255,255,255,0.18); z-index: 3; }
.phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; display: block; background: #000; }
.phone__sound { position: absolute; bottom: 20px; right: 20px; z-index: 4; width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(11,18,32,0.7); backdrop-filter: blur(6px); color: #fff; font-size: 1.05rem; box-shadow: var(--shadow); }

/* ---------- Bento ---------- */
.features { padding: 100px 0; }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--brand-3) 12%, transparent), transparent 50%); opacity: 0; transition: opacity 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card--wide { grid-column: span 1; }
.bento .card--wide:first-child { grid-column: span 2; }
.bento .card--wide:nth-of-type(2) { grid-column: span 2; }
.card__ico { font-size: 2rem; }
.card h3 { margin: 14px 0 6px; font-size: 1.18rem; letter-spacing: -0.3px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Specs ---------- */
.specs { padding: 90px 0; background: var(--surface); border-block: 1px solid var(--line); }
.specs__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.specs__visual { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; display: grid; place-items: center; background: #0b1220; border: 1px solid var(--line); }
.specs__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spec-list { display: grid; gap: 2px; }
.spec-list > div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-weight: 600; }
.spec-list dd { font-weight: 700; text-align: right; }

/* ---------- Compare ---------- */
.compare { padding: 100px 0; }
.compare__table { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.compare__row:last-child { border-bottom: 0; }
.compare__row span:not(:first-child) { text-align: center; font-weight: 700; }
.compare__row--head { background: var(--bg-2); font-weight: 700; }
.compare__row--head .col-us { color: var(--brand-ink); }
.col-us { color: #16a34a; }
.col-them { color: var(--muted); font-weight: 500 !important; }

/* ---------- Reviews ---------- */
.reviews { padding: 100px 0; background: var(--surface); border-block: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review blockquote { font-size: 1.02rem; margin: 12px 0 18px; color: var(--ink); line-height: 1.55; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--a); color: #fff; font-weight: 700; font-size: 0.85rem; display: grid; place-items: center; }
.review figcaption b { display: block; font-size: 0.92rem; }
.review figcaption small { color: var(--muted); font-size: 0.78rem; }

/* ---------- Guarantee ---------- */
.guarantee { padding: 90px 0; }
.guarantee__inner { display: flex; align-items: center; gap: 40px; background: linear-gradient(120deg, var(--ink), #16233f); color: #fff; border-radius: var(--radius-lg); padding: 46px 50px; box-shadow: var(--shadow-lg); flex-wrap: wrap; }
.guarantee__seal { flex-shrink: 0; width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-size: 2.6rem; font-weight: 600; line-height: 0.8; background: radial-gradient(circle at 30% 30%, var(--brand-3), var(--brand-2)); box-shadow: 0 14px 30px color-mix(in srgb, var(--brand-2) 50%, transparent); }
.guarantee__seal small { display: block; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; }
.guarantee__inner h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.guarantee__inner p { color: #c7d2e4; max-width: 52ch; }

/* ---------- FAQ ---------- */
.faq { padding: 40px 0 100px; }
.faq__wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 2px 22px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform 0.25s; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); padding-bottom: 18px; }

/* ---------- Finale ---------- */
.finale { position: relative; overflow: hidden; background: linear-gradient(130deg, var(--brand) 0%, var(--brand-2) 100%); color: #fff; text-align: center; padding: 100px 0; }
.finale__orbs span { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.finale__orbs span:nth-child(1){ width: 400px; height: 400px; background: #a5f3fc; top: -140px; left: -60px; }
.finale__orbs span:nth-child(2){ width: 360px; height: 360px; background: #818cf8; bottom: -140px; right: -60px; }
.finale__inner { position: relative; z-index: 1; }
.finale h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -1px; margin-bottom: 22px; }
.finale .price-now { color: #fff; }
.finale .price-was { color: rgba(255,255,255,0.7); }
.finale .price-pill { background: rgba(255,255,255,0.2); color: #fff; }
.finale .btn--primary { background: #fff; color: var(--brand-ink); margin-top: 26px; box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.finale__sub { margin-top: 18px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #94a3b8; padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.brand--light { color: #fff; font-size: 1.6rem; }
.footer__blurb { margin: 12px 0 18px; max-width: 30ch; font-size: 0.92rem; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer__grid a { display: block; padding: 5px 0; font-size: 0.92rem; transition: color 0.2s; }
.footer__grid a:hover { color: #fff; }
.footer__bar { display: flex; justify-content: space-between; padding-top: 24px; font-size: 0.82rem; flex-wrap: wrap; gap: 8px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 0 80px; }
.legal__back { display: inline-block; margin-bottom: 22px; color: var(--brand-ink); font-weight: 600; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -1px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 12px; line-height: 1.7; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--brand-ink); text-decoration: underline; }
.legal .note { background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; margin: 22px 0; }
.legal strong.fill { background: #fef08a; padding: 1px 4px; border-radius: 4px; }
.header--simple .brand { margin-right: auto; }

/* ---------- Sticky buy bar ---------- */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: rgba(255,255,255,0.9); backdrop-filter: blur(16px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(15,30,66,0.08); transform: translateY(110%); transition: transform 0.4s var(--ease); }
.stickybar.is-show { transform: translateY(0); }
.stickybar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.stickybar__info { display: flex; align-items: center; gap: 14px; }
.stickybar__sw { width: 40px; height: 40px; border-radius: 12px; background: var(--color); box-shadow: 0 0 0 1px var(--line); }
.stickybar__info strong { display: block; font-size: 0.95rem; }
.stickybar__info small { color: var(--muted); font-size: 0.85rem; }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(11,18,32,0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 70; backdrop-filter: blur(2px); }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92%); background: #fff; z-index: 80; transform: translateX(100%); transition: transform 0.4s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--display); font-weight: 600; }
.drawer__head button { border: 0; background: none; font-size: 1.3rem; cursor: pointer; color: var(--muted); }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px 22px; }
.drawer__empty { color: var(--muted); text-align: center; margin-top: 50px; }
.line-item { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line-item__sw { width: 46px; height: 46px; border-radius: 12px; background: var(--c); flex-shrink: 0; box-shadow: 0 0 0 1px var(--line); }
.line-item__info { flex: 1; }
.line-item__info strong { display: block; font-size: 0.95rem; }
.line-item__info small { color: var(--muted); }
.line-item__remove { border: 0; background: none; color: var(--accent); cursor: pointer; font-weight: 600; font-size: 0.82rem; }
.drawer__foot { padding: 22px; border-top: 1px solid var(--line); }
.drawer__row { display: flex; justify-content: space-between; font-size: 1.15rem; margin-bottom: 10px; }
.drawer__row strong { font-family: var(--display); }
.drawer__ship { background: #ecfdf5; color: #047857; text-align: center; font-size: 0.82rem; font-weight: 600; padding: 8px; border-radius: 10px; margin-bottom: 14px; }
.drawer__note { text-align: center; color: var(--muted); font-size: 0.78rem; margin-top: 10px; }

/* ---------- Email popup ---------- */
.popup-overlay { position: fixed; inset: 0; background: rgba(11,18,32,0.55); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 85; backdrop-filter: blur(3px); }
.popup-overlay.is-open { opacity: 1; visibility: visible; }
.popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -46%) scale(0.96); width: min(420px, 92%); background: #fff; z-index: 86; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 38px 34px 30px; text-align: center; opacity: 0; visibility: hidden; transition: 0.35s var(--ease); }
.popup.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.popup__close { position: absolute; top: 14px; right: 16px; border: 0; background: none; font-size: 1.1rem; color: var(--muted); cursor: pointer; }
.popup__emoji { font-size: 2.6rem; }
.popup h3 { font-family: var(--display); font-weight: 600; font-size: 1.55rem; letter-spacing: -0.5px; margin: 6px 0 8px; }
.popup p { color: var(--ink-2); margin-bottom: 18px; }
.popup input[type="email"] { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 1rem; font-family: inherit; margin-bottom: 12px; }
.popup input[type="email"]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent); }
.popup__fine { color: var(--muted); font-size: 0.78rem; margin-top: 12px; margin-bottom: 0; }
.popup__code { background: #fef08a; padding: 2px 10px; border-radius: 6px; letter-spacing: 1px; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(160%); background: var(--ink); color: #fff; padding: 13px 24px; border-radius: 14px; font-weight: 600; font-size: 0.92rem; box-shadow: var(--shadow-lg); z-index: 90; transition: transform 0.4s var(--ease); max-width: 90%; }
.toast.is-show { transform: translateX(-50%) translateY(0); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .nav { display: none; }
  .buybox { max-width: none; }
  .story__row, .story__row--rev .story__media { grid-template-columns: 1fr; }
  .story__row--rev .story__media { order: 0; }
  .story__row { gap: 28px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento .card--wide, .bento .card--wide:first-child, .bento .card--wide:nth-of-type(2) { grid-column: span 2; }
  .specs__grid { grid-template-columns: 1fr; gap: 32px; }
  .specs__visual { max-width: 320px; margin-inline: auto; width: 100%; }
  .review-grid { grid-template-columns: 1fr; }
  .faq__wrap { grid-template-columns: 1fr; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .bento, .footer__grid, .stats__grid { grid-template-columns: 1fr; }
  .bento .card--wide, .bento .card--wide:first-child, .bento .card--wide:nth-of-type(2) { grid-column: span 1; }
  .guarantee__inner { padding: 32px 26px; gap: 24px; }
  .opt--row { flex-wrap: wrap; }
  .btn--grow { width: 100%; }
}
