/* ============================================================
   Planet X — Landing (Pixel)
   Design tokens + pixel-styled auth modal + toast
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }

:root {
    --bg: #1a1b2e;
    --bg-1: #232542;
    --bg-2: #2e3156;
    --bg-3: #3a3d70;
    --ink: #f2e9dc;
    --dim: #a8a5c0;
    --mute: #6e6b8a;
    --line: #3d3f66;
    --line-2: #5a5d85;
    --cyan: #4ec9ff;
    --pink: #ff6bb3;
    --yellow: #ffd966;
    --green: #8aff7a;
    --red: #ff6b6b;
    --violet: #b48cff;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

.pixel { font-family: "Press Start 2P", monospace; letter-spacing: 0; }
.mono { font-family: "VT323", monospace; font-size: 20px; letter-spacing: 0.02em; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============================================================ nav */
nav.top { border-bottom: 2px solid var(--line-2); background: var(--bg-1); position: sticky; top: 0; z-index: 40; }
nav.top .row { display: flex; align-items: center; gap: 20px; height: 60px; }
.brand { font-family: "Press Start 2P", monospace; font-size: 14px; color: var(--yellow); letter-spacing: 0.04em; display: flex; align-items: center; gap: 10px; }
.brand .sp { color: var(--pink); }
.links { display: flex; gap: 22px; font-family: "VT323", monospace; font-size: 20px; color: var(--dim); margin-left: 20px; }
.links a:hover { color: var(--cyan); }
.spacer { flex: 1; }
.status { font-family: "VT323", monospace; font-size: 18px; color: var(--green); display: flex; align-items: center; gap: 8px; }
.status .dot { background: var(--green); width: 10px; height: 10px; box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4); animation: blink 2s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.6; } }

.landing-nav-user { display: flex; align-items: center; gap: 10px; font-family: "VT323", monospace; font-size: 18px; color: var(--dim); }
.landing-nav-user .username { color: var(--yellow); }

/* ============================================================ buttons */
.btn { padding: 10px 16px; background: var(--bg-2); color: var(--ink); border: 2px solid var(--line-2); box-shadow: 3px 3px 0 #000; font-family: "Press Start 2P", monospace; font-size: 10px; letter-spacing: 0.04em; cursor: pointer; transition: transform .06s, box-shadow .06s; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }
.btn.pri { background: var(--yellow); color: #1a1b2e; border-color: var(--yellow); }
.btn.pink { background: var(--pink); color: #1a1b2e; border-color: var(--pink); }
.btn.cyan { background: var(--cyan); color: #1a1b2e; border-color: var(--cyan); }
.btn.ghost { background: transparent; box-shadow: none; }
.btn.ghost:hover { box-shadow: none; background: var(--bg-2); }
.btn.lg { padding: 14px 22px; font-size: 12px; }

/* ============================================================ hero */
.hero { position: relative; padding: 56px 0 72px; border-bottom: 2px solid var(--line-2); overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(2px 2px at 24px 18px, var(--ink) 50%, transparent),
        radial-gradient(2px 2px at 90px 60px, var(--cyan) 50%, transparent),
        radial-gradient(2px 2px at 160px 120px, var(--pink) 50%, transparent),
        radial-gradient(2px 2px at 220px 40px, var(--ink) 50%, transparent),
        radial-gradient(2px 2px at 280px 180px, var(--yellow) 50%, transparent);
    background-size: 320px 240px;
    opacity: 0.5;
    pointer-events: none;
}
.hero-in { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; background: var(--pink); color: #1a1b2e; padding: 6px 10px; font-family: "Press Start 2P", monospace; font-size: 9px; letter-spacing: 0.04em; box-shadow: 3px 3px 0 #000; margin-bottom: 24px; }
h1 { font-family: "Press Start 2P", monospace; font-size: 40px; line-height: 1.25; margin: 0 0 24px; color: var(--ink); text-shadow: 3px 3px 0 var(--pink), 6px 6px 0 var(--cyan); }
h1 span.y { color: var(--yellow); }
.kicker { max-width: 520px; font-family: "VT323", monospace; font-size: 22px; line-height: 1.5; color: var(--dim); margin-bottom: 28px; }
.cta-col { max-width: 480px; display: flex; flex-direction: column; gap: 12px; }
.signup { display: flex; gap: 0; border: 2px solid var(--line-2); background: var(--bg-1); box-shadow: 4px 4px 0 #000; }
.signup:focus-within { border-color: var(--yellow); box-shadow: 4px 4px 0 #000, 0 0 0 2px var(--yellow); }
.signup input { flex: 1; background: transparent; border: 0; outline: 0; color: var(--ink); padding: 14px 16px; font-family: "VT323", monospace; font-size: 22px; }
.signup input::placeholder { color: var(--mute); }
.signup button { padding: 0 20px; background: var(--yellow); color: #1a1b2e; font-family: "Press Start 2P", monospace; font-size: 11px; }
.meta { font-family: "VT323", monospace; font-size: 18px; color: var(--mute); display: flex; gap: 10px; }
.oauth { display: flex; gap: 10px; }
.oauth .btn { flex: 1; }

/* ============================================================ screenshot placeholder */
.shot {
    position: relative;
    background: repeating-linear-gradient(45deg, var(--bg-1) 0 10px, var(--bg-2) 10px 20px);
    border: 2px solid var(--line-2);
    box-shadow: 5px 5px 0 #000;
    overflow: hidden;
    image-rendering: pixelated;
}
.shot .ghost-sprite {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    pointer-events: none;
}
.shot .ghost-sprite svg { width: 72px; height: 72px; opacity: 0.22; }
.shot .badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--yellow); color: #1a1b2e;
    font-family: "Press Start 2P", monospace; font-size: 9px;
    padding: 6px 10px;
    box-shadow: 2px 2px 0 #000;
    z-index: 2;
}
.shot .label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 40px 14px 14px;
    z-index: 2;
}
.shot .label .name {
    font-family: "Press Start 2P", monospace; font-size: 11px;
    color: var(--ink); margin-bottom: 6px; line-height: 1.3;
}
.shot .label .spec {
    font-family: "VT323", monospace; font-size: 16px;
    color: var(--cyan);
    line-height: 1.3;
}
.shot .size {
    position: absolute; top: 12px; right: 12px;
    font-family: "VT323", monospace; font-size: 15px;
    color: var(--mute);
    background: rgba(26, 27, 46, 0.8);
    padding: 2px 8px;
    border: 1px solid var(--line-2);
    z-index: 2;
}
.shot.has-img { background: var(--bg-1); }
.shot.has-img .label,
.shot.has-img .badge,
.shot.has-img .size,
.shot.has-img .ghost-sprite { display: none; }
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* hero-right panel (screenshot #1 slot) */
.hero-right {
    background: var(--bg-1);
    border: 2px solid var(--line-2);
    box-shadow: 5px 5px 0 #000;
    padding: 16px;
}
.hero-right .bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-family: "Press Start 2P", monospace; font-size: 10px; }
.hero-right .bar .hp { color: var(--green); }
.hero-right .shot { aspect-ratio: 4/3; box-shadow: none; border-color: var(--bg-2); }

/* ============================================================ strip */
.strip { border-top: 2px solid var(--line-2); border-bottom: 2px solid var(--line-2); background: var(--bg-1); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; }
.strip .cell { padding: 24px; border-right: 2px solid var(--line); text-align: center; }
.strip .cell:last-child { border-right: 0; }
.strip .num { font-family: "Press Start 2P", monospace; font-size: 22px; color: var(--cyan); text-shadow: 2px 2px 0 #000; }
.strip .lbl { font-family: "VT323", monospace; font-size: 18px; color: var(--dim); margin-top: 8px; }

/* ============================================================ sections */
section.block { padding: 72px 0; border-bottom: 2px solid var(--line-2); }
section.block.alt { background: var(--bg-1); }
.shead { text-align: center; margin-bottom: 48px; }
.shead .tag { font-family: "Press Start 2P", monospace; font-size: 10px; color: var(--yellow); margin-bottom: 14px; letter-spacing: 0.06em; }
.shead h2 { font-family: "Press Start 2P", monospace; font-size: 28px; line-height: 1.35; margin-bottom: 12px; text-shadow: 3px 3px 0 var(--pink); }
.shead .lede { font-family: "VT323", monospace; font-size: 22px; color: var(--dim); max-width: 560px; margin: 0 auto; }

/* ============================================================ how-it-works (onboarding flow) */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.how .step {
    background: var(--bg-1);
    border: 2px solid var(--line-2);
    box-shadow: 5px 5px 0 #000;
    padding: 0;
    display: flex; flex-direction: column;
}
.how .step .shot {
    aspect-ratio: 4/3;
    border: 0; box-shadow: none;
    border-bottom: 2px solid var(--line-2);
}
.how .step .step-body { padding: 18px; }
.how .step .n { font-family: "Press Start 2P", monospace; font-size: 20px; color: var(--yellow); margin-bottom: 8px; }
.how .step h4 { font-family: "Press Start 2P", monospace; font-size: 12px; margin-bottom: 8px; line-height: 1.3; }
.how .step p { font-family: "VT323", monospace; font-size: 18px; color: var(--dim); line-height: 1.35; }
.how .step .time {
    font-family: "VT323", monospace; font-size: 15px; color: var(--green);
    margin-top: 10px; padding-top: 10px; border-top: 1px dotted var(--line-2);
}

/* ============================================================ pillars w/ screenshot */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: var(--bg-1); border: 2px solid var(--line-2); box-shadow: 5px 5px 0 #000; overflow: hidden; display: flex; flex-direction: column; }
.pillar .shot { aspect-ratio: 16/10; border: 0; box-shadow: none; border-bottom: 2px solid var(--line-2); }
.pillar .pbody { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pillar .i { font-family: "Press Start 2P", monospace; font-size: 16px; color: #1a1b2e; padding: 10px 12px; display: inline-flex; align-self: flex-start; }
.pillar.c1 .i { background: var(--cyan); }
.pillar.c2 .i { background: var(--pink); }
.pillar.c3 .i { background: var(--yellow); }
.pillar h3 { font-family: "Press Start 2P", monospace; font-size: 14px; line-height: 1.35; }
.pillar p { font-family: "VT323", monospace; font-size: 20px; color: var(--dim); line-height: 1.4; }
.pillar ul { list-style: none; margin-top: auto; }
.pillar li { font-family: "VT323", monospace; font-size: 18px; color: var(--dim); padding: 5px 0; border-top: 1px dotted var(--line-2); }
.pillar.c1 li::before { content: "\25B8 "; color: var(--cyan); }
.pillar.c2 li::before { content: "\25B8 "; color: var(--pink); }
.pillar.c3 li::before { content: "\25B8 "; color: var(--yellow); }

/* ============================================================ media grid */
.media { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.media .shot { aspect-ratio: 16/10; }
.media .shot.tall { aspect-ratio: 3/4; grid-row: span 2; }
.media .shot.wide { grid-column: span 2; }

/* ============================================================ live feed */
.live { border: 2px solid var(--line-2); background: var(--bg-1); box-shadow: 5px 5px 0 #000; overflow: hidden; }
.live-h { padding: 14px 18px; border-bottom: 2px solid var(--line-2); display: flex; align-items: center; gap: 12px; background: var(--bg-2); }
.live-h .dot { background: var(--green); width: 10px; height: 10px; box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4); animation: blink 2s steps(1) infinite; }
.live-h .u { font-family: "Press Start 2P", monospace; font-size: 10px; color: var(--dim); }
.live-h .clock { margin-left: auto; font-family: "VT323", monospace; font-size: 16px; color: var(--green); }
.live-b { padding: 6px 18px; }
.lr { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; padding: 10px 0; border-bottom: 1px dotted var(--line-2); align-items: center; }
.lr:last-child { border-bottom: 0; }
.lr .t { font-family: "VT323", monospace; font-size: 16px; color: var(--mute); }
.lr .who { font-family: "VT323", monospace; font-size: 19px; }
.lr .who .a { color: var(--cyan); }
.lr .who .b { color: var(--yellow); }
.lr .who .w { color: var(--red); }
.lr .ev { font-family: "Press Start 2P", monospace; font-size: 9px; padding: 4px 8px; letter-spacing: 0.06em; }
.lr.guild .ev { background: var(--cyan); color: #1a1b2e; }
.lr.craft .ev { background: var(--green); color: #1a1b2e; }
.lr.kill .ev { background: var(--red); color: #1a1b2e; }
.lr.quest .ev { background: var(--yellow); color: #1a1b2e; }
.lr.trade .ev { background: var(--pink); color: #1a1b2e; }
.lr.land .ev { background: var(--violet); color: #1a1b2e; }
.lr.event .ev { background: var(--bg-3); color: var(--ink); }
.lr-empty { padding: 22px 0; text-align: center; font-family: "VT323", monospace; font-size: 18px; color: var(--mute); }

/* ============================================================ roadmap */
.rm { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rm-c { border: 2px solid var(--line-2); background: var(--bg-1); box-shadow: 5px 5px 0 #000; padding: 20px; }
.rm-c.now { border-color: var(--yellow); }
.rm-c .w { font-family: "Press Start 2P", monospace; font-size: 9px; color: var(--mute); margin-bottom: 10px; letter-spacing: 0.08em; }
.rm-c.now .w { color: var(--yellow); }
.rm-c h4 { font-family: "Press Start 2P", monospace; font-size: 12px; margin-bottom: 14px; }
.rm-c ul { list-style: none; }
.rm-c li { font-family: "VT323", monospace; font-size: 18px; padding: 7px 0; border-top: 1px dotted var(--line-2); color: var(--dim); display: grid; grid-template-columns: 16px 1fr; gap: 10px; }
.rm-c li.done { color: var(--ink); }
.rm-c li.done .m { color: var(--green); }
.rm-c li.wip .m { color: var(--yellow); }
.rm-c li .m { color: var(--mute); }

/* ============================================================ faq */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.faq details { border-top: 2px solid var(--line-2); padding: 16px 0; }
.faq details[open] summary { color: var(--yellow); }
.faq summary { list-style: none; font-family: "Press Start 2P", monospace; font-size: 12px; line-height: 1.4; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--mute); font-family: "Press Start 2P", monospace; font-size: 14px; }
.faq details[open] summary::after { content: "\2212"; color: var(--yellow); }
.faq p { font-family: "VT323", monospace; font-size: 19px; color: var(--dim); margin-top: 12px; max-width: 54ch; line-height: 1.45; }

/* ============================================================ big CTA */
.cta-big { padding: 100px 0; text-align: center; border-bottom: 2px solid var(--line-2); background: radial-gradient(ellipse at center, rgba(255, 107, 179, 0.12), transparent 60%); }
.cta-big h2 { font-family: "Press Start 2P", monospace; font-size: 36px; line-height: 1.3; margin-bottom: 16px; text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 var(--cyan); }
.cta-big p { font-family: "VT323", monospace; font-size: 22px; color: var(--dim); max-width: 540px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ footer */
footer { padding: 48px 0 28px; background: var(--bg); }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
footer h5 { font-family: "Press Start 2P", monospace; font-size: 10px; color: var(--yellow); margin-bottom: 14px; letter-spacing: 0.08em; }
footer a.flink { display: block; padding: 4px 0; color: var(--dim); font-family: "VT323", monospace; font-size: 18px; }
footer a.flink:hover { color: var(--cyan); }
footer .fine { border-top: 2px solid var(--line-2); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; font-family: "VT323", monospace; font-size: 16px; color: var(--mute); flex-wrap: wrap; }
footer .fine a { color: var(--cyan); border-bottom: 1px dotted currentColor; }
.footer-brand { margin-bottom: 14px; }
.footer-tag { font-family: "VT323", monospace; font-size: 18px; color: var(--dim); max-width: 280px; }
.footer-tag .penny-link { color: var(--yellow); border-bottom: 1px dotted currentColor; }
.footer-socials { margin-top: 16px; display: flex; gap: 8px; }
.footer-chip { padding: 6px 10px; font-size: 9px; }

/* ============================================================ screenshot guide toggle */
.guide {
    position: fixed; bottom: 20px; right: 20px; z-index: 100;
    background: var(--bg-1); border: 2px solid var(--line-2); box-shadow: 4px 4px 0 #000;
    padding: 8px; display: flex; gap: 8px;
}
.guide .btn { padding: 6px 10px; font-size: 9px; }
.guide .btn.on { background: var(--yellow); color: #1a1b2e; border-color: var(--yellow); }

body.hide-guide .shot .badge,
body.hide-guide .shot .label,
body.hide-guide .shot .size,
body.hide-guide .shot .ghost-sprite { display: none; }

/* ============================================================ auth modal */
.modal-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 200;
    align-items: center; justify-content: center;
    padding: 20px;
}
.modal-backdrop.active { display: flex; }
.modal {
    width: 100%; max-width: 440px;
    background: var(--bg-1);
    border: 2px solid var(--line-2);
    box-shadow: 6px 6px 0 #000;
    padding: 24px;
    max-height: 92vh;
    overflow-y: auto;
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-header h2 { font-family: "Press Start 2P", monospace; font-size: 16px; color: var(--yellow); text-shadow: 2px 2px 0 var(--pink); }
.modal-close {
    font-family: "Press Start 2P", monospace; font-size: 16px;
    color: var(--dim);
    padding: 4px 10px;
    border: 2px solid var(--line-2);
    background: var(--bg-2);
    box-shadow: 2px 2px 0 #000;
}
.modal-close:hover { color: var(--pink); transform: translate(-1px, -1px); box-shadow: 3px 3px 0 #000; }

.auth-tabs { display: flex; gap: 6px; margin-bottom: 18px; border-bottom: 2px solid var(--line-2); }
.auth-tab {
    flex: 1; padding: 10px;
    font-family: "Press Start 2P", monospace; font-size: 9px;
    background: transparent; color: var(--dim);
    border: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}
.auth-tab:hover { color: var(--cyan); }
.auth-tab.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.auth-form { display: none; flex-direction: column; gap: 14px; }
.auth-form.active { display: flex; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-family: "Press Start 2P", monospace; font-size: 9px;
    color: var(--dim); letter-spacing: 0.06em;
}
.form-group input {
    background: var(--bg); color: var(--ink);
    border: 2px solid var(--line-2);
    padding: 12px 14px;
    font-family: "VT323", monospace; font-size: 20px;
    outline: 0;
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.form-group input:focus { border-color: var(--yellow); }
.form-error {
    display: none;
    font-family: "VT323", monospace; font-size: 17px;
    color: var(--red);
    padding: 6px 10px;
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--red);
}
.form-error.visible { display: block; }
.form-submit { width: 100%; padding: 14px; font-size: 11px; margin-top: 4px; }

.oauth-divider {
    text-align: center; margin: 20px 0 14px;
    font-family: "Press Start 2P", monospace; font-size: 9px;
    color: var(--mute); letter-spacing: 0.08em;
    position: relative;
}
.oauth-divider::before,
.oauth-divider::after {
    content: ""; position: absolute; top: 50%;
    width: 30%; height: 1px; background: var(--line-2);
}
.oauth-divider::before { left: 0; }
.oauth-divider::after { right: 0; }
.oauth-buttons { display: flex; gap: 10px; }
.oauth-buttons .btn { flex: 1; }

/* ============================================================ toast */
.landing-toast {
    position: fixed; bottom: 84px; right: 20px; z-index: 300;
    padding: 14px 18px;
    background: var(--bg-1); color: var(--ink);
    border: 2px solid var(--yellow);
    box-shadow: 4px 4px 0 #000;
    font-family: "VT323", monospace; font-size: 18px;
    max-width: 360px;
    transform: translateX(110%);
    transition: transform .28s ease-out;
}
.landing-toast.visible { transform: translateX(0); }
.landing-toast.success { border-color: var(--green); }
.landing-toast.error { border-color: var(--red); }

/* ============================================================ admin dropdown (injected by landing.js when user is admin) */
.admin-nav-dropdown { position: relative; display: inline-block; }
.admin-nav-dropdown-btn {
    background: var(--bg-2);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    box-shadow: 3px 3px 0 #000;
    padding: 8px 12px;
    font-family: "Press Start 2P", monospace;
    font-size: 9px;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform .06s, box-shadow .06s;
    white-space: nowrap;
}
.admin-nav-dropdown-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }
.admin-nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px); right: 0;
    min-width: 220px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--bg-1);
    border: 2px solid var(--yellow);
    box-shadow: 5px 5px 0 #000;
    padding: 8px 0;
    z-index: 1000;
}
.admin-nav-dropdown:hover .admin-nav-dropdown-content,
.admin-nav-dropdown:focus-within .admin-nav-dropdown-content { display: block; }
.admin-nav-dropdown-group {
    padding: 10px 14px 6px;
    font-family: "Press Start 2P", monospace;
    font-size: 8px;
    color: var(--yellow);
    letter-spacing: 0.08em;
    border-top: 1px solid var(--line-2);
    margin-top: 4px;
}
.admin-nav-dropdown-group:first-child { border-top: 0; margin-top: 0; }
.admin-nav-dropdown-content a {
    display: block;
    padding: 6px 14px;
    color: var(--dim);
    font-family: "VT323", monospace;
    font-size: 18px;
    letter-spacing: 0.02em;
}
.admin-nav-dropdown-content a:hover { background: var(--bg-2); color: var(--cyan); }

/* ============================================================ responsive */
@media (max-width: 960px) {
    .hero-in { grid-template-columns: 1fr; }
    .strip { grid-template-columns: repeat(2, 1fr); }
    .how, .pillars, .rm { grid-template-columns: 1fr 1fr; }
    .media { grid-template-columns: 1fr; }
    .media .shot.tall { grid-row: auto; aspect-ratio: 16/10; }
    .media .shot.wide { grid-column: auto; }
    .faq { grid-template-columns: 1fr; gap: 0; }
    .links { display: none; }
    .landing-nav-user .user-greet { display: none; }
    footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    nav.top .row { gap: 10px; }
    .strip, .how, .pillars, .rm { grid-template-columns: 1fr; }
    footer .cols { grid-template-columns: 1fr; }
    h1 { font-size: 28px; }
    .shead h2 { font-size: 20px; }
    .cta-big h2 { font-size: 24px; }
    .status { display: none; }
}
