@charset "UTF-8";

:root {
  --ink: #0a0f10;
  --ink-soft: #11191b;
  --cream: #f5f0e7;
  --cream-2: #e7dfd2;
  --sun: #f3a51c;
  --sun-hot: #ffbd36;
  --horizon: #e56d2c;
  --water: #49a8ba;
  --water-dark: #176a7a;
  --metal: #a7afb0;
  --line-dark: rgba(10, 15, 16, 0.18);
  --line-light: rgba(245, 240, 231, 0.18);
  --shell: min(88vw, 1440px);
  --header-h: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Arial Narrow", "Aptos Display", "Helvetica Neue", sans-serif;
  --body: "Aptos", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--sun) var(--ink);
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--sun-hot);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

address {
  font-style: normal;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--sun);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(108px, 13vw, 220px);
}

.page-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, transparent 0 1px, rgba(255, 255, 255, 0.1) 1px 2px),
    repeating-radial-gradient(circle at 80% 70%, transparent 0 2px, rgba(0, 0, 0, 0.08) 2px 3px);
  background-size: 9px 11px, 13px 15px;
}

.cursor-glow {
  position: fixed;
  z-index: 89;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(244, 161, 26, 0.12), rgba(244, 161, 26, 0) 68%);
  transform: translate3d(calc(var(--mouse-x, -500px) - 50%), calc(var(--mouse-y, -500px) - 50%), 0);
  transition: opacity 0.4s ease;
}

@media (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  width: 100%;
  height: var(--header-h);
  padding-inline: 3.5vw;
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s var(--ease-out),
    background-color 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(10, 15, 16, 0.88);
  border-color: var(--line-light);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand__mark {
  width: 38px;
  height: 38px;
  overflow: visible;
  fill: none;
  stroke: var(--cream);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__mark circle {
  fill: var(--sun);
  stroke: none;
}

.brand__type {
  display: grid;
  line-height: 1;
}

.brand__type strong {
  font-family: var(--display);
  font-size: 18px;
  font-stretch: condensed;
  letter-spacing: 0.02em;
}

.brand__type small {
  margin-top: 5px;
  color: rgba(245, 240, 231, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  color: rgba(245, 240, 231, 0.72);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--cream);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 46px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--sun);
  border: 1px solid var(--sun);
  font-size: 13px;
  font-weight: 750;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-cta:hover {
  color: var(--cream);
  background: transparent;
  transform: translateY(-2px);
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease-out);
}

.header-cta:hover svg,
.button:hover svg {
  transform: translate(3px, -3px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.chapter-nav {
  position: fixed;
  z-index: 70;
  top: 50%;
  right: 22px;
  display: grid;
  gap: 14px;
  padding-block: 4px;
  transform: translateY(-50%);
}

.chapter-nav__track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 1px;
  background: rgba(245, 240, 231, 0.22);
}

.chapter-nav__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--page-progress, 0) * 100%);
  background: var(--sun);
}

.chapter-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24px;
  padding-left: 34px;
  color: rgba(245, 240, 231, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.chapter-nav a::before {
  position: absolute;
  z-index: 1;
  left: 7px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(245, 240, 231, 0.45);
  border-radius: 50%;
  content: "";
  background: var(--ink);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.chapter-nav a span {
  display: none;
}

.chapter-nav a b {
  opacity: 0;
  transform: translateX(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.chapter-nav a:hover b,
.chapter-nav a.is-active b {
  opacity: 1;
  transform: translateX(0);
}

.chapter-nav a.is-active {
  color: var(--cream);
}

.chapter-nav a.is-active::before {
  background: var(--sun);
  border-color: var(--sun);
  transform: scale(1.25);
}

.chapter-nav.on-light .chapter-nav__track {
  background: rgba(10, 15, 16, 0.22);
}

.chapter-nav.on-light a {
  color: rgba(10, 15, 16, 0.48);
}

.chapter-nav.on-light a::before {
  border-color: rgba(10, 15, 16, 0.42);
  background: var(--cream);
}

.chapter-nav.on-light a.is-active {
  color: var(--ink);
}

.chapter-nav.on-light a.is-active::before {
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: -4%;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 8%), 0) scale(1.03);
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.82) contrast(1.08) brightness(0.82);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 12, 0.92) 0%, rgba(5, 10, 12, 0.68) 42%, rgba(5, 10, 12, 0.08) 78%),
    linear-gradient(0deg, rgba(5, 10, 12, 0.88) 0%, transparent 37%, rgba(5, 10, 12, 0.14) 72%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(90deg, black, transparent 62%);
}

.hero__sun {
  position: absolute;
  top: 2%;
  right: 0;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: calc(0.38 + var(--hero-shift, 0) * 0.3);
  background: radial-gradient(circle, rgba(255, 190, 72, 0.18), rgba(255, 190, 72, 0) 66%);
  transform: scale(calc(0.9 + var(--hero-shift, 0) * 0.18));
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 124px;
}

.eyebrow,
.kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: clamp(24px, 3.5vh, 48px);
  padding: 9px 12px;
  border: 1px solid rgba(245, 240, 231, 0.32);
  background: rgba(10, 15, 16, 0.22);
  backdrop-filter: blur(8px);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(244, 161, 26, 0.14);
}

.hero__title {
  max-width: 1280px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 8.1vw, 142px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.066em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  animation: hero-line-in 1.1s var(--ease-out) forwards;
}

.hero__line:nth-child(1) {
  animation-delay: 0.08s;
}

.hero__line:nth-child(2) {
  animation-delay: 0.17s;
}

.hero__line:nth-child(3) {
  animation-delay: 0.26s;
}

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

.hero__line--accent {
  color: var(--sun-hot);
  padding-left: 0.31em;
}

.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(245, 240, 231, 0.78);
}

.hero__bottom {
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  align-items: end;
  gap: clamp(32px, 7vw, 110px);
  margin-top: clamp(30px, 5vh, 72px);
  padding-left: clamp(0px, 8.5vw, 150px);
}

.hero__bottom > p {
  max-width: 500px;
  margin: 0;
  color: rgba(245, 240, 231, 0.75);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 58px;
  min-width: 220px;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.button--sun {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
  box-shadow: 0 12px 42px rgba(244, 161, 26, 0.18);
}

.button--sun:hover {
  background: var(--sun-hot);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(244, 161, 26, 0.28);
}

.text-link,
.arrow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 750;
}

.text-link::after,
.arrow-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.text-link:hover::after,
.arrow-link:hover::after {
  transform: scaleX(0.35);
}

.hero__rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 42px;
  min-height: 64px;
  padding: 0 3.5vw;
  color: rgba(245, 240, 231, 0.58);
  border-top: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.hero__scroll {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero__scroll i {
  position: relative;
  display: block;
  width: 28px;
  height: 1px;
  overflow: hidden;
  background: rgba(245, 240, 231, 0.3);
}

.hero__scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--sun);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-105%); }
  60%, 100% { transform: translateX(105%); }
}

.section-index {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(245, 240, 231, 0.5);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-index span:first-child {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.manifesto {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 45%, rgba(244, 161, 26, 0.09), transparent 26%),
    var(--ink);
}

.manifesto::after {
  position: absolute;
  right: -12vw;
  bottom: -20vw;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 240, 231, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 8vw rgba(245, 240, 231, 0.015), 0 0 0 16vw rgba(245, 240, 231, 0.012);
}

.manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 2.3fr 0.9fr;
  gap: clamp(34px, 6vw, 110px);
  align-items: start;
}

.manifesto__copy {
  padding-top: 78px;
}

.kicker {
  color: var(--sun);
}

.display-copy {
  max-width: 960px;
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.4vw, 92px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.display-copy em,
.territory h2 em {
  display: block;
  color: var(--sun-hot);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.manifesto__details {
  display: grid;
  grid-template-columns: minmax(240px, 500px) auto;
  gap: 48px;
  align-items: end;
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.manifesto__details p {
  margin: 0;
  color: rgba(245, 240, 231, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.solar-orbit {
  position: relative;
  align-self: center;
  width: min(22vw, 290px);
  aspect-ratio: 1;
  margin-top: 160px;
}

.solar-orbit svg {
  position: absolute;
  inset: 0;
  fill: none;
  stroke: rgba(245, 240, 231, 0.19);
  stroke-width: 0.6;
  animation: orbit-turn 28s linear infinite;
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

.solar-orbit__sun,
.solar-orbit__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.solar-orbit__sun {
  width: 32%;
  aspect-ratio: 1;
  background: var(--sun);
  box-shadow: inset -15px -12px 25px rgba(229, 109, 44, 0.45);
}

.solar-orbit__halo {
  width: 69%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 161, 26, 0.2), transparent 65%);
  animation: halo-pulse 3s ease-in-out infinite;
}

@keyframes halo-pulse {
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: 0.65; }
}

.solar-orbit__label {
  position: absolute;
  color: rgba(245, 240, 231, 0.55);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.solar-orbit__label--one { top: 8%; left: 8%; }
.solar-orbit__label--two { top: 48%; right: -9%; }
.solar-orbit__label--three { bottom: 5%; left: 1%; }

.solutions {
  color: var(--ink);
  background: var(--cream);
}

.solutions__header {
  display: grid;
  grid-template-columns: 0.7fr 3.2fr;
  gap: clamp(40px, 7vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.solutions .section-index {
  color: rgba(10, 15, 16, 0.48);
}

.solutions__header h2,
.territory__headline h2,
.process__header h2,
.contact h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 7.4vw, 124px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.solutions__header h2 span {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(10, 15, 16, 0.46);
}

.solution-journey {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(48px, 7vw, 120px);
  padding-bottom: 12vh;
}

.solution-stage-wrap {
  min-height: 350vh;
}

.solution-stage {
  position: sticky;
  top: 92px;
  height: calc(100svh - 124px);
  min-height: 590px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(rgba(245, 240, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 231, 0.05) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 52px 52px;
}

.solution-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 75% 20%, rgba(244, 161, 26, 0.11), transparent 36%);
}

.solution-stage__topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  padding-inline: 24px;
  color: rgba(245, 240, 231, 0.52);
  border-bottom: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.solution-stage__topline span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-stage__topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(244, 161, 26, 0.12);
}

.visual-stack {
  position: absolute;
  inset: 58px 0 0;
}

.visual-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.94) rotate(-0.8deg);
  transition:
    opacity 0.65s ease,
    transform 0.85s var(--ease-out);
}

.visual-panel.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1) rotate(0);
}

.visual-panel svg {
  width: 100%;
  height: 100%;
}

.visual-panel svg * {
  vector-effect: non-scaling-stroke;
}

.visual-panel__number {
  position: absolute;
  right: 24px;
  bottom: 15px;
  color: rgba(245, 240, 231, 0.1);
  font-family: var(--display);
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.visual-panel__caption {
  position: absolute;
  bottom: 30px;
  left: 28px;
  z-index: 2;
  color: rgba(245, 240, 231, 0.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.svg-sun {
  fill: var(--sun);
  stroke: none;
}

.svg-glow {
  fill: rgba(244, 161, 26, 0.35);
  stroke: none;
}

.energy-ray {
  fill: none;
  stroke: var(--sun-hot);
  stroke-width: 2.5;
  stroke-dasharray: 5 12;
  animation: energy-dash 1.2s linear infinite;
}

@keyframes energy-dash {
  to { stroke-dashoffset: -34; }
}

.ground-line {
  fill: none;
  stroke: rgba(245, 240, 231, 0.34);
  stroke-width: 1;
}

.panel-array,
.mini-panel {
  fill: rgba(16, 50, 68, 0.92);
  stroke: rgba(119, 189, 213, 0.74);
  stroke-width: 1.15;
}

.panel-array path:first-child,
.mini-panel path:first-child {
  stroke: var(--metal);
  stroke-width: 2;
}

.visual-panel.is-active .panel-array {
  animation: panel-arrive 1.1s var(--ease-out) both;
}

@keyframes panel-arrive {
  from { transform: translateY(34px); opacity: 0; }
}

.energy-spark circle:first-child {
  fill: var(--sun-hot);
  stroke: none;
}

.energy-spark circle:last-child {
  fill: none;
  stroke: rgba(255, 189, 54, 0.75);
  animation: spark-ring 1.6s ease-out infinite;
  transform-origin: 417px 309px;
}

@keyframes spark-ring {
  to { transform: scale(2.4); opacity: 0; }
}

.pump,
.heater {
  fill: rgba(245, 240, 231, 0.08);
  stroke: var(--metal);
  stroke-width: 2;
}

.water-flow,
.water-ripple {
  fill: none;
  stroke: var(--water);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-dasharray: 18 9;
  animation: water-run 1.3s linear infinite;
}

.water-flow--ghost {
  opacity: 0.28;
  stroke-width: 4;
  animation-duration: 1.8s;
}

@keyframes water-run {
  to { stroke-dashoffset: -54; }
}

.house {
  fill: rgba(245, 240, 231, 0.04);
  stroke: rgba(245, 240, 231, 0.35);
  stroke-width: 1.4;
}

.heat-waves {
  fill: none;
  stroke: var(--horizon);
  stroke-width: 3;
  stroke-linecap: round;
  animation: heat-rise 2s ease-in-out infinite;
}

@keyframes heat-rise {
  50% { transform: translateY(-13px); opacity: 0.45; }
}

.land {
  fill: rgba(103, 110, 77, 0.14);
  stroke: rgba(245, 240, 231, 0.28);
}

.reservoir {
  fill: #060909;
  stroke: var(--metal);
  stroke-width: 2;
}

.reservoir-water {
  fill: rgba(73, 168, 186, 0.27);
  stroke: var(--water);
  stroke-width: 1.5;
}

.water-ripple {
  stroke-width: 2;
  stroke-dasharray: 12 8;
}

.membrane-grid {
  fill: none;
  stroke: rgba(245, 240, 231, 0.14);
  stroke-width: 0.8;
}

.solution-steps {
  margin-top: -4vh;
}

.solution-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86vh;
  padding: 110px 0 90px 74px;
  border-top: 1px solid rgba(10, 15, 16, 0.16);
  opacity: 0.34;
  transition: opacity 0.45s ease;
}

.solution-step.is-active {
  opacity: 1;
}

.solution-step__number {
  position: absolute;
  top: 28px;
  left: 0;
  color: rgba(10, 15, 16, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.solution-step__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 23px;
}

.solution-step__tag {
  margin: 0 0 10px;
  color: var(--horizon);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solution-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 4.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.solution-step > p:not(.solution-step__tag) {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(10, 15, 16, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.solution-step > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: fit-content;
  min-width: 260px;
  margin-top: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.solution-step > a span {
  transition: transform 0.25s ease;
}

.solution-step > a:hover span {
  transform: translate(4px, -4px);
}

.territory {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 255, 255, 0.38), transparent 28%),
    var(--sun);
}

.territory::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    repeating-radial-gradient(ellipse at 85% 65%, transparent 0 55px, var(--ink) 56px 57px, transparent 58px 75px),
    repeating-radial-gradient(ellipse at 8% 95%, transparent 0 72px, var(--ink) 73px 74px, transparent 75px 94px);
  mask-image: linear-gradient(90deg, transparent, black 28%, black 75%, transparent);
}

.territory__sun {
  position: absolute;
  top: -19vw;
  right: -10vw;
  width: 53vw;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 15, 16, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(10, 15, 16, 0.025), 0 0 0 11vw rgba(10, 15, 16, 0.018);
}

.territory .shell {
  position: relative;
  z-index: 1;
}

.section-index--light {
  color: rgba(10, 15, 16, 0.55);
}

.territory__headline {
  display: grid;
  grid-template-columns: 0.75fr 3fr;
  gap: clamp(40px, 6vw, 110px);
  margin-top: clamp(70px, 10vw, 160px);
}

.territory .kicker {
  padding-top: 13px;
  color: rgba(10, 15, 16, 0.7);
}

.territory__headline h2 {
  margin: 0;
  max-width: 1000px;
}

.territory h2 em {
  color: var(--cream);
}

.territory__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(350px, 0.6fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
  margin-top: clamp(80px, 12vw, 190px);
}

.territory__story {
  max-width: 700px;
  padding-top: 30px;
  border-top: 1px solid rgba(10, 15, 16, 0.34);
}

.territory__story p {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(10, 15, 16, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.territory__story .territory__lead {
  max-width: 680px;
  margin-top: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.audience-pills span {
  padding: 8px 14px;
  border: 1px solid rgba(10, 15, 16, 0.45);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card {
  position: relative;
  min-height: 490px;
  padding: 28px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: 24px 24px 0 rgba(229, 109, 44, 0.46);
}

.location-card::before {
  position: absolute;
  right: 24px;
  bottom: 98px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(245, 240, 231, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 27px rgba(245, 240, 231, 0.025), 0 0 0 54px rgba(245, 240, 231, 0.02);
}

.location-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 22px;
  color: rgba(245, 240, 231, 0.5);
  border-bottom: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-card__pin {
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  background: var(--sun);
  transform: rotate(-45deg);
}

.location-card > strong {
  display: block;
  margin-top: 44px;
  font-family: var(--display);
  font-size: clamp(45px, 4.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.86;
  text-transform: uppercase;
}

.location-card > p {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: rgba(245, 240, 231, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.location-card > .location-card__hours {
  margin-top: 10px;
  color: var(--sun-hot);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.location-card__actions {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-card__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--line-light);
  font-size: 11px;
  font-weight: 750;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.location-card__actions a:first-child {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
}

.location-card__actions a:hover {
  color: var(--ink);
  background: var(--cream);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.process::before {
  position: absolute;
  top: 22%;
  left: -12vw;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 240, 231, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 9vw rgba(245, 240, 231, 0.012);
}

.process .shell {
  position: relative;
}

.process__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
  align-items: start;
  margin-top: clamp(80px, 10vw, 150px);
}

.process__header .kicker {
  max-width: 290px;
  padding-top: 15px;
  line-height: 1.7;
}

.process__header h2 {
  margin: 0;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: clamp(80px, 10vw, 150px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process__steps li {
  position: relative;
  min-height: 420px;
  padding: 30px clamp(28px, 3.2vw, 56px) 54px;
  border-right: 1px solid var(--line-light);
}

.process__steps li:last-child {
  border-right: 0;
}

.process__steps li > span {
  color: rgba(245, 240, 231, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.process__icon {
  width: 86px;
  margin: 65px 0 36px;
}

.process__icon svg {
  fill: none;
  stroke: var(--sun);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process__steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 850;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.process__steps p {
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(245, 240, 231, 0.58);
  font-size: 15px;
  line-height: 1.65;
}

.contact {
  position: relative;
  color: var(--ink);
  overflow: hidden;
  background: var(--sun);
}

.contact__rays {
  position: absolute;
  top: -68vw;
  left: 50%;
  width: 135vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 7deg, rgba(255, 255, 255, 0.13) 7deg 8deg);
  transform: translateX(-50%);
  mask-image: radial-gradient(circle, transparent 0 31%, black 32% 100%);
  animation: ray-turn 90s linear infinite;
}

@keyframes ray-turn {
  to { transform: translateX(-50%) rotate(360deg); }
}

.contact__inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding-block: clamp(120px, 14vw, 220px) 64px;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__label::before {
  display: block;
  width: 36px;
  height: 1px;
  content: "";
  background: currentColor;
}

.contact h2 {
  max-width: 1100px;
  margin-top: 50px;
}

.project-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 70px;
}

.project-selector button {
  min-width: 130px;
  min-height: 52px;
  padding: 0 21px;
  color: var(--ink);
  border: 1px solid rgba(10, 15, 16, 0.42);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.project-selector button:hover {
  transform: translateY(-2px);
}

.project-selector button.is-active {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.contact__response {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-top: 62px;
  padding: 30px 0;
  border-top: 1px solid rgba(10, 15, 16, 0.4);
  border-bottom: 1px solid rgba(10, 15, 16, 0.4);
}

.contact__response > div {
  display: grid;
  grid-template-columns: auto minmax(240px, 700px);
  gap: 30px;
  align-items: start;
}

.contact__response-index {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.contact__response p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.button--dark {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-3px);
}

.contact__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
  color: rgba(10, 15, 16, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 90px 60px;
  background: #070b0c;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1.2fr 1fr;
  gap: clamp(40px, 6vw, 110px);
}

.brand--footer {
  align-self: start;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: rgba(245, 240, 231, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer__grid > div > p {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__grid a {
  transition: color 0.2s ease;
}

.site-footer__grid a:hover {
  color: var(--sun);
}

.site-footer__legal {
  justify-content: flex-start;
}

.site-footer__legal a {
  margin-top: 20px;
}

.mobile-call {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s ease,
    transform 0.9s var(--ease-out);
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(90vw, 1080px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line-light);
    background: rgba(10, 15, 16, 0.34);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: var(--cream);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: block;
    padding: calc(var(--header-h) + 60px) 5vw 50px;
    background: rgba(10, 15, 16, 0.98);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: clamp(32px, 7vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
  }

  .manifesto__grid {
    grid-template-columns: 0.5fr 2.3fr;
  }

  .solar-orbit {
    grid-column: 2;
    width: min(40vw, 320px);
    margin: 20px 0 0 auto;
  }

  .solution-journey {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 40px;
  }

  .solution-step {
    padding-left: 30px;
  }

  .territory__headline,
  .process__header {
    grid-template-columns: 0.55fr 2fr;
  }

  .territory__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 70px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100vw - 40px);
    --header-h: 70px;
  }

  .section-pad {
    padding-block: 100px;
  }

  .site-header {
    height: 70px;
    padding-inline: 20px;
    gap: 10px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__type strong {
    font-size: 15px;
  }

  .brand__type small {
    font-size: 6px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .chapter-nav {
    display: none;
  }

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

  .hero__media {
    inset: -2%;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 10, 12, 0.86), rgba(5, 10, 12, 0.32)),
      linear-gradient(0deg, rgba(5, 10, 12, 0.94) 0%, rgba(5, 10, 12, 0.15) 65%);
  }

  .hero__grid {
    background-size: 25vw 25vw;
  }

  .hero__content {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 108px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hero__title {
    font-size: clamp(49px, 16vw, 74px);
    line-height: 0.82;
  }

  .hero__line--accent {
    padding-left: 0;
  }

  .hero__bottom {
    display: block;
    margin-top: 34px;
    padding-left: 0;
  }

  .hero__bottom > p {
    max-width: 94%;
    font-size: 15px;
  }

  .button-row {
    margin-top: 28px;
    gap: 20px;
  }

  .button {
    min-height: 54px;
  }

  .hero__rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-height: 52px;
    padding-inline: 20px;
    font-size: 7px;
  }

  .hero__scroll {
    display: none;
  }

  .manifesto__grid,
  .solutions__header,
  .territory__headline,
  .territory__grid,
  .process__header,
  .contact__response,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__copy {
    padding-top: 58px;
  }

  .display-copy {
    font-size: clamp(41px, 12vw, 62px);
  }

  .manifesto__details {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .solar-orbit {
    grid-column: 1;
    width: 70vw;
    margin: 64px auto 0;
  }

  .solutions__header {
    gap: 70px;
  }

  .solutions__header h2,
  .territory__headline h2,
  .process__header h2,
  .contact h2 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .solution-journey {
    display: block;
    width: 100%;
    padding-bottom: 80px;
  }

  .solution-stage-wrap {
    position: sticky;
    z-index: 4;
    top: 64px;
    min-height: 0;
    height: 47svh;
  }

  .solution-stage {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .solution-stage__topline {
    height: 46px;
    padding-inline: 20px;
  }

  .visual-stack {
    inset: 46px 0 0;
  }

  .visual-panel__caption {
    bottom: 16px;
    left: 20px;
    font-size: 7px;
  }

  .visual-panel__number {
    right: 18px;
    bottom: 6px;
  }

  .solution-steps {
    width: var(--shell);
    margin: 0 auto;
  }

  .solution-step {
    min-height: 77svh;
    padding: 115px 0 90px;
  }

  .solution-step__number {
    top: 70px;
  }

  .solution-step h3 {
    font-size: 50px;
  }

  .territory__headline {
    gap: 24px;
    margin-top: 76px;
  }

  .territory__grid {
    gap: 70px;
    margin-top: 80px;
  }

  .location-card {
    min-height: 520px;
    box-shadow: 12px 12px 0 rgba(229, 109, 44, 0.5);
  }

  .location-card__actions {
    grid-template-columns: 1fr;
  }

  .process__header {
    gap: 30px;
    margin-top: 80px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .process__steps li {
    min-height: 330px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process__icon {
    margin-top: 40px;
  }

  .contact__inner {
    min-height: auto;
    padding-bottom: 110px;
  }

  .project-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 45px;
  }

  .project-selector button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .contact__response {
    gap: 35px;
    align-items: stretch;
  }

  .contact__response > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact__response .button {
    width: 100%;
  }

  .contact__meta {
    display: grid;
    gap: 12px;
    margin-top: 55px;
  }

  .site-footer {
    padding-bottom: 105px;
  }

  .site-footer__grid {
    gap: 50px;
  }

  .mobile-call {
    position: fixed;
    z-index: 95;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding-inline: 18px;
    color: var(--ink);
    background: var(--sun);
    border: 1px solid rgba(10, 15, 16, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-weight: 850;
  }

  .page-noise {
    opacity: 0.08;
  }
}

@media (max-width: 390px) {
  .hero__title {
    font-size: 46px;
  }

  .hero__bottom > p {
    font-size: 14px;
  }

  .text-link {
    font-size: 11px;
  }

  .location-card {
    padding-inline: 22px;
  }

  .location-card__actions {
    right: 22px;
    left: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero__media {
    transform: none !important;
  }

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

/* Hero v2 — el amanecer se enciende */
.hero {
  position: relative;
  display: block;
  min-height: max(1160px, 170svh);
  overflow: visible;
  background: var(--ink);
  isolation: auto;
}

.hero__frame {
  --hero-lens-size: 25vmax;
  --hero-media-y: 0px;
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  --hero-lens-x: 0px;
  --hero-lens-y: 0px;
  --hero-orbit-x: 0px;
  --hero-orbit-y: 0px;
  --hero-circuit-offset: 0.72;
  --hero-circuit-opacity: 0.52;
  --hero-curtain-y: 100%;
  --hero-bridge-opacity: 0;
  --hero-bridge-y: 42px;
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: -6%;
  overflow: hidden;
  transform: translate3d(0, var(--hero-media-y), 0) scale(1.06);
  will-change: transform;
}

.hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.18) contrast(1.18) brightness(0.46) hue-rotate(156deg);
  transform: scale(1);
  animation: hero-v2-image-in 1.5s var(--ease-out) both;
}

@keyframes hero-v2-image-in {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__solar-lens {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("assets/hero-los-altos.webp");
  background-repeat: no-repeat;
  background-position: 55% center;
  background-size: cover;
  filter: saturate(1.06) contrast(1.05) brightness(1.02);
  clip-path: circle(var(--hero-lens-size) at 73% 43%);
  transform: translate3d(var(--hero-lens-x), var(--hero-lens-y), 0) scale(1);
  will-change: clip-path, transform;
  animation: hero-v2-lens-open 1.35s var(--ease-out) both;
}

@keyframes hero-v2-lens-open {
  0% { clip-path: circle(0 at 73% 43%); }
  55% { clip-path: circle(7vmax at 73% 43%); }
  100% { clip-path: circle(var(--hero-lens-size) at 73% 43%); }
}

.hero__veil {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 9, 10, 0.82) 0%, rgba(5, 9, 10, 0.44) 38%, rgba(5, 9, 10, 0.02) 68%),
    linear-gradient(0deg, rgba(5, 9, 10, 0.92) 0%, rgba(5, 9, 10, 0.06) 48%, rgba(5, 9, 10, 0.24) 100%);
  pointer-events: none;
}

.hero__grid {
  z-index: 4;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(245, 240, 231, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 231, 0.11) 1px, transparent 1px);
  background-size: clamp(70px, 8vw, 130px) clamp(70px, 8vw, 130px);
  -webkit-mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.34) 57%, transparent 88%);
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.34) 57%, transparent 88%);
}

.hero__flare {
  position: absolute;
  z-index: 5;
  top: 43%;
  left: 73%;
  width: min(62vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.64;
  background: radial-gradient(circle, rgba(255, 188, 60, 0.2), rgba(255, 177, 33, 0.06) 29%, transparent 68%);
  mix-blend-mode: screen;
  transform: translate(calc(-50% + var(--hero-orbit-x)), calc(-50% + var(--hero-orbit-y)));
  pointer-events: none;
  animation: hero-v2-flare 1.8s var(--ease-out) both;
}

@keyframes hero-v2-flare {
  0%, 38% { opacity: 0; transform: translate(-50%, -50%) scale(0.42); }
  72% { opacity: 0.92; }
  100% { opacity: 0.64; transform: translate(-50%, -50%) scale(1); }
}

.hero__orbit {
  position: absolute;
  z-index: 6;
  top: 43%;
  left: 73%;
  width: min(39vw, 560px);
  aspect-ratio: 1;
  opacity: 0.63;
  transform: translate(calc(-50% + var(--hero-orbit-x)), calc(-50% + var(--hero-orbit-y)));
  pointer-events: none;
  animation: hero-v2-orbit-in 1.4s 0.35s var(--ease-out) both;
}

@keyframes hero-v2-orbit-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.68) rotate(-20deg); }
}

.hero__orbit svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(245, 240, 231, 0.68);
  stroke-width: 0.7;
  stroke-dasharray: 1.5 3.5;
  animation: hero-v2-orbit-turn 36s linear infinite;
}

@keyframes hero-v2-orbit-turn {
  to { transform: rotate(360deg); }
}

.hero__orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun-hot);
  box-shadow: 0 0 0 8px rgba(244, 161, 26, 0.14), 0 0 25px var(--sun);
  transform-origin: 0 calc(min(19.5vw, 280px) + 4px);
  animation: hero-v2-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-v2-dot-pulse {
  50% { box-shadow: 0 0 0 15px rgba(244, 161, 26, 0), 0 0 35px var(--sun); }
}

.hero__circuit {
  position: absolute;
  z-index: 7;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: var(--hero-circuit-opacity);
  pointer-events: none;
}

.hero__circuit path {
  fill: none;
  stroke: var(--sun-hot);
  stroke-width: 1.4;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--hero-circuit-offset);
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 0.08s linear;
}

.hero__circuit path:nth-child(2) {
  stroke: var(--water);
}

.hero__circuit circle {
  fill: var(--sun-hot);
  stroke: rgba(255, 189, 54, 0.35);
  stroke-width: 13;
  vector-effect: non-scaling-stroke;
}

.hero__circuit circle:last-child {
  fill: var(--water);
  stroke: rgba(73, 168, 186, 0.35);
}

.hero__scan {
  position: absolute;
  z-index: 8;
  top: 6%;
  bottom: 6%;
  left: 0;
  width: 1px;
  opacity: 0;
  background: linear-gradient(transparent, rgba(255, 190, 64, 0.8), transparent);
  box-shadow: 0 0 30px rgba(255, 190, 64, 0.7);
  pointer-events: none;
  animation: hero-v2-scan 1.7s 0.15s ease-out both;
}

@keyframes hero-v2-scan {
  0% { left: 8%; opacity: 0; }
  18% { opacity: 0.8; }
  82% { opacity: 0.3; }
  100% { left: 92%; opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: calc(var(--header-h) + clamp(42px, 6vh, 76px));
  padding-bottom: 88px;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  transition: opacity 0.08s linear;
  will-change: transform, opacity;
}

.hero .eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(18px, 2.8vh, 34px);
  padding: 9px 13px;
  color: rgba(245, 240, 231, 0.9);
  border-color: rgba(245, 240, 231, 0.38);
  background: rgba(5, 9, 10, 0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: hero-v2-small-in 0.75s 0.75s var(--ease-out) forwards;
}

@keyframes hero-v2-small-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  position: relative;
  z-index: 2;
  max-width: min(88vw, 1320px);
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 9.2vw, 150px);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: -0.079em;
  line-height: 0.72;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__line {
  display: block;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(42%);
  animation: hero-v2-type-in 1s var(--ease-out) forwards;
}

.hero__line:nth-child(1) { animation-delay: 0.42s; }
.hero__line:nth-child(2) { animation-delay: 0.56s; }
.hero__line:nth-child(3) { animation-delay: 0.7s; }

@keyframes hero-v2-type-in {
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateY(0); }
}

.hero__line b,
.hero__line--power {
  color: var(--sun-hot);
  font: inherit;
  text-shadow: 0 0 42px rgba(244, 161, 26, 0.26);
}

.hero__line--power {
  padding-left: 0.33em;
  font-size: 1.08em;
}

.hero__line--outline {
  padding-left: 0.17em;
  color: rgba(245, 240, 231, 0.1);
  -webkit-text-stroke: 1.65px rgba(245, 240, 231, 0.96);
  text-shadow: 0 10px 30px rgba(5, 9, 10, 0.45);
}

.hero__telemetry {
  position: absolute;
  z-index: 3;
  top: 29%;
  right: 0;
  display: grid;
  gap: 9px;
  width: 195px;
  padding: 15px 0 15px 18px;
  border-left: 1px solid rgba(245, 240, 231, 0.65);
  text-shadow: 0 2px 15px rgba(5, 9, 10, 0.8);
  opacity: 0;
  animation: hero-v2-small-in 0.8s 1.05s var(--ease-out) forwards;
}

.hero__telemetry span,
.hero__telemetry small {
  color: rgba(245, 240, 231, 0.65);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__telemetry strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__telemetry i {
  color: var(--sun);
  font-style: normal;
  font-weight: 400;
}

.hero__bottom {
  display: grid;
  grid-template-columns: minmax(300px, 490px) auto;
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
  margin-top: auto;
  padding: 22px 0 0 clamp(0px, 6vw, 90px);
  border-top: 1px solid rgba(245, 240, 231, 0.22);
  opacity: 0;
  animation: hero-v2-small-in 0.8s 0.88s var(--ease-out) forwards;
}

.hero__bottom > p {
  max-width: 490px;
  margin: 0;
  color: rgba(245, 240, 231, 0.68);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
}

.hero__bottom > p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.24em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__rail {
  z-index: 12;
  grid-template-columns: repeat(4, auto) 1fr;
  gap: clamp(24px, 3.4vw, 52px);
  min-height: 58px;
  padding-inline: 3.5vw;
  background: rgba(5, 9, 10, 0.36);
  border-top-color: rgba(245, 240, 231, 0.23);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: var(--hero-copy-opacity);
}

.hero__rail > span:not(.hero__scroll) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__rail b {
  color: var(--sun);
  font-size: 8px;
}

.hero__curtain {
  position: absolute;
  z-index: 20;
  inset: -1px;
  background: var(--ink);
  transform: translate3d(0, var(--hero-curtain-y), 0);
  will-change: transform;
}

.hero__bridge {
  position: absolute;
  z-index: 21;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  width: 100%;
  color: var(--cream);
  opacity: var(--hero-bridge-opacity);
  transform: translate(-50%, calc(-50% + var(--hero-bridge-y)));
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  will-change: opacity, transform;
}

.hero__bridge span {
  color: var(--sun);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.28em;
}

.hero__bridge strong {
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(68px, 10vw, 160px);
  letter-spacing: -0.07em;
  line-height: 0.85;
}

@media (max-width: 1000px) {
  .hero__title {
    font-size: clamp(70px, 10.6vw, 108px);
  }

  .hero__telemetry {
    top: 23%;
    width: 165px;
  }

  .hero__rail {
    gap: 19px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: max(1040px, 155svh);
  }

  .hero__frame {
    --hero-lens-size: 28vmax;
    height: 100svh;
    min-height: 620px;
  }

  .hero__media {
    inset: -8%;
    transform: translate3d(0, var(--hero-media-y), 0) scale(1.1);
  }

  .hero__media > img {
    object-position: 63% center;
    transform: scale(1);
  }

  .hero__solar-lens {
    inset: 0;
    background-position: 63% center;
    clip-path: circle(var(--hero-lens-size) at 78% 27%);
  }

  @keyframes hero-v2-lens-open {
    0% { clip-path: circle(0 at 78% 27%); }
    55% { clip-path: circle(8vmax at 78% 27%); }
    100% { clip-path: circle(var(--hero-lens-size) at 78% 27%); }
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 9, 10, 0.64), rgba(5, 9, 10, 0.08)),
      linear-gradient(0deg, rgba(5, 9, 10, 0.94) 0%, rgba(5, 9, 10, 0.19) 61%, rgba(5, 9, 10, 0.32) 100%);
  }

  .hero__grid {
    inset: 0;
    background-size: 24vw 24vw;
  }

  .hero__flare,
  .hero__orbit {
    top: 27%;
    left: 78%;
  }

  .hero__flare {
    width: 110vw;
  }

  .hero__orbit {
    width: 82vw;
    opacity: 0.52;
  }

  .hero__circuit {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: var(--hero-circuit-opacity);
  }

  .hero__content {
    justify-content: flex-end;
    height: 100%;
    padding-top: calc(var(--header-h) + 26px);
    padding-bottom: 66px;
  }

  .hero .eyebrow {
    margin: auto 0 22px;
    padding: 8px 10px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(47px, 13.5vw, 66px);
    letter-spacing: -0.068em;
    line-height: 0.8;
  }

  .hero__line--outline {
    padding-left: 0;
    color: rgba(245, 240, 231, 0.13);
    -webkit-text-stroke-width: 1.25px;
  }

  .hero__line--power {
    padding-left: 0.22em;
  }

  .hero__telemetry {
    display: none;
  }

  .hero__bottom {
    display: block;
    margin-top: 28px;
    padding: 20px 0 0;
  }

  .hero__bottom > p {
    max-width: 34ch;
    font-size: 14px;
  }

  .hero__bottom .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
  }

  .hero__bottom .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__bottom .text-link {
    width: fit-content;
    padding-block: 7px;
    font-size: 11px;
  }

  .hero__rail {
    display: flex;
    justify-content: center;
    min-height: 42px;
    padding-inline: 20px;
  }

  .hero__rail > span:not(.hero__scroll) {
    display: none;
  }

  .hero__scroll {
    justify-self: auto;
    color: rgba(245, 240, 231, 0.7);
    font-size: 8px;
  }

  .hero__bridge strong {
    font-size: clamp(55px, 17vw, 82px);
  }

  .mobile-call {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(120% + env(safe-area-inset-bottom)));
    transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
  }

  .mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 390px) {
  .hero__content {
    padding-bottom: 58px;
  }

  .hero .eyebrow {
    font-size: 8px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__bottom {
    margin-top: 22px;
  }

  .hero__bottom > p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    min-height: 100svh;
  }

  .hero__frame {
    position: relative;
    height: 100svh;
    --hero-lens-size: 140vmax !important;
    --hero-media-y: 0px !important;
    --hero-copy-y: 0px !important;
    --hero-copy-opacity: 1 !important;
    --hero-circuit-offset: 0 !important;
    --hero-circuit-opacity: 0.4 !important;
    --hero-curtain-y: 100% !important;
    --hero-bridge-opacity: 0 !important;
  }

  .hero__media,
  .hero__solar-lens,
  .hero__flare,
  .hero__orbit,
  .hero__scan,
  .hero__content,
  .hero__line,
  .hero .eyebrow,
  .hero__bottom {
    animation: none !important;
    transform: none !important;
  }

  .hero__media > img {
    filter: saturate(0.95) contrast(1.06) brightness(0.82);
    transform: none !important;
  }

  .hero__solar-lens,
  .hero__line,
  .hero .eyebrow,
  .hero__bottom {
    opacity: 1 !important;
  }

  .hero__orbit svg,
  .hero__orbit-dot {
    animation: none !important;
  }

  .hero__curtain,
  .hero__bridge {
    display: none;
  }
}

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

.no-js .hero {
  min-height: 100svh;
}

.no-js .hero__frame {
  position: relative;
  height: 100svh;
}

.no-js .hero__curtain,
.no-js .hero__bridge {
  display: none;
}
