@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* HONEYBADGER SOFTWARE INC — VIVID rebuild
   Warm honey-amber palette, display type, scroll motion, imagery.
   Mobile-first, no build step.
*/

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bg-deep:    #faf6ee;   /* warm cream — main background (LIGHT theme) */
  --bg-mid:     #f1e8d8;   /* warm tint — alternating bands */
  --bg-card:    #ffffff;
  --bg-card-hi: #fbf6ee;
  --bg-light:   #ffffff;
  --bg-dark:    #14110c;   /* warm near-black — footer + top strip */
  --accent:     #ed7a06;   /* vivid amber-orange — CTAs, kickers */
  --accent-hi:  #b35e09;   /* deep amber — readable accent/link text on light */
  --gold:       #b9842b;
  --green:      #2e9e63;
  --red:        #d8472f;
  --text:       #1d1813;   /* near-black warm */
  --text-mid:   #5e5446;
  --text-dim:   #8d8170;
  --border:     rgba(20, 16, 10, 0.12);
  --border-hi:  rgba(237, 122, 6, 0.45);
}

a { color: var(--accent-hi); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--text);
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--accent-hi);
  font-family: "JetBrains Mono", "Consolas", monospace;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.site-nav a:hover { color: var(--accent-hi); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 600px at 20% -10%, rgba(93, 168, 199, 0.10), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 100% 50%, rgba(201, 169, 97, 0.05), transparent 60%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://avatars.githubusercontent.com/u/108652491?v=4');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  filter: blur(40px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent-hi);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--text);
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero artwork on right */
.hero-art {
  position: relative;
  z-index: 2;
}
.hero-art-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background-image: url('https://avatars.githubusercontent.com/u/108652491?v=4');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-hi);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 6px rgba(5, 8, 12, 0.5);
  position: relative;
}
.hero-art-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123, 196, 224, 0.4), transparent 50%, rgba(201, 169, 97, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s, background 0.15s, border-color 0.15s, color 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #05080C;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hi);
  border-color: var(--accent-hi);
  color: #05080C;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn-ghost:hover {
  background: var(--bg-card-hi);
  border-color: var(--accent);
  color: var(--accent-hi);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.kicker {
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.lede {
  font-size: 18px;
  color: var(--text-mid);
  margin: 0;
  max-width: 700px;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}
.product-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--accent-hi);
}
.product-card p {
  color: var(--text-mid);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   STUDIO INTRO GRID
   ============================================================ */
.section-studio { background: var(--bg-mid); }
.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.studio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}
.studio-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.studio-icon { font-size: 30px; margin-bottom: 12px; }
.studio-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--accent-hi);
  letter-spacing: 0.3px;
}
.studio-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   PROOF GALLERY
   ============================================================ */
.section-proof {
  background:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(123, 196, 224, 0.06), transparent 60%),
    var(--bg-deep);
}
.center-narrow { margin-left: auto; margin-right: auto; }

.shot {
  margin: 0 0 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.shot:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
}
.shot figcaption {
  padding: 16px 20px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.5;
}
.shot figcaption strong {
  color: var(--accent-hi);
  font-weight: 600;
}
.shot-hero {
  max-width: 1100px;
  margin: 40px auto 36px;
  border-color: var(--border-hi);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 0;
}
.proof-fineprint {
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.proof-fineprint code {
  background: var(--bg-card);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--accent-hi);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.section-comparison { background: var(--bg-mid); }
.comparison-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row > div {
  padding: 18px 22px;
  font-size: 14.5px;
}
.comparison-row > div:first-child {
  color: var(--text-dim);
  background: rgba(5, 8, 12, 0.6);
  border-right: 1px solid var(--border);
}
.cell-win {
  color: var(--text);
  font-weight: 500;
  border-left: 3px solid var(--accent);
}
.comparison-head { font-weight: 700; letter-spacing: 1px; }
.comparison-head > div:first-child { color: var(--text-dim); }
.comparison-head > div:last-child { color: var(--accent-hi); }

/* ============================================================
   WHY HONEYBADGER
   ============================================================ */
.section-why { background: var(--bg-deep); }
.why-quote {
  font-size: clamp(22px, 3vw, 30px);
  text-align: center;
  font-weight: 500;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 60px;
  font-style: italic;
  line-height: 1.45;
  padding: 0 24px;
  position: relative;
}
.why-quote::before, .why-quote::after {
  content: '"';
  color: var(--accent);
  font-size: 60px;
  position: absolute;
  font-family: Georgia, serif;
  opacity: 0.4;
  line-height: 1;
}
.why-quote::before { top: -10px; left: -10px; }
.why-quote::after { bottom: -40px; right: -10px; }

.principle-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.principle-list li {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  color: var(--text-mid);
}
.principle-list strong { color: var(--text); }

/* ============================================================
   ROADMAP
   ============================================================ */
.section-roadmap { background: var(--bg-mid); }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.roadmap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.roadmap-status {
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
}
.status-beta     { background: rgba(123, 196, 224, 0.15); color: var(--accent-hi); }
.status-dev      { background: rgba(201, 169, 97, 0.15);  color: var(--gold); }
.status-internal { background: rgba(111, 207, 151, 0.15); color: var(--green); }
.roadmap-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--text); }
.roadmap-card p  { margin: 0; color: var(--text-mid); font-size: 14px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  background: var(--bg-deep);
  padding: 100px 0;
}
.cta-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-hi));
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 56px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.cta-card h2 {
  margin: 0 0 14px;
  color: var(--accent-hi);
}
.cta-card p {
  font-size: 17px;
  color: var(--text-mid);
  margin: 0 0 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-fineprint {
  font-size: 13px !important;
  color: var(--text-dim) !important;
  margin: 28px 0 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  color: var(--text-dim);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.brand-name-sm {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text);
}
.brand-tag-sm {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}
.footer-links a {
  color: var(--text-mid);
  font-size: 14px;
  margin: 0;
}
.footer-sep { color: var(--text-dim); margin: 0 6px; }
.footer-fineprint {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .hero { padding: 60px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art-frame { max-width: 360px; margin: 0 auto; }
  .section { padding: 60px 0; }
  .site-nav { display: none; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .footer-row { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .cta-card { padding: 40px 24px; }
  .btn { width: 100%; }
  .hero-cta, .cta-buttons { flex-direction: column; }
}

/* ============================================================
   ====  MULTI-PAGE "THE WORKS" SYSTEM  =======================
   Shared dropdown nav, inner-page heroes, product detail,
   community/forum, support docs, downloads, news, about.
   ============================================================ */

/* ---- Top utility strip ---- */
.topbar {
  background: #03050a;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 24px; gap: 16px;
}
.topbar .topbar-tag { letter-spacing: 0.5px; }
.topbar .topbar-links { display: flex; gap: 18px; align-items: center; }
.topbar .topbar-links a { color: var(--text-mid); font-weight: 500; }
.topbar .topbar-links a:hover { color: var(--gold); }
@media (max-width: 720px){ .topbar .topbar-tag { display: none; } .topbar .container{ justify-content:center; } }

/* ---- Header / nav upgrades ---- */
.header-actions { display: flex; align-items: center; gap: 18px; }
.site-nav { align-items: center; }
.site-nav > a, .nav-dropdown-trigger {
  position: relative; padding: 6px 0;
}
.site-nav > a.active, .nav-dropdown.active .nav-dropdown-trigger { color: var(--accent-hi); }
.site-nav > a::after, .nav-dropdown-trigger::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.2s;
}
.site-nav > a:hover::after, .site-nav > a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 5px; color: var(--text-mid); font-size: 14px; font-weight: 500; letter-spacing: 0.5px; }
.nav-dropdown-trigger:hover { color: var(--accent-hi); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 300px; background: var(--bg-card); border: 1px solid var(--border-hi);
  border-radius: 14px; padding: 10px; display: grid; gap: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
  transition: opacity 0.18s, transform 0.18s; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu::before { content:""; position:absolute; top:-14px; left:0; right:0; height:14px; }
.nav-dropdown-menu a {
  display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 9px;
  color: var(--text); transition: background 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--bg-card-hi); color: var(--text); }
.nav-dropdown-menu a strong { font-size: 14.5px; color: var(--accent-hi); font-weight: 700; }
.nav-dropdown-menu a span { font-size: 12px; color: var(--text-dim); }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: var(--bg-mid); border-left: 1px solid var(--border-hi);
    padding: 90px 26px 26px; transform: translateX(100%); transition: transform 0.25s;
    overflow-y: auto; z-index: 150;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a, .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    min-width: 0; background: transparent; border: 0; padding: 4px 0 8px 14px; display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .header-actions .btn { display: none; }
}

/* ---- Inner page hero / banner ---- */
.page-hero {
  position: relative; overflow: hidden;
  padding: 70px 0 54px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 1000px 500px at 15% -20%, rgba(93,168,199,0.12), transparent 60%),
    radial-gradient(ellipse 900px 600px at 100% 0%, rgba(201,169,97,0.07), transparent 60%),
    var(--bg-mid);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--text-dim); letter-spacing: 1px; margin-bottom: 16px; }
.breadcrumb a { color: var(--text-mid); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -1px; margin: 0 0 16px; color: var(--text); line-height: 1.08; }
.page-hero .lede { font-size: 18px; max-width: 720px; }
.eyebrow-chip {
  display: inline-block; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 3px;
  color: var(--accent-hi); border: 1px solid var(--border-hi); border-radius: 999px; padding: 6px 14px; margin-bottom: 20px;
}
.eyebrow-chip.gold { color: var(--gold); border-color: rgba(201,169,97,0.35); }
.eyebrow-chip.green { color: var(--green); border-color: rgba(111,207,151,0.35); }

/* ---- Product showcase strips (alternating feature rows) ---- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row.flip .feature-media { order: 2; }
.feature-row h3 { font-size: 26px; color: var(--text); margin: 0 0 14px; letter-spacing: -0.3px; }
.feature-row p { color: var(--text-mid); font-size: 15.5px; margin: 0 0 16px; }
.feature-media {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border-hi);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55); background: var(--bg-card); min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.feature-media img { display: block; width: 100%; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { padding-left: 28px; position: relative; color: var(--text-mid); font-size: 14.5px; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
@media (max-width: 880px){ .feature-row { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; } .feature-row.flip .feature-media { order: 0; } }

/* ---- Pricing / tier cards ---- */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px;
  position: relative; transition: transform 0.2s, border-color 0.2s;
}
.tier-card:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.tier-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(201,169,97,0.3), 0 30px 70px rgba(0,0,0,0.5); }
.tier-card.featured::before {
  content: "MOST POPULAR"; position: absolute; top: -11px; left: 28px; background: var(--gold); color: #05080C;
  font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 1.5px; font-weight: 800; padding: 4px 10px; border-radius: 5px;
}
.tier-name { font-size: 14px; letter-spacing: 1px; color: var(--accent-hi); font-weight: 700; text-transform: uppercase; }
.tier-price { font-size: 40px; font-weight: 800; color: var(--text); margin: 10px 0 4px; }
.tier-price small { font-size: 15px; color: var(--text-dim); font-weight: 500; }
.tier-card ul { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 10px; }
.tier-card ul li { padding-left: 24px; position: relative; color: var(--text-mid); font-size: 14px; }
.tier-card ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* ---- Spec table ---- */
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 20px; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.spec-table th { background: rgba(5,8,12,0.6); color: var(--text-dim); font-weight: 600; width: 34%; letter-spacing: 0.5px; }
.spec-table td { color: var(--text); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* ---- Community / forum ---- */
.stat-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; margin: 0 0 44px; }
.stat-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 22px; text-align: center; }
.stat-box .stat-num { font-size: 30px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-box .stat-label { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; margin-top: 8px; text-transform: uppercase; }
.forum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.forum-cat {
  display: flex; gap: 18px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 24px; transition: border-color 0.2s, transform 0.2s;
}
.forum-cat:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.forum-cat .forum-icon { font-size: 28px; flex: 0 0 auto; }
.forum-cat h3 { margin: 0 0 6px; font-size: 17px; color: var(--accent-hi); }
.forum-cat p { margin: 0 0 8px; font-size: 14px; color: var(--text-mid); }
.forum-cat .forum-meta { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--text-dim); letter-spacing: 0.5px; }
.discord-card {
  background: linear-gradient(135deg, #1e2230, #11141c); border: 1px solid var(--border-hi); border-radius: 18px;
  padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; margin-bottom: 44px;
}
.discord-card h2 { color: var(--text); margin: 0 0 12px; }
.discord-embed {
  background: rgba(0,0,0,0.35); border: 1px solid var(--border); border-radius: 14px; min-height: 320px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.discord-embed iframe { border: 0; width: 100%; height: 360px; }
.embed-placeholder { text-align: center; color: var(--text-dim); padding: 30px; font-size: 14px; }
@media (max-width: 880px){ .forum-grid { grid-template-columns: 1fr; } .discord-card { grid-template-columns: 1fr; padding: 28px; } }

/* ---- Docs / support two-column ---- */
.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 44px; align-items: start; }
.docs-sidebar { position: sticky; top: 90px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.docs-sidebar .docs-group { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--text-dim); margin: 14px 0 8px; text-transform: uppercase; }
.docs-sidebar .docs-group:first-child { margin-top: 0; }
.docs-sidebar a { display: block; padding: 7px 10px; border-radius: 7px; color: var(--text-mid); font-size: 14px; }
.docs-sidebar a:hover { background: var(--bg-card-hi); color: var(--accent-hi); }
.docs-content h2 { scroll-margin-top: 90px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; background: var(--bg-card); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 22px; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-mid); font-size: 14.5px; }
@media (max-width: 880px){ .docs-layout { grid-template-columns: 1fr; } .docs-sidebar { position: static; } }

/* ---- Downloads ---- */
.dl-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; margin-bottom: 18px;
}
.dl-card .dl-os { font-size: 40px; }
.dl-card h3 { margin: 0 0 4px; font-size: 18px; color: var(--text); }
.dl-card p { margin: 0; color: var(--text-mid); font-size: 14px; }
.dl-card .dl-meta { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--text-dim); margin-top: 6px; }
@media (max-width: 620px){ .dl-card { grid-template-columns: 1fr; text-align: center; } }

/* ---- News / blog ---- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.2s, border-color 0.2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-3px); border-color: var(--border-hi); }
.post-card .post-tag { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 1.5px; color: var(--accent); }
.post-card .post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card h3 { margin: 10px 0 10px; font-size: 19px; color: var(--text); line-height: 1.25; }
.post-card p { margin: 0 0 16px; color: var(--text-mid); font-size: 14.5px; flex: 1; }
.post-card .post-date { font-size: 12px; color: var(--text-dim); }
.post-card .post-stripe { height: 6px; background: linear-gradient(90deg, var(--accent), var(--gold)); }

/* ---- Misc utilities ---- */
.section-alt { background: var(--bg-mid); }
.section-tight { padding: 56px 0; }
.center-block { text-align: center; max-width: 760px; margin: 0 auto; }
.btn-gold { background: var(--gold); color: #05080C; border-color: var(--gold); }
.btn-gold:hover { background: #d8bd7e; border-color: #d8bd7e; color: #05080C; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill {
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.5px; color: var(--text-mid);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px;
}
.split-cta {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card-hi)); border: 1px solid var(--border-hi);
  border-radius: 18px; padding: 44px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.split-cta h2 { margin: 0 0 8px; color: var(--accent-hi); }
.split-cta p { margin: 0; color: var(--text-mid); }

/* ---- Rich footer ---- */
.footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px;
  padding: 8px 0 36px;
}
.footer-col h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin: 0 0 16px; font-family: "JetBrains Mono", monospace; }
.footer-col a { display: block; color: var(--text-mid); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-blurb { color: var(--text-mid); font-size: 14px; max-width: 320px; margin: 14px 0 0; }
.footer-col .footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-col .footer-brand-row img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-hi); }
@media (max-width: 880px){ .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px){ .footer-cols { grid-template-columns: 1fr; } }

/* ---- Home product showcase cards (big) ---- */
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.showcase-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 30px; overflow: hidden; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.showcase-card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.showcase-card .sc-badge {
  align-self: flex-start; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 5px; margin-bottom: 16px; font-weight: 700;
}
.sc-badge.beta { background: rgba(123,196,224,0.15); color: var(--accent-hi); }
.sc-badge.kit  { background: rgba(201,169,97,0.15); color: var(--gold); }
.sc-badge.tool { background: rgba(111,207,151,0.15); color: var(--green); }
.sc-badge.soon { background: rgba(209,69,69,0.13); color: #e08; color: var(--red); }
.showcase-card .sc-icon { font-size: 38px; margin-bottom: 14px; }
.showcase-card h3 { font-size: 22px; color: var(--text); margin: 0 0 10px; }
.showcase-card p { color: var(--text-mid); font-size: 14.5px; margin: 0 0 18px; flex: 1; }
.showcase-card .sc-link { font-weight: 600; color: var(--accent-hi); font-size: 14px; }
.showcase-card .sc-link:hover { color: var(--gold); }

/* ============================================================
   ====  V3 VISUAL AMP — warm · vivid · in motion  ===========
   ============================================================ */

/* Display typeface on all headings (de-genericize the look) */
.hero-title, .page-hero h1, .section h2, .brand-name, .cta-card h2,
.split-cta h2, .showcase-card h3, .feature-row h3, .discord-card h2,
.tier-price, .why-quote, .post-card h3 { font-family: "Space Grotesk", "Inter", sans-serif; }

/* Hero — bigger, brighter, with a slow animated honey glow */
.hero {
  padding: 96px 0 112px;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(900px 520px at 12% -10%, rgba(255,158,27,0.17), transparent 62%),
    radial-gradient(820px 620px at 100% 6%, rgba(255,184,77,0.08), transparent 60%),
    radial-gradient(760px 520px at 62% 116%, rgba(232,176,75,0.09), transparent 60%);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  animation: heroGlow 20s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%; }
  100% { background-position: 28% 18%, 72% 12%, 42% 88%; }
}
.hero::before { opacity: 0.05; }
.hero-title { font-size: clamp(40px, 7vw, 80px); letter-spacing: -1.6px; }
.hero-title .hl {
  color: var(--accent);
  background: linear-gradient(100deg, var(--accent), var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-eyebrow { color: var(--accent-hi); border-color: rgba(255,158,27,0.4); background: rgba(255,158,27,0.07); }

/* Punchier amber CTA — the single highest-contrast element */
.btn-primary { box-shadow: 0 8px 24px rgba(255,158,27,0.22); }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(255,158,27,0.34); }
.btn-gold { box-shadow: 0 8px 24px rgba(232,176,75,0.20); }

/* LIGHT sections — break up the dark, add rhythm */
.section-light { background: var(--bg-light); color: #4a443c; }
.section-light .kicker { color: #c2790a; }
.section-light h2, .section-light h3, .section-light .why-quote { color: #1c1813; }
.section-light .lede, .section-light p, .section-light li { color: #5c544a; }
.section-light .product-card, .section-light .studio-card,
.section-light .showcase-card, .section-light .post-card,
.section-light .tier-card, .section-light .principle-list li {
  background: #fffdf9; border-color: rgba(20,16,10,0.10); box-shadow: 0 12px 34px rgba(40,30,10,0.07);
}
.section-light .product-card h3, .section-light .studio-card h3, .section-light .showcase-card h3 { color: #16120c; }
.section-light .product-card p, .section-light .studio-card p, .section-light .showcase-card p { color: #6a6155; }
.section-light .sc-link, .section-light a { color: #c2790a; }
.section-light .principle-list strong { color: #16120c; }
.section-light .studio-icon, .section-light .product-icon { filter: saturate(1.1); }

/* Scroll-reveal motion (added by nav.js as elements enter view) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero { animation: none; }
}

/* Showcase card imagery banners */
.showcase-card { overflow: hidden; }
.sc-media {
  margin: -30px -30px 18px; height: 172px; overflow: hidden; position: relative;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
}
.sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.showcase-card:hover .sc-media img { transform: scale(1.05); }
.sc-media.tile { background:
  radial-gradient(130% 120% at 28% 18%, rgba(255,158,27,0.22), transparent 60%),
  linear-gradient(150deg, #241c10, #0d0b07); }
.sc-media .sc-emoji { font-size: 66px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.55)); }

/* Section headings get a small amber tick for polish */
.section-head .kicker::before { content: ""; }

/* ============================================================
   ====  LIGHT THEME ADJUSTMENTS — bright, vivid, not dark  ===
   ============================================================ */
/* Sticky header → light glass */
.site-header { background: rgba(250,246,238,0.9); border-bottom-color: var(--border); }
.brand-name { color: var(--text); }
.site-nav > a, .nav-dropdown-trigger { color: var(--text-mid); }
.nav-dropdown-menu { background: #fff; box-shadow: 0 24px 60px rgba(40,30,10,0.18); }

/* Thin DARK top strip (keeps light text) for premium contrast */
.topbar { background: var(--bg-dark); border-bottom-color: rgba(255,255,255,0.06); }
.topbar .topbar-tag { color: #b8ad9c; }
.topbar .topbar-links a { color: #d8cebd; }
.topbar .topbar-links a:hover { color: var(--accent); }

/* Hero: airy cream + warm amber glow (drop the muddy avatar wash) */
.hero::before { display: none; }
.hero-sub { color: var(--text-mid); }
.hero-eyebrow { background: rgba(237,122,6,0.08); }

/* Comparison + spec: dark cells → light tints */
.comparison-row > div:first-child { background: rgba(20,16,10,0.04); color: var(--text-dim); }
.comparison-head > div:first-child { color: var(--text-dim); }
.comparison-head > div:last-child { color: var(--accent-hi); }
.spec-table th { background: rgba(20,16,10,0.04); color: var(--text-mid); }

/* Cards lift cleanly on white */
.product-card, .studio-card, .roadmap-card, .post-card, .tier-card,
.showcase-card, .forum-cat, .dl-card, .stat-box, .shot, .faq-item,
.docs-sidebar, .principle-list li { background: var(--bg-card); box-shadow: 0 10px 30px rgba(40,30,10,0.05); }
.product-card h3, .studio-card h3, .showcase-card h3 { color: var(--accent-hi); }
.why-quote { color: var(--text); }
.btn-ghost { color: var(--text); border-color: var(--border-hi); }
.btn-ghost:hover { background: #fff; border-color: var(--accent); color: var(--accent-hi); }

/* Discord card → warm light */
.discord-card { background: linear-gradient(135deg, #fffdf9, #f3ead8); border-color: var(--border-hi); }
.discord-card h2 { color: var(--text); }
.discord-embed { background: rgba(20,16,10,0.03); }
.embed-placeholder { color: var(--text-dim); }

/* VIVID amber CTA band (adds color, not just light) */
.split-cta { background: linear-gradient(135deg, #ed7a06, #d96a05); border-color: rgba(237,122,6,0.5); box-shadow: 0 18px 44px rgba(237,122,6,0.22); }
.split-cta h2 { color: #fff; }
.split-cta p { color: rgba(255,255,255,0.92); }
.split-cta .btn-primary { background: #14110c; color: #fff; border-color: #14110c; box-shadow: none; }
.split-cta .btn-primary:hover { background: #000; }
.split-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.split-cta .btn-ghost:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: #fff; }

/* DARK footer anchors the bright page */
.site-footer { background: var(--bg-dark); border-top-color: rgba(255,255,255,0.06); color: #b8ad9c; }
.footer-col h4 { color: #8d8170; }
.footer-col a { color: #d8cebd; }
.footer-col a:hover { color: var(--accent); }
.footer-col .footer-blurb { color: #b8ad9c; }
.brand-name-sm { color: #fff; }
.footer-fineprint { border-top-color: rgba(255,255,255,0.08); color: #8d8170; }

/* ============================================================
   ====  HP-TUNERS ENERGY — bold hero + product imagery  ====
   ============================================================ */
.hero { padding-bottom: 84px; }
.hero-grid { grid-template-columns: 1.05fr 1fr; gap: 50px; }
.hero-title { text-transform: uppercase; font-size: clamp(40px, 6.6vw, 76px); line-height: 1.0; letter-spacing: -2px; }
.hero-eyebrow { font-weight: 700; }
.hero-sub { font-size: 18.5px; }

/* Hero product shot — the C7 dash, framed + tilted like HP Tuners' device shots */
.hero-shot {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(20,16,10,0.16);
  box-shadow: 0 40px 90px rgba(40,30,10,0.28), 0 8px 20px rgba(40,30,10,0.12);
  background: #0d0f08; transform: rotate(-1.4deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-shot:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 52px 110px rgba(237,122,6,0.24), 0 10px 24px rgba(40,30,10,0.16); }
.hero-shot img { display: block; width: 100%; height: auto; }
.hero-shot::after {
  content: "RUNNING LIVE ON A 2014 STINGRAY"; position: absolute; left: 14px; bottom: 13px;
  font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 1.4px;
  color: #fff; background: rgba(13,15,8,0.72); border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 10px; border-radius: 6px;
}

/* Credibility strip under the hero */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center;
  padding: 20px 24px; background: var(--bg-mid);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-strip span { font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 1px; color: var(--text-mid); text-transform: uppercase; }
.trust-strip b { color: var(--accent-hi); }
.trust-strip .dot { color: var(--accent); }

/* Gauge SVG sits "contained" on a dark tile (not cropped) */
.sc-media.contain { background: radial-gradient(130% 120% at 30% 18%, #20242c, #0b0d11); }
.sc-media.contain img { width: auto; height: 150px; object-fit: contain; }

@media (max-width: 880px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-shot { transform: none; max-width: 520px; }
}

/* The honey badger mascot — attitude next to the philosophy quote */
.why-badger {
  display: block; width: clamp(240px, 38vw, 380px); height: auto; margin: 0 auto 24px;
  border-radius: 18px; border: 1px solid rgba(20,16,10,0.14);
  box-shadow: 0 28px 64px rgba(40,30,10,0.32);
  animation: prowl 7s ease-in-out infinite alternate;
}
@keyframes prowl { from { transform: translateY(-7px); } to { transform: translateY(7px); } }

/* Brand band — bold badger interlude (dark, dramatic) */
.brand-band { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 50px 0; }
.brand-band-grid { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; }
.brand-band-art { width: 100%; max-width: 320px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 26px 60px rgba(0,0,0,0.55); }
.brand-band h2 { color: #fff; margin: 8px 0 12px; font-family: "Space Grotesk","Inter",sans-serif; font-size: clamp(26px,3.4vw,40px); }
.brand-band p { color: #c9bdab; margin: 0 0 22px; max-width: 520px; }
@media (max-width: 760px){ .brand-band-grid { grid-template-columns: 1fr; text-align: center; } .brand-band-art { margin: 0 auto; max-width: 280px; } .brand-band p { margin-left: auto; margin-right: auto; } }

/* Flagship (Track) tier — dark, gold-glow, "THE WORKS" */
.tier-card.flagship { background: linear-gradient(165deg, #1d160d, #100c08); border-color: var(--accent); box-shadow: 0 0 0 1px rgba(237,122,6,0.45), 0 34px 80px rgba(237,122,6,0.20); }
.tier-card.flagship::before { content: "THE WORKS"; position: absolute; top: -11px; left: 28px; background: var(--accent); color: #140f08; font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 1.5px; font-weight: 800; padding: 4px 10px; border-radius: 5px; }
.tier-card.flagship .tier-name { color: #ffb84d; }
.tier-card.flagship .tier-price { color: #fff; }
.tier-card.flagship .tier-price small { color: var(--accent); font-weight: 700; }
.tier-card.flagship p { color: #c9bdab; }
.tier-card.flagship ul li { color: #d8cebd; }
.tier-card.flagship ul li::before { color: var(--accent); }

/* The Track Build — expanded flagship band */
.track-build { background: linear-gradient(160deg, #1a140d, #100b07); color: #cabdab; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.track-build .kicker { color: var(--accent); }
.track-build h2 { color: #fff; }
.track-build .lede { color: #c9bdab; }
.track-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; margin-top: 6px; }
.track-cols h3 { color: #ffb84d; font-size: 18px; margin: 0 0 8px; font-family: "Space Grotesk","Inter",sans-serif; }
.track-cols p { color: #bcae9c; font-size: 14.5px; margin: 0; line-height: 1.6; }
.track-build .proof-fineprint { color: #8d8170; text-align: left; margin-top: 28px; }
@media (prefers-reduced-motion: reduce){ .why-badger { animation: none; } }
