/* NEI landing page, mirrors the nei.io app design tokens (brand, light/dark). */

:root {
  --brand-primary: #4D84F5;
  --brand-primary-hover: #3a6fd4;
  --brand-primary-bg: rgba(77, 132, 245, 0.08);
  --brand-accent: #00c9a7;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-card: #ffffff;
  --bg-hover: #f5f7fa;
  --text-primary: #1a1a2e;
  --text-secondary: #5a5a7a;
  --text-muted: #8e8ea0;
  --border-color: #e2e5ea;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  --nav-height: 64px;
  --container-max: 1120px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;

  /* Light chip behind trust-strip logos; white in light mode. */
  --trust-chip-bg: #ffffff;
}

[data-theme="dark"] {
  --bg-primary: #0f1117;
  --bg-secondary: #161822;
  --bg-card: #1a1c2e;
  --bg-hover: #252840;
  --text-primary: #e8e8f0;
  --text-secondary: #a0a0b8;
  --text-muted: #6e6e88;
  --border-color: #2a2c40;
  --brand-primary-bg: rgba(77, 132, 245, 0.12);
  /* Muted light chip in dark mode so logos stay legible without glaring. */
  --trust-chip-bg: #c3c8d4;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

a { color: var(--brand-primary); text-decoration: none; }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--nav-height);
  background: color-mix(in srgb, var(--bg-card) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}
.nav-inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.brand span { color: var(--brand-primary); }
.brand-sm { font-size: 1.1rem; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-link {
  min-width: 150px;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  transition: all 0.15s;
}
.nav-link:hover {
  color: var(--text-primary);
  border-color: var(--brand-primary);
}
.nav-link.is-active {
  color: var(--text-primary);
  border-color: var(--brand-primary);
  background: color-mix(in srgb, var(--brand-primary) 12%, transparent);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}
.theme-toggle:hover { background: var(--bg-hover); color: var(--text-primary); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-lg { padding: 13px 26px; font-size: 1.05rem; }
.btn-primary { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { background: var(--brand-primary-hover); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--border-color); color: var(--text-primary); }
.btn-outline:hover { background: var(--bg-hover); border-color: var(--brand-primary); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(1200px 500px at 50% -200px, var(--brand-primary-bg), transparent 70%);
  padding: 96px 24px 72px;
}
.hero-inner { max-width: var(--container-max); margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.lede {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 1.2rem;
  color: var(--text-secondary);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ── Market section ─────────────────────────────────────────────────────── */
.market { padding: 72px 24px 80px; }
.section-inner { max-width: var(--container-max); margin: 0 auto; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.section-head h2 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; }
.as-of {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-success, #22c55e);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand-primary) 40%, var(--border-color));
}
.stat-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
/* One size for every card's number. Sized so the longest value, the pair
   "$X / $Y", stays on one line, keeping all the label/sub rows aligned. */
.stat-value { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.stat-value--pair { white-space: nowrap; }
.stat-label { margin-top: 4px; font-size: 0.95rem; color: var(--text-secondary); font-weight: 600; }
.stat-sub { margin-top: 12px; font-size: 0.82rem; color: var(--text-muted); }
.stat-sub strong { color: var(--text-secondary); }

/* ── Hottest names card ─────────────────────────────────────────────────── */
/* Title sits below the supply/demand rows, centered with the "Last 90 days" sub. */
.stat-card--names .stat-label { margin-top: 16px; text-align: center; }
.stat-card--names .stat-sub { text-align: center; }
.name-rows { display: flex; flex-direction: column; gap: 10px; }
.name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.name-rank {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-primary);
  background: var(--brand-primary-bg);
}
.name-co {
  flex: 1 1 auto;
  font-weight: 700;
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.name-val {
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-primary);
}

/* ── Team ───────────────────────────────────────────────────────────────── */
.team {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 64px 24px 80px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;   /* cards equal height so the pinned link rows line up */
  gap: 18px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand-primary) 40%, var(--border-color));
}
.avatar {
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--brand-primary-bg);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 25%, transparent);
}
.avatar-img { object-fit: cover; padding: 0; }
.avatar--mystery {
  color: var(--text-muted);
  background: var(--bg-hover);
  border-style: dashed;
  border-color: var(--border-color);
}
.team-card--mystery { border-style: dashed; }
.team-name { font-size: 1.1rem; font-weight: 700; }
.team-role { margin-top: 2px; font-size: 0.9rem; color: var(--brand-primary); font-weight: 600; }
.team-bio { margin-top: 12px; font-size: 0.9rem; color: var(--text-secondary); }
.team-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.15s;
}
.team-link:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  background: var(--brand-primary-bg);
}
.team-link.copied {
  color: #22c55e;
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
}

/* Contact form (CTA section) */
.contact-form {
  max-width: 540px;
  margin: 28px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) {
  .contact-row { grid-template-columns: 1fr; }
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-primary-bg);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { justify-content: center; margin-top: 4px; }
.contact-form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.contact-status { min-height: 1.2em; margin: 2px 0 0; text-align: center; font-size: 0.9rem; }
.contact-status.success { color: #22c55e; }
.contact-status.error { color: #ef4444; }

/* Toast (e.g. "Copied to clipboard") */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(10px);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Empty state ────────────────────────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty i { font-size: 2rem; margin-bottom: 14px; color: var(--text-muted); }

/* ── Comparison grid (Why Secondaries) ────────────────────────────────────── */
.compare {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 6px 28px;
  box-shadow: var(--shadow-sm);
}
.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 18px 0;
}
.compare-head { border-bottom: 1px solid var(--border-color); }
.compare-row + .compare-row,
.compare-head + .compare-row { border-top: 1px solid var(--border-color); }
.compare-col-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: center;
}
.compare-cell { color: var(--text-secondary); font-size: 1.02rem; text-align: center; }
.compare-row .compare-cell:first-child { color: var(--text-primary); font-weight: 600; }
.compare + .section-inner { margin-top: 52px; }

/* Our Approach intro, widen the measure and balance line lengths so the centered
   paragraphs don't leave a lone word stranded on the last line. */
#about .section-inner.narrow { max-width: 880px; }
#about .prose { text-wrap: balance; }
@media (max-width: 560px) {
  .compare { padding: 8px 20px; }
  .compare-head, .compare-row { gap: 14px; }
}

/* ── Trust strip (About), seamless infinite-scroll logo marquee ───────────── */
.trust-strip {
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-track {
  display: flex;
  width: max-content;
  align-items: flex-start;
  gap: 56px;
  animation: trust-scroll 60s linear infinite;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
}
/* Light chip behind every logo so dark-on-transparent marks (e.g. MSCI) stay
   readable in both light and dark themes. */
.trust-logo {
  height: 30px;              /* small, a couple of lines tall */
  width: auto;
  max-width: 150px;
  object-fit: contain;
  background: var(--trust-chip-bg);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  box-sizing: content-box;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.15s, filter 0.15s;
}
.trust-item:hover .trust-logo { opacity: 1; filter: grayscale(0); }
.trust-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);   /* greyed-out name underneath */
  white-space: nowrap;
  transition: color 0.15s;
}
.trust-item:hover .trust-name { color: var(--brand-primary); }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "\f078";                 /* chevron-down (Font Awesome) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { transform: rotate(180deg); }
.faq-a {
  padding: 0 0 18px;
  color: var(--text-secondary);
  font-size: 1rem;
}
.faq-a strong { color: var(--text-primary); }
.faq-cta {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-card);
  padding: 28px 24px;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.footer-meta { color: var(--text-muted); font-size: 0.9rem; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--brand-primary); }
.footer-link .fa-linkedin-in { margin-right: 4px; }
.footer-link.is-disabled {
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 600px) {
  .footer-inner { justify-content: center; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
}

/* ── Generic content sections ─────────────────────────────────────────────── */
.section { padding: 76px 24px; }
.section--alt {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.section-inner.narrow { max-width: 760px; }
.section-inner.center { text-align: center; }
.section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.section-head--center {
  display: block;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}
.section-head--center .lede { margin-top: 12px; max-width: none; font-size: 1.1rem; }
.prose { margin-top: 16px; font-size: 1.05rem; color: var(--text-secondary); }
.prose + .prose { margin-top: 14px; }
.prose strong { color: var(--text-primary); }

/* ── Tagline band ─────────────────────────────────────────────────────────── */
.tagline {
  padding: 26px 24px;
  background: var(--brand-primary-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.tagline .section-inner { text-align: center; }
.tagline p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Feature / problem cards ──────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
/* Fixed 2-up grid (Bridging the Gap). */
.feature-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) {
  .feature-grid--2 { grid-template-columns: 1fr; }
}
/* Fixed 3-up grid (How we operate / Built for the deal) so columns align. */
.feature-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .feature-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .feature-grid--3 { grid-template-columns: 1fr; }
}
/* Fixed 4-up grid (Why brokers use NEI). */
.feature-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) {
  .feature-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .feature-grid--4 { grid-template-columns: 1fr; }
}
/* Reserve two lines for the title so the body copy starts on the same line
   across all cards, whether the title wraps to one line or two. */
.feature-grid--4 .feature-title { min-height: 2.7em; line-height: 1.3; }
@media (max-width: 560px) {
  .feature-grid--4 .feature-title { min-height: 0; }
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--brand-primary) 40%, var(--border-color));
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.feature-icon--warn { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.feature-title { font-size: 1.05rem; font-weight: 700; }
.feature-body { margin-top: 8px; font-size: 0.92rem; color: var(--text-secondary); }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
  padding: 84px 24px;
  text-align: center;
  background: radial-gradient(900px 360px at 50% 0%, var(--brand-primary-bg), transparent 70%);
  border-top: 1px solid var(--border-color);
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-band .lede { margin: 14px auto 28px; }

/* Team contact links, margin-top:auto pins the row to the card bottom so it
   aligns across cards of unequal bio length. */
.team-links { margin-top: auto; padding-top: 18px; display: flex; gap: 14px; justify-content: center; }
.team-links .team-link { margin-top: 0; }

/* Closing tagline under the team */
.team-tagline {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
}
.team-tagline strong { color: var(--text-primary); }
