/* ============================================================
   ONE WEB SOLUTION — Design System
   Deep navy base, blue → purple gradient signature, Space Grotesk + Inter
   ============================================================ */

:root {
  --bg: #080b14;
  --bg-alt: #0e1424;
  --card: #121933;
  --card-hover: #16204a;
  --border: #232e4d;
  --text: #f2f4fa;
  --text-muted: #8b93ae;
  --text-faint: #5b6584;
  --nav-bg: rgba(8, 11, 20, 0.82);
  --shadow-soft: rgba(0,0,0,0.5);
  --blue: #5b6ef5;
  --purple: #9b5de5;
  --gradient: linear-gradient(135deg, var(--blue), var(--purple));
  --gradient-text: linear-gradient(90deg, #7c8cff, #c084fc);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
}

/* Light mode — same brand colors (blue/purple gradient), light surfaces */
html[data-theme="light"] {
  --bg: #f6f7fb;
  --bg-alt: #eef0f8;
  --card: #ffffff;
  --card-hover: #f3f4fb;
  --border: #e2e5f0;
  --text: #14162a;
  --text-muted: #5b5f78;
  --text-faint: #8b8fa8;
  --nav-bg: rgba(246, 247, 251, 0.85);
  --shadow-soft: rgba(20,22,42,0.12);
}

html[data-theme="light"] body { background: var(--bg); }
html[data-theme="light"] .orb {
  box-shadow: 0 0 90px -10px rgba(91,110,245,0.25), inset 0 0 60px rgba(91,110,245,0.06);
}
html[data-theme="light"] .orb-pill,
html[data-theme="light"] .card,
html[data-theme="light"] .dropdown,
html[data-theme="light"] .submenu,
html[data-theme="light"] .service-visual,
html[data-theme="light"] .cta-banner,
html[data-theme="light"] .owner-card {
  box-shadow: 0 10px 24px -10px var(--shadow-soft);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(123, 108, 245, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(123, 108, 245, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--blue); background: rgba(91,110,245,0.08); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; }
.brand-badge {
  width: 34px; height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  transition: color .15s ease; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--gradient); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: var(--bg-alt); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 32px 20px; border-bottom: 1px solid var(--border); transform: translateY(-140%); transition: transform .25s ease; max-height: 80vh; overflow-y: auto; }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { width: 100%; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-primary.desktop-only { display: none; }
}

/* ---------- Services dropdown / mega-menu ---------- */
.nav-links > li { display: flex; align-items: center; }
.has-dropdown, .has-submenu { position: relative; }
.dropdown-link { display: flex; align-items: center; gap: 6px; }
.chev { font-size: 10px; color: var(--text-faint); transition: transform .18s ease; }
.chev-right { font-size: 12px; color: var(--text-faint); }
.dropdown-toggle { display: none; background: none; border: none; color: var(--text-muted); font-size: 13px; cursor: pointer; padding: 6px 4px; flex-shrink: 0; }

.dropdown, .submenu { list-style: none; }

@media (max-width: 900px) {
  li.has-dropdown, li.has-submenu { flex-direction: column; align-items: stretch; }
  .dropdown-link { width: 100%; justify-content: space-between; border-bottom: 1px solid var(--border); }
  .dropdown-link a { width: auto; border-bottom: none; padding: 14px 0; }
  .dropdown li { border-bottom: none; }
}

@media (min-width: 901px) {
  .dropdown {
    position: absolute; top: calc(100% + 18px); left: 0; z-index: 200;
    min-width: 240px; background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 8px; box-shadow: 0 24px 48px -14px rgba(0,0,0,0.65);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .has-dropdown:hover > a .chev { transform: rotate(180deg); }

  .dropdown > li { position: relative; }
  .dropdown a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 11px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
    color: var(--text-muted); white-space: nowrap; width: auto; border: none;
  }
  .dropdown a:hover { background: rgba(91,110,245,0.12); color: var(--text); }
  .dropdown-divider { height: 1px; background: var(--border); margin: 6px 4px; }

  .submenu {
    position: absolute; left: 100%; top: -8px; z-index: 210;
    min-width: 220px; background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 8px; box-shadow: 0 24px 48px -14px rgba(0,0,0,0.65);
    opacity: 0; visibility: hidden; transform: translateX(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateX(0); }
}

@media (max-width: 900px) {
  .dropdown-toggle { display: inline-flex; }
  .dropdown, .submenu {
    max-height: 0; overflow: hidden; opacity: 1; visibility: visible;
    padding-left: 14px; transition: max-height .25s ease;
  }
  .has-dropdown.open > .dropdown { max-height: 600px; }
  .has-submenu.open > .submenu { max-height: 400px; }
  .dropdown a, .submenu a { padding: 12px 0; font-size: 14px; color: var(--text-muted); }
  .dropdown-divider { display: none; }
  li.has-dropdown > .dropdown-link,
  li.has-submenu > .dropdown-link { justify-content: space-between; }
}

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.center { text-align: center; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--text-muted); font-size: 17px; margin-top: 16px; }

/* ---------- Hero (Home) ---------- */
.hero {
  padding: 90px 0 70px;
  position: relative;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { font-size: 56px; margin-bottom: 22px; }
.hero p.lead { font-size: 18px; color: var(--text-muted); max-width: 480px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.orb-stage {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.orb {
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(123,140,255,0.55), rgba(15,20,40,0.1) 60%), var(--card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 90px -10px rgba(91,110,245,0.4), inset 0 0 60px rgba(91,110,245,0.08);
  position: relative;
}
.orb .orb-mark { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; color: #fff; }
.orb .orb-sub { font-size: 10px; letter-spacing: 0.32em; color: var(--text-muted); margin-top: 6px; }
.orb-pill {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
}
.orb-pill.p1 { top: 14%; right: -2%; }
.orb-pill.p2 { top: 42%; left: -8%; }
.orb-pill.p3 { bottom: 12%; right: 4%; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.orb-pill.p1 { animation: float 5s ease-in-out infinite; }
.orb-pill.p2 { animation: float 6s ease-in-out infinite 0.6s; }
.orb-pill.p3 { animation: float 5.5s ease-in-out infinite 1.1s; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .orb-stage { order: -1; max-width: 320px; margin: 0 auto 20px; }
}

@media (max-width: 640px) {
  .orb-stage { max-width: 260px; padding: 16px; }
  .orb { width: 70%; }
  .orb .orb-mark { font-size: 32px; }
  .orb-pill { padding: 7px 13px; font-size: 10px; }
  .orb-pill.p1 { top: 6%; right: -6%; }
  .orb-pill.p2 { top: 46%; left: -14%; }
  .orb-pill.p3 { bottom: 4%; right: -2%; }
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--blue); background: var(--card-hover); }
.card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 16px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.card a.link { font-size: 14px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Service detail blocks ---------- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--border); }
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse .service-visual { order: 2; }
.service-visual {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(123,140,255,0.28), transparent 60%);
}
.service-block h3 { font-size: 28px; margin-bottom: 16px; }
.service-block p { color: var(--text-muted); margin-bottom: 14px; }
.service-block ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-block li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-muted); }
.check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  background: rgba(91,110,245,0.15); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 12px; margin-top: 2px;
}
@media (max-width: 900px) {
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-visual { order: 0; }
}

/* other services strip */
.other-services-cta {
  text-align: center;
  padding: 60px 0 10px;
}

/* ---------- About page ---------- */
.about-hero .wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center;
}
.about-checklist { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.about-checklist li { display: flex; gap: 14px; align-items: flex-start; }
.about-checklist h4 { font-size: 15.5px; margin-bottom: 3px; }
.about-checklist p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .about-hero .wrap { grid-template-columns: 1fr; } .about-hero .orb-stage { order: -1; max-width: 300px; margin: 0 auto; } }

.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stats-strip .num { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700; }
.stats-strip .label { color: var(--text-muted); font-size: 13.5px; margin-top: 4px; }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2,1fr); gap: 30px; } }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Contact / Inquiry form ---------- */
.contact-shell {
  background: linear-gradient(180deg, #fbfbfe, #f3f2fb);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.55);
}
.contact-shell h2 { color: #14162a; font-size: 42px; }
.contact-shell .eyebrow { color: var(--purple); }
.contact-shell .eyebrow::before { background: var(--gradient); }
.contact-shell p.lead { color: #5c6079; font-size: 15.5px; margin: 18px 0 24px; }
.consult-tag { color: var(--purple); font-weight: 600; font-size: 14px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #22243b; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e1ee;
  background: #fbfbfd;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #22243b;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91,110,245,0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: 13px; color: #7a7d95; margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.show { display: block; }
.form-success .check-big {
  width: 60px; height: 60px; border-radius: 50%; background: var(--gradient);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 18px;
}
.form-success h3 { color: #14162a; margin-bottom: 8px; }
.form-success p { color: #5c6079; }

@media (max-width: 900px) {
  .contact-shell { grid-template-columns: 1fr; padding: 34px 24px; border-radius: 20px; }
  .contact-shell h2 { font-size: 30px; }
  .field-row { grid-template-columns: 1fr; }
}

.contact-info-list { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.contact-info-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #43465e; line-height: 1.5; }
.contact-info-list .ic { width: 34px; height: 34px; border-radius: 9px; background: #eeecfb; display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: 14px; flex-shrink: 0; }
.contact-info-link {
  display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: #43465e; line-height: 1.5;
  text-decoration: none; border-radius: 9px; margin: -4px -6px; padding: 4px 6px;
  transition: background .15s ease, color .15s ease;
}
.contact-info-link:hover { background: #f2f1fb; color: var(--purple); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(123,108,245,0.25), transparent 60%);
}
.cta-banner h2 { font-size: 34px; margin-bottom: 14px; position: relative; }
.cta-banner p { color: var(--text-muted); margin-bottom: 30px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 50px 0 30px; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1fr 0.9fr; gap: 32px; margin-bottom: 40px; }
.footer-grid.cols-4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-grid h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 14px; color: var(--text-muted); }
.footer-grid a:hover { color: var(--text); }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Page header (Services/About/Contact banner) ---------- */
.page-header { padding: 70px 0 20px; text-align: center; }
.page-header .eyebrow { justify-content: center; }
.page-header h1 { font-size: 46px; }
.page-header p { color: var(--text-muted); max-width: 560px; margin: 18px auto 0; font-size: 16.5px; }

@media (max-width: 600px) {
  .page-header h1 { font-size: 32px; }
  section { padding: 70px 0; }
  .cta-banner { padding: 40px 24px; }
}

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); flex-shrink: 0;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.theme-toggle:hover { border-color: var(--blue); color: var(--text); transform: translateY(-1px); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ---------- Owners / partners ---------- */
.owners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.owner-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.owner-card:hover { transform: translateY(-4px); border-color: var(--blue); background: var(--card-hover); }
.owner-avatar {
  width: 62px; height: 62px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; color: #fff;
  margin: 0 auto 18px;
}
.owner-card h3 { font-size: 17px; margin-bottom: 4px; }
.owner-role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 16px;
}
.owner-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--blue);
}
@media (max-width: 900px) { .owners-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* ---------- Services marquee (auto-scrolling strip) ---------- */
.marquee-wrap {
  overflow: hidden; padding: 22px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  padding: 11px 20px 11px 12px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap;
}
.marquee-pill .pill-icon {
  width: 24px; height: 24px; border-radius: 7px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.marquee-pill .pill-icon svg { width: 13px; height: 13px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
