/* ============================================
   HARBINGER.AI — Global Stylesheet
   Clean & Minimal | Brand-Accurate
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:    #FFD700;
  --black:     #0A0A0A;
  --teal:      #006D6D;
  --pink:      #FF2E63;
  --white:     #FFFFFF;
  --off-white: #F7F7F5;
  --light-grey:#EDEDED;
  --mid-grey:  #9A9A9A;
  --dark-grey: #3A3A3A;

  --font-head: 'Inter Tight', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;

  --max-w: 1160px;
  --nav-h: 68px;
  --radius: 10px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--grey { background: var(--off-white); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 900; letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.8px; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p  { color: var(--dark-grey); }

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: transparent;
  color: var(--teal);
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-grey);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}
.nav__logo span.dot { color: var(--yellow); }
.nav__logo img {
  height: 32px;
  width: auto;
  display: block;
}
.nav__logo-text {
  display: inline-flex;
  align-items: baseline;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-grey);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--black); }
.nav__links a.active { border-bottom: 2px solid var(--yellow); }
.nav__cta { flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__burger span { width: 22px; height: 2px; background: var(--black); transition: all var(--transition); }

/* ── Hero ── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--light-grey);
}
.hero__eyebrow {
  margin-bottom: 20px;
}
.hero__headline {
  max-width: 820px;
  margin-bottom: 24px;
}
.hero__sub {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--dark-grey);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__logos {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--light-grey);
}
.hero__logos-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__logo-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__logo-row span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--transition);
}
.hero__logo-row span:hover { color: var(--black); }

/* ── Section Headers ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; max-width: 580px; }

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 36px 32px;
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  transition: background var(--transition);
}
.feature-card:hover { background: var(--off-white); }
.feature-card__icon {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--mid-grey);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 18px; }
.feature-card p   { font-size: 14px; line-height: 1.65; }

/* ── Leak Detector / VSM ── */
.vsm {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.vsm h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(24px, 3vw, 36px); }
.vsm .sub { color: rgba(255,255,255,0.65); margin-bottom: 40px; font-size: 16px; }
.vsm-levels { display: flex; flex-direction: column; gap: 0; }
.vsm-level {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.vsm-level:last-child { border-bottom: none; }
.vsm-level__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  margin-top: 3px;
}
.vsm-level__label {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.vsm-level__copy { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.vsm-level__bar-wrap { width: 120px; }
.vsm-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 4px;
  overflow: hidden;
}
.vsm-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--yellow);
  transition: width 1s ease;
}
.vsm-bar__pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  text-align: right;
}
.vsm-closing {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
.vsm-closing strong { color: var(--yellow); }

/* ── Case Study Cards ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.case-card {
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.case-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 24px rgba(255,215,0,0.08);
}
.case-card__client {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.case-card h3 { margin-bottom: 14px; }
.case-card__stat {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.case-card__stat-label {
  font-size: 13px;
  color: var(--mid-grey);
  margin-bottom: 20px;
}
.case-card p { font-size: 14px; line-height: 1.65; }

/* ── Founders ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.founder-card {
  padding: 40px 36px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
}
.founder-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.founder-card h3 { margin-bottom: 16px; }
.founder-card p { font-size: 15px; line-height: 1.7; }

/* ── Contact Form ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Modules / Toolbox ── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.module-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}
.module-card:hover { transform: translateY(-3px); }
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal);
}
.module-card--yellow::before { background: var(--yellow); }
.module-card--pink::before   { background: var(--pink); }
.module-card--black::before  { background: var(--black); }
.module-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  margin-bottom: 14px;
}
.module-card h4 { margin-bottom: 10px; font-size: 16px; }
.module-card p  { font-size: 13px; color: var(--mid-grey); line-height: 1.6; }

/* ── PIPE Framework Card (static) ── */
.pipe-calc {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 48px;
}
.pipe-calc h3 { color: var(--black); margin-bottom: 8px; }
.pipe-calc .sub { color: var(--mid-grey); margin-bottom: 36px; font-size: 14px; }
.pipe-sliders { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.pipe-slider__label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.pipe-slider__name {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: var(--white);
}
.pipe-slider__desc { font-size: 12px; color: rgba(255,255,255,0.45); }
.pipe-slider__val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
}
.pipe-result {
  padding: 20px 24px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 8px;
  font-size: 15px;
  color: var(--white);
  min-height: 64px;
}
.pipe-result .score {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 900;
  color: var(--yellow);
}

/* ── Glossary ── */
.glossary-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
}
.glossary-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-grey);
}
.glossary-item:last-child { border-bottom: none; }
.glossary-item dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}
.glossary-item dd { font-size: 14px; color: var(--dark-grey); line-height: 1.65; }

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 32px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer__brand img {
  height: 44px;
  width: auto;
  display: block;
}
.footer__brand-name {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}
.footer__brand-name span { color: var(--yellow); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer__col-head {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ── Divider / Callout ── */
.callout {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.callout h2 { color: var(--black); margin-bottom: 10px; }
.callout p { color: rgba(0,0,0,0.65); max-width: 500px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--light-grey);
}
.page-hero .mono { margin-bottom: 16px; }
.page-hero h1 { max-width: 720px; margin-bottom: 16px; }
.page-hero p  { font-size: 18px; max-width: 580px; }

/* ── Tag ── */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--off-white);
  color: var(--teal);
  border: 1px solid var(--light-grey);
}

/* ── Responsive ── */

/* Tablet — two-col layouts start collapsing */
@media (max-width: 900px) {
  /* Named CSS grid classes */
  .founders-grid,
  .form-grid           { grid-template-columns: 1fr; }

  /* All inline feature-split grids (uses !important to override inline style) */
  .feature-split       { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Stat rows (3-up grids on homepage / evidence) */
  .stats-row           { grid-template-columns: 1fr !important; }

  /* Security 2×2 tiles — keep 2-col until smaller breakpoint */
  .security-grid       { grid-template-columns: 1fr 1fr; }

  /* Contact page two-column sections */
  .about-split,
  .contact-split       { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Misc */
  .footer__top         { grid-template-columns: 1fr 1fr; }
  .vsm                 { padding: 36px 24px; }
  .callout             { flex-direction: column; padding: 40px 32px; }
  .glossary-item       { grid-template-columns: 1fr; gap: 4px; }

  /* Page hero */
  .page-hero           { padding: 56px 0 48px; }
  .page-hero p         { font-size: 16px; }

  /* Hero */
  .hero                { padding: 72px 0 64px; }
  .hero__sub           { font-size: 16px; }
  .hero__logo-row      { gap: 24px; }

  /* Pipe calc — already in feature-split */
  .pipe-calc           { padding: 36px 28px; }
}

/* Mobile — single column everything */
@media (max-width: 640px) {
  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger           { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--light-grey);
    padding: 24px; gap: 16px; z-index: 99;
  }

  /* Spacing */
  .section             { padding: 56px 0; }
  .container           { padding: 0 18px; }

  /* Typography */
  h1                   { letter-spacing: -1px; }
  h2                   { letter-spacing: -0.5px; }

  /* Hero */
  .hero                { padding: 56px 0 48px; }
  .hero__actions       { flex-direction: column; }
  .hero__actions .btn  { width: 100%; text-align: center; }
  .hero__logos         { margin-top: 48px; }
  .hero__logo-row      { gap: 16px; }

  /* Security 2×2 — collapse to 1-col at mobile */
  .security-grid       { grid-template-columns: 1fr !important; }

  /* VSM */
  .vsm                 { padding: 28px 20px; }
  .vsm-level           { grid-template-columns: 28px 1fr; }
  .vsm-level__bar-wrap { display: none; }

  /* Feature grid cards */
  .feature-grid        { grid-template-columns: 1fr; }
  .case-grid           { grid-template-columns: 1fr; }
  .modules-grid        { grid-template-columns: 1fr 1fr; }

  /* Journey map — horizontal scroll on small screens */
  .journey-map-scroll  { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .journey-map-inner   { min-width: 560px; }

  /* Callout */
  .callout             { padding: 32px 24px; }
  .callout h2          { font-size: 26px; }

  /* Hide large decorative H on small screens */
  .hero__deco          { display: none; }

  /* Footer */
  .footer__top         { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom      { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Contact */
  .pipe-calc           { padding: 28px 20px; }
  .vsm-closing         { font-size: 13px; }

  /* Founders stacked */
  .founders-grid       { grid-template-columns: 1fr; }
  .founder-card        { padding: 28px 24px; }
}


/* ══════════════════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════════════════ */

/* Skip to main content (keyboard users) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--black);
  color: var(--yellow);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Visible focus states on all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.pipe-input:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.nav__burger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 3px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Form confirmation banner */
.form-confirm {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(0, 109, 109, 0.08);
  border: 1px solid rgba(0, 109, 109, 0.2);
  border-radius: 8px;
  color: var(--teal);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
.form-confirm.visible { display: block; }


/* ══════════════════════════════════════════════════
   LEGAL / LONG-FORM PAGES
   ══════════════════════════════════════════════════ */

.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 48px 0 16px;
  letter-spacing: -0.3px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  font-weight: 700;
}
.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark-grey);
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--black); }
.legal__effective {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  background: var(--off-white);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
  margin-bottom: 40px;
  display: inline-block;
}
