/* Top Bookies — Warm Editorial Sports design system */
:root {
  color-scheme: light dark;
  --bg: #faf9f6;
  --bg-elev: #f0efe9;
  --text: #1a1a17;
  --muted: #6b6960;
  --brand: #1a1a17;
  --accent: #c2410c;
  --accent-bright: #ea580c;
  --accent-soft: #fff7ed;
  --accent-contrast: #7c2d12;
  --highlight: #d97706;
  --border: #e2e0d8;
  --hero-bg: var(--bg-elev);
  --hero-text: #1a1a17;
  --hero-lede: rgba(26,26,23,0.72);
  --hero-eyebrow-bg: rgba(194,65,12,0.1);
  --hero-eyebrow-color: #c2410c;
  --hero-ghost-bg: rgba(194,65,12,0.08);
  --hero-ghost-hover: rgba(194,65,12,0.14);
  --hero-ghost-color: #1a1a17;
  --hero-ghost-border: rgba(194,65,12,0.25);
}
@media (prefers-color-scheme: dark){
  :root{
    --bg: #0f0f0d;
    --bg-elev: #1a1a16;
    --text: #f5f4ef;
    --muted: #a3a092;
    --brand: #f5f4ef;
    --accent: #fb923c;
    --accent-bright: #fdba74;
    --accent-soft: rgba(251,146,60,0.1);
    --accent-contrast: #431407;
    --highlight: #fbbf24;
    --border: #2a2a24;
    --hero-bg: var(--bg-elev);
    --hero-text: #f5f4ef;
    --hero-lede: rgba(245,244,239,0.72);
    --hero-eyebrow-bg: rgba(251,146,60,0.15);
    --hero-eyebrow-color: #fb923c;
    --hero-ghost-bg: rgba(251,146,60,0.12);
    --hero-ghost-hover: rgba(251,146,60,0.2);
    --hero-ghost-color: #f5f4ef;
    --hero-ghost-border: rgba(251,146,60,0.35);
  }
}
/* Explicit theme overrides via data-theme */
html[data-theme='light']{--bg:#faf9f6;--bg-elev:#f0efe9;--text:#1a1a17;--muted:#6b6960;--brand:#1a1a17;--accent:#c2410c;--accent-bright:#ea580c;--accent-soft:#fff7ed;--accent-contrast:#7c2d12;--highlight:#d97706;--border:#e2e0d8;--hero-bg:var(--bg-elev);--hero-text:#1a1a17;--hero-lede:rgba(26,26,23,0.72);--hero-eyebrow-bg:rgba(194,65,12,0.1);--hero-eyebrow-color:#c2410c;--hero-ghost-bg:rgba(194,65,12,0.08);--hero-ghost-hover:rgba(194,65,12,0.14);--hero-ghost-color:#1a1a17;--hero-ghost-border:rgba(194,65,12,0.25)}
html[data-theme='dark']{--bg:#0f0f0d;--bg-elev:#1a1a16;--text:#f5f4ef;--muted:#a3a092;--brand:#f5f4ef;--accent:#fb923c;--accent-bright:#fdba74;--accent-soft:rgba(251,146,60,0.1);--accent-contrast:#431407;--highlight:#fbbf24;--border:#2a2a24;--hero-bg:var(--bg-elev);--hero-text:#f5f4ef;--hero-lede:rgba(245,244,239,0.72);--hero-eyebrow-bg:rgba(251,146,60,0.15);--hero-eyebrow-color:#fb923c;--hero-ghost-bg:rgba(251,146,60,0.12);--hero-ghost-hover:rgba(251,146,60,0.2);--hero-ghost-color:#f5f4ef;--hero-ghost-border:rgba(251,146,60,0.35)}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Source Sans 3',system-ui,-apple-system,'Segoe UI',Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
  background:var(--bg);
  background-image:radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size:24px 24px;
  color:var(--text);
  line-height:1.6;
}
h1,h2,h3,h4,h5,h6{font-family:'Syne',system-ui,-apple-system,sans-serif;letter-spacing:-0.025em;line-height:1.2}
.brand{font-family:'Syne',system-ui,sans-serif;font-weight:700}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 clamp(1rem,5vw,2rem)}
.site-header{border-bottom:none;box-shadow:0 1px 0 var(--border);padding:clamp(0.85rem,2vw,1.4rem) 0;background:var(--bg)}
.site-footer{border-top:1px solid var(--border);border-bottom:none;padding:clamp(1.5rem,3vw,2.6rem) 0;background:var(--bg)}
.site-header .container,.site-footer .container{display:flex;align-items:center;justify-content:space-between;gap:.75rem}
.brand{display:flex;align-items:center;gap:.5rem;color:var(--brand);text-decoration:none;font-weight:700}
.brand img{border-radius:8px}
.nav a{color:var(--text);text-decoration:none;margin-left:1rem;font-weight:500}
.nav a[aria-current="page"]{font-weight:700}
.nav a:hover{color:var(--accent)}
.theme-toggle{margin-left:auto;display:inline-flex;align-items:center;gap:.5rem}
.theme-toggle button{background:transparent;border:1px solid var(--border);border-radius:999px;padding:.35rem .6rem;color:var(--text);cursor:pointer;transition:background .2s ease}
.theme-toggle button:hover{background:var(--bg-elev)}

/* Hero — single column, typography-led */
.hero{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin:clamp(1.5rem,4vw,3rem) 0;
  padding:clamp(3rem,8vw,5.5rem) clamp(1.5rem,4vw,3rem);
  background:var(--hero-bg);
  color:var(--hero-text);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
}
.hero-content{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:1.25rem;max-width:640px}
.hero-content .eyebrow{font-size:.85rem;letter-spacing:.1em;text-transform:uppercase;font-weight:700;color:var(--hero-eyebrow-color);background:var(--hero-eyebrow-bg);align-self:center;padding:.35rem .85rem;border-radius:999px}
.hero .lede{color:var(--hero-lede);max-width:55ch;text-align:center}
.hero-actions{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}
.hero-visual{display:none}
.hero h1{font-size:clamp(2.2rem,5vw,3.6rem);margin:.35rem 0;color:var(--hero-text);letter-spacing:-0.03em}

.lede{color:var(--muted);max-width:65ch}

/* Cards — clean elevated surface with optional left accent */
.card{
  position:relative;
  margin:2rem 0;
  padding:clamp(1.25rem,3vw,1.9rem);
  background:var(--bg-elev);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
}
.card>*{position:relative;z-index:1}

/* Buttons */
.btn{
  appearance:none;
  border:0;
  border-radius:10px;
  background:var(--accent);
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.78rem 1.35rem;
  font-family:'Source Sans 3',system-ui,sans-serif;
  font-weight:600;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration:none;
}
.btn:hover{transform:translateY(-1px);background:var(--accent-bright);box-shadow:0 8px 20px -8px rgba(194,65,12,0.4)}
.btn:active{transform:translateY(1px);box-shadow:none}
.btn.primary{background:var(--accent);box-shadow:0 8px 20px -8px rgba(194,65,12,0.35)}
.btn.primary::after{content:'\2192';font-size:1.1em;transition:transform .2s ease}
.btn.primary:hover::after{transform:translateX(4px)}
.btn.ghost{background:var(--hero-ghost-bg);color:var(--brand);border:1px solid var(--hero-ghost-border);box-shadow:none}
.hero .btn.ghost{color:var(--hero-ghost-color);background:var(--hero-ghost-bg);border:1px solid var(--hero-ghost-border)}
.hero .btn.ghost:hover{background:var(--hero-ghost-hover)}
html[data-theme='dark'] .hero .btn.ghost{color:var(--hero-ghost-color);background:var(--hero-ghost-bg);border:1px solid var(--hero-ghost-border)}
html[data-theme='dark'] .hero .btn.ghost:hover{background:var(--hero-ghost-hover)}
html[data-theme='dark'] .btn.ghost{background:rgba(251,146,60,0.12);color:#f5f4ef;border-color:rgba(251,146,60,0.35)}
.btn:focus{outline:2px solid var(--accent);outline-offset:2px}

.btn.subtle{background:transparent;color:var(--brand);border:1px solid var(--border);box-shadow:none}
.btn.subtle:hover{background:var(--accent-soft)}
html[data-theme='dark'] .btn.subtle{color:#f5f4ef;border-color:var(--border);background:rgba(251,146,60,0.08)}
html[data-theme='dark'] .btn.subtle:hover{background:rgba(251,146,60,0.16)}

/* Finder form & options */
.finder-form{display:grid;gap:.75rem;margin:.75rem 0}
.finder-form .form-actions{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center;margin-top:.2rem}
.noscript-note{margin:1rem 0 0;padding:1rem 1.1rem;border-radius:12px;border:1px solid rgba(194,65,12,0.3);background:rgba(194,65,12,0.08);font-size:.9rem;color:var(--text)}
html[data-theme='dark'] .noscript-note{background:rgba(251,146,60,0.12);border-color:rgba(251,146,60,0.35)}
.options{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:.75rem;margin:0;padding:0;border:0}
.options .option{
  display:flex;
  align-items:center;
  gap:.7rem;
  background:var(--bg);
  border:1.5px solid var(--border);
  padding:.9rem 1.1rem;
  border-radius:12px;
  cursor:pointer;
  color:var(--text);
  appearance:none;
  font-family:inherit;
  font-size:inherit;
  transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.options .option:hover{transform:translateY(-2px);border-color:var(--accent);box-shadow:0 6px 16px -6px rgba(194,65,12,0.2)}
.options .option[aria-pressed="true"], .options .option.selected{
  border-color:var(--accent);
  background:var(--accent-soft);
  box-shadow:0 0 0 3px rgba(194,65,12,0.15);
}
.options .option:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.options .option .emoji{font-size:1.25rem}

/* Quiz error message */
.finder-error{
  display:none;
  padding:.6rem 1rem;
  margin-top:.5rem;
  border-radius:10px;
  background:rgba(194,65,12,0.08);
  border:1px solid rgba(194,65,12,0.25);
  color:var(--accent);
  font-size:.9rem;
  font-weight:600;
}
.finder-error.visible{display:block}
@keyframes shake{
  0%,100%{transform:translateX(0)}
  20%,60%{transform:translateX(-6px)}
  40%,80%{transform:translateX(6px)}
}
.shake{animation:shake .4s ease}

/* Results */
.results{display:grid;gap:1.2rem;margin-top:1.25rem}
#results:focus{outline:2px solid var(--accent);outline-offset:4px}
.results[hidden]{display:none !important}
.result{
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:14px;
  padding:1.15rem 1.25rem;
  transition:transform .18s ease, box-shadow .2s ease;
}
.result:hover{transform:translateY(-2px);box-shadow:0 8px 20px -8px rgba(194,65,12,0.2)}
.result.primary{
  border-color:var(--accent);
  border-left:4px solid var(--accent);
}

.result-header{display:flex;flex-wrap:wrap;align-items:center;gap:.6rem 1rem;margin-bottom:.65rem}
.result-label{font-family:'Syne',system-ui,sans-serif;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;padding:.3rem .7rem;border-radius:999px;background:var(--accent-soft);color:var(--accent)}
.result.primary .result-label{background:var(--accent);color:#fff}
.result-header h3{margin:0;font-size:1.4rem;color:var(--text);flex-basis:100%}
.match-meter{display:flex;align-items:center;gap:.65rem;margin-left:auto}
.match-meter .meter-track{position:relative;width:120px;height:.45rem;border-radius:999px;background:var(--border);overflow:hidden}
.match-meter .meter-fill{position:absolute;inset:0;border-radius:999px;background:linear-gradient(90deg,var(--highlight) 0%,var(--accent) 100%)}
.match-meter .meter-text{font-size:.75rem;font-weight:600;color:var(--muted)}
.result-highlights{list-style:none;margin:.9rem 0 0;padding:0;display:grid;gap:.45rem}
.result-highlights li{display:flex;align-items:flex-start;gap:.55rem;color:var(--text)}
.result-highlights .dot{width:.6rem;height:.6rem;border-radius:50%;background:var(--accent);margin-top:.35rem;flex-shrink:0}
.result-actions{margin-top:1.1rem}
.result p.small{color:var(--muted)}
.result-reason{font-size:.85rem;color:var(--muted);margin:.4rem 0 0;font-style:italic}
html[data-theme='dark'] .result-label{color:var(--accent);background:rgba(251,146,60,0.12)}
html[data-theme='dark'] .result.primary .result-label{color:#fff;background:var(--accent)}
html[data-theme='dark'] .match-meter .meter-track{background:var(--border)}

/* Staggered result entrance */
.result{opacity:0;transform:translateY(12px);transition:opacity .4s ease, transform .4s ease}
.results:not([hidden]) .result{opacity:1;transform:none}
.results:not([hidden]) .result:nth-child(2){transition-delay:.1s}
.results:not([hidden]) .result:nth-child(3){transition-delay:.2s}

/* Top picks list */
.list{margin:0;padding:0;list-style:none;display:grid;gap:1.1rem}
.list-row{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1.35rem;
  align-items:center;
  padding:1.45rem 1.5rem;
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  transition:transform .2s ease, border-color .2s ease;
}
.list-row:hover{transform:translateY(-2px);border-color:var(--accent)}
.rank-badge{display:inline-flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem;border-radius:50%;background:var(--highlight);color:#fff;font-family:'Syne',system-ui,sans-serif;font-weight:700;font-size:1.1rem}
.list-content{display:flex;flex-direction:column;gap:.6rem}
.list-heading{display:flex;flex-direction:column;gap:.45rem}
.list-row h3{margin:0;font-size:1.35rem;color:var(--text)}
.badge-row{display:flex;flex-wrap:wrap;gap:.4rem}
.badge{display:inline-flex;align-items:center;gap:.3rem;padding:.32rem .7rem;border-radius:999px;font-size:.75rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;border:1px solid var(--border);color:var(--brand);background:var(--bg-elev)}
.badge-accent{border-color:var(--accent);background:var(--accent-soft);color:var(--accent)}
html[data-theme='dark'] .badge{color:#f5f4ef;border-color:var(--border);background:rgba(251,146,60,0.08)}
html[data-theme='dark'] .badge-accent{color:var(--accent);border-color:rgba(251,146,60,0.35);background:rgba(251,146,60,0.12)}
.list-row p{margin:0;color:var(--muted)}
.actions{white-space:nowrap;display:flex;align-items:center;gap:.65rem}
.actions .btn{min-width:10rem;justify-content:center;text-align:center}

.notice a{color:var(--accent);text-decoration:none}
.small{font-size:.875rem;color:var(--muted)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.disclaimer{margin-top:1rem}

/* CGM banner: always white with black text for compliance */
.cgm-banner{background:#ffffff !important;color:#000000 !important;border-top:1px solid #e5e7eb;padding:1rem 0}
.cgm-banner .container{display:block}
.cgm-banner p{margin:.1rem 0}
.cgm-banner a{color:#000;text-decoration:none}
.cgm-banner #cgmMessage{font-family:'Syne',system-ui,sans-serif;font-weight:700;font-size:1.25rem}

/* Breadcrumb navigation */
.breadcrumb{margin:1.5rem 0 1rem;font-size:.875rem}
.breadcrumb ol{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.5rem;align-items:center}
.breadcrumb li{display:flex;align-items:center;gap:.5rem;color:var(--muted)}
.breadcrumb li::after{content:'\203A';color:var(--muted);font-size:1.1rem}
.breadcrumb li:last-child::after{display:none}
.breadcrumb a{color:var(--accent);text-decoration:none}
.breadcrumb a:hover{text-decoration:underline}
.breadcrumb li[aria-current="page"]{color:var(--text);font-weight:600}

/* Review article layout */
.review-article{max-width:980px;margin:0 auto}
.review-header{text-align:left}
.review-meta{display:flex;flex-wrap:wrap;align-items:center;gap:.6rem;margin-bottom:1rem}
.review-meta time{color:var(--muted);font-size:.875rem;margin-left:auto}
.review-header h1{font-size:clamp(2rem,4vw,2.8rem);margin:.5rem 0 .75rem;line-height:1.15}
.quick-verdict{display:grid;grid-template-columns:auto 1fr;gap:2rem;margin:1.75rem 0;padding:1.5rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.verdict-rating{display:flex;flex-direction:column;align-items:center;gap:.5rem}
.rating-score{display:flex;align-items:baseline;gap:.35rem}
.score-number{font-family:'Syne',system-ui,sans-serif;font-size:3.5rem;font-weight:700;color:var(--accent);line-height:1}
.score-label{font-size:1.25rem;color:var(--muted)}
.rating-stars{font-size:1.5rem;color:var(--highlight);letter-spacing:.15rem}
.rating-count{font-size:.8rem;color:var(--muted);text-align:center;margin-top:.25rem}
.verdict-summary h2{margin-top:0;font-size:1.3rem}
.review-actions{margin-top:1.5rem}

/* Pros and cons */
.pros-cons{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.pros h3,.cons h3{margin-top:0;font-size:1.15rem;margin-bottom:.75rem}
.pros ul,.cons ul{list-style:none;padding:0;margin:0;display:grid;gap:.55rem}
.pros ul li::before{content:'\2713';color:#10b981;font-weight:700;margin-right:.6rem}
.cons ul li::before{content:'\2717';color:var(--highlight);font-weight:700;margin-right:.6rem}

/* Review sections */
.review-section{margin-top:1.5rem}
.review-section h2{font-size:1.75rem;margin-bottom:.85rem;color:var(--text);border-bottom:2px solid var(--accent-soft);padding-bottom:.5rem}
html[data-theme='dark'] .review-section h2{border-bottom-color:rgba(251,146,60,0.2)}
.review-section h3{font-size:1.3rem;margin:1.5rem 0 .75rem;color:var(--text)}
.review-section ul,.review-section ol{line-height:1.7;color:var(--text)}
.review-section ul li,.review-section ol li{margin-bottom:.45rem}
.review-section p{line-height:1.7;margin:.75rem 0;color:var(--text)}

/* Verdict score breakdown */
.verdict-score{display:grid;gap:1.5rem}
.score-breakdown{display:grid;gap:.85rem}
.score-item{display:grid;grid-template-columns:140px 1fr auto;gap:.75rem;align-items:center}
.score-category{font-size:.9rem;font-weight:600;color:var(--text)}
.score-bar{height:.65rem;background:var(--border);border-radius:999px;overflow:hidden}
.score-fill{height:100%;background:linear-gradient(90deg,var(--highlight) 0%,var(--accent) 100%);border-radius:999px;transition:width .8s ease}
.score-num{font-family:'Syne',system-ui,sans-serif;font-size:.9rem;font-weight:600;color:var(--muted);min-width:3rem;text-align:right}
.overall-score{display:flex;justify-content:space-between;align-items:center;padding:1.25rem;background:var(--accent-soft);border-radius:14px;border:1px solid rgba(194,65,12,0.2)}
html[data-theme='dark'] .overall-score{background:rgba(251,146,60,0.08);border-color:rgba(251,146,60,0.25)}
.overall-label{font-size:1.1rem;font-weight:600;color:var(--text)}
.overall-number{font-family:'Syne',system-ui,sans-serif;font-size:2.2rem;font-weight:700;color:var(--accent)}

/* Related reviews */
.related-reviews{margin-top:2rem}
.related-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));gap:1rem;margin-top:1rem}
.related-card{display:block;padding:1.25rem;background:var(--bg);border:1.5px solid var(--border);border-radius:14px;text-decoration:none;transition:transform .2s ease, border-color .2s ease}
.related-card:hover{transform:translateY(-3px);border-color:var(--accent)}
.related-card h3{margin:0 0 .5rem;font-size:1.1rem;color:var(--text)}
.related-card p{margin:0;font-size:.9rem;color:var(--muted)}

/* Responsive adjustments for reviews */
@media (max-width: 820px){
  .quick-verdict{grid-template-columns:1fr;text-align:center}
  .verdict-rating{flex-direction:row;justify-content:center;flex-wrap:wrap}
  .pros-cons{grid-template-columns:1fr}
  .score-item{grid-template-columns:120px 1fr auto}
}

/* Reviews grid on homepage */
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem;margin-top:1.25rem}
.review-link-card{display:flex;flex-direction:column;gap:.65rem;padding:1.35rem;background:var(--bg);border:1.5px solid var(--border);border-radius:14px;text-decoration:none;transition:transform .2s ease, border-color .2s ease}
.review-link-card:hover{transform:translateY(-3px);border-color:var(--accent)}
.review-link-header{display:flex;align-items:center;justify-content:space-between;gap:.75rem;flex-wrap:wrap}
.review-link-header h3{margin:0;font-size:1.2rem;color:var(--text)}
.review-link-card p{margin:0;font-size:.9rem;color:var(--muted);line-height:1.5}
.review-rating{font-size:.85rem;color:var(--highlight);font-weight:600;letter-spacing:.02em}
html[data-theme='dark'] .review-link-card{background:var(--bg)}

/* FAQ section */
.faq-list{display:grid;gap:.75rem;margin-top:1.25rem}
.faq-item{background:var(--bg);border:1.5px solid var(--border);border-radius:12px;padding:0;transition:border-color .25s ease}
.faq-item[open]{border-color:var(--accent)}
.faq-item summary{cursor:pointer;list-style:none;display:flex;align-items:center;gap:.75rem;user-select:none;padding:1rem 1.2rem}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::before{content:'';width:0;height:0;border-left:6px solid var(--accent);border-top:5px solid transparent;border-bottom:5px solid transparent;transition:transform .25s ease;flex-shrink:0}
.faq-item[open] summary::before{transform:rotate(90deg)}
.faq-item summary h3{margin:0;font-size:1.05rem;font-weight:600;color:var(--text)}
.faq-item summary:hover h3{color:var(--accent)}
.faq-answer{padding:0 1.2rem 1rem 2.4rem;color:var(--muted);line-height:1.6}
.faq-answer p{margin:.5rem 0}
html[data-theme='dark'] .faq-item{background:var(--bg)}

/* Footer tweaks */
.site-footer .footer-nav{display:flex;flex-wrap:wrap;gap:.75rem 1.25rem}
.site-footer .footer-nav a{font-size:.875rem}
.site-footer .footer-nav a:hover{color:var(--accent)}

/* Scroll-reveal animation */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
.reveal.visible{opacity:1;transform:none}
.reveal:nth-child(2){transition-delay:.08s}
.reveal:nth-child(3){transition-delay:.16s}
.reveal:nth-child(4){transition-delay:.24s}
.reveal:nth-child(5){transition-delay:.32s}

/* Reduced motion: disable all transitions and animations */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
  .reveal{opacity:1;transform:none}
}

/* Mobile header */
@media (max-width: 720px){
  .site-header .container{flex-wrap:wrap;align-items:flex-start;row-gap:.75rem}
  .nav{order:3;width:100%;display:flex;flex-wrap:wrap;gap:.75rem;margin-left:0}
  .nav a{margin:0;padding:.35rem .75rem;border-radius:8px;background:var(--bg-elev)}
  .theme-toggle{order:2;margin-left:0}
}

/* Mobile hero & layout */
@media (max-width: 820px){
  .hero{text-align:center}
  .hero-content{align-items:center}
  .hero-content .eyebrow{align-self:center}
  .hero-actions{justify-content:center}
  .list-row{grid-template-columns:1fr;text-align:center}
  .list-content{align-items:center}
  .badge-row{justify-content:center}
  .actions{justify-content:center}
  .rank-badge{margin:0 auto}
  .result-header h3{text-align:center}
  .match-meter{margin-left:0;justify-content:center;width:100%}
  .match-meter .meter-track{width:160px}
}
