:root {
  color-scheme: dark;
  --bg: #050508;
  --bg-soft: #0c0b13;
  --panel: #11101d;
  --panel-2: #17152b;
  --line: rgba(199, 196, 224, 0.18);
  --text: #f5f3ff;
  --muted: #b6b1ca;
  --cyan: #7770d8;
  --green: #f2d66b;
  --amber: #c9c4de;
  --steel: #d4d1e7;
  --danger: #6f5a96;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #090911 0%, var(--bg) 48%, #09090d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(211, 207, 236, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 207, 236, 0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 65%);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 90px;
  padding: 14px clamp(18px, 4vw, 50px);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 8, 0.74);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 8, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  width: clamp(380px, 34vw, 620px);
  height: 68px;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.82);
  transform-origin: left center;
}

.brand span {
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  white-space: normal;
  text-align: center;
}

.header-cta {
  padding: 0 16px;
  border: 1px solid rgba(119, 112, 216, 0.48);
  color: var(--cyan);
}

.section-pad {
  padding: clamp(58px, 7vw, 94px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  min-height: min(760px, calc(88vh - 66px));
  padding-top: clamp(28px, 5vw, 54px);
  padding-bottom: clamp(54px, 7vw, 78px);
}

.hero-copy {
  max-width: 750px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 16px;
  font-size: 0.92rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 45px;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead,
.section-heading p,
.quote-block p,
.insight-copy p,
.closing p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.94rem;
}

.button.primary {
  background: linear-gradient(135deg, #6f69cf, #d9d2ff 58%, var(--green));
  color: #080713;
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-metrics div,
.problem-grid article,
.loop-grid article,
.module-grid article,
.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.hero-metrics div {
  padding: 13px;
}

.hero-metrics dt {
  color: var(--cyan);
  font-size: 1.28rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.signal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(119, 112, 216, 0.28);
  border-radius: var(--radius);
  background: #020405;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--steel);
  font-size: 0.82rem;
}

.status-dot {
  color: var(--green);
}

.signal-canvas {
  width: 100%;
  height: clamp(300px, 31vw, 438px);
  background:
    linear-gradient(180deg, rgba(20, 18, 36, 0.92), rgba(5, 5, 8, 0.98)),
    #050508;
}

.panel-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  width: min(300px, calc(100% - 36px));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  transform: translateY(-26px);
}

.proof-strip div {
  min-height: 124px;
  padding: clamp(18px, 3vw, 24px);
  background:
    linear-gradient(180deg, rgba(119, 112, 216, 0.1), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.22rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-overlay div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 7, 12, 0.84);
  backdrop-filter: blur(14px);
}

.panel-overlay strong,
.panel-overlay span {
  display: block;
}

.panel-overlay strong {
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.panel-overlay span {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 720px;
}

.problem {
  background: linear-gradient(180deg, rgba(19, 17, 34, 0.5), rgba(19, 17, 34, 0));
}

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

.problem-grid article,
.loop-grid article,
.module-grid article,
.benefit-grid article {
  padding: 20px;
}

.problem-grid span,
.step {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
}

.problem-grid p,
.loop-grid p,
.module-grid p,
.benefit-grid p,
.timeline p,
.process-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(119, 112, 216, 0.13), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.quote-block h2 {
  color: var(--cyan);
}

.causal-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.causal-node {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--steel);
  font-weight: 800;
  text-align: center;
}

.causal-node.strong {
  border-color: rgba(242, 214, 107, 0.42);
  color: var(--green);
}

.causal-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 54px;
}

.solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(119, 112, 216, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(119, 112, 216, 0.18), transparent 58%),
    var(--panel);
  box-shadow: var(--shadow);
}

.solution-hero h3 {
  max-width: 650px;
  margin-bottom: 12px;
  font-size: 2.35rem;
  line-height: 1.08;
}

.solution-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.solution-points {
  display: grid;
  gap: 10px;
}

.solution-points span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 750;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.module-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid rgba(119, 112, 216, 0.44);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
}

.energy {
  background:
    linear-gradient(180deg, rgba(119, 112, 216, 0.12), transparent 36%),
    var(--bg-soft);
}

.energy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 18px;
}

.energy-model,
.energy-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 7, 12, 0.62);
  box-shadow: var(--shadow);
}

.energy-model {
  padding: clamp(18px, 3vw, 30px);
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  gap: 10px;
}

.process-block {
  position: relative;
  min-height: 188px;
  padding: 20px;
  border: 1px solid rgba(119, 112, 216, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(119, 112, 216, 0.16), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.process-block::after {
  content: attr(data-energy);
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--green);
  font-weight: 850;
}

.process-block span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(119, 112, 216, 0.2);
  color: var(--cyan);
  font-weight: 850;
}

.process-connector {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.energy-scale {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 26px 0;
  color: var(--steel);
  font-size: 0.82rem;
}

.scale-track {
  position: relative;
  overflow: hidden;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--danger), var(--cyan), var(--green));
}

.scale-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 68%;
  background: rgba(255, 255, 255, 0.24);
  border-right: 3px solid #fff;
  transition: width 220ms ease;
}

.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scenario-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.scenario-tabs button.active {
  border-color: rgba(119, 112, 216, 0.58);
  color: var(--cyan);
  background: rgba(119, 112, 216, 0.14);
}

.energy-aside {
  overflow: hidden;
}

.energy-score {
  padding: 24px;
}

.energy-score span,
.energy-score strong {
  display: block;
}

.energy-score span {
  color: var(--steel);
  font-size: 0.86rem;
}

.energy-score strong {
  margin: 4px 0 8px;
  color: var(--green);
  font-size: 4rem;
  line-height: 1;
}

.energy-score p {
  margin: 0;
  color: var(--muted);
}

.recovery-image {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: contain;
  object-position: center;
  background: #030306;
  padding: 6px;
  border-top: 1px solid var(--line);
}

.insight-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.insight-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.wide-figure img {
  height: clamp(320px, 34vw, 520px);
  object-fit: contain;
  background: #030306;
}

figcaption {
  padding: 12px 14px;
  color: var(--steel);
  font-size: 0.84rem;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.application-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.92rem;
}

.application-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
}

.benefits {
  background: rgba(255, 255, 255, 0.025);
}

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

.benefit-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.05rem;
}

.validation-note {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--amber);
}

.workflow {
  background: linear-gradient(180deg, transparent, rgba(119, 112, 216, 0.075));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 20px;
  border-top: 2px solid var(--cyan);
  background: rgba(255, 255, 255, 0.035);
}

.timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.closing div {
  max-width: 860px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1440px) and (min-width: 1121px) {
  .site-header {
    min-height: 84px;
  }

  .site-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: minmax(410px, 0.78fr) minmax(610px, 1.22fr);
    gap: 34px;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 62px;
  }

  h1 {
    max-width: 610px;
    font-size: 3.18rem;
    line-height: 1.04;
  }

  .hero-eyebrow {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .button {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 0.86rem;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics div {
    padding: 12px;
  }

  .signal-canvas {
    height: min(31vw, 390px);
  }

  .proof-strip {
    transform: translateY(-22px);
  }

  .recovery-image {
    height: 380px;
  }
}

@media (max-width: 1120px) {
  .hero,
  .philosophy,
  .energy-layout,
  .insight-band,
  .solution-hero {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 780px;
    font-size: 3.28rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero {
    min-height: auto;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 230px;
    height: 54px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.07;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  .hero-lead,
  .section-heading p,
  .quote-block p,
  .insight-copy p,
  .closing p {
    font-size: 1rem;
  }

  .hero-metrics,
  .proof-strip,
  .problem-grid,
  .loop-grid,
  .module-grid,
  .benefit-grid,
  .timeline,
  .application-list,
  .insight-images,
  .closing {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-inline: 16px;
    transform: translateY(-18px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .causal-visual,
  .process-row {
    grid-template-columns: 1fr;
  }

  .causal-line,
  .process-connector {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .process-block {
    min-height: 172px;
  }

  .panel-overlay {
    position: static;
    width: auto;
    padding: 12px;
  }

  .panel-overlay div {
    background: rgba(255, 255, 255, 0.055);
  }

  figure img,
  .recovery-image {
    height: 330px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .section-pad {
    padding-inline: 16px;
  }
}

.lista-horizontal {
    display: flex; /* Alinea los elementos horizontalmente */
    list-style: none; /* Elimina las viñetas */
    padding: 0;
    margin: 0;
    gap: 20px; /* Espacio entre cada elemento */
}
