body {
    --p-accent: var(--accent);
    --p-fill: var(--accent-solid);
    --p-fill-hover: var(--accent-deep);
    --p-fill-press: var(--accent-press);
    --p-on-fill: var(--on-accent);
    --p-glow: oklch(0.68 0.16 255 / 0.22);
    --p-tint: oklch(0.68 0.16 255 / 0.07);
    --p-line: oklch(0.68 0.16 255 / 0.32);
}
.theme-serverside {
    --p-accent: oklch(0.80 0.15 158);
    --p-fill: oklch(0.80 0.15 158);
    --p-fill-hover: oklch(0.74 0.15 158);
    --p-fill-press: oklch(0.68 0.14 158);
    --p-on-fill: oklch(0.17 0.02 158);
    --p-glow: oklch(0.80 0.15 158 / 0.20);
    --p-tint: oklch(0.74 0.15 158 / 0.08);
    --p-line: oklch(0.74 0.15 158 / 0.34);
}
.theme-requires {
    --p-accent: oklch(0.82 0.12 213);
    --p-fill: oklch(0.82 0.12 213);
    --p-fill-hover: oklch(0.76 0.12 213);
    --p-fill-press: oklch(0.70 0.12 213);
    --p-on-fill: oklch(0.17 0.02 222);
    --p-glow: oklch(0.80 0.13 213 / 0.22);
    --p-tint: oklch(0.78 0.13 213 / 0.08);
    --p-line: oklch(0.78 0.13 213 / 0.34);
}

body { --caution: oklch(0.82 0.13 85); --caution-tint: oklch(0.82 0.13 85 / 0.1); --caution-line: oklch(0.82 0.13 85 / 0.3); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: oklch(0.55 0.18 255 / 0.4); }
:focus-visible { outline: 2px solid var(--p-accent); outline-offset: 2px; border-radius: var(--r-sm); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-lg); }
.wrap-wide { max-width: 1180px; margin: 0 auto; padding: 0 var(--sp-lg); }

.nav {
    position: sticky; top: 0; z-index: var(--z-nav);
    background: oklch(0.16 0.006 255 / 0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: var(--sp-xl); height: 60px; }
.brand {
    font-family: var(--font-mono);
    font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
    color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand .dot { color: var(--accent); }
.nav-links { display: flex; gap: var(--sp-lg); margin-right: auto; }
.nav-link {
    font-size: 0.875rem; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: color var(--fast) var(--ease);
    position: relative; padding: 4px 0;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -19px;
    height: 2px; background: var(--accent); border-radius: var(--r-full);
}
.nav-discord {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; font-weight: 500; color: var(--ink);
    background: var(--surface); border: 1px solid var(--border);
    padding: 8px 14px; border-radius: var(--r-md); text-decoration: none;
    transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease);
    white-space: nowrap;
}
.nav-discord:hover { background: var(--surface-raised); border-color: var(--border-bright); }
.nav-discord svg { width: 18px; height: 18px; fill: currentColor; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    border-radius: var(--r-md); padding: 9px 14px; cursor: pointer;
    border: 1px solid transparent; white-space: nowrap; text-decoration: none;
    transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease), color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-ghost { background: var(--bg); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-raised); border-color: var(--border-bright); }
.btn-accent { background: var(--p-fill); color: var(--p-on-fill); }
.btn-accent:hover { background: var(--p-fill-hover); }
.btn-accent:active { background: var(--p-fill-press); }
.btn-outline { background: none; color: var(--p-accent); border-color: var(--p-line); }
.btn-outline:hover { background: var(--p-tint); border-color: var(--p-accent); }
.btn-lg { font-size: 0.8125rem; padding: 13px 22px; border-radius: var(--r-md); }
.btn-lg svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(0.5px); }

.hero { position: relative; padding: clamp(3rem, 9vw, 5.5rem) 0 var(--sp-xl); overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(to right, var(--border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border) 1px, transparent 1px);
    background-size: 52px 52px; opacity: 0.22;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 22%, var(--ink) 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 22%, var(--ink) 0%, transparent 75%);
}
.hero::after {
    content: ""; position: absolute; z-index: 0;
    top: -28%; left: 50%; transform: translateX(-50%);
    width: min(900px, 96vw); height: 560px; pointer-events: none;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, var(--p-glow) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }

.kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    color: var(--p-accent); background: var(--p-tint);
    border: 1px solid var(--p-line); border-radius: var(--r-full);
    padding: 5px 12px; margin-bottom: var(--sp-lg);
}
.kicker .dot-live {
    width: 7px; height: 7px; border-radius: 50%; background: var(--p-accent);
    animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.display {
    font-size: clamp(2.5rem, 7vw, 4.25rem); font-weight: 700; line-height: 1.02;
    letter-spacing: -0.035em; text-wrap: balance; color: var(--ink); max-width: 16ch;
}
.display .hl { color: var(--p-accent); }
.hero-lead {
    margin-top: var(--sp-lg); font-size: clamp(1rem, 2.2vw, 1.1875rem); line-height: 1.55;
    color: var(--muted); max-width: 54ch; text-wrap: pretty;
}
.hero-cta { margin-top: var(--sp-xl); display: flex; flex-wrap: wrap; gap: var(--sp-sm); align-items: center; }
.hero-note {
    margin-top: var(--sp-md); font-family: var(--font-mono); font-size: 0.75rem;
    color: var(--muted); letter-spacing: 0.01em;
}
.hero-note b { color: var(--ink); font-weight: 600; }
.hero-note .sep { margin: 0 7px; opacity: 0.4; }

.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-tint { background: var(--p-tint); border-block: 1px solid var(--p-line); }
.section-head { max-width: 60ch; margin-bottom: var(--sp-xl); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-label {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    color: var(--p-accent); letter-spacing: 0.02em;
}
.section-head h2 {
    margin-top: 10px; font-size: clamp(1.6rem, 3.4vw, 2.25rem); font-weight: 700;
    letter-spacing: -0.025em; line-height: 1.1; text-wrap: balance; color: var(--ink);
}
.section-head p {
    margin-top: var(--sp-md); font-size: 1.0625rem; line-height: 1.6;
    color: var(--muted); text-wrap: pretty;
}

.stars { --pct: 100%; position: relative; display: inline-flex; line-height: 0; color: var(--border-bright); }
.stars svg { width: 1em; height: 1em; fill: currentColor; }
.stars .fill {
    position: absolute; inset: 0; white-space: nowrap;
    color: var(--p-accent);
    clip-path: inset(0 calc(100% - var(--pct)) 0 0);
    transition: clip-path 0.9s var(--ease);
}
.stars.animate-in .fill { clip-path: inset(0 100% 0 0); }
.stars.animate-in.lit .fill { clip-path: inset(0 calc(100% - var(--pct)) 0 0); }

.lb { display: flex; flex-direction: column; gap: var(--sp-sm); }
.lb-row {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: var(--sp-lg);
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 16px 20px;
    transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease), transform var(--base) var(--ease);
}
.lb-row:hover { background: var(--surface-raised); border-color: var(--p-line); transform: translateY(-1px); }
.lb-row.lead { border-color: var(--p-line); background: linear-gradient(180deg, var(--p-tint), transparent), var(--surface); }
.lb-rank {
    font-family: var(--font-mono); font-size: 1.0625rem; font-weight: 600;
    color: var(--muted); min-width: 1.4em; font-variant-numeric: tabular-nums;
}
.lb-row.lead .lb-rank { color: var(--p-accent); }
.lb-main { min-width: 0; }
.lb-name {
    font-family: var(--font-mono); font-size: 1.0625rem; font-weight: 600;
    color: var(--ink); letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.lb-tag {
    font-family: var(--font-mono); font-size: 0.625rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    padding: 2px 7px; border-radius: var(--r-full);
}
.tag-verified { color: var(--p-accent); background: var(--p-tint); border: 1px solid var(--p-line); }
.tag-watch { color: var(--caution); background: var(--caution-tint); border: 1px solid var(--caution-line); }
.tag-avoid { color: var(--danger); background: oklch(0.68 0.18 25 / 0.1); border: 1px solid oklch(0.68 0.18 25 / 0.3); }
.lb-meta {
    margin-top: 5px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted);
    display: flex; gap: 6px 12px; flex-wrap: wrap;
}
.lb-meta .sep { opacity: 0.4; }
.lb-score { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.lb-score .stars { font-size: 15px; }
.lb-num { font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.lb-num span { color: var(--muted); font-weight: 400; }

.board { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.board + .board { margin-top: var(--sp-lg); }
.board.is-outstanding { --bh: var(--accent); --bh-tint: oklch(0.68 0.16 255 / 0.10); --bh-line: oklch(0.68 0.16 255 / 0.30); }
.board.is-new { --bh: var(--caution); --bh-tint: var(--caution-tint); --bh-line: var(--caution-line); }
.board-head {
    display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md);
    padding: 13px 18px; border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, var(--bh-tint), transparent 62%);
}
.board-head .bh-title { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--bh); }
.board-head .bh-ic { width: 18px; height: 18px; flex-shrink: 0; }
.board-count { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bh); background: var(--bh-tint); border: 1px solid var(--bh-line); border-radius: var(--r-full); padding: 4px 11px; white-space: nowrap; }
.board-scroll { overflow-x: auto; scrollbar-width: thin; }
.board-table { min-width: 600px; }
.bt-head, .bt-row { display: grid; grid-template-columns: 46px 1fr 158px 92px 104px 34px; align-items: center; gap: var(--sp-md); padding: 0 18px; }
.bt-head { height: 42px; border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.bt-sort { display: inline-flex; align-items: center; gap: 5px; }
.bt-sort svg { width: 11px; height: 11px; opacity: 0.5; }
.bt-row { min-height: 66px; border-top: 1px solid var(--border); transition: background var(--fast) var(--ease); }
.bt-row:hover { background: var(--surface-raised); }
.bt-rank { font-family: var(--font-mono); font-size: 0.9375rem; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.board.is-outstanding .bt-rank { color: var(--accent); }
.bt-name { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 600; font-size: 0.9375rem; color: var(--ink); letter-spacing: -0.01em; min-width: 0; }
.bt-name .trend { display: inline-flex; flex-shrink: 0; }
.bt-name .trend svg { width: 15px; height: 15px; }
.bt-name .trend.up { color: var(--positive); }
.bt-name .trend.down { color: var(--danger); }
.bt-rate { display: flex; flex-direction: column; gap: 4px; }
.bt-rate .stars { font-size: 14px; }
.bt-rate small { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted); }
.bt-price b { font-family: var(--font-mono); font-size: 0.875rem; font-weight: 600; color: var(--ink); display: block; }
.bt-price small { font-family: var(--font-mono); font-size: 0.625rem; color: var(--muted); }
.bt-up { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.875rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.bt-up svg { width: 14px; height: 14px; color: var(--positive); flex-shrink: 0; }
.bt-exp { display: inline-flex; justify-content: flex-end; color: var(--muted); }
.bt-exp svg { width: 16px; height: 16px; }

.rgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--sp-md); }
.rcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color var(--fast) var(--ease), transform var(--base) var(--ease); }
.rcard:hover { border-color: var(--p-line); transform: translateY(-2px); }
.rthumb {
    aspect-ratio: 16 / 9; position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(150deg, oklch(0.32 0.07 var(--tw, 213)), oklch(0.18 0.025 var(--tw, 213)));
}
.rthumb::before {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(to right, oklch(1 0 0 / 0.06) 1px, transparent 1px), linear-gradient(to bottom, oklch(1 0 0 / 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
}
.rthumb .glow { position: absolute; inset: 0; background: radial-gradient(ellipse 75% 65% at 28% 18%, oklch(0.62 0.13 var(--tw, 213) / 0.55), transparent 68%); }
.rthumb .wm {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 14px;
    font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.1rem, 4vw, 1.6rem); letter-spacing: -0.02em;
    color: var(--ink); opacity: 0.9; text-align: center; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.rbody { padding: 14px 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.rtitle { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rtitle h3 { font-family: var(--font-mono); font-size: 1rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; word-break: break-word; }
.rbadge { font-family: var(--font-mono); font-size: 0.5625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--p-accent); border: 1px solid var(--p-line); background: var(--p-tint); border-radius: var(--r-sm); padding: 2px 7px; flex-shrink: 0; }
.rreq {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--p-accent);
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 8px 10px;
}
.rreq code { flex: 1; min-width: 0; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.rreq code::-webkit-scrollbar { display: none; }
.rreq button { flex-shrink: 0; background: none; border: 0; color: var(--muted); cursor: pointer; line-height: 0; padding: 2px; transition: color var(--fast) var(--ease); }
.rreq button:hover { color: var(--p-accent); }
.rreq button svg { width: 14px; height: 14px; }
.rdesc { font-size: 0.8125rem; color: var(--muted); line-height: 1.45; }
.rfoot {
    display: flex; align-items: center; gap: var(--sp-md); margin-top: auto; padding-top: 11px;
    border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted);
}
.rstat { display: inline-flex; align-items: center; gap: 5px; font-variant-numeric: tabular-nums; }
.rstat svg { width: 13px; height: 13px; }
.rauthor { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.ravatar { width: 18px; height: 18px; border-radius: var(--r-full); background: linear-gradient(135deg, oklch(0.55 0.09 150), oklch(0.40 0.05 150)); border: 1px solid var(--border); flex-shrink: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); position: relative; }
.step {
    position: relative; padding: var(--sp-lg);
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.step-n {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: var(--r-md);
    font-family: var(--font-mono); font-size: 1rem; font-weight: 600;
    color: var(--p-accent); background: var(--p-tint); border: 1px solid var(--p-line);
    margin-bottom: var(--sp-md);
}
.step h3 { font-size: 1.0625rem; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 6px; }
.step p { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); }
.step-arrow { position: absolute; top: 38px; right: -22px; color: var(--border-bright); z-index: 1; }
.step-arrow svg { width: 18px; height: 18px; }
.step:last-child .step-arrow { display: none; }

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); align-items: start; }
.review {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: var(--sp-lg);
    display: flex; flex-direction: column; gap: var(--sp-md);
}
.review.feature { grid-column: 1 / -1; background: linear-gradient(180deg, var(--p-tint), transparent), var(--surface); border-color: var(--p-line); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); }
.review .stars { font-size: 16px; }
.review-verdict { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 600; color: var(--p-accent); text-transform: uppercase; letter-spacing: 0.06em; }
.review-body { font-size: 0.9375rem; line-height: 1.6; color: var(--ink); opacity: 0.94; }
.review.feature .review-body { font-size: 1.0625rem; }
.review-who { display: flex; align-items: center; gap: 10px; }
.review-ava {
    width: 32px; height: 32px; border-radius: var(--r-full); flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 600;
    color: var(--p-on-fill); background: var(--p-fill);
}
.review-hand { font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.review-sub { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted); }

.feed { display: flex; flex-direction: column; gap: var(--sp-sm); }
.frow {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--r-lg); overflow: hidden;
    transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.frow:hover { border-color: var(--p-line); }
.frow-top { display: flex; align-items: flex-start; gap: var(--sp-lg); padding: 16px 20px; }
.frow-main { flex: 1; min-width: 0; }
.frow-name {
    font-family: var(--font-mono); font-size: 1.0625rem; font-weight: 600; color: var(--ink);
    letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.frow-desc { margin-top: 4px; font-size: 0.9375rem; line-height: 1.5; color: var(--ink); opacity: 0.9; max-width: 70ch; }
.frow-meta { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 10px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); }
.frow-meta .sep { opacity: 0.45; }
.frow-meta .hits { color: var(--p-accent); }

.code-frame { margin: 0 20px 20px; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bg); overflow: hidden; }
.code-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 14px; border-bottom: 1px solid var(--border);
    font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted);
}
.code-bar .path { display: flex; align-items: center; gap: 8px; }
.code-copy {
    font-family: var(--font-mono); font-size: 0.6875rem; color: var(--p-accent);
    background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    transition: opacity var(--fast) var(--ease);
}
.code-copy:hover { opacity: 0.7; }
.code-copy svg { width: 13px; height: 13px; }
.code-frame pre {
    margin: 0; padding: 14px 16px; overflow-x: auto;
    font-family: var(--font-mono); font-size: 0.8125rem; line-height: 1.7;
    color: var(--ink); tab-size: 2;
}
.tok-k { color: var(--p-accent); }
.tok-s { color: var(--positive); }
.tok-c { color: var(--muted); font-style: italic; }
.tok-n { color: var(--ink); opacity: 0.8; }
.tok-f { color: var(--accent); }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-xl) var(--sp-lg); }
.value { display: flex; flex-direction: column; gap: 8px; }
.value-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--r-md);
    color: var(--p-accent); background: var(--p-tint); border: 1px solid var(--p-line);
}
.value-ic svg { width: 18px; height: 18px; }
.value h3 { font-size: 1rem; font-weight: 650; letter-spacing: -0.01em; color: var(--ink); }
.value p { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); }

.chips-row { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.chip-static {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    color: var(--muted); background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--r-full);
    padding: 7px 14px; transition: color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.chip-static:hover { color: var(--ink); border-color: var(--p-line); }
.chip-static .n { color: var(--p-accent); opacity: 0.9; font-variant-numeric: tabular-nums; }

.cta {
    position: relative; overflow: hidden; text-align: center;
    border: 1px solid var(--p-line); border-radius: var(--r-lg);
    background: linear-gradient(180deg, var(--p-tint), transparent);
    padding: clamp(2.5rem, 6vw, 4rem) var(--sp-lg);
}
.cta::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(to right, var(--border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border) 1px, transparent 1px);
    background-size: 44px 44px; opacity: 0.18;
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, var(--ink) 0%, transparent 72%);
    mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, var(--ink) 0%, transparent 72%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; color: var(--ink); max-width: 18ch; margin-inline: auto; }
.cta p { margin-top: var(--sp-md); font-size: 1.0625rem; color: var(--muted); max-width: 48ch; margin-inline: auto; text-wrap: pretty; }
.cta .hero-cta { justify-content: center; margin-top: var(--sp-xl); }

.pblock { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.pblock-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(var(--sp-xl), 5vw, 4rem); align-items: center; }
.pblock.flip .pblock-copy { order: 2; }
.pblock.flip .pblock-art { order: 1; }
.pblock-wordmark {
    font-family: var(--font-mono); font-size: 1.375rem; font-weight: 700; letter-spacing: -0.02em;
    color: var(--ink); display: inline-flex; align-items: baseline;
}
.pblock-wordmark .dot { color: var(--p-accent); }
.pblock-copy h2 { margin-top: var(--sp-md); font-size: clamp(1.5rem, 3.2vw, 2.125rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; text-wrap: balance; color: var(--ink); }
.pblock-copy > p { margin-top: var(--sp-md); font-size: 1.0625rem; line-height: 1.6; color: var(--muted); max-width: 46ch; text-wrap: pretty; }
.pblock-points { margin-top: var(--sp-lg); display: flex; flex-direction: column; gap: 10px; }
.pblock-point { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; line-height: 1.5; color: var(--ink); }
.pblock-point svg { width: 18px; height: 18px; color: var(--p-accent); flex-shrink: 0; margin-top: 1px; }
.pblock-cta { margin-top: var(--sp-xl); display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.pblock-art { position: relative; }

.mini {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: var(--sp-md); box-shadow: var(--shadow-overlay);
}
.mini + .mini { margin-top: var(--sp-sm); }
.mini-lb { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-md); }
.mini-rank { font-family: var(--font-mono); font-weight: 600; color: var(--muted); }
.mini-name { font-family: var(--font-mono); font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.mini-name .stars { font-size: 13px; display: block; margin-top: 3px; }

footer { border-top: 1px solid var(--border); padding: var(--sp-xl) 0; margin-top: clamp(3rem, 7vw, 5rem); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); flex-wrap: wrap; }
.foot-note { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); }
.foot-links { display: flex; gap: var(--sp-lg); flex-wrap: wrap; }
.foot-links a { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: color var(--fast) var(--ease); }
.foot-links a:hover { color: var(--ink); }

.toast {
    position: fixed; bottom: var(--sp-lg); left: 50%; transform: translateX(-50%) translateY(12px);
    z-index: var(--z-toast); display: flex; align-items: center; gap: 8px;
    background: var(--surface-raised); border: 1px solid var(--border-bright);
    color: var(--ink); font-family: var(--font-mono); font-size: 0.75rem;
    padding: 10px 16px; border-radius: var(--r-md); box-shadow: var(--shadow-overlay);
    opacity: 0; pointer-events: none;
    transition: opacity var(--base) var(--ease), transform var(--base) var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 15px; height: 15px; color: var(--p-accent); }

@keyframes rowIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: rowIn 0.55s var(--ease) both; animation-delay: calc(var(--i, 0) * 70ms); }

@media (max-width: 880px) {
    .pblock-inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
    .pblock.flip .pblock-copy { order: 1; }
    .pblock.flip .pblock-art { order: 2; }
    .reviews { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-inner { gap: var(--sp-md); }
    .steps { grid-template-columns: 1fr; }
    .step-arrow { display: none !important; }
    .lb-row { grid-template-columns: auto 1fr; gap: var(--sp-md); }
    .lb-score { grid-column: 2; align-items: flex-start; flex-direction: row; gap: var(--sp-md); }
    .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 420px) {
    .wrap, .wrap-wide { padding: 0 var(--sp-md); }
    .nav-discord-label { display: none; }
    .code-frame { margin: 0 12px 12px; }
}
@media (pointer: coarse) {
    .btn { min-height: 44px; }
    .nav-discord { min-height: 44px; }
    .chip-static { min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .reveal { animation: none; opacity: 1; transform: none; }
    .stars.animate-in .fill { width: var(--pct); transition: none; }
    .kicker .dot-live { animation: none; }
}
