/* ============================================================
   Lendwise Capital — Modern Rebuild
   Single stylesheet, mobile-first, design-tokens based
   ============================================================ */

:root {
  /* Brand — Lendwise Capital. Black + white + gold. */
  --primary: #111111;        /* near-black for buttons/headers */
  --primary-dark: #000000;   /* pure black for footer */
  --primary-light: #4A4A4A;  /* dark gray */
  --primary-50: #F5F5F5;     /* light gray tint */
  --accent: #D2A538;         /* Lendwise gold (R210 G165 B56) */
  --accent-dark: #A07F26;

  /* Neutrals */
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --surface-2: #F1F5F9;
  --text: #0F172A;
  --text-muted: #475569;
  --text-soft: #64748B;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Status */
  --success: #16A34A;
  --warning: #F59E0B;
  --danger: #DC2626;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --shadow-primary: 0 12px 32px rgba(0, 0, 0, 0.22);

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 4.5vw + 1rem, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.text-center { text-align: center; }
.muted { color: var(--text-muted); }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

.btn--white {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn--white:hover { background: #fff; color: var(--primary-dark); }

.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ============== Header / Nav ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.nav__links a:hover { background: var(--surface-2); color: var(--text); }
.nav__links a.active { color: var(--accent-dark); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s var(--ease);
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
}

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after { content: ''; position: absolute; left: 0; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .25s var(--ease);
    gap: 2px;
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__links a { padding: 14px 16px; font-size: 16px; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }
  .nav__cta .btn--ghost { display: none; }
}

/* ============== Sections ============== */
section { padding: 96px 0; }
section.section--tight { padding: 64px 0; }
section.section--hero { padding: 80px 0 96px; }

@media (max-width: 720px) {
  section { padding: 64px 0; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(210, 165, 56, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(0, 0, 0, 0.06), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede { font-size: 1.125rem; color: var(--text-muted); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--text-soft);
  font-size: 14px;
}
.hero__trust strong { color: var(--text); font-weight: 700; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.hero__card {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  z-index: 2;
}
.hero__card-label { color: var(--text-soft); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; }
.hero__card-amount { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 18px; }
.hero__card-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  font-size: 14px;
}
.hero__card-row span:last-child { font-weight: 600; color: var(--text); }
.hero__blob {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 70%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  filter: blur(40px);
  opacity: 0.30;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
}

/* ============== Stats ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stat {
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.stat__value {
  font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat__value em { font-style: normal; color: var(--accent-dark); }
.stat__label { color: var(--text-soft); font-size: 14px; }

/* ============== Process / Step cards ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.step {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--text-muted); }

/* ============== Feature grid ============== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.feature:hover { border-color: var(--accent); transform: translateY(-2px); }
.feature__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(210, 165, 56, 0.14);
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.feature h3 { margin-bottom: 6px; font-size: 1.125rem; }
.feature p { margin: 0; font-size: 15px; }

/* ============== Calculator ============== */
.calculator {
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto auto;
  width: 60%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(210, 165, 56, 0.38), transparent 70%);
  border-radius: 50%;
}
.calculator__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.calculator h2,
.calculator h3,
.calculator label { color: #fff; }
.calculator p { color: rgba(255,255,255,0.75); }

.calc__field { margin-bottom: 24px; }
.calc__field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.calc__input,
.calc__select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.calc__input::placeholder { color: rgba(255,255,255,0.4); }
.calc__input:focus,
.calc__select:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.calc__select option { color: #0f172a; }
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.calc__pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__pill {
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.calc__pill:hover { background: rgba(255,255,255,0.15); }
.calc__pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

.calc__result {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px;
}
.calc__result-label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.calc__result-value {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.calc__breakdown { list-style: none; padding: 0; margin: 0; }
.calc__breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed rgba(255,255,255,0.18);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.calc__breakdown li strong { color: #fff; font-weight: 700; }
.calc__note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .calculator { padding: 28px 22px; }
  .calculator__grid { grid-template-columns: 1fr; gap: 24px; }
  .calc__row { grid-template-columns: 1fr; }
}

/* ============== Industries / tag grid ============== */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.tag-card {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 600;
  color: var(--text);
  transition: all .2s var(--ease);
}
.tag-card:hover {
  border-color: var(--accent);
  background: rgba(210, 165, 56, 0.10);
  color: var(--primary-dark);
}

/* ============== Comparison table ============== */
.compare {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.compare table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.compare thead th {
  background: var(--surface);
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--success); font-weight: 700; }
.compare .no { color: var(--text-soft); }

/* ============== Testimonials ============== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.tcard {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.tcard__stars { color: var(--accent-dark); letter-spacing: 2px; margin-bottom: 12px; }
.tcard__quote { color: var(--text); font-size: 15px; margin: 0 0 16px; }
.tcard__name { font-weight: 700; color: var(--text-muted); font-size: 14px; }

/* ============== FAQ ============== */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-dark);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 24px 22px; color: var(--text-muted); }

/* ============== Forms ============== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============== CTA banner ============== */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -10%;
  width: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(210, 165, 56, 0.45), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
}

/* ============== Footer ============== */
.site-footer {
  background: #000000;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  margin-top: 96px;
}
.site-footer h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 6px 0;
  font-size: 14px;
}
.site-footer a:hover { color: #fff; }
.site-footer p { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer__brand img { height: 32px; margin-bottom: 16px; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============== Page header (interior) ============== */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(700px 350px at 90% -30%, rgba(210, 165, 56, 0.18), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 720px; font-size: 1.125rem; }

/* ============== Two-column content ============== */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.split--reverse > div:first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > div:first-child { order: 0; }
}

/* ============== Utility ============== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.0625rem; }

.list-check { list-style: none; padding: 0; margin: 0 0 1em; }
.list-check li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-muted);
}
.list-check li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(210, 165, 56, 0.16);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A07F26' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
}

/* Skip-to-content */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; color: #fff; }
