/* ============================================================
   Metolius Health — Main Stylesheet
   Design tokens, resets, components, and section styles.
   Ported from the React/HTML prototype. One file, CSS-only.
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --navy: #0f1b2d;
  --navy-darker: #0a1520;
  --teal: #0e8c7f;
  --teal-light: #11b8a5;
  --teal-darker: #0a6a61;
  --cream: #f8f6f1;
  --warm-white: #fefdfb;
  --amber: #d4912a;
  --amber-light: #e8a83e;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --warm-gray: #e8e4dd;

  --container: 1140px;
  --pad-x: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--teal-light); }
a:visited { color: var(--teal-darker); }

img, svg { display: block; max-width: 100%; height: auto; }

button { font-family: inherit; border: none; cursor: pointer; background: none; }

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--navy); }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---- Fade-in reveal ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--fade-delay, 0s);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(14, 140, 127, 0.12);
}
.site-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.site-nav__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
}
.site-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-nav__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.015em;
}
.site-nav__link:hover { color: #fff; }
.site-nav__cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.site-nav__cta:hover { color: var(--navy); opacity: 0.92; }
.site-nav__toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  padding: 8px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.25s var(--ease);
  line-height: 1;
}
.btn--teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 140, 127, 0.25);
}
.btn--teal:hover { color: #fff; opacity: 0.95; transform: translateY(-1px); }
.btn--amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 145, 42, 0.25);
  padding: 15px 34px;
}
.btn--amber:hover { color: var(--navy); opacity: 0.95; transform: translateY(-1px); }
.btn--ghost-white {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  font-weight: 500;
}
.btn--ghost-white:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost-teal {
  border: 1px solid rgba(14, 140, 127, 0.35);
  color: var(--teal-light);
  background: transparent;
  padding: 15px 34px;
}
.btn--ghost-teal:hover { color: var(--teal-light); border-color: var(--teal-light); }

.btn__arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -25%; right: -12%;
  width: 65vw; height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 140, 127, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero__line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(14, 140, 127, 0.27) 50%, transparent 95%);
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 172px var(--pad-x) 104px;
  position: relative;
  z-index: 1;
  width: 100%;
}
/* Slight extra bump when logged-in admin bar is showing */
body.admin-bar .hero__inner { padding-top: 204px; }
.eyebrow {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid rgba(14, 140, 127, 0.3);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 36px;
  font-weight: 600;
}
.eyebrow--dark {
  color: var(--teal);
  border: none;
  padding: 0;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.hero__headline {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  max-width: 820px;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero__headline-accent { color: var(--teal-light); }
.hero__subhead {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__micro {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 18px;
}

/* ---- Trust stats strip ---- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 36px;
}
.trust-strip__item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 12px;
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-light);
}
.trust-strip__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 5px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px var(--pad-x); }
.section--cream { background: var(--cream); }
.section--warm-white { background: var(--warm-white); }
.section--navy { background: var(--navy); position: relative; overflow: hidden; }
.section__inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.section__glow-left {
  position: absolute;
  bottom: -20%; left: -8%;
  width: 45vw; height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 140, 127, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.section__glow-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw; height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 140, 127, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.section__h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}
.section__h2--light { color: #fff; }
.section__h2-accent { color: var(--teal); }
.section__h2-accent--light { color: var(--teal-light); }

/* ---- Problem section ---- */
.problem { text-align: center; }
.problem__head {
  max-width: 800px;
  margin: 0 auto;
}
.problem__h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.problem__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}
.problem__pullquote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin-top: 36px;
}

/* ---- How It Works ---- */
.how__head {
  margin-bottom: 64px;
  max-width: 500px;
}
.how__h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 40px 36px;
  border: 1px solid var(--warm-gray);
  height: 100%;
  transition: border-color 0.3s var(--ease);
}
.how-card:hover { border-color: var(--teal); }
.how-card__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.how-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.how-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ---- Platform section ---- */
.platform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.platform__lead h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.platform__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
.platform__modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.platform__module {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 10px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.platform__module-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.icon-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--teal-light);
}

/* ---- Results / Math section ---- */
.results__head {
  text-align: center;
  margin-bottom: 64px;
}
.results__h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.results__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.metric-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--warm-gray);
}
.metric-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.metric-card__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.metric-card__sub {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.results__split {
  background: #fff;
  border-radius: 16px;
  padding: 44px 48px;
  border: 1px solid var(--warm-gray);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.results__split h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.results__split p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}
.ramp-row, .fee-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--warm-gray);
  align-items: baseline;
}
.ramp-row:last-child, .fee-row:last-child { border-bottom: none; }
.ramp-row__year {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  min-width: 56px;
}
.ramp-row__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  min-width: 100px;
  margin-right: 16px;
}
.ramp-row__note {
  font-size: 13px;
  color: var(--text-light);
  flex: 1;
}
.fee-row {
  justify-content: space-between;
  padding: 12px 0;
}
.fee-row__item {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.fee-row__note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.fee-row__fee {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  margin-left: 16px;
}

/* ---- Why Us grid ---- */
.why-us__head { text-align: center; margin-bottom: 56px; }
.why-us__h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 36px 32px;
  border: 1px solid var(--warm-gray);
  height: 100%;
  transition: border-color 0.3s var(--ease);
}
.why-card:hover { border-color: var(--teal); }
.why-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ---- About / Story ---- */
.story { text-align: center; }
.story__inner { max-width: 900px; margin: 0 auto; }
.story__h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 36px;
}
.story__body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.story__body p { margin-bottom: 20px; }
.story__body p:last-child { margin-bottom: 0; }

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  text-align: left;
  max-width: 1040px;
  margin: 0 auto;
}
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 36px 32px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form__field { margin-bottom: 14px; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form__label .req { color: var(--amber-light); margin-left: 4px; }
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(17, 184, 165, 0.18);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2311b8a5' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.contact-form__select option { background: var(--navy); color: #fff; }
.contact-form__textarea { min-height: 96px; resize: vertical; }
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  box-shadow: 0 4px 20px rgba(212, 145, 42, 0.25);
  margin-top: 6px;
}
.contact-form__submit:hover { transform: translateY(-1px); opacity: 0.95; }
.contact-form__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
  line-height: 1.6;
}
.contact-form__note a { color: var(--teal-light); }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}
.contact-aside__block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 24px;
}
.contact-aside__kicker {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-aside__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-aside__body {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.contact-aside__link {
  font-size: 14px;
  color: var(--teal-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-aside__link:hover { color: #fff; }

.contact-success {
  background: rgba(17, 184, 165, 0.12);
  border: 1px solid rgba(17, 184, 165, 0.4);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
  color: #fff;
}
.contact-success strong { color: var(--teal-light); }

.contact-error {
  background: rgba(166, 53, 49, 0.18);
  border: 1px solid rgba(166, 53, 49, 0.5);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #ffcfcd;
  font-size: 14px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 22px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ---- Final CTA ---- */
.final-cta { text-align: center; }
.final-cta__inner { max-width: 680px; margin: 0 auto; }
.final-cta__h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.final-cta__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}
.final-cta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta__footnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-darker);
  padding: 40px var(--pad-x) 32px;
  border-top: 1px solid rgba(14, 140, 127, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.site-footer__mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
}
.site-footer__name { color: rgba(255, 255, 255, 0.5); font-size: 13px; }
.site-footer__attribution {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}
.site-footer__legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 12px;
}
.site-footer__legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner { padding: 128px var(--pad-x) 72px; }
  body.admin-bar .hero__inner { padding-top: 152px; }
  .hero__headline { font-size: clamp(32px, 7vw, 44px); }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .trust-strip__item { border-right: none; }
  .trust-strip__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05); }

  .how__grid,
  .platform__grid,
  .results__metrics,
  .why-us__grid,
  .results__split { grid-template-columns: 1fr; gap: 24px; }

  .section { padding: 64px var(--pad-x); }
  .section__h2, .how__h2, .results__h2 { font-size: 30px; }
  .problem__h2, .story__h2, .why-us__h2, .final-cta__h2 { font-size: 28px; }

  .site-nav__links { display: none; }
  .site-nav__toggle { display: inline-flex; }

  .site-nav.is-menu-open {
    background: rgba(15, 27, 45, 0.98);
    backdrop-filter: blur(20px);
  }
  .site-nav.is-menu-open .site-nav__links {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 20px var(--pad-x) 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav.is-menu-open .site-nav__link {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .site-nav.is-menu-open .site-nav__cta {
    margin-top: 16px;
    text-align: center;
    padding: 12px 20px;
  }
}

@media (max-width: 560px) {
  :root { --pad-x: 22px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .results__split { padding: 32px 24px; gap: 36px; }
  .btn, .btn--amber, .btn--ghost-teal { padding: 13px 24px; font-size: 14px; }
}

/* ---- Focus styles for accessibility ---- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Print (keep site legible if printed) ---- */
@media print {
  .site-nav, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
