/* ============================================================
   ClinBoard Landing Pages — Standalone Stylesheet
   Light "Render-inspired" system: white ground, oversized thin
   headlines, sharp (0-radius) high-contrast buttons, monochrome
   with a single teal accent. Auth-page styles (below) unchanged.
   ============================================================ */

/* Self-hosted geometric display face (variable, 400–700) — crisp at all
   weights where system-ui goes soft. Latin subset covers the copy + dashes. */
@font-face {
  font-family: 'Hanken Grotesk';
  src: url("fonts/HankenGrotesk.a6b899943e31.woff2") format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ink: #0d0d0d;          /* near-pure black (neutral, not blue) — crisp like Render */
  --navy: #0d0d0d;         /* legacy alias → ink (any stray use stays dark ink) */
  --teal: #0d9488;
  --teal-hover: #0f766e;
  --teal-bright: #0d9488;  /* on white, use the solid teal for accents */
  --teal-glow: rgba(13, 148, 136, 0.15);
  --danger: #dc2626;
  --bg: #ffffff;           /* page / hero ground */
  --wash: #f6f8fa;         /* tinted section band */
  --white: #ffffff;
  --text-dark: #1a1a1c;    /* body — near-black, neutral */
  --text-muted: #3a3d42;   /* supporting copy — dark neutral grey (was blue slate) */
  --text-light: #6a6d73;
  --border: #e6e8eb;
  --border-strong: #d5d9de;
  --font: 'Hanken Grotesk', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* -- NAV (light) -- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-left { display: flex; align-items: center; gap: 2.5rem; }

.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon {
  width: 30px; height: 30px;
  background: var(--teal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { color: var(--ink); font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-divider { width: 1px; height: 20px; background: var(--border-strong); }

.btn-login {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.btn-login:hover { color: var(--teal-hover); }

/* sharp, high-contrast — the Render signature */
.btn-signup {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 0.55rem 1.1rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-signup:hover { background: #000; }

.btn-demo {
  display: inline-block;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-demo:hover { background: var(--wash); }

/* -- HERO (light, left-aligned, oversized thin headline) -- */
.hero {
  position: relative;
  padding: 9rem 2rem 5rem;
  background: var(--bg);
  text-align: left;
}

/* index: two-column (text left, product panel right) */
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
/* sponsors / cros: no right-hand panel, so center the hero for balance
   (avoids the lopsided "text jammed left, empty right" look). These pages
   carry longer, sentence-style headlines, so size them down + widen the
   measure to land in ~2 lines instead of a tall stack. */
.hero > .hero-content { max-width: 1000px; margin: 0 auto; text-align: center; }
.hero > .hero-content h1 { font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.1; }
.hero > .hero-content .hero-sub { max-width: 52ch; margin-left: auto; margin-right: auto; }
.hero > .hero-content .hero-ctas { justify-content: center; }

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
  color: var(--ink);
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.hero h1 span { color: var(--teal-hover); font-weight: 500; }

.hero-sub {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 0 2.25rem;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 0.9rem; justify-content: flex-start; flex-wrap: wrap; }

/* product panel in the hero (index) */
.hero-visual { position: relative; z-index: 2; }
.hero-panel { border: 1px solid var(--border-strong); background: var(--white); }
.hero-panel-hd { display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); }
.hero-panel-hd .t { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.hero-panel-hd .m { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.hero-panel-scroll { overflow-x: auto; }
.hero-panel table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.hero-panel th { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); font-weight: 600; padding: 0.45rem 1rem; text-align: right; border-bottom: 1px solid var(--border); }
.hero-panel th:first-child { text-align: left; }
.hero-panel td { padding: 0.45rem 1rem; text-align: right; border-bottom: 1px solid var(--border);
  color: var(--text-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hero-panel td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.hero-panel tbody tr:last-child td { border-bottom: 0; }
.hero-panel td.low { color: var(--teal-hover); font-weight: 700; box-shadow: inset 2px 0 0 var(--teal); }
.hero-panel-ft { display: flex; justify-content: space-between; padding: 0.7rem 1rem;
  border-top: 1px solid var(--border-strong); background: var(--wash); }
.hero-panel-ft .k { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.hero-panel-ft .v { font-weight: 700; color: var(--teal-hover); font-variant-numeric: tabular-nums; }
.hero-visual-cap { margin: 0.85rem 0 0; font-size: 0.8rem; color: var(--text-light); text-align: left; }

/* shared sharp buttons */
.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  padding: 0.85rem 1.75rem;
  border-radius: 0;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: #000; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  padding: 0.85rem 1.75rem;
  border-radius: 0;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--ink); background: var(--wash); }

/* -- SECTION UTILITY -- */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* In-page anchors must clear the fixed 64px navbar */
#sponsors, #cros { scroll-margin-top: 80px; }

.section-subtitle--center { margin: 0 auto; }
.btn-outline--spaced { margin-left: 0.75rem; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

/* -- WITHOUT/WITH (light) -- */
.compare-section {
  background: var(--wash);
  padding: 4.5rem 2rem 5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.compare-section .section-title { color: var(--ink); }
.section-subtitle-dark {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.compare-col { padding: 2.5rem 2rem; text-align: left; }
.compare-col--without { background: rgba(220, 38, 38, 0.03); border-right: 1px solid var(--border); }
.compare-col--with { background: rgba(13, 148, 136, 0.04); }

.compare-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare-col--without h3 { color: var(--danger); }
.compare-col--with h3 { color: var(--teal); }

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compare-col li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}
.compare-col--without li::before {
  content: '\2717';
  color: var(--danger);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.compare-col--with li::before {
  content: '\2713';
  color: var(--teal);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Inline stat highlight */
.stat-highlight { color: var(--danger); font-weight: 700; }
.compare-col--with .stat-highlight { color: var(--teal); }

/* -- TWO-SIDED VALUE PROP (both cards light) -- */
.value-prop {
  background: var(--bg);
  position: relative;
}

.value-prop .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.value-prop .section-title { display: block; }
.value-prop .section-subtitle { margin: 0 auto; }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  /* one track for the header, one per bullet — cards share these tracks
     via subgrid so each row's checkmark lines up across both cards */
  grid-template-rows: auto repeat(4, auto);
}

.value-card {
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 1rem;
  border-radius: 0;
  padding: 2.5rem;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
}
.value-list { display: contents; }  /* let the <li> land on the card's subgrid rows */

/* differentiate the two sides with a top keyline, not a dark fill */
.value-card--sponsor { border-top: 2px solid var(--teal); }
.value-card--sponsor .value-card-title { color: var(--ink); }
.value-card--sponsor .value-card-subtitle { color: var(--text-muted); }
.value-card--sponsor .value-item { color: var(--text-muted); }
.value-card--sponsor .value-bullet { color: var(--teal); }

.value-card--cro { border-top: 2px solid var(--border-strong); }
.value-card--cro .value-card-title { color: var(--ink); }
.value-card--cro .value-card-subtitle { color: var(--text-muted); }
.value-card--cro .value-item { color: var(--text-muted); }
.value-card--cro .value-bullet { color: var(--teal); }

.value-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 0;
  margin-bottom: 1rem;
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
}

.value-card-title { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.value-card-subtitle { font-size: 1rem; margin-bottom: 0; line-height: 1.5; }

.value-list { list-style: none; display: contents; }
.value-item { display: flex; gap: 0.75rem; font-size: 1rem; line-height: 1.55; align-items: flex-start; }
.value-bullet { flex-shrink: 0; margin-top: 0.25rem; }

/* -- HOW IT WORKS (horizontal timeline) -- */
.how-it-works {
  background: var(--wash);
  position: relative;
}

.how-it-works .section-header { text-align: center; margin-bottom: 3.5rem; }

.timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Connecting line running through the numbered markers */
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: var(--border-strong);
  z-index: 0;
}

.timeline-stage {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: var(--white);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.timeline-stage:hover .timeline-number {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

.how-footer {
  text-align: center;
  margin-top: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.how-footer strong { color: var(--ink); font-weight: 600; }

/* -- NETWORK EFFECT -- */
.network-section {
  background: var(--bg);
  padding: 5rem 2rem;
}
.network-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.network-section .section-title { margin-bottom: 1.25rem; }
.network-section .section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 2rem;
}

.flywheel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.flywheel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.75rem 1.5rem;
  text-align: left;
}

.flywheel-icon {
  width: 38px;
  height: 38px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal);
}

.flywheel-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.flywheel-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 3-up grid matching the flywheel cards above, so each badge lines up
   under its column */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(13,148,136,0.06);
  padding: 0.6rem 1.25rem;
  border-radius: 0;
  border: 1px solid rgba(13,148,136,0.16);
}

/* -- BOTTOM CTA (high-contrast black band) -- */
.bottom-cta {
  position: relative;
  padding: 6rem 2rem;
  background: var(--ink);
  text-align: center;
}

.cta-content { position: relative; z-index: 2; }

.cta-headline {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-headline span { color: var(--teal-bright); }

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2.25rem;
}

.btn-cta {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
  padding: 0.95rem 2.25rem;
  border-radius: 0;
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta:hover { background: #e9e9e9; }

/* the secondary CTA sits on the dark band — invert it for contrast */
.bottom-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); background: transparent; }
.bottom-cta .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* -- FOOTER (light) -- */
footer {
  background: var(--wash);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }

/* -- RESPONSIVE -- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .value-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; gap: 2rem; align-items: center; }
  .timeline::before { display: none; }
  .timeline-stage { max-width: 280px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col--without { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-badges { grid-template-columns: 1fr; }
  .flywheel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  /* Keep only Log In + Request Access — three CTAs overflow a phone viewport */
  .btn-demo, .nav-divider { display: none; }
  .nav-right { gap: 0.75rem; }
  .hero { padding: 8rem 1.25rem 4rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.5rem 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* ============================================================
   Auth pages (login, signup, password reset, invite errors)
   ============================================================ */

.auth-section {
  padding: 8rem 1rem 4rem;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2.25rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.auth-card--narrow { max-width: 420px; }

.auth-card h1,
.auth-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.auth-card .subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.auth-card--center { text-align: center; }
.auth-card--center .subtitle { margin-bottom: 1.5rem; }

.auth-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-group { margin-bottom: 1.125rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-group input[readonly] {
  background: var(--bg);
  color: var(--text-muted);
  cursor: default;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.field-error {
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.form-errors {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  color: #ef4444;
  font-size: 0.875rem;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.15s, opacity 0.15s;
  font-family: inherit;
}

.btn-submit:hover { background: var(--teal-hover); }

.auth-footer {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover { text-decoration: underline; }

.auth-link {
  color: var(--teal);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 600;
}
.auth-link:hover { text-decoration: underline; }
