/* ToolsNine store. Warm light surfaces, navy ink, one orange accent. */
:root {
  --bg: #faf8f5;
  --bg-2: #f3efe9;
  --card: #ffffff;
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --line: #e9e4dd;
  --line-2: #ddd6cc;
  --orange: #ea580c;
  --orange-2: #f97316;
  --orange-ink: #c2410c;
  --orange-wash: #fff7ed;
  --hot: linear-gradient(135deg, #f97316 0%, #ea580c 45%, #dc2626 100%);
  --navy: #111827;
  --green: #047857;
  --green-bg: #ecfdf5;
  --green-line: #a7f3d0;
  --bad: #b91c1c;
  --bad-bg: #fef2f2;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgb(17 24 39 / .05);
  --shadow: 0 1px 2px rgb(17 24 39 / .04), 0 8px 24px -12px rgb(17 24 39 / .14);
  --shadow-lg: 0 24px 48px -20px rgb(17 24 39 / .28);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; font: 15px/1.6 var(--font); color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
main { flex: 1; }
a { color: var(--orange-ink); }
img, svg { max-width: 100%; }
.ic { flex: none; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 620px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }
:focus-visible { outline: 3px solid rgb(249 115 22 / .45); outline-offset: 2px; }

/* ---- header & footer */
.top { position: sticky; top: 0; z-index: 30; background: rgb(250 248 245 / .88); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.top-in { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -.01em; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: var(--hot); color: #fff; font-size: 17px; box-shadow: 0 4px 10px -4px rgb(234 88 12 / .6); }
.top-links { display: flex; gap: 22px; margin-right: auto; }
.top-links a, .top-nav > a:not(.btn):not(.wallet-pill) { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 14.5px; }
.top-links a:hover { color: var(--ink); }
.top-nav { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.wallet-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px 7px 10px; border-radius: 999px; background: var(--card); border: 1px solid var(--line-2); color: var(--ink) !important; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: var(--shadow-sm); }
.wallet-pill .ic { color: var(--orange); }
.wallet-pill span { color: var(--muted); font-weight: 600; font-size: 12.5px; }
.foot { margin-top: 64px; border-top: 1px solid var(--line); background: var(--card); }
.foot-in { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding: 40px 20px 28px; }
.foot h4 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot a { color: var(--ink-2); text-decoration: none; font-size: 14px; }
.foot a:hover { color: var(--orange-ink); }
.foot-note { color: var(--muted); font-size: 14px; max-width: 32ch; margin: 10px 0 0; }
.foot-bottom { border-top: 1px solid var(--line); padding: 16px 20px; color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---- buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; font: inherit; font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; transition: transform .08s, box-shadow .15s, background .15s, filter .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-hot { background: var(--hot); color: #fff; box-shadow: 0 8px 20px -10px rgb(220 38 38 / .7); }
.btn-hot:hover { filter: brightness(1.05); box-shadow: 0 10px 24px -10px rgb(220 38 38 / .8); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1f2937; }
.btn-soft { background: var(--card); color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-soft:hover { border-color: #cfc6ba; background: #fffdfa; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
.btn-lg { min-height: 52px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn[disabled] { opacity: .6; cursor: wait; }
.wide { width: 100%; }

/* ---- hero */
.hero { position: relative; overflow: hidden; padding: 64px 0 40px; }
.hero::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 720px; height: 720px; background: radial-gradient(closest-side, rgb(249 115 22 / .16), transparent); pointer-events: none; }
.hero-in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: var(--orange-wash); border: 1px solid #fed7aa; color: var(--orange-ink); font-size: 13px; font-weight: 700; }
.hero h1 { margin: 18px 0 14px; font-size: clamp(34px, 5vw, 54px); line-height: 1.05; letter-spacing: -.03em; font-weight: 800; }
.hero h1 em { font-style: normal; background: var(--hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { margin: 0 0 26px; font-size: 18px; color: var(--ink-2); max-width: 34rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 6px; }
.hero-points .ic { color: var(--green); }
.demo-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 22px; transform: rotate(1.2deg); }
.demo-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.demo-top b { font-size: 15px; }
.demo-ok { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; background: var(--green-bg); color: var(--green); font-size: 12.5px; font-weight: 700; }
.demo-login { padding: 14px 16px; border-radius: 12px; background: var(--navy); color: #e5e7eb; font: 13.5px/1.7 var(--mono); }
.demo-login span { color: #9ca3af; }
.demo-rows { display: grid; gap: 8px; margin-top: 14px; font-size: 13.5px; color: var(--ink-2); }
.demo-rows div { display: flex; justify-content: space-between; }

/* ---- sections */
.section { padding: 56px 0 8px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.section-head h2 { margin: 0; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.02em; line-height: 1.15; }
.section-head p { margin: 6px 0 0; color: var(--muted); }
.trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.trust div { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.trust .tico { display: grid; place-items: center; width: 38px; height: 38px; flex: none; border-radius: 10px; background: var(--orange-wash); color: var(--orange); }
.trust b { display: block; font-size: 14.5px; }
.trust span { font-size: 13px; color: var(--muted); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips a { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--card); color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 14px; }
.chips a.on { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---- product cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.grid.single { grid-template-columns: minmax(0, 420px); }
.pcard { position: relative; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s, border-color .15s; }
.pcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.pcard-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.logo-tile { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 14px; background: var(--orange); color: #fff; font-weight: 800; font-size: 20px; box-shadow: inset 0 -2px 0 rgb(0 0 0 / .12); }
.logo-tile.lg { width: 64px; height: 64px; border-radius: 18px; font-size: 26px; }
.pbrand { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.pname { margin: 0; font-size: 20px; line-height: 1.2; letter-spacing: -.01em; }
.pname a { color: inherit; text-decoration: none; }
.pname a::after { content: ""; position: absolute; inset: 0; border-radius: 20px; }
.ptag { margin: 0 0 16px; color: var(--ink-2); font-size: 14.5px; }
.pprice { display: flex; align-items: baseline; gap: 10px; margin: 2px 0 16px; }
.pprice b { font-size: 30px; letter-spacing: -.02em; }
.pprice s { color: var(--muted); font-size: 15px; }
.save { padding: 2px 8px; border-radius: 999px; background: var(--green-bg); color: var(--green); font-size: 12px; font-weight: 800; }
.plist { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; font-size: 14px; color: var(--ink-2); }
.plist li { display: flex; gap: 10px; align-items: flex-start; }
.plist .ic { margin-top: 3px; color: var(--green); }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pcard-foot .btn { position: relative; z-index: 1; }
.stock { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.stock.in { color: var(--green); }
.stock.out { color: var(--orange-ink); }
.ribbon { position: absolute; top: 18px; right: 18px; padding: 3px 10px; border-radius: 999px; background: var(--hot); color: #fff; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }

/* ---- how it works, FAQ, CTA */
.steps3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: step; }
.steps3 div { padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; }
.steps3 div::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 12px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 800; }
.steps3 b { display: block; margin-bottom: 4px; font-size: 16px; }
.steps3 span { color: var(--ink-2); font-size: 14.5px; }
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; line-height: 1; color: var(--muted); }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0 0 16px; color: var(--ink-2); }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 56px; padding: 30px; border-radius: 22px; background: var(--navy); color: #fff; background-image: radial-gradient(circle at 90% 0, rgb(249 115 22 / .35), transparent 50%); }
.cta-band h2 { margin: 0 0 4px; font-size: 24px; }
.cta-band p { margin: 0; color: #cbd5e1; }

/* ---- product page */
.crumbs { display: flex; gap: 6px; font-size: 13.5px; color: var(--muted); padding: 22px 0 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--orange-ink); }
.pdp { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; align-items: start; padding: 24px 0 0; }
.pdp-head { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.pdp h1 { margin: 0; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -.02em; }
.pdp-tag { font-size: 18px; color: var(--ink-2); margin: 0 0 24px; }
.prose p { margin: 0 0 14px; color: var(--ink-2); font-size: 15.5px; }
.panel-lite { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; margin-top: 22px; }
.panel-lite h2 { margin: 0 0 12px; font-size: 17px; }
.buybox { position: sticky; top: 88px; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-lg); }
.buybox .pprice b { font-size: 36px; }
.buybox-list { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; font-size: 14px; color: var(--ink-2); }
.buybox-list li { display: flex; gap: 10px; align-items: center; }
.buybox-list .ic { color: var(--orange); }

/* ---- panels (checkout, order, account) */
.page { padding: 32px 0 0; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 28px; }
.panel + .panel { margin-top: 16px; }
.h2 { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; font-size: 26px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.lead { color: var(--ink-2); margin: 0 0 24px; font-size: 16px; }
.lead.left { text-align: left; }
.eyebrow { margin: 0 0 6px; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.eyebrow a { color: var(--muted); }
label { display: block; font-weight: 600; font-size: 14px; margin: 16px 0 6px; }
input, select, textarea { width: 100%; min-height: 46px; padding: 10px 14px; border: 1px solid var(--line-2); border-radius: 12px; font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange-2); box-shadow: 0 0 0 3px rgb(249 115 22 / .18); }
.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 24px; align-items: start; padding: 28px 0 0; }
.checkout .summary { position: sticky; top: 88px; }
.line-item { display: flex; align-items: center; gap: 14px; }
.li-name { flex: 1; display: grid; min-width: 0; }
.li-name b { font-size: 15.5px; }
.li-name span { color: var(--muted); font-size: 13.5px; }
.li-price { font-weight: 800; }
.coupon-row { display: flex; gap: 8px; margin-top: 18px; }
.coupon-row input { flex: 1; text-transform: uppercase; }
.coupon-row input::placeholder { text-transform: none; }
.note { color: var(--ink-2); font-size: 14px; margin: 10px 0; }
.note .ic { vertical-align: -2px; margin-right: 2px; }
.note.ok, .ok { color: var(--green); }
.note.bad { color: var(--bad); }
.alert { padding: 12px 14px; background: var(--bad-bg); color: var(--bad); border-radius: 12px; font-weight: 600; font-size: 14.5px; margin: 14px 0; }
.totals { margin: 18px 0 0; border-top: 1px solid var(--line); }
.totals div { display: flex; justify-content: space-between; padding: 9px 0; font-size: 15px; }
.totals dt { color: var(--ink-2); }
.totals dd { margin: 0; font-weight: 600; }
.totals .grand { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 14px; font-size: 19px; }
.totals .grand dd { font-weight: 800; }
.totals.small { font-size: 14px; margin-top: 24px; }
.methods { border: 0; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.methods legend { font-weight: 700; font-size: 14px; margin-bottom: 8px; padding: 0; }
.method { display: flex; align-items: center; gap: 14px; margin: 0; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 14px; background: #fff; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.method:has(input:checked) { border-color: var(--orange-2); box-shadow: 0 0 0 3px rgb(249 115 22 / .15); }
.method input { width: auto; min-height: 0; accent-color: var(--orange); }
.method span { display: grid; }
.method small { color: var(--muted); font-weight: 500; font-size: 13px; }
.method .ic { color: var(--ink-2); }
.secure-note { display: flex; align-items: center; gap: 8px; justify-content: center; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.signed-in { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-radius: 12px; background: var(--bg-2); font-size: 14px; color: var(--ink-2); flex-wrap: wrap; }
.signed-in .ic { color: var(--green); }
.wallet-use { display: flex; gap: 12px; align-items: flex-start; margin: 14px 0 0; padding: 14px 16px; border: 1px solid #fed7aa; background: var(--orange-wash); border-radius: 14px; cursor: pointer; font-weight: 500; }
.wallet-use input { width: auto; min-height: 0; margin-top: 4px; accent-color: var(--orange); }
.wallet-use span { display: grid; gap: 2px; }
.wallet-use small { color: var(--ink-2); font-size: 13px; }
.small-note { font-size: 13.5px; margin-top: 8px; }
.captcha { margin: 16px 0 0; min-height: 65px; }
.step-label { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: 16px; font-weight: 800; }
.step-label i { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--navy); color: #fff; font-style: normal; font-size: 13px; }

/* ---- order & account */
.secret { position: relative; margin: 12px 0; }
.secret pre { margin: 0; padding: 18px 100px 18px 18px; background: var(--navy); color: #f9fafb; border-radius: 14px; white-space: pre-wrap; word-break: break-all; font: 14.5px/1.65 var(--mono); }
.secret pre.code { font-size: 24px; letter-spacing: .12em; font-weight: 700; }
.secret pre.link { font-size: 13px; }
.secret .copy { position: absolute; top: 10px; right: 10px; min-height: 36px; padding: 0 12px; font-size: 13px; }
.state-hero { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.state-icon { display: grid; place-items: center; width: 52px; height: 52px; flex: none; border-radius: 16px; background: var(--green-bg); color: var(--green); }
.state-icon.wait { background: var(--orange-wash); color: var(--orange); }
.state-hero h1 { margin: 0; }
.balance-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px; border-radius: 18px; background: var(--navy); color: #fff; background-image: radial-gradient(circle at 100% 0, rgb(249 115 22 / .4), transparent 55%); }
.balance-card small { display: block; opacity: .75; font-size: 13px; font-weight: 600; }
.balance-card b { font-size: 36px; font-weight: 800; letter-spacing: -.02em; }
.section-h { font-size: 18px; font-weight: 800; margin: 30px 0 12px; }
.rows { display: grid; gap: 8px; }
.row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; color: var(--ink); }
a.row:hover { border-color: #fdba74; }
.row .grow { flex: 1; min-width: 0; display: grid; }
.row .grow b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row .grow span { color: var(--muted); font-size: 13px; }
.row .amt { font-weight: 800; white-space: nowrap; }
.row .amt.plus { color: var(--green); }
.chip { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--bg-2); color: var(--ink-2); white-space: nowrap; }
.chip.ok { background: #d1fae5; color: #065f46; }
.chip.wait { background: #ffedd5; color: #9a3412; }
.amounts { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.amount-opt { position: relative; margin: 0; }
.amount-opt input { position: absolute; opacity: 0; }
.amount-opt span { display: grid; place-items: center; gap: 2px; min-height: 70px; padding: 8px; border: 1px solid var(--line-2); border-radius: 14px; background: #fff; font-weight: 800; font-size: 18px; cursor: pointer; text-align: center; transition: border-color .15s, box-shadow .15s; }
.amount-opt small { font-size: 12px; font-weight: 700; color: var(--green); }
.amount-opt input:checked + span { border-color: var(--orange-2); box-shadow: 0 0 0 3px rgb(249 115 22 / .18); }
.amount-opt input:focus-visible + span { outline: 3px solid rgb(249 115 22 / .45); }
.tiers { display: flex; gap: 8px; align-items: center; margin: 14px 0 0; padding: 12px 14px; border-radius: 12px; background: var(--green-bg); border: 1px solid var(--green-line); color: var(--green); font-size: 14px; font-weight: 600; }
.devlink { margin-top: 16px; padding: 12px; border: 1px dashed #fdba74; border-radius: 12px; font-size: 13px; word-break: break-all; }
.top-gap-lg { margin-top: 28px; }
.auth-card { max-width: 460px; margin: 48px auto 0; }

@media (max-width: 960px) {
  .hero-in, .pdp, .checkout { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .demo-card { transform: none; max-width: 440px; }
  .buybox, .checkout .summary { position: static; }
  .checkout .summary { order: -1; }
  .trust { grid-template-columns: 1fr 1fr; }
  .steps3 { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .top-links { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .top-in { gap: 12px; }
  .top-nav .btn-dark { display: none; }  /* on phones the header keeps Sign in; the hero has the shop button */
  .wallet-pill span { display: none; }
  .trust { grid-template-columns: 1fr; }
  .panel { padding: 20px; border-radius: 18px; }
  .coupon-row { flex-direction: column; }
  .secret pre { padding: 52px 16px 16px; }
  .foot-in { grid-template-columns: 1fr; }
  .cta-band { padding: 22px; }
  .hero-cta .btn { flex: 1; }
}

/* product colours (a palette: the page's security policy allows no inline styles) */
.tone-orange { background: linear-gradient(135deg, #fb923c, #ea580c); } .tone-red { background: linear-gradient(135deg, #f87171, #dc2626); }
.tone-pink { background: linear-gradient(135deg, #f472b6, #db2777); } .tone-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.tone-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); } .tone-teal { background: linear-gradient(135deg, #2dd4bf, #0d9488); }
.tone-green { background: linear-gradient(135deg, #4ade80, #16a34a); } .tone-navy { background: linear-gradient(135deg, #475569, #111827); }

.trust p { margin: 0; }
/* one product on sale: a wide featured card, features beside the price */
.grid.single { grid-template-columns: minmax(0, 880px); }
.grid.single .pcard { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); column-gap: 32px; padding: 28px;
  grid-template-areas: "top list" "tag list" "price list" "foot list"; align-items: start; }
.grid.single .pcard-top { grid-area: top; }
.grid.single .ptag { grid-area: tag; }
.grid.single .pprice { grid-area: price; }
.grid.single .plist { grid-area: list; align-self: center; margin: 0; padding: 18px 20px; border-radius: 14px; background: var(--bg); gap: 12px; }
.grid.single .pcard-foot { grid-area: foot; justify-content: flex-start; gap: 18px; }
@media (max-width: 720px) {
  .grid.single .pcard { display: flex; padding: 22px; }
  .grid.single .plist { margin: 0 0 18px; }
  .grid.single .pcard-foot { justify-content: space-between; }
}

/* ================= homepage v2 ================= */
.kicker { display: inline-block; margin-bottom: 6px; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--orange-ink); }
.hero { padding: 56px 0 36px; }
.hero-in { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.hero h1 { font-size: clamp(36px, 5.2vw, 60px); }

/* the featured product, in the hero */
.showcase { position: relative; display: block; border-radius: 24px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; color: var(--ink); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.showcase:hover { transform: translateY(-3px); box-shadow: 0 32px 60px -24px rgb(17 24 39 / .35); }
.sc-head { position: relative; padding: 22px 22px 0; color: #fff; }
.sc-brand { display: flex; align-items: center; gap: 12px; }
.sc-logo { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: rgb(255 255 255 / .2); border: 1px solid rgb(255 255 255 / .35); font-weight: 800; font-size: 20px; }
.sc-brand b { display: block; font-size: 22px; letter-spacing: -.01em; line-height: 1.1; }
.sc-brand small { font-size: 13px; opacity: .85; font-weight: 600; }
.sc-tag { position: absolute; top: 24px; right: 22px; padding: 4px 11px; border-radius: 999px; background: rgb(255 255 255 / .95); color: var(--ink); font-size: 12px; font-weight: 800; }
.sc-chart { margin-top: 20px; padding: 16px 16px 0; border-radius: 16px 16px 0 0; background: rgb(255 255 255 / .96); }
.sc-kpis { display: flex; gap: 16px; font-size: 11.5px; font-weight: 700; color: var(--muted); }
.sc-kpis span { display: flex; align-items: center; gap: 6px; }
.sc-kpis i { width: 8px; height: 8px; border-radius: 3px; background: #fb923c; }
.sc-kpis span:nth-child(2) i { background: #60a5fa; }
.sc-kpis span:nth-child(3) i { background: #34d399; }
.sc-bars { display: flex; align-items: flex-end; gap: 6px; height: 112px; margin-top: 12px; }
.sc-bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #fdba74, #fb923c); opacity: .9; }
.sc-bars span:nth-child(3n+2) { background: linear-gradient(180deg, #93c5fd, #60a5fa); }
.sc-bars span:nth-child(3n) { background: linear-gradient(180deg, #6ee7b7, #34d399); }
.sc-bars .h34 { height: 34%; } .sc-bars .h48 { height: 48%; } .sc-bars .h41 { height: 41%; } .sc-bars .h58 { height: 58%; }
.sc-bars .h52 { height: 52%; } .sc-bars .h66 { height: 66%; } .sc-bars .h61 { height: 61%; } .sc-bars .h74 { height: 74%; }
.sc-bars .h70 { height: 70%; } .sc-bars .h86 { height: 86%; } .sc-bars .h81 { height: 81%; } .sc-bars .h94 { height: 94%; }
.sc-body { display: grid; gap: 12px; padding: 20px 22px 22px; }
.sc-name { font-size: 19px; }
.sc-body p { margin: 2px 0 0; color: var(--ink-2); font-size: 14.5px; }
.sc-buy { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sc-price { display: flex; align-items: baseline; gap: 8px; }
.sc-price b { font-size: 32px; letter-spacing: -.02em; }
.sc-price s { color: var(--muted); }
.sc-float { position: absolute; right: 16px; top: 128px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: var(--card); color: var(--green); font-size: 12.5px; font-weight: 800; box-shadow: var(--shadow); }

/* proof strip */
.proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 36px; padding: 18px 24px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.proof > div:not(.pay-pills) { display: grid; }
.proof b { font-size: 20px; letter-spacing: -.01em; }
.proof span { font-size: 13px; color: var(--muted); }
.pay-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-left: auto; }
.pay-pills span { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--bg); color: var(--ink-2); font-size: 12px; font-weight: 700; }
.pay-pills .crypto { background: #fefce8; border-color: #fde68a; }
.pay-pills .wallet { background: var(--orange-wash); border-color: #fed7aa; color: var(--orange-ink); }

/* products section: the "more coming" card beside a single product */
.grid.single { grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr); align-items: stretch; }
.soon { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 24px; border: 1.5px dashed var(--line-2); border-radius: 20px; background: linear-gradient(180deg, var(--card), var(--bg)); }
.soon-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--orange-wash); color: var(--orange); }
.soon b { font-size: 17px; }
.soon p { margin: 0 0 6px; color: var(--ink-2); font-size: 14px; }
.soon .btn { margin-top: auto; }
.stock.low { color: var(--orange-ink); }

/* spotlight */
.spotlight { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 36px; padding: 36px; border-radius: 24px; background: var(--navy); color: #fff; background-image: radial-gradient(circle at 0 0, rgb(249 115 22 / .28), transparent 45%), radial-gradient(circle at 100% 100%, rgb(96 165 250 / .18), transparent 45%); }
.spot-intro .kicker { color: #fdba74; }
.spot-intro h2 { margin: 0 0 12px; font-size: clamp(26px, 3vw, 34px); letter-spacing: -.02em; line-height: 1.15; }
.spot-intro p { margin: 0 0 22px; color: #cbd5e1; }
.spot-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.spotlight .btn-soft { background: rgb(255 255 255 / .08); color: #fff; border-color: rgb(255 255 255 / .2); box-shadow: none; }
.spotlight .btn-soft:hover { background: rgb(255 255 255 / .14); }
.spot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.spot-item { display: grid; gap: 4px; align-content: start; padding: 16px; border-radius: 16px; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .1); }
.spot-num { font-size: 12px; font-weight: 800; color: #fdba74; letter-spacing: .05em; }
.spot-item b { font-size: 15.5px; }
.spot-text { font-size: 13.5px; color: #cbd5e1; }

/* how it works & why */
.step-ico { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 12px; border-radius: 12px; background: var(--orange-wash); color: var(--orange); }
.steps3 div::before { display: none; }
.why { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.why-item { display: grid; gap: 6px; align-content: start; padding: 20px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.why-item > .ic { color: var(--orange); }
.why-item b { font-size: 15.5px; }
.why-item span { font-size: 14px; color: var(--ink-2); }
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 36px; align-items: start; }
.faq-wrap .section-head { position: sticky; top: 96px; }

@media (max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; gap: 32px; }
  .grid.single { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; padding: 26px; }
  .why { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 0; }
  .faq-wrap .section-head { position: static; }
  .pay-pills { margin-left: 0; }
  .showcase { max-width: 520px; }
}
@media (max-width: 560px) {
  .spot-grid, .why { grid-template-columns: 1fr; }
  .proof { gap: 12px 24px; padding: 16px; }
  .sc-bars { height: 84px; }
  .sc-float { top: 108px; }
}

.hl-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.hl-grid div { display: grid; gap: 2px; padding: 12px 14px; border-radius: 12px; background: var(--bg); }
.hl-grid b { font-size: 14.5px; }
.hl-grid span { font-size: 13.5px; color: var(--ink-2); }
@media (max-width: 560px) { .hl-grid { grid-template-columns: 1fr; } }

/* ================= help, tickets, pages, receipts ================= */
.announce { background: var(--navy); color: #fff; text-align: center; font-size: 14px; font-weight: 600; padding: 9px 16px; }
.announce a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.announce a:hover { text-decoration: underline; }
.h1-left { margin: 4px 0 8px; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.02em; line-height: 1.1; }
.help-head { max-width: 640px; margin-bottom: 24px; }
.help-quick { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 28px; }
.help-card { display: grid; gap: 4px; align-content: start; padding: 18px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: border-color .15s, transform .15s; }
.help-card:hover { border-color: #fdba74; transform: translateY(-2px); }
.help-card > .ic { color: var(--orange); margin-bottom: 6px; }
.help-card span { color: var(--ink-2); font-size: 13.5px; }
.help-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.help-grid textarea { min-height: 140px; resize: vertical; }
.sent-panel { border-color: var(--green-line); }
.ticket-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.ticket-head .h2 { margin-bottom: 8px; }
.thread { list-style: none; margin: 8px 0 18px; padding: 0; display: grid; gap: 12px; }
.msg { padding: 14px 16px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); }
.msg.admin { background: var(--orange-wash); border-color: #fed7aa; }
.msg.system { background: var(--bg-2); }
.msg-meta { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.msg-meta b { color: var(--ink); }
.msg-body p { margin: 0 0 8px; white-space: pre-wrap; overflow-wrap: anywhere; }
.msg-body p:last-child { margin: 0; }
.top-gap { margin-top: 12px; }
.doc h2 { font-size: 18px; margin: 26px 0 8px; }
.doc p { color: var(--ink-2); margin: 0 0 12px; }
.doc-links { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.doc-links a { padding: 6px 12px; border-radius: 999px; color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 600; }
.doc-links a.on { background: var(--card); border: 1px solid var(--line-2); color: var(--ink); }
.notify { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-2); }
.notify-row { display: flex; gap: 8px; }
.notify-row input { flex: 1; }
.agree { margin: 10px 0 0; text-align: center; font-size: 12.5px; color: var(--muted); }
.agree a { color: var(--muted); }
.receipt { margin-top: 16px; }
.receipt-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.receipt-head .h2 { margin: 0; }
.receipt-meta { display: grid; justify-items: end; font-size: 14px; }
.receipt-meta span { color: var(--muted); }
.receipt-actions { margin-top: 14px; }
.order-help { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 16px; padding: 16px 20px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.order-help div { display: grid; }
.order-help span { color: var(--muted); font-size: 13.5px; }
.foot-bottom a { color: var(--muted); }
@media (max-width: 960px) {
  .help-quick { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .help-quick { grid-template-columns: 1fr; }
  .notify-row { flex-direction: column; }
}
@media print {
  .top, .foot, .announce, .no-print, .order-help, .secret .copy { display: none !important; }
  body { background: #fff; }
  .panel { box-shadow: none; border-color: #ddd; }
  .secret pre { background: #fff; color: #000; border: 1px solid #ccc; }
}
