/* ============================================================
   Masterbills Group — Design system inspired by Interswitch
   Clean corporate: dark header · white body · minimal ornament
   ============================================================ */

:root {
  --brand:       #0c6c5b;
  --brand-dark:  #0a1f1a;
  --brand-mid:   #134d3f;
  --accent:      #e07b0a;
  --accent-soft: #fef3e2;
  --white:       #ffffff;
  --ink:         #0d1f18;
  --muted:       #5a6b64;
  --divider:     #e4e9e7;
  --surface:     #f6faf8;
  --card-bg:     #ffffff;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:   0 2px 8px rgba(0,0,0,0.07), 0 8px 28px rgba(0,0,0,0.06);
  --radius:      12px;
  --radius-lg:   20px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  margin: 0 0 14px;
  line-height: 1.14;
  color: var(--ink);
}

p { margin: 0 0 14px; color: var(--muted); }

a { text-decoration: none; color: inherit; }

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

/* ── Layout ── */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: 80px 0; }

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--divider);
}

.section-heading { margin-bottom: 48px; }

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 22ch;
}

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

/* ── Site header — dark, Interswitch style ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.header-bar {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: .78rem;
  color: rgba(255,255,255,0.44);
}

.header-bar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.header-bar-links a,
.header-bar-wrap span { color: rgba(255,255,255,0.44); }

.header-bar-links a:hover { color: rgba(255,255,255,0.88); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; min-width: 0; }

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  transition: background-color .15s ease, color .15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 6px;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}

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

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

.btn-primary:hover { background: #c96d08; border-color: #c96d08; }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.82);
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-ghost-dark {
  background: transparent;
  border-color: var(--divider);
  color: var(--ink);
}

.btn-ghost-dark:hover { border-color: var(--brand); color: var(--brand); }

.external-link::after { content: " ↗"; font-size: .8rem; }

/* ── Hero — full-bleed ── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--brand-dark);
}

.hero-section video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,31,26,.72) 0%, rgba(10,31,26,.52) 55%, rgba(10,31,26,.84) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 110px 0 56px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(224,123,10,.18);
  border: 1px solid rgba(224,123,10,.32);
  color: #f5b862;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-eyebrow,.hero .eyebrow {
  display: block;
  color: rgba(255,255,255,.46);
  margin-bottom: 14px;
}

.hero-body h1,.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  max-width: 14ch;
  margin-bottom: 22px;
}

.hero-copy {
  color: rgba(255,255,255,.68);
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-metrics {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}

.hero-metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}

.metric-tile {
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.metric-tile:last-child { border-right: none; }

.metric-tile strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  font-family: "Sora", sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-tile span {
  font-size: .78rem;
  color: rgba(255,255,255,.50);
  font-weight: 500;
}

/* legacy quick-metrics used inside container on other pages */
.quick-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  padding: 40px 0;
}

.quick-metrics .metric-tile {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.quick-metrics .metric-tile strong { color: var(--brand); font-size: 1.5rem; }
.quick-metrics .metric-tile span { color: var(--muted); }

/* ── Cards ── */
.card,.service-card,.content-card,.unit-card,.contact-panel,.quote-card,.job-card,.metric-card,.process-grid article {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.card:hover,.unit-card:hover {
  border-color: rgba(12,108,91,.26);
  box-shadow: var(--shadow-md);
}

/* ── Grid layouts ── */
.cards,.split,.three-up,.process-grid,.timeline,.logo-grid,.jobs-grid,.feature-grid,.unit-grid,.contact-grid,.market-grid,.footer-grid {
  display: grid;
  gap: 20px;
}

.three-up,.unit-grid,.jobs-grid,.feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.split,.contact-grid { grid-template-columns: 1.1fr .9fr; }

.process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.process-grid span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(12,108,91,.1);
  color: var(--brand);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 14px;
}

.page-title { font-size: clamp(2rem, 4vw, 3.25rem); max-width: 18ch; }

/* ── Media bands ── */
.media-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--divider);
  background-size: cover;
  background-position: center;
}

.media-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,22,.08), rgba(10,30,22,.55));
}

.media-1 { background-image: url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?auto=format&fit=crop&w=1600&q=80'); }
.media-2 { background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80'); }
.media-3 { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80'); }

/* ── Market cards ── */
.market-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--divider);
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,24,18,.08), rgba(8,24,18,.78));
}

.market-card > div { position: relative; z-index: 1; padding: 24px; width: 100%; }

.market-card span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(224,123,10,.22);
  border: 1px solid rgba(224,123,10,.3);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f5b862;
  font-weight: 700;
}

.market-card h3,.market-card p { color: #fff; margin-bottom: 4px; }

.market-lagos  { background-image: url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?auto=format&fit=crop&w=1600&q=80'); }
.market-accra  { background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80'); }
.market-nairobi{ background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80'); }

/* ── Status badges ── */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.status-live { background: #e6f7ed; color: #1a6b3a; border: 1px solid #b8e5c8; }
.status-soon { background: var(--accent-soft); color: #8a4d06; border: 1px solid #f5d8a8; }

/* ── Unit logo ── */
.unit-logo {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--divider);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 14px;
  overflow: hidden;
}

.unit-logo img { display: block; width: 100%; height: auto; }

.unit-logo-large { width: min(260px, 100%); margin-bottom: 16px; }
.unit-logo-large img { display: block; width: 100%; height: auto; }

/* ── Misc ── */
.disclaimer {
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  background: var(--accent-soft);
  color: #6b3b05;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem;
  font-weight: 600;
}

.simple-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.9; }

.timeline { grid-template-columns: 1fr; gap: 0; }

.timeline article {
  border-left: 3px solid var(--divider);
  padding: 0 0 32px 24px;
  margin-left: 12px;
  position: relative;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -8px; top: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--brand);
}

.timeline time {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: 800;
}

.contact-form label { display: block; margin-bottom: 14px; font-size: .9rem; color: var(--ink); font-weight: 500; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }

.contact-form input,.contact-form select,.contact-form textarea {
  width: 100%;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px 14px;
  margin-top: 6px;
  font: inherit;
  color: var(--ink);
  transition: border-color .15s ease;
}

.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { outline: none; border-color: var(--brand); }

.contact-form textarea { resize: vertical; }

.status-msg {
  margin: 10px 0 16px;
  font-size: .9rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid #b8e5c8;
  background: #e6f7ed;
  color: #1a6b3a;
}

.card-actions,.contact-actions,.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Explore grid ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
}

.explore-card {
  padding: 28px 20px;
  border-right: 1px solid var(--divider);
  position: relative;
  transition: background-color .15s ease;
}

.explore-card:last-child { border-right: none; }

.explore-card:hover { background: var(--surface); }

.explore-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.explore-card:nth-child(1)::before { background: var(--brand); }
.explore-card:nth-child(2)::before { background: var(--accent); }
.explore-card:nth-child(3)::before { background: #1e73a8; }
.explore-card:nth-child(4)::before { background: #7b3fa8; }
.explore-card:nth-child(5)::before { background: #b01c1c; }

.explore-label {
  display: block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.explore-card h3 { font-size: .94rem; line-height: 1.3; color: var(--ink); margin-bottom: 8px; }

.explore-card p { font-size: .82rem; margin: 0; }

.explore-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  transition: gap .15s ease;
}

.explore-card:hover .explore-arrow { gap: 8px; }

/* ── Journey band ── */
.journey-band { background: var(--brand-dark); padding: 80px 0; }

.journey-band .eyebrow { color: var(--accent); }

.journey-band h2 { color: #fff; font-size: clamp(1.8rem,3.2vw,2.8rem); max-width: 22ch; }

.journey-band .section-heading { margin-bottom: 44px; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.journey-era {
  background: rgba(255,255,255,.04);
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background-color .15s ease;
}

.journey-era:last-child { border-right: none; }

.journey-era:hover { background: rgba(255,255,255,.07); }

.era-years {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(224,123,10,.18);
  border: 1px solid rgba(224,123,10,.28);
  color: #f5b862;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.journey-era h3 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }

.journey-era p { color: rgba(255,255,255,.56); font-size: .87rem; margin: 0; }

/* ── Newsletter strip ── */
.newsletter-strip {
  background: var(--brand-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-copy h2 { color: #fff; font-size: clamp(1.5rem,2.6vw,2.1rem); max-width: 24ch; margin-bottom: 8px; }

.newsletter-copy p { color: rgba(255,255,255,.52); max-width: 44ch; margin: 0; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 280px;
  max-width: 440px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.36); }

.newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }

.newsletter-form button {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}

.newsletter-form button:hover { background: #c96d08; transform: translateY(-1px); }

/* ── Footer ── */
.site-footer {
  background: var(--brand-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
}

.footer-shell { padding: 0; background: transparent; border-radius: 0; box-shadow: none; }

.footer-inner { padding: 60px 0 0; }

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  flex-wrap: wrap;
}

.footer-kicker {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.footer-hero h2 { color: #fff; font-size: clamp(1.55rem,2.8vw,2.4rem); max-width: 24ch; margin-bottom: 0; }

.footer-grid {
  grid-template-columns: 1.5fr repeat(3, minmax(0,1fr));
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand-block p { color: rgba(255,255,255,.4); font-size: .88rem; max-width: 32ch; }

.footer-brand { display: inline-block; margin-bottom: 16px; }

.footer-brand .brand-logo {
  width: min(190px, 100%);
  filter: brightness(0) invert(1);
  opacity: .82;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-grid;
  place-items: center;
  font-size: .74rem;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  transition: background .15s ease, color .15s ease;
}

.footer-social a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.footer-grid h4 {
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-list { display: grid; gap: 10px; }

.footer-list a { color: rgba(255,255,255,.48); font-size: .88rem; transition: color .15s ease; }

.footer-list a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p { color: rgba(255,255,255,.34); font-size: .82rem; margin: 0; }

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.footer-links a { color: rgba(255,255,255,.38); font-size: .82rem; transition: color .15s ease; }

.footer-links a:hover { color: rgba(255,255,255,.82); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hidden { display: none !important; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-actions { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 960px) {
  .header-bar { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    padding: 12px 16px;
    flex-direction: column;
    align-items: stretch;
    background: #0e2820;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .hero-section { min-height: 70vh; }

  .hero-metrics-inner,
  .quick-metrics,
  .three-up,
  .unit-grid,
  .jobs-grid,
  .feature-grid,
  .process-grid,
  .split,
  .contact-grid,
  .form-grid,
  .market-grid,
  .footer-grid,
  .journey-grid { grid-template-columns: 1fr; }

  .metric-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .metric-tile:last-child { border-bottom: none; }

  .journey-era { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .journey-era:last-child { border-bottom: none; }

  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; width: 100%; }

  .footer-hero,.footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero-body { padding: 80px 0 44px; }
  .brand-logo { width: min(150px, 48vw); }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { border-right: none; border-bottom: 1px solid var(--divider); }
  .explore-card:last-child { border-bottom: none; }
  .btn { padding: 10px 16px; font-size: .84rem; }
}