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

:root {
  --navy: #0b1d35;
  --blue: #1a56a0;
  --blue-mid: #2e6fc4;
  --blue-light: #eef4fc;
  --blue-muted: #d0e2f7;
  --orange: #f97316;
  --orange-dark: #e0600f;
  --white: #ffffff;
  --gray-bg: #f7f9fc;
  --gray-border: #e4eaf2;
  --text-main: #0b1d35;
  --text-muted: #64748b;
  --text-light: #94a3b8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ffb16a);
  z-index: 200;
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.45);
}

body::before {
  content: "";
  position: fixed;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 160, 0.11), transparent 68%);
  top: -180px;
  right: -140px;
  pointer-events: none;
  z-index: -1;
  animation: drift 14s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 65%);
  left: -120px;
  bottom: -120px;
  pointer-events: none;
  z-index: -1;
  animation: drift 16s ease-in-out infinite reverse;
}

@keyframes drift {

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

  50% {
    transform: translateY(18px) translateX(-10px) scale(1.04);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

main section,
.footer-inner,
.nav {
  position: relative;
  z-index: 1;
}

.nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 0.5px solid var(--gray-border);
  backdrop-filter: blur(8px);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(12, 35, 69, 0.08);
  min-height: 66px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo-badge {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: 0;
}

.nav-logo-image {
  width: 148px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}

.nav-cta {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #122d52;
  transform: translateY(-1px);
}

.brand-banner {
  background:
    linear-gradient(125deg, #081a33, #0b1d35 48%, #14325a 100%),
    radial-gradient(circle at 84% 20%, rgba(249, 115, 22, 0.22), transparent 35%);
  padding: 56px 2.5rem 50px;
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.brand-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -130px;
  top: -120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 64%);
}

.brand-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  mask-image: linear-gradient(to left, #000 25%, transparent 72%);
  -webkit-mask-image: linear-gradient(to left, #000 25%, transparent 72%);
  pointer-events: none;
}

.brand-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.brand-banner-copy {
  max-width: 620px;
}

.brand-banner-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
  font-weight: 700;
}

.brand-banner-title {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.35rem, 4.4vw, 3.95rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
  margin-bottom: 16px;
  max-width: 15ch;
}

.brand-banner-wordwrap {
  --word-width: 15ch;
  display: block;
  margin-top: 0.14em;
  min-height: 1.22em;
  width: min(var(--word-width), 100%);
  max-width: 100%;
  overflow: hidden;
}

.brand-banner-word {
  width: 100%;
  max-width: 100%;
  display: inline-block;
  color: #a8c8ff;
  white-space: nowrap;
  transform: translateY(0);
  transition: opacity 0.16s ease, transform 0.16s ease;
  will-change: opacity, transform;
}

.brand-banner-word.is-exit {
  opacity: 0;
  transform: translateY(30%);
}

.brand-banner-word.is-enter {
  animation: word-rise 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes word-rise {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }

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

.brand-banner-text {
  font-size: clamp(1.03rem, 1.4vw, 1.25rem);
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.72);
}

.brand-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.brand-banner-scroll {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-banner-scroll-line {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.brand-banner-mark {
  margin: 0;
  justify-self: end;
  width: min(520px, 100%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.brand-banner-mark-image {
  display: block;
  width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 26px 34px rgba(4, 17, 38, 0.35));
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 2.5rem 72px;
  position: relative;
  isolation: isolate;
}

.hero-bg-visual {
  position: absolute;
  inset: 26px 16px 28px 52%;
  pointer-events: none;
  z-index: -1;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.9;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow-blue {
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(33, 99, 197, 0.18), transparent 72%);
  top: 30px;
  right: 44px;
}

.hero-glow-orange {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 74%);
  bottom: 30px;
  right: 14px;
}

.hero-grid-pattern {
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  background:
    linear-gradient(to right, rgba(26, 86, 160, 0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 86, 160, 0.11) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 62% 46%, #000 24%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 62% 46%, #000 24%, transparent 76%);
  opacity: 0.42;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.hero h1 {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

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

.btn-primary,
.btn-ghost,
.btn-orange,
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
}

.btn-primary:hover,
.btn-ghost:hover,
.btn-orange:hover,
.btn-outline-white:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-border);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

.hero-right {
  background: var(--gray-bg);
  border-radius: 16px;
  border: 0.5px solid var(--gray-border);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(12, 35, 69, 0.08);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: 10px;
  padding: 18px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 37, 72, 0.08);
}

.stat-box.accent {
  background: var(--navy);
  border-color: var(--navy);
}

.stat-num {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.stat-box.accent .stat-num {
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.stat-box.accent .stat-label {
  color: rgba(255, 255, 255, 0.56);
}

.tools-bar {
  background: var(--gray-bg);
  border-top: 0.5px solid var(--gray-border);
  border-bottom: 0.5px solid var(--gray-border);
  padding: 18px 2.5rem;
}

.tools-bar-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tools-bar-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tools-bar-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-border);
}

.tools-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tool-chip {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.tool-chip:hover {
  transform: translateY(-1px);
  color: var(--navy);
}

.tool-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.problema {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.problema-left h2,
.section-title {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.problema-left h2 {
  margin-bottom: 16px;
}

.problema-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.problema-left p+p {
  margin-top: 14px;
}

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

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gray-bg);
  border: 0.5px solid var(--gray-border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: transform 0.2s ease;
}

.pain-item:hover {
  transform: translateX(4px);
}

.pain-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.pain-text {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.55;
}

.pain-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.section-eyebrow {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

.section-title {
  margin-bottom: 40px;
}

.modulos {
  background: var(--gray-bg);
  border-top: 0.5px solid var(--gray-border);
  border-bottom: 0.5px solid var(--gray-border);
  padding: 72px 2.5rem;
}

.modulos-inner,
.propuesta,
.about-hero-inner,
.mision-vision,
.valores-inner,
.equipo,
.roadmap-inner,
.cta-section-inner,
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
}

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

.mod-card {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 12px 20px rgba(8, 32, 66, 0.05);
}

.mod-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(26, 86, 160, 0.16), rgba(249, 115, 22, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mod-card>* {
  position: relative;
  z-index: 1;
}

.mod-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 36px rgba(8, 32, 66, 0.16);
}

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

.mod-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(46, 111, 196, 0.35);
}

.mod-card.mid,
.mod-card.is-active {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-7px);
  box-shadow: 0 24px 38px rgba(8, 32, 66, 0.26);
}

.mod-card.mid::before,
.mod-card.is-active::before {
  opacity: 0.55;
}

.mod-step {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.mod-card.mid .mod-step,
.mod-card.is-active .mod-step {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.mod-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.mod-card.mid h3,
.mod-card.is-active h3 {
  color: var(--white);
}

.mod-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.mod-card.mid p,
.mod-card.is-active p {
  color: rgba(255, 255, 255, 0.64);
}

.mod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.mod-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 500;
}

.mod-card.mid .mod-tag,
.mod-card.is-active .mod-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.mod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 0.5px solid var(--gray-border);
}

.mod-card.mid .mod-footer,
.mod-card.is-active .mod-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.mod-duration {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.mod-card.mid .mod-duration,
.mod-card.is-active .mod-duration {
  color: rgba(255, 255, 255, 0.4);
}

.mod-result {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
}

.propuesta {
  padding: 72px 2.5rem;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.prop-item {
  padding: 2px 4px;
}

.prop-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}

.prop-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.prop-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.prop-accent {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

.cta-section {
  background:
    linear-gradient(140deg, #06162d, #0b1d35 42%, #102a4b 100%),
    radial-gradient(circle at 85% 14%, rgba(249, 115, 22, 0.22), transparent 34%);
  padding: 72px 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-align: center;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 32px;
  line-height: 1.7;
  text-align: center;
}

.cta-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -130px;
  top: -110px;
  background:
    radial-gradient(circle at center, rgba(26, 86, 160, 0.36), transparent 62%),
    radial-gradient(circle at 60% 65%, rgba(249, 115, 22, 0.25), transparent 58%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  position: relative;
}

.cta-copy {
  max-width: 560px;
}

.cta-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffbc7e;
  margin-bottom: 12px;
}

.cta-grid h2 {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-align: left;
}

.cta-grid p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  line-height: 1.72;
  text-align: left;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-grid .cta-actions {
  justify-content: flex-start;
}

.cta-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 24px 22px;
  backdrop-filter: blur(7px);
}

.cta-panel h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 14px;
}

.cta-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.cta-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.cta-list i {
  color: #ffbf80;
  margin-top: 2px;
}

.cta-mini-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  color: #ffcb97;
  border-bottom: 1px solid rgba(255, 203, 151, 0.35);
  padding-bottom: 2px;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  padding: 13px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer {
  background: var(--navy);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 32px 2.5rem;
}

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

.footer-logo {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.about-hero {
  background: var(--navy);
  padding: 72px 2.5rem;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.about-hero h1 {
  font-family: "Century Gothic", "Futura", "Trebuchet MS", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.about-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.about-mission-card {
  background: var(--blue-light);
  border: 0.5px solid var(--blue-muted);
  border-radius: 14px;
  padding: 28px;
}

.about-mission-label {
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-mission-card p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
}

.mision-vision {
  padding: 72px 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px;
}

.mv-label {
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.mv-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.mv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.valores {
  background: var(--gray-bg);
  border-top: 0.5px solid var(--gray-border);
  border-bottom: 0.5px solid var(--gray-border);
  padding: 72px 2.5rem;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.valor-card {
  background: var(--white);
  border: 0.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 22px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.valor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(9, 33, 66, 0.08);
}

.valor-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.valor-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.valor-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.equipo {
  padding: 72px 2.5rem;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.equipo-card {
  border: 0.5px solid var(--gray-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.equipo-avatar {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(145deg, #173b73, #0b1d35);
}

.equipo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.equipo-info {
  padding: 22px;
}

.equipo-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.equipo-role {
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.equipo-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.equipo-mods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.equipo-mod {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 500;
}

.roadmap {
  background: var(--gray-bg);
  border-top: 0.5px solid var(--gray-border);
  padding: 72px 2.5rem;
}

.roadmap-steps {
  --roadmap-progress: 0%;
  --roadmap-line-left: 12%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  position: relative;
  align-items: stretch;
  padding-top: 18px;
}

.roadmap-steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: var(--roadmap-line-left);
  right: var(--roadmap-line-left);
  height: 2px;
  background: var(--gray-border);
  z-index: 0;
}

.roadmap-steps::after {
  content: "";
  position: absolute;
  top: 42px;
  left: var(--roadmap-line-left);
  width: var(--roadmap-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(26, 86, 160, 0.04), 0 6px 16px rgba(26, 86, 160, 0.22);
  transition: width 0.4s ease;
}

.rmap-step {
  font: inherit;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  width: 100%;
  text-align: center;
  padding: 18px 14px 16px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  min-height: 212px;
  box-shadow: 0 12px 24px rgba(9, 33, 66, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.rmap-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(9, 33, 66, 0.1);
}

.rmap-step:focus-visible {
  outline: 2px solid rgba(46, 111, 196, 0.35);
  outline-offset: 4px;
  border-radius: 16px;
}

.rmap-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease,
    color 0.28s ease, box-shadow 0.28s ease;
}

.rmap-step.active {
  background: linear-gradient(180deg, #eef4fc 0%, #f7fbff 100%);
  border-color: rgba(26, 86, 160, 0.35);
  transform: translateY(-7px);
  box-shadow: 0 20px 36px rgba(9, 33, 66, 0.16);
}

.rmap-step.active .rmap-dot {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  position: relative;
  transform: scale(1.07);
  box-shadow: 0 0 0 6px rgba(26, 86, 160, 0.14);
  animation: roadmapDotPulse 2.3s ease-in-out infinite;
}

.rmap-step.past .rmap-dot {
  background: rgba(26, 86, 160, 0.14);
  border-color: rgba(26, 86, 160, 0.35);
  color: var(--blue);
}

.rmap-step.active .rmap-dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  top: 0;
  right: 0;
}

.rmap-step h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.rmap-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color 0.25s ease;
}

.rmap-step.future h5 {
  color: #61728c;
}

.rmap-step.future p {
  color: #7f8ca1;
}

.rmap-step.future .rmap-dot {
  background: #f2f5fa;
}

.rmap-step.past h5 {
  color: var(--blue);
}

.rmap-step.past p {
  color: #5f738f;
}

@keyframes roadmapDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(26, 86, 160, 0.14);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(26, 86, 160, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 920px) {
  .nav {
    padding: 0 1.6rem;
  }

  .nav-links {
    gap: 1.3rem;
  }

  .brand-banner-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .brand-banner-mark {
    justify-self: start;
    max-width: 420px;
  }

  .hero,
  .problema,
  .about-hero-inner,
  .mision-vision {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .modulos-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-steps {
    grid-template-columns: 1fr 1fr;
  }

  .roadmap-steps::before {
    display: none;
  }

  .roadmap-steps::after {
    display: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-bg-visual {
    display: none;
  }

  .brand-banner {
    padding-top: 48px;
    padding-bottom: 42px;
    min-height: auto;
  }

  .brand-banner-title {
    max-width: 18ch;
  }

  .brand-banner-mark {
    justify-self: center;
  }

  .hero h1,
  .section-title,
  .problema-left h2 {
    font-size: 2rem;
  }

  .about-hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav {
    padding: 0 1rem;
    min-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    left: 1rem;
    top: calc(100% + 8px);
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    box-shadow: 0 16px 30px rgba(9, 32, 66, 0.12);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    transform: scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav.open .nav-links {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  .nav-link {
    padding: 9px 10px;
    border-bottom: 0;
    border-radius: 8px;
  }

  .nav-link.active {
    background: rgba(26, 86, 160, 0.08);
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
    justify-content: center;
  }

  .hero,
  .problema,
  .propuesta,
  .modulos,
  .brand-banner,
  .about-hero,
  .mision-vision,
  .valores,
  .equipo,
  .roadmap,
  .cta-section,
  .footer {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .brand-banner {
    min-height: calc(100svh - 64px);
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .hero {
    padding-top: 48px;
  }

  .brand-banner-title {
    font-size: clamp(1.7rem, 8.8vw, 2.5rem);
    max-width: 14ch;
  }

  .brand-banner-actions {
    justify-content: flex-start;
    gap: 10px;
  }

  .brand-banner-mark {
    max-width: min(430px, 90%);
    padding: 0;
  }

  .nav-logo-image {
    width: 126px;
    height: 42px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-bg-visual {
    inset: 10px 0 14px 46%;
    opacity: 0.5;
  }

  .cta-grid h2 {
    font-size: 28px;
  }

  .cta-grid h2,
  .cta-grid p {
    text-align: center;
  }

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

  .tools-bar {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .tools-bar-inner {
    gap: 0.7rem;
  }

  .tools-bar-divider {
    display: none;
  }

  .tools-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    width: 100%;
    scrollbar-width: thin;
  }

  .tool-chip {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero-right {
    padding: 20px;
  }

  .mod-card,
  .mv-card,
  .about-mission-card {
    padding: 22px 18px;
  }

  .roadmap {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .roadmap-steps {
    margin-top: 28px;
    gap: 10px;
  }

  .rmap-step {
    min-height: 190px;
    padding: 16px 12px 14px;
  }

  .rmap-step.active {
    transform: translateY(-4px);
  }

  .cta-grid p,
  .about-hero p,
  .hero-desc,
  .problema-left p {
    font-size: 0.97rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .nav {
    padding: 0 0.85rem;
  }

  .nav-links {
    left: 0.85rem;
    right: 0.85rem;
    top: calc(100% + 6px);
  }

  .hero,
  .problema,
  .propuesta,
  .modulos,
  .brand-banner,
  .about-hero,
  .mision-vision,
  .valores,
  .equipo,
  .roadmap,
  .cta-section,
  .footer {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .brand-banner {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .brand-banner-kicker {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .brand-banner-title {
    font-size: clamp(1.55rem, 9vw, 2.05rem);
    line-height: 1.18;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .brand-banner-wordwrap {
    width: auto;
    min-height: 1.18em;
  }

  .brand-banner-word {
    width: auto;
    white-space: normal;
  }

  .brand-banner-text {
    font-size: 0.99rem;
  }

  .brand-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-banner-actions .btn-orange,
  .brand-banner-actions .btn-outline-white {
    justify-content: center;
    width: 100%;
  }

  .brand-banner-scroll {
    margin-top: 18px;
    font-size: 11px;
  }

  .brand-banner-mark {
    max-width: 86%;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 48px;
    gap: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.25rem);
    margin-bottom: 14px;
  }

  .hero-desc {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    padding: 14px;
    border-radius: 12px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 15px 13px;
  }

  .stat-num {
    font-size: 24px;
  }

  .tools-bar-label {
    font-size: 10px;
  }

  .problema {
    gap: 1.4rem;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-title,
  .problema-left h2 {
    font-size: clamp(1.72rem, 8vw, 2rem);
    margin-bottom: 22px;
  }

  .section-eyebrow {
    margin-bottom: 6px;
  }

  .modulos,
  .propuesta,
  .about-hero,
  .mision-vision,
  .valores,
  .equipo,
  .cta-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .mod-card h3 {
    font-size: 1.28rem;
  }

  .mod-card p {
    margin-bottom: 16px;
  }

  .mod-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .props-grid,
  .valores-grid,
  .equipo-grid {
    margin-top: 26px;
    gap: 14px;
  }

  .equipo-avatar {
    height: 250px;
  }

  .about-hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    margin-bottom: 12px;
  }

  .roadmap-steps {
    grid-template-columns: 1fr;
  }

  .rmap-step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: start;
    min-height: auto;
    padding: 14px 12px;
  }

  .rmap-step.active {
    transform: none;
  }

  .rmap-dot {
    margin: 1px 0 0;
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .rmap-step h5,
  .rmap-step p {
    grid-column: 2;
    text-align: left;
  }

  .rmap-step h5 {
    margin-bottom: 3px;
  }

  .cta-grid h2,
  .cta-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.1rem);
  }

  .cta-panel {
    padding: 18px 16px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn-orange,
  .cta-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-copy {
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
