/* ==========================================================================
   CeletelPay – Global Stylesheet
   A palm payment & biometric POS brand, sub-brand of Celetel
   ========================================================================== */

:root {
  /* Brand palette */
  --brand-navy:      #0A1F44;
  --brand-navy-2:    #0E2A5C;
  --brand-ink:       #0B1220;
  --brand-teal:      #00E0B8;
  --brand-teal-dk:   #00B89A;
  --brand-sky:       #38BDF8;
  --brand-violet:    #7C5CFF;
  --brand-amber:     #FFB648;

  /* Neutrals */
  --surface:         #FFFFFF;
  --surface-2:       #F5F7FB;
  --surface-3:       #EDF1F8;
  --line:            #E3E8F1;
  --text:            #0F172A;
  --text-2:          #475569;
  --text-3:          #64748B;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(10, 31, 68, .06), 0 1px 3px rgba(10, 31, 68, .04);
  --shadow-md:  0 8px 24px rgba(10, 31, 68, .08), 0 2px 6px rgba(10, 31, 68, .04);
  --shadow-lg:  0 24px 60px rgba(10, 31, 68, .14), 0 8px 20px rgba(10, 31, 68, .08);
  --shadow-glow: 0 20px 60px rgba(0, 224, 184, .25);

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

  --container: 1200px;
  --gutter: clamp(16px, 3vw, 28px);

  --grad-hero: radial-gradient(1200px 600px at 85% -10%, rgba(0,224,184,.22), transparent 60%),
               radial-gradient(800px 500px at -10% 20%, rgba(124,92,255,.18), transparent 60%),
               linear-gradient(180deg, #0A1F44 0%, #0B1220 100%);
  --grad-teal: linear-gradient(135deg, #00E0B8 0%, #38BDF8 100%);
  --grad-dark: linear-gradient(180deg, #0A1F44, #081634);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; color: var(--text-2); }
ul { padding-left: 1.1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-teal-dk); font-weight: 700;
  padding: 6px 12px; background: rgba(0,224,184,.10); border-radius: 999px;
}
.eyebrow.on-dark { color: #7CF0D8; background: rgba(0,224,184,.14); }
.eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--brand-teal); border-radius: 50%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; font-weight: 600; font-size: .95rem;
  border-radius: 999px; transition: transform .15s ease, box-shadow .2s ease, background .2s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--grad-teal); color: #062B26; box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-outline {
  border: 1.5px solid var(--line); color: var(--text); background: transparent;
}
.btn-outline:hover { border-color: var(--brand-navy); background: var(--surface-2); }
.btn-ghost-dark {
  color: #fff; border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.04);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em;
  color: var(--brand-navy);
}
.brand-logo .logomark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-teal);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.brand-logo .logomark svg { width: 22px; height: 22px; }
.brand-logo small {
  display: block; font-size: .62rem; letter-spacing: .22em; color: var(--text-3);
  font-weight: 600; text-transform: uppercase; margin-top: -2px;
}

.nav-list {
  display: flex; align-items: center; gap: 28px;
  list-style: none; padding: 0; margin: 0;
}
.nav-list a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: 8px 2px; border-bottom: 2px solid transparent; transition: border-color .2s, color .2s;
}
.nav-list a:hover, .nav-list a.active { color: var(--brand-navy); border-color: var(--brand-teal); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }
.nav-drawer { display: none; }

@media (max-width: 960px) {
  .nav-list, .nav-cta .btn-outline { display: none; }
  .nav-toggle {
    display: inline-flex; width: 42px; height: 42px; border-radius: 10px;
    border: 1px solid var(--line); align-items: center; justify-content: center;
  }
  .nav-drawer {
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px var(--gutter);
  }
  .nav-drawer.open { display: block; }
  .nav-drawer a {
    display: block; padding: 14px 0; border-bottom: 1px solid var(--line);
    color: var(--text); font-weight: 500;
  }
  .nav-drawer a:last-child { border-bottom: 0; }
}

/* ---------- Hero (generic) ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--grad-hero);
}
.hero .container { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 110px; }
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: var(--grad-teal); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero p.lead { color: #C6D4EA; font-size: 1.125rem; max-width: 620px; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block; font-size: 1.9rem; color: #fff; font-weight: 800; letter-spacing: -0.02em;
}
.hero-stats .stat span { color: #93A7C4; font-size: .9rem; }

/* animated grid in dark sections */
.bg-grid::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
}

/* ---------- Sections ---------- */
section { padding: 92px 0; }
section.tight { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--text-2); font-size: 1.05rem; }

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.trust-bar .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0; flex-wrap: wrap;
}
.trust-bar .label { font-size: .8rem; color: var(--text-3); letter-spacing: .14em; text-transform: uppercase; }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; opacity: .75; }
.trust-logos span {
  font-weight: 800; letter-spacing: -0.02em; color: var(--text-3); font-size: 1rem;
}

/* ---------- Feature Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #D6DEEB; }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0,224,184,.15), rgba(56,189,248,.15));
  color: var(--brand-teal-dk); display: grid; place-items: center;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--text-2); font-size: .98rem; }

/* ---------- Product Card ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .pc-media {
  aspect-ratio: 4 / 3;
  background: var(--grad-dark);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.product-card .pc-media::after {
  content: ""; position: absolute; inset: auto -30% -60% -30%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(0,224,184,.28), transparent 70%);
}
.product-card .pc-media svg { width: 58%; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.product-card .pc-media img { max-width: 78%; max-height: 88%; width: auto; height: auto; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 22px 40px rgba(0,0,0,.45)); }
.product-card .pc-media-photo { background: linear-gradient(160deg,#0E1730 0%,#091124 60%,#050B1A 100%); }
.product-card .pc-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card .pc-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-teal-dk); margin-bottom: 8px;
}
.product-card h3 { margin: 0 0 6px; }
.product-card .pc-model { font-size: .88rem; color: var(--text-3); margin-bottom: 14px; font-weight: 500; }
.product-card p { flex: 1; font-size: .95rem; }
.product-card .pc-link {
  margin-top: 16px; font-weight: 600; color: var(--brand-navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card .pc-link:hover { color: var(--brand-teal-dk); }

/* ---------- Split / Feature rows ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse { direction: ltr; } }

.feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .98rem; color: var(--text-2);
}
.feature-list li::before {
  content: ""; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,224,184,.14);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300B89A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
  margin-top: 2px;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--grad-dark); color: #fff; border-radius: var(--radius-xl);
  padding: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 260px at 10% 10%, rgba(0,224,184,.22), transparent 70%),
    radial-gradient(400px 260px at 90% 90%, rgba(124,92,255,.22), transparent 70%);
}
.stats-strip .stat { position: relative; }
.stats-strip strong {
  display: block; font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em;
  background: var(--grad-teal); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stats-strip span { color: #CFDBEE; font-size: .92rem; }
@media (max-width: 800px) { .stats-strip { grid-template-columns: 1fr 1fr; padding: 32px; } }

/* ---------- Testimonial ---------- */
.quote {
  background: var(--surface-2); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--line);
}
.quote p { font-size: 1.12rem; color: var(--text); font-weight: 500; line-height: 1.6; }
.quote .byline {
  display: flex; gap: 14px; align-items: center; margin-top: 18px;
}
.quote .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-teal); color: var(--brand-navy);
  display: grid; place-items: center; font-weight: 800;
}
.quote .byline strong { color: var(--text); display: block; font-size: .96rem; }
.quote .byline span { color: var(--text-3); font-size: .85rem; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ind-grid { grid-template-columns: 1fr; } }
.ind {
  padding: 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; display: flex; gap: 16px; align-items: flex-start;
  transition: transform .2s, border-color .2s;
}
.ind:hover { transform: translateY(-2px); border-color: var(--brand-teal); }
.ind .ind-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; color: var(--brand-navy); flex: 0 0 44px; }
.ind h4 { margin: 0 0 4px; font-size: 1.05rem; color: var(--text); }
.ind p { margin: 0; font-size: .92rem; color: var(--text-3); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-hero); color: #fff; border-radius: var(--radius-xl);
  padding: 56px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #C6D4EA; margin: 0; max-width: 520px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-ink); color: #B8C6DC; padding: 72px 0 30px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  margin: 0 0 14px; font-weight: 700;
}
.footer-grid a { color: #B8C6DC; font-size: .92rem; display: block; padding: 6px 0; }
.footer-grid a:hover { color: #fff; }
.footer-grid .brand-block p { color: #8FA2BE; font-size: .9rem; margin-top: 10px; max-width: 320px; }
.footer-grid .brand-block .logo-w {
  display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800;
}
.footer-grid .brand-block .logomark { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-teal); display: grid; place-items: center; }
.footer-grid .brand-block .logomark svg { width: 22px; height: 22px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: .85rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom .sub-mark { color: #8FA2BE; }
.footer-bottom .sub-mark b { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
  display: inline-grid; place-items: center; color: #B8C6DC;
}
.socials a:hover { color: #fff; border-color: rgba(255,255,255,.3); }

/* ---------- Page Hero (non-home) ---------- */
.page-hero {
  background: var(--grad-hero); color: #fff; padding: 90px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #C6D4EA; max-width: 720px; font-size: 1.08rem; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center; list-style: none; padding: 0; margin: 0 0 18px;
  color: #8FA2BE; font-size: .86rem;
}
.breadcrumb a { color: #B8C6DC; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #556687; }

/* ---------- Tables & specs ---------- */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.spec-table th, .spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .95rem; }
.spec-table th { width: 32%; color: var(--text-3); font-weight: 600; background: var(--surface-2); }
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom: 0; }

/* Multi-column comparison table (products.html) — equal-width product columns */
.compare-table { table-layout: fixed; }
.compare-table th, .compare-table td { width: auto; white-space: normal; word-break: normal; overflow-wrap: break-word; }
.compare-table thead th { color: var(--brand-navy); font-weight: 700; font-size: 1rem; background: #fff !important; }
.compare-table tbody th { background: var(--surface-2); }
.compare-table td { color: var(--text); }

/* ---------- Contact form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { font-size: .88rem; color: var(--text-2); font-weight: 600; display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--text); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-teal); box-shadow: 0 0 0 3px rgba(0,224,184,.18);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- Misc ---------- */
.media-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--grad-dark); aspect-ratio: 1; display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.media-card svg { width: 72%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.media-card img { max-width: 82%; max-height: 86%; width: auto; height: auto; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 24px 48px rgba(0,0,0,.5)); }
.media-card-photo { background: linear-gradient(160deg,#0E1730 0%,#091124 60%,#050B1A 100%); }
.media-card::after {
  content:""; position: absolute; inset: auto -20% -50% -20%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(0,224,184,.28), transparent 70%);
}

.badge {
  display: inline-flex; gap: 6px; align-items: center;
  padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  background: rgba(0,224,184,.12); color: var(--brand-teal-dk);
}

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag-row .tag {
  font-size: .78rem; padding: 5px 12px; border-radius: 999px;
  background: var(--surface-2); color: var(--text-2); border: 1px solid var(--line);
}

/* Blog */
.article-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card .thumb { aspect-ratio: 16 / 9; background: var(--grad-dark); position: relative; overflow: hidden; }
.article-card .thumb::after {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(0,224,184,.25), transparent 60%);
}
.article-card .thumb span.cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(0,0,0,.45); color: #fff; font-size: .72rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
}
.article-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.article-card .meta { color: var(--text-3); font-size: .85rem; margin-top: auto; padding-top: 12px; }

.prose { max-width: 760px; margin: 0 auto; }
.prose p, .prose li { color: var(--text-2); font-size: 1.05rem; line-height: 1.75; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-l { margin-top: 28px; }
.text-muted { color: var(--text-3); }
.divider { height: 1px; background: var(--line); margin: 64px 0; }
