/* ==========================================================================
   Vani Financial — Design System
   Palette: Ink Navy / Midnight / Champagne Gold / Warm Sand / Fog / Deep Teal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Public+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* Color tokens */
  --ink-navy: #0B1B33;
  --midnight: #122A4A;
  --midnight-2: #16325A;
  --gold: #C9A227;
  --gold-light: #E4C766;
  --sand: #E8DCC0;
  --fog: #EEF1F5;
  --fog-2: #E3E8EF;
  --teal: #1F5C55;
  --teal-light: #2E7A70;
  --ink: #10203A;
  --white: #FFFFFF;

  /* Semantic */
  --bg-dark: var(--ink-navy);
  --bg-light: var(--fog);
  --text-on-dark: var(--sand);
  --text-on-dark-muted: #B9C3D6;
  --text-on-light: var(--ink);
  --text-on-light-muted: #4B5A72;
  --border-dark: rgba(232, 220, 192, 0.16);
  --border-light: rgba(16, 32, 58, 0.12);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 12px 32px rgba(11, 27, 51, 0.10);
  --shadow-card-dark: 0 20px 48px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 4.6vw, 4rem); font-weight: 500; }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3{ font-size: 1.4rem; }
em, .accent-italic{ font-style: italic; font-family: var(--font-display); }

p{ margin: 0 0 1em; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-gold{
  background: var(--gold);
  color: var(--ink-navy);
}
.btn-gold:hover{ background: var(--gold-light); }
.btn-outline-light{
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}
.btn-outline-light:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark{
  border-color: var(--border-light);
  color: var(--text-on-light);
}
.btn-outline-dark:hover{ border-color: var(--teal); color: var(--teal); }
.btn-teal{ background: var(--teal); color: var(--white); }
.btn-teal:hover{ background: var(--teal-light); }

/* ---------- Stepped / ascending divider (signature element) ---------- */
.ascend-rule{
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  margin: 0 auto;
  width: fit-content;
}
.ascend-rule span{
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.ascend-rule span:nth-child(1){ height: 6px; opacity: 0.45; }
.ascend-rule span:nth-child(2){ height: 11px; opacity: 0.65; }
.ascend-rule span:nth-child(3){ height: 16px; opacity: 0.85; }
.ascend-rule span:nth-child(4){ height: 22px; }

.section-divider{
  display: flex;
  justify-content: center;
  padding: 56px 0;
}

/* ---------- Header / Nav ---------- */
#site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 27, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img{ height: 38px; width: auto; }
.brand-word{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-word small{
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  margin-top: 3px;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.main-nav > li{ position: relative; }
.main-nav > li > a{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li.active > a{
  color: var(--white);
  background: rgba(201, 162, 39, 0.12);
}
.main-nav > li.active > a{ color: var(--gold-light); }
.caret{ font-size: 0.6rem; transition: transform 0.15s ease; }
.main-nav li:hover .caret{ transform: rotate(180deg); }

.dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--midnight);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-card-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}
.main-nav li:hover .dropdown,
.main-nav li:focus-within .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a{
  display: block;
  padding: 10px 12px;
  font-size: 0.86rem;
  color: var(--text-on-dark-muted);
  border-radius: var(--radius-sm);
}
.dropdown a:hover{ background: rgba(201, 162, 39, 0.14); color: var(--gold-light); }

.nav-cta{ flex-shrink: 0; }
.nav-cta .btn{ padding: 10px 20px; font-size: 0.86rem; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--white);
}

@media (max-width: 980px){
  .main-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .nav-cta .btn span.long{ display: none; }
}

/* Mobile drawer */
.mobile-drawer{
  display: none;
  flex-direction: column;
  background: var(--midnight);
  border-top: 1px solid var(--border-dark);
  padding: 12px;
}
.mobile-drawer.open{ display: flex; }
.mobile-drawer a{
  padding: 12px 10px;
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid var(--border-dark);
}
.mobile-drawer .sub-item{ padding-left: 24px; font-size: 0.86rem; opacity: 0.85; }
.mobile-drawer a:last-child{ border-bottom: none; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background: linear-gradient(180deg, var(--ink-navy) 0%, var(--midnight-2) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 88px 0 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 64px;
}
.hero h1{ color: var(--white); margin-bottom: 22px; }
.hero-sub{
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }

.hero-art{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 340px;
}
.bars{
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100%;
  width: 100%;
  max-width: 380px;
}
.bars .bar{
  flex: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 3px 3px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.bars .bar:nth-child(1){ height: 32%; animation-delay: 0.05s; }
.bars .bar:nth-child(2){ height: 48%; animation-delay: 0.15s; }
.bars .bar:nth-child(3){ height: 40%; animation-delay: 0.25s; background: linear-gradient(180deg, #8FB6C9, var(--teal)); }
.bars .bar:nth-child(4){ height: 64%; animation-delay: 0.35s; }
.bars .bar:nth-child(5){ height: 58%; animation-delay: 0.45s; background: linear-gradient(180deg, #8FB6C9, var(--teal)); }
.bars .bar:nth-child(6){ height: 82%; animation-delay: 0.55s; }
.bars .bar:nth-child(7){ height: 100%; animation-delay: 0.65s; }
@keyframes rise{ to{ transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce){
  .bars .bar{ transform: scaleY(1); animation: none; }
}
.hero-art::after{
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.18), transparent 70%);
  pointer-events: none;
}

.stat-strip{
  border-top: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.02);
}
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.stat{
  padding: 28px 20px;
  text-align: center;
  border-left: 1px solid var(--border-dark);
}
.stat:first-child{ border-left: none; }
.stat .num{
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
}
.stat .label{
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
@media (max-width: 760px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; height: 220px; }
  .stat-grid{ grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3){ border-left: none; }
}

/* ---------- Generic sections ---------- */
.section{ padding: 96px 0; }
.section-dark{ background: var(--ink-navy); color: var(--text-on-dark); }
.section-mid{ background: var(--midnight); color: var(--text-on-dark); }
.section-light{ background: var(--bg-light); }
.section-white{ background: var(--white); }
.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-dark .section-head p, .section-mid .section-head p{ color: var(--text-on-dark-muted); }
.section-light .section-head p, .section-white .section-head p{ color: var(--text-on-light-muted); }

/* ---------- Cards ---------- */
.grid{ display: grid; gap: 24px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .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: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px rgba(11,27,51,0.14); }
.card .icon{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(31, 92, 85, 0.1);
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3{ margin-bottom: 10px; font-size: 1.2rem; }
.card p{ color: var(--text-on-light-muted); font-size: 0.95rem; margin-bottom: 14px; }
.card .card-link{ font-weight: 600; font-size: 0.88rem; color: var(--teal); }
.card .chip-list{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.card .chip-list span{
  font-size: 0.76rem;
  font-weight: 600;
  background: var(--fog);
  color: var(--text-on-light-muted);
  padding: 5px 12px;
  border-radius: 20px;
}

.card-dark{
  background: var(--midnight);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
}
.card-dark .tag{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.12);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.card-dark p{ color: var(--text-on-dark-muted); }

/* ---------- Quote ---------- */
.quote-block{
  text-align: center;
  padding: 64px 0;
  background: var(--midnight);
  color: var(--sand);
}
.quote-block blockquote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 500;
}
.quote-block cite{ display: block; margin-top: 18px; font-style: normal; font-family: var(--font-mono); font-size: 0.8rem; color: var(--gold); }

/* ---------- Concepts tabs ---------- */
.concept-tabs{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.concept-tabs button{
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-on-light-muted);
}
.concept-tabs button.active{ background: var(--ink-navy); color: var(--gold-light); border-color: var(--ink-navy); }
.concept-panel{ display: none; }
.concept-panel.active{ display: block; }
.concept-body{ display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 44px; }
.concept-body ul{ margin-top: 18px; }
.concept-body li{ position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--text-on-light-muted); font-size: 0.95rem; }
.concept-body li::before{ content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.concept-side{ background: var(--fog); border-radius: var(--radius-md); padding: 26px; }
.concept-side .big{ font-family: var(--font-mono); font-size: 1.3rem; color: var(--teal); margin-bottom: 8px; }
@media (max-width: 760px){ .concept-body{ grid-template-columns: 1fr; padding: 28px; } }

/* ---------- Team ---------- */
.team-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}
.team-photo{
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--midnight), var(--ink-navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.4rem;
  position: relative;
  overflow: hidden;
}
.team-photo img{ width: 100%; height: 100%; object-fit: cover; }
.team-info{ padding: 22px; }
.team-info h3{ margin-bottom: 2px; font-size: 1.1rem; }
.team-info .role{ font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 12px; }
.team-info p{ font-size: 0.88rem; color: var(--text-on-light-muted); margin-bottom: 14px; }

/* ---------- Events ---------- */
.event-card{
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
}
.event-date{
  text-align: center;
  background: var(--ink-navy);
  color: var(--gold-light);
  border-radius: var(--radius-md);
  padding: 14px 8px;
}
.event-date .month{ font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.event-date .day{ font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.event-info h3{ margin-bottom: 6px; }
.event-info .meta{ font-size: 0.85rem; color: var(--text-on-light-muted); display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 700px){
  .event-card{ grid-template-columns: 1fr; text-align: left; }
  .event-date{ width: fit-content; }
}

/* ---------- Past events (recap cards) ---------- */
.past-event-card{
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.past-event-img{
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--midnight);
}
.past-event-img img{ width: 100%; height: 100%; object-fit: cover; object-position: top; }
.past-event-body{ padding: 24px; }
.past-event-body .tag-pill{ margin-bottom: 10px; }
.past-event-body h3{ margin-bottom: 6px; }
.past-event-body .meta{ font-size: 0.85rem; color: var(--text-on-light-muted); display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.past-event-body .topics{ display: flex; flex-wrap: wrap; gap: 6px; }
.past-event-body .topics span{
  font-size: 0.74rem;
  background: var(--fog);
  color: var(--text-on-light-muted);
  padding: 4px 10px;
  border-radius: 20px;
}

.event-empty{
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-lg);
  padding: 56px 24px;
  text-align: center;
  color: var(--text-on-light-muted);
}

/* ---------- Forms ---------- */
.form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.field{ margin-bottom: 18px; }
.field label{ display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--text-on-light-muted); }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--fog);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: 2px solid var(--teal); background: var(--white); }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row-3{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .field-row{ grid-template-columns: 1fr; } .field-row-3{ grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--ink-navy), var(--midnight-2));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2{ color: var(--white); }
.cta-band p{ color: var(--text-on-dark-muted); max-width: 560px; margin: 0 auto 30px; }
.cta-actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
#site-footer{ background: var(--ink-navy); color: var(--text-on-dark-muted); padding: 72px 0 28px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
.footer-brand img{ height: 40px; margin-bottom: 16px; }
.footer-brand p{ font-size: 0.9rem; max-width: 32ch; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{ width: 36px; height: 36px; border: 1px solid var(--border-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.footer-social a:hover{ border-color: var(--gold); color: var(--gold); }
.footer-col h4{ font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer-col li{ margin-bottom: 10px; font-size: 0.88rem; }
.footer-col a:hover{ color: var(--white); }
.footer-contact li{ display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; align-items: flex-start; }
.footer-bottom{ border-top: 1px solid var(--border-dark); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom a{ opacity: 0.8; }
.footer-bottom a:hover{ opacity: 1; color: var(--gold); }
.footer-legal{ display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{
  background: linear-gradient(180deg, var(--ink-navy), var(--midnight-2));
  color: var(--text-on-dark);
  padding: 76px 0 64px;
  text-align: center;
}
.page-hero h1{ color: var(--white); margin-bottom: 14px; }
.page-hero p{ color: var(--text-on-dark-muted); max-width: 56ch; margin: 0 auto; }

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.tag-pill{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(31,92,85,0.1);
  color: var(--teal);
}
