/* ============================================================
   RBI Design System — Shared Token Library
   Regenerative Business Institute | rbi.coop
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --cobalt:        #0A4A8A;  /* Primary — RBI logo blue */
  --cobalt-dark:   #073872;  /* Hover/active deepened cobalt */
  --cobalt-light:  #0D5BAA;  /* Footer surface, lighter cobalt */
  --cobalt-faint:  #EEF4FB;  /* Tinted background, card wash */

  --ink:           #0D0D0D;  /* Near-black — body text, headings */
  --gray-60:       #6B6B6B;  /* Secondary text */
  --gray-30:       #A8A8A8;  /* Dividers, placeholders */
  --gray-10:       #F4F4F4;  /* Alternate section bg */

  --white:         #FFFFFF;
  --off-white:     #FAFAFA;

  /* Semantic */
  --text-primary:    var(--ink);
  --text-secondary:  var(--gray-60);
  --text-inverse:    var(--white);
  --bg-primary:      var(--white);
  --bg-alt:          var(--gray-10);
  --bg-cobalt:       var(--cobalt);
  --border:          #E2E8F0;

  /* Typography Scale */
  --font-display: 'Roboto Slab', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;

  --leading-tight:  1.2;
  --leading-snug:   1.4;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Layout */
  --max-w-sm:   640px;
  --max-w-md:   768px;
  --max-w-lg:   1024px;
  --max-w-xl:   1200px;
  --max-w-full: 1440px;

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --shadow-cobalt: 0 4px 20px rgba(10,74,138,.20);

  /* Transitions */
  --transition: 200ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Google Fonts Import ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  font-weight: 700;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--sp-4); line-height: var(--leading-normal); }
p:last-child { margin-bottom: 0; }

.mono { font-family: var(--font-mono); }
.text-sm  { font-size: var(--text-sm); }
.text-lg  { font-size: var(--text-lg); }
.text-xl  { font-size: var(--text-xl); }
.text-cobalt  { color: var(--cobalt); }
.text-inverse { color: var(--text-inverse); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.font-bold   { font-weight: 700; }
.font-medium { font-weight: 500; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w-xl);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--wide {
  max-width: var(--max-w-full);
}

.section {
  padding: var(--sp-20) 0;
}

.section--sm {
  padding: var(--sp-12) 0;
}

.section--lg {
  padding: var(--sp-32) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--cobalt {
  background: var(--cobalt);
  color: var(--text-inverse);
}

.section--cobalt-dark {
  background: var(--cobalt-dark);
  color: var(--text-inverse);
}

.section--ink {
  background: var(--ink);
  color: var(--text-inverse);
}

/* ── Grid ───────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--sp-8);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto-fit-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-auto-fit-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ── Flex Utilities ─────────────────────────────────────── */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-2  { gap: var(--sp-2); }
.gap-4  { gap: var(--sp-4); }
.gap-6  { gap: var(--sp-6); }
.gap-8  { gap: var(--sp-8); }

/* ── Ledger Rule (Brand Motif) ──────────────────────────── */
.ledger-rule {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.ledger-rule__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  white-space: nowrap;
}

.ledger-rule__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ledger-rule--inverse .ledger-rule__label { color: rgba(255,255,255,0.6); }
.ledger-rule--inverse .ledger-rule__line  { background: rgba(255,255,255,0.2); }

/* ── Stat Block ─────────────────────────────────────────── */
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.stat__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--cobalt);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-snug);
}

.stat--inverse .stat__value { color: var(--white); }
.stat--inverse .stat__label { color: rgba(255,255,255,0.65); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--cobalt);
  color: var(--white);
  box-shadow: var(--shadow-cobalt);
}
.btn-primary:hover {
  background: var(--cobalt-dark);
  box-shadow: 0 6px 24px rgba(10,74,138,.30);
}

.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border: 2px solid var(--cobalt);
}
.btn-outline:hover {
  background: var(--cobalt-faint);
}

.btn-outline-inverse {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-inverse:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-inverse {
  background: var(--white);
  color: var(--cobalt);
}
.btn-inverse:hover {
  background: var(--cobalt-faint);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--cobalt {
  background: var(--cobalt);
  color: var(--text-inverse);
  border-color: transparent;
}

.card--faint {
  background: var(--cobalt-faint);
  border-color: rgba(10,74,138,.12);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--cobalt-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card__icon svg {
  color: var(--cobalt);
  stroke: var(--cobalt);
}

.card--cobalt .card__icon svg {
  color: rgba(255,255,255,0.85);
  stroke: rgba(255,255,255,0.85);
}

.card--cobalt .card__icon {
  background: rgba(255,255,255,0.15);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.card__body {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
}

.card--cobalt .card__body {
  color: rgba(255,255,255,0.78);
}

/* ── Tag / Badge ────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--cobalt-faint);
  color: var(--cobalt);
}

.tag--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}

.tag--pending {
  background: #FFF7E6;
  color: #B45309;
}

.tag--active {
  background: #ECFDF5;
  color: #065F46;
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__logo-img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--cobalt);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--cobalt);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--cobalt);
  border-radius: 1px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--text-inverse);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(255,255,255,0.6);
  margin-top: var(--sp-4);
  max-width: 280px;
}

.footer__logo {
  height: 48px;
  width: auto;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: var(--sp-24) 0 var(--sp-20);
  background: var(--bg-primary);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cobalt);
  margin-bottom: var(--sp-4);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-6xl));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  max-width: 680px;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  max-width: 560px;
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}

/* ── Ledger Card (hero visual) ──────────────────────────── */
.ledger-card {
  background: var(--cobalt);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  color: var(--text-inverse);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-cobalt);
}

.ledger-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.ledger-card__title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-weight: 400;
}

.ledger-card__badge {
  font-size: var(--text-xs);
  background: rgba(255,255,255,0.12);
  padding: 2px var(--sp-2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
}

.ledger-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ledger-card__row:last-of-type { border-bottom: none; }

.ledger-card__account { color: rgba(255,255,255,0.7); font-size: var(--text-xs); }
.ledger-card__amount  { color: var(--white); font-weight: 500; }
.ledger-card__change  {
  font-size: var(--text-xs);
  padding: 2px var(--sp-2);
  border-radius: var(--radius-full);
  background: rgba(16,185,129,0.18);
  color: #6EE7B7;
}

.ledger-card__total {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 2px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
}

.ledger-card__total-label { color: rgba(255,255,255,0.55); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; }
.ledger-card__total-value { color: var(--white); font-weight: 700; font-size: var(--text-lg); }

/* ── Page Header (inner pages) ──────────────────────────── */
.page-header {
  background: var(--cobalt);
  color: var(--text-inverse);
  padding: var(--sp-20) 0 var(--sp-16);
}

.page-header__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-3);
}

.page-header__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-4);
  max-width: 700px;
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: var(--leading-normal);
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* ── Process Steps ──────────────────────────────────────── */
.steps {
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  counter-increment: steps;
}

.step:last-child { margin-bottom: 0; }

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cobalt);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.step__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* ── Testimonial / Quote ────────────────────────────────── */
.quote {
  border-left: 4px solid var(--cobalt);
  padding-left: var(--sp-6);
  margin: var(--sp-8) 0;
}

.quote__text {
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-loose);
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}

.quote__attribution {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cobalt);
}

/* ── Form Elements ──────────────────────────────────────── */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(10,74,138,.12);
}

.form-textarea { min-height: 120px; resize: vertical; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--cobalt);
  color: var(--text-inverse);
  padding: var(--sp-16) 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.cta-banner__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto var(--sp-8);
}

/* ── Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--sp-4); }
.mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

.w-full { width: 100%; }
.hidden { display: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --sp-20: 3.5rem;
    --sp-24: 4rem;
    --sp-32: 5rem;
  }

  .nav__links { display: none; }
  .nav__cta .btn:not(.btn-primary) { display: none; }
  .nav__toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .hero__title { font-size: var(--text-3xl); }
  .hero__trust { flex-direction: column; gap: var(--sp-5); }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .btn-lg { padding: var(--sp-3) var(--sp-6); font-size: var(--text-sm); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
