:root {
  --bg: #f6fafb;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-panel: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94));
  --surface-soft: #f0f7f7;
  --text: #13222e;
  --ink-strong: #16213d;
  --muted: #607081;
  --line: #dce7ea;
  --primary: #0f766e;
  --primary-strong: #0a5b55;
  --scenario-a: #0f766e;
  --scenario-b: #2563eb;
  --scenario-c: #f59e0b;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-sky: 0 18px 42px rgba(56, 189, 248, 0.10);
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.06);
  --shadow-premium: 0 26px 70px rgba(15, 23, 42, 0.10);
  --radius: 24px;
  --section-radius: 30px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 44%, rgba(15, 118, 110, 0.05), transparent 34%),
    radial-gradient(circle at 74% 72%, rgba(249, 115, 22, 0.07), transparent 22%),
    radial-gradient(circle at top right, rgba(244, 201, 93, 0.20), transparent 30%),
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at 18% 24%, rgba(56, 189, 248, 0.10), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 13px 14px;
}

input:focus, select:focus, button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.20);
  outline-offset: 2px;
}

.wrap { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.section {
  padding: 36px 0;
  position: relative;
}
.section-band::before {
  content: "";
  position: absolute;
  inset: 8px 16px;
  border-radius: var(--section-radius);
  pointer-events: none;
  z-index: 0;
}
.section-band > .wrap {
  position: relative;
  z-index: 1;
}
.section-band--product::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,250,255,0.86)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 34%);
  border: 1px solid rgba(190, 226, 241, 0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.section-band--soft::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(242,248,252,0.92)),
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.06), transparent 30%);
  border: 1px solid rgba(220, 231, 234, 0.86);
}
.hidden { display: none !important; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(246, 250, 251, 0.86);
  border-bottom: 1px solid rgba(190, 226, 241, 0.72);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(15, 118, 110, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.16);
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.18);
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
}

.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #14b8a6);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.24);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(56, 189, 248, 0.10));
  color: var(--primary-strong);
}

.btn-topbar {
  min-width: 196px;
  min-height: 56px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(244,248,251,0.94));
  border: 1px solid rgba(190, 226, 241, 0.9);
  box-shadow: var(--shadow-soft);
}

.ghost-btn {
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(15, 118, 110, 0.04);
  color: var(--primary-strong);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
}

.hero { padding: 42px 0 18px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
  align-items: stretch;
}

.card {
  background: var(--surface-panel);
  border: 1px solid rgba(220, 231, 234, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow-premium);
  min-width: 0;
}

.hero-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-grid > .hero-card:first-child {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(243,249,255,0.94)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 30%);
  border-color: rgba(190, 226, 241, 0.95);
}

.hero-grid > .hero-card:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(244, 201, 93, 0.12), transparent 26%);
  pointer-events: none;
}

.hero-grid > .hero-card:first-child > * {
  position: relative;
  z-index: 1;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 201, 93, 0.24), transparent 65%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(56, 189, 248, 0.10));
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.03em;
  font-family: "Sora", "Manrope", sans-serif;
  color: var(--ink-strong);
}
h1 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 0.98; max-width: 11ch; }
p { margin: 0; }

.hero-copy {
  margin-top: 18px;
  font-size: 1.04rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.quote-banner {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(244, 201, 93, 0.16));
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.quote-banner p {
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 700;
}

.quote-banner footer {
  margin-top: 12px;
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  min-height: 58px;
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(190, 226, 241, 0.88);
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.flag-pill img {
  width: 22px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.12);
}

.confidence {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244,250,255,0.82));
  border: 1px solid rgba(190, 226, 241, 0.88);
}

.confidence strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--ink-strong);
}

.confidence ul {
  margin: 0;
  padding-left: 18px;
  color: #486173;
  display: grid;
  gap: 8px;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-proof-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(220, 231, 234, 0.94);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,251,255,0.86));
  box-shadow: var(--shadow-soft);
}

.hero-proof-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 8px;
}

.hero-proof-card strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.hero-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-side-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,248,255,0.95));
  border: 1px solid rgba(190, 226, 241, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-side-card p {
  color: var(--muted);
  margin-top: 8px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.quick-status-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.status-chip,
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(190, 226, 241, 0.95);
  background: rgba(255,255,255,0.84);
  color: #385061;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.stat-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 231, 234, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  font-family: "Sora", "Manrope", sans-serif;
}

.hero-chart-preview {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(190, 226, 241, 0.9);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,249,255,0.92)),
    radial-gradient(circle at bottom left, rgba(15, 118, 110, 0.08), transparent 30%);
  box-shadow: var(--shadow-soft);
}

.preview-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #476173;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.preview-caption strong {
  color: var(--ink-strong);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.preview-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 78px;
  margin-top: 16px;
}

.preview-bars span {
  flex: 1 1 0;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.84), rgba(15, 118, 110, 0.82));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
  transform-origin: bottom center;
  animation: previewPulse 3.8s ease-in-out infinite;
}

.preview-bars span:nth-child(1) { height: 26%; animation-delay: 0.08s; }
.preview-bars span:nth-child(2) { height: 58%; animation-delay: 0.16s; }
.preview-bars span:nth-child(3) { height: 82%; animation-delay: 0.24s; }
.preview-bars span:nth-child(4) { height: 50%; animation-delay: 0.32s; }
.preview-bars span:nth-child(5) { height: 72%; animation-delay: 0.4s; }
.preview-bars span:nth-child(6) { height: 94%; animation-delay: 0.48s; }

@keyframes previewPulse {
  0%, 100% { transform: scaleY(0.98); opacity: 0.86; }
  50% { transform: scaleY(1.04); opacity: 1; }
}

.stack { display: grid; gap: 24px; }

.controls-card,
.chart-card,
.table-card,
.consumer-card,
.winner-card {
  padding: 28px;
  border-radius: 32px;
  border-color: rgba(190, 226, 241, 0.95);
}

.controls-card,
.chart-card,
.table-card,
.consumer-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(247,251,255,0.95)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 26%);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--muted);
  max-width: 72ch;
  margin-top: 8px;
}

.product-inline-highlights,
.results-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-inline-highlights {
  margin-top: 18px;
}

.results-toolbar {
  margin-top: 16px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.currency-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(240,247,250,0.92));
  border: 1px solid rgba(190, 226, 241, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.currency-switch button {
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.currency-switch button.active {
  background: #fff;
  color: var(--primary-strong);
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.10);
}

.currency-switch button[data-currency="GTQ"].active {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(220, 252, 231, 0.94));
  color: #0f766e;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.14);
}

.currency-switch button[data-currency="USD"].active {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.94));
  color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.14);
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(220, 231, 234, 0.88);
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.switch input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
}

.note-strip {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(56, 189, 248, 0.08));
  color: var(--primary-strong);
  border: 1px solid rgba(56, 189, 248, 0.14);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.inline-help-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(56, 189, 248, 0.26);
  background: rgba(56, 189, 248, 0.05);
  color: #4a6476;
  font-size: 12px;
}

.shared-grid,
.scenario-grid,
.result-grid,
.metric-grid,
.consumer-grid,
.impact-grid,
.impact-mini-grid {
  display: grid;
  gap: 16px;
}

.shared-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.scenario-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.consumer-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.impact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 18px;
}

.impact-mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}

.field-inline > span:first-child {
  flex: 1 1 auto;
}

.field-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.scenario-name-field input {
  background: rgba(255,255,255,0.95);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: start;
}

#contacto .card {
  padding: 28px;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.field.full {
  grid-column: 1 / -1;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.help-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(15, 118, 110, 0.10));
  color: var(--primary-strong);
  border: 1px solid rgba(56, 189, 248, 0.18);
  font-size: 11px;
  font-weight: 800;
  cursor: help;
  flex: 0 0 auto;
  outline: none;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  z-index: 40;
}

.help-dot:hover,
.help-dot:focus-visible,
.help-dot.is-active {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.32);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.10);
}

.global-help-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  max-width: min(280px, calc(100vw - 24px));
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(19, 34, 46, 0.97);
  color: #f8fbfd;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.22);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 99999;
}

.global-help-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.global-help-tooltip::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 22px);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.global-help-tooltip[data-side="bottom"]::after {
  top: -7px;
  border-bottom: 7px solid rgba(19, 34, 46, 0.97);
}

.global-help-tooltip[data-side="top"]::after {
  bottom: -7px;
  border-top: 7px solid rgba(19, 34, 46, 0.97);
}

.scenario-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.tag-a { background: var(--scenario-a); }
.tag-b { background: var(--scenario-b); }
.tag-c { background: var(--scenario-c); }

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group input { padding-left: 88px; }

.prefix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.prefix {
  left: 14px;
  min-width: 64px;
}

.readonly-box {
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(220, 231, 234, 0.88);
  font-weight: 700;
  color: var(--primary-strong);
  min-height: 52px;
  display: flex;
  align-items: center;
}

.range-field {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(220, 231, 234, 0.88);
}

.range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.range-head span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.range-field input[type="range"] {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
}

.scenario-card {
  padding: 24px;
  border-top: 5px solid transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,251,255,0.95)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 24%);
}

.scenario-card.accent-a { border-top-color: var(--scenario-a); }
.scenario-card.accent-b { border-top-color: var(--scenario-b); }
.scenario-card.accent-c { border-top-color: var(--scenario-c); }

.scenario-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.scenario-fields {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.winner-card {
  background:
    radial-gradient(circle at top right, rgba(244, 201, 93, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(56, 189, 248, 0.12)),
    #ffffff;
}

.winner-card h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  margin-top: 8px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.winner-card p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 74ch;
  overflow-wrap: anywhere;
}

.winner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.winner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 231, 234, 0.88);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.winner-education-card {
  padding: 24px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,250,255,0.94)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 28%);
}

.winner-education-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.winner-education-item {
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(190, 226, 241, 0.86);
  box-shadow: var(--shadow-soft);
}

.winner-education-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.winner-education-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink-strong);
  overflow-wrap: anywhere;
}

.winner-education-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.result-card {
  padding: 22px;
  border: 1px solid rgba(220, 231, 234, 0.88);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: var(--shadow-soft);
}

.result-card:hover {
  transform: translateY(-2px);
}

.result-card.winner {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.14);
}

.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.result-head h3 {
  overflow-wrap: anywhere;
}

.scenario-kicker {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
}

.score-pill {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-strong);
  background: rgba(15, 118, 110, 0.10);
  white-space: nowrap;
}

.result-note {
  margin-top: 12px;
  color: var(--muted);
  min-height: 44px;
}

.score-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(220, 231, 234, 0.88);
  overflow: hidden;
  margin-top: 14px;
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), #14b8a6);
  transition: width 420ms ease;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.mini-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(246, 250, 251, 0.94);
  border: 1px solid rgba(220, 231, 234, 0.9);
  min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.mini-metric.best {
  border-color: rgba(15, 118, 110, 0.26);
  background: linear-gradient(180deg, rgba(240, 247, 247, 0.96), rgba(255, 255, 255, 0.96));
}

.mini-metric span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.mini-metric strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  word-break: break-word;
  font-family: "Sora", "Manrope", sans-serif;
}

.chart-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.chart-meta p {
  color: var(--muted);
  margin-top: 6px;
}

.legend {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

#compareChartSvg {
  width: 100%;
  height: auto;
  min-width: 720px;
  display: block;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.chart-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 22px;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.chart-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.chart-tooltip {
  position: absolute;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(19, 34, 46, 0.96);
  color: #f8fbfd;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.24);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 4;
}

.chart-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chart-tooltip-year {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.chart-tooltip-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.chart-tooltip-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.chart-tooltip-row strong {
  font-size: 13px;
}

.chart-hitbox {
  cursor: pointer;
}

.chart-hitbox:focus {
  outline: none;
}

.table-scroll {
  overflow-x: auto;
  margin-top: 18px;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 14px;
}

th, td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(220, 231, 234, 0.9);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td.best {
  color: var(--primary-strong);
  font-weight: 800;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.05), rgba(255,255,255,0.96));
}

td.best.best-a {
  color: #0a5b55;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.10), rgba(255,255,255,0.98));
  box-shadow: inset 3px 0 0 rgba(15, 118, 110, 0.30);
}

td.best.best-b {
  color: #1d4ed8;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.09), rgba(255,255,255,0.98));
  box-shadow: inset 3px 0 0 rgba(37, 99, 235, 0.26);
}

td.best.best-c {
  color: #b45309;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.10), rgba(255,255,255,0.98));
  box-shadow: inset 3px 0 0 rgba(245, 158, 11, 0.28);
}

.consumer-card p {
  color: var(--muted);
  margin-top: 10px;
}

.benefit-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,249,255,0.95)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 28%);
  border: 1px solid rgba(190, 226, 241, 0.9);
  box-shadow: var(--shadow-soft);
}

.benefit-stage-copy strong {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.15;
  color: var(--ink-strong);
  font-family: "Sora", "Manrope", sans-serif;
}

.benefit-stage-copy p {
  max-width: 66ch;
  overflow-wrap: anywhere;
}

.best-benefit-grid {
  margin-top: 20px;
}

.metric-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(220, 231, 234, 0.94);
  box-shadow: var(--shadow-soft);
}

.metric-card:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.94));
}

.metric-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,250,255,0.94)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.05), transparent 26%);
  border-color: rgba(190, 226, 241, 0.88);
}

.metric-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.metric-lead {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ink-strong);
}

.metric-card p {
  color: var(--muted);
}

.metric-value-live {
  display: inline-flex;
  align-items: center;
  margin: 4px 0 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.09);
  border: 1px solid rgba(15, 118, 110, 0.12);
  color: var(--primary-strong);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.formula-tag {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(190, 226, 241, 0.94);
  background: rgba(255,255,255,0.76);
  color: #355062;
  font-size: 12px;
  font-weight: 800;
}

.benefit-stage-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(190, 226, 241, 0.9);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94)),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 28%);
  color: var(--ink-strong);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}

.benefit-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(56, 189, 248, 0.12));
  color: var(--primary-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
  flex: 0 0 auto;
}

.benefit-chip-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consumer-list {
  display: grid;
  gap: 12px;
}

.consumer-item {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(220, 231, 234, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.consumer-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", "Manrope", sans-serif;
  color: var(--ink-strong);
}

.consumer-item p {
  color: var(--muted);
}

.impact-card {
  padding: 28px;
  border-radius: 32px;
}

.impact-scenario {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 247, 0.92));
  border: 1px solid rgba(220, 231, 234, 0.9);
  box-shadow: var(--shadow-soft);
}

.impact-scenario-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.impact-scenario-head p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.impact-scenario-title {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
  color: var(--ink-strong);
  overflow-wrap: anywhere;
}

.impact-mini-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(246, 250, 251, 0.94);
  border: 1px solid rgba(220, 231, 234, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  min-width: 0;
  overflow: hidden;
}

.impact-kicker {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-value {
  margin-top: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  font-family: "Sora", "Manrope", sans-serif;
  overflow-wrap: anywhere;
}

.impact-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.impact-footnote {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.emissions-source {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.source-line {
  display: block;
}

.emissions-source a {
  color: var(--primary-strong);
  font-weight: 700;
}

.donation-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

#donar-bitcoin .card {
  padding: 28px;
}

.donation-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.donation-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  background: linear-gradient(180deg, rgba(255,247,237,0.95), rgba(255,237,213,0.86));
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.donation-badge svg,
.wallet-label svg,
.donation-qr-head svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.donation-head {
  margin-bottom: 0;
}

.donation-copy .section-head h2 {
  max-width: 9ch;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.donation-copy .section-head p {
  max-width: 34ch;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.wallet-shell {
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,240,0.94)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 24%);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.08);
}

.wallet-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wallet-address {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(253, 186, 116, 0.35);
  color: var(--ink-strong);
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.copy-wallet-btn {
  margin-top: 14px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.copy-wallet-btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
  box-shadow: 0 22px 40px rgba(249, 115, 22, 0.26);
}

.copy-wallet-feedback {
  min-height: 22px;
  margin-top: 10px;
  color: #c2410c;
  font-size: 13px;
  font-weight: 700;
}

.donation-qr-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,237,0.94)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 26%);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.10);
  min-width: 0;
}

.donation-qr-card img {
  width: min(100%, 300px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(253, 186, 116, 0.32);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.donation-qr-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c2410c;
  font-weight: 800;
}

.donation-qr-card strong {
  display: block;
  font-size: 1.12rem;
  color: var(--ink-strong);
}

.donation-qr-card span {
  color: var(--muted);
}

#donar-bitcoin .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,249,243,0.96)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 26%);
}

.footer {
  padding-bottom: 0;
}

.footer-shell {
  padding: 22px 24px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, #0f172a, #0f3b62 58%, #2563eb);
  box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.16);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.footer-note {
  color: rgba(230, 247, 245, 0.9);
  max-width: 560px;
  line-height: 1.6;
}

.download-unlocked {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.07);
  border: 1px solid rgba(15, 118, 110, 0.14);
  display: none;
}

.download-unlocked.active {
  display: block;
}

.download-unlocked p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.guarantee-stack {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.guarantee-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(220, 231, 234, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 247, 0.9));
}

.guarantee-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.guarantee-card p {
  color: var(--muted);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visit-counter {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.96);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .hero-grid,
  .consumer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .hero-mini-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-stage-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .winner-education-grid {
    grid-template-columns: 1fr;
  }

  .donation-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .shared-grid,
  .scenario-grid,
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .section-head,
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nav { justify-content: flex-start; }

  .hero-points,
  .hero-mini-proof,
  .hero-stat-grid,
  .shared-grid,
  .scenario-grid,
  .result-grid,
  .metric-grid,
  .form-grid,
  .impact-grid,
  .impact-mini-grid,
  .benefit-stage-chips {
    grid-template-columns: 1fr;
  }

  .controls-card,
  .chart-card,
  .table-card,
  .consumer-card,
  .winner-education-card,
  .winner-card,
  .hero-card,
  .scenario-card {
    padding: 22px;
  }

  #contacto .card,
  #donar-bitcoin .card {
    padding: 22px;
  }

  .section-band::before {
    inset: 6px 8px;
    border-radius: 24px;
  }

  .field-copy {
    flex-direction: column;
    align-items: stretch;
  }

  .ghost-btn {
    width: 100%;
  }

  .btn,
  .btn-topbar {
    width: 100%;
  }

  h1 { max-width: none; }

  .winner-card h2 {
    font-size: 1.45rem;
  }

  .winner-pill {
    width: 100%;
    justify-content: flex-start;
    font-size: 13px;
  }

  #compareChartSvg {
    min-width: 560px;
  }

  .impact-value {
    font-size: 1.42rem;
  }

  .impact-mini-card {
    padding: 16px;
  }

  .donation-copy .section-head h2 {
    max-width: 10ch;
    font-size: 1.65rem;
  }

  .footer-shell {
    padding: 20px 18px 24px;
    border-radius: 24px 24px 0 0;
  }

.actions-row .btn {
  width: 100%;
}
}

/* Typography refresh */
body,
input,
select,
textarea,
button {
  font-family: var(--font-body);
}

body {
  font-weight: var(--weight-body);
  letter-spacing: -0.008em;
}

h1,
h2,
h3,
h4,
.brand,
.stat-value,
.preview-caption strong,
.mini-metric strong,
.benefit-stage-copy strong,
.consumer-item strong,
.impact-value {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--ink-strong);
}

h1 {
  font-weight: var(--weight-heading-strong);
  letter-spacing: -0.05em;
}

.brand,
.stat-value {
  font-weight: var(--weight-heading-strong);
  letter-spacing: -0.035em;
}

.btn,
.btn-topbar,
.ghost-btn {
  font-family: var(--font-body);
  font-weight: var(--weight-ui-strong);
  letter-spacing: -0.01em;
}

.nav,
.pill,
.status-chip,
.product-chip,
.currency-switch button,
.switch,
.scenario-tag,
.winner-pill,
.impact-scenario-title,
.wallet-address {
  font-family: var(--font-body);
  font-weight: var(--weight-ui);
}

.eyebrow,
.preview-caption,
.hero-proof-card span,
.chart-tooltip-year,
.impact-kicker,
.donation-badge,
.wallet-label {
  font-family: var(--font-body);
  font-weight: var(--weight-ui-strong);
  letter-spacing: var(--tracking-label);
}

input,
select,
textarea,
.stat-value,
.mini-metric strong,
.impact-value {
  font-variant-numeric: lining-nums tabular-nums;
}
