/* ===========================================================
   AudioTune Hub — Design System
   =========================================================== */

:root{
  --navy: #1f2d3d;
  --navy-dark: #16222f;
  --navy-light: #2c3e52;
  --blue: #1d4ed8;
  --blue-light: #3b6fe4;
  --accent: #4f8cff;
  --gray: #6b7280;
  --gray-light: #9aa3ad;
  --bg: #f7f9fa;
  --bg-tint: #eef3fb;
  --white: #ffffff;
  --border: #e3e8eb;

  --home-audio: var(--blue);
  --home-audio-tint: var(--bg-tint);
  --car-audio: #c2410c;
  --car-audio-tint: #fbe7da;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(22,34,47,0.06), 0 1px 1px rgba(22,34,47,0.04);
  --shadow-md: 0 8px 24px rgba(22,34,47,0.08);
  --shadow-lg: 0 20px 48px rgba(22,34,47,0.14);

  --max-width: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p{ margin: 0; }

.wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap--wide{ max-width: 1320px; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before{
  content: "";
  width: 16px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section{ padding: 96px 0; }
.section--tint{ background: var(--bg-tint); }
.section--navy{ background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: 36px; margin-top: 12px; color: var(--navy); }
.section--navy .section-head h2{ color: var(--white); }
.section-head p{ margin-top: 14px; color: var(--gray); font-size: 17px; }
.section--navy .section-head p{ color: #b9c4cf; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--blue); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: #163da3; box-shadow: var(--shadow-md); }
.btn-accent{ background: var(--accent); color: var(--navy-dark); }
.btn-accent:hover{ background: #3f7de8; }
.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover{ background: var(--white); border-color: var(--gray-light); }
.btn-ghost-light{ background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover{ background: rgba(255,255,255,0.16); }
.btn-lg{ padding: 16px 30px; font-size: 16px; }
.btn-block{ width: 100%; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,249,250,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap{
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand{ display:flex; align-items:center; }
.brand img{ height: 64px; width: auto; }
.brand picture, .brand img.logo-full{ height: 64px; }

.main-nav{ display: flex; align-items: center; gap: 36px; }
.main-nav a{
  font-size: 15px; font-weight: 600; color: var(--navy);
  position: relative; padding: 6px 0;
}
.main-nav a:hover{ color: var(--blue); }
.header-cta{ display: flex; align-items: center; gap: 14px; }
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .main-nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .header-cta .btn-ghost{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 78%);
  color: var(--white);
  padding: 96px 0 0;
}
.hero .wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(79,140,255,0.12);
  border: 1px solid rgba(79,140,255,0.35);
  color: var(--accent);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1{
  font-size: 50px;
  font-weight: 800;
}
.hero h1 span{ color: var(--accent); }
.hero p.lead{
  margin-top: 20px;
  font-size: 18px;
  color: #c4ccd4;
  max-width: 520px;
}
.hero-actions{ display:flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta{
  margin-top: 36px;
  display:flex; gap: 28px; flex-wrap: wrap;
}
.hero-meta div{ font-size: 13px; color: #98a4af; }
.hero-meta strong{ display:block; font-size: 22px; color: var(--white); font-weight: 800; }

/* Hero visual: upload -> curve -> findings card */
.hero-visual{ position: relative; }
.hero-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(6px);
}
.hero-card-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 14px; }
.hero-card-head span{ font-size: 13px; color:#9fb0bb; font-weight:600; }
.dot-row{ display:flex; gap:6px; }
.dot-row i{ width:8px; height:8px; border-radius:50%; background:#3b4f60; display:block; }

.curve-box{
  background: rgba(0,0,0,0.18);
  border-radius: var(--radius-md);
  padding: 18px 16px 8px;
}
.curve-box svg{ width:100%; height:auto; display:block; }

.findings{ margin-top: 16px; display:flex; flex-direction:column; gap:10px; }
.finding{
  display:flex; align-items:flex-start; gap:10px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-size: 13.5px;
  color: #dbe3e8;
}
.finding b{ color: var(--white); }
.tag{
  flex-shrink:0;
  font-size: 11px; font-weight:700;
  padding: 3px 9px; border-radius: 999px;
  text-transform: uppercase; letter-spacing:.03em;
}
.tag-good{ background: rgba(79,140,255,0.18); color: var(--accent); }
.tag-watch{ background: rgba(250,204,21,0.18); color: #facc15; }
.tag-fix{ background: rgba(248,113,113,0.18); color: #f87171; }

.hero-wave{
  height: 64px;
  background: var(--bg);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C240,90 480,0 720,30 C960,60 1200,10 1440,40 L1440,80 L0,80 Z"/></svg>') bottom / 100% 100% no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C240,90 480,0 720,30 C960,60 1200,10 1440,40 L1440,80 L0,80 Z"/></svg>') bottom / 100% 100% no-repeat;
}

/* ---------- Logo strip ---------- */
.format-strip{ padding: 28px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.format-strip .wrap{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; justify-content:center; }
.format-strip span.label{ font-size:13px; color: var(--gray); font-weight:600; margin-right: 6px; }
.format-chip{
  font-size: 13px; font-weight:700; color: var(--navy);
  background: var(--bg-tint); border:1px solid var(--border);
  padding: 6px 12px; border-radius: 999px;
}

/* ---------- How it works ---------- */
.steps{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step{ background: var(--white); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.step-num{
  width:40px; height:40px; border-radius:50%;
  background: var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:15px; margin-bottom:18px;
}
.step h3{ font-size:19px; margin-bottom:8px; }
.step p{ color: var(--gray); font-size:15px; }

/* ---------- Feature grid ---------- */
.features{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card{
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.feature-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon{
  width:46px; height:46px; border-radius: 12px;
  background: var(--bg-tint); color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
}
.feature-card h3{ font-size: 18px; margin-bottom: 8px; }
.feature-card p{ color: var(--gray); font-size: 14.5px; }

/* ---------- News ---------- */
.news-pills{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 32px; }
.pill{
  font-size: 13.5px; font-weight:700; color: var(--navy);
  background: var(--white); border:1px solid var(--border);
  padding: 8px 16px; border-radius: 999px;
}
.pill.is-active{ background: var(--navy); color: var(--white); border-color: var(--navy); }

.news-cols{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.news-col-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.news-col-head h3{ font-size:18px; }
.news-col-head a{ font-size:13.5px; font-weight:700; color: var(--blue); }
.news-card{
  display:flex; gap:14px;
  background: var(--white); border:1px solid var(--border);
  border-radius: var(--radius-md); padding:16px; margin-bottom:14px;
}
.news-thumb{
  flex-shrink:0; width:64px; height:64px; border-radius: 10px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  background: var(--home-audio-tint); color: var(--home-audio);
}
.news-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.news-thumb svg{ width:30px; height:30px; }
.news-thumb--home{ background: var(--home-audio-tint); color: var(--home-audio); }
.news-thumb--car{ background: var(--car-audio-tint); color: var(--car-audio); }
.news-card h4{ font-size:15px; margin-bottom:5px; }
.news-card .meta{ font-size:12.5px; color: var(--gray); }
.news-card .kicker{ font-size:11.5px; font-weight:700; color: var(--blue); text-transform:uppercase; letter-spacing:.04em; margin-bottom:4px; display:block; }

/* ---------- Glossary ---------- */
.glossary-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.glossary-card{
  background: var(--white); border:1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.glossary-term{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.glossary-term .sym{
  font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight:700;
  font-size: 20px; color: var(--blue);
  width:34px; height:34px; border-radius:9px;
  background: var(--bg-tint); display:flex; align-items:center; justify-content:center;
}
.glossary-card h4{ font-size:16px; }
.glossary-card p{ font-size: 13.5px; color: var(--gray); }
.glossary-card a{ font-size:13px; font-weight:700; color: var(--blue); display:inline-block; margin-top:10px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(135deg, var(--blue) 0%, #163da3 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display:flex; align-items:center; justify-content:space-between; gap: 30px;
  color: var(--white);
  flex-wrap: wrap;
}
.cta-banner h2{ font-size: 28px; max-width: 480px; }
.cta-banner p{ color: rgba(255,255,255,0.85); margin-top:8px; font-size:15px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-dark); color: #aab6c0; padding: 64px 0 28px; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p{ font-size: 14px; margin-top: 14px; color: #8b97a2; max-width: 260px; }
.footer-col h5{ color: var(--white); font-size: 13.5px; margin-bottom: 16px; letter-spacing:.03em; text-transform:uppercase; }
.footer-col li{ margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 24px; font-size: 13px; color: #768290; flex-wrap: wrap; gap: 12px;
}
.footer-legal a{ margin-left: 18px; }
.footer-legal a:hover{ color: var(--white); }

/* ---------- Nav active state ---------- */
.main-nav a.is-active{ color: var(--navy); font-weight: 700; }
.main-nav a.is-active::after{ content:""; display:block; height:2px; background: var(--blue); margin-top: 4px; border-radius: 2px; }

/* ---------- Filter pills ---------- */
.filter-pills{ display:flex; gap:10px; flex-wrap:wrap; }
.filter-pill{
  font-size: 13.5px; font-weight:700; padding: 8px 16px; border-radius:999px;
  border: 1px solid var(--border); background: var(--white); color: var(--gray); cursor:pointer;
  transition: all .12s ease;
}
.filter-pill:hover{ border-color: var(--blue); color: var(--navy); }
.filter-pill.is-active{ background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ---------- Secondary page header ---------- */
.page-header{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 52px 0 44px;
}
.page-header .crumb{ font-size: 13px; color: #9fb0bb; margin-bottom: 12px; }
.page-header .crumb a{ color: #c4ccd4; }
.page-header .crumb a:hover{ color: var(--white); }
.page-header h1{ font-size: 34px; font-weight: 800; }
.page-header p.lead{ margin-top: 12px; color: #c4ccd4; font-size: 16px; max-width: 640px; }
.page-header .term-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(79,140,255,0.14); border: 1px solid rgba(79,140,255,0.35);
  color: var(--accent); font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 700;
  font-size: 22px; margin-bottom: 16px;
}

/* ---------- News listing grid ---------- */
.news-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.news-grid .news-card{ margin-bottom: 0; }
.news-toolbar{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-bottom: 28px; }

/* ---------- Glossary hub ---------- */
.glossary-search{
  width:100%; max-width: 420px; padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--border); font-size: 14.5px; font-family: inherit;
  background: var(--white); color: var(--navy);
}
.glossary-search:focus{ outline: 2px solid var(--blue); outline-offset: 1px; }
.glossary-cat{ margin: 36px 0 18px; }
.glossary-cat:first-of-type{ margin-top: 0; }
.glossary-cat h3{ font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); font-weight: 700; }
.term-card-empty{ color: var(--gray); font-size: 14.5px; padding: 24px 0; display:none; }

/* ---------- Term detail page ---------- */
.definition-box{
  background: var(--bg-tint); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-bottom: 32px;
}
.definition-box .label{ font-size: 12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color: var(--blue); margin-bottom: 8px; display:block; }
.definition-box p{ font-size: 17px; color: var(--navy); }
.content-block{ max-width: 720px; margin-bottom: 32px; }
.content-block h2{ font-size: 21px; margin-bottom: 12px; }
.content-block p{ font-size: 15.5px; color: var(--navy); margin-bottom: 12px; }
.content-block p:last-child{ margin-bottom: 0; }
.value-table{ width:100%; max-width: 720px; border-collapse: collapse; margin-bottom: 32px; border:1px solid var(--border); border-radius: var(--radius-md); overflow:hidden; }
.value-table th, .value-table td{ text-align:left; padding: 12px 16px; font-size: 14.5px; border-bottom:1px solid var(--border); }
.value-table th{ background: var(--bg-tint); color: var(--navy); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.03em; }
.value-table tr:last-child td{ border-bottom:none; }
.related-terms{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 8px; }
.related-terms a{
  font-size: 13.5px; font-weight:700; color: var(--blue); background: var(--bg-tint);
  border:1px solid var(--border); padding: 8px 16px; border-radius: 999px;
}
.related-terms a:hover{ background: var(--white); border-color: var(--blue); }

/* ---------- Guides ---------- */
.guide-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.guide-card{ background: var(--white); border:1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; }
.guide-card .guide-thumb{ height: 120px; background: var(--bg-tint); color: var(--blue); display:flex; align-items:center; justify-content:center; font-size: 34px; }
.guide-card .guide-body{ padding: 20px; }
.guide-card h4{ font-size:16px; margin-bottom:8px; }
.guide-card p{ font-size:13.5px; color: var(--gray); margin-bottom: 12px; }
.guide-card .meta{ font-size:12px; color: var(--gray-light); }

/* ---------- Article detail ---------- */
.article-body{ max-width: 700px; margin: 0 auto; }
.article-body .article-meta{ font-size:13px; color: var(--gray); margin-bottom: 18px; }
.article-body h2{ font-size: 22px; margin: 28px 0 12px; }
.article-body p{ font-size: 16px; color: var(--navy); margin-bottom: 16px; }
.article-body blockquote{
  border-left: 3px solid var(--blue); margin: 24px 0; padding: 4px 0 4px 18px;
  font-style: italic; color: var(--navy-light); font-size: 16.5px;
}
.article-hero-img{ width:100%; height: 280px; border-radius: var(--radius-lg); display:block; object-fit:cover; margin-bottom: 32px; color: rgba(255,255,255,0.95); position:relative; overflow:hidden; }
.article-hero-img svg{ width:84px; height:84px; }
.article-hero-img--home{ background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.article-hero-img--car{ background: linear-gradient(135deg, var(--navy) 0%, var(--car-audio) 100%); }
.hero-cat-badge{
  position:absolute; bottom:18px; left:18px;
  font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  color: var(--white); background: rgba(0,0,0,0.32);
  padding:7px 16px; border-radius:999px;
}
.related-articles{ margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }

/* ---------- Legal & static content pages ---------- */
.content-block ul{ list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.content-block ul li{ font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.content-block ol{ padding-left: 22px; margin-bottom: 14px; }
.content-block ol li{ font-size: 15.5px; color: var(--navy); margin-bottom: 8px; }
.content-block h3{ font-size: 17px; margin: 20px 0 8px; }
.content-block strong{ color: var(--navy); }
.content-block a{ color: var(--blue); text-decoration: underline; }
.content-block a:hover{ color: var(--blue-light); }
.legal-meta{ font-size: 13.5px; color: var(--gray); margin-bottom: 28px; }
.contact-card{
  display:flex; align-items:center; gap:16px; background: var(--bg-tint);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; margin-bottom: 28px; max-width: 560px;
}
.contact-card .icon{
  width:48px; height:48px; border-radius:12px; background: var(--white); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0;
}
.contact-card a.email{ font-size: 17px; font-weight:700; color: var(--blue); }
.contact-card p{ font-size: 13.5px; color: var(--gray); margin: 2px 0 0; }

/* ---------- Upload / Tool ---------- */
.dropzone{
  border: 2px dashed var(--border); border-radius: var(--radius-lg); background: var(--white);
  padding: 56px 32px; text-align:center; transition: border-color .15s ease, background .15s ease;
}
.dropzone:hover{ border-color: var(--blue); background: var(--bg-tint); }
.dropzone .icon{ width:60px; height:60px; border-radius:50%; background: var(--bg-tint); color: var(--blue); display:flex; align-items:center; justify-content:center; margin: 0 auto 18px; font-size: 26px; }
.dropzone h3{ font-size:19px; margin-bottom:8px; }
.dropzone p{ color: var(--gray); font-size: 14.5px; }
.format-list{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.format-item{ background: var(--white); border:1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; display:flex; gap:14px; align-items:flex-start; }
.format-item .fmt-icon{ flex-shrink:0; width:38px; height:38px; border-radius:10px; background: var(--bg-tint); color: var(--blue); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:12px; }
.format-item h4{ font-size:14.5px; margin-bottom:4px; }
.format-item p{ font-size:13px; color: var(--gray); }

/* ---------- Before / after compare ---------- */
.compare-panel{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-col{ background: var(--navy-dark); border-radius: var(--radius-lg); padding: 20px; color: var(--white); }
.compare-col .compare-label{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:#9fb0bb; margin-bottom:12px; }
.compare-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top: 28px; }
.compare-stat{ background: var(--white); border:1px solid var(--border); border-radius: var(--radius-md); padding:18px; text-align:center; }
.compare-stat .num{ font-size:26px; font-weight:800; color: var(--blue); }
.compare-stat .lbl{ font-size:12.5px; color: var(--gray); margin-top:4px; }

/* ---------- Report page ---------- */
.report-score{ display:flex; align-items:center; gap:24px; background: var(--bg-tint); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 32px; flex-wrap:wrap; }
.report-score .score-circle{
  width:88px; height:88px; border-radius:50%; background: var(--blue); color: var(--white);
  display:flex; align-items:center; justify-content:center; font-size: 26px; font-weight:800; flex-shrink:0;
}
.report-section{ margin-bottom: 36px; }
.report-section h2{ font-size: 20px; margin-bottom: 14px; }
.findings-list{ display:flex; flex-direction:column; gap:12px; }
.findings-list .finding-row{
  display:flex; gap:14px; align-items:flex-start; background: var(--white); border:1px solid var(--border);
  border-radius: var(--radius-md); padding:16px 18px;
}
.findings-list .finding-row b{ display:block; margin-bottom:4px; color:var(--navy); }
.findings-list .finding-row p{ font-size:14px; color:var(--gray); margin:0; }

@media (max-width: 960px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 38px; }
  .steps, .features{ grid-template-columns: 1fr 1fr; }
  .glossary-grid{ grid-template-columns: 1fr 1fr; }
  .news-cols{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .compare-panel, .compare-stats, .format-list, .guide-grid, .news-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .steps, .features, .glossary-grid, .footer-grid{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 32px; }
  .cta-banner{ padding: 36px; }
  .section{ padding: 64px 0; }
  .report-score{ flex-direction:column; align-items:flex-start; }
}
