/* ============================================================
   CHEDDERS PAY — components.css
   Buttons · Navbar · Cards · Footer · Hero · Forms · Panels
   V3 DNA Compliant
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   BUTTONS — V3 §7.3
   ══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 24px;
  min-height: 44px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}

/* Primary — accent bg */
.btn--primary {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn--primary:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary — outline accent */
.btn--secondary {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--secondary:hover {
  background-color: var(--accent-subtle);
  color: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
}

/* Ghost — subtle */
.btn--ghost {
  background-color: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background-color: var(--accent-subtle);
}

/* Light (used on dark panels) */
.btn--light {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  font-weight: 700;
}

.btn--light:hover {
  background-color: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

/* Sizes */
.btn--sm {
  font-size: 13px;
  padding: 8px 18px;
  min-height: 36px;
}

.btn--lg {
  font-size: 15px;
  padding: 14px 30px;
  min-height: 50px;
}

/* Group */
.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 400px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════
   NAVBAR — V3 §7.1
   ══════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  background-color: var(--surface);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              background-color var(--transition-base);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.navbar__logo:hover {
  color: var(--accent);
}

.navbar__logo-mark {
  width: 32px;
  height: 32px;
  background-color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  transition: background-color var(--transition-fast);
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition-fast),
              background-color var(--transition-fast);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text);
  background-color: var(--surface-2);
}

.navbar__links a.active {
  color: var(--accent);
}

/* Right cluster */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast),
              border-color var(--transition-fast),
              background-color var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent-border);
  background-color: var(--accent-subtle);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  pointer-events: none;
}

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
  transition: border-color var(--transition-fast);
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--text);
  border-radius: 1px;
  transition: transform var(--transition-fast),
              opacity var(--transition-fast);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px var(--shadow-md);
  padding: 16px 20px 20px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base),
              opacity var(--transition-fast);
}

.navbar__mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar__mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.navbar__mobile-menu ul a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.navbar__mobile-menu ul a:hover {
  background-color: var(--surface-2);
  color: var(--accent);
}

.navbar__mobile-menu .btn {
  width: 100%;
}

@media (max-width: 991px) {
  .navbar__links       { display: none; }
  .navbar__hamburger   { display: flex; }
  .navbar__right .btn  { display: none; }
}

@media (min-width: 992px) {
  .navbar__mobile-menu { display: none !important; }
}

/* ══════════════════════════════════════════════════════════
   HERO — V3 §7.2
   ══════════════════════════════════════════════════════════ */

.hero {
  /* No min-height:100vh — let content drive the height naturally */
  padding-top: 60px; /* navbar offset */
  display: flex;
  align-items: center;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
  transition: background-color var(--transition-base);
}

.hero__inner {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero grid — desktop: side by side */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  background-color: var(--accent-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: background-color var(--transition-base),
              border-color var(--transition-base);
}

/* DNA-compliant: clamp(28px, 4vw, 42px) — §3.3, letter-spacing -0.02em */
.hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Contain stat chips so they don't bleed viewport */
  padding: 24px 20px;
}

.hero__card-wrap {
  position: relative;
  /* Fill the full column width — card is landscape, not square */
  width: 100%;
  max-width: 100%;
}

.hero__card-img {
  width: 100%;
  /* Card aspect ratio — landscape credit card proportions */
  aspect-ratio: 85.6 / 54;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px var(--shadow-lg);
  transition: box-shadow var(--transition-base);
  display: block;
  /* Blend away white background on dark surfaces */
  mix-blend-mode: multiply;
}

[data-theme="light"] .hero__card-img {
  mix-blend-mode: normal;
  border: 1px solid var(--border);
}

/* Stat chips — contained within hero__visual padding */
.hero__stat {
  position: absolute;
  background-color: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  box-shadow: 0 8px 24px var(--shadow-md);
  white-space: nowrap;
  transition: background-color var(--transition-base),
              border-color var(--transition-base);
  /* Keep chips inside the padded visual container */
  z-index: 2;
}

.hero__stat--top    { top: 4px;    right: 4px; }
.hero__stat--bottom { bottom: 4px; left: 4px;  }

.hero__stat__label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* ══════════════════════════════════════════════════════════
   CARDS — V3 §7.4
   ══════════════════════════════════════════════════════════ */

.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: box-shadow var(--transition-base),
              transform var(--transition-base),
              border-color var(--transition-base),
              background-color var(--transition-base);
}

.card:hover {
  box-shadow: 0 6px 24px var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-border);
}

.card--flat {
  box-shadow: none;
  background-color: var(--surface-2);
}

.card--flat:hover {
  box-shadow: 0 4px 16px var(--shadow);
}

.card--featured {
  border-color: var(--accent-border);
  background-color: var(--surface-2);
}

/* Card icon — uses .icon-box from utilities */
.card .icon-box {
  margin-bottom: 16px;
}

.card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  transition: color var(--transition-base);
}

.card__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  transition: color var(--transition-base);
}

/* Feature card fills height */
.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Status card row */
.status-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.status-dot--complete { background-color: var(--success); }
.status-dot--progress { background-color: var(--accent);  }
.status-dot--future   { background-color: var(--muted);   }

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.check-list__item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--success);
  stroke: var(--success);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   FORMS — V3 §7.5
   ══════════════════════════════════════════════════════════ */

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  transition: color var(--transition-base);
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background-color: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  -webkit-appearance: none;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background-color var(--transition-base);
}

.form-input::placeholder { color: var(--muted); opacity: 0.6; }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
  background-color: var(--surface-3);
}

.form-input--error { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

/* ══════════════════════════════════════════════════════════
   PROGRESS TAGS
   ══════════════════════════════════════════════════════════ */

.progress-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  letter-spacing: 0.02em;
}

.progress-tag--done {
  color: var(--success);
  border-color: rgba(0, 229, 160, 0.28);
  background-color: rgba(0, 229, 160, 0.08);
}

.progress-tag--wip {
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.28);
  background-color: rgba(245, 158, 11, 0.08);
}

.progress-tag--future {
  color: var(--muted);
  border-color: var(--border);
  background-color: var(--surface-2);
}

/* ══════════════════════════════════════════════════════════
   SECTION LAYOUT GRIDS (pulled from inline HTML)
   ══════════════════════════════════════════════════════════ */

/* About 2-col */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Why 2-col */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Merchant 2-col */
.merchant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Dev status 3-col */
.dev-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Stat cards 2-col inside about */
.stat-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Pillar rows */
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base),
              background-color var(--transition-base);
}

.pillar-item:hover {
  border-color: var(--accent-border);
}

.pillar-item__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.pillar-item__body {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Merchant flow panel */
.merchant-panel {
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.merchant-panel::before,
.merchant-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.merchant-panel::before {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -40px;
  background: rgba(255,255,255,0.03);
}

.merchant-panel::after {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: -30px;
  background: rgba(255,255,255,0.02);
}

.merchant-panel__inner { position: relative; z-index: 1; }

.merchant-panel__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 20px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.flow-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-step__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.flow-step__sub {
  font-size: 13px;
  opacity: 0.6;
  margin: 0;
}

.flow-connector {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
  margin-left: 18px;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════════════════
   EARLY ACCESS PANEL
   ══════════════════════════════════════════════════════════ */

.access-panel {
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.access-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%,
    rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.access-panel__inner { position: relative; z-index: 1; }

.access-panel__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}

.access-panel h2  { color: #ffffff; margin-bottom: 10px; }
.access-panel > .access-panel__inner > p { color: rgba(255,255,255,0.72); margin-bottom: 28px; }

.access-form-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

/* Replaces inline style="flex:1" — §10.2 no inline styles */
.access-email-group {
  flex: 1;
}

.access-form-row .form-label { color: rgba(255,255,255,0.65); text-align: left; }

.access-panel .form-input {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #ffffff;
  border-radius: var(--radius-md);
}

.access-panel .form-input::placeholder { color: rgba(255,255,255,0.4); }

.access-panel .form-input:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.access-panel__note {
  font-size: 12px;
  opacity: 0.45;
  margin-top: 16px;
  margin-bottom: 0;
}

#access-message {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: rgba(200, 255, 220, 0.9);
}

#access-message.show { opacity: 1; }
#access-message.error { color: rgba(255, 180, 180, 0.9); }

/* ══════════════════════════════════════════════════════════
   FOOTER — V3 §7.7  4 columns at ALL breakpoints
   ══════════════════════════════════════════════════════════ */

.footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  transition: background-color var(--transition-base),
              border-color var(--transition-base);
}

.footer__main { padding: 56px 0 40px; }

/* 4-column grid — locked at all widths */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

/* Brand */
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__brand-logo:hover { color: var(--accent); }

.footer__brand-logo-mark {
  width: 28px;
  height: 28px;
  background-color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--accent); }

/* Footer bottom bar */
.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* Social links */
.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color var(--transition-fast),
              color var(--transition-fast),
              background-color var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background-color: var(--accent-subtle);
}

.footer__social-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════
   ADDITIONAL HELPERS used by index.html
   ══════════════════════════════════════════════════════════ */

/* About stat cards */
.stat-number {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.small-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.fs-sm  { font-size: 14px !important; }
.fs-stat { font-size: 17px; font-weight: 700; }
.mt-xs  { margin-top: var(--space-xs); }

/* Full-span inside 2-col stat grid */
.full-span { grid-column: 1 / -1; }

/* Founder card layout */
.founder-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Access form submit alignment */
.form-submit-wrap {
  display: flex;
  align-items: flex-end;
}

/* Ecosystem icon centred */
.mx-auto { margin-left: auto; margin-right: auto; }

/* nav active link colour */
.navbar__links a.active { color: var(--accent); }

/* Bootstrap text-center compat */
.text-center { text-align: center; }

/* mb-0 safety */
.mb-0 { margin-bottom: 0 !important; }
