:root {
  --bg: #050505;
  --paper: #111111;
  --ink: #f4f4ef;
  --muted: #b7b7ae;
  --line: #2a2a2a;
  --brand: #1fd89e;
  --brand-soft: #1fd89e26;
  --card: rgba(18, 18, 18, 0.8);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 80% -10%, rgba(31, 216, 158, 0.18), transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(23, 184, 135, 0.13), transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(244, 244, 239, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 244, 239, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  z-index: -3;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.4;
  z-index: -2;
}

.orb-1 {
  width: 340px;
  height: 340px;
  top: 80px;
  right: -120px;
  background: rgba(31, 216, 158, 0.3);
}

.orb-2 {
  width: 280px;
  height: 280px;
  bottom: 40px;
  left: -90px;
  background: rgba(90, 160, 255, 0.23);
}

.site-header,
main,
.site-footer {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  margin-top: 0.7rem;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(12, 12, 12, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 40;
}

.logo {
  width: 150px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch-floating {
  position: fixed;
  top: 0.9rem;
  right: 1rem;
  z-index: 80;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--ink);
  color: #050505;
}

.section {
  padding: 5.2rem 0;
}

.hero {
  padding-top: 6.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero-chat {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.9), rgba(18, 25, 22, 0.86));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.hero-chat-title {
  margin: 0 0 0.8rem;
  color: #dbdbd2;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
}

.chat-window {
  display: grid;
  gap: 0.6rem;
}

.chat-bubble {
  max-width: 92%;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(8px);
  animation: chatReveal 0.5s ease forwards;
}

.chat-bubble.user {
  justify-self: end;
  background: rgba(90, 160, 255, 0.18);
  border-color: rgba(140, 192, 255, 0.38);
  color: #eaf3ff;
}

.chat-bubble.ai {
  justify-self: start;
  background: rgba(31, 216, 158, 0.14);
  border-color: rgba(95, 230, 187, 0.35);
  color: #e9fff7;
}

.chat-step-1 { animation-delay: 0.1s; }
.chat-step-2 { animation-delay: 0.5s; }
.chat-step-3 { animation-delay: 0.9s; }
.chat-step-4 { animation-delay: 1.3s; }

.chat-typing {
  justify-self: start;
  display: inline-flex;
  gap: 0.3rem;
  background: rgba(31, 216, 158, 0.14);
  border: 1px solid rgba(95, 230, 187, 0.35);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  opacity: 0;
  transform: translateY(8px);
  animation: chatReveal 0.45s ease forwards;
  animation-delay: 1.7s;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7deec8;
  animation: typingPulse 1.2s infinite ease-in-out;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

.hero-chat-footer {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-chat-footer span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.28rem 0.56rem;
  font-size: 0.75rem;
  color: #d8d8d0;
}

@keyframes chatReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingPulse {
  0%, 80%, 100% { opacity: 0.4; transform: scale(0.95); }
  40% { opacity: 1; transform: scale(1.1); }
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  max-width: 13ch;
}

.hero h1,
.sub-hero h1 {
  max-width: 100%;
}

.ai-word {
  color: #7deec8;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 1.25rem 0 0;
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.86rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: var(--ink);
  color: #050505;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #d8d8d0;
}

.btn-small {
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(244, 244, 239, 0.08);
}

.kpis {
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 840px;
}

.kpis li {
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.kpis strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.kpis span {
  color: var(--muted);
  font-size: 0.93rem;
}

.payment-rail-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
}

.payment-rail-logo {
  width: 88px;
  height: auto;
  display: block;
}

.logo-white {
  filter: brightness(0) invert(1);
}

.payment-rail-note p {
  margin: 0;
  color: #e1e1db;
}

.section-head {
  margin-bottom: 1.6rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vertical-hub-grid .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-clickable {
  cursor: pointer;
}

.card-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.accent-logistics {
  border-top: 5px solid #0f6c4f;
}

.accent-omni {
  border-top: 5px solid #ca6f2b;
}

.accent-fintech {
  border-top: 5px solid #185d8a;
}

.product-tag {
  margin: 0.8rem 0 0.5rem;
  color: var(--brand);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.industry-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.industry-brand.with-label {
  flex-direction: column;
  gap: 0.45rem;
}

.industry-brand img {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.industry-brand-label {
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.vertical-link {
  display: inline-block;
  margin-top: 0.9rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}

.vertical-link:hover {
  color: var(--brand);
}

.readiness-panel {
  background: linear-gradient(125deg, rgba(31, 216, 158, 0.16), rgba(90, 160, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.readiness-panel p {
  margin: 0;
  color: #e2e2dc;
}

.process-step .step {
  font-family: "Space Grotesk", sans-serif;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legacy-grid p {
  margin: 0;
  padding: 1rem;
  background: var(--paper);
  border-left: 4px solid var(--brand);
  border-radius: 10px;
}

.infra-partnership {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.infra-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.infra-card h3 {
  margin-top: 0.8rem;
}

.infra-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.infra-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.infra-logo-white {
  filter: brightness(0) invert(1);
}

.infra-logo-icon {
  height: 88px;
}

.infra-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.cta {
  text-align: center;
  padding-bottom: 6rem;
}

.cta h2 {
  margin: 0 auto;
}

.cta p {
  max-width: 56ch;
  margin: 1rem auto 0;
  color: var(--muted);
}

.cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.sub-hero {
  padding-top: 6.2rem;
}

.sub-hero .lead {
  max-width: 70ch;
}

.screen-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem;
}

.screen-shot {
  height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(31, 216, 158, 0.18), rgba(90, 160, 255, 0.18));
}

.screen-shot-img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  display: block;
}

.featured-screens {
  padding-top: 2rem;
}

.featured-screens .screen-grid {
  grid-template-columns: 1fr;
}

.featured-screens .screen-card {
  width: 100%;
}

.featured-screen {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-screen .screen-shot-img {
  height: clamp(280px, 62vw, 620px);
  object-fit: contain;
  background: #0d0d0d;
}

.featured-screen .screen-meta {
  font-size: 0.98rem;
  color: #d9d9d2;
}

.screen-meta {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.client-logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.client-logo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  place-items: center;
  gap: 0.7rem;
}

.client-logo-card img {
  width: min(170px, 100%);
  height: 76px;
  object-fit: contain;
}

.client-logo-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.stats-visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.stats-card-head h3 {
  margin-bottom: 0.4rem;
}

.stats-card-head p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.map-card {
  overflow: hidden;
}

.colombia-map {
  width: 100%;
  height: auto;
  border: 1px solid rgba(145, 205, 241, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(245, 251, 255, 0.96), rgba(234, 246, 255, 0.92));
  padding: 0.4rem;
}

.colombia-map text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  fill: #1a232e;
  font-weight: 700;
}

.map-point {
  fill: #2f9cff;
  stroke: #ffffff;
  stroke-width: 2;
}

.map-point.major {
  fill: #0bcd88;
}

.city-pill-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-pill-list li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  color: #d9d9d2;
  font-size: 0.82rem;
}

.bar-chart {
  display: grid;
  gap: 0.85rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 0.7rem;
}

.bar-label {
  font-size: 0.86rem;
  color: #d6d6cf;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.bar-fill {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: 999px;
}

.bar-fill.deliveries {
  background: linear-gradient(90deg, #1fd89e, #36e5b0);
}

.bar-fill.payments {
  background: linear-gradient(90deg, #5aa0ff, #8cc0ff);
}

.bar-fill.customers {
  background: linear-gradient(90deg, #ca6f2b, #e39a64);
}

.bar-fill.couriers {
  background: linear-gradient(90deg, #8a6cff, #b09cff);
}

.bar-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
}

.growth-note {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.growth-note p {
  margin: 0.35rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.growth-note span {
  color: #f4f4ef;
  font-weight: 700;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.analytics-card.full {
  grid-column: 1 / -1;
}

.line-compare-chart {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(31, 216, 158, 0.07));
  padding: 0.35rem;
}

.line-compare-chart text {
  font-family: "Space Grotesk", sans-serif;
  fill: #f4f4ef;
  font-size: 12px;
}

.line-compare-chart .line-deliveries {
  fill: none;
  stroke: #1fd89e;
  stroke-width: 3;
}

.line-compare-chart .line-payments {
  fill: none;
  stroke: #5aa0ff;
  stroke-width: 3;
}

.line-compare-chart .dot-deliveries {
  fill: #1fd89e;
}

.line-compare-chart .dot-payments {
  fill: #5aa0ff;
}

.line-compare-chart .legend.deliveries {
  fill: #70efc8;
}

.line-compare-chart .legend.payments {
  fill: #9ec6ff;
}

.impact-ring-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.impact-ring-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem;
  display: grid;
  place-items: center;
}

.impact-ring-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
}

.impact-ring {
  width: 124px;
  height: 124px;
}

.impact-ring .ring-base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 12;
}

.impact-ring .ring-fill {
  fill: none;
  stroke-linecap: round;
  stroke-width: 12;
  transform: rotate(-90deg);
  transform-origin: 80px 80px;
}

.impact-ring .ring-full {
  stroke: #1fd89e;
  stroke-dasharray: 390 390;
}

.impact-ring .ring-wide {
  stroke: #5aa0ff;
  stroke-dasharray: 320 390;
}

.impact-ring text {
  font-family: "Space Grotesk", sans-serif;
  fill: #f4f4ef;
  font-size: 30px;
  font-weight: 700;
  text-anchor: middle;
}

.capability-bars {
  display: grid;
  gap: 0.7rem;
}

.cap-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 0.7rem;
}

.cap-row span {
  color: #deded8;
  font-size: 0.9rem;
}

.cap-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cap-track i {
  display: block;
  width: var(--cap);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fd89e, #5aa0ff);
}

.analytics-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1rem;
}

.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-card,
.timeline-card {
  margin-top: 1rem;
}

.compare-matrix {
  display: grid;
  gap: 0.7rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.compare-row span {
  color: #dfdfd9;
  font-size: 0.88rem;
}

.compare-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.compare-track i {
  display: block;
  width: var(--cmp);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fd89e, #5aa0ff);
}

.compare-row b {
  color: #f1f1ea;
  font-size: 0.83rem;
  font-weight: 700;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.timeline-step {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(31, 216, 158, 0.16);
  color: #7bf0ca;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.45rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 20px;
    padding: 0.8rem;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .kpis,
  .insight-grid,
  .cards.two,
  .cards.three,
  .screen-grid,
  .legacy-grid,
  .infra-partnership,
  .client-logo-strip,
  .stats-visual-grid,
  .analytics-grid,
  .impact-ring-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .payment-rail-note {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cap-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .readiness-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 16ch;
  }

  .logo {
    width: 130px;
  }

  .lang-switch-floating {
    top: 0.7rem;
    right: 0.8rem;
  }
}
