/* ============================================
   CVR · REPORTE EJECUTIVO 2026
   Dashboard ejecutivo, projector-ready
============================================ */

:root {
  --bg: #050B17;
  --bg-2: #0A1628;
  --surface: #0F1E33;
  --surface-2: #16263F;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #F5F8FC;
  --text-mute: #95A6BD;
  --text-dim: #5F7187;

  --cyan: #0D8CB1;
  --cyan-light: #2BB8E1;
  --cyan-glow: rgba(43, 184, 225, 0.4);

  --orange: #FF8A00;
  --orange-light: #FFAA3D;
  --orange-glow: rgba(255, 138, 0, 0.35);

  --success: #10B981;
  --success-glow: rgba(16, 185, 129, 0.25);

  --gradient-cyan: linear-gradient(135deg, #2BB8E1 0%, #0D8CB1 100%);
  --gradient-orange: linear-gradient(135deg, #FFAA3D 0%, #FF6A00 100%);
  --gradient-mix: linear-gradient(135deg, #2BB8E1 0%, #FF8A00 100%);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.4);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================
   AMBIENT BACKGROUND
============================================ */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
}

.ambient__blob--1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
}

.ambient__blob--2 {
  top: 40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.25;
  animation: float2 24s ease-in-out infinite;
}

.ambient__blob--3 {
  bottom: -20%;
  left: 20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--cyan-light) 0%, transparent 70%);
  opacity: 0.2;
  animation: float3 28s ease-in-out infinite;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -40px) scale(1.15); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -80px) scale(1.05); }
}

/* ============================================
   TOP NAV
============================================ */

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(5, 11, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.topnav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topnav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.topnav__divider {
  width: 1px;
  height: 24px;
  background: var(--line-strong);
}

.topnav__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topnav__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.topnav__date {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topnav__link {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  transition: all 0.2s var(--ease);
  position: relative;
}

.topnav__link:hover {
  color: var(--text);
  background: var(--line);
}

.topnav__link.is-active {
  color: var(--cyan-light);
  background: rgba(43, 184, 225, 0.08);
}

.topnav__link--cta {
  background: var(--gradient-cyan);
  color: white;
  font-weight: 600;
  margin-left: 12px;
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.topnav__link--cta:hover {
  background: var(--gradient-cyan);
  transform: translateY(-1px);
  box-shadow: 0 6px 30px var(--cyan-glow);
}

/* ============================================
   HERO
============================================ */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero__inner { width: 100%; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 1100px;
}

.hero__title--accent {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--text-mute);
  max-width: 720px;
  margin-bottom: 64px;
  line-height: 1.6;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.stat {
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.stat:nth-child(2)::before { background: var(--gradient-orange); }
.stat:nth-child(3)::before { background: linear-gradient(90deg, #10B981, #2BB8E1); }
.stat:nth-child(4)::before { background: var(--gradient-mix); }

.stat:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.stat:hover::before { transform: scaleX(1); }

.stat__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat__unit {
  font-size: 0.6em;
  color: var(--cyan-light);
}

.stat__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.stat__sub {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--gradient-cyan);
  color: white;
  box-shadow: 0 8px 32px var(--cyan-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--cyan-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--text-dim) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--cyan-light);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -20px; }
  100% { top: 48px; }
}

/* ============================================
   SECTIONS
============================================ */

.section {
  position: relative;
  z-index: 1;
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(13, 140, 177, 0.04) 50%, transparent 100%);
  max-width: none;
  padding-left: max(48px, calc((100vw - 1400px) / 2));
  padding-right: max(48px, calc((100vw - 1400px) / 2));
}

.section--cta {
  padding-top: 80px;
  padding-bottom: 120px;
}

.section__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}

.section__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cyan-light);
  padding-top: 8px;
  position: relative;
}

.section__num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 2px;
  background: var(--gradient-cyan);
}

.section__heading {
  max-width: 880px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 16px;
}

.section__eyebrow--orange { color: var(--orange-light); }

.section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section__sub {
  font-size: 19px;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 680px;
}

/* ============================================
   PROGRESS PANEL
============================================ */

.progress-panel {
  padding: 36px 40px;
  background:
    radial-gradient(circle at top right, rgba(43, 184, 225, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid rgba(43, 184, 225, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

.progress-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.progress-panel__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.progress-panel__sub {
  font-size: 14px;
  color: var(--text-mute);
}

.progress-panel__global {
  text-align: right;
  min-width: 180px;
}

.progress-panel__global-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.progress-panel__global-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.progress-panel__global-detail {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}

.progress-bars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-bar__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  align-items: baseline;
}

.progress-bar__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  grid-column: 1;
}

.progress-bar__pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan-light);
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  letter-spacing: -0.01em;
}

.progress-bar__detail {
  font-size: 12px;
  color: var(--text-dim);
  grid-column: 1;
}

.progress-bar__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  width: 0;
  background: var(--gradient-cyan);
  border-radius: 100px;
  transition: width 1.2s var(--ease-out);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.progress-bar[data-pct="100"] .progress-bar__fill {
  background: linear-gradient(90deg, #10B981 0%, #2BB8E1 100%);
  box-shadow: 0 0 10px var(--success-glow);
}

.progress-bar[data-pct="100"] .progress-bar__pct {
  color: var(--success);
}

.progress-bar--pending .progress-bar__fill {
  background: var(--gradient-orange);
  box-shadow: 0 0 10px var(--orange-glow);
}

.progress-bar--pending .progress-bar__pct {
  color: var(--orange-light);
}

.progress-panel__hint {
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--orange-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.progress-panel__hint-icon {
  font-size: 18px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ============================================
   MODAL
============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96) translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.modal.is-open .modal__dialog {
  transform: scale(1) translateY(0);
}

.modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-mix);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  z-index: 10;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
  transform: rotate(90deg);
}

.modal__head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 48px 28px;
  border-bottom: 1px solid var(--line);
}

.modal__icon {
  font-size: 56px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(43, 184, 225, 0.2));
}

.modal__eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.modal__status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal__status-bar {
  flex: 1;
  max-width: 200px;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.modal__status-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-cyan);
  border-radius: 100px;
  transition: width 0.8s var(--ease-out) 0.2s;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.modal__status-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-light);
}

.modal__body {
  padding: 32px 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.modal__section { display: flex; flex-direction: column; gap: 10px; }

.modal__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-light);
}

.modal__text {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.65;
}

.modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
  line-height: 1.55;
}

.modal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.modal__list li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--bg);
}

.modal__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.modal__section--metric {
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.modal__section--metric:last-child .modal__heading {
  color: var(--orange-light);
}

.modal__footer {
  padding: 20px 48px 32px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

[data-modal-card] {
  cursor: pointer;
  position: relative;
}

[data-modal-card]::after {
  content: '👆 Ver detalle';
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  padding: 4px 10px;
  background: rgba(43, 184, 225, 0.12);
  border: 1px solid rgba(43, 184, 225, 0.3);
  border-radius: 100px;
  pointer-events: none;
}

[data-modal-card]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open { overflow: hidden; }

/* ============================================
   GRIDS
============================================ */

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

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

/* ============================================
   AVANCES CARDS
============================================ */

.card {
  padding: 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(43, 184, 225, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.card:hover::before { opacity: 1; }

.card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.card__icon {
  font-size: 40px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(43, 184, 225, 0.2));
}

.card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card__text {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__list li {
  font-size: 14px;
  color: var(--text-mute);
  padding-left: 22px;
  position: relative;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.city-pills span {
  padding: 5px 12px;
  background: rgba(43, 184, 225, 0.1);
  border: 1px solid rgba(43, 184, 225, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan-light);
}

/* ============================================
   PROPUESTAS
============================================ */

.proposal {
  padding: 36px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.proposal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--gradient-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}

.proposal:hover {
  transform: translateX(6px);
  border-color: var(--line-strong);
}

.proposal:hover::after { transform: scaleY(1); }

.proposal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.proposal__rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  line-height: 1;
}

.proposal__priority {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal__priority--high {
  background: rgba(255, 138, 0, 0.15);
  border: 1px solid rgba(255, 138, 0, 0.35);
  color: var(--orange-light);
}

.proposal__priority--medium {
  background: rgba(43, 184, 225, 0.12);
  border: 1px solid rgba(43, 184, 225, 0.3);
  color: var(--cyan-light);
}

.proposal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.proposal__desc {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.65;
  margin-bottom: 24px;
}

.proposal__metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.proposal__metrics div {
  font-size: 14px;
  color: var(--text-mute);
}

.proposal__metrics strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   ACTIONS (PROVO TEAM)
============================================ */

.actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.action {
  padding: 28px 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--cyan-light);
  opacity: 0.6;
}

.action--urgent::before {
  background: linear-gradient(180deg, #FF4D4D 0%, #FF8A00 100%);
  opacity: 1;
  box-shadow: 0 0 12px rgba(255, 77, 77, 0.4);
}

.action:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.action__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.action__rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  line-height: 1;
}

.action__icon {
  font-size: 32px;
  filter: drop-shadow(0 4px 12px rgba(43, 184, 225, 0.2));
}

.action__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.action__desc {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 20px;
}

.action__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.action__requirements {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.action__requirements-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}

.action__requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.action__requirements li {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.action__requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
}

.action__requirements li strong {
  color: var(--text);
  font-weight: 600;
}

.action__requirements li span {
  color: var(--text-mute);
}

.action__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.action__chip--owner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.action__chip--owner::before {
  content: '👤';
  font-size: 11px;
}

.action__chip--urgent {
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid rgba(255, 77, 77, 0.35);
  color: #FF7A7A;
}

.action__chip--urgent::before {
  content: '🔥';
  font-size: 11px;
}

.action__chip--soon {
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.35);
  color: var(--orange-light);
}

.action__chip--soon::before {
  content: '⏱';
  font-size: 11px;
}

.action__chip--later {
  background: rgba(43, 184, 225, 0.12);
  border: 1px solid rgba(43, 184, 225, 0.3);
  color: var(--cyan-light);
}

.action__chip--later::before {
  content: '📅';
  font-size: 11px;
}

.actions__summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}

.actions__summary-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.actions__summary-item:last-child { border-right: none; }

.actions__summary-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.actions__summary-item--total .actions__summary-value {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.actions__summary-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.03em;
}

/* ============================================
   CAMPAIGNS
============================================ */

.campaigns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.campaign {
  padding: 40px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.campaign:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.campaign--featured {
  grid-column: span 1;
  grid-row: span 2;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border-color: rgba(255, 138, 0, 0.25);
}

.campaign__tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(43, 184, 225, 0.12);
  border: 1px solid rgba(43, 184, 225, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.campaign--featured .campaign__tag {
  background: rgba(255, 138, 0, 0.15);
  border-color: rgba(255, 138, 0, 0.4);
  color: var(--orange-light);
}

.campaign__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.campaign--featured .campaign__title {
  font-size: 40px;
}

.campaign__pitch {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.65;
  margin-bottom: 24px;
}

.campaign--featured .campaign__pitch {
  font-size: 17px;
}

.campaign__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.campaign__details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.campaign__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.campaign__details strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   STRATEGY GRID
============================================ */

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strategy-grid > .strategy:nth-child(4),
.strategy-grid > .strategy:nth-child(5) {
  grid-column: span 1;
}

.strategy {
  padding: 36px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.strategy:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.strategy__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -0.04em;
}

.strategy__icon {
  font-size: 44px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(255, 138, 0, 0.2));
}

.strategy__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.strategy__desc {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.65;
  margin-bottom: 24px;
}

.strategy__tactics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strategy__tactics span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

/* ============================================
   ROADMAP
============================================ */

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-light) 0%, var(--orange-light) 100%);
  z-index: 0;
  opacity: 0.2;
}

.roadmap__column {
  padding: 36px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}

.roadmap__column--current {
  background:
    radial-gradient(circle at top, rgba(43, 184, 225, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border-color: rgba(43, 184, 225, 0.3);
  box-shadow: 0 8px 32px rgba(43, 184, 225, 0.12);
}

.roadmap__column:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.roadmap__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.roadmap__quarter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.roadmap__status {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-mute);
}

.roadmap__column--current .roadmap__status {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--success);
}

.roadmap__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.roadmap__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.roadmap__list li {
  font-size: 14px;
  color: var(--text-mute);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.roadmap__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-light);
  font-weight: 700;
}

.roadmap__target {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.roadmap__target span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.roadmap__target strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.roadmap__column--current .roadmap__target strong {
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   BUDGET
============================================ */

.budget {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.budget__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}

.budget__row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.budget__row:last-child {
  border-bottom: none;
}

.budget__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.budget__cost {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.budget__cost span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 2px;
}

.budget__row--total {
  background: linear-gradient(135deg, rgba(43, 184, 225, 0.1) 0%, rgba(255, 138, 0, 0.05) 100%);
  padding: 28px 32px;
}

.budget__row--total .budget__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.budget__row--total .budget__cost {
  font-size: 36px;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.budget__compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
}

.budget__compare-item {
  text-align: center;
  padding: 24px 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  min-width: 280px;
}

.budget__compare-item--win {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.budget__compare-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.budget__compare-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}

.budget__compare-item--win .budget__compare-value {
  color: var(--success);
}

.budget__compare-divider {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   CTA / DECISIONES
============================================ */

.cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 64px;
  background:
    radial-gradient(circle at top left, rgba(43, 184, 225, 0.12) 0%, transparent 50%),
    radial-gradient(circle at bottom right, rgba(255, 138, 0, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-mix);
}

.cta__eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 28px;
}

.cta__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.cta__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: cta-counter;
  margin-bottom: 56px;
}

.cta__list li {
  counter-increment: cta-counter;
  padding: 24px 28px 24px 88px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-mute);
  transition: all 0.3s var(--ease);
}

.cta__list li::before {
  content: counter(cta-counter, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.cta__list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
  transform: translateX(4px);
}

.cta__list li strong {
  color: var(--text);
  font-weight: 700;
}

.cta__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.cta__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
}

.cta__contact {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ============================================
   ANIMATION CLASSES
============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1100px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: 1fr; }
  .roadmap::before { display: none; }
  .campaigns { grid-template-columns: 1fr; }
  .campaign--featured { grid-row: span 1; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .actions__summary { grid-template-columns: repeat(2, 1fr); }
  .actions__summary-item:nth-child(2) { border-right: none; }
  .progress-bars { grid-template-columns: 1fr; gap: 18px; }
  .progress-panel__header { flex-direction: column; gap: 20px; }
  .progress-panel__global { text-align: left; }
}

@media (max-width: 768px) {
  .topnav { padding: 14px 20px; }
  .topnav__links { display: none; }
  .topnav__link--cta { display: inline-flex; }
  .hero { padding: 120px 20px 60px; }
  .section { padding: 80px 20px; }
  .section__header { grid-template-columns: 1fr; gap: 16px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .progress-strip { flex-direction: column; align-items: flex-start; }
  .budget__compare { flex-direction: column; gap: 16px; }
  .budget__row { padding: 16px 20px; }
  .cta { padding: 48px 24px; }
  .cta__list li { padding: 20px 20px 20px 72px; }
  .actions { grid-template-columns: 1fr; }
  .actions__summary { grid-template-columns: 1fr; }
  .actions__summary-item { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 0; }
  .actions__summary-item:last-child { border-bottom: none; }
  .progress-panel { padding: 24px 20px; }
  .modal__head { padding: 28px 24px 20px; flex-direction: column; gap: 16px; }
  .modal__body { padding: 24px; gap: 20px; }
  .modal__footer { padding: 16px 24px 24px; }
  .modal__split { grid-template-columns: 1fr; gap: 16px; }
  .modal__icon { font-size: 44px; }
  .modal__title { font-size: 22px; }
  [data-modal-card]::after { display: none; }
}

/* ============================================
   PRINT (optional for export)
============================================ */

@media print {
  .topnav, .hero__scroll, .ambient { display: none; }
  body { background: white; color: black; }
  .section { page-break-inside: avoid; }
}
