/* ===========================================================================
   DeepBlocker — website
   Premium dark theme. Black/graphite surfaces, soft green accent.
   =========================================================================== */

:root {
    --bg: #050607;
    --bg-2: #07090b;
    --panel: #0c0e11;
    --panel-2: #0f1318;
    --raise: #11151a;
    --border: #1c2127;
    --border-2: #262c34;
    --ink: #f1f6f4;
    --ink-soft: #d2dbd8;
    --muted: #9aa6a4;
    --muted-2: #899492;
    --accent: #64d6b0;
    --accent-soft: #aee8d1;
    --accent-ink: #04110d;
    --radius: 16px;
    --radius-sm: 12px;
    --radius-pill: 999px;
    --maxw: 1120px;
    --gut: clamp(20px, 5vw, 40px);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.35);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; font-weight: 600; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent-soft); font-size: 12.5px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 12px; border-radius: var(--radius-pill);
    background: rgba(100, 214, 176, 0.08); border: 1px solid rgba(100, 214, 176, 0.2);
}
.section { padding-block: clamp(64px, 10vw, 120px); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 44px); margin: 18px 0 14px; }
.section-head p { color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font: inherit; font-weight: 600; font-size: 15px; cursor: pointer;
    padding: 13px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: linear-gradient(180deg, #7ce3c1, var(--accent));
    color: var(--accent-ink);
    box-shadow: 0 10px 30px rgba(100, 214, 176, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(100, 214, 176, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-ghost { background: var(--raise); color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(100, 214, 176, 0.4); background: #151b21; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    background: rgba(6, 7, 9, 0.72); border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(6, 7, 9, 0.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.brand img { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color 0.16s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; }
@media (max-width: 880px) {
    .nav-links, .nav-cta .btn-ghost { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
        position: absolute; top: 68px; left: 0; right: 0; padding: 16px var(--gut) 22px;
        background: rgba(8, 10, 12, 0.98); border-bottom: 1px solid var(--border);
    }
    .nav-links.open a { padding: 10px 0; font-size: 16px; width: 100%; }
}

/* ---------- glow backdrop ---------- */
.glow { position: absolute; pointer-events: none; filter: blur(60px); z-index: 0; opacity: 0.5; }
.glow-hero { top: -160px; left: 50%; transform: translateX(-50%); width: 720px; height: 520px;
    background: radial-gradient(circle, rgba(100, 214, 176, 0.22), transparent 62%); }

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(60px, 9vw, 110px) clamp(56px, 8vw, 96px); overflow: hidden; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(40px, 6.4vw, 72px); font-weight: 700; letter-spacing: -0.03em; }
.hero h1 .accent { background: linear-gradient(120deg, var(--accent-soft), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tagline { color: var(--accent-soft); font-weight: 600; font-size: clamp(16px, 2vw, 20px); margin-top: 22px; }
.hero-desc { color: var(--muted); font-size: clamp(15px, 1.7vw, 18px); margin-top: 16px; max-width: 30rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; color: var(--muted); font-size: 13.5px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(100, 214, 176, 0.7); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.device {
    position: relative; width: min(340px, 86%); border-radius: 22px;
    background: linear-gradient(180deg, #0c0e11, #070809);
    border: 1px solid #1d2228; box-shadow: var(--shadow);
    padding: 0; overflow: hidden;
    animation: floaty 9s ease-in-out infinite;
}
.device img { width: 100%; border-radius: 22px; }
.device::after { content: ""; position: absolute; inset: 0; border-radius: 22px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); pointer-events: none; }
.hero-visual .ring { position: absolute; inset: -10% -6%; border-radius: 30px;
    background: radial-gradient(circle at 50% 30%, rgba(100,214,176,0.16), transparent 60%); z-index: -1; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .device { animation: none; } }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin-inline: auto; }
    .hero-actions, .hero-meta { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 8px; }
}

/* ---------- trust strip ---------- */
.trust { border-block: 1px solid var(--border); background: var(--bg-2); }
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; padding-block: 22px; }
.trust span { color: var(--muted); font-size: 13.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 9px; }
.trust svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- generic card ---------- */
.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.022), transparent 60%), var(--panel);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(100, 214, 176, 0.32); box-shadow: var(--shadow-soft); }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { position: relative; }
.feature .ic {
    width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px;
    background: rgba(100, 214, 176, 0.1); border: 1px solid rgba(100, 214, 176, 0.22); color: var(--accent);
}
.feature .ic svg { width: 21px; height: 21px; }
.feature h3 { font-size: 17px; }
.feature p { color: var(--muted); font-size: 14px; margin-top: 8px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- privacy ---------- */
.privacy-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.privacy-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.privacy-item { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: var(--radius-sm);
    background: var(--panel); border: 1px solid var(--border); font-weight: 500; font-size: 14.5px; }
.privacy-item .check { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(100, 214, 176, 0.14); color: var(--accent); }
.privacy-item .check svg { width: 14px; height: 14px; }
.privacy-card { position: relative; border-radius: var(--radius); padding: 34px;
    background: radial-gradient(circle at 50% 0%, rgba(100,214,176,0.14), transparent 55%), var(--panel-2);
    border: 1px solid var(--border-2); box-shadow: var(--shadow-soft); }
.privacy-card .lock { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
    background: linear-gradient(180deg, #0f1418, #0a0d10); border: 1px solid rgba(100,214,176,0.3); color: var(--accent); }
.privacy-card .lock svg { width: 28px; height: 28px; }
.privacy-card h3 { font-size: 22px; }
.privacy-card p { color: var(--muted); margin-top: 12px; font-size: 15px; }
@media (max-width: 860px) { .privacy-wrap { grid-template-columns: 1fr; } .privacy-list { grid-template-columns: 1fr; } }

/* ---------- screenshots ---------- */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.shot { background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 50%), var(--panel);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.shot:hover { transform: translateY(-5px); border-color: rgba(100,214,176,0.3); box-shadow: var(--shadow-soft); }
.shot.wide { grid-column: span 2; }
.shot .frame { border-radius: 11px; overflow: hidden; background: #050607; border: 1px solid #161b20; }
.shot .frame img { width: 100%; }
.shot.popup .frame { max-width: 300px; margin: 6px auto; border: 0; background: transparent; }
.shot figcaption { display: flex; align-items: baseline; gap: 10px; padding: 14px 8px 6px; }
.shot figcaption b { font-size: 15px; font-weight: 600; }
.shot figcaption span { color: var(--muted); font-size: 13px; }
.shots-duo { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 18px; }
@media (max-width: 860px) { .shots, .shots-duo { grid-template-columns: 1fr; } .shot.wide { grid-column: auto; } }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why h3 { font-size: 17px; display: flex; align-items: center; gap: 10px; }
.why h3 .n { color: var(--accent); font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }
.why p { color: var(--muted); font-size: 14px; margin-top: 10px; }
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- installation ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; }
.step .num { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-weight: 700;
    background: rgba(100,214,176,0.1); border: 1px solid rgba(100,214,176,0.24); color: var(--accent); margin-bottom: 16px; }
.step h3 { font-size: 16px; }
.step p { color: var(--muted); font-size: 13.5px; margin-top: 8px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 19px; left: calc(100% + 4px);
    width: 24px; height: 1px; background: linear-gradient(90deg, var(--border-2), transparent); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } .step::after { display: none; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
    transition: border-color 0.2s ease; }
.faq-item[open] { border-color: rgba(100,214,176,0.28); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-weight: 600; font-size: 15.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 18px; height: 18px; color: var(--muted); transition: transform 0.22s ease; }
.faq-item[open] summary .chev { transform: rotate(45deg); color: var(--accent); }
.faq-item .answer { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- changelog ---------- */
.changelog { max-width: 760px; margin-inline: auto; display: grid; gap: 16px; }
.release { display: grid; grid-template-columns: 132px 1fr; gap: 22px; padding: 22px; }
.release .ver { display: flex; flex-direction: column; gap: 8px; }
.release .ver b { font-size: 18px; }
.release .tag { align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--accent-soft); background: rgba(100,214,176,0.12); border: 1px solid rgba(100,214,176,0.28);
    border-radius: var(--radius-pill); padding: 3px 10px; }
.release ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 14px; display: grid; gap: 6px; }
.release ul li::marker { color: var(--accent); }
@media (max-width: 620px) { .release { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- download ---------- */
.download-card { position: relative; overflow: hidden; text-align: center; border-radius: 22px; padding: clamp(40px, 6vw, 64px);
    background: radial-gradient(circle at 50% -10%, rgba(100,214,176,0.18), transparent 55%), linear-gradient(180deg, #0c0f12, #08090b);
    border: 1px solid var(--border-2); box-shadow: var(--shadow); }
.download-card .badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--accent-soft);
    background: rgba(100,214,176,0.1); border: 1px solid rgba(100,214,176,0.26); border-radius: var(--radius-pill); padding: 6px 14px; }
.download-card h2 { font-size: clamp(28px, 4.4vw, 42px); margin: 20px 0 12px; }
.download-card p { color: var(--muted); max-width: 480px; margin: 0 auto; font-size: 16px; }
.download-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.download-note { color: var(--muted-2); font-size: 12.5px; margin-top: 20px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: 52px 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { font-size: 18px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 24rem; }
.footer-col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color 0.16s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 13px; }
.footer-bottom .discord { color: var(--muted); display: inline-flex; gap: 8px; align-items: center; }
.footer-bottom .discord b { color: var(--ink-soft); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

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

/* ===========================================================================
   Polish pass (1.0.10 site)
   =========================================================================== */

::selection { background: rgba(100, 214, 176, 0.28); color: #eafff7; }
html { scrollbar-color: #2a313a #050607; }
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: #06080a; }
body::-webkit-scrollbar-thumb { background: #20262e; border-radius: 10px; border: 3px solid #06080a; }
body::-webkit-scrollbar-thumb:hover { background: #2c333c; }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 100;
  background: var(--accent); color: var(--accent-ink); font-weight: 600;
  padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { left: 16px; }

/* primary button sheen */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22), transparent 70%);
  transform: translateX(-130%); transition: transform 0.7s ease;
}
.btn-primary:hover::after { transform: translateX(130%); }
@media (prefers-reduced-motion: reduce) { .btn-primary::after { display: none; } }

/* hero chips — what it blocks */
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; }
.hero-chips li {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent), var(--panel);
  border: 1px solid var(--border-2);
}
@media (max-width: 900px) { .hero-chips { justify-content: center; } }

/* deeper hero device */
.device { box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.4); }
.hero-visual .ring { inset: -14% -8%; background: radial-gradient(circle at 50% 28%, rgba(100,214,176,0.2), transparent 62%); }

/* ---------- stats band ---------- */
.stats { border-block: 1px solid var(--border); background: linear-gradient(180deg, var(--bg-2), var(--bg)); position: relative; }
.stats .wrap { padding-block: clamp(44px, 6vw, 68px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 12px 8px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 16%; height: 68%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-2), transparent); }
.stat b { display: block; font-size: clamp(30px, 4.6vw, 46px); font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  white-space: nowrap; font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, #eaf7f1, var(--accent-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .plus { display: inline; font-size: 0.62em; font-weight: 700; vertical-align: 0.18em; margin-left: 1px;
  color: var(--accent); -webkit-text-fill-color: var(--accent); }
.stat > span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 11px; }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .stat::before { display: none !important; }
}

/* ---------- browser-chrome screenshot frames ---------- */
.shot .frame.browser { border: 1px solid #1a2026; box-shadow: 0 32px 64px rgba(0,0,0,0.5); }
.chrome { display: flex; align-items: center; gap: 10px; height: 34px; padding: 0 14px;
  background: linear-gradient(180deg, #0f1318, #0b0e11); border-bottom: 1px solid #181d23; }
.chrome .dots { display: inline-flex; gap: 7px; }
.chrome .dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.chrome .dots i:nth-child(1) { background: #34404a; }
.chrome .dots i:nth-child(2) { background: #2c3a3a; }
.chrome .dots i:nth-child(3) { background: #25403a; }
.chrome .addr { margin: 0 auto; font-size: 11.5px; color: var(--muted-2);
  background: #0a0d10; border: 1px solid #1b2026; border-radius: 7px; padding: 3px 16px; max-width: 60%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shot.popup .frame { box-shadow: none; }

/* ---------- footer upgrades ---------- */
.footer-discord {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  padding: 10px 16px; border-radius: 12px; color: var(--ink-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent), var(--panel);
  border: 1px solid var(--border-2); transition: border-color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}
.footer-discord:hover { border-color: rgba(100, 214, 176, 0.4); transform: translateY(-2px); }
.footer-discord svg { color: #9fb2ff; flex: none; }
.footer-discord .t { color: var(--muted); font-size: 13px; }
.footer-discord b { color: var(--ink); }
.foot-note { color: var(--muted-2); font-size: 12.5px; }
@media (max-width: 760px) { .footer-col a { padding: 8px 0; } }

/* consistent focus rings on interactive items */
.btn:focus-visible, .nav-links a:focus-visible, .footer-col a:focus-visible,
.footer-discord:focus-visible, .faq-item summary:focus-visible, .shot:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 10px;
}

/* ---- final premium/UX polish ---- */
/* Keep anchored section titles clear of the sticky header. */
:where(section[id], main [id]) { scroll-margin-top: 88px; }
/* More elegant line breaks on headings and lead copy. */
h1, h2, .section-head h2, .download-card h2 { text-wrap: balance; }
.hero-desc, .section-head p, .feature p, .why p, .step p, .faq-item .answer { text-wrap: pretty; }
/* Slightly larger, comfortable tap targets for primary nav on touch. */
@media (hover: none) and (pointer: coarse) {
  .nav-links a { padding-block: 12px; }
  .btn { min-height: 46px; }
}
/* A whisper of grain-free depth: layered shadow on the hero device, refined. */
.device { box-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 18px 40px rgba(0,0,0,0.45), 0 44px 90px rgba(0,0,0,0.5); }

/* ===========================================================================
   Minimalism, clarity & polish pass
   Quieter motion, steadier rhythm, calmer hierarchy.
   =========================================================================== */
:root { --ease-out: cubic-bezier(0.22, 1, 0.36, 1); }

/* Consistent grid rhythm across the card sections, with a touch more air. */
.feature-grid, .why-grid { gap: 18px; }
.section-head { margin-bottom: clamp(40px, 5vw, 60px); }

/* Quieter, more premium hover motion — shorter travel, softer settle. */
.card { transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out); }
.card:hover { transform: translateY(-3px); }
.shot { transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out); }
.shot:hover { transform: translateY(-4px); }
.btn { transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.footer-discord { transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out); }

/* Reveal: a little subtler, a little smoother. */
.reveal { transform: translateY(14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }

/* Smoother disclosure on the FAQ chevron. */
.faq-item summary .chev { transition: transform 0.28s var(--ease-out), color 0.2s var(--ease-out); }

/* Honour reduced-motion: no positional shift on hover. */
@media (prefers-reduced-motion: reduce) {
  .card:hover, .shot:hover, .btn:hover, .btn-primary:hover, .btn-ghost:hover, .footer-discord:hover { transform: none; }
}
