@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Gold palette */
  --gold:        #F0B429;
  --gold-light:  #FFD166;
  --gold-dim:    #B8860B;
  --gold-soft:   rgba(240,180,41,0.09);
  --gold-glow:   rgba(240,180,41,0.16);
  --gold-border: rgba(240,180,41,0.18);

  /* Navy palette */
  --navy:   #070E1D;
  --navy-2: #0B1628;
  --navy-3: #0F1E35;
  --navy-4: #152540;
  --navy-5: #1B2E50;

  /* Teal accent (replaces red) */
  --teal:        #0E9E8C;
  --teal-light:  #14C4AF;
  --teal-soft:   rgba(14,158,140,0.1);
  --teal-border: rgba(14,158,140,0.22);

  /* UI */
  --glass:        rgba(11,22,40,0.75);
  --glass-border: rgba(240,180,41,0.13);
  --muted:        #6B7E9F;
  --muted-2:      #8A9BB8;
  --text:         #D8E4F0;
  --white:        #fff;

  /* Semantic */
  --success:        #16A34A;
  --success-soft:   rgba(22,163,74,0.12);
  --success-border: rgba(22,163,74,0.28);
  --danger:         #DC2626;
  --danger-soft:    rgba(220,38,38,0.1);
  --danger-border:  rgba(220,38,38,0.28);
  --warning:        #D97706;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --nav-h:     62px;
  --tab-h:     60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom));
  background-image:
    radial-gradient(ellipse 100% 60% at 0% 0%,   rgba(14,158,140,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80%  80% at 100% 100%, rgba(11,22,40,0.9)    0%, transparent 60%),
    radial-gradient(ellipse 60%  40% at 50%  0%,  rgba(240,180,41,0.04) 0%, transparent 50%);
}

/* ─────────── TOP NAV (desktop) ─────────── */
.top-nav {
  display: none;
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(7,14,29,0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(240,180,41,0.06);
}
.top-nav-inner {
  max-width: 920px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: auto;
}
.nav-brand-logo {
  width: 38px; height: 38px; object-fit: contain;
  /* blend black bg of logo into dark nav */
  border-radius: 6px;
  mix-blend-mode: lighten;
  filter: brightness(1.1) contrast(1.05);
}
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-brand-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: .07em;
  color: var(--gold);
}
.nav-brand-sub {
  font-size: 10px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 1px;
}
.nav-links { display: flex; }
.nav-lnk {
  padding: 0 15px; height: var(--nav-h);
  display: flex; align-items: center; gap: 6px;
  color: var(--muted-2); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav-lnk svg { width: 15px; height: 15px; }
.nav-lnk:hover { color: var(--gold); }
.nav-lnk.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-pill {
  margin-left: 14px; padding: 5px 13px;
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  border-radius: 20px; color: var(--gold);
  font-size: 12px; font-weight: 600;
}
.nav-out {
  margin-left: 8px; padding: 5px 13px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; color: var(--muted-2);
  font-size: 12px; font-weight: 500; text-decoration: none;
  transition: all .2s;
}
.nav-out:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ─────────── BOTTOM TAB BAR (mobile) ─────────── */
.tab-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  height: var(--tab-h);
  background: rgba(7,14,29,0.97);
  backdrop-filter: blur(24px) saturate(1.4);
  border-top: 1px solid var(--glass-border);
  display: flex;
  padding-bottom: env(safe-area-inset-bottom);
}
.tab-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--muted); text-decoration: none;
  font-size: 10px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.tab-item svg { width: 22px; height: 22px; stroke-width: 1.6; transition: stroke .2s; }
.tab-item.active { color: var(--gold); }
.tab-item.active svg { stroke: var(--gold); }
.tab-item.active::before {
  content: ''; position: absolute; top: 0; left: 20%; right: 20%;
  height: 2px; background: var(--gold); border-radius: 0 0 2px 2px;
}

/* ─────────── PAGE ─────────── */
.page { max-width: 920px; margin: 0 auto; padding: 1.1rem 1rem; }

/* ─────────── HERO BANNER ─────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-4) 0%, var(--navy-5) 50%, rgba(14,158,140,0.08) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 14px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: .5;
}
.hero::after {
  content: ''; position: absolute;
  top: -40px; right: -30px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(14,158,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo-wrap {
  flex-shrink: 0; width: 64px; height: 64px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.hero-logo {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
}
.hero-text { flex: 1; min-width: 0; }
.hero-eyebrow {
  font-size: 10px; color: var(--teal-light);
  letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 3px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 4.5vw, 28px);
  letter-spacing: .06em; line-height: 1.05;
  color: var(--white);
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
.hero-chip {
  font-size: 11px; font-weight: 600;
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  border-radius: 4px; padding: 2px 8px; color: var(--gold-light);
}
.hero-meta { flex-shrink: 0; text-align: right; }
.hero-prize {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 4vw, 26px); color: var(--gold-light);
  letter-spacing: .06em; line-height: 1;
}
.hero-date { font-size: 11px; color: var(--muted-2); margin-top: 3px; }

/* ─────────── STAT STRIP ─────────── */
.stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 1rem; }
.stat-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 10px; text-align: center;
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.stat-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: .04em;
  color: var(--gold-light); line-height: 1;
}
.stat-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: .07em; }

/* ─────────── CARD ─────────── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  margin-bottom: 1rem;
}
.card-head {
  padding: 12px 16px;
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,14,29,0.5);
}
.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: .06em; color: var(--gold);
  display: flex; align-items: center; gap: 7px;
}
.card-title svg { width: 16px; height: 16px; stroke: var(--gold); }
.card-body { padding: 16px; }

/* ─────────── LEADERBOARD ─────────── */
.lb-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(240,180,41,0.05);
  transition: background .15s;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(240,180,41,0.03); }
.lb-row.top1 { background: rgba(240,180,41,0.07); border-left: 3px solid var(--gold); }
.lb-row.top2 { border-left: 3px solid rgba(192,192,192,0.6); }
.lb-row.top3 { border-left: 3px solid rgba(205,127,50,0.6); }
.lb-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; min-width: 36px; text-align: center; line-height: 1;
}
.lb-info { flex: 1; min-width: 0; }
.lb-name { font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
.lb-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
.lb-score { text-align: right; flex-shrink: 0; }
.lb-kg { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--gold-light); line-height: 1; }
.lb-kg-lbl { font-size: 10px; color: var(--muted); }

/* ─────────── TAGS ─────────── */
.tag {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.tag-gold    { background: var(--gold-soft);    color: var(--gold-light); border: 1px solid var(--gold-border); }
.tag-teal    { background: var(--teal-soft);    color: var(--teal-light); border: 1px solid var(--teal-border); }
.tag-muted   { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid rgba(255,255,255,0.09); }
.tag-success { background: var(--success-soft); color: #4ade80; border: 1px solid var(--success-border); }
.tag-danger  { background: var(--danger-soft);  color: #f87171; border: 1px solid var(--danger-border); }
.tag-pending { background: rgba(217,119,6,0.12); color: #fcd34d; border: 1px solid rgba(217,119,6,0.3); }
.tag-approved { background: var(--success-soft); color: #4ade80; border: 1px solid var(--success-border); }
.tag-rejected { background: var(--danger-soft);  color: #f87171; border: 1px solid var(--danger-border); }

/* ─────────── CATCH CARDS ─────────── */
.catch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.catch-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.catch-card:hover { transform: translateY(-2px); border-color: rgba(240,180,41,0.3); }
.catch-img { width: 100%; height: 145px; object-fit: cover; display: block; }
.catch-no-img {
  width: 100%; height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,14,29,0.6); font-size: 30px;
  color: rgba(240,180,41,0.15);
}
.catch-body { padding: 12px 14px; }
.catch-species { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: .04em; color: var(--white); }
.catch-wt { font-size: 24px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.catch-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.catch-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }

/* ─────────── FORMS ─────────── */
.form-group { margin-bottom: 13px; }
label.lbl {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 5px;
}
.inp {
  width: 100%; padding: 11px 14px;
  background: rgba(7,14,29,0.7);
  border: 1px solid rgba(240,180,41,0.16);
  border-radius: var(--radius-sm);
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.inp:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,180,41,0.09); }
.inp::placeholder { color: rgba(107,126,159,0.45); }
select.inp { cursor: pointer; }
select.inp option { background: var(--navy-3); }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-divider {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .09em;
  margin: 18px 0 12px; padding-bottom: 7px;
  border-bottom: 1px solid var(--glass-border);
}

/* ─────────── PHOTO ZONE ─────────── */
.photo-zone {
  border: 1px dashed rgba(240,180,41,0.2); border-radius: var(--radius-sm);
  padding: 18px 14px; text-align: center;
  color: var(--muted); font-size: 13px;
  cursor: pointer; transition: all .2s;
  background: rgba(7,14,29,0.4);
}
.photo-zone:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.photo-zone svg { width: 26px; height: 26px; margin: 0 auto 6px; display: block; opacity: .35; }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .2s; line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-teal  { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.13); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-sm  { padding: 7px 14px; font-size: 12px; border-radius: 6px; }
.btn-xs  { padding: 4px 10px; font-size: 11px; border-radius: var(--radius-xs); border: 1px solid; cursor: pointer; font-family: 'Outfit', sans-serif; font-weight: 600; transition: all .2s; }
.btn-ok  { border-color: var(--success-border); color: #4ade80; background: var(--success-soft); }
.btn-ok:hover  { background: rgba(22,163,74,0.2); }
.btn-bad { border-color: var(--danger-border); color: #f87171; background: var(--danger-soft); }
.btn-bad:hover { background: rgba(220,38,38,0.2); }
.btn-full { width: 100%; }

/* ─────────── ALERTS ─────────── */
.alert { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
.alert-err { background: var(--danger-soft); border: 1px solid var(--danger-border); color: #fca5a5; }
.alert-ok  { background: var(--success-soft); border: 1px solid var(--success-border); color: #86efac; }
.info-box {
  background: var(--teal-soft); border: 1px solid var(--teal-border);
  border-left: 3px solid var(--teal-light); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 13px; color: var(--text);
  margin-bottom: 14px; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}

/* ─────────── AUTH ─────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: flex-start; justify-content: center;
  padding: 1.5rem 1rem;
  padding-bottom: calc(env(safe-area-inset-bottom) + 1.5rem);
}
.auth-box {
  width: 100%; max-width: 420px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}
.auth-hd {
  background: linear-gradient(160deg, var(--navy-4) 0%, var(--navy-5) 60%, rgba(14,158,140,0.12) 100%);
  border-bottom: 1px solid var(--gold-border);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.auth-hd::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: .4;
}
/* RAC logo on auth: circular framed, glowing */
.auth-logo-ring {
  width: 88px; height: 88px; margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(240,180,41,0.08) 0%, rgba(7,14,29,0.6) 100%);
  border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(240,180,41,0.04), 0 0 32px rgba(14,158,140,0.1);
  padding: 8px;
}
.auth-logo-ring img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: lighten; filter: brightness(1.1);
}
.auth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: .09em; color: var(--white);
}
.auth-title span { color: var(--gold-light); }
.auth-sub { font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.auth-body { padding: 1.5rem; }
.auth-foot { padding: 0 1.5rem 1.5rem; text-align: center; font-size: 13px; color: var(--muted); }
.auth-foot a { color: var(--gold); text-decoration: none; }
.auth-tag-line {
  padding: 0 1.5rem 1.25rem; text-align: center;
  font-size: 11px; color: rgba(107,126,159,0.4);
  letter-spacing: .07em;
}

/* ─────────── MODAL SHEET ─────────── */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 500; display: none; align-items: flex-end; justify-content: center;
}
.modal-bg.open { display: flex; }
.modal-sheet {
  background: var(--navy-3); border: 1px solid var(--glass-border);
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%; max-width: 560px; max-height: 88vh;
  overflow-y: auto; padding: 1.5rem;
}
.modal-handle {
  width: 40px; height: 4px; background: rgba(255,255,255,0.15);
  border-radius: 2px; margin: 0 auto 1.25rem;
}
.modal-sheet h2 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .06em; color: var(--gold); margin-bottom: 1rem; }
.modal-sheet h3 { font-size: 12px; font-weight: 700; color: var(--teal-light); margin: 14px 0 5px; text-transform: uppercase; letter-spacing: .07em; }
.modal-sheet p, .modal-sheet li { font-size: 13px; color: var(--text); line-height: 1.65; }
.modal-sheet ul { padding-left: 16px; }
.modal-sheet li { margin-bottom: 3px; }

/* ─────────── CHECKBOX ─────────── */
.check-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.check-row input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.check-row label { font-size: 13px; color: var(--text); line-height: 1.5; cursor: pointer; }
.check-row a { color: var(--gold); text-decoration: underline; cursor: pointer; }

/* ─────────── ADMIN TABLE ─────────── */
.a-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.a-table th {
  padding: 9px 12px; text-align: left;
  font-size: 10px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .09em;
  background: rgba(7,14,29,0.5); border-bottom: 1px solid var(--glass-border);
}
.a-table td { padding: 10px 12px; border-bottom: 1px solid rgba(240,180,41,0.05); vertical-align: middle; }
.a-table tr:hover td { background: rgba(240,180,41,0.02); }
.a-table tr:last-child td { border-bottom: none; }

/* ─────────── EMPTY STATE ─────────── */
.empty { text-align: center; padding: 2.5rem 1rem; }
.empty-icon { font-size: 36px; opacity: .2; margin-bottom: 10px; }
.empty p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─────────── HEADINGS ─────────── */
.sec-head {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  letter-spacing: .06em; color: var(--gold);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.sec-head::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-dim), transparent); }
.page-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 10px; flex-wrap: wrap; }
.page-hd .sec-head { margin-bottom: 0; }

/* ─────────── RULES PAGE ─────────── */
.rule-block { margin-bottom: 1.25rem; }
.rule-block h3 { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: .04em; color: var(--teal-light); margin-bottom: 6px; }
.rule-block ul { padding-left: 16px; }
.rule-block li { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 2px; }
.rule-block p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* ─────────── PENDING BANNER ─────────── */
.pending-banner {
  background: rgba(217,119,6,0.09); border: 1px solid rgba(217,119,6,0.25);
  border-left: 3px solid var(--gold); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 1rem;
  font-size: 13px; display: flex; gap: 8px; align-items: center;
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .catch-grid { grid-template-columns: 1fr 1fr; }
  .stat-val { font-size: 26px; }
  .lb-tags { display: none; }
  .hero-meta { display: none; }
}
@media (min-width: 700px) {
  body { padding-bottom: 0; }
  .top-nav { display: flex; }
  .tab-bar { display: none; }
}

/* ─────────── SCROLLBAR ─────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(240,180,41,0.18); border-radius: 2px; }
