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

:root {
  --navy: #0b1f3a;
  --navy-mid: #112848;
  --blue: #1b60e8;
  --blue-light: #3b7ff5;
  --blue-pale: #ebf1fe;
  --teal: #0d7377;
  --slate: #4a5e74;
  --muted: #7a8fa6;
  --line: #d6e4ec;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --text: #1a2e42;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow: 0 4px 20px rgba(11, 31, 58, 0.07), 0 1px 6px rgba(11, 31, 58, 0.04);
  --shadow-lg: 0 12px 48px rgba(11, 31, 58, 0.1),
    0 4px 16px rgba(11, 31, 58, 0.05);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-brand img {
  width: 90px;
  height: 50px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.25);
  }
}

/* ── HERO ── */
.hero {
  padding: 7rem 2rem 6rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 96, 232, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid rgba(27, 96, 232, 0.2);
  color: var(--blue);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-sub strong {
  color: var(--navy);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  color: var(--slate);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--off-white);
  border-color: #b0c4d8;
  color: var(--navy);
}

/* hero card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hc-header {
  background: var(--navy);
  padding: 0.85rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hc-header span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hc-header code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #7fb3ff;
}
.hc-body {
  padding: 1.6rem;
}
.hc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.hc-row:last-child {
  border-bottom: none;
}
.hc-row .lbl {
  color: var(--muted);
  font-weight: 400;
}
.hc-row .val {
  font-weight: 600;
  color: var(--navy);
}
.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #dcfce7;
  color: #166534;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}
.badge-blue {
  background: var(--blue-pale);
  color: var(--blue);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-block;
}

/* ── GENERIC LAYOUT ── */
section {
  padding: 5rem 2rem;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}
.divider {
  width: 36px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 1.4rem 0;
}

/* ── AUDIENCE ── */
.audience {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.audience-note {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  margin-top: 1.8rem;
}
.audience-note p {
  font-size: 0.875rem;
  color: #78350f;
  font-style: italic;
  font-weight: 500;
}
.inst-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.inst-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inst-card:hover {
  border-color: rgba(27, 96, 232, 0.25);
  box-shadow: var(--shadow);
}
.inst-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.inst-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.inst-card p {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── CAPABILITIES ── */
.capabilities {
  background: var(--off-white);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.cap-cell {
  background: var(--white);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}
.cap-cell:hover {
  background: var(--blue-pale);
}
.cap-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.cap-icon i {
  color: var(--blue);
  font-size: 1.1rem;
}
.cap-cell h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.cap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cap-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.cap-list li::before {
  content: "—";
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 1px;
}

/* ── TEMBO CONNECT ── */
.connect {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.connect-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.connect-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.connect-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.connect-card-header {
  background: var(--navy);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.connect-card-header span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.connect-card-header code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #7fb3ff;
}
.connect-card-body {
  padding: 1.8rem;
}
.connect-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.8rem;
}
.connect-flow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.connect-flow-step + .connect-flow-step {
  margin-top: -1px;
  border-radius: 0;
}
.connect-flow-step:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.connect-flow-step:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.connect-flow-step i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.connect-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  font-size: 0.8rem;
  padding: 0.25rem 0;
  opacity: 0.5;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
}
.btn-download:hover {
  background: var(--blue);
  transform: translateY(-1px);
  color: #fff;
}
.connect-version {
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── INFRA ── */
.infra {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.infra-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.infra-text {
  flex: 1;
  min-width: 280px;
}
.infra-badges {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-shrink: 0;
}
.infra-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.infra-badge i {
  color: var(--blue);
  font-size: 1rem;
}
.infra-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── PRICING ── */
.pricing {
  background: var(--off-white);
}
.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pricing-header .section-sub {
  margin: 0 auto;
  max-width: 440px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.price-card.featured {
  border-color: rgba(27, 96, 232, 0.3);
  box-shadow: 0 0 0 3px rgba(27, 96, 232, 0.06), var(--shadow);
}
.price-card.dark {
  background: var(--navy);
  border-color: var(--navy);
}
.price-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--muted);
}
.price-card.featured .price-label {
  color: var(--blue);
}
.price-card.dark .price-label {
  color: rgba(255, 255, 255, 0.4);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1;
}
.price-card.dark .price-amount {
  color: var(--white);
}
.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.price-card.dark .price-period {
  color: rgba(255, 255, 255, 0.4);
}
.price-desc {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}
.price-card.dark .price-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* onboarding box */
.onboarding-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.ob-header {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ob-header span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.ob-header code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #7fb3ff;
}
.ob-body {
  padding: 3rem;
}
.ob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ob-fee {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.ob-fee .fee-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.ob-fee .fee-amount {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.ob-fee .fee-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.3rem;
}
.ob-steps {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.ob-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.ob-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.ob-step p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.ob-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.btn-cta-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27, 96, 232, 0.25);
}
.btn-cta-lg:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(27, 96, 232, 0.35);
  color: #fff;
}

/* ── FUTURE ── */
.future {
  background: var(--navy);
  padding: 5rem 2rem;
}
.future-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.future-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.future-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.2rem;
  max-width: 600px;
  line-height: 1.25;
}
.future-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  font-weight: 300;
}
.future-inner strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-copy {
  font-size: 0.83rem;
  color: var(--muted);
}
.footer-copy a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-copy a:hover {
  color: var(--blue);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .audience-grid,
  .ob-grid,
  .connect-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-card {
    display: none;
  }
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 3.5rem 1.2rem;
  }
  .hero {
    padding: 4.5rem 1.2rem 3.5rem;
  }
}

/* ── FADE IN ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.25s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.35s;
}
.hero-card-wrap {
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

.download-section {
  margin-top: 1.5rem;
}
.download-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.download-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.download-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  transition: all 0.3s ease;
}
.download-group.highlight {
  border-color: var(--blue);
  background: #f8faff;
  box-shadow: 0 4px 12px rgba(27, 96, 232, 0.08);
  order: -1; /* Moves recommended to the top */
}

.recommend-tag {
  display: none;
  font-size: 0.65rem;
  background: var(--blue);
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: auto;
}
.download-group.highlight .recommend-tag {
  display: inline-block;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.group-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.btn-dl-sm {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(27, 96, 232, 0.1);
  transition: all 0.2s;
}
.btn-dl-sm:hover {
  background: var(--blue);
  color: white;
}

.github-footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.github-footer-link:hover {
  color: var(--navy);
}
