/* =========================================================
   RESONANCE NEEDLING — SHARED STYLES
   ========================================================= */

:root {
  --teal: #1B2A3A;
  --teal-mid: #2C3E50;
  --teal-light: #E9EDF2;
  --gold: #C08229;
  --gold-light: #F0DCB8;
  --dark: #FDFBF7;
  --dark-mid: #F4EEE0;
  --cream: #1B2A3A;
  --cream-dark: #2C3E50;

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  --container-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
h1 { font-size: clamp(36px, 5.6vw, 76px); }
h2 { font-size: clamp(28px, 3.6vw, 46px); }
h3 { font-size: clamp(21px, 2.2vw, 25px); }
p { margin: 0 0 16px; font-size: 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
button, .btn, .nav-toggle, .nav-link { cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.italic-gold { color: var(--gold); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: clamp(88px, 11vw, 160px) 0; }
.bg-dark { background: var(--dark); }
.bg-dark-mid { background: var(--dark-mid); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 22px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  display: inline-block;
}

.section-head { max-width: 700px; margin-bottom: 76px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow, .final-cta .eyebrow, .centered .eyebrow { padding-left: 0; border-left: none; }
.section-head p { color: rgba(27,42,58,0.7); font-size: 17px; margin-top: 20px; line-height: 1.7; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 100;
  background: rgba(253,251,247,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,130,41,0.2);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(253,251,247,0.95); }
.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg, .nav-logo img { width: 38px; height: 38px; object-fit: contain; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark .w1 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 1px;
}
.nav-wordmark .w2 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--teal-mid);
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > li { position: relative; }
.nav-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-link:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--teal); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  background: var(--dark-mid);
  border-left: 2px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.has-dropdown.open .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.dropdown li a:hover { opacity: 1; color: var(--gold); }
.dropdown li.disabled a {
  opacity: 0.35;
  pointer-events: none;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--cream);
  transition: all 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-overlay a {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
}
.mobile-overlay .sub-links { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-top: -10px; }
.mobile-overlay .sub-links a { font-family: var(--font-body); font-size: 14px; color: var(--teal-mid); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--teal); }
.btn-primary:hover { transform: translateY(-1px); background: var(--gold-light); }
.btn-ghost { border-color: rgba(27,42,58,0.3); color: rgba(27,42,58,0.7); }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { transform: translateY(-1px); background: var(--teal-mid); }
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--dark);
}
.hero-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(192,130,41,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 100px 40px 60px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 26px; }
.hero .subtitle { font-size: 19px; color: rgba(27,42,58,0.75); max-width: 480px; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 48px; margin-bottom: 46px; }
.hero-stat .num { font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; }
.hero-stat .label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(27,42,58,0.6); margin-top: 8px; }
.hero-logo { display: flex; justify-content: center; align-items: center; }
.hero-logo svg, .hero-logo img { width: 100%; max-width: 480px; filter: drop-shadow(0 10px 30px rgba(27,42,58,0.12)); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: rgba(27,42,58,0.12);
  border-top: 1px solid rgba(27,42,58,0.35);
  border-bottom: 1px solid rgba(27,42,58,0.35);
  padding: 22px 0;
}
.trust-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(27,42,58,0.85);
  text-align: center;
}
.trust-inner span.dot { color: var(--teal-mid); margin: 0 18px; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ---------- Numbered points ---------- */
.numbered-point { display: flex; gap: 20px; margin-bottom: 34px; }
.numbered-point .n { font-family: var(--font-display); font-size: 30px; color: var(--gold); opacity: 0.6; line-height: 1; }
.numbered-point h4 { font-family: var(--font-display); font-size: 22px; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.numbered-point p { color: rgba(27,42,58,0.75); font-size: 16px; }

/* ---------- Comparison cards ---------- */
.compare-card {
  border: 1px solid rgba(27,42,58,0.1);
  border-radius: 2px;
  padding: 30px 32px;
  margin-bottom: 24px;
}
.compare-card.negative { background: rgba(27,42,58,0.02); }
.compare-card.positive { background: rgba(27,42,58,0.07); border-color: rgba(27,42,58,0.3); border-left: 2px solid var(--teal-mid); }
.compare-card h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; color: rgba(27,42,58,0.6); }
.compare-card.positive h4 { color: var(--teal-mid); }
.compare-card ul li { font-size: 16px; padding: 6px 0; color: rgba(27,42,58,0.8); }
.compare-card.negative ul li::before { content: "— "; color: rgba(27,42,58,0.35); }
.compare-card.positive ul li::before { content: "✓ "; color: var(--teal-mid); }

.footnote { font-size: 13px; color: rgba(27,42,58,0.5); margin-top: 30px; font-style: italic; }

/* ---------- Protocol steps ---------- */
.protocol-step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid rgba(27,42,58,0.08); }
.protocol-step:last-child { border-bottom: none; }
.protocol-step .n { font-family: var(--font-display); font-size: 34px; color: var(--gold); opacity: 0.5; min-width: 50px; }
.protocol-step h4 { font-family: var(--font-display); font-size: 22px; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.protocol-step p { color: rgba(27,42,58,0.75); font-size: 16.5px; }
.evidence-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(27,42,58,0.5);
  color: var(--teal-mid);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid rgba(27,42,58,0.08);
  border-top: 1px solid rgba(192,130,41,0.35);
  background: rgba(27,42,58,0.015);
  border-radius: 2px;
  padding: 40px 32px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: rgba(27,42,58,0.16); background: rgba(27,42,58,0.06); transform: translateY(-2px); }
.card:hover { border-top-color: var(--gold); }
.card h3, .card h4 { font-family: var(--font-display); color: var(--gold); font-weight: 500; margin-bottom: 14px; font-size: 21px; }
.card p { font-size: 16px; color: rgba(27,42,58,0.7); line-height: 1.65; }
.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--teal-mid);
}
.card-icon svg { width: 30px; height: 30px; }
.card-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(192,130,41,0.1);
  border: 1px solid rgba(192,130,41,0.3);
  padding: 4px 10px;
  border-radius: 12px;
}

/* ---------- Evidence cards ---------- */
.evidence-card {
  border-top: 1px solid rgba(192,130,41,0.3);
  padding: 30px 0 0;
  background: transparent;
}
.evidence-card .ref-num { font-family: var(--font-display); font-size: 34px; color: var(--gold); opacity: 0.45; }
.evidence-card h4 { font-family: var(--font-display); font-size: 20px; color: var(--cream); margin: 12px 0 12px; }
.evidence-card p { font-size: 15.5px; color: rgba(27,42,58,0.68); line-height: 1.65; }
.evidence-card .citation { font-size: 12px; color: var(--teal-mid); margin-top: 14px; font-style: italic; line-height: 1.5; display: block; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: 4px; border: 1px solid rgba(27,42,58,0.2); }
table.styled-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
table.styled-table thead tr { background: var(--teal); }
table.styled-table thead th {
  color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
table.styled-table tbody td {
  padding: 14px 20px;
  border-left: 3px solid var(--teal);
  color: rgba(27,42,58,0.85);
}
table.styled-table tbody tr { background: rgba(27,42,58,0.02); }
table.styled-table tbody tr:nth-child(even) { background: rgba(192,130,41,0.05); }
table.styled-table tbody tr.theory-row { background: rgba(192,130,41,0.12); }
table.styled-table tbody tr.break-row { background: transparent; font-style: italic; color: rgba(27,42,58,0.4); }
table.styled-table tbody tr.break-row td { border-left-color: rgba(27,42,58,0.15); color: rgba(27,42,58,0.4); }

/* ---------- Callouts ---------- */
.callout {
  border-left: 3px solid var(--teal);
  background: var(--teal-light);
  color: var(--teal);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
}
.callout p { color: var(--teal); }
.callout h4 { font-family: var(--font-body); font-weight: 600; text-transform: none; color: var(--teal); margin-bottom: 10px; }
.callout.gold { border-left-color: var(--gold); background: var(--gold-light); }

/* ---------- Stats / overview bars ---------- */
.overview-bar, .snapshot-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(27,42,58,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.overview-bar > div, .snapshot-bar > div {
  padding: 26px 20px;
  border-left: 1px solid rgba(27,42,58,0.2);
  text-align: center;
}
.overview-bar > div:first-child, .snapshot-bar > div:first-child { border-left: none; }
.overview-bar .label, .snapshot-bar .label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(27,42,58,0.5); margin-bottom: 8px; }
.overview-bar .value, .snapshot-bar .value { font-family: var(--font-display); font-size: 22px; color: var(--gold); }

/* ---------- Tick lists ---------- */
.tick-list li { display: flex; gap: 12px; padding: 10px 0; font-size: 16px; color: rgba(27,42,58,0.85); }
.tick-list li::before { content: "✓"; color: var(--teal-mid); font-weight: 600; }

/* ---------- Date / pricing / credential cards ---------- */
.date-card {
  border: 1px solid rgba(27,42,58,0.12);
  border-radius: 4px;
  padding: 34px 30px;
  text-align: left;
}
.date-card.featured { border-color: var(--gold); background: rgba(192,130,41,0.06); }
.date-card .city { font-family: var(--font-display); font-size: 30px; color: var(--cream); }
.date-card .status { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--teal-mid); margin: 10px 0 16px; }
.date-card .price { font-family: var(--font-display); font-size: 20px; color: var(--gold); margin-bottom: 20px; }

.pricing-stack .price-card {
  border: 1px solid rgba(27,42,58,0.12);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 16px;
}
.pricing-stack .price-card.featured { border-color: var(--gold); background: rgba(192,130,41,0.08); }
.pricing-stack .tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.pricing-stack .amount { font-family: var(--font-display); font-size: 42px; color: var(--cream); margin: 8px 0; }
.pricing-stack .note { font-size: 13px; color: rgba(27,42,58,0.55); }

.credential-card {
  border: 1px solid rgba(192,130,41,0.3);
  border-radius: 4px;
  padding: 34px;
  background: rgba(192,130,41,0.04);
}
.credential-card h3 { font-size: 30px; margin-bottom: 4px; }
.credential-card .role { color: var(--teal-mid); font-size: 13px; letter-spacing: 1px; margin-bottom: 20px; }
.credential-card .cred-row { font-size: 13px; color: rgba(27,42,58,0.7); padding: 6px 0; border-top: 1px solid rgba(27,42,58,0.08); }
.credential-card .ascend-link { display: inline-block; margin-top: 20px; font-size: 12px; letter-spacing: 1px; color: var(--gold); border-bottom: 1px solid var(--gold); }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  margin: 30px 0;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(27,42,58,0.1); padding: 24px 0; }
.faq-item h4 { font-family: var(--font-display); font-size: 20px; color: var(--cream); margin-bottom: 10px; }
.faq-item p { color: rgba(27,42,58,0.7); font-size: 16px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(27,42,58,0.6); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%;
  background: var(--dark-mid);
  border: 1px solid rgba(27,42,58,0.15);
  color: var(--cream);
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: rgba(192,130,41,0.5);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7F3EC'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }

.btn-submit {
  width: 100%;
  border: none;
  background: var(--gold);
  color: var(--teal);
  padding: 16px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.3s ease, transform 0.15s ease;
}
.btn-submit:hover { transform: translateY(-1px); }
.btn-submit.confirmed { background: var(--teal); color: #fff; }
.form-confirm-msg {
  display: none;
  margin-top: 14px;
  font-size: 13px;
  color: var(--teal-mid);
  text-align: center;
}
.form-confirm-msg.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(192,130,41,0.25);
  padding: 70px 0 30px;
  background: var(--dark);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 18px; }
.footer p { font-size: 15px; color: rgba(27,42,58,0.6); }
.footer ul li { padding: 6px 0; }
.footer ul li a { font-size: 15px; color: rgba(27,42,58,0.7); }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(27,42,58,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(27,42,58,0.45);
}
.footer-bottom a { color: var(--gold); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 152px 0 80px; background: var(--dark); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 820px; }
.page-hero .subtitle { font-size: 18px; color: rgba(27,42,58,0.7); max-width: 620px; margin-top: 20px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 26px; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  .section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 60px; text-align: left; }
  .hero-logo { order: -1; margin-bottom: 30px; }
  .hero-logo svg { max-width: 240px; }
  .hero-stats { gap: 30px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-5, .grid-6 { grid-template-columns: 1fr; gap: 28px; }
  .overview-bar, .snapshot-bar { grid-template-columns: repeat(2, 1fr); }
  .overview-bar > div:nth-child(odd), .snapshot-bar > div:nth-child(odd) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  table.styled-table .format-col { display: none; }
  .btn-row { flex-direction: column; }
  .btn { text-align: center; }
}
