:root {
  --bg-deep: #0a1030;
  --bg-mid: #1b2fa8;
  --bg-light: #4e7bff;
  --ink: #0b1024;
  --body-text: #1a2244;
  --muted: #3a4470;
  --muted-2: #6b6152;
  --cream: #fff4e6;
  --cream-2: #f6e4cd;
  --cream-3: #fffaf2;
  --white: #ffffff;

  --pink: #ff5cd6;
  --pink-deep: #d9008f;
  --green: #8cff4f;
  --green-mid: #37c400;
  --green-deep: #1b7a00;
  --yellow: #ffd93d;
  --yellow-light: #e9ff57;
  --blue: #5f8cff;
  --blue-deep: #2440c9;

  --border: 3px solid var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --shadow-md: 10px 10px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-xs: 2px 2px 0 var(--ink);

  --font-display: "Baloo 2", Archivo, sans-serif;
  --font-body: Archivo, Helvetica, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--body-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

/* ---------- ticker ---------- */

.ticker {
  background: var(--ink);
  color: var(--green);
  overflow: hidden;
  padding: 8px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ss-ticker 95s linear infinite;
}

.ticker-set {
  display: flex;
  gap: 24px;
  flex: 0 0 auto;
  padding-right: 24px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes ss-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ss-shine { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes ss-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.15; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- page shell ---------- */

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 64px;
  background: radial-gradient(120% 60% at 15% 0%, var(--bg-light) 0%, var(--bg-mid) 45%, var(--bg-deep) 100%);
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 4px;
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--white) 0%, #d8deef 48%, #a9b4d4 52%, #edf1fa 100%);
  border: 2px solid var(--ink);
  padding: 7px 16px 7px 12px;
  box-shadow: var(--shadow-xs);
}

.brand-mark { width: 22px; height: 22px; display: block; }

.brand-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  background: var(--ink);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-yellow { color: var(--yellow-light); }

/* ---------- hero window card ---------- */

.win-card {
  background: linear-gradient(180deg, #fdfeff 0%, #eaf0ff 100%);
  border: var(--border);
  box-shadow: var(--shadow-lg);
  margin-top: 16px;
  overflow: hidden;
}

.win-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-bottom: var(--border);
  padding: 8px 12px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--ink); }
.dot-red { background: #ff6b6b; }
.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }

.win-titlebar-badge { margin-left: auto; padding: 3px 10px; font-size: 11px; }

.win-body { padding: 36px 28px 30px; }

.sticker-wrap { display: inline-block; }

.sticker {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow-light);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.susan-bubble {
  position: relative;
  flex: 0 1 380px;
  min-width: 260px;
  background: linear-gradient(180deg, #ffffff 0%, #dce4f7 46%, #b9c5e4 54%, #f2f6ff 100%);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 5px;
}

.susan-bubble-inner {
  background: linear-gradient(180deg, #fdfeff 0%, #eaf0ff 100%);
  border: 2px solid var(--ink);
  padding: 14px 16px 16px;
}

.susan-bubble-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.susan-bubble-dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--green-mid);
  animation: ss-blink 1.4s steps(1, end) infinite;
}

.susan-bubble-question {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.12;
  color: var(--bg-mid);
}

.susan-bubble::before,
.susan-bubble::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.susan-bubble::before {
  left: 34px;
  bottom: -22px;
  border-right: 26px solid transparent;
  border-top: 22px solid var(--ink);
}

.susan-bubble::after {
  left: 38px;
  bottom: -15px;
  border-right: 17px solid transparent;
  border-top: 15px solid #e8edfa;
}

.hero-title {
  margin: 18px 0 0;
  max-width: 68ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bg-mid);
}

.hero-title-flash {
  background: linear-gradient(96deg, var(--bg-mid) 0%, var(--pink-deep) 38%, var(--bg-mid) 66%, #00a3a3 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ss-shine 14s linear infinite;
}

.hero-standfirst {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--body-text);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.hero-stat {
  flex: 1 1 160px;
  min-width: 0;
  padding: 16px 18px;
}

.hero-stat + .hero-stat {
  border-left: 3px solid var(--ink);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.8vw, 45px);
  line-height: 1;
}

.hero-stat-blue .hero-stat-num { color: var(--bg-mid); }
.hero-stat-pink .hero-stat-num { color: var(--pink-deep); }
.hero-stat-green .hero-stat-num { color: var(--green-deep); }
.hero-stat-ink .hero-stat-num { color: var(--ink); }

.hero-stat-pct {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.hero-stat-blue .hero-stat-pct { color: var(--bg-mid); }
.hero-stat-pink .hero-stat-pct { color: var(--pink-deep); }
.hero-stat-green .hero-stat-pct { color: var(--green-deep); }
.hero-stat-ink .hero-stat-pct { color: var(--muted); text-transform: uppercase; }

.hero-stat-label {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- section divider ---------- */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 22px;
}

.section-divider-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--white) 100%);
}

.section-divider-line:last-child {
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-divider-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cfe0ff;
  white-space: nowrap;
}

/* ---------- head to head ---------- */

.h2h-frame {
  background: var(--ink);
  border: var(--border);
  box-shadow: var(--shadow-md);
}

.h2h-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3px;
}

.h2h-card {
  padding: 22px;
  position: relative;
}

.h2h-pink { background: #ffe9f7; }
.h2h-green { background: #e4ffda; }

.h2h-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ink);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.h2h-tag-yellow { color: var(--yellow-light); }
.h2h-tag-green { color: var(--green); }

.h2h-rank {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.h2h-name {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 43px);
  line-height: 1.02;
}

.h2h-name-pink { color: var(--pink-deep); }
.h2h-name-green { color: var(--green-deep); }

.h2h-bar {
  margin-top: 14px;
  height: 30px;
  background: var(--white);
  border: var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.h2h-bar-fill { height: 100%; width: 0%; transition: width 0.6s ease; }
.h2h-bar-pink { background: repeating-linear-gradient(135deg, var(--pink) 0 12px, var(--pink-deep) 12px 24px); }
.h2h-bar-green { background: repeating-linear-gradient(135deg, var(--green) 0 12px, var(--green-mid) 12px 24px); }

.h2h-bar-pct {
  padding-left: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.h2h-blurb { margin: 14px 0 0; font-size: 17px; line-height: 1.5; color: var(--body-text); }

/* ---------- map card ---------- */

.map-card {
  background: linear-gradient(180deg, #fdfeff 0%, #e7eeff 100%);
  border: var(--border);
  box-shadow: var(--shadow-md);
  margin-top: 16px;
  overflow: hidden;
}

.map-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-bottom: var(--border);
  padding: 10px 16px;
}

.live-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: ss-blink 1.4s steps(1, end) infinite;
  display: inline-block;
}

.live-dot-green { background: var(--green-mid); }

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px 0;
}

.mode-toggle {
  display: inline-flex;
  background: var(--cream-3);
  border: 2px solid var(--ink);
  padding: 3px;
}

.mode-btn {
  appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 16px;
  cursor: pointer;
}

.mode-btn.is-active { background: var(--ink); color: var(--green); }

.area-select {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream-3);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  max-width: 220px;
}

.map-stage {
  position: relative;
  margin: 14px 16px 0;
  height: 480px;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--cream-2);
}

#map { position: absolute; inset: 0; }

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cream-2);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.map-loading.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.map-loading p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.spinner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid rgba(11, 16, 36, 0.18);
  border-top-color: var(--blue-deep);
  animation: spin 0.8s linear infinite;
}

.map-legend {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 6;
  max-width: calc(100% - 24px);
  max-height: calc(100% - 24px);
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  background: rgba(255, 250, 242, 0.94);
  border: 2px solid var(--ink);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.legend-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }

.legend-item.legend-note { color: var(--ink); font-weight: 700; }

.legend-swatch { width: 12px; height: 12px; border: 1.5px solid var(--ink); flex: none; }

.legend-gradient {
  width: 60px;
  height: 9px;
  border: 1.5px solid var(--ink);
  background: linear-gradient(to right, var(--cream-2), var(--green-mid));
}

.legend-scale-labels {
  display: flex;
  justify-content: space-between;
  width: 60px;
  font-size: 10px;
  color: var(--muted);
}

.selected-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
}

.selected-bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.selected-bar-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  flex: 1 1 auto;
}

.selected-bar-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.selected-pill {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 7px 12px;
  box-shadow: var(--shadow-xs);
}

.selected-pill .v { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1.1; color: var(--ink); }
.selected-pill .l { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ---------- two-col: regional beef + chili mango ---------- */

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.beef-card, .mango-card {
  border: var(--border);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.beef-card { background: linear-gradient(180deg, var(--white) 0%, #edf2ff 100%); }

.beef-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--bg-mid);
}

.beef-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }

.beef-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 2px dotted #b7c4e8;
  padding-bottom: 12px;
}

.beef-row-last { border-bottom: none; padding-bottom: 0; }

.beef-row p { margin: 0; font-size: 16.5px; line-height: 1.45; color: var(--body-text); }

.beef-tag {
  flex: 0 0 auto;
  background: var(--ink);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beef-tag-pink { color: var(--pink); }
.beef-tag-green { color: var(--green); }
.beef-tag-yellow { color: var(--yellow); }
.beef-tag-blue { color: var(--blue); }

.mango-card { background: linear-gradient(180deg, var(--blue-deep) 0%, var(--bg-deep) 100%); color: #eaf0ff; }

.mango-title {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.08;
  color: var(--yellow);
}

.mango-body { margin: 14px 0 0; font-size: 16.5px; line-height: 1.55; color: #d6e1ff; }

.mango-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

/* ---------- footer ---------- */

.foot-bar {
  background: linear-gradient(180deg, var(--white) 0%, #e9eefb 100%);
  border: var(--border);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.foot-note {
  margin: 0;
  max-width: 62ch;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--body-text);
}

.foot-link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green);
  border: 2px solid var(--ink);
  padding: 10px 16px;
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.foot-link:hover { background: var(--yellow-light); }

/* ---------- CTA card ---------- */

.cta-card {
  background: var(--ink);
  border: var(--border);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.35);
  padding: 26px;
  margin-top: 16px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cta-left { min-width: 0; }

.cta-brand { display: flex; align-items: center; gap: 10px; }

.cta-mark { width: 24px; height: 24px; display: block; }

.cta-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--cream); }

.cta-copy { margin: 10px 0 0; font-size: 17px; line-height: 1.45; color: #d6e1ff; max-width: 42ch; }

.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cta-btn {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.cta-btn-primary { background: var(--green); border: 2px solid var(--ink); color: var(--ink); box-shadow: 3px 3px 0 var(--cream); }
.cta-btn-primary:hover { background: var(--yellow-light); }
.cta-btn-secondary { background: transparent; border: 2px solid var(--cream); color: var(--cream); }
.cta-btn-secondary:hover { background: var(--cream); color: var(--ink); }

/* ---------- susan bio card ---------- */

.susan-card {
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, var(--white) 0%, #edf2ff 100%);
  border: var(--border);
  box-shadow: var(--shadow-md);
  margin-top: 16px;
  overflow: hidden;
}

.susan-photo {
  display: block;
  width: 200px;
  flex: 0 0 200px;
  min-height: 200px;
  object-fit: cover;
  object-position: center 20%;
  border-right: var(--border);
}

.susan-body { flex: 1 1 auto; min-width: 0; padding: 24px 28px; }

.susan-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow-light);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.susan-name {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 36px);
  color: var(--bg-mid);
}

.susan-title {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.susan-text { margin: 14px 0 0; max-width: 62ch; font-size: 16.5px; line-height: 1.55; color: var(--body-text); }

.susan-disclaimer {
  margin: 14px 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}

.susan-disclaimer a {
  color: var(--bg-mid);
  text-decoration: underline;
}

.susan-disclaimer a:hover { color: var(--pink-deep); }

/* ---------- tablet / mobile ---------- */

@media (max-width: 760px) {
  .page { padding: 0 12px 48px; }
  .win-body { padding: 26px 18px 22px; }
  .map-stage { height: 340px; margin: 12px 12px 0; }
  .map-legend { font-size: 10.5px; max-width: calc(100% - 20px); }
  .foot-bar, .cta-card { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }

  .susan-card { flex-direction: column; }
  .susan-photo { width: 100%; flex-basis: auto; min-height: 220px; border-right: none; border-bottom: var(--border); }

  .susan-bubble { flex: 0 1 190px; min-width: 0; margin-left: auto; box-shadow: 5px 5px 0 var(--ink); }
  .susan-bubble-inner { padding: 9px 11px 11px; }
  .susan-bubble-status { font-size: 9.5px; gap: 5px; }
  .susan-bubble-dot { width: 7px; height: 7px; }
  .susan-bubble-question { margin-top: 6px; font-size: 15px; line-height: 1.18; }
  .susan-bubble::before { left: 18px; bottom: -14px; border-right: 16px solid transparent; border-top: 14px solid var(--ink); }
  .susan-bubble::after { left: 21px; bottom: -9px; border-right: 10px solid transparent; border-top: 9px solid #e8edfa; }
  .cta-btn { flex: 1 1 auto; text-align: center; }

  .hero-stat { flex: 1 1 100%; }
  .hero-stat + .hero-stat { border-left: none; border-top: 3px solid var(--ink); }
}
