/* ============================================================
   style.css — Verity v6 "The Verification Bureau" (Light)

   PALETTE: Warm cream canvas × deep forest green × amber gold.
   Professional editorial — not generic SaaS, not dark-mode clone.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Figtree:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Canvas — warm cream/ivory, not pure white */
  --canvas: #f4f1eb;
  --canvas-1: rgba(0, 0, 0, 0.03);
  --canvas-2: rgba(0, 0, 0, 0.06);

  /* Surfaces — white cards with warmth */
  --s0: rgba(0, 0, 0, 0.03);
  --s1: rgba(255, 255, 255, 0.80);
  --s2: rgba(255, 255, 255, 0.95);
  --s3: #ffffff;

  /* Borders — warm dark */
  --b0: rgba(30, 20, 10, 0.07);
  --b1: rgba(30, 20, 10, 0.13);
  --b2: rgba(30, 20, 10, 0.22);

  /* Text — dark charcoal with warm undertone (Increased contrast) */
  --t1: rgba(22, 17, 11, 0.95);
  --t2: rgba(22, 17, 11, 0.75);
  --t3: rgba(22, 17, 11, 0.60);
  --t4: rgba(22, 17, 11, 0.45);

  /* Accent — deep forest green (refined, not neon) */
  --accent: #2d6a4f;
  --accent-dim: rgba(45, 106, 79, 0.10);
  --accent-border: rgba(45, 106, 79, 0.28);
  --accent-glow: 0 4px 20px rgba(45, 106, 79, 0.22);

  /* Gold — warm amber authority */
  --gold: #a16207;
  --gold-dim: rgba(161, 98, 7, 0.10);
  --gold-border: rgba(161, 98, 7, 0.28);

  /* Verdict tints — muted, readable on cream */
  --v-ex-tint: rgba(22, 101, 52, 0.08);
  --v-ex-border: rgba(22, 101, 52, 0.22);
  --v-un-tint: rgba(146, 64, 14, 0.08);
  --v-un-border: rgba(146, 64, 14, 0.22);
  --v-sp-tint: rgba(154, 52, 18, 0.08);
  --v-sp-border: rgba(154, 52, 18, 0.22);
  --v-bd-tint: rgba(153, 27, 27, 0.08);
  --v-bd-border: rgba(153, 27, 27, 0.22);
  --v-ud-tint: rgba(107, 114, 128, 0.08);
  --v-ud-border: rgba(107, 114, 128, 0.22);

  /* Score colors — dark, readable on light bg */
  --score-ex: #166534;
  --score-un: #92400e;
  --score-sp: #9a3412;
  --score-bd: #991b1b;
  --score-ud: #6b7280;

  /* Blur / shine */
  --blur: blur(20px) saturate(150%);
  --shine: inset 0 1px 0 rgba(255, 255, 255, 0.60);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-pill: 100px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-body: 'Figtree', system-ui, sans-serif;

  /* Legacy aliases */
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-pale: rgba(45, 106, 79, 0.08);
  --green-border: rgba(45, 106, 79, 0.22);
  --gold-light: #fef3c7;
  --blue: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-border: #bfdbfe;
  --bg: var(--canvas);
  --bg-white: var(--s2);
  --border: var(--b1);
  --border-soft: var(--b0);
  --text-dark: var(--t1);
  --text-body: var(--t2);
  --text-muted: var(--t3);
  --text-dim: var(--t4);
  --v-excellent: #166534;
  --v-good: #166534;
  --v-questionable: #92400e;
  --v-suspicious: #9a3412;
  --v-bad: #991b1b;
  --v-undeterminable: #6b7280;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
  --radius: var(--r-sm);
  --radius-sm: var(--r-xs);
  --radius-lg: var(--r-md);
  --transition: 0.18s ease;
}

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

html {
  scroll-behavior: smooth;
}

/* ── Background ─────────────────────────────────────────────── */
body {
  background: #f0f2f5;
  color: var(--t1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* No dot grid */
body::before {
  content: none;
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════════════════════════
   HEADER — solid dark bar
   ════════════════════════════════════════════════════════════ */
.site-header {
  background: #1a1a1a;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 54px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none !important;
  user-select: none;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.header-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
}

.header-tag {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  letter-spacing: 0.5px;
}

.header-cta-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.header-cta-btn:hover {
  background: var(--green-dark);
  box-shadow: var(--accent-glow);
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
}

.logo-accent {
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   HERO (input section)
   ════════════════════════════════════════════════════════════ */
.hero-section {
  background: #1a7f4b;
  padding: 48px 24px 80px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero-section h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   INPUT CARD — white card with warm shadow
   ════════════════════════════════════════════════════════════ */
.input-section {
  padding-bottom: 60px;
  flex: 1;
}

.input-card {
  background: #fff;
  border: 1px solid var(--b1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  margin-top: -56px;
}

.tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--canvas);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 4px;
}

.tab {
  flex: 1;
  padding: 9px 16px;
  border: none;
  border-radius: var(--r-xs);
  background: transparent;
  color: var(--t3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.tab.active {
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.tab:hover:not(.active) {
  color: var(--t1);
}

.input-wrapper {
  margin-bottom: 14px;
}

.main-input {
  width: 100%;
  background: var(--canvas);
  border: 1.5px solid var(--b1);
  border-radius: var(--r-sm);
  color: var(--t1);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}

.main-input:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.main-input::placeholder {
  color: var(--t4);
}

.text-area {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.analyze-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 16px;
}

.analyze-btn:hover {
  background: var(--green-dark);
  box-shadow: var(--accent-glow);
}

.analyze-btn:active {
  transform: scale(0.998);
}

.analyze-btn:disabled {
  opacity: 0.50;
  cursor: not-allowed;
  transform: none;
}

.powered-by {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--t4);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.powered-by a {
  color: var(--t3);
}

.powered-by a:hover {
  color: var(--accent);
  text-decoration: none;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--b0);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  letter-spacing: 0;
}

.trust-badge-icon {
  color: #2d6a4f;
  font-weight: 700;
  background: rgba(45, 158, 107, 0.12);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   LOADING — warm cream, not dark
   ════════════════════════════════════════════════════════════ */
.loading-section {
  min-height: calc(100vh - 54px);
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  flex: 1;
}

.loading-inner {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.loading-rings {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 40px;
}

.lr-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  animation: spin 1.1s linear infinite;
}

.lr-middle {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--gold);
  border-left-color: var(--gold);
  animation: spin 0.75s linear infinite reverse;
}

.lr-core {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-title {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 8px;
}

.loading-subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.loading-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px 20px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--b1);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.lc-icon {
  font-size: 26px;
  line-height: 1;
  opacity: 0.35;
  transition: opacity 0.35s ease;
}

.lc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t4);
  transition: color 0.35s ease;
  text-align: center;
}

.lc-item.done {
  border-color: var(--accent-border);
  background: var(--accent-dim);
  box-shadow: none;
}

.lc-item.done .lc-icon {
  opacity: 1;
}

.lc-item.done .lc-label {
  color: var(--accent);
  font-weight: 700;
}

.lc-item.done::before {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 7px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: #fff;
  background: var(--accent);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 13px;
  text-align: center;
}

@media (max-width: 500px) {
  .loading-checks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════════════════
   RESULTS — warm cream throughout
   ════════════════════════════════════════════════════════════ */
.results-section {
  padding: 40px 0 80px;
  flex: 1;
  background: var(--canvas);
}

.article-title-display {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--t3);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  background: #fff;
  border-radius: var(--r-xs);
  border: 1px solid var(--b1);
}

/* ── CACHE BADGE ─────────────────────────────────────────────── */
.cache-badge {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  border: 1px solid var(--accent-border);
}

/* ── VERDICT BANNER — white card with tinted border ─────────── */
.verdict-banner {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 18px;
  background: #fff;
  border: 1.5px solid var(--b1);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold) !important;
  position: relative;
}

.verdict-banner.v-excellent,
.verdict-banner.v-good {
  background: var(--v-ex-tint);
  border-color: var(--v-ex-border) !important;
  border-top-color: var(--gold) !important;
}

.verdict-banner.v-questionable {
  background: var(--v-un-tint);
  border-color: var(--v-un-border) !important;
  border-top-color: var(--gold) !important;
}

.verdict-banner.v-suspicious {
  background: var(--v-sp-tint);
  border-color: var(--v-sp-border) !important;
  border-top-color: var(--gold) !important;
}

.verdict-banner.v-bad {
  background: var(--v-bd-tint);
  border-color: var(--v-bd-border) !important;
  border-top-color: var(--gold) !important;
}

.verdict-banner.v-undeterminable {
  background: var(--v-ud-tint);
  border-color: var(--v-ud-border) !important;
  border-top-color: var(--gold) !important;
}

.verdict-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.verdict-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.verdict-banner.v-excellent .verdict-title,
.verdict-banner.v-good .verdict-title {
  color: var(--score-ex);
}

.verdict-banner.v-questionable .verdict-title {
  color: var(--score-un);
}

.verdict-banner.v-suspicious .verdict-title {
  color: var(--score-sp);
}

.verdict-banner.v-bad .verdict-title {
  color: var(--score-bd);
}

.verdict-banner.v-undeterminable .verdict-title {
  color: var(--score-ud);
}

.verdict-score-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.score-big {
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.score-label {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--t3);
}

.verdict-banner.v-excellent .score-big,
.verdict-banner.v-good .score-big {
  color: var(--score-ex);
}

.verdict-banner.v-questionable .score-big {
  color: var(--score-un);
}

.verdict-banner.v-suspicious .score-big {
  color: var(--score-sp);
}

.verdict-banner.v-bad .score-big {
  color: var(--score-bd);
}

.verdict-banner.v-undeterminable .score-big {
  color: var(--score-ud);
}

.mdm-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  background: var(--canvas);
  border: 1px solid var(--b1);
  color: var(--t2);
  margin-bottom: 10px;
}

.verdict-subtext {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--t2);
  line-height: 1.5;
}

/* ── CORE CLAIM ─────────────────────────────────────────────── */
.core-claim-section {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
}

.core-claim-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 6px;
}

.core-claim-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--t1);
  line-height: 1.55;
}

/* ── NEUTRAL SUMMARY ─────────────────────────────────────────── */
.neutral-summary-section {
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.neutral-summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--b0);
  background: var(--canvas);
}

.neutral-summary-icon {
  font-size: 14px;
}

.neutral-summary-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t2);
  flex: 1;
}

.neutral-summary-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-speak-btn,
.summary-stop-btn,
.neutral-summary-toggle {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid var(--accent);
}

.summary-speak-btn {
  background: var(--accent);
  color: #fff;
}

.summary-speak-btn:hover:not(:disabled) {
  background: var(--green-dark);
}

.summary-speak-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.summary-stop-btn {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}

.summary-stop-btn:hover {
  background: #fecaca;
}

.neutral-summary-toggle {
  color: var(--accent);
  background: none;
  border-color: var(--accent-border);
}

.neutral-summary-toggle:hover {
  background: var(--accent-dim);
}

.neutral-summary-body {
  padding: 16px 20px;
}

.neutral-summary-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--t2);
  margin: 0 0 12px 0;
}

.neutral-summary-body p:last-child {
  margin-bottom: 0;
}

/* ── REPORT CARD ─────────────────────────────────────────────── */
.report-card {
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  border-bottom: 1px solid var(--b0);
  background: var(--canvas);
}

.report-card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t2);
}

.report-card-subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--t4);
  letter-spacing: 0.06em;
}

.criteria-list {
  display: flex;
  flex-direction: column;
}

/* ── CRITERION ROWS ──────────────────────────────────────────── */
.criterion-row {
  padding: 16px 22px;
  border-bottom: 1px solid var(--b0);
  transition: background var(--transition);
}

.criterion-row:last-child {
  border-bottom: none;
}

.criterion-row:hover {
  background: var(--canvas);
}

.criterion-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 10px;
}

.criterion-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.criterion-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid transparent;
}

.criterion-row.score-high .criterion-icon {
  background: var(--v-ex-tint);
  border-color: var(--v-ex-border);
}

.criterion-row.score-mid .criterion-icon {
  background: var(--v-un-tint);
  border-color: var(--v-un-border);
}

.criterion-row.score-low .criterion-icon {
  background: var(--v-bd-tint);
  border-color: var(--v-bd-border);
}

.criterion-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--t1);
}

.criterion-weight {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--t4);
  letter-spacing: 0.04em;
  margin-left: 2px;
}

.criterion-score-badge {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  min-width: 52px;
  text-align: right;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.criterion-row.score-high .criterion-score-badge {
  color: var(--score-ex);
}

.criterion-row.score-mid .criterion-score-badge {
  color: var(--score-un);
}

.criterion-row.score-low .criterion-score-badge {
  color: var(--score-bd);
}

.progress-track {
  height: 4px;
  background: var(--b0);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.criterion-row.score-high .progress-fill {
  background: var(--accent);
}

.criterion-row.score-mid .progress-fill {
  background: var(--gold);
}

.criterion-row.score-low .progress-fill {
  background: #dc2626;
}

.criterion-reason {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  padding: 10px 14px;
  background: var(--canvas);
  border-radius: var(--r-xs);
  border-left: 2.5px solid var(--b1);
}

.criterion-row.score-high .criterion-reason {
  border-left-color: var(--accent);
}

.criterion-row.score-mid .criterion-reason {
  border-left-color: var(--gold);
}

.criterion-row.score-low .criterion-reason {
  border-left-color: #dc2626;
}

/* ── VOICE / RESET ────────────────────────────────────────────── */
.voice-section {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.voice-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.speak-btn {
  padding: 10px 20px;
  background: var(--blue-light);
  border: 1.5px solid var(--blue-border);
  border-radius: var(--r-sm);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
}

.speak-btn:hover {
  background: var(--blue);
  color: #fff;
}

.speak-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.stop-btn {
  padding: 10px 16px;
  background: #fee2e2;
  border: 1.5px solid #fca5a5;
  border-radius: var(--r-sm);
  color: #991b1b;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  display: none;
}

.stop-btn:hover {
  background: #fecaca;
}

.voice-hint {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--t4);
  text-transform: uppercase;
}

.followup-buttons {
  margin-top: 8px;
  text-align: center;
}

.followup-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 8px;
}

.followup-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.followup-btn {
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-sm);
  color: var(--t2);
  font-size: 12px;
  cursor: pointer;
  transition: all var(--transition);
}

.followup-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.followup-btn:disabled {
  cursor: not-allowed;
}

.reset-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-sm);
  color: var(--t3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.reset-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── HISTORY ─────────────────────────────────────────────────── */
.history-card {
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.history-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
}

.history-subtitle {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--t4);
  letter-spacing: 0.06em;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.history-row {
  border: 1.5px solid var(--b0);
  border-radius: var(--r-xs);
  padding: 9px 14px;
  transition: all var(--transition);
}

.history-row:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

.history-row-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-domain {
  flex: 1;
  font-size: 13px;
  color: var(--t1);
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-verdict {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.history-verdict.v-excellent,
.history-verdict.v-good {
  background: var(--v-ex-tint);
  color: var(--score-ex);
}

.history-verdict.v-questionable {
  background: var(--v-un-tint);
  color: var(--score-un);
}

.history-verdict.v-suspicious {
  background: var(--v-sp-tint);
  color: var(--score-sp);
}

.history-verdict.v-bad {
  background: var(--v-bd-tint);
  color: var(--score-bd);
}

.history-verdict.v-undeterminable {
  background: var(--v-ud-tint);
  color: var(--score-ud);
}

.history-score {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.history-score.score-high {
  color: var(--score-ex);
}

.history-score.score-mid {
  color: var(--score-un);
}

.history-score.score-low {
  color: var(--score-bd);
}

/* ── ERROR BANNER ────────────────────────────────────────────── */
.error-banner {
  background: #fee2e2;
  border: 1.5px solid #fca5a5;
  border-radius: var(--r-sm);
  padding: 12px 18px;
  color: #991b1b;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-align: center;
}

/* ── UNDETERMINABLE NOTICE ───────────────────────────────────── */
.undeterminable-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f9fafb;
  border: 1.5px solid #d1d5db;
  border-left: 4px solid #6b7280;
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin-bottom: 18px;
}

.undeterminable-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.undeterminable-text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 6px;
}

.undeterminable-text p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  margin: 0;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid var(--b1);
  padding: 20px 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--t3);
  line-height: 1.8;
  margin-top: auto;
}

.site-footer a {
  color: var(--t2);
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-team {
  color: var(--t4);
  margin-top: 2px;
}

/* ── Responsive (app sections) ───────────────────────────────── */
@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 34px;
  }

  .score-big {
    font-size: 64px;
  }

  .verdict-title {
    font-size: 26px;
  }

  .trust-badges {
    gap: 12px;
  }

  .header-tag {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   LANDING PAGE
   ════════════════════════════════════════════════════════════ */
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.lp-hero {
  background: transparent;
  padding: 96px 0 104px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.lp-hero-text {
  color: var(--t1);
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 28px;
}

.lp-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.lp-hero-h1 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--t1);
  margin-bottom: 24px;
}

.lp-hero-em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.lp-hero-p {
  font-size: 20px;
  color: var(--t1);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 36px;
}

.lp-hero-p strong {
  color: var(--t1);
  font-weight: 600;
}

.lp-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.lp-btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.lp-btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--accent-glow);
}

.lp-btn-primary:active {
  transform: translateY(0);
}

.lp-btn-lg {
  font-size: 13px;
  padding: 16px 36px;
}

.lp-btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  text-decoration: none;
  border-bottom: 1px solid var(--b2);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.lp-btn-ghost:hover {
  color: var(--t1);
  border-color: var(--t1);
  text-decoration: none;
}

.lp-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-stat {
  display: flex;
  flex-direction: column;
}

.lp-stat-n {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.lp-stat-l {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-top: 3px;
}

.lp-stat-div {
  width: 1px;
  height: 28px;
  background: var(--b2);
}

/* ── Demo card — white glass on light canvas ─────────────────── */
.lp-hero-card {
  display: flex;
  justify-content: flex-end;
}

.lp-demo-card {
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-xl);
  padding: 24px;
  width: 100%;
  max-width: 360px;
  color: var(--t1);
  box-shadow: var(--shadow-lg);
}

.lp-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--b0);
}

.lp-demo-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}

.lp-demo-live {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--accent);
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.lp-demo-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.lp-demo-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.lp-demo-verdict {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--t1);
  margin-bottom: 2px;
}

.lp-demo-src {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.04em;
}

.lp-demo-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.lp-demo-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--t2);
  letter-spacing: 0.04em;
}

.lp-demo-bar-row>span:first-child {
  min-width: 60px;
  flex-shrink: 0;
}

.lp-demo-bar-row>span:last-child {
  min-width: 24px;
  text-align: right;
  color: var(--t1);
  font-weight: 700;
}

.lp-demo-track {
  flex: 1;
  height: 3px;
  background: var(--b0);
  border-radius: 100px;
  overflow: hidden;
}

.lp-demo-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1b4332, var(--accent));
  border-radius: 100px;
  animation: lp-bar-fill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered delays */
.lp-demo-bars .lp-demo-bar-row:nth-child(1) .lp-demo-fill {
  animation-delay: 0.2s;
}

.lp-demo-bars .lp-demo-bar-row:nth-child(2) .lp-demo-fill {
  animation-delay: 0.55s;
}

.lp-demo-bars .lp-demo-bar-row:nth-child(3) .lp-demo-fill {
  animation-delay: 0.9s;
}

.lp-demo-bars .lp-demo-bar-row:nth-child(4) .lp-demo-fill {
  animation-delay: 1.2s;
}

@keyframes lp-bar-fill {
  to {
    width: var(--w, 80%);
  }
}

.lp-demo-footer {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--b0);
}

.lp-demo-footer strong {
  color: var(--accent);
}

/* ── Landing sections shared ────────────────────────────────── */
.lp-section {
  padding: 88px 0;
}

.lp-section-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.lp-section-hdr h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--t1);
  margin-bottom: 10px;
}

.lp-section-hdr p {
  font-size: 16px;
  color: var(--t2);
  max-width: 480px;
  margin: 0 auto;
}

/* ── How It Works ───────────────────────────────────────────── */
.lp-how-section {
  background: transparent;
}

.lp-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lp-step {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.lp-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-border);
}

.lp-step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-pill);
  padding: 2px 10px;
  margin: 0 auto 16px;
}

.lp-step-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.lp-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--t1);
  margin-bottom: 8px;
}

.lp-step p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.65;
  margin-top: 6px;
}

.lp-step-arrow {
  font-size: 18px;
  color: var(--b2);
  flex-shrink: 0;
  margin-top: 72px;
}

/* ── Criteria grid ──────────────────────────────────────────── */
.lp-crit-section {
  background: transparent;
}

.lp-crit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-crit-card {
  background: #fff;
  border: 1.5px solid var(--b1);
  border-radius: var(--r-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.lp-crit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-border);
}

.lp-crit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-crit-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.lp-crit-icon {
  font-size: 22px;
  line-height: 1;
}

.lp-crit-w {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--t3);
}

.lp-crit-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--t1);
  margin-bottom: 8px;
}

.lp-crit-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
  margin-top: 6px;
}

/* ── Bottom CTA ─────────────────────────────────────────────── */
.lp-bottom-cta {
  background: transparent;
  text-align: center;
}

.lp-cta-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--t1);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.lp-cta-sub {
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 32px;
}

.lp-cta-note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--t3);
}

.lp-cta-note a {
  color: var(--t3);
}

.lp-cta-note a:hover {
  color: var(--accent);
}

/* ── Landing responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lp-hero-h1 {
    font-size: 60px;
  }

  .lp-hero-card {
    justify-content: center;
  }

  .lp-crit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .lp-hero {
    padding: 64px 0 72px;
  }

  .lp-hero-h1 {
    font-size: 44px;
  }

  .lp-steps {
    flex-direction: column;
  }

  .lp-step-arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: 0;
  }

  .lp-crit-grid {
    grid-template-columns: 1fr;
  }

  .lp-section-hdr h2 {
    font-size: 32px;
  }

  .lp-cta-h2 {
    font-size: 36px;
  }

  .header-badge {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   SCORE GAUGE — semicircular arc with animated fill
   ════════════════════════════════════════════════════════════ */
.score-gauge-wrap {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 8px auto 18px;
}

.score-gauge {
  grid-area: 1 / 1;
  width: 100%;
  display: block;
  overflow: visible;
}

.gauge-center {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 28%;
  pointer-events: none;
  line-height: 1;
  gap: 2px;
}

.gauge-center .score-big {
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.gauge-center .score-label {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--t3);
  letter-spacing: 0;
}

.gauge-fill {
  stroke: var(--accent);
  stroke-dasharray: 295.31 295.31;
  stroke-dashoffset: 295.31;
  transition: none;
}

.gauge-dot {
  fill: var(--accent);
}

@keyframes gauge-dot-pulse {

  0%,
  100% {
    r: 6;
    opacity: 1;
  }

  50% {
    r: 8;
    opacity: 0.65;
  }
}

.gauge-dot.landed {
  animation: gauge-dot-pulse 2s ease-in-out infinite;
}

@keyframes gauge-shimmer {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.82;
  }
}

.gauge-fill.landed {
  animation: gauge-shimmer 3s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #1a7f4b;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 10px 24px 12px;
  font-size: 11px;
  line-height: 1.6;
  border-top: 2px solid #f0b429;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.site-footer .footer-team {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}