@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --night: #06151d;
  --graphite: #1c2b35;
  --steel-dark: #102b38;
  --petroleum: #0a3d5d;
  --technical-blue: #174c63;
  --amber: #e5ae1a;
  --amber-deep: #b97a0a;
  --light: #f1f4f3;
  --steel: #b8c5c9;
  --line: rgba(184, 197, 201, 0.2);
  --shell: 1660px;
  --gutter: clamp(1rem, 4vw, 4.75rem);
  --header-height: clamp(4.95rem, 5.4vw, 5.25rem);
  --motion-fast: 220ms;
  --motion-base: 680ms;
  --motion-slow: 980ms;
  --motion-distance: 2rem;
  --motion-mobile-distance: 1.05rem;
  --motion-stagger: 105ms;
  --ease-premium: cubic-bezier(0.2, 0.68, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--night);
}

body {
  margin: 0;
  background: var(--night);
  color: var(--light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--amber);
  color: var(--night);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid rgba(184, 197, 201, 0.14);
  background: linear-gradient(180deg, rgba(6, 21, 29, 0.76), rgba(6, 21, 29, 0.16));
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 21, 29, 0.94);
  border-color: rgba(229, 174, 26, 0.34);
  box-shadow: 0 0.85rem 2.2rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  position: relative;
  display: inline-flex;
  width: clamp(12.8rem, 14vw, 13.75rem);
  isolation: isolate;
}

.brand-link picture,
.brand-link img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.brand-link img {
  filter: drop-shadow(0 0.16rem 0.22rem rgba(0, 0, 0, 0.22));
}

.brand-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -44% -30%;
  background: radial-gradient(ellipse at 47% 52%, rgba(185, 207, 216, 0.78) 0 25%, rgba(116, 158, 177, 0.52) 54%, rgba(49, 92, 112, 0.18) 72%, transparent 88%);
  filter: blur(0.5rem);
  pointer-events: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.2vw, 2.2rem);
  color: rgba(241, 244, 243, 0.82);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 0.8rem;
}

.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(229, 174, 26, 0.62);
  color: var(--light);
  letter-spacing: 0;
  transition: background 200ms ease, color 200ms ease;
}

.nav-cta span {
  color: var(--amber);
}

.nav-cta:hover {
  background: var(--amber);
  color: var(--night);
}

.nav-cta:hover span {
  color: var(--night);
}

.mobile-nav {
  display: none;
  position: relative;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--night);
}

.hero-media,
.hero-overlay,
.technical-layer {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 21, 29, 0.98) 0%, rgba(6, 21, 29, 0.94) 27%, rgba(6, 21, 29, 0.76) 46%, rgba(6, 21, 29, 0.25) 67%, rgba(6, 21, 29, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 21, 29, 0.42) 0%, transparent 25%, transparent 68%, rgba(6, 21, 29, 0.88) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(184, 197, 201, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 197, 201, 0.18) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 56%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--header-height);
  bottom: 0;
  left: clamp(1rem, 3vw, 3rem);
  width: 1px;
  background: linear-gradient(180deg, rgba(229, 174, 26, 0.64), rgba(229, 174, 26, 0));
  pointer-events: none;
}

.technical-layer {
  z-index: -1;
  color: rgba(184, 197, 201, 0.5);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}

.technical-layer__top {
  position: absolute;
  top: calc(var(--header-height) + 1.35rem);
  right: var(--gutter);
}

.technical-layer__side {
  position: absolute;
  top: 52%;
  right: clamp(0.45rem, 1.2vw, 1.2rem);
  writing-mode: vertical-rl;
}

.hero-shell {
  position: relative;
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-top: calc(var(--header-height) + clamp(3.3rem, 6vh, 6.2rem));
  padding-bottom: clamp(2rem, 4vh, 3.8rem);
}

.hero-copy {
  width: min(62%, 62rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  color: var(--steel);
  font-size: clamp(0.65rem, 0.72vw, 0.78rem);
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: clamp(2.1rem, 3.7vw, 4.2rem);
  height: 2px;
  background: var(--amber);
}

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

h1 {
  margin-bottom: clamp(1rem, 1.8vh, 1.55rem);
  color: var(--light);
  font-size: clamp(3.4rem, 4vw, 5.25rem);
  font-weight: 790;
  letter-spacing: -0.058em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-lead {
  max-width: 43ch;
  margin-bottom: 0.9rem;
  color: #d7e3e5;
  font-size: clamp(1.18rem, 1.65vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-lead > span {
  display: block;
}

.hero-support {
  max-width: 66ch;
  margin-bottom: clamp(1.55rem, 3vh, 2.5rem);
  color: var(--steel);
  font-size: clamp(0.88rem, 0.92vw, 1.02rem);
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  grid-template-areas:
    "primary secondary"
    "note .";
  grid-template-columns: max-content max-content;
  align-items: center;
  gap: 1.6rem 2rem;
}

.primary-action {
  grid-area: primary;
}

.action-note {
  grid-area: note;
  color: rgba(184, 197, 201, 0.74);
  max-width: 48ch;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 3.45rem;
  padding: 0.88rem 1.25rem;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  background: var(--amber);
  color: var(--night);
  box-shadow: 0 0.85rem 2.2rem rgba(6, 21, 29, 0.28);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover {
  background: #f0bc2a;
  transform: translateY(-2px);
  box-shadow: 0 1.1rem 2.6rem rgba(6, 21, 29, 0.4);
}

.secondary-link {
  grid-area: secondary;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0;
  color: var(--light);
  font-size: 0.79rem;
  font-weight: 720;
}

.secondary-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: rgba(184, 197, 201, 0.58);
  transition: background 180ms ease;
}

.secondary-link span {
  color: var(--amber);
}

.secondary-link:hover::after {
  background: var(--amber);
}

.authority-shell {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.authority-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(229, 174, 26, 0.54);
  background: linear-gradient(90deg, rgba(6, 21, 29, 0.93), rgba(16, 43, 56, 0.88));
  box-shadow: 0 -1.4rem 3.8rem rgba(6, 21, 29, 0.34);
}

.authority-rail::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 13%;
  height: 3px;
  background: var(--amber);
}

.authority-item {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1rem, 1.8vw, 1.7rem);
  min-height: clamp(6.8rem, 9.4vh, 8rem);
  padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.15rem, 2.4vw, 2.6rem);
}

.authority-item + .authority-item::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 197, 201, 0.34), transparent);
}

.authority-item strong {
  color: var(--light);
  font-size: clamp(2rem, 2.65vw, 3.15rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.95;
  white-space: nowrap;
}

.authority-item strong small {
  color: rgba(241, 244, 243, 0.78);
  font-size: 0.44em;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.authority-item > span:last-child {
  color: var(--steel);
  font-size: clamp(0.67rem, 0.78vw, 0.8rem);
  font-weight: 620;
  line-height: 1.35;
}

.section-intro {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 14%, rgba(23, 76, 99, 0.45), transparent 30rem),
    linear-gradient(145deg, var(--steel-dark), var(--night) 72%);
}

.section-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(118deg, transparent 0 62%, rgba(229, 174, 26, 0.6) 62% 62.2%, transparent 62.2%),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(184, 197, 201, 0.18) 95px 96px);
  pointer-events: none;
}

.section-intro__glow {
  position: absolute;
  top: -15rem;
  right: -10rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(229, 174, 26, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 7rem rgba(10, 61, 93, 0.11),
    0 0 0 14rem rgba(10, 61, 93, 0.07);
  pointer-events: none;
}

.section-shell {
  position: relative;
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding: clamp(6.5rem, 12vw, 12rem) 0 clamp(7rem, 13vw, 13rem);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  color: rgba(184, 197, 201, 0.55);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.section-marker i {
  width: min(9rem, 18vw);
  height: 1px;
  background: rgba(184, 197, 201, 0.28);
}

.section-intro__copy {
  max-width: 71rem;
}

.eyebrow-light {
  color: var(--steel);
}

.section-intro h2 {
  max-width: 17ch;
  margin: 0 0 1.5rem;
  color: var(--light);
  font-size: clamp(2.75rem, 5.25vw, 6.25rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro__lead {
  max-width: 54ch;
  margin: 0 0 1rem;
  color: var(--steel);
  font-size: clamp(1rem, 1.32vw, 1.3rem);
  line-height: 1.62;
}

.section-intro__support {
  max-width: 54ch;
  margin: 0;
  color: rgba(241, 244, 243, 0.82);
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  font-weight: 620;
  line-height: 1.55;
}

.section-intro__signal {
  position: absolute;
  right: 0;
  bottom: clamp(4.5rem, 8vw, 7rem);
  display: flex;
  gap: 1.1rem;
  color: rgba(184, 197, 201, 0.42);
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.section-intro__signal span + span {
  border-right: 1px solid rgba(184, 197, 201, 0.2);
  padding-right: 1.1rem;
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(0.85rem);
  animation: hero-enter 720ms cubic-bezier(0.2, 0.65, 0.25, 1) forwards;
}

.js [data-animate="1"] { animation-delay: 90ms; }
.js [data-animate="2"] { animation-delay: 160ms; }
.js [data-animate="3"] { animation-delay: 250ms; }
.js [data-animate="4"] { animation-delay: 330ms; }
.js [data-animate="5"] { animation-delay: 410ms; }
.js [data-animate="6"] { animation-delay: 520ms; }

.js .hero-media img {
  animation: image-settle 1.4s cubic-bezier(0.18, 0.7, 0.25, 1) both;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-settle {
  from {
    opacity: 0.82;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  :root {
    --gutter: clamp(1.4rem, 4vw, 3.2rem);
  }

  .hero-copy {
    width: 68%;
  }

  h1 { font-size: 3.4rem; }

  .desktop-nav {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.6rem;
  }

  .brand-link {
    width: clamp(10.95rem, 25vw, 11.6rem);
  }

  .header-shell {
    gap: 0.7rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 2.8rem;
    min-height: 2.8rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(229, 174, 26, 0.42);
    color: var(--light);
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 720;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .menu-lines {
    display: grid;
    gap: 0.3rem;
    width: 1.1rem;
  }

  .menu-lines i {
    display: block;
    height: 1px;
    background: var(--amber);
  }

  .mobile-nav[open] .menu-lines i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .mobile-nav[open] .menu-lines i:last-child {
    transform: translateY(-2px) rotate(-45deg);
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    display: grid;
    width: min(18rem, calc(100vw - 2rem));
    padding: 0.65rem 1rem;
    border-top: 2px solid var(--amber);
    background: rgba(6, 21, 29, 0.98);
    box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.38);
  }

  .mobile-nav nav a {
    display: flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(184, 197, 201, 0.16);
    color: var(--light);
    font-size: 0.76rem;
    font-weight: 650;
  }

  .mobile-nav nav a:last-child {
    border: 0;
    color: var(--amber);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 21, 29, 0.98) 0%, rgba(6, 21, 29, 0.94) 44%, rgba(6, 21, 29, 0.62) 72%, rgba(6, 21, 29, 0.86) 100%),
      linear-gradient(90deg, rgba(6, 21, 29, 0.78), rgba(6, 21, 29, 0.3));
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + clamp(2.5rem, 7vw, 4.2rem));
    padding-bottom: 2.2rem;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    max-width: 18ch;
    font-size: clamp(2.2rem, 7vw, 3.7rem);
  }

  .hero-support {
    max-width: 53ch;
  }

  .technical-layer__top,
  .technical-layer__side {
    display: none;
  }

  .authority-item {
    min-height: 6.6rem;
    padding: 1.1rem 0.85rem;
  }

  .authority-item strong {
    font-size: clamp(1.8rem, 4.5vw, 2.45rem);
  }

  .section-shell {
    padding-top: clamp(4.25rem, 9vw, 6rem);
    padding-bottom: clamp(4.5rem, 9vw, 6.5rem);
  }

  .section-intro h2 {
    max-width: 14ch;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: clamp(0.95rem, 4.1vw, 1.45rem);
  }

  .brand-link {
    width: clamp(10.95rem, 47vw, 11.6rem);
  }

  .hero {
    min-height: max(720px, 88svh);
  }

  .section-intro {
    min-height: 0;
  }

  .hero::before {
    background-size: 64px 64px;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 2.15rem);
    padding-bottom: 1.8rem;
  }

  .eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.75rem, 8vw, 2.05rem);
    letter-spacing: -0.052em;
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 29ch;
    margin-bottom: 0.7rem;
    font-size: clamp(1rem, 4.8vw, 1.2rem);
  }

  .hero-support {
    margin-bottom: 1.35rem;
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 0.7rem;
  }

  .primary-action {
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.72rem 0.85rem;
    font-size: 0.76rem;
  }

  .primary-action > span {
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .secondary-link {
    width: 100%;
    min-height: 2.8rem;
    justify-content: center;
    padding-block: 0.45rem;
    font-size: 0.76rem;
  }

  .authority-rail {
    grid-template-columns: 1fr;
  }

  .authority-item {
    display: grid;
    grid-template-columns: 5.65rem minmax(0, 1fr);
    min-height: 0;
    column-gap: 0.75rem;
    padding: 0.82rem 0.85rem;
  }

  .authority-item strong {
    font-size: clamp(1.72rem, 8vw, 2.05rem);
  }

  .authority-item > span:last-child {
    align-self: center;
    font-size: clamp(0.76rem, 3.25vw, 0.84rem);
    line-height: 1.36;
  }

  .authority-item + .authority-item::before {
    top: 0;
    right: 0.85rem;
    bottom: auto;
    left: 0.85rem;
    width: auto;
    height: 1px;
    background: rgba(184, 197, 201, 0.2);
  }

  .section-shell {
    padding: 3rem 0 3.75rem;
  }

  .section-marker {
    margin-bottom: 1.7rem;
  }

  .section-intro h2 {
    font-size: clamp(2.2rem, 10.4vw, 3.2rem);
  }

  .section-intro__signal {
    position: static;
    display: flex;
    gap: 0.65rem;
    margin-top: 1.8rem;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
  }

  .section-intro__signal span + span {
    border-top: 0;
    border-right: 0;
    border-left: 1px solid rgba(184, 197, 201, 0.2);
    padding-right: 0;
    padding-left: 0.65rem;
  }
}

@media (max-width: 340px) {
  .brand-link {
    width: 10.95rem;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  h1 {
    font-size: 1.6rem;
    letter-spacing: -0.075em;
  }

  .hero-support {
    font-size: 0.72rem;
  }

  .authority-item {
    padding-inline: 0.35rem;
  }
}

@media (max-width: 768px) {
  .section-intro__signal {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-shell {
    padding-top: calc(var(--header-height) + 1.95rem);
    padding-bottom: 1.5rem;
  }

  .hero-actions {
    display: grid;
    grid-template-areas: none;
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .primary-action {
    display: contents;
  }

  .primary-action > .button {
    order: 1;
    width: 100%;
    min-height: 3rem;
    padding: 0.72rem 0.85rem;
    font-size: 0.76rem;
  }

  .secondary-link {
    grid-area: auto;
    order: 2;
    width: 100%;
    min-height: 2.8rem;
    justify-content: center;
    padding-block: 0.45rem;
    font-size: 0.76rem;
  }

  .action-note {
    grid-area: auto;
    order: 3;
    max-width: 54ch;
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .authority-rail {
    grid-template-columns: 1fr;
  }

  .authority-item {
    grid-template-columns: clamp(5.75rem, 25vw, 6.75rem) minmax(0, 1fr);
    min-height: 0;
    column-gap: 0.75rem;
    padding: 1.05rem 0.85rem;
  }

  .authority-item strong {
    font-size: clamp(1.72rem, 8vw, 2.05rem);
  }

  .authority-item > span:last-child {
    align-self: center;
    font-size: clamp(0.76rem, 3.25vw, 0.84rem);
    line-height: 1.36;
  }

  .authority-item + .authority-item::before {
    top: 0;
    right: 0.85rem;
    bottom: auto;
    left: 0.85rem;
    width: auto;
    height: 1px;
    background: rgba(184, 197, 201, 0.2);
  }

  .section-intro {
    min-height: 0;
  }

  .section-shell {
    padding: 2.25rem 0 3.25rem;
  }

  .section-marker {
    margin-bottom: 1.1rem;
  }

  .js .section-intro .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 901px) {
  .brand-link::before {
    inset: -38% -25%;
    background: radial-gradient(ellipse at 47% 52%, rgba(185, 207, 216, 0.78) 0 25%, rgba(116, 158, 177, 0.50) 54%, rgba(49, 92, 112, 0.14) 72%, transparent 87%);
    filter: blur(0.55rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-animate],
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Cuerpo editorial de la landing */
.page-section {
  position: relative;
  overflow: clip;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-frame {
  position: relative;
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section-heading {
  max-width: 58rem;
}

.section-heading--narrow {
  max-width: 51rem;
}

.section-heading h2,
.audience-copy h2,
.authority-copy h2,
.contact-copy h2 {
  margin: 0 0 1.5rem;
  color: var(--light);
  font-size: clamp(2.65rem, 5.3vw, 6.15rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-lead,
.authority-copy > p:not(.authority-close),
.contact-copy > p {
  max-width: 65ch;
  color: var(--steel);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.62;
}

.section-intro {
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.outcome-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  margin: clamp(2rem, 5vw, 5rem) auto 0;
  padding: 0;
  list-style: none;
}

.outcome-path::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  right: 8.33%;
  left: 8.33%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 174, 26, 0.66), rgba(184, 197, 201, 0.28), transparent);
}

.outcome-path__item {
  position: relative;
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(184, 197, 201, 0.25);
}

.outcome-path__item:nth-child(1) { grid-column: 1 / span 4; }
.outcome-path__item:nth-child(2) { grid-column: 5 / span 4; margin-top: 3.4rem; }
.outcome-path__item:nth-child(3) { grid-column: 9 / span 4; margin-top: 1.25rem; }

.outcome-path__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(229, 174, 26, 0.78);
  background: var(--steel-dark);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.outcome-path h3,
.method-timeline h3,
.offer-includes h3 {
  margin: 0 0 0.6rem;
  color: var(--light);
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.outcome-path p {
  margin: 0;
  color: var(--steel);
  font-size: clamp(0.82rem, 0.92vw, 0.97rem);
  line-height: 1.55;
}

.section-audience {
  background: linear-gradient(126deg, #123847 0%, #0b2632 47%, #071b24 100%);
}

.section-audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 10.4%, rgba(184, 197, 201, 0.055) 10.4% 10.47%);
  pointer-events: none;
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 7vw, 9rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 11rem);
}

.audience-visual {
  position: relative;
  min-height: 36rem;
  margin: 0;
  overflow: hidden;
  background: var(--night);
  box-shadow: 1.4rem 1.4rem 0 rgba(229, 174, 26, 0.12);
}

.audience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 21, 29, 0.02), rgba(6, 21, 29, 0.74)), linear-gradient(0deg, rgba(6, 21, 29, 0.7), transparent 44%);
  pointer-events: none;
}

.audience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.audience-visual figcaption {
  position: absolute;
  z-index: 1;
  bottom: 1.1rem;
  left: 1.25rem;
  color: rgba(241, 244, 243, 0.8);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

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

.audience-copy h2 { font-size: clamp(2.45rem, 4.4vw, 5.35rem); }

.audience-criteria {
  display: grid;
  gap: 0;
  margin: 2rem 0 1.75rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(184, 197, 201, 0.25);
}

.audience-criteria li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(184, 197, 201, 0.17);
  color: var(--light);
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  font-weight: 580;
  line-height: 1.45;
}

.audience-criteria span {
  color: var(--amber);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.audience-close {
  max-width: 42ch;
  margin: 0;
  color: #d6e3e5;
  font-size: clamp(1rem, 1.2vw, 1.24rem);
  font-weight: 700;
  line-height: 1.35;
}

.section-signals {
  background: #17252d;
}

.section-signals::before {
  content: "";
  position: absolute;
  top: -20rem;
  right: -8rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(229, 174, 26, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(10, 61, 93, 0.08), 0 0 0 16rem rgba(10, 61, 93, 0.04);
  pointer-events: none;
}

.section-signals .section-frame { padding-block: clamp(5rem, 10vw, 11rem); }

.section-signals .section-heading { max-width: 51rem; }

.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(13rem, 4fr);
  gap: clamp(2rem, 7vw, 9rem);
  align-items: center;
  margin-top: clamp(3rem, 7vw, 7rem);
}

.signal-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-map::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  bottom: 1.3rem;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(184, 197, 201, 0.23), transparent);
}

.signal-map li {
  display: grid;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  gap: 0.85rem;
  min-width: 0;
  padding: 1rem 0;
  color: #d6e0e2;
  font-size: clamp(0.82rem, 0.98vw, 1rem);
  font-weight: 580;
  line-height: 1.4;
}

.signal-map li:nth-child(even) { transform: translateX(1.3rem); }
.signal-map li:nth-child(3n) { transform: translateX(-0.7rem); }

.signal-map li span {
  color: var(--amber);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.signal-conclusion {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 2rem 0 2rem 2.2rem;
  border-left: 1px solid rgba(229, 174, 26, 0.52);
  color: var(--steel);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.signal-conclusion i {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: rgba(184, 197, 201, 0.34);
}

.signal-conclusion strong {
  color: var(--light);
  font-size: clamp(1.1rem, 1.8vw, 1.75rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.signals-close {
  max-width: 53ch;
  margin: clamp(2.5rem, 6vw, 6rem) 0 0 auto;
  color: var(--light);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  font-weight: 690;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.section-method { background: linear-gradient(145deg, #0b3343, #091e29 62%, #06151d); }

.section-method .section-frame { padding-block: clamp(5rem, 10vw, 11rem); }

.method-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.5rem);
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  padding: 0;
  list-style: none;
}

.method-timeline::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: 3%;
  left: 3%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 197, 201, 0.18), rgba(229, 174, 26, 0.7), rgba(184, 197, 201, 0.18));
}

.method-timeline li {
  position: relative;
  min-width: 0;
  padding-top: 4.9rem;
}

.method-timeline li:nth-child(even) { transform: translateY(2.6rem); }

.method-number {
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 197, 201, 0.56);
  font-size: clamp(3.35rem, 5vw, 5.4rem);
  font-weight: 820;
  letter-spacing: -0.11em;
  line-height: 0.7;
}

.method-timeline li::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1.73rem;
  left: 0.48rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: var(--steel-dark);
}

.method-timeline p {
  margin: 0;
  color: var(--steel);
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  line-height: 1.52;
}

.section-authority {
  background: radial-gradient(circle at 82% 24%, rgba(29, 89, 110, 0.72), transparent 28rem), linear-gradient(115deg, #0d4051, #071b24 74%);
}

.authority-feature { padding-block: clamp(6rem, 12vw, 13rem); }

.authority-monogram {
  position: absolute;
  top: 50%;
  left: max(1.5rem, 8vw);
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 197, 201, 0.2);
  font-size: clamp(14rem, 27vw, 35rem);
  font-weight: 850;
  letter-spacing: -0.14em;
  line-height: 0.7;
  pointer-events: none;
  transform: translateY(-50%);
}

.authority-copy {
  position: relative;
  width: min(62rem, 76%);
  margin-left: auto;
}

.authority-copy h2 { max-width: 16ch; }

.authority-close {
  max-width: 49ch;
  margin: 0;
  color: #d9e6e8;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 680;
  line-height: 1.42;
}

.section-offer { background: #17242d; }

.section-offer .section-frame { padding-block: clamp(5rem, 10vw, 11rem); }

.section-heading--offer { max-width: 66rem; }

.offer-ledger {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(18rem, 3fr);
  gap: clamp(1.75rem, 4vw, 5rem);
  align-items: start;
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 1px solid rgba(184, 197, 201, 0.26);
}

.offer-includes,
.offer-facts,
.offer-commitment {
  min-width: 0;
  padding-top: clamp(1.6rem, 3vw, 2.75rem);
}

.offer-includes ul,
.offer-commitment ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-includes li,
.offer-commitment li {
  position: relative;
  padding: 0.58rem 0 0.58rem 1rem;
  border-bottom: 1px solid rgba(184, 197, 201, 0.16);
  color: var(--steel);
  font-size: clamp(0.8rem, 0.9vw, 0.93rem);
  line-height: 1.4;
}

.offer-includes li::before,
.offer-commitment li::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  background: var(--amber);
}

.offer-facts {
  display: grid;
  gap: 1.6rem;
  margin: 0;
}

.offer-facts div { padding-bottom: 1.55rem; border-bottom: 1px solid rgba(184, 197, 201, 0.2); }

.offer-facts dt {
  margin-bottom: 0.55rem;
  color: var(--amber);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-facts dd {
  margin: 0;
  color: #dbe6e8;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.55;
}

.offer-commitment {
  padding-left: clamp(1.4rem, 3vw, 3.2rem);
  border-left: 1px solid rgba(229, 174, 26, 0.48);
}

.offer-price {
  margin: 0 0 1.5rem;
  color: var(--amber);
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 810;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.offer-price__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--steel);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-price__amount {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(0.22rem, 0.35vw, 0.38rem);
  white-space: nowrap;
}

.offer-price__amount strong { font: inherit; }

.offer-price__amount small {
  display: inline-block;
  font-size: clamp(0.95rem, 1.55vw, 1.3rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.offer-commitment .button { width: 100%; margin-top: 1.55rem; }

.offer-commitment > p:last-child {
  margin: 0.85rem 0 0;
  color: rgba(184, 197, 201, 0.72);
  font-size: 0.7rem;
  font-weight: 590;
  line-height: 1.45;
}

.section-manifesto {
  background: linear-gradient(102deg, #06151d, #0b2b38 54%, #06151d);
}

.manifesto-copy {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.manifesto-copy h2 {
  max-width: 14ch;
  margin: 0 0 1.4rem;
  color: var(--light);
  font-size: clamp(3.25rem, 7.2vw, 8.6rem);
  font-weight: 790;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.manifesto-copy h2 em { color: var(--amber); font-style: normal; }

.manifesto-copy > p:last-child {
  max-width: 59ch;
  margin: 0;
  color: var(--steel);
  font-size: clamp(1rem, 1.3vw, 1.32rem);
  line-height: 1.58;
}

.section-contact { background: linear-gradient(135deg, #0c3b4e, #0a2633 70%); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(16rem, 4fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: end;
  padding-block: clamp(5rem, 10vw, 11rem);
}

.contact-copy h2 { max-width: 15ch; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  margin-top: 2rem;
}

.contact-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.4rem 0;
  color: var(--light);
  font-size: 0.84rem;
  font-weight: 740;
}

.contact-email::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 1px;
  background: rgba(184, 197, 201, 0.65);
}

.contact-email span { margin-left: 0.55rem; color: var(--amber); }

.contact-data {
  display: grid;
  gap: 0.68rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-top: 2px solid var(--amber);
  background: rgba(6, 21, 29, 0.26);
  color: var(--steel);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-style: normal;
  line-height: 1.42;
}

.contact-data strong { color: var(--light); font-size: 1.06em; }
.contact-data a { width: fit-content; }
.contact-data a:hover { color: var(--amber); }

.site-footer { overflow: clip; background: #06151d; }

.footer-main {
  display: grid;
  grid-template-columns: minmax(12rem, 1.2fr) minmax(12rem, 1fr) minmax(11rem, 0.8fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.footer-brand {
  position: relative;
  width: min(15rem, 100%);
  isolation: isolate;
}

.footer-brand::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -40% -28%;
  background: radial-gradient(ellipse, rgba(185, 207, 216, 0.44), rgba(116, 158, 177, 0.22) 45%, transparent 78%);
  filter: blur(0.4rem);
}

.footer-brand img { position: relative; z-index: 1; width: 100%; height: auto; }

.footer-main nav,
.footer-main address {
  display: grid;
  gap: 0.7rem;
  color: var(--steel);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.45;
}

.footer-main nav a,
.footer-main address a { width: fit-content; }
.footer-main nav a:hover,
.footer-main address a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0 1.6rem;
  border-top: 1px solid rgba(184, 197, 201, 0.16);
  color: rgba(184, 197, 201, 0.55);
  font-size: 0.69rem;
  line-height: 1.45;
}

.footer-bottom p { max-width: 44rem; margin: 0; }

/* El contenido esencial del cuerpo permanece visible aunque el observador no llegue a activarse. */
.js .page-section .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .section-intro .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 681px) {
  .section-intro .section-shell {
    padding-bottom: clamp(4rem, 6vw, 7rem);
  }
}

@media (max-width: 1024px) {
  .outcome-path { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .outcome-path__item:nth-child(n) { grid-column: auto; margin-top: 0; }
  .outcome-path::before { right: 16%; left: 16%; }
  .audience-layout { gap: clamp(2rem, 5vw, 4rem); }
  .signal-layout { grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.65fr); }
  .method-timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 4rem; }
  .method-timeline::before { display: none; }
  .method-timeline li:nth-child(even) { transform: none; }
  .offer-ledger { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .offer-commitment { grid-column: span 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.25rem 2.5rem; }
  .offer-commitment .offer-price { grid-column: 1; grid-row: 1; }
  .offer-commitment ul { grid-column: 2; grid-row: 1 / span 2; }
  .offer-commitment .button { grid-column: 1; grid-row: 2; margin: 0; }
  .offer-commitment > p:last-child { grid-column: 1; grid-row: 3; margin: 0; }
}

@media (max-width: 680px) {
  .page-section { scroll-margin-top: calc(var(--header-height) + 0.7rem); }
  .section-heading h2,
  .audience-copy h2,
  .authority-copy h2,
  .contact-copy h2 { font-size: clamp(2.25rem, 10vw, 3.45rem); }
  .section-intro { padding-bottom: 4.5rem; }
  .outcome-path { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 2.5rem; }
  .outcome-path::before { top: 1.2rem; bottom: 2rem; left: 1.2rem; width: 1px; height: auto; background: linear-gradient(180deg, rgba(229, 174, 26, 0.7), rgba(184, 197, 201, 0.16), transparent); }
  .outcome-path__item { grid-template-columns: 3.15rem minmax(0, 1fr); margin: 0 !important; padding: 0 0 1.6rem; border-top: 0; }
  .outcome-path__item:last-child { padding-bottom: 0; }
  .outcome-path__number { width: 2.4rem; height: 2.4rem; }
  .audience-layout { grid-template-columns: 1fr; padding-block: 4.5rem; }
  .audience-visual { min-height: min(28rem, 77vw); order: 2; }
  .audience-copy { order: 1; }
  .section-signals .section-frame,
  .section-method .section-frame,
  .section-offer .section-frame { padding-block: 4.5rem; }
  .signal-layout { grid-template-columns: 1fr; gap: 2.25rem; margin-top: 2.75rem; }
  .signal-map { grid-template-columns: 1fr; gap: 0; }
  .signal-map::before { top: 1rem; right: auto; bottom: 1rem; left: 1.2rem; }
  .signal-map li { grid-template-columns: 2.6rem minmax(0, 1fr); padding: 0.75rem 0; transform: none !important; font-size: 0.84rem; }
  .signal-conclusion { display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem; padding: 1.1rem 0; border-top: 1px solid rgba(229, 174, 26, 0.52); border-left: 0; font-size: 0.55rem; }
  .signal-conclusion i { width: 1.25rem; }
  .signal-conclusion strong { width: 100%; padding-top: 0.35rem; font-size: 0.94rem; }
  .signals-close { margin-top: 2.75rem; font-size: 1.05rem; }
  .method-timeline { grid-template-columns: 1fr; gap: 0; margin-top: 3rem; padding-left: 0; }
  .method-timeline::before { display: block; top: 1.85rem; right: auto; bottom: 2rem; left: 0.82rem; width: 1px; height: auto; background: linear-gradient(180deg, rgba(229, 174, 26, 0.68), rgba(184, 197, 201, 0.18), transparent); }
  .method-timeline li { display: grid; grid-template-columns: 5.2rem minmax(0, 1fr); gap: 0.7rem; padding: 0 0 1.8rem; }
  .method-timeline li::before { top: 1.55rem; left: 0.48rem; }
  .method-number { position: static; font-size: 3.25rem; line-height: 0.84; }
  .method-timeline h3 { margin-top: 0.45rem; }
  .authority-feature { padding-block: 5rem; }
  .authority-monogram { top: 28%; left: 0.2rem; font-size: 13rem; opacity: 0.66; }
  .authority-copy { width: 100%; }
  .offer-ledger { grid-template-columns: 1fr; gap: 2.3rem; margin-top: 3rem; }
  .offer-commitment { display: block; grid-column: auto; padding-left: 0; border-top: 1px solid rgba(229, 174, 26, 0.48); border-left: 0; }
  .offer-commitment .offer-price { margin-top: 1.7rem; }
  .offer-commitment .button { width: 100%; margin-top: 1.55rem; }
  .manifesto-copy { padding-block: 4.5rem; }
  .manifesto-copy h2 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4.5rem; }
  .contact-actions { display: grid; margin-top: 1.6rem; }
  .contact-actions .button { width: 100%; }
  .contact-email { width: 100%; justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 2.3rem; padding-block: 3.4rem; }
  .footer-bottom { display: grid; gap: 0.5rem; font-size: 0.69rem; }
  .js .page-section .reveal { opacity: 1; transform: none; transition: none; }
}

/* Sistema de movimiento: estados iniciales solo cuando JavaScript e IntersectionObserver están disponibles. */
html.motion-ready .hero-media {
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  transition: transform 120ms linear;
}

html.motion-ready [data-animate] {
  opacity: 0;
  transform: translateY(var(--motion-distance));
  animation: none;
}

html.motion-ready [data-animate="1"] { animation: motion-rise var(--motion-base) var(--ease-premium) 100ms forwards; }
html.motion-ready [data-animate="3"] { animation: motion-rise var(--motion-base) var(--ease-premium) 390ms forwards; }
html.motion-ready [data-animate="4"] { animation: motion-rise var(--motion-base) var(--ease-premium) 510ms forwards; }
html.motion-ready [data-animate="5"] { animation: motion-rise var(--motion-base) var(--ease-premium) 630ms forwards; }
html.motion-ready [data-animate="6"] { animation: motion-rise var(--motion-slow) var(--ease-premium) 760ms forwards; }

html.motion-ready [data-animate="1"] span {
  display: inline-block;
  transform: scaleX(0);
  transform-origin: left;
  animation: line-grow 720ms var(--ease-premium) 180ms forwards;
}

html.motion-ready [data-animate="2"] {
  transform: none;
  clip-path: inset(0 0 100% 0);
  animation: hero-title-reveal 900ms var(--ease-premium) 220ms forwards;
}

html.motion-ready .hero-media img { animation: hero-image 1280ms var(--ease-premium) both; }
html.motion-ready .hero-actions .button span,
html.motion-ready .secondary-link span { transition: transform var(--motion-fast) ease; }
html.motion-ready .hero-actions a:hover span,
html.motion-ready .hero-actions a:focus-visible span { transform: translate(0.22rem, -0.16rem); }

@keyframes motion-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-title-reveal { to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes hero-image { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes line-grow { to { transform: scaleX(1); } }
@keyframes marker-flash { 0%, 100% { box-shadow: none; } 45% { box-shadow: 0 0 0 0.5rem rgba(229, 174, 26, 0.13); } }

html.motion-ready [data-motion-section] .reveal,
html.motion-ready [data-motion-section] [data-motion="what-marker"] {
  opacity: 0;
  translate: 0 var(--motion-distance);
  transition: opacity var(--motion-base) var(--ease-premium), translate var(--motion-base) var(--ease-premium), clip-path var(--motion-base) var(--ease-premium);
}

html.motion-ready [data-motion-section].is-in-view .reveal,
html.motion-ready [data-motion-section].is-in-view [data-motion="what-marker"] {
  opacity: 1;
  translate: 0 0;
}

/* Qué hacemos: una pista que enlaza 01, 02 y 03. */
html.motion-ready .outcome-path::before { transform: scaleX(0); transform-origin: left; transition: transform 900ms var(--ease-premium) 160ms; }
html.motion-ready [data-motion-section="what"].is-in-view .outcome-path::before { transform: scaleX(1); }
html.motion-ready .outcome-path__item:nth-child(1) { transition-delay: 180ms; }
html.motion-ready .outcome-path__item:nth-child(2) { transition-delay: calc(180ms + var(--motion-stagger)); }
html.motion-ready .outcome-path__item:nth-child(3) { transition-delay: calc(180ms + (var(--motion-stagger) * 2)); }
html.motion-ready [data-motion-section="what"].is-in-view .outcome-path__item .outcome-path__number { animation: marker-flash 620ms var(--ease-premium) both; }
html.motion-ready [data-motion-section="what"].is-in-view .outcome-path__item:nth-child(2) .outcome-path__number { animation-delay: var(--motion-stagger); }
html.motion-ready [data-motion-section="what"].is-in-view .outcome-path__item:nth-child(3) .outcome-path__number { animation-delay: calc(var(--motion-stagger) * 2); }

/* Para quién: contraste entre plano de planta y perfil objetivo. */
html.motion-ready .audience-visual { clip-path: inset(0 0 0 100%); scale: 1.02; transition: opacity 700ms var(--ease-premium), translate 700ms var(--ease-premium), clip-path 800ms var(--ease-premium), scale 800ms var(--ease-premium); }
html.motion-ready [data-motion-section="audience"].is-in-view .audience-visual { clip-path: inset(0 0 0 0); scale: 1; }
html.motion-ready .audience-copy { transition-delay: 130ms; }
html.motion-ready .audience-criteria li { opacity: 0.55; transition: opacity 420ms var(--ease-premium), color 420ms var(--ease-premium); }
html.motion-ready [data-motion-section="audience"].is-in-view .audience-criteria li { opacity: 1; }
html.motion-ready [data-motion-section="audience"].is-in-view .audience-criteria li:nth-child(2) { transition-delay: 75ms; }
html.motion-ready [data-motion-section="audience"].is-in-view .audience-criteria li:nth-child(3) { transition-delay: 150ms; }
html.motion-ready [data-motion-section="audience"].is-in-view .audience-criteria li:nth-child(4) { transition-delay: 225ms; }
html.motion-ready [data-motion-section="audience"].is-in-view .audience-criteria li:nth-child(5) { transition-delay: 300ms; }

/* Señales: acumulación por tandas y conclusión final. */
html.motion-ready .signal-map::before { transform: scaleY(0); transform-origin: top; transition: transform 820ms var(--ease-premium) 120ms; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map::before { transform: scaleY(1); }
html.motion-ready .signal-map li { opacity: 0; translate: 0 1.3rem; transition: opacity 540ms var(--ease-premium), translate 540ms var(--ease-premium), color 360ms ease; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li { opacity: 1; translate: 0 0; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(2),
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(3) { transition-delay: 85ms; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(4),
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(5) { transition-delay: 170ms; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(6),
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(7) { transition-delay: 255ms; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-map li:nth-child(8) { transition-delay: 340ms; }
html.motion-ready .signal-conclusion { clip-path: inset(0 100% 0 0); transition: opacity 600ms var(--ease-premium) 380ms, translate 600ms var(--ease-premium) 380ms, clip-path 600ms var(--ease-premium) 380ms; }
html.motion-ready [data-motion-section="signals"].is-in-view .signal-conclusion { clip-path: inset(0 0 0 0); }

/* Método: la única escena ligada al avance real del scroll. */
.section-method { --method-progress: 0; }
html.motion-ready .method-timeline::after { content: ""; position: absolute; z-index: 0; top: 2.1rem; right: 3%; left: 3%; height: 2px; background: var(--amber); transform: scaleX(var(--method-progress)); transform-origin: left; }
html.motion-ready .section-method .method-timeline li { opacity: 0; translate: 0 1.55rem; transition: opacity 560ms var(--ease-premium), translate 560ms var(--ease-premium); }
html.motion-ready .section-method .method-timeline li.is-active { opacity: 1; translate: 0 0; }
html.motion-ready .method-timeline li::before { transition: background var(--motion-fast) ease, box-shadow 420ms var(--ease-premium), border-color var(--motion-fast) ease; }
html.motion-ready .method-number { transition: color 440ms var(--ease-premium), -webkit-text-stroke 440ms var(--ease-premium); }
html.motion-ready .method-timeline li.is-active::before { background: var(--amber); border-color: #f4ce62; box-shadow: 0 0 0 0.48rem rgba(229, 174, 26, 0.13); }
html.motion-ready .method-timeline li.is-active .method-number { color: rgba(229, 174, 26, 0.22); -webkit-text-stroke-color: rgba(229, 174, 26, 0.9); }

/* Autoridad: cifra técnica, titular en máscara y cierre subrayado. */
html.motion-ready .authority-monogram { opacity: 0; transform: translateY(calc(-50% + 1.5rem)); transition: opacity 820ms var(--ease-premium), transform 900ms var(--ease-premium); }
html.motion-ready [data-motion-section="authority"].is-in-view .authority-monogram { opacity: 1; transform: translateY(calc(-50% + var(--authority-parallax, 0px))); }
html.motion-ready .authority-copy h2 { clip-path: inset(0 0 100% 0); transition: clip-path 800ms var(--ease-premium) 130ms; }
html.motion-ready [data-motion-section="authority"].is-in-view .authority-copy h2 { clip-path: inset(0 0 0 0); }
html.motion-ready .authority-close { position: relative; padding-top: 1.25rem; }
html.motion-ready .authority-close::before { content: ""; position: absolute; top: 0; left: 0; width: min(11rem, 70%); height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 620ms var(--ease-premium) 440ms; }
html.motion-ready [data-motion-section="authority"].is-in-view .authority-close::before { transform: scaleX(1); }

/* Oferta: lectura en el orden de decisión, sin contadores ni rebotes. */
html.motion-ready .offer-ledger { position: relative; }
html.motion-ready .offer-ledger::before { content: ""; position: absolute; top: -1px; left: 0; width: 100%; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 820ms var(--ease-premium) 110ms; }
html.motion-ready [data-motion-section="offer"].is-in-view .offer-ledger::before { transform: scaleX(1); }
html.motion-ready .offer-includes { transition-delay: 130ms; }
html.motion-ready .offer-facts { transition-delay: 240ms; }
html.motion-ready .offer-commitment { transition-delay: 350ms; }
html.motion-ready .offer-price { clip-path: inset(0 0 100% 0); transition: clip-path 700ms var(--ease-premium) 470ms; }
html.motion-ready [data-motion-section="offer"].is-in-view .offer-price { clip-path: inset(0 0 0 0); }
html.motion-ready .offer-commitment .button { position: relative; overflow: hidden; }
html.motion-ready .offer-commitment .button::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.34) 50%, transparent 62%); transform: translateX(-135%); pointer-events: none; }
html.motion-ready [data-motion-section="offer"].is-in-view .offer-commitment .button::after { animation: cta-sweep 820ms var(--ease-premium) 820ms both; }
@keyframes cta-sweep { to { transform: translateX(135%); } }

/* Manifiesto y CTA: dos tiempos de lectura y cierre humano. */
html.motion-ready .manifesto-copy h2 span,
html.motion-ready .manifesto-copy h2 em { display: block; clip-path: inset(0 0 100% 0); transition: clip-path 720ms var(--ease-premium); }
html.motion-ready .manifesto-copy h2 em { transition-delay: 150ms; }
html.motion-ready [data-motion-section="manifesto"].is-in-view .manifesto-copy h2 span,
html.motion-ready [data-motion-section="manifesto"].is-in-view .manifesto-copy h2 em { clip-path: inset(0 0 0 0); }
html.motion-ready .manifesto-copy::after { content: ""; display: block; width: min(16rem, 46%); height: 2px; margin-top: 2.2rem; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 620ms var(--ease-premium) 350ms; }
html.motion-ready [data-motion-section="manifesto"].is-in-view .manifesto-copy::after { transform: scaleX(1); }
html.motion-ready .contact-data { transition-delay: 180ms; }
html.motion-ready .contact-actions > * { opacity: 0; translate: 0 1rem; transition: opacity 520ms var(--ease-premium), translate 520ms var(--ease-premium); }
html.motion-ready [data-motion-section="contact"].is-in-view .contact-actions > * { opacity: 1; translate: 0 0; }
html.motion-ready [data-motion-section="contact"].is-in-view .contact-actions > *:nth-child(2) { transition-delay: 120ms; }

/* Footer: cierre compacto, con logo original y halo localizado. */
.footer-main { padding-block: clamp(2.15rem, 4.4vw, 4.4rem); }
.footer-brand { width: min(16.25rem, 100%); }
.footer-brand::before {
  inset: -58% -42%;
  background: radial-gradient(ellipse at 47% 52%, rgba(185, 207, 216, 0.8) 0 21%, rgba(116, 158, 177, 0.54) 45%, rgba(49, 92, 112, 0.22) 68%, transparent 86%);
  filter: blur(0.72rem);
}
html.motion-ready .site-footer .footer-brand,
html.motion-ready .site-footer .footer-main nav,
html.motion-ready .site-footer .footer-main address { opacity: 0; translate: 0 1.25rem; transition: opacity 620ms var(--ease-premium), translate 620ms var(--ease-premium); }
html.motion-ready .site-footer.is-in-view .footer-brand,
html.motion-ready .site-footer.is-in-view .footer-main nav,
html.motion-ready .site-footer.is-in-view .footer-main address { opacity: 1; translate: 0 0; }
html.motion-ready .site-footer.is-in-view .footer-main nav { transition-delay: 110ms; }
html.motion-ready .site-footer.is-in-view .footer-main address { transition-delay: 220ms; }
html.motion-ready .footer-bottom { position: relative; border-top-color: transparent; }
html.motion-ready .footer-bottom::before { content: ""; position: absolute; top: -1px; left: 0; width: 100%; height: 1px; background: rgba(184, 197, 201, 0.38); transform: scaleX(0); transform-origin: left; transition: transform 720ms var(--ease-premium) 300ms; }
html.motion-ready .site-footer.is-in-view .footer-bottom::before { transform: scaleX(1); }
html.motion-ready .footer-bottom p { opacity: 0; translate: 0 0.7rem; transition: opacity 520ms var(--ease-premium) 430ms, translate 520ms var(--ease-premium) 430ms; }
html.motion-ready .site-footer.is-in-view .footer-bottom p { opacity: 1; translate: 0 0; }

/* Compactación solicitada y titulares moderados, sin tocar el hero. */
.section-signals .section-frame,
.section-method .section-frame,
.section-offer .section-frame { padding-block: clamp(4rem, 7.5vw, 8rem); }
.section-method .method-timeline { margin-top: clamp(3rem, 5.5vw, 5.5rem); }
.authority-feature { padding-block: clamp(4.5rem, 8.5vw, 9rem); }
.contact-layout { padding-block: clamp(4rem, 7.5vw, 8rem); }
.section-authority .authority-copy h2,
.section-offer .section-heading h2,
.section-contact .contact-copy h2 { font-size: clamp(2.4rem, 4.75vw, 5.55rem); }
.manifesto-copy h2 { font-size: clamp(3rem, 6.5vw, 7.75rem); }

@media (max-width: 680px) {
  html.motion-ready [data-motion-section] .reveal,
  html.motion-ready [data-motion-section] [data-motion="what-marker"] { translate: 0 var(--motion-mobile-distance); transition-duration: 480ms; }
  html.motion-ready .outcome-path::before { transform: scaleY(0); transform-origin: top; }
  html.motion-ready [data-motion-section="what"].is-in-view .outcome-path::before { transform: scaleY(1); }
  html.motion-ready .audience-visual { clip-path: inset(0 0 100% 0); }
  html.motion-ready .signal-map li { translate: 0 0.8rem; transition-duration: 440ms; }
  html.motion-ready .method-timeline::after { top: 1.85rem; right: auto; bottom: 2rem; left: 0.82rem; width: 2px; height: auto; transform: scaleY(var(--method-progress)); transform-origin: top; }
  html.motion-ready .section-method .method-timeline li { translate: 0 1rem; transition-duration: 460ms; }
  html.motion-ready .authority-monogram { transform: translateY(1rem); }
  html.motion-ready [data-motion-section="authority"].is-in-view .authority-monogram { transform: translateY(0); }
  .section-signals .section-frame,
  .section-method .section-frame,
  .section-offer .section-frame,
  .contact-layout { padding-block: 3.85rem; }
  .authority-feature { padding-block: 4.1rem; }
  .section-method .method-timeline { margin-top: 2.7rem; }
  .section-authority .authority-copy h2,
  .section-offer .section-heading h2,
  .section-contact .contact-copy h2 { font-size: clamp(2.1rem, 9.2vw, 3.1rem); }
  .manifesto-copy h2 { font-size: clamp(2.72rem, 12vw, 4.2rem); }
  .footer-main { gap: 2rem; padding-block: 2.1rem; }
  .footer-brand { width: min(15.25rem, 100%); }
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  html.motion-ready .hero-media { transform: none; transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  html.motion-ready *,
  html.motion-ready *::before,
  html.motion-ready *::after {
    animation: none !important;
    transition: none !important;
  }
  html.motion-ready [data-animate],
  html.motion-ready [data-motion-section] .reveal,
  html.motion-ready [data-motion-section] [data-motion="what-marker"],
  html.motion-ready .signal-map li,
  html.motion-ready .section-method .method-timeline li,
  html.motion-ready .site-footer .footer-brand,
  html.motion-ready .site-footer .footer-main nav,
  html.motion-ready .site-footer .footer-main address,
  html.motion-ready .footer-bottom p,
  html.motion-ready .contact-actions > * {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    clip-path: none !important;
  }
  html.motion-ready .method-timeline::after,
  html.motion-ready .outcome-path::before,
  html.motion-ready .signal-map::before,
  html.motion-ready .offer-ledger::before,
  html.motion-ready .authority-close::before,
  html.motion-ready .manifesto-copy::after,
  html.motion-ready .footer-bottom::before { transform: scale(1) !important; }
}

/* Motion 9: coreografía industrial visible, estable y dependiente del recorrido. */
html.motion-9 {
  --motion-impact: 1120ms;
  --motion-stage: 840ms;
  --motion-glow: rgba(229, 174, 26, 0.34);
}

html.motion-9 .hero-media {
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.018);
  transition: transform 85ms linear;
}

html.motion-9 .technical-layer {
  transform: translate3d(var(--hero-tech-shift, 0px), var(--hero-tech-y-shift, 0px), 0);
  transition: transform 90ms linear;
}

html.motion-9 .technical-layer::before,
html.motion-9 .technical-layer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

html.motion-9 .technical-layer::before {
  top: 31%;
  right: 8%;
  width: min(34vw, 34rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 174, 26, 0.84), transparent);
  transform: scaleX(0);
  transform-origin: right;
  animation: motion9-technical-line 1.35s var(--ease-premium) 620ms forwards;
}

html.motion-9 .technical-layer::after {
  top: 17%;
  right: 9%;
  width: min(26vw, 26rem);
  height: 26%;
  border-top: 1px solid rgba(184, 197, 201, 0.2);
  border-right: 1px solid rgba(184, 197, 201, 0.2);
  opacity: 0;
  transform: translate3d(2rem, 0, 0);
  animation: motion9-tech-plane 1.2s var(--ease-premium) 780ms forwards;
}

html.motion-9 .hero::before {
  opacity: 0.25;
  transform: translate3d(var(--hero-light-shift, 0px), 0, 0);
  transition: transform 90ms linear, opacity 600ms var(--ease-premium);
}

html.motion-9 .hero::after {
  transform: scaleY(0);
  transform-origin: top;
  animation: motion9-hero-rail 1.15s var(--ease-line) 210ms forwards;
}

html.motion-9 [data-animate="2"] {
  animation-duration: 1.04s;
  animation-delay: 240ms;
}

html.motion-9 [data-animate="3"] { animation-delay: 490ms; }
html.motion-9 [data-animate="4"] { animation-delay: 640ms; }
html.motion-9 [data-animate="5"] { animation-delay: 800ms; }
html.motion-9 [data-animate="6"] { animation-delay: 920ms; }

html.motion-9 .hero-media img {
  animation: motion9-hero-image 1.48s var(--ease-premium) both;
}

html.motion-9 .hero-actions .button-primary {
  animation: motion9-cta-arrival 760ms var(--ease-premium) 860ms both;
}

html.motion-9 .authority-rail {
  clip-path: inset(0 100% 0 0);
  animation: motion9-rail-reveal 1s var(--ease-premium) 1.02s forwards;
}

html.motion-9 .authority-item {
  opacity: 0;
  translate: 0 1.6rem;
  animation: motion9-rail-item 660ms var(--ease-premium) forwards;
}

html.motion-9 .authority-item:nth-child(1) { animation-delay: 1.13s; }
html.motion-9 .authority-item:nth-child(2) { animation-delay: 1.29s; }
html.motion-9 .authority-item:nth-child(3) { animation-delay: 1.45s; }

html.motion-9 .authority-item strong {
  transition: color 240ms ease, scale 340ms var(--ease-premium), text-shadow 340ms var(--ease-premium);
}

html.motion-9 .authority-item:hover strong {
  color: var(--amber);
  scale: 1.08;
  text-shadow: 0 0 1.35rem rgba(229, 174, 26, 0.32);
}

@keyframes motion9-hero-image {
  from { opacity: 0; transform: scale(1.075); }
  62% { opacity: 1; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes motion9-hero-rail { to { transform: scaleY(1); } }
@keyframes motion9-technical-line { to { transform: scaleX(1); } }
@keyframes motion9-tech-plane { to { opacity: 0.82; transform: translate3d(0, 0, 0); } }
@keyframes motion9-cta-arrival { from { opacity: 0; transform: translate3d(0, 2.6rem, 0) scale(0.96); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes motion9-rail-reveal { to { clip-path: inset(0 0 0 0); } }
@keyframes motion9-rail-item { to { opacity: 1; translate: 0 0; } }

/* Transiciones entre tramos: misma gramática, cinco gestos diferentes. */
html.motion-9 .section-intro::after,
html.motion-9 .section-audience::after,
html.motion-9 .section-signals::after,
html.motion-9 .section-method::after,
html.motion-9 .section-offer::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  height: 2px;
  pointer-events: none;
}

html.motion-9 .section-intro::after {
  background: linear-gradient(90deg, var(--amber), rgba(229, 174, 26, 0.08) 70%, transparent);
  transform: scaleX(0);
  transform-origin: left;
}

html.motion-9 .section-intro.is-in-view::after {
  animation: motion9-bridge 1.05s var(--ease-line) 760ms forwards;
}

html.motion-9 .section-audience::after {
  right: auto;
  left: 12%;
  width: min(38vw, 36rem);
  background: linear-gradient(90deg, transparent, rgba(184, 197, 201, 0.6), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
}

html.motion-9 .section-audience.is-in-view::after { animation: motion9-bridge 920ms var(--ease-line) 560ms forwards; }

html.motion-9 .section-signals::after {
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--amber), transparent);
  transform: scaleY(0);
  transform-origin: bottom;
}

html.motion-9 .section-signals.is-in-view::after { animation: motion9-rise-bridge 1.05s var(--ease-line) 760ms forwards; }

html.motion-9 .section-method::after {
  right: 12%;
  left: auto;
  width: min(32vw, 30rem);
  background: linear-gradient(90deg, transparent, var(--amber), rgba(184, 197, 201, 0.22));
  transform: scaleX(0);
  transform-origin: right;
}

html.motion-9 .section-method.is-in-view::after { animation: motion9-bridge 1s var(--ease-line) 680ms forwards; }

html.motion-9 .section-offer::after {
  right: 0;
  left: 0;
  background: linear-gradient(90deg, transparent 8%, var(--amber) 48%, transparent 88%);
  transform: scaleX(0);
}

html.motion-9 .section-offer.is-in-view::after { animation: motion9-bridge 1.1s var(--ease-line) 780ms forwards; }

@keyframes motion9-bridge { to { transform: scaleX(1); } }
@keyframes motion9-rise-bridge { to { transform: scaleY(1); } }

/* Qué hacemos: el estado activo responde al progreso real de la sección. */
html.motion-9 .section-intro__copy h2 {
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--motion-impact) var(--ease-premium) 120ms;
}

html.motion-9 .section-intro.is-in-view .section-intro__copy h2 { clip-path: inset(0 0 0 0); }

html.motion-9 .outcome-path::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 197, 201, 0.15), var(--amber) 42%, #f6cf61 58%, rgba(229, 174, 26, 0.2));
  box-shadow: 0 0 1.3rem rgba(229, 174, 26, 0.32);
  transform: scaleX(var(--what-progress, 0)) !important;
  transition: none;
}

html.motion-9 .outcome-path__item {
  transition: border-color 420ms var(--ease-premium), background 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium);
}

html.motion-9 .outcome-path__item::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 0 1.2rem rgba(229, 174, 26, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 540ms var(--ease-line);
}

html.motion-9 .outcome-path__item.is-active {
  border-color: rgba(229, 174, 26, 0.68);
  background: linear-gradient(90deg, rgba(229, 174, 26, 0.09), transparent 55%);
  box-shadow: 0 1.1rem 2.3rem rgba(0, 0, 0, 0.11);
}

html.motion-9 .outcome-path__item.is-active::after { transform: scaleX(1); }
html.motion-9 .outcome-path__number { transition: background 360ms var(--ease-premium), color 360ms var(--ease-premium), scale 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium); }
html.motion-9 .outcome-path__item.is-active .outcome-path__number { background: var(--amber); color: var(--night); scale: 1.16; box-shadow: 0 0 0 0.52rem rgba(229, 174, 26, 0.16), 0 0 1.7rem rgba(229, 174, 26, 0.45); }
html.motion-9 .outcome-path__item.is-active h3 { color: #fff8dd; }

/* Para quién: máscara, capa de exploración y grupos de criterio. */
html.motion-9 .audience-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--amber);
  box-shadow: 0 0 1.8rem rgba(229, 174, 26, 0.62);
  transform: translateX(-110%);
  pointer-events: none;
}

html.motion-9 .section-audience.is-in-view .audience-visual::before { animation: motion9-scan-x 1.22s var(--ease-premium) 480ms forwards; }
html.motion-9 .audience-copy h2 { clip-path: inset(0 0 100% 0); transition: clip-path 900ms var(--ease-premium) 230ms; }
html.motion-9 .section-audience.is-in-view .audience-copy h2 { clip-path: inset(0 0 0 0); }
html.motion-9 .audience-criteria li { position: relative; transition: opacity 360ms var(--ease-premium), translate 480ms var(--ease-premium), background 360ms var(--ease-premium), padding-left 360ms var(--ease-premium); }
html.motion-9 .audience-criteria li:nth-child(-n+2) { translate: -1.3rem 0; }
html.motion-9 .audience-criteria li:nth-child(n+3) { translate: 1.3rem 0; }
html.motion-9 .section-audience.is-in-view .audience-criteria li { translate: 0 0; background: linear-gradient(90deg, rgba(229, 174, 26, 0.08), transparent 72%); padding-left: 0.5rem; }
@keyframes motion9-scan-x { 65% { transform: translateX(32rem); } to { transform: translateX(110%); opacity: 0; } }

/* Señales: oleadas, eje activo y capa de presión. */
html.motion-9 .section-signals::before {
  transform: translate3d(0, var(--signals-depth, 0px), 0) scale(1.08);
  transition: transform 120ms linear;
}

html.motion-9 .signal-map::before {
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(184, 197, 201, 0.4) 18%, var(--amber) 55%, transparent);
  box-shadow: 0 0 1.2rem rgba(229, 174, 26, 0.3);
  transform: scaleY(var(--signals-progress, 0)) !important;
  transition: none;
}

html.motion-9 .signal-map li {
  transition: opacity 420ms var(--ease-premium), translate 420ms var(--ease-premium), color 320ms ease, background 320ms ease, padding-left 320ms ease;
}

html.motion-9 .signal-map li.is-active {
  color: #f1f4f3;
  background: linear-gradient(90deg, rgba(229, 174, 26, 0.1), transparent 76%);
  padding-left: 0.55rem;
}

html.motion-9 .signal-map li.is-active span {
  color: #ffd86a;
  text-shadow: 0 0 1rem rgba(229, 174, 26, 0.6);
}

html.motion-9 .signal-conclusion {
  border-left-width: 2px;
  box-shadow: inset 1.1rem 0 2rem rgba(229, 174, 26, 0.05);
}

/* Método: clímax con pista real, nodos visibles y fondo técnico. */
html.motion-9 .section-method::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: repeating-linear-gradient(90deg, transparent 0 8.33%, rgba(184, 197, 201, 0.08) 8.33% 8.42%);
  transform: translate3d(0, 2rem, 0);
  transition: opacity 900ms var(--ease-premium), transform 1.1s var(--ease-premium);
  pointer-events: none;
}

html.motion-9 .section-method.is-in-view::before { opacity: 0.8; transform: translate3d(0, 0, 0); }
html.motion-9 .method-timeline::before { height: 2px; background: linear-gradient(90deg, rgba(184, 197, 201, 0.34), rgba(184, 197, 201, 0.16)); }
html.motion-9 .method-timeline::after { height: 3px; background: linear-gradient(90deg, var(--amber), #ffda73, var(--amber)); box-shadow: 0 0 1.4rem rgba(229, 174, 26, 0.58); }
html.motion-9 .method-timeline li { transition: opacity 560ms var(--ease-premium), translate 560ms var(--ease-premium), background 460ms var(--ease-premium); }
html.motion-9 .method-timeline li.is-active { background: linear-gradient(180deg, rgba(229, 174, 26, 0.11), transparent 68%); }
html.motion-9 .method-timeline li.is-active::before { box-shadow: 0 0 0 0.78rem rgba(229, 174, 26, 0.14), 0 0 2.2rem rgba(229, 174, 26, 0.58); }
html.motion-9 .method-timeline li.is-active .method-number { scale: 1.14; color: rgba(229, 174, 26, 0.32); -webkit-text-stroke-width: 1.5px; }
html.motion-9 .method-timeline li h3 { transition: translate 440ms var(--ease-premium), color 440ms var(--ease-premium); }
html.motion-9 .method-timeline li p { transition: opacity 520ms var(--ease-premium) 90ms, translate 520ms var(--ease-premium) 90ms; }
html.motion-9 .method-timeline li.is-active h3 { color: #fff7d5; translate: 0 -0.25rem; }
html.motion-9 .method-timeline li.is-active p { opacity: 1; translate: 0 0; }

/* Autoridad: iluminación que responde al recorrido y cierre de alto contraste. */
html.motion-9 .section-authority::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at calc(72% + var(--authority-light-shift, 0px)) 36%, rgba(229, 174, 26, 0.18), transparent 26rem);
  opacity: 0;
  transition: opacity 900ms var(--ease-premium), background-position 120ms linear;
  pointer-events: none;
}

html.motion-9 .section-authority.is-in-view::after { opacity: 1; }
html.motion-9 .authority-monogram { -webkit-text-stroke-width: 2px; text-shadow: 0 0 3.5rem rgba(116, 158, 177, 0.18); }
html.motion-9 .authority-copy > p:not(.authority-close) { translate: 2rem 0; opacity: 0; transition: opacity 680ms var(--ease-premium) 320ms, translate 680ms var(--ease-premium) 320ms; }
html.motion-9 .section-authority.is-in-view .authority-copy > p:not(.authority-close) { opacity: 1; translate: 0 0; }
html.motion-9 .authority-close { font-size: clamp(1.08rem, 1.38vw, 1.38rem); }
html.motion-9 .authority-close::before { height: 3px; width: min(16rem, 82%); box-shadow: 0 0 1.2rem rgba(229, 174, 26, 0.52); }

/* Oferta: capas legibles y marcadores en secuencia. */
html.motion-9 .offer-ledger::before { height: 3px; box-shadow: 0 0 1.25rem rgba(229, 174, 26, 0.42); }
html.motion-9 .offer-includes li,
html.motion-9 .offer-commitment li {
  opacity: 0;
  translate: -1.4rem 0;
  transition: opacity 430ms var(--ease-premium), translate 430ms var(--ease-premium), border-color 320ms ease;
}

html.motion-9 .section-offer.is-in-view .offer-includes li,
html.motion-9 .section-offer.is-in-view .offer-commitment li { opacity: 1; translate: 0 0; border-color: rgba(229, 174, 26, 0.32); }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(2), html.motion-9 .section-offer.is-in-view .offer-commitment li:nth-child(2) { transition-delay: 70ms; }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(3), html.motion-9 .section-offer.is-in-view .offer-commitment li:nth-child(3) { transition-delay: 140ms; }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(4), html.motion-9 .section-offer.is-in-view .offer-commitment li:nth-child(4) { transition-delay: 210ms; }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(5) { transition-delay: 280ms; }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(6) { transition-delay: 350ms; }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(7) { transition-delay: 420ms; }
html.motion-9 .section-offer.is-in-view .offer-includes li:nth-child(8) { transition-delay: 490ms; }
html.motion-9 .offer-facts div { opacity: 0; translate: 0 1.5rem; transition: opacity 620ms var(--ease-premium), translate 620ms var(--ease-premium), border-color 420ms ease; }
html.motion-9 .section-offer.is-in-view .offer-facts div { opacity: 1; translate: 0 0; border-color: rgba(229, 174, 26, 0.42); }
html.motion-9 .section-offer.is-in-view .offer-facts div:nth-child(2) { transition-delay: 150ms; }
html.motion-9 .section-offer.is-in-view .offer-facts div:nth-child(3) { transition-delay: 300ms; }
html.motion-9 .offer-commitment { box-shadow: -1.2rem 0 2.8rem rgba(0, 0, 0, 0.12); }
html.motion-9 .offer-price { font-size: clamp(3.2rem, 5vw, 5.6rem); text-shadow: 0 0 1.8rem rgba(229, 174, 26, 0.22); }
html.motion-9 .offer-commitment .button { transition: transform 240ms var(--ease-premium), box-shadow 240ms var(--ease-premium), background 240ms ease; }

/* Manifiesto: dos máscaras, cruce técnico y salida clara al CTA. */
html.motion-9 .section-manifesto::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -8%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 174, 26, 0.9), transparent);
  transform: translate3d(34%, 0, 0) rotate(-6deg);
  opacity: 0;
  pointer-events: none;
}

html.motion-9 .section-manifesto.is-in-view::before { animation: motion9-manifesto-line 1.1s var(--ease-premium) 420ms forwards; }
html.motion-9 .section-manifesto { background-position: 0 0; transition: background-position 1s var(--ease-premium); }
html.motion-9 .section-manifesto.is-in-view { background-position: 0 -0.5rem; }
html.motion-9 .manifesto-copy > p:last-child { opacity: 0; translate: 0 1.7rem; transition: opacity 680ms var(--ease-premium) 420ms, translate 680ms var(--ease-premium) 420ms; }
html.motion-9 .section-manifesto.is-in-view .manifesto-copy > p:last-child { opacity: 1; translate: 0 0; }
@keyframes motion9-manifesto-line { 65% { opacity: 1; transform: translate3d(0, 0, 0) rotate(-6deg); } to { opacity: 0.48; transform: translate3d(-16%, 0, 0) rotate(-6deg); } }

/* CTA: planos opuestos, borde activo y acciones más físicas. */
html.motion-9 .section-contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 38rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber));
  transform: scaleX(0);
  transform-origin: right;
  pointer-events: none;
}

html.motion-9 .section-contact.is-in-view::before { animation: motion9-bridge 900ms var(--ease-line) 260ms forwards; }
html.motion-9 .contact-copy h2 { clip-path: inset(0 0 100% 0); transition: clip-path 900ms var(--ease-premium) 90ms; }
html.motion-9 .section-contact.is-in-view .contact-copy h2 { clip-path: inset(0 0 0 0); }
html.motion-9 .contact-data { translate: 2.2rem 0; box-shadow: -1.2rem 1.4rem 2.8rem rgba(0, 0, 0, 0.16), inset 0 1px rgba(229, 174, 26, 0.22); }
html.motion-9 .section-contact.is-in-view .contact-data { translate: 0 0; }
html.motion-9 .contact-data::before { content: ""; position: absolute; top: -2px; right: 0; left: 0; height: 3px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 760ms var(--ease-line) 420ms; }
html.motion-9 .section-contact.is-in-view .contact-data::before { transform: scaleX(1); }

/* Footer: halo presente y luz técnica de cierre sin placa. */
html.motion-9 .site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -8rem;
  left: -12rem;
  width: 42rem;
  height: 28rem;
  background: radial-gradient(ellipse at 38% 48%, rgba(116, 158, 177, 0.34), rgba(49, 92, 112, 0.13) 44%, transparent 72%);
  transform: translate3d(-8%, 0, 0);
  opacity: 0;
  pointer-events: none;
}

html.motion-9 .site-footer.is-in-view::before { animation: motion9-footer-light 8.5s ease-in-out 240ms both; }
html.motion-9 .footer-main,
html.motion-9 .footer-bottom { z-index: 1; }
html.motion-9 .footer-brand { scale: 0.94; transition: scale 760ms var(--ease-premium); }
html.motion-9 .site-footer.is-in-view .footer-brand { scale: 1; }
html.motion-9 .footer-brand::before { box-shadow: 0 0 4.5rem rgba(116, 158, 177, 0.22); }
@keyframes motion9-footer-light { 0% { opacity: 0; transform: translate3d(-12%, 0, 0); } 42% { opacity: 1; transform: translate3d(4%, -0.5rem, 0); } 100% { opacity: 0.72; transform: translate3d(10%, 0, 0); } }

/* Microinteracciones perceptibles y compatibles con teclado/táctil. */
html.motion-9 .button-primary,
html.motion-9 .nav-cta {
  position: relative;
  isolation: isolate;
}

html.motion-9 .button-primary:hover,
html.motion-9 .button-primary:focus-visible {
  transform: translate3d(0, -4px, 0) scale(1.015);
  box-shadow: 0 1.45rem 3rem rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 221, 117, 0.55);
}

html.motion-9 .button-primary:active,
html.motion-9 .nav-cta:active { transform: translate3d(0, 1px, 0) scale(0.985); }
html.motion-9 .button-primary span,
html.motion-9 .nav-cta span,
html.motion-9 .contact-email span,
html.motion-9 .secondary-link span { transition: transform 260ms var(--ease-premium), color 220ms ease; }
html.motion-9 .button-primary:hover span,
html.motion-9 .button-primary:focus-visible span,
html.motion-9 .nav-cta:hover span,
html.motion-9 .nav-cta:focus-visible span,
html.motion-9 .contact-email:hover span,
html.motion-9 .contact-email:focus-visible span { transform: translate3d(0.42rem, -0.22rem, 0); }
html.motion-9 .secondary-link:hover span,
html.motion-9 .secondary-link:focus-visible span { transform: translate3d(0, 0.32rem, 0); }
html.motion-9 .contact-email::after { transform: scaleX(0.45); transform-origin: left; transition: transform 300ms var(--ease-premium), background 300ms ease; }
html.motion-9 .contact-email:hover::after,
html.motion-9 .contact-email:focus-visible::after { transform: scaleX(1); background: var(--amber); }
html.motion-9 .footer-main nav a,
html.motion-9 .footer-main address a { position: relative; transition: color 240ms ease, translate 240ms var(--ease-premium); }
html.motion-9 .footer-main nav a::after,
html.motion-9 .footer-main address a::after { content: ""; position: absolute; right: 0; bottom: -0.2rem; left: 0; height: 1px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 260ms var(--ease-premium); }
html.motion-9 .footer-main nav a:hover,
html.motion-9 .footer-main nav a:focus-visible,
html.motion-9 .footer-main address a:hover,
html.motion-9 .footer-main address a:focus-visible { translate: 0.35rem 0; }
html.motion-9 .footer-main nav a:hover::after,
html.motion-9 .footer-main nav a:focus-visible::after,
html.motion-9 .footer-main address a:hover::after,
html.motion-9 .footer-main address a:focus-visible::after { transform: scaleX(1); }

@media (max-width: 1024px) {
  html.motion-9 .technical-layer::before,
  html.motion-9 .technical-layer::after { display: none; }
  html.motion-9 .section-intro::after,
  html.motion-9 .section-audience::after,
  html.motion-9 .section-method::after { right: auto; bottom: 0; left: 1.2rem; width: 2px; height: 5rem; transform: scaleY(0); transform-origin: bottom; }
  html.motion-9 .section-intro.is-in-view::after,
  html.motion-9 .section-audience.is-in-view::after,
  html.motion-9 .section-method.is-in-view::after { animation-name: motion9-rise-bridge; }
  html.motion-9 .method-timeline { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 3.2rem; padding-left: 0; }
  html.motion-9 .method-timeline::before { display: block; top: 1.85rem; right: auto; bottom: 2rem; left: 0.82rem; width: 2px; height: auto; background: linear-gradient(180deg, rgba(184, 197, 201, 0.42), rgba(184, 197, 201, 0.12)); }
  html.motion-9 .method-timeline::after { top: 1.85rem; right: auto; bottom: 2rem; left: 0.82rem; width: 3px; height: auto; transform: scaleY(var(--method-progress, 0)); transform-origin: top; }
  html.motion-9 .method-timeline li { display: grid; grid-template-columns: 5.2rem minmax(0, 1fr); gap: 0.7rem; padding: 0 0 2.2rem; }
  html.motion-9 .method-timeline li:nth-child(even) { transform: none; }
  html.motion-9 .method-timeline li::before { top: 1.55rem; left: 0.48rem; }
  html.motion-9 .method-number { position: static; font-size: clamp(3.25rem, 8vw, 4.5rem); line-height: 0.84; }
}

@media (max-width: 680px) {
  html.motion-9 .hero-media { transform: none; }
  html.motion-9 .hero::before { opacity: 0.18; transform: none; }
  html.motion-9 .authority-rail { animation-duration: 760ms; }
  html.motion-9 .authority-item { translate: 0 1rem; }
  html.motion-9 .section-intro__copy h2,
  html.motion-9 .audience-copy h2,
  html.motion-9 .contact-copy h2 { transition-duration: 650ms; }
  html.motion-9 .outcome-path::before { transform: scaleY(var(--what-progress, 0)) !important; transform-origin: top; }
  html.motion-9 .outcome-path__item.is-active .outcome-path__number { scale: 1.1; }
  html.motion-9 .audience-criteria li:nth-child(n) { translate: 0 1rem; }
  html.motion-9 .section-audience.is-in-view .audience-criteria li:nth-child(n) { translate: 0 0; }
  html.motion-9 .section-signals::before { transform: none; }
  html.motion-9 .signal-map li.is-active { padding-left: 0.25rem; }
  html.motion-9 .section-method::before { opacity: 0.32; background-size: 4rem 4rem; }
  html.motion-9 .method-timeline li { grid-template-columns: 4.8rem minmax(0, 1fr); padding-bottom: 1.9rem; }
  html.motion-9 .method-timeline li.is-active .method-number { scale: 1.08; }
  html.motion-9 .offer-includes li,
  html.motion-9 .offer-commitment li { translate: -0.8rem 0; }
  html.motion-9 .offer-price { font-size: clamp(3rem, 14vw, 4.5rem); }
  html.motion-9 .section-manifesto::before { width: 75%; }
  html.motion-9 .contact-data { translate: 0 1.3rem; }
  html.motion-9 .section-contact.is-in-view .contact-data { translate: 0 0; }
  html.motion-9 .site-footer::before { width: 30rem; height: 22rem; top: -4rem; left: -10rem; }
  html.motion-9 .button-primary:hover,
  html.motion-9 .button-primary:focus-visible { transform: translate3d(0, -2px, 0) scale(1.005); }
}

@media (prefers-reduced-motion: reduce) {
  html.motion-9 *,
  html.motion-9 *::before,
  html.motion-9 *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
  }
}
