:root {
  --bg: #02060d;
  --bg-soft: #06101d;
  --panel: rgba(6, 16, 29, .72);
  --panel-strong: rgba(9, 22, 39, .9);
  --line: rgba(45, 132, 255, .34);
  --line-soft: rgba(255, 255, 255, .1);
  --blue: #1478ff;
  --blue-soft: #55a0ff;
  --text: #ffffff;
  --muted: #b9c5d6;
  --dim: #7f8da3;
  --shadow: 0 32px 90px rgba(0, 0, 0, .46);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(20, 120, 255, .2), transparent 28rem),
    #02060d url("../assets/backgrounds/fondo-diagonal.webp") top center / cover fixed no-repeat;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(85, 160, 255, .9);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  left: 24px;
  right: 24px;
  top: 18px;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(3, 8, 15, .72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 430px;
  height: 46px;
  overflow: visible;
}

.brand img {
  width: 132px;
  height: 46px;
  object-fit: contain;
  transform: scale(3.15);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav a,
.ghost-link,
.solid-link {
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.ghost-link:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ghost-link,
.solid-link,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
}

.ghost-link {
  border: 1px solid var(--line-soft);
  color: var(--muted);
}

.solid-link,
.button.primary {
  border: 1px solid rgba(85, 160, 255, .68);
  background: linear-gradient(135deg, #0066ff, #1d85ff);
  color: white;
  box-shadow: 0 14px 42px rgba(0, 102, 255, .3);
}

.button.secondary {
  border: 1px solid var(--line);
  color: white;
  background: rgba(255, 255, 255, .04);
}

.button {
  cursor: pointer;
  font: 900 13px Inter, Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button:hover,
.solid-link:hover,
.ghost-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: white;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section-shell {
  position: relative;
  min-height: 100vh;
  padding: clamp(112px, 13vh, 156px) clamp(24px, 6vw, 92px) clamp(70px, 8vh, 110px);
  border-bottom: 1px solid rgba(20, 120, 255, .2);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 104px);
  line-height: .9;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 76px);
  line-height: .92;
}

h1 span,
h2 span { color: var(--blue); }

.lead,
.section-heading p,
.cta-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.65;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto clamp(36px, 6vh, 76px);
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.hero {
  display: grid;
  min-height: min(470px, 100svh);
  grid-template-columns: minmax(0, .48fr) minmax(0, .52fr);
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding-top: 96px;
  padding-bottom: 0;
  border-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, .99) 0%, rgba(2, 6, 13, .97) 38%, rgba(2, 6, 13, .93) 62%, rgba(2, 6, 13, .99) 100%);
}

.ambient-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .62;
  background:
    linear-gradient(100deg, transparent 0 20%, rgba(20, 120, 255, .14) 20.2%, transparent 20.6% 100%),
    linear-gradient(160deg, transparent 0 58%, rgba(20, 120, 255, .12) 58.2%, transparent 58.55% 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 3vw, 52px);
  line-height: .98;
}

.hero h1 span { display: block; }

.hero .lead { max-width: 570px; }

.hero-media {
  position: relative;
  z-index: 1;
  width: min(66vw, 1120px);
  justify-self: end;
  margin-top: clamp(22px, 3vh, 38px);
  margin-right: clamp(-92px, -5vw, -42px);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #02060d 0%, rgba(2, 6, 13, .82) 4%, rgba(2, 6, 13, 0) 15%, rgba(2, 6, 13, 0) 84%, rgba(2, 6, 13, .72) 94%, #02060d 100%),
    linear-gradient(180deg, #02060d 0%, rgba(2, 6, 13, .68) 7%, rgba(2, 6, 13, 0) 19%, rgba(2, 6, 13, 0) 82%, rgba(2, 6, 13, .78) 94%, #02060d 100%);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .42));
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dbe8f8;
  font-size: 13px;
  font-weight: 800;
}

.hero-facts img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: #dbe8f8;
  font-size: 13px;
  font-weight: 800;
}

.mini-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ecosystem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  padding-top: 14px;
  padding-bottom: 38px;
  padding-right: clamp(24px, 6vw, 92px);
  padding-left: clamp(24px, 6vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(20, 120, 255, .12), transparent 34rem),
    linear-gradient(180deg, rgba(2, 6, 13, .98) 0%, rgba(4, 12, 24, .96) 48%, rgba(2, 6, 13, .99) 100%);
}

.ecosystem .section-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: clamp(72px, 8vh, 112px) auto 8px;
  text-align: center;
}

.ecosystem .eyebrow {
  margin-bottom: 10px;
}

.ecosystem .section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.ecosystem-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1320px);
  margin-inline: auto;
  border-top: 1px solid rgba(85, 160, 255, .32);
  border-bottom: 1px solid rgba(85, 160, 255, .2);
  background: linear-gradient(90deg, rgba(3, 11, 22, .16), rgba(3, 11, 22, .04));
  backdrop-filter: blur(4px);
}

.ecosystem-item {
  display: grid;
  grid-template-columns: minmax(94px, .78fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 152px;
  padding: 18px 18px 17px;
  border-right: 1px solid rgba(85, 160, 255, .2);
  transition: transform .28s ease, border-color .28s ease, color .28s ease;
}

.ecosystem-item:last-child { border-right: 0; }

.ecosystem-item:hover,
.ecosystem-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(85, 160, 255, .46);
}

.ecosystem-item img {
  grid-row: 1 / span 2;
  width: 100%;
  height: 104px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(20, 120, 255, .32));
}

.ecosystem-box-image {
  transform: scale(1.78);
  transform-origin: center;
}

.ecosystem-laptop-image,
.ecosystem-phone-image {
  transform: scale(1.04);
  transform-origin: center;
}

.ecosystem-item h3 {
  grid-column: 2;
  margin-bottom: 8px;
  color: white;
  font-size: 15px;
  text-transform: uppercase;
}

.ecosystem-item p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.feature-card,
.process-card,
.demo-form,
.contact-panel {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(10, 22, 40, .82), rgba(4, 10, 18, .82));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
}

.feature-card {
  min-height: 270px;
  padding: 26px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(85, 160, 255, .65);
  box-shadow: 0 26px 70px rgba(20, 120, 255, .16);
}

.feature-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
}

.feature-card h3,
.process-card h3,
.benefit-list h3 {
  margin-bottom: 10px;
  font-size: 17px;
  text-transform: uppercase;
}

.feature-card p,
.process-card p,
.benefit-list p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.solutions-composition,
.solutions-grid {
  position: relative;
  margin: clamp(6px, 1vw, 12px) auto 0;
  width: min(100%, 1260px);
}

.solutions {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 34px;
}

.solutions-composition {
  overflow: hidden;
  border-radius: clamp(12px, 1.4vw, 22px);
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 120, 255, .16), transparent 58%),
    linear-gradient(180deg, rgba(4, 12, 24, .94), rgba(1, 6, 14, .98));
  box-shadow:
    0 0 0 1px rgba(85, 160, 255, .18),
    0 36px 95px rgba(0, 0, 0, .42);
}

.solutions .section-heading {
  max-width: 760px;
  margin-bottom: 0;
  text-align: center;
}

.solutions .section-heading.align-left {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.solutions .section-heading h2 {
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: .94;
}

.solutions .eyebrow {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .28em;
}

.solutions .section-heading h2 span {
  display: block;
}

.solutions .section-heading p:not(.eyebrow) {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  line-height: 1.45;
}

.solutions-composition img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr) minmax(0, 1.04fr);
  gap: 16px;
}

.solutions-side,
.solutions-extra {
  display: grid;
  gap: 16px;
}

.solutions-extra {
  grid-template-rows: 1fr 1fr;
}

.solution-card {
  position: relative;
  height: 252px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 132, 255, .42);
  border-radius: 10px;
  background: rgba(3, 11, 22, .72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.solution-card-large {
  height: 520px;
  min-height: 0;
}

.solutions-extra figure {
  position: relative;
  height: 252px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 132, 255, .42);
  border-radius: 10px;
  background: rgba(3, 11, 22, .72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.solutions-extra figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 6, 13, .05) 0%, rgba(2, 6, 13, .62) 100%);
  pointer-events: none;
}

.solution-extra-content {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.solution-extra-content .solution-icon {
  width: 32px;
  height: 32px;
}

.solution-extra-content h3 {
  margin: 0;
  color: white;
  font-size: clamp(12px, .92vw, 15px);
  line-height: 1.05;
  text-transform: uppercase;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 13, 0) 28%, rgba(2, 6, 13, .72) 76%, rgba(2, 6, 13, .94) 100%),
    linear-gradient(90deg, rgba(2, 6, 13, .55), rgba(2, 6, 13, 0) 48%);
  pointer-events: none;
}

.solution-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-extra figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.solution-card-large > img {
  object-position: center center;
}

.solutions-side .solution-card > img {
  object-position: center 38%;
}

.solution-card-content {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.solution-card-content.compact {
  right: 26px;
  bottom: 24px;
  left: 26px;
  grid-template-columns: 48px minmax(0, 1fr);
}

.solution-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.solution-card-content.compact .solution-icon {
  width: 48px;
  height: 48px;
}

.solution-card h3 {
  margin: 0 0 12px;
  color: white;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.05;
  text-transform: uppercase;
}

.solution-card-content.compact h3 {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 19px);
}

.solution-card p {
  max-width: 360px;
  margin: 0 0 18px;
  color: #d3dbe8;
  line-height: 1.5;
}

.solution-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.solutions-more {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(100%, 1260px);
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-align: center;
  text-transform: uppercase;
}

.solutions-more span,
.solutions-more b {
  color: var(--blue);
}

.solutions-more b {
  font-size: 24px;
  letter-spacing: 0;
}

.complete {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  margin-top: clamp(160px, 18vh, 240px);
  padding-top: 0;
  padding-bottom: 32px;
  background:
    linear-gradient(180deg, #02060d 0%, #020914 48%, #010711 100%);
}

.complete .section-heading {
  position: absolute;
  top: clamp(-92px, -9vh, -54px);
  right: 0;
  left: 0;
  z-index: 2;
  width: min(calc(100% - 48px), 820px);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  transform: none;
}

.complete .eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
}

.complete .section-heading h2 {
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: .94;
}

.complete .section-heading h2 span {
  display: block;
}

.complete .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
}

.complete-composition {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0;
  line-height: 0;
}

.complete-composition img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  border: 0;
  filter: drop-shadow(0 28px 76px rgba(0, 0, 0, .28));
}

.complete-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  width: min(100%, 820px);
  min-height: 52px;
  margin: -26px auto 0;
  padding: 0 28px;
  border: 1px solid rgba(85, 160, 255, .24);
  border-radius: 8px;
  background: rgba(3, 11, 22, .48);
  color: #c9d6e8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-align: center;
  text-transform: uppercase;
}

.complete-summary span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 clamp(18px, 2vw, 28px) 2px 0;
  border-radius: 999px;
  background: rgba(201, 214, 232, .8);
}

.complete-benefits-link {
  width: min(100%, 410px);
  margin: 26px auto 0;
  background: linear-gradient(135deg, #0066ff, #1d85ff) !important;
  border: 1px solid rgba(85, 160, 255, .68);
  box-shadow: none;
  color: white !important;
  letter-spacing: .12em;
}

.benefits {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(520px, .92fr);
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 70px;
  background:
    linear-gradient(90deg, rgba(3, 8, 17, .98) 0%, rgba(4, 12, 24, .96) 48%, rgba(2, 6, 13, .98) 100%);
}

.benefit-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #02060d;
  pointer-events: none;
}

.benefit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, .78) 0%, rgba(2, 6, 13, .22) 10%, rgba(2, 6, 13, 0) 22%, rgba(2, 6, 13, 0) 52%, rgba(2, 6, 13, .78) 82%, rgba(2, 6, 13, .99) 100%),
    linear-gradient(180deg, rgba(2, 6, 13, .76) 0%, rgba(2, 6, 13, .18) 12%, rgba(2, 6, 13, 0) 26%, rgba(2, 6, 13, 0) 64%, rgba(2, 6, 13, .46) 82%, rgba(2, 6, 13, .9) 100%);
}

.benefit-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgba(0, 0, 0, .62) 88%, transparent 100%), linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .76) 10%, #000 18%, #000 84%, rgba(0, 0, 0, .72) 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgba(0, 0, 0, .62) 88%, transparent 100%), linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .76) 10%, #000 18%, #000 84%, rgba(0, 0, 0, .72) 91%, transparent 100%);
  mask-composite: intersect;
}

.benefit-copy {
  grid-column: 2;
  position: relative;
  z-index: 2;
  justify-self: start;
  max-width: 660px;
  margin-left: clamp(12px, 2.5vw, 48px);
}

.benefits .eyebrow {
  color: var(--blue);
  font-size: 12px;
  margin-bottom: 18px;
}

.benefits .eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 14px;
  background: var(--blue);
}

.benefit-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: .95;
}

.benefit-copy h2 span { display: block; }

.benefit-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 40px;
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.45;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 0;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 96px;
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid rgba(85, 160, 255, .18);
  background: transparent;
}

.benefit-list article:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid rgba(85, 160, 255, .18);
}

.benefit-list article:nth-child(even) {
  padding-left: 24px;
}

.benefit-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.benefit-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(20, 120, 255, .26));
}

.benefit-list h3 { font-size: 14px; }

.benefit-list p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.benefit-link {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 30px 0 0 auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.app-portal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, .64fr) minmax(0, 1.36fr);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 6, 13, .98) 0%, rgba(2, 6, 13, .8) 31%, rgba(2, 6, 13, .18) 52%, rgba(2, 6, 13, 0) 74%),
    url("../assets/backgrounds/app-portal-r2f-official.webp") center center / 90% auto no-repeat;
}

.app-portal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #02060d 0%, rgba(2, 6, 13, .56) 8%, rgba(2, 6, 13, 0) 17%, rgba(2, 6, 13, 0) 82%, rgba(2, 6, 13, .58) 92%, #02060d 100%);
  pointer-events: none;
}

.app-portal-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.app-portal-copy h2 {
  color: white;
  font-size: clamp(34px, 4.4vw, 68px);
  text-shadow: 0 16px 34px rgba(0, 0, 0, .58);
}

.app-portal-copy > p {
  color: #d6e3f2;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.65;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}

.capability-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(85, 160, 255, .16);
}

.capability-list article:first-child { padding-top: 0; }
.capability-list article:last-child { border-bottom: 0; }

.capability-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(20, 120, 255, .26));
}

.capability-list h3 {
  margin-bottom: 6px;
  color: white;
  font-size: 15px;
  text-transform: uppercase;
}

.capability-list p {
  margin: 0;
  color: #c6d4e4;
  line-height: 1.5;
}

.section-actions { margin-bottom: 0; }

.connected {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #02060d 0%, #020914 52%, #010711 100%);
}

.connected .section-heading {
  position: absolute;
  top: clamp(180px, 22vh, 260px);
  left: 46%;
  z-index: 2;
  width: min(calc(100% - 48px), 920px);
  margin: 0;
  transform: translateX(-50%);
}

.connected .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.connected-composition {
  width: min(100%, 1540px);
  margin: clamp(80px, 10vh, 130px) auto 0;
  padding: 0;
  line-height: 0;
}

.connected-composition img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 42px 90px rgba(0, 0, 0, .42));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.cta-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 50%, rgba(20, 120, 255, .2), transparent 28rem),
    linear-gradient(90deg, rgba(2, 6, 13, .99) 0%, rgba(2, 6, 13, .94) 42%, rgba(2, 6, 13, .88) 72%, rgba(2, 6, 13, .96) 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/backgrounds/demo-r2h-official.webp") center center / cover no-repeat;
  opacity: .08;
  filter: saturate(1.12);
  -webkit-mask-image: radial-gradient(ellipse at 35% 62%, #000 0%, rgba(0, 0, 0, .7) 11%, transparent 24%);
  mask-image: radial-gradient(ellipse at 35% 62%, #000 0%, rgba(0, 0, 0, .7) 11%, transparent 24%);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.demo-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.demo-benefits li {
  display: flex;
  align-items: center;
}

.demo-benefits li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(20, 120, 255, .8);
}

.demo-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(85, 160, 255, .26);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(5, 13, 28, .82), rgba(2, 8, 19, .7));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.demo-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(120, 180, 255, .2);
  border-radius: 9px;
  background: rgba(1, 6, 16, .78);
  color: white;
  padding: 13px 15px;
  font: inherit;
}

.demo-form input:focus,
.demo-form textarea:focus,
.demo-form select:focus {
  border-color: rgba(20, 120, 255, .9);
  box-shadow: 0 0 0 3px rgba(20, 120, 255, .18);
  outline: none;
}

.demo-form textarea {
  min-height: 126px;
  resize: vertical;
}

.privacy-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.privacy-consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--blue);
}

.privacy-consent a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(20, 120, 255, .9);
  text-underline-offset: 3px;
}

.form-note {
  margin-bottom: 0;
  font-size: 12px;
}

.legal-header {
  position: sticky;
}

.legal-main {
  min-height: 100vh;
  padding: 156px clamp(24px, 7vw, 120px) 92px;
  background:
    radial-gradient(circle at 12% 12%, rgba(20, 120, 255, .18), transparent 360px),
    linear-gradient(180deg, #02060d 0%, #051021 52%, #02060d 100%);
}

.legal-article {
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
}

.legal-article h1,
.legal-article h2 {
  color: white;
  text-transform: uppercase;
}

.legal-article h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .95;
}

.legal-article h2 {
  margin: 42px 0 14px;
  font-size: clamp(18px, 2vw, 24px);
}

.legal-article p,
.legal-article li,
.legal-data {
  font-size: 15px;
  line-height: 1.75;
}

.legal-article a {
  color: white;
  text-decoration-color: rgba(20, 120, 255, .72);
}

.legal-data {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) 1fr;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.legal-data dt {
  color: white;
  font-weight: 800;
}

.legal-data dd {
  margin: 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(130px, 1fr));
  gap: 34px;
  padding: 78px clamp(24px, 6vw, 92px) 42px;
  overflow: hidden;
  background: linear-gradient(90deg, #02060d 0%, #02060d 58%, #030914 100%);
  border-top: 1px solid rgba(20, 120, 255, .22);
}

.site-footer.legal-footer {
  grid-template-columns: minmax(260px, 1.45fr) repeat(2, minmax(150px, 1fr));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/backgrounds/footer-r2h-official.webp") right center / auto 100% no-repeat;
  opacity: .015;
  filter: saturate(1.08);
  -webkit-mask-image: radial-gradient(ellipse at 88% 36%, #000 0%, rgba(0, 0, 0, .75) 18%, transparent 36%);
  mask-image: radial-gradient(ellipse at 88% 36%, #000 0%, rgba(0, 0, 0, .75) 18%, transparent 36%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 430px;
}

.site-footer img {
  width: 128px;
  height: 50px;
  object-fit: contain;
}

.footer-brand img {
  width: min(100%, 420px);
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer a[href="aviso-legal.html"],
.site-footer a[href="politica-privacidad.html"] {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(20, 120, 255, .9);
  text-underline-offset: 4px;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1;
  color: white;
}

.site-footer nav,
.footer-copy {
  display: grid;
  gap: 10px;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(85, 160, 255, .14);
  color: rgba(198, 212, 228, .7);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes pulseLine {
  0%, 100% { opacity: .28; }
  50% { opacity: .44; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-active .site-nav,
  .site-header.menu-active .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    text-align: center;
  }

  .site-header.menu-active .site-nav {
    gap: 0;
  }

  .site-header.menu-active .site-nav a,
  .site-header.menu-active .header-actions a {
    padding: 16px;
    border-top: 1px solid var(--line-soft);
  }

  .site-header.menu-active .header-actions {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem {
    background:
      radial-gradient(circle at 70% 50%, rgba(20, 120, 255, .12), transparent 34rem),
      linear-gradient(180deg, rgba(2, 6, 13, .98) 0%, rgba(4, 12, 24, .96) 48%, rgba(2, 6, 13, .99) 100%);
  }

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

  .app-portal,
  .benefits,
  .cta-section,
  .hero {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: minmax(0, .96fr) minmax(460px, .92fr);
    background:
      linear-gradient(90deg, rgba(3, 8, 17, .98) 0%, rgba(4, 12, 24, .96) 48%, rgba(2, 6, 13, .98) 100%);
  }

  .benefit-visual {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .benefit-copy {
    margin-left: clamp(8px, 2vw, 30px);
  }

  .hero {
    grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
  }

  .app-portal {
    grid-template-columns: minmax(390px, .64fr) minmax(0, 1.36fr);
    background:
      linear-gradient(90deg, rgba(2, 6, 13, .98) 0%, rgba(2, 6, 13, .78) 36%, rgba(2, 6, 13, .18) 58%, rgba(2, 6, 13, 0) 100%),
      url("../assets/backgrounds/app-portal-r2f-official.webp") center center / 90% auto no-repeat;
  }

  .cta-section {
    background:
      radial-gradient(circle at 50% 24%, rgba(20, 120, 255, .16), transparent 22rem),
      linear-gradient(180deg, rgba(2, 6, 13, .96) 0%, rgba(2, 6, 13, .9) 42%, rgba(2, 6, 13, .98) 100%);
  }
}

@media (max-width: 900px) {
  .section-shell {
    min-height: auto;
    padding: 112px 20px 70px;
  }

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

  .complete-grid,
  .benefit-list,
  .capability-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .complete-summary {
    flex-wrap: wrap;
    gap: 12px 22px;
    min-height: auto;
    padding: 16px 18px;
  }

  .site-footer.legal-footer {
    grid-template-columns: 1fr;
  }

  .process-card.featured {
    grid-row: auto;
  }

  .ecosystem .section-heading { margin-bottom: 18px; }
  .ecosystem-strip { grid-template-columns: 1fr 1fr; }

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

  .solution-card-large,
  .solution-card {
    min-height: 280px;
  }

  .solutions-side,
  .solutions-extra {
    grid-template-columns: 1fr 1fr;
  }

  .solutions-extra {
    grid-template-rows: none;
  }

  .solutions-more {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefits {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(3, 8, 17, .98) 0%, rgba(4, 12, 24, .96) 44%, rgba(2, 6, 13, .99) 100%);
  }

  .benefit-visual {
    grid-column: auto;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .benefit-copy {
    grid-column: auto;
    align-self: end;
    margin-top: 0;
    margin-left: 0;
  }

  .benefit-copy h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list article,
  .benefit-list article:nth-child(odd),
  .benefit-list article:nth-child(even) {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(85, 160, 255, .18);
  }

  .benefit-list article:last-child {
    border-bottom: 0;
  }

  .benefit-link {
    margin-left: 0;
  }
  .app-portal {
    grid-template-columns: 1fr;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(2, 6, 13, .88) 0%, rgba(2, 6, 13, .68) 42%, rgba(2, 6, 13, .18) 70%, rgba(2, 6, 13, 0) 100%),
      url("../assets/backgrounds/app-portal-r2f-official.webp") 54% bottom / auto 54vh no-repeat;
  }
  .app-portal-copy { max-width: 620px; }
  .device-showcase { min-height: 540px; }
  .connected-composition { width: min(100%, 1180px); }
  .cta-section {
    align-items: start;
    background:
      radial-gradient(circle at 50% 20%, rgba(20, 120, 255, .12), transparent 18rem),
      linear-gradient(180deg, rgba(2, 6, 13, .94) 0%, rgba(2, 6, 13, .96) 44%, rgba(2, 6, 13, .99) 100%);
  }
  .site-footer {
    background:
      linear-gradient(180deg, rgba(2, 6, 13, .985), rgba(2, 6, 13, .995));
  }
}

@media (max-width: 560px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 10px;
    border-radius: 14px;
  }

  .brand img {
    width: 112px;
    height: 42px;
    transform: scale(2.25);
  }

  h1 { font-size: clamp(40px, 12vw, 56px); }
  h2 {
    font-size: clamp(29px, 9.6vw, 44px);
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .hero h1 span { display: block; }

  .hero h1 span {
    max-width: 10ch;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-facts,
  .ecosystem-strip {
    grid-template-columns: 1fr;
  }

  .benefits {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(3, 8, 17, .98) 0%, rgba(4, 12, 24, .96) 43%, rgba(2, 6, 13, .99) 100%);
  }

  .benefit-visual {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .benefit-copy { margin-top: 0; }

  .app-portal {
    min-height: auto;
    padding-top: calc(112px + 38vh);
    padding-bottom: 70px;
    background:
      linear-gradient(180deg, rgba(2, 6, 13, .08) 0%, rgba(2, 6, 13, .18) 32%, rgba(2, 6, 13, .96) 48%, rgba(2, 6, 13, .99) 100%),
      url("../assets/backgrounds/app-portal-r2f-official.webp") 64% 96px / auto 36vh no-repeat;
  }

  .ecosystem {
    min-height: auto;
    background:
      radial-gradient(circle at 70% 50%, rgba(20, 120, 255, .12), transparent 34rem),
      linear-gradient(180deg, rgba(2, 6, 13, .98) 0%, rgba(4, 12, 24, .96) 48%, rgba(2, 6, 13, .99) 100%);
  }

  .ecosystem .section-heading { margin-bottom: 18px; }

  .ecosystem-strip {
    display: flex;
    gap: 0;
    margin-inline: -20px;
    padding-inline: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .ecosystem-item {
    flex: 0 0 74%;
    scroll-snap-align: start;
  }

  .solutions {
    padding-top: 88px;
  }

  .solutions-side {
    grid-template-columns: 1fr;
  }

  .solutions-extra {
    grid-template-columns: 1fr;
  }

  .solution-card-large,
  .solution-card,
  .solutions-extra figure {
    min-height: 260px;
  }

  .solution-card-content,
  .solution-card-content.compact {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .solution-icon,
  .solution-card-content.compact .solution-icon {
    width: 42px;
    height: 42px;
  }

  .solution-card h3,
  .solution-card-content.compact h3 {
    font-size: 17px;
  }

  .solution-card p {
    font-size: 14px;
  }

  .complete {
    padding-top: 88px;
  }

  .complete .section-heading {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0 0 18px;
    transform: none;
  }

  .complete .section-heading h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .complete-summary {
    display: grid;
    grid-template-columns: 1fr;
    font-size: 11px;
    letter-spacing: .16em;
  }

  .complete-summary span + span::before {
    display: none;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(2, 6, 13, .99) 0%, rgba(2, 6, 13, .96) 50%, rgba(2, 6, 13, .99) 100%);
  }

  .hero-media {
    width: 100%;
    justify-self: center;
    margin-top: 18px;
    margin-right: 0;
    margin-left: 0;
  }

  .cta-section {
    padding-top: calc(112px + 20vh);
    background:
      radial-gradient(circle at 50% 13%, rgba(20, 120, 255, .12), transparent 14rem),
      linear-gradient(180deg, rgba(2, 6, 13, .88) 0%, rgba(2, 6, 13, .97) 30%, rgba(2, 6, 13, .99) 100%);
  }

  .demo-benefits { grid-template-columns: 1fr; }

  .demo-form {
    padding: 20px;
    border-radius: 16px;
  }

  .device-showcase { min-height: 430px; }
  .portal-mockup { width: 92%; }
  .mobile-mockup { width: 38%; }
  .connected { padding-bottom: 68px; }
  .connected .section-heading {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0 0 18px;
    transform: none;
    text-align: left;
  }
  .connected .section-heading p:not(.eyebrow) { margin-left: 0; }
  .connected-composition {
    width: 100%;
    margin: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .connected-composition img {
    width: 760px;
    max-width: none;
  }
  .site-footer {
    padding-bottom: 42px;
    background:
      linear-gradient(180deg, rgba(2, 6, 13, .96), rgba(2, 6, 13, .99)),
      #02060d;
  }
}
