/* Zoomlly Corporation - Public site styles */
:root {
  --brand: #0b5fff;
  --brand-2: #1ec8ff;
  --ink: #0b1d3a;
  --ink-2: #1f2d4a;
  --muted: #5a6b85;
  --line: #e5ebf3;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-dark: #0b1d3a;
  --accent: #ff8a3d;
  --ok: #16a34a;
  --warn: #d97706;
  --danger: #dc2626;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(11,29,58,.06), 0 1px 1px rgba(11,29,58,.04);
  --shadow: 0 8px 24px rgba(11,29,58,.08);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; line-height: 1.2; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-2); }

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

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bg-dark);
  color: #cfd8e8;
  font-size: .82rem;
}
.topbar .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px; max-width: var(--maxw); margin: 0 auto;
}
.topbar a { color: #cfd8e8; }
.topbar .links a { margin-left: 18px; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: linear-gradient(180deg, #061229 0%, #0b1d3a 100%);
  border-bottom: 1px solid #1c3056;
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  color: #e3eaf6; padding: 8px 12px; border-radius: 6px; font-weight: 500;
}
.nav-links a:hover { background: rgba(255,255,255,.06); color: #fff; text-decoration: none; }
.nav-links a.active { color: #7fd4ff; }
.nav-cta {
  background: var(--brand); color: #fff !important; padding: 8px 14px;
  border-radius: var(--radius); font-weight: 600;
  box-shadow: 0 0 0 1px rgba(127,212,255,.25), 0 6px 18px rgba(11,95,255,.35);
}
.nav-cta:hover { background: #0a4ed1; text-decoration: none; }

.menu-toggle {
  display: none; background: rgba(255,255,255,.06); border: 1px solid #1c3056;
  color: #e3eaf6; padding: 8px 10px; border-radius: 6px; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 420px at 90% -10%, rgba(30,200,255,.28), transparent 60%),
    radial-gradient(800px 380px at -10% 110%, rgba(11,95,255,.35), transparent 60%),
    linear-gradient(160deg, #061229 0%, #0b1d3a 45%, #11305f 100%);
  color: #fff;
  padding: 72px 0 64px;
  border-bottom: 1px solid #1c3056;
}
.hero-circuits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.hero > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-circuits .pulses { display: none; }
  .hero-circuits .vias circle animate { display: none; }
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 16px; color: #fff; }
.hero p.lead { font-size: 1.15rem; color: #cfd8e8; max-width: 56ch; }
.hero .tag { background: rgba(30,200,255,.15); color: #7fd4ff; border: 1px solid rgba(127,212,255,.35); }
.hero .actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 22px;
}
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.hero-stats .stat { background: var(--bg-soft); border-radius: 10px; padding: 14px; text-align: center; }
.hero-stats .num { font-size: 1.6rem; font-weight: 700; color: var(--brand); }
.hero-stats .lbl { font-size: .8rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 18px; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; border: 1px solid transparent;
  transition: transform .04s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: #0a4ed1; text-decoration: none; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #142a52; text-decoration: none; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-title {
  text-align: center; max-width: 720px; margin: 0 auto 36px;
}
.section-title .eyebrow {
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem;
  color: var(--brand); font-weight: 700; margin-bottom: 8px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #cfdcef; }
.card .icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; color: #fff; font-weight: 700; margin-bottom: 12px;
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); margin-bottom: 0; }

/* ---------- Capabilities (white band, accent treatment) ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cap-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cap-card {
  --accent: #38bdf8;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px 22px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.cap-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 80%);
}
.cap-card::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: .08;
  transition: opacity .25s ease, transform .35s ease;
  pointer-events: none;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    0 24px 48px -24px rgba(11,29,58,.18),
    0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent),
    0 0 24px -8px var(--accent);
}
.cap-card:hover::after { opacity: .18; transform: scale(1.08); }

.cap-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%,
      color-mix(in srgb, var(--accent) 14%, #fff) 0%,
      color-mix(in srgb, var(--accent) 6%,  #fff) 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}
.cap-card:hover .cap-icon {
  transform: scale(1.06);
  box-shadow:
    0 0 18px -4px var(--accent),
    inset 0 0 0 1px rgba(255,255,255,.6);
}
.cap-icon svg { width: 30px; height: 30px; }

.cap-card h3 { color: var(--ink); font-size: 1.12rem; margin: 0 0 8px; }
.cap-card > p { color: var(--muted); font-size: .94rem; margin: 0; }
.cap-card ul {
  margin: 14px 0 0; padding-left: 18px; color: var(--ink-2);
  font-size: .9rem; line-height: 1.55;
}
.cap-card ul li { padding: 2px 0; }
.cap-card ul li::marker { color: var(--accent); }
.cap-card .tag {
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  margin-bottom: 10px;
}
.cap-card.is-spotlight {
  /* used on grid-2 layouts where cards have more content */
  padding: 28px 26px 26px;
}
.cap-card.stat-card .stat-num {
  font-size: 2.2rem; font-weight: 800; line-height: 1; color: var(--accent);
  margin-bottom: 12px; letter-spacing: -.02em;
}
.cap-card.value-card { padding: 22px 20px 20px; }
.cap-card.value-card h3 { font-size: 1.05rem; }

.cap-card.exec-card { padding: 22px 20px 20px; }
.cap-card.exec-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.cap-card.exec-card .exec-title {
  color: var(--accent); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px;
}
.cap-card.exec-card > p { font-size: .88rem; }
.cap-card .exec-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem; letter-spacing: .5px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #0b1d3a));
  margin-bottom: 14px;
  box-shadow: 0 4px 14px -4px var(--accent);
}

.cap-card.fact-card .fact-num {
  font-size: 2rem; font-weight: 800; line-height: 1; color: var(--accent);
  margin-bottom: 8px; letter-spacing: -.02em;
}
.cap-card.fact-card { padding: 22px 20px 20px; }
.cap-card.fact-card h3 { display: none; }

.cap-card.press-card { padding: 22px 22px 20px; }
.cap-card.press-card h3 { font-size: 1.08rem; line-height: 1.35; margin-bottom: 8px; }
.cap-card.press-card .press-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-size: .8rem;
}
.cap-card.press-card .press-date { color: var(--muted); font-weight: 600; }
.cap-card.press-card .press-cat {
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; font-size: .7rem;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding: 3px 8px; border-radius: 4px;
}
.cap-card.press-card .press-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  color: var(--accent); font-weight: 600; font-size: .9rem;
  transition: gap .2s ease;
}
.cap-card.press-card .press-link:hover { gap: 12px; text-decoration: none; }

.cap-card.office-card { padding: 22px 20px 20px; }
.cap-card.office-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cap-card.office-card .office-loc { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.cap-card.office-card .office-region {
  text-transform: uppercase; letter-spacing: 2px; font-size: .7rem; font-weight: 700;
  color: var(--accent); margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
}

/* ---------- Industries (dark band) ---------- */
.industries-dark {
  position: relative;
  overflow: hidden;
  padding: 90px 0 96px;
  background:
    radial-gradient(900px 360px at 90% 0%, rgba(30,200,255,.10), transparent 60%),
    radial-gradient(800px 360px at 5% 100%, rgba(11,95,255,.18), transparent 60%),
    linear-gradient(180deg, #061229 0%, #0b1d3a 55%, #0a1a36 100%);
  color: #fff;
  border-top: 1px solid #1c3056;
  border-bottom: 1px solid #1c3056;
}
/* Subtle ambient glows replace the previous grid pattern */
.industries-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 280px at 18% 35%, rgba(127,212,255,.10), transparent 65%),
    radial-gradient(500px 240px at 82% 65%, rgba(167,139,250,.08), transparent 65%);
  pointer-events: none;
}
.industries-dark .container { position: relative; z-index: 1; }
.industries-dark .section-title { margin-bottom: 44px; }
.industries-dark .section-title .eyebrow { color: #7fd4ff; }
.industries-dark .section-title h2 { color: #fff; }
.industries-dark .section-title p { color: #9fb2d4; }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry-card {
  --accent: #7fd4ff;
  position: relative;
  overflow: hidden;
  padding: 26px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.012) 100%);
  border: 1px solid rgba(127,212,255,.18);
  border-radius: 14px;
  backdrop-filter: blur(2px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.industry-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 80%);
  opacity: .85;
}
.industry-card::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: .12;
  transition: opacity .25s ease, transform .35s ease;
  pointer-events: none;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    0 24px 48px -24px rgba(0,0,0,.55),
    0 0 0 1px rgba(127,212,255,.08),
    0 0 30px -10px var(--accent);
}
.industry-card:hover::after { opacity: .28; transform: scale(1.08); }

.industry-card .icon-wrap {
  width: 54px; height: 54px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 24px -6px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.04);
}
.industry-card:hover .icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 24px -2px var(--accent), inset 0 0 0 1px rgba(255,255,255,.06);
}
.industry-card .icon-wrap svg { width: 30px; height: 30px; }

.industry-card h3 { color: #fff; font-size: 1.12rem; margin: 0 0 8px; }
.industry-card > p { color: #b9c6dd; font-size: .92rem; margin: 0 0 16px; }

.industry-card .badges {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
}
.industry-card .compl {
  font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(127,212,255,.08);
  color: var(--accent);
  border: 1px solid rgba(127,212,255,.25);
  padding: 4px 8px; border-radius: 4px; font-weight: 700;
  white-space: nowrap;
}

.industry-card .learn {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 600; font-size: .88rem;
  text-decoration: none;
  transition: gap .2s ease;
}
.industry-card .learn:hover { gap: 12px; text-decoration: none; }

@media (max-width: 1100px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
  .industries-dark { padding: 64px 0; }
}

/* ---------- Logos / trust strip (auto-scrolling marquee) ---------- */
.logos-marquee {
  position: relative;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 32px;
  overflow: hidden;
}
.logos-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 18px;
}
.logos-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logo-scroll 42s linear infinite;
}
.logos-track img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  opacity: .72;
  filter: saturate(.85);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.logos-track img:hover {
  opacity: 1;
  filter: saturate(1.1);
  transform: translateY(-2px);
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; transform: none; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #11305f 100%);
  color: #fff; border-radius: 14px; padding: 36px; display: grid;
  grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: #cfd8e8; margin-bottom: 0; }
.cta-banner .actions { justify-self: end; display: flex; gap: 10px; }

/* ---------- Page header ---------- */
.page-header {
  background:
    radial-gradient(900px 360px at 90% 0%, rgba(30,200,255,.22), transparent 60%),
    radial-gradient(700px 320px at 0% 100%, rgba(11,95,255,.30), transparent 60%),
    linear-gradient(160deg, #061229 0%, #0b1d3a 45%, #11305f 100%);
  color: #fff;
  padding: 56px 0 36px;
  border-bottom: 1px solid #1c3056;
}
.page-header h1 { color: #fff; }
.page-header p { color: #cfd8e8; }
.breadcrumb { color: #9fb2d4; font-size: .9rem; margin-bottom: 8px; }
.breadcrumb a { color: #9fb2d4; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 14px; max-width: 560px; }
.form label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.form input, .form select, .form textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: 1rem; background: #fff;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(11,95,255,.15);
}
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-help { font-size: .85rem; color: var(--muted); }

/* ---------- Tables ---------- */
table.simple {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
table.simple th, table.simple td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
table.simple th { background: var(--bg-soft); color: var(--ink); font-size: .9rem; }
table.simple tr:last-child td { border-bottom: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark); color: #cfd8e8; padding: 56px 0 24px; margin-top: 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 26px;
}
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.site-footer a { color: #cfd8e8; display: block; padding: 4px 0; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1c3056; margin-top: 32px; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: #98a8c2;
  flex-wrap: wrap; gap: 10px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 44px; }
.footer-tag { color: #98a8c2; font-size: .9rem; }

/* ---------- Sitemap ---------- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sitemap-grid section { padding: 0; }
.sitemap-grid h3 { margin-bottom: 8px; color: var(--brand); }
.sitemap-grid ul { list-style: none; padding-left: 0; margin: 0; }
.sitemap-grid li { padding: 4px 0; }

/* ---------- Misc ---------- */
.note {
  background: #fff8e6; border: 1px solid #f5deb3; padding: 12px 14px;
  border-radius: 8px; color: #6b5300; font-size: .9rem;
}
.kbd {
  background: #eef2f7; border: 1px solid #d6dde7; border-bottom-width: 2px;
  padding: 1px 6px; border-radius: 4px; font-family: ui-monospace, Menlo, monospace; font-size: .85rem;
}
.tag {
  display: inline-block; background: #eaf1fb; color: var(--brand);
  padding: 3px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .grid-4, .footer-grid, .sitemap-grid, .cta-banner {
    grid-template-columns: 1fr;
  }
  .cta-banner .actions { justify-self: start; }
  .hero h1 { font-size: 2.2rem; }
  h1 { font-size: 2rem; }
  .menu-toggle { display: inline-block; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: #0b1d3a; border-bottom: 1px solid #1c3056; padding: 12px 18px;
    flex-direction: column; align-items: stretch; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .topbar .links a { margin-left: 10px; }
}
