:root {
  --bg: #0c0b09;
  --panel: #1a1814;
  --panel-2: #131110;
  --border: #252018;
  --border-gold: rgba(200,152,46,0.24);
  --gold: #c8982e;
  --gold-light: #e8b840;
  --heading: #e4d4a8;
  --text: #b8a478;
  --text-dim: #8a7858;
  --text-faint: #6a5840;
  --content-max: 1180px;
  --header-h: 54px;
}

* , *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); min-height: 100%; overflow-x: hidden; width: 100%; }
body {
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
h1, h2, h3 { font-family: 'Cinzel', serif; }
button { font-family: inherit; }
.hidden { display: none !important; }
::-webkit-scrollbar { width: 0; height: 0; }

/* ── header / nav (mobile: hamburger + slide-out drawer) ── */
.site-header {
  position: sticky; top: 0; z-index: 20; width: 100%;
  background: rgba(12,11,9,0.96);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); padding: 0 16px; width: 100%; max-width: var(--content-max); margin: 0 auto; box-sizing: border-box; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-home { display: flex; align-items: center; gap: 10px; background: none; border: none; padding: 0; margin: 0; cursor: pointer; font: inherit; }
.brand-home:hover .brand-name { color: var(--gold-light); }
.brand-logo { height: 28px; width: auto; mix-blend-mode: screen; opacity: 0.95; }
.brand-name { font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.12em; color: var(--heading); }
.header-socials { display: flex; align-items: center; gap: 6px; margin-left: 4px; padding-left: 10px; border-left: 1px solid var(--border); }
.header-social-link { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 6px; opacity: 0.85; }
.header-social-link:hover { opacity: 1; background: rgba(255,255,255,0.05); }
.header-social-link svg { width: 15px; height: 15px; }

.nav-toggle {
  width: 38px; height: 38px; background: none; border: 1px solid var(--border);
  border-radius: 5px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #8a7858; border-radius: 2px; }

.nav-overlay {
  position: fixed; inset: 0; top: var(--header-h); background: rgba(0,0,0,0.6); z-index: 19;
}
.nav-drawer {
  position: fixed; top: var(--header-h); right: 0; width: 74%; max-width: 280px; bottom: 0;
  background: var(--panel-2); border-left: 1px solid #3d3428; z-index: 20;
  padding: 20px 18px; display: flex; flex-direction: column; gap: 4px;
}
.nav-link {
  font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 13px 10px; border-radius: 5px; color: var(--heading);
  display: block;
}
.nav-link.active { color: var(--gold); background: rgba(200,152,46,0.07); }
.nav-link-ext { color: var(--heading); }

/* main / tabs */
.site-main { min-height: calc(100vh - var(--header-h)); }
.tab-panel { padding-bottom: 24px; }

/* home / about (hero-card is reused by both) */
.home-wrap { padding: 20px 16px 8px; display: flex; flex-direction: column; gap: 22px; max-width: 640px; margin: 0 auto; }
.hero-card {
  border-radius: 16px; border: 1px solid rgba(200,152,46,0.28);
  background: radial-gradient(circle at top left, rgba(200,152,46,0.18), transparent 38%), linear-gradient(180deg, rgba(26,24,20,0.96), rgba(12,11,9,0.96));
  box-shadow: 0 12px 28px rgba(0,0,0,0.28); overflow: hidden;
}
.hero-img { display: block; width: 100%; height: 170px; object-fit: cover; border-bottom: 1px solid rgba(200,152,46,0.16); background: #0d0c0a; }
.hero-img-contain {
  display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box;
  background: radial-gradient(circle at center, rgba(232,184,64,0.4), rgba(150,100,20,0.18) 55%, transparent 80%), linear-gradient(160deg, #2b2113, #120f0a);
}
.hero-img-contain img { max-width: 60%; max-height: 100%; object-fit: contain; }
.hero-body { padding: 20px 18px; }
.eyebrow { font-family: 'Cinzel', serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.hero-title { font-size: 1.7rem; font-weight: 900; color: var(--heading); letter-spacing: 0.02em; line-height: 1.15; margin: 0 0 12px; }
.hero-text { font-size: 0.98rem; color: var(--text); line-height: 1.6; margin: 0 0 18px; }

.btn {
  font-family: 'Cinzel', serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 15px 20px; border-radius: 5px; cursor: pointer; border: 1px solid transparent;
}
.btn-block { width: 100%; }
.btn-primary { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--heading); border-color: rgba(200,152,46,0.32); }

.section-kicker { font-family: 'Cinzel', serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-kicker .rule { flex: 1; height: 1px; background: var(--border); }
.section-title { font-size: 1.2rem; color: var(--heading); margin: 0 0 8px; }
.section-text { color: var(--text-dim); line-height: 1.6; margin: 0 0 16px; }

.link-stack { display: flex; flex-direction: column; gap: 10px; }
.pill-link {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--heading);
  font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color .15s ease, background .15s ease;
}
.pill-link:hover { border-color: var(--border-gold); background: rgba(255,255,255,0.05); color: var(--heading); }
.pill-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid var(--border);
  flex-shrink: 0; color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.85rem;
}

.uploads-status { color: var(--text-dim); font-size: 0.88rem; text-align: center; padding: 18px 0; }

.uploads-grid { display: flex; flex-direction: column; gap: 12px; }
.upload-card { display: block; color: inherit; }
.upload-thumb { position: relative; display: block; border-radius: 8px; overflow: hidden; border: 1px solid rgba(200,152,46,0.35); background: #0d0c0a; aspect-ratio: 16 / 9; }
.upload-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.upload-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(12,11,9,0.28); color: #fff; font-size: 1.3rem; text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.upload-card:hover .upload-play { background: rgba(12,11,9,0.12); }
.upload-title { display: block; margin-top: 8px; font-weight: 700; color: var(--heading); font-size: 0.9rem; line-height: 1.4; }

.shorts-strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.short-card { flex: 0 0 130px; color: inherit; }
.short-thumb { position: relative; display: block; border-radius: 8px; overflow: hidden; border: 1px solid rgba(200,152,46,0.35); background: #0d0c0a; aspect-ratio: 9 / 16; }
.short-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.short-card:hover .upload-play { background: rgba(12,11,9,0.12); }
.short-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 8px; font-weight: 700; color: var(--heading); font-size: 0.82rem; line-height: 1.35; }

.page-footer { text-align: center; padding: 18px 10px 8px; font-size: 0.78rem; color: var(--text-faint); border-top: 1px solid var(--border); margin-top: 6px; }
.page-footer strong { color: var(--text-dim); }

/* quiz */
.quiz-wrap { padding: 20px 16px 24px; max-width: 640px; margin: 0 auto; }
.progress-track { height: 8px; background: rgba(255,255,255,0.04); border-radius: 999px; overflow: hidden; border: 1px solid var(--border-gold); margin-bottom: 20px; }
.progress-fill { height: 100%; background: linear-gradient(90deg,#c8982e,#e8b840); transition: width .3s ease; }

.stage-head { text-align: center; margin-bottom: 16px; }
.stage-head h2 { margin: 0 0 6px; font-size: 1.05rem; color: var(--heading); }
.stage-head p { margin: 0; font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }
.counter-text { text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--gold); margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.05em; }

.tier-grid { display: block; }
.tier-group { border: 1px solid var(--border-gold); border-radius: 8px; background: rgba(255,255,255,0.02); margin-bottom: 10px; overflow: hidden; }
.tier-summary { padding: 12px 14px; font-weight: 700; font-size: 0.9rem; color: var(--heading); display: flex; justify-content: space-between; align-items: center; font-family: 'Cinzel', serif; }
.tier-tick-all { font-family: 'Cinzel', serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 9px; border-radius: 5px; border: 1px solid rgba(200,152,46,0.32); background: rgba(255,255,255,0.03); color: var(--text-dim); cursor: pointer; }
.tier-tick-all:hover { color: var(--heading); border-color: var(--gold); }
.tier-body { padding: 0 14px 12px; }
.boss-row { display: flex; align-items: center; gap: 10px; padding: 10px 2px; font-size: 0.9rem; border-bottom: 1px dashed rgba(255,255,255,0.08); cursor: pointer; }
.boss-row:hover { color: var(--heading); }
.boss-row input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.boss-icon {
  width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; border-radius: 5px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 2px;
}
.boss-row .boss-name { color: var(--heading); }

.stage-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.stage-actions.row { flex-direction: row; }
.stage-actions .btn { flex: 1; }

.field-header {
  display: flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--heading); margin: 22px 0 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,152,46,0.28);
}
.field-header:first-child { margin-top: 0; }
.field-header img { width: 22px; height: 22px; object-fit: contain; filter: drop-shadow(0 0 4px rgba(200,152,46,0.4)); }
.field-hint { font-size: 0.82rem; color: var(--text-dim); line-height: 1.4; margin: 0 0 10px; }

.hiscore-lookup { display: flex; gap: 8px; margin-bottom: 8px; }
.hiscore-input {
  flex: 1; min-width: 0; padding: 10px 12px; border-radius: 6px; border: 1px solid rgba(200,152,46,0.24);
  background: #1b1814; color: var(--heading); font-size: 0.9rem; font-family: inherit;
}
.hiscore-input::placeholder { color: var(--text-faint); }
.hiscore-btn { flex-shrink: 0; padding: 10px 16px; font-size: 0.76rem; }
.hiscore-status { font-size: 0.82rem; margin: 0 0 12px; color: var(--text-dim); }
.hiscore-status-ok { color: #94d9a6; }
.hiscore-status-error { color: #f0a7a7; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.field-box { border: 1px solid rgba(200,152,46,0.16); background: rgba(255,255,255,0.03); border-radius: 7px; padding: 8px 10px; }
.field-box label { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: var(--text-dim); margin-bottom: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-family: 'Cinzel', serif; }
.skill-icon { width: 15px; height: 15px; object-fit: contain; flex-shrink: 0; }
.field-box input, .field-box select { width: 100%; padding: 8px; border-radius: 5px; border: 1px solid rgba(200,152,46,0.24); background: #1b1814; color: var(--heading); font-size: 0.95rem; text-align: center; }
.field-box select { text-align: left; }

.quest-list { display: flex; flex-direction: column; gap: 8px; }
.quest-row { display: flex; align-items: flex-start; gap: 8px; border: 1px solid rgba(200,152,46,0.16); background: rgba(255,255,255,0.03); border-radius: 7px; padding: 9px 10px; cursor: pointer; }
.quest-row.quest-toggle-all {
  align-items: center; justify-content: center; text-align: center; width: 100%;
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--gold); background: rgba(255,255,255,0.03);
}
.quest-row.quest-toggle-all:hover { color: var(--gold-light); border-color: var(--gold); }
.quest-row input { accent-color: var(--gold); margin-top: 2px; }
.quest-row span { display: block; font-weight: 700; color: var(--heading); font-size: 0.9rem; }

.field-box-pref { display: flex; flex-direction: column; }
.field-pref-buttons { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.field-pref-buttons button { border: 1px solid rgba(200,152,46,0.24); padding: 6px 8px; border-radius: 5px; font-size: 0.76rem; font-weight: 700; cursor: pointer; background: rgba(255,255,255,0.03); color: var(--text); }
.field-pref-buttons button.active { background: var(--gold); color: var(--bg); }

.question-text { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--heading); text-align: center; }
.option-grid { display: grid; gap: 10px; }
.option-btn { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; border: 1px solid rgba(200,152,46,0.24); background: rgba(255,255,255,0.03); color: var(--heading); padding: 12px 14px; border-radius: 7px; cursor: pointer; font-size: 0.95rem; }
.option-btn:hover { border-color: var(--gold); }
.option-face { flex-shrink: 0; display: flex; }
.option-face svg { display: block; }
.option-label { font-weight: 600; }

.result-heading { text-align: center; margin-bottom: 8px; }
.result-heading h2 { margin: 0 0 4px; color: var(--heading); font-size: 1.15rem; }
.result-heading p { margin: 0; color: var(--text-dim); font-size: 0.86rem; }
.result-intro { margin-top: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(200,152,46,0.28); padding: 12px 14px; border-radius: 8px; color: var(--heading); font-size: 0.9rem; line-height: 1.5; text-align: center; }
.legendary-box { margin-top: 14px; background: rgba(200,152,46,0.08); border: 1px solid rgba(200,152,46,0.45); padding: 12px 14px; border-radius: 8px; color: var(--heading); }
.legendary-box h3 { margin: 0 0 6px; font-size: 0.95rem; }
.legendary-box div { font-size: 0.85rem; line-height: 1.5; }
.filter-note { margin-top: 10px; font-size: 0.82rem; color: #f0a7a7; }

.result-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.result-card { border: 1px solid rgba(200,152,46,0.22); background: linear-gradient(180deg, rgba(28,25,21,0.98), rgba(17,15,12,0.98)); border-radius: 10px; padding: 14px; }
.result-card-name { margin: 0 0 8px; font-size: 1.05rem; color: var(--heading); }
.result-line { font-size: 0.85rem; color: var(--text-dim); line-height: 1.45; margin-bottom: 8px; }
.result-line strong { color: var(--heading); }
.blocker-list { margin-top: 10px; padding-left: 18px; font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }

.yt-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  aspect-ratio: 16 / 9; margin: 8px 0 12px; border-radius: 8px; border: 1px solid rgba(200,152,46,0.35);
  background: radial-gradient(circle at 30% 20%, rgba(200,152,46,0.16), transparent 60%), linear-gradient(160deg, #1c1914, #100e0b);
  color: var(--gold);
}
.yt-tile:hover { border-color: var(--gold); color: var(--gold-light); }
.yt-tile-play {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(200,152,46,0.16);
  border: 1px solid rgba(200,152,46,0.5); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.yt-tile-text { font-family: 'Cinzel', serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.yt-tile-soon { opacity: 0.75; }

.yt-thumb { position: relative; display: block; margin: 8px 0 12px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(200,152,46,0.35); background: #0d0c0a; aspect-ratio: 16 / 9; }
.yt-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.yt-thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(12,11,9,0.28); color: #fff; font-size: 1.3rem; text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.yt-thumb:hover .yt-thumb-play { background: rgba(12,11,9,0.12); }

.top-pick { margin-top: 18px; }
.top-pick-label {
  text-align: center; font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px;
}
.result-card-priority {
  border: 1px solid rgba(232,184,64,0.65);
  box-shadow: 0 0 0 1px rgba(232,184,64,0.25), 0 0 32px rgba(200,152,46,0.35), 0 12px 28px rgba(0,0,0,0.35);
  background: radial-gradient(circle at top left, rgba(232,184,64,0.14), transparent 55%), linear-gradient(180deg, rgba(30,26,17,0.98), rgba(17,15,12,0.98));
}
.next-best-label { color: #9fb8d6; }
.result-card-nextbest {
  border: 1px solid rgba(159,184,214,0.5);
  box-shadow: 0 0 0 1px rgba(159,184,214,0.18), 0 0 28px rgba(120,150,190,0.25), 0 12px 28px rgba(0,0,0,0.35);
  background: radial-gradient(circle at top left, rgba(120,150,190,0.12), transparent 55%), linear-gradient(180deg, rgba(24,26,30,0.98), rgba(15,16,19,0.98));
}
.keep-practicing-label { color: #94d9a6; }
.result-card-keeppracticing {
  border: 1px solid rgba(148,217,166,0.5);
  box-shadow: 0 0 0 1px rgba(148,217,166,0.18), 0 0 28px rgba(110,190,135,0.25), 0 12px 28px rgba(0,0,0,0.35);
  background: radial-gradient(circle at top left, rgba(110,190,135,0.12), transparent 55%), linear-gradient(180deg, rgba(21,27,22,0.98), rgba(14,17,15,0.98));
}
.top-pick.keep-practicing { margin-top: 14px; }
.also-try-label, .non-rec-label {
  margin-top: 22px; text-align: center; font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
}
.result-card-blocked { opacity: 0.72; }
.result-card-blocked .yt-tile { opacity: 0.85; }

/* socials */
.socials-wrap { padding: 24px 16px; max-width: 640px; margin: 0 auto; }
.socials-header { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.socials-title { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 900; color: var(--heading); letter-spacing: 0.04em; }
.socials-sub { font-size: 0.92rem; font-style: italic; color: var(--text-dim); margin-top: 6px; }
.socials-list { display: flex; flex-direction: column; gap: 10px; }
.social-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-decoration: none; color: inherit; display: flex; align-items: center; gap: 14px; transition: border-color .15s ease, transform .12s ease; }
.social-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.social-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid var(--border); }
.social-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.social-name { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--heading); }
.social-sub { font-size: 0.82rem; color: var(--text-dim); }
.social-cta { margin-top: 4px; font-family: 'Cinzel', serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #7a5e22; }

/* ══════════════════════════════════════════════════════════════
   DESKTOP (≥900px) — persistent top nav, wide multi-column layouts.
   Below 900px everything above (the mobile design) applies as-is.
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --header-h: 72px; }
  body { font-size: 16px; background: radial-gradient(1200px 500px at 15% -10%, rgba(200,152,46,0.06), transparent 60%), var(--bg); }

  /* nav stays burger + drawer at every width; just scale the header up a little */
  .site-header { background: rgba(12,11,9,0.92); }
  .header-inner { padding: 0 32px; }
  .brand-logo { height: 34px; }
  .brand-name { font-size: 1rem; letter-spacing: 0.14em; }
  .header-socials { gap: 8px; margin-left: 8px; padding-left: 14px; }
  .header-social-link { width: 30px; height: 30px; }
  .header-social-link svg { width: 17px; height: 17px; }
  .nav-toggle { width: 42px; height: 42px; }
  .nav-drawer { width: 320px; max-width: 320px; padding: 24px 22px; }
  .nav-link { font-size: 0.82rem; padding: 14px 12px; transition: background .15s ease, color .15s ease; }
  .nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.03); }
  .nav-link.active { background: rgba(200,152,46,0.09); }
  .nav-link-ext { color: var(--text); }
  .nav-link-ext:hover { color: var(--heading); }

  .site-main { min-height: calc(100vh - var(--header-h)); padding: 48px 32px 80px; }
  .tab-panel { max-width: var(--content-max); margin: 0 auto; padding-bottom: 0; }

  /* home / about */
  .home-wrap { padding: 0; max-width: none; margin: 0; display: flex; flex-direction: column; gap: 56px; }
  .hero-card { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
  .hero-img { height: 100%; min-height: 340px; }
  .hero-img-contain { padding: 32px; }
  .hero-img-contain img { max-width: 55%; }
  .hero-body { padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; margin-bottom: 16px; }
  .hero-title { font-size: 2.6rem; letter-spacing: 0.01em; line-height: 1.12; margin-bottom: 18px; }
  .hero-text { font-size: 1.05rem; line-height: 1.65; margin-bottom: 26px; max-width: 46ch; }

  .btn { padding: 15px 28px; align-self: flex-start; transition: transform .12s ease, background .15s ease; }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
  .btn-ghost:hover { background: rgba(255,255,255,0.03); }

  .section-kicker { font-size: 0.7rem; letter-spacing: 0.14em; gap: 16px; margin-bottom: 16px; }
  .section-title { font-size: 1.5rem; margin-bottom: 10px; }
  .section-text { line-height: 1.65; margin-bottom: 24px; max-width: 70ch; }

  .link-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pill-link { padding: 20px; gap: 14px; }
  .pill-icon { width: 42px; height: 42px; }

  .uploads-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .short-card { flex: 0 0 160px; }

  .page-footer { padding: 28px 10px; margin-top: 0; }

  /* quiz */
  .quiz-wrap { padding: 0; max-width: 880px; }
  .progress-track { margin-bottom: 28px; }
  .stage-head { margin-bottom: 24px; }
  .stage-head h2 { font-size: 1.4rem; margin-bottom: 8px; }
  .stage-head p { max-width: 60ch; margin: 0 auto; font-size: 0.98rem; line-height: 1.55; }
  .counter-text { font-size: 0.85rem; margin-bottom: 18px; }

  .tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
  .tier-summary { padding: 14px 16px; font-size: 0.95rem; }
  .tier-tick-all { font-size: 0.64rem; padding: 6px 10px; }
  .tier-body { padding: 0 16px 14px; }
  .boss-row { padding: 10px 2px; font-size: 0.92rem; }
  .boss-icon { width: 34px; height: 34px; }

  .stage-actions { flex-direction: row; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
  .stage-actions .btn { flex: 0 1 320px; align-self: auto; text-align: center; }
  .stage-actions .btn.btn-block { flex: 1 1 auto; max-width: 640px; }
  .stage-actions.three .btn { flex: 0 1 220px; }

  .field-header { margin: 30px 0 12px; font-size: 0.92rem; }
  .field-header img { width: 24px; height: 24px; }
  .field-hint { font-size: 0.88rem; margin-bottom: 14px; max-width: 60ch; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .field-box { padding: 10px 12px; }
  .field-box label { font-size: 0.72rem; }
  .field-box input, .field-box select { padding: 9px; }

  .quest-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .quest-row { padding: 10px 12px; }
  .quest-row span { font-size: 0.88rem; }

  .question-text { font-size: 1.3rem; margin-bottom: 22px; max-width: 56ch; margin-left: auto; margin-right: auto; }
  .option-grid { grid-template-columns: 1fr 1fr; max-width: 680px; margin: 0 auto; }
  .option-btn { padding: 16px; font-size: 0.98rem; }
  .option-btn:hover { background: rgba(255,255,255,0.05); }

  .result-heading { margin-bottom: 10px; }
  .result-heading h2 { font-size: 1.5rem; margin-bottom: 6px; }
  .result-heading p { max-width: 60ch; margin: 0 auto; font-size: 0.95rem; }
  .result-intro { margin: 18px auto 0; max-width: 720px; padding: 16px 20px; font-size: 0.95rem; line-height: 1.6; }
  .legendary-box { margin: 18px auto 0; max-width: 720px; padding: 16px 20px; text-align: center; }
  .filter-note { margin: 12px auto 0; max-width: 720px; font-size: 0.85rem; text-align: center; }

  .result-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
  .result-card { display: flex; flex-direction: column; padding: 18px; border-radius: 12px; }
  .result-card-name { font-size: 1.1rem; margin-bottom: 10px; }
  .result-line { font-size: 0.86rem; line-height: 1.5; }

  .yt-tile-play { width: 48px; height: 48px; font-size: 1.1rem; }
  .yt-tile-text { font-size: 0.76rem; }
  .yt-thumb-play { font-size: 1.4rem; }

  .top-pick { margin-top: 26px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .top-pick.keep-practicing { margin-top: 18px; }
  .top-pick-label { font-size: 0.82rem; letter-spacing: 0.12em; margin-bottom: 12px; }
  .result-card-priority { box-shadow: 0 0 0 1px rgba(232,184,64,0.25), 0 0 40px rgba(200,152,46,0.35), 0 16px 36px rgba(0,0,0,0.4); }
  .result-card-nextbest { box-shadow: 0 0 0 1px rgba(159,184,214,0.18), 0 0 36px rgba(120,150,190,0.25), 0 16px 36px rgba(0,0,0,0.4); }
  .result-card-keeppracticing { box-shadow: 0 0 0 1px rgba(148,217,166,0.18), 0 0 36px rgba(110,190,135,0.25), 0 16px 36px rgba(0,0,0,0.4); }
  .also-try-label, .non-rec-label { margin-top: 30px; font-size: 0.74rem; letter-spacing: 0.12em; }

  /* socials */
  .socials-wrap { padding: 0; max-width: 900px; }
  .socials-header { padding-bottom: 28px; margin-bottom: 28px; }
  .socials-title { font-size: 1.8rem; }
  .socials-sub { font-size: 1.02rem; }
  .socials-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .social-card { padding: 20px; border-radius: 10px; }
}

/* Compact desktop tier (laptops/tablets): same nav/hero treatment as above,
   but grids stay leaner until there's enough width for the full density. */
@media (min-width: 900px) and (max-width: 1100px) {
  .tier-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .result-cards { grid-template-columns: 1fr 1fr; }
  .socials-list { grid-template-columns: 1fr 1fr; }
  .link-stack { grid-template-columns: 1fr 1fr; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-img { min-height: 260px; }
}
