/* ============================================================
   ClutchTick — site design system (room-first, premium dark)
   ============================================================ */
:root {
  --bg: #080b11;
  --bg-2: #0a0e14;
  --surface: #111824;
  --surface-2: #0e141d;
  --border: #1e2a3a;
  --border-soft: #18222f;
  --muted: #8b9bb0;
  --muted-2: #6b7a8d;
  --text: #e6edf3;
  --accent: #3b82f6;
  --accent-strong: #2563eb;
  --cyan: #22d3ee;
  --good: #34d399;
  --warn: #fbbf24;
  --pro: #a855f7;
  --radius: 16px;
  --maxw: 1140px;
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background:
    radial-gradient(1200px 620px at 82% -12%, rgba(59, 130, 246, 0.12), transparent 58%),
    radial-gradient(900px 520px at -12% 18%, rgba(34, 211, 238, 0.07), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(59, 130, 246, 0.35); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--border), #243246); border-radius: 999px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(#2a3a52, #34507a); }
.center { text-align: center; }
.muted { color: var(--muted); }
.cyan { color: var(--cyan); }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.gradient {
  background: linear-gradient(92deg, #ffffff 0%, #7cc1ff 45%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.94) 0%, rgba(9, 13, 20, 0.78) 100%);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 50px -30px rgba(34, 211, 238, 0.6);
}
header.site::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.55), rgba(34, 211, 238, 0.55), transparent);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }
.logo { display: flex; align-items: center; gap: 13px; font-weight: 800; letter-spacing: -0.02em; }
.logo img { height: 42px; width: auto; filter: drop-shadow(0 2px 10px rgba(34, 211, 238, 0.35)); }
.logo .mark {
  width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: radial-gradient(130% 130% at 28% 18%, rgba(59, 130, 246, 0.30), rgba(34, 211, 238, 0.10) 70%);
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 28px -10px rgba(34, 211, 238, 0.8);
}
.logo .mark svg { width: 25px; height: 25px; filter: drop-shadow(0 0 7px rgba(34, 211, 238, 0.6)); }
.logo .wm { font-size: 23px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.logo .wm b { font-weight: 800; background: linear-gradient(92deg, #60a5fa, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo.logo-sm .mark { width: 34px; height: 34px; }
.logo.logo-sm .mark svg { width: 20px; height: 20px; }
.logo.logo-sm .wm { font-size: 19px; }
.nav-links { display: none; align-items: center; gap: 30px; font-size: 14.5px; color: var(--muted); }
.nav-links a { position: relative; padding: 4px 0; transition: color 0.16s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--cyan)); transition: right 0.22s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 11px; }
@media (min-width: 920px) { .nav-links { display: flex; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-weight: 600; font-size: 14.5px; border-radius: 11px; padding: 11px 18px;
  border: 1px solid transparent; cursor: pointer; transition: all 0.16s ease; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); color: #fff; box-shadow: 0 10px 30px -10px rgba(34, 211, 238, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 16px 40px -10px rgba(34, 211, 238, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-ghost { border-color: var(--border); color: #fff; background: rgba(255, 255, 255, 0.025); }
.btn-ghost:hover { border-color: rgba(59, 130, 246, 0.55); background: rgba(59, 130, 246, 0.08); transform: translateY(-1px); }
.btn-lg { padding: 14px 24px; font-size: 16px; border-radius: 13px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 18px; }
.grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 211, 238, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 35%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 35%, transparent 100%);
}
.glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(130px); pointer-events: none; }
.glow.a { top: -160px; right: -80px; width: 520px; height: 520px; background: rgba(59, 130, 246, 0.22); }
.glow.b { bottom: -220px; left: -120px; width: 460px; height: 460px; background: rgba(34, 211, 238, 0.12); }
.hero-inner { position: relative; z-index: 1; display: grid; gap: 48px; align-items: center; padding: 58px 0 40px; }
@media (min-width: 1000px) { .hero-inner { grid-template-columns: 1.05fr 1fr; padding: 78px 0 56px; } }

.pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
h1 { margin-top: 22px; font-size: clamp(42px, 7.2vw, 70px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.sub { margin-top: 22px; max-width: 540px; font-size: 18.5px; color: var(--muted); }
.sub b { color: #fff; font-weight: 600; }
.hero-btns { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-note { margin-top: 18px; display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); }
.hero-note .ok { color: var(--good); }

/* ---------- app window mock ---------- */
.appwin {
  position: relative; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--surface); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
  transform: perspective(1700px) rotateY(-13deg) rotateX(5deg);
}
.appwin .bar { display: flex; align-items: center; gap: 7px; height: 34px; padding: 0 13px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.appwin .bar i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.appwin .bar .r { background: #f87171; } .appwin .bar .y { background: #fbbf24; } .appwin .bar .g { background: #34d399; }
.appwin .bar .name { margin-left: 8px; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: -0.01em; }
.appwin .bar .badge { margin-left: auto; font-size: 9px; font-weight: 700; color: var(--accent); background: rgba(59, 130, 246, 0.15); padding: 3px 9px; border-radius: 999px; }
.appwin .body { display: flex; min-height: 250px; }
.appwin .rail { width: 56px; border-right: 1px solid var(--border); padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.appwin .rail .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--muted); font-size: 14px; }
.appwin .rail .ic.on { background: rgba(59, 130, 246, 0.16); color: var(--accent); }
.appwin .side { width: 150px; border-right: 1px solid var(--border); padding: 13px 10px; display: none; }
.appwin .side .lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin: 10px 4px 5px; font-weight: 700; }
.appwin .side .row { display: flex; align-items: center; gap: 7px; padding: 6px; border-radius: 7px; font-size: 12px; }
.appwin .side .row:hover { background: var(--surface-2); }
.appwin .side .av { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, rgba(59,130,246,0.6), rgba(34,211,238,0.4)); flex: none; }
.appwin .side .live { margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--good); }
.appwin .stage { flex: 1; padding: 16px; background: radial-gradient(120% 100% at 0 0, rgba(59,130,246,0.08), transparent 55%); }
.appwin .stage .tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--accent); background: rgba(59,130,246,0.14); padding: 3px 9px; border-radius: 999px; }
.appwin .stage h4 { margin-top: 11px; font-size: 16px; letter-spacing: -0.02em; }
.appwin .stage p { margin-top: 5px; font-size: 11.5px; color: var(--muted); max-width: 220px; }
.appwin .stage .stats { margin-top: 14px; display: flex; gap: 8px; }
.appwin .stage .stat { border: 1px solid var(--border); border-radius: 9px; padding: 8px 11px; text-align: center; background: var(--bg-2); }
.appwin .stage .stat b { display: block; font-size: 14px; color: var(--good); font-variant-numeric: tabular-nums; }
.appwin .stage .stat span { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-2); }
.appwin .dock { display: flex; align-items: center; gap: 9px; border-top: 1px solid var(--border); background: var(--surface-2); padding: 9px 14px; }
.appwin .dock .d { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--border); font-size: 12px; }
.appwin .dock .ptt { margin: 0 auto; font-size: 11px; font-weight: 700; color: #fff; padding: 7px 20px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--cyan)); box-shadow: 0 0 0 2px rgba(34,211,238,0.3); }
.appwin .dock .ping { font-size: 10px; color: var(--good); }
@media (min-width: 560px) { .appwin .side { display: block; } }
.floaty { position: absolute; z-index: 2; border: 1px solid rgba(59,130,246,0.4); background: rgba(17,24,36,0.92); backdrop-filter: blur(6px); border-radius: 13px; padding: 11px 14px; box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7); }
.floaty.gauge { left: -22px; bottom: 34px; display: none; }
.floaty .ttl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.floaty .big { font-size: 22px; font-weight: 800; color: var(--good); font-variant-numeric: tabular-nums; }
.floaty .cap { font-size: 10px; color: var(--muted); }
@media (min-width: 1100px) { .floaty.gauge { display: block; } }

/* ---------- generic sections ---------- */
section.block { padding: 64px 0; position: relative; }
.h2 { font-size: clamp(28px, 4.2vw, 40px); font-weight: 800; letter-spacing: -0.025em; margin-top: 12px; }
.lead { max-width: 560px; margin: 14px auto 0; color: var(--muted); font-size: 16.5px; }

/* strip */
.strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  background: rgba(17, 24, 36, 0.55); border: 1px solid var(--border); border-radius: 20px; padding: 13px; backdrop-filter: blur(8px);
}
@media (min-width: 720px) { .strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .strip { grid-template-columns: repeat(6, 1fr); } }
.chip { display: flex; align-items: center; gap: 11px; padding: 11px; border-radius: 12px; }
.chip .ic { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(59, 130, 246, 0.12); color: var(--accent); }
.chip b { font-size: 13.5px; display: block; }
.chip span { font-size: 11.5px; color: var(--muted); }

/* card grids */
.grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 40px; }
.grid.c2 { } .grid.c3 { } .grid.c4 { }
@media (min-width: 640px) { .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid.c3 { grid-template-columns: repeat(3, 1fr); } .grid.c4 { grid-template-columns: repeat(4, 1fr); } }
.card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px; transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: 18px; padding: 1px; background: linear-gradient(160deg, rgba(59,130,246,0.35), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.18s; pointer-events: none; }
.card:hover { border-color: rgba(59, 130, 246, 0.5); transform: translateY(-3px); box-shadow: 0 22px 55px -30px rgba(34, 211, 238, 0.55); }
.card:hover::before { opacity: 1; }
.card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(59, 130, 246, 0.12); color: var(--accent); font-size: 20px; }
.card h3 { margin-top: 16px; font-size: 16.5px; letter-spacing: -0.01em; }
.card p { margin-top: 8px; font-size: 14px; color: var(--muted); }
.card.hot { border-color: rgba(59, 130, 246, 0.5); background: linear-gradient(165deg, var(--surface), var(--surface-2)); box-shadow: 0 0 0 1px rgba(59,130,246,0.1), 0 18px 50px -24px rgba(34,211,238,0.35); }
.free { font-size: 10px; font-weight: 800; color: var(--accent); background: rgba(59,130,246,0.16); padding: 3px 9px; border-radius: 999px; letter-spacing: 0.04em; }

/* steps */
.steps { counter-reset: s; display: grid; gap: 16px; margin-top: 40px; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px 22px; }
.step::before { counter-increment: s; content: counter(s); position: absolute; top: -16px; left: 22px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--accent), var(--cyan)); box-shadow: 0 8px 20px -8px rgba(34,211,238,0.6); }
.step h3 { margin-top: 14px; font-size: 17px; }
.step p { margin-top: 7px; font-size: 14px; color: var(--muted); }

/* esports highlight */
.highlight { display: grid; gap: 30px; align-items: center; border: 1px solid rgba(59,130,246,0.3); border-radius: 24px; padding: 30px; background: linear-gradient(160deg, var(--surface), var(--surface-2)); box-shadow: 0 0 0 1px rgba(59,130,246,0.08), 0 30px 70px -34px rgba(34,211,238,0.3); }
@media (min-width: 860px) { .highlight { grid-template-columns: 1fr 1fr; padding: 46px; } }
.tagrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--accent); background: rgba(59,130,246,0.15); padding: 6px 13px; border-radius: 999px; }
.checklist { margin-top: 22px; display: grid; gap: 11px; }
.checklist li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14.5px; }
.checklist .ok { color: var(--good); flex: none; }
.statgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.statbox { border: 1px solid var(--border); background: var(--bg-2); border-radius: 13px; padding: 16px 12px; text-align: center; }
.statbox b { display: block; font-size: 21px; font-weight: 800; font-variant-numeric: tabular-nums; }
.statbox span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-top: 4px; display: block; }

/* comparison */
.tablewrap { margin-top: 40px; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
thead tr { background: var(--surface-2); text-align: left; }
th, td { padding: 15px 18px; }
th.cmid { text-align: center; color: var(--accent); }
th.cright { text-align: center; color: var(--muted); }
tbody tr { border-top: 1px solid var(--border-soft); }
tbody tr:nth-child(even) { background: rgba(17, 24, 36, 0.4); }
td.mid { text-align: center; background: rgba(59,130,246,0.05); font-weight: 700; color: var(--accent); }
td.right { text-align: center; color: var(--muted); }
.ok-i { color: var(--good); } .no-i { color: var(--muted-2); }

/* cta band */
.ctaband { position: relative; overflow: hidden; text-align: center; border: 1px solid rgba(59,130,246,0.3); border-radius: 26px; padding: 56px 26px; background: linear-gradient(160deg, var(--surface), var(--surface-2)); box-shadow: 0 0 0 1px rgba(59,130,246,0.08), 0 30px 80px -34px rgba(34,211,238,0.35); }
.ctaband .blob { position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 320px; height: 320px; border-radius: 50%; background: rgba(59,130,246,0.2); filter: blur(110px); }
.ctaband > * { position: relative; }

/* footer */
footer.site { border-top: 1px solid rgba(30, 42, 58, 0.6); padding: 50px 0 40px; margin-top: 40px; color: var(--muted); font-size: 14px; }
.foot-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 2fr; } }
.foot-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (min-width: 560px) { .foot-cols { grid-template-columns: repeat(3, 1fr); } }
.foot-cols h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.foot-cols a { display: block; padding: 4px 0; }
.foot-cols a:hover { color: #fff; }
.foot-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border-soft); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted-2); }
.badge-soon { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--cyan); background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.25); border-radius: 999px; padding: 6px 13px; }

/* download page */
.dl-grid { display: grid; gap: 16px; margin-top: 16px; }
@media (min-width: 720px) { .dl-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   marketing inline icons (custom stroke glyphs — no emoji)
   ============================================================ */
svg.mi { display: inline-flex; width: 1em; height: 1em; flex: none; vertical-align: -0.14em; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.card .ic svg.mi { width: 23px; height: 23px; }
.chip .ic svg.mi { width: 19px; height: 19px; }
.appwin .rail .ic svg.mi { width: 17px; height: 17px; }
.appwin .dock .d svg.mi { width: 15px; height: 15px; }
.appwin .bar .badge svg.mi, .appwin .stage .tag svg.mi, .tagrow svg.mi { width: 12px; height: 12px; vertical-align: -0.1em; }
.feat .ic svg.mi { width: 21px; height: 21px; }


/* legal / prose pages (privacy, terms) */
.legal { padding: 54px 0 10px; }
.legal .lead { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; }
.legal .updated { color: var(--muted-2); font-size: 13.5px; margin-top: 14px; }
.legal .intro { color: var(--muted); font-size: 16px; margin-top: 16px; }
.prose { max-width: 800px; margin-top: 30px; }
.prose section { padding: 22px 0; border-top: 1px solid var(--border-soft); }
.prose section:first-child { border-top: 0; }
.prose h2 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.prose h2 .n { color: var(--accent); font-variant-numeric: tabular-nums; margin-right: 10px; }
.prose p { color: var(--muted); margin-top: 10px; font-size: 15px; }
.prose ul { margin: 12px 0 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.prose li { color: var(--muted); font-size: 15px; padding-left: 24px; position: relative; }
.prose li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; border-radius: 2px; background: linear-gradient(135deg, var(--accent), var(--cyan)); }
.prose a { color: var(--cyan); }
.prose a:hover { text-decoration: underline; }
.prose b { color: var(--text); }
.legal-note { margin-top: 26px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-2); color: var(--muted); font-size: 13.5px; }
.dl-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; }
.dl-card.primary { border-color: rgba(59,130,246,0.5); box-shadow: 0 0 0 1px rgba(59,130,246,0.1), 0 18px 50px -26px rgba(34,211,238,0.4); }
.dl-card .os { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(59,130,246,0.12); color: var(--accent); }
.dl-card h3 { margin-top: 16px; font-size: 20px; }
.dl-card .meta { margin-top: 4px; font-size: 13px; color: var(--muted); }
.dl-card .spacer { flex: 1; }
.dl-card .dlbtn { margin-top: 20px; }
.tagver { font-size: 11px; color: var(--muted-2); margin-top: 10px; }
.reqs { margin-top: 18px; display: grid; gap: 10px; }
.reqs li { list-style: none; display: flex; gap: 10px; color: var(--muted); font-size: 14px; }
.reqs .ok { color: var(--good); }
.feat-row { display: grid; gap: 15px; margin-top: 18px; }
@media (min-width: 760px) { .feat-row { grid-template-columns: repeat(2, 1fr); } }
.feat { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); }
.feat .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center; background: rgba(59,130,246,0.12); color: var(--accent); font-size: 18px; }
.feat h4 { font-size: 15px; } .feat p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   mobile polish (<=620px) — keep the public site flawless on phones
   ============================================================ */
@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  /* nav: show only the primary CTA so it never overflows/clips */
  .nav { height: 64px; gap: 10px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn { padding: 9px 15px; font-size: 13.5px; }
  .logo .wm { font-size: 19px; }
  /* hero: flatten the 3D app mock so it can't bleed off-screen */
  .hero-inner { gap: 30px; padding: 30px 0 28px; }
  .appwin { transform: none; }
  .sub { font-size: 16.5px; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn-lg { padding: 13px 18px; font-size: 15px; flex: 1 1 auto; }
  /* sections breathe a little less on phones */
  .block { padding-top: 4px; }
  .floaty.gauge { display: none; }
}
@media (max-width: 380px) {
  .nav-links, .nav-cta .btn span { font-size: 13px; }
  h1 { font-size: clamp(34px, 9vw, 44px); }
}
