:root {
  --bg: #05060a;
  --bg-elevated: rgba(19, 21, 29, 0.9);
  --card: rgba(15, 17, 25, 0.9);
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.18);
  --accent-strong: #ff9a39;
  --text: #f5f5f7;
  --text-soft: #a1a1ac;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --blur-strong: 32px;
  --shadow-soft: 0 42px 80px rgba(0, 0, 0, 0.65);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.65);
  --nav-height: 70px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top, #161729 0, #05060a 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-pending {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 122, 26, 0.16), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(62, 94, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%);
  pointer-events: none;
  z-index: -2;
}

.ambient-glow {
  position: fixed;
  inset: auto auto 0 0;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.16), transparent 62%);
  filter: blur(18px);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.35s ease;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-strong), #ffd16f);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.45);
  z-index: 90;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(18, 21, 34, 0.82), rgba(1, 2, 6, 0.995) 55%),
    linear-gradient(180deg, #040509 0%, #010203 100%);
  z-index: 120;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro-overlay__scene,
.intro-overlay__grid {
  position: absolute;
  inset: 0;
}

.intro-overlay__scene {
  z-index: 0;
}

.intro-overlay__scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.intro-overlay__grid {
  z-index: 1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(92, 132, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 132, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 72%);
  pointer-events: none;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  width: min(56vw, 36rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  filter: none;
  animation: none;
}

.intro-overlay__brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 2.2rem 2.6rem;
  animation: introBrandFade 1.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-overlay__logo {
  width: min(46vw, 270px);
  filter:
    drop-shadow(0 0 18px rgba(255, 122, 26, 0.34))
    drop-shadow(0 0 42px rgba(255, 122, 26, 0.42));
  animation: introLogoPulse 1.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-overlay__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(245, 245, 247, 0.58);
  text-shadow: 0 0 14px rgba(255, 122, 26, 0.2);
  animation: introLabelFade 1s ease forwards;
  animation-delay: 0.22s;
}

body.intro-complete .intro-overlay {
  opacity: 0;
  visibility: hidden;
}

body.intro-complete .intro-overlay__brand {
  opacity: 0;
}

.page-shell {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

body.page-ready .page-shell {
  opacity: 1;
  transform: translateY(0);
}

body.page-ready .nav {
  transition-delay: 0.1s;
}

body.page-ready main {
  transition-delay: 0.2s;
}

body.page-ready .footer {
  transition-delay: 0.35s;
}

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

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

main {
  padding-inline: max(6vw, 48px);
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(6vw, 48px);
  backdrop-filter: blur(26px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.92),
    rgba(5, 6, 10, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(255, 122, 26, 0.9));
}

.nav__links {
  display: flex;
  gap: 26px;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-left: 32px;
}

.nav__links a {
  position: relative;
  padding-block: 4px;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

/* theme toggle removed */

.nav__cta {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #0b0b15;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(255, 122, 26, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(255, 122, 26, 0.55);
}

.nav__menu {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: calc(100vh - var(--nav-height));
  padding-top: 18px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero__tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin-bottom: 18px;
}

.hero__hero-image {
  grid-column: 1 / -1;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 40px;
  max-height: none;
  min-height: clamp(520px, 78vh, 760px);
  isolation: isolate;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.9);
  transform-origin: center;
  opacity: 0;
  transform: perspective(1800px) rotateX(12deg) translateY(56px) scale(0.94);
  filter: blur(22px) saturate(0.78);
  clip-path: inset(12% 8% 14% 8% round 32px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;
  will-change: opacity, transform, filter;
  background:
    linear-gradient(135deg, rgba(10, 20, 58, 0.38), rgba(5, 11, 32, 0.32) 54%, rgba(10, 11, 38, 0.44)),
    radial-gradient(circle at 82% 28%, rgba(47, 203, 255, 0.12), transparent 22%),
    radial-gradient(circle at 16% 18%, rgba(57, 112, 255, 0.1), transparent 24%);
}

.hero__hero-image::before,
.hero__hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.hero__hero-image::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(120, 176, 255, 0.18), transparent 26%),
    radial-gradient(circle at 74% 48%, rgba(55, 222, 255, 0.12), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 48%, rgba(88, 135, 255, 0.04));
  opacity: 0;
  mix-blend-mode: screen;
}

.hero__hero-image::after {
  inset: -10%;
  background: linear-gradient(
    108deg,
    transparent 18%,
    rgba(255, 255, 255, 0.02) 36%,
    rgba(122, 216, 255, 0.18) 46%,
    rgba(255, 160, 70, 0.12) 50%,
    rgba(255, 255, 255, 0.02) 56%,
    transparent 74%
  );
  opacity: 0;
  transform: translateX(-62%) skewX(-16deg);
  mix-blend-mode: screen;
}

body.hero-entry-active .hero__hero-image {
  animation: heroStageReveal 1.55s cubic-bezier(0.18, 0.86, 0.24, 1) 0.04s forwards;
}

body.hero-entry-active .hero__hero-image::before {
  animation: heroAtmosphereRise 1.9s ease-out 0.18s forwards;
}

body.hero-entry-active .hero__hero-image::after {
  animation: heroLightSweep 1.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.22s forwards;
}

.hero__hero-image > img {
  display: none;
}

.hero-premium-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-premium-bg__canvas,
.hero-premium-bg__grid,
.hero-premium-bg__glow {
  position: absolute;
  inset: 0;
}

.hero-premium-bg__canvas {
  z-index: 0;
  opacity: 0;
  transform: scale(1.12);
  filter: saturate(0.82) brightness(0.72);
}

.hero-premium-bg__canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

body.hero-entry-active .hero-premium-bg__canvas {
  animation: heroCanvasReveal 2.1s cubic-bezier(0.18, 0.86, 0.24, 1) 0.16s forwards;
}

.hero-premium-bg__grid {
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 42%),
    repeating-radial-gradient(circle at center, rgba(100, 145, 255, 0.075) 0 2px, transparent 2px 28px);
  mask-image: linear-gradient(90deg, transparent 8%, black 34%, black 92%, transparent);
  opacity: 0.58;
  pointer-events: none;
}

.hero-premium-bg__glow {
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-premium-bg__glow--left {
  left: -12%;
  top: -12%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(67, 119, 255, 0.32), transparent 66%);
}

.hero-premium-bg__glow--right {
  right: -10%;
  top: 16%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(49, 204, 255, 0.24), transparent 66%);
}

.hero__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 5, 15, 0.04),
    rgba(4, 8, 24, 0.1) 50%,
    rgba(4, 8, 24, 0.24)
  );
  z-index: 2;
  pointer-events: none;
}

.hero-live-data {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  gap: 14px;
  width: min(24rem, 28vw);
  pointer-events: none;
  font-family: "Orbitron", "SF Pro Display", system-ui, sans-serif;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(28px, -50%, 0);
}

.hero-live-data__card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(111, 164, 255, 0.16);
  background: linear-gradient(180deg, rgba(8, 14, 34, 0.42), rgba(6, 10, 24, 0.24));
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translate3d(22px, 22px, 0) scale(0.96);
}

.hero-live-data__label {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 146, 52, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-live-data__title {
  display: block;
  margin-bottom: 14px;
  color: rgba(245, 247, 255, 0.96);
  font-size: 1.12rem;
  font-weight: 600;
}

.hero-live-data__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.hero-live-data__metric-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(164, 186, 235, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-live-data__metric-value {
  color: rgba(245, 248, 255, 0.98);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-live-data__pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(111, 164, 255, 0.14);
  background: rgba(6, 10, 24, 0.28);
  color: rgba(219, 229, 247, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(22px, 18px, 0) scale(0.96);
}

body.hero-entry-active .hero-live-data {
  animation: heroDataClusterReveal 1.15s ease-out 0.82s forwards;
}

body.hero-entry-active .hero-live-data__card--main {
  animation: heroTelemetryCardIn 1.05s cubic-bezier(0.2, 0.82, 0.2, 1) 0.92s forwards;
}

body.hero-entry-active .hero-live-data__card--gauge {
  animation: heroTelemetryCardIn 1.05s cubic-bezier(0.2, 0.82, 0.2, 1) 1.08s forwards;
}

body.hero-entry-active .hero-live-data__pill {
  animation: heroTelemetryCardIn 0.98s cubic-bezier(0.2, 0.82, 0.2, 1) 1.2s forwards;
}

.hero-live-data__dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #59f1b4;
  box-shadow: 0 0 0 0 rgba(89, 241, 180, 0.45);
  animation: heroLivePulse 1.8s ease infinite;
}

.hero-live-data__card--gauge {
  padding-bottom: 14px;
}

.hero-gauge {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 206px;
}

.hero-gauge__svg {
  width: 100%;
  max-width: 220px;
  overflow: visible;
  transform: translateY(-10px);
}

.hero-gauge__track,
.hero-gauge__value {
  fill: none;
  stroke-linecap: round;
}

.hero-gauge__track {
  stroke: rgba(114, 142, 198, 0.18);
  stroke-width: 12;
}

.hero-gauge__value {
  stroke: url(#rpmGaugeGradient);
  stroke: #ff8f2b;
  stroke-width: 12;
  stroke-dasharray: 252;
  stroke-dashoffset: 92;
  filter: drop-shadow(0 0 10px rgba(255, 143, 43, 0.28));
  transition: stroke-dashoffset 180ms ease;
}

.hero-gauge__needle-group {
  transform-origin: 110px 120px;
  transition: transform 180ms ease;
}

.hero-gauge__needle {
  stroke: #eef5ff;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(114, 219, 255, 0.22));
}

.hero-gauge__hub {
  fill: #0d152b;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.hero-gauge__readout {
  position: absolute;
  bottom: 8px;
  display: grid;
  gap: 4px;
  justify-items: center;
}

.hero-gauge__unit {
  color: rgba(164, 186, 235, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  order: 2;
}

.hero-gauge__number {
  color: rgba(248, 250, 255, 0.98);
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  order: 1;
}

.hero-flow-chart {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(111, 164, 255, 0.12);
}

.hero-flow-chart__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-flow-chart__value {
  color: rgba(245, 248, 255, 0.96);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-flow-chart__svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  overflow: visible;
}

.hero-flow-chart__grid {
  fill: none;
  stroke: rgba(122, 157, 224, 0.12);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
}

.hero-flow-chart__line {
  fill: none;
  stroke: #67dcff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(103, 220, 255, 0.18));
}

@media (max-width: 1440px) {
  .hero-live-data {
    right: 16px;
    width: min(19.5rem, 24vw);
    gap: 10px;
  }

  .hero-live-data__card {
    padding: 13px 14px;
  }

  .hero-live-data__grid {
    gap: 10px 12px;
  }

  .hero-gauge {
    min-height: 178px;
  }

  .hero-gauge__svg,
  .hero-flow-chart__svg {
    max-width: 184px;
  }

  .hero-gauge__number {
    font-size: 1.24rem;
  }

  .hero-flow-chart__value,
  .hero-live-data__metric-value {
    font-size: 0.92rem;
  }
}

@keyframes heroLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(89, 241, 180, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(89, 241, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(89, 241, 180, 0); }
}

.hero__content {
  grid-column: 1 / 2;
  grid-row: 1;
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(100%, 760px);
  margin-left: clamp(32px, 5vw, 72px);
  padding: clamp(18px, 2vw, 28px) 0 clamp(86px, 10vw, 128px);
  opacity: 0;
  transform: translate3d(-42px, 24px, 0);
  filter: blur(16px);
}

body.hero-entry-active .hero__content {
  animation: heroCopyReveal 1.2s cubic-bezier(0.18, 0.86, 0.24, 1) 0.56s forwards;
}

.hero__content > * {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  filter: blur(4px);
}

body.hero-entry-active .hero__content > .hero__tag {
  animation: heroTextLineIn 0.78s ease-out 1.42s forwards;
}

body.hero-entry-active .hero__content > h1 {
  animation: heroTextLineIn 0.82s ease-out 1.52s forwards;
}

body.hero-entry-active .hero__content > .hero__subtitle {
  animation: heroTextLineIn 0.8s ease-out 1.62s forwards;
}

body.hero-entry-active .hero__content > .hero__actions {
  animation: heroTextLineIn 0.76s ease-out 1.7s forwards;
}

body.hero-entry-active .hero__content > .hero__meta {
  animation: heroTextLineIn 0.74s ease-out 1.78s forwards;
}

.hero > .hero__content {
  display: none;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero__subtitle {
  color: rgba(245, 245, 247, 0.72);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-strong));
  color: #0b0b15;
  box-shadow: 0 16px 40px rgba(255, 122, 26, 0.5);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(255, 122, 26, 0.65);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--full {
  width: 100%;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero__meta span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  border-radius: 32px;
  padding: 12px;
  background: radial-gradient(
      circle at top left,
      rgba(255, 122, 26, 0.18),
      transparent 65%
    ),
    radial-gradient(circle at bottom right, rgba(50, 80, 255, 0.28), transparent
          55%);
  box-shadow: var(--shadow-soft);
}

.device-mockup__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.device-mockup__screen--placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 20% 20%, rgba(255, 122, 26, 0.16), transparent 24%),
    #0a0d18;
}

.device-mockup__screen--placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 48px, 48px 100%;
  opacity: 0.55;
}

.device-mockup__screen--placeholder::after {
  content: "Intec Cloud Preview";
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.72);
}

.device-mockup__glow {
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 15% 50%,
    rgba(255, 122, 26, 0.7),
    transparent 55%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero__floating-card {
  position: absolute;
  right: 5%;
  bottom: 10%;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(10, 11, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  font-size: 0.8rem;
}

.hero__floating-card h3 {
  margin: 4px 0;
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
}

.pill--success {
  border-color: rgba(80, 255, 143, 0.4);
  background: rgba(80, 255, 143, 0.08);
  color: #9ef7c2;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.section--cloud {
  padding-top: 24px;
  border-top: none;
}

.cloud-legacy {
  display: none !important;
}

.cloud-stage {
  position: relative;
  min-height: clamp(560px, 84vh, 840px);
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.68);
  background:
    linear-gradient(135deg, rgba(5, 10, 22, 0.58), rgba(4, 7, 18, 0.64) 52%, rgba(5, 9, 19, 0.6)),
    radial-gradient(circle at 18% 20%, rgba(255, 142, 52, 0.05), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(84, 208, 255, 0.05), transparent 24%);
  border: 1px solid rgba(124, 164, 255, 0.14);
}

.cloud-stage__visual,
.cloud-stage__scene,
.cloud-stage__grid,
.cloud-stage__glow,
.cloud-stage__intel-layer,
.cloud-stage__overlay {
  position: absolute;
  inset: 0;
}

.cloud-stage__scene {
  z-index: 0;
  left: 50%;
  width: 50%;
  top: 9%;
  bottom: -4%;
  touch-action: none;
  overflow: hidden;
}

.cloud-stage__scene canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.cloud-stage__scene::before {
  content: "";
  position: absolute;
  inset: 18% 12% 16%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(104, 201, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(10, 20, 42, 0.58), rgba(6, 11, 24, 0.18));
  border: 1px solid rgba(103, 220, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}

.cloud-stage__scene.is-loading::before {
  opacity: 1;
  transform: scale(1);
}

.cloud-stage__scene.is-ready::before,
.cloud-stage__scene.is-load-failed::before {
  opacity: 0;
}

.cloud-stage__debug {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: min(18rem, calc(50% - 40px));
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(103, 220, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 14, 34, 0.84), rgba(6, 10, 24, 0.68));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.cloud-stage__orbit-gizmo {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.78;
  pointer-events: auto;
}

.cloud-stage__orbit-gizmo.is-active {
  opacity: 1;
}

.cloud-stage__orbit-gizmo-label {
  color: rgba(214, 224, 246, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cloud-stage__orbit-pad {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  border: 1px solid rgba(103, 220, 255, 0.24);
  background:
    radial-gradient(circle at center, rgba(18, 30, 66, 0.56), rgba(7, 12, 28, 0.82));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 30px rgba(0, 0, 0, 0.24);
  cursor: grab;
  touch-action: none;
}

.cloud-stage__orbit-pad:active {
  cursor: grabbing;
}

.cloud-stage__orbit-ring,
.cloud-stage__orbit-cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud-stage__orbit-ring {
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(103, 220, 255, 0.18);
}

.cloud-stage__orbit-cross--x::before,
.cloud-stage__orbit-cross--y::before {
  content: "";
  position: absolute;
  background: rgba(103, 220, 255, 0.14);
}

.cloud-stage__orbit-cross--x::before {
  left: 16px;
  right: 16px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.cloud-stage__orbit-cross--y::before {
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.cloud-stage__orbit-thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -9px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #aaf4ff, #39c7ff 60%, #1f6bb7 100%);
  box-shadow:
    0 0 0 4px rgba(57, 199, 255, 0.12),
    0 8px 14px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.cloud-stage__debug-title {
  margin-bottom: 8px;
  color: #ff9b42;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cloud-stage__debug-mode {
  margin-bottom: 8px;
  color: rgba(214, 224, 246, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
}

.cloud-stage__debug-readout {
  margin-bottom: 10px;
  color: rgba(238, 244, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cloud-stage__debug-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.cloud-stage__debug-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cloud-stage__debug-controls button {
  padding: 9px 10px;
  border: 1px solid rgba(111, 164, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 244, 255, 0.9);
  font: inherit;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.cloud-stage__debug-controls button:hover {
  border-color: rgba(103, 220, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.cloud-stage__debug-save {
  border-color: rgba(255, 155, 66, 0.24) !important;
}

.cloud-stage__debug-orbit-toggle {
  border-color: rgba(103, 220, 255, 0.24) !important;
}

.cloud-stage__debug-orbit-toggle.is-active {
  background: linear-gradient(180deg, rgba(24, 44, 96, 0.42), rgba(13, 21, 43, 0.28));
  border-color: rgba(103, 220, 255, 0.4) !important;
  box-shadow: 0 0 0 1px rgba(103, 220, 255, 0.12);
}

.cloud-stage__debug.is-orbit-mode {
  border-color: rgba(103, 220, 255, 0.28);
}

.cloud-stage__debug.is-saved {
  border-color: rgba(105, 232, 177, 0.34);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(105, 232, 177, 0.12);
}

.cloud-stage__debug-hint {
  margin: 10px 0 0;
  color: rgba(214, 224, 246, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cloud-stage__grid {
  z-index: 1;
  opacity: 0.18;
  background:
    linear-gradient(rgba(135, 172, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 172, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 72px, 72px 100%;
  mask-image: radial-gradient(circle at center, black 42%, transparent 96%);
  pointer-events: none;
}

.cloud-stage__glow {
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
  opacity: 0.46;
}

.cloud-stage__glow--left {
  left: -14%;
  top: -16%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(255, 147, 59, 0.14), transparent 66%);
}

.cloud-stage__glow--right {
  right: -10%;
  top: 14%;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(79, 182, 255, 0.09), transparent 68%);
}

.cloud-stage__overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 7, 20, 0.62) 0%, rgba(4, 7, 20, 0.3) 28%, rgba(4, 7, 20, 0.04) 56%, rgba(4, 7, 20, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 8, 24, 0.02), rgba(4, 8, 24, 0.08));
}

.cloud-stage__intel-layer {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  transform: translateY(18px);
}

.cloud-stage__monitor-layer {
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  transform: translateY(18px);
}

.cloud-stage.is-zoom-view .cloud-stage__monitor-layer {
  opacity: 1;
  transform: translateY(0);
}

.cloud-stage__monitor-blur {
  position: absolute;
  left: 56%;
  top: 18%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 113, 71, 0.16) 0%, rgba(255, 154, 76, 0.1) 32%, rgba(77, 194, 255, 0.12) 54%, transparent 72%);
  filter: blur(46px);
  mix-blend-mode: screen;
}

.cloud-stage.is-zoom-view .cloud-stage__scene::before {
  content: "";
  position: absolute;
  inset: 8% 6% 12%;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 108, 64, 0.05), rgba(34, 101, 255, 0.08)),
    radial-gradient(circle at 62% 42%, rgba(78, 201, 255, 0.14), transparent 32%);
  filter: blur(16px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.cloud-stage__state-strip {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(116, 186, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(8, 18, 44, 0.8), rgba(5, 11, 28, 0.5));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.cloud-stage__monitor-label {
  display: block;
  color: rgba(185, 221, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cloud-stage__state-strip {
  left: 56%;
  bottom: 14%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(24rem, 38vw);
  padding: 14px 16px;
}

.cloud-stage__state-strip strong {
  display: block;
  margin-top: 5px;
  color: #f4fbff;
  font-size: 0.98rem;
}

.cloud-stage.is-plan-view .cloud-stage__intel-layer {
  opacity: 1;
  transform: translateY(0);
}

.cloud-stage__intel-blur {
  position: absolute;
  left: 56%;
  top: 20%;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(67, 187, 255, 0.28) 0%, rgba(67, 187, 255, 0.18) 28%, rgba(67, 187, 255, 0.08) 52%, transparent 72%);
  filter: blur(52px);
  opacity: 0.92;
  mix-blend-mode: screen;
}

.cloud-stage.is-plan-view .cloud-stage__scene::after {
  content: "";
  position: absolute;
  inset: 6% 4% 10%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 58% 40%, rgba(74, 198, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(44, 123, 255, 0.08), rgba(18, 66, 168, 0.14));
  filter: blur(18px);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.95;
}

.cloud-stage__telemetry {
  position: absolute;
  width: min(14rem, 26vw);
  padding: 14px 16px 15px;
  border-radius: 18px;
  border: 1px solid rgba(102, 220, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(8, 18, 44, 0.72), rgba(5, 11, 28, 0.44));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(86, 199, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.cloud-stage__telemetry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(127, 223, 255, 0.18), transparent);
  opacity: 0.65;
  transform: translateX(-100%);
  animation: cloudTelemetrySweep 4.8s linear infinite;
}

.cloud-stage__telemetry--left {
  left: 52%;
  top: 19%;
}

.cloud-stage__telemetry--center {
  left: 64%;
  top: 42%;
}

.cloud-stage__telemetry--right {
  right: 4%;
  top: 25%;
}

.cloud-stage__telemetry-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(174, 225, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cloud-stage__telemetry-value {
  display: block;
  margin-bottom: 6px;
  color: #f4fbff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.cloud-stage__telemetry p {
  margin: 0;
  color: rgba(214, 231, 247, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

@keyframes cloudTelemetrySweep {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.cloud-stage__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(30px, 4vw, 56px);
}

.cloud-stage__copy-card {
  width: min(100%, 34rem);
  padding: 26px 28px;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(8, 14, 34, 0.74), rgba(6, 10, 24, 0.46));
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cloud-stage__copy-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.04;
}

.cloud-stage__lead {
  margin: 0 0 22px;
  color: rgba(236, 242, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.cloud-stage__feature-list {
  gap: 14px;
  margin-bottom: 24px;
}

.cloud-stage__feature-list li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 164, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.cloud-stage__view-button {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 164, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.cloud-stage__view-button:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 164, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.cloud-stage__view-button.is-active {
  border-color: rgba(103, 220, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(24, 44, 96, 0.34), rgba(13, 21, 43, 0.24));
  box-shadow: 0 0 0 1px rgba(103, 220, 255, 0.08);
}

.cloud-stage__view-button h3,
.cloud-stage__view-button p {
  pointer-events: none;
}

.cloud-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cloud-stage__intel.hero-live-data {
  top: 50%;
  right: clamp(20px, 4vw, 48px);
  transform: translateY(-50%);
  width: min(23rem, 28vw);
  z-index: 4;
  opacity: 1;
  filter: none;
}

.cloud-stage__intel.hero-live-data.reveal-on-scroll {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(26px, -50%, 0);
}

.cloud-stage__intel.hero-live-data.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, -50%, 0);
}

.cloud-stage__intel.hero-live-data .hero-live-data__card,
.cloud-stage__intel.hero-live-data .hero-live-data__pill {
  opacity: 1;
  transform: none;
}

/* SECCIONES GENERALES */

.section {
  padding-block: clamp(64px, 12vh, 90px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll--delay {
  transition-delay: 0.15s;
}

.reveal-on-scroll--delay-lg {
  transition-delay: 0.3s;
}

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

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.section--reverse {
  grid-auto-flow: dense;
}

.section--reverse .section__text {
  order: 2;
}

.section--reverse .section__visual {
  order: 1;
}

.section__text h2 {
  font-size: 2rem;
  margin: 0 0 10px;
}

.section__lead {
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 24px;
}

.section__visual {
  display: flex;
  justify-content: center;
}

.section__visual-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.section__visual-image--bare {
  width: min(100%, 720px);
}

.section-carousel {
  position: relative;
  width: min(100%, 760px);
}

.section-carousel__slides {
  position: relative;
  min-height: 320px;
}

.section-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.section-carousel__slide.is-active {
  opacity: 1;
  position: relative;
}

.section-carousel__slide .section__visual-image--bare {
  width: 100%;
}

.section-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.section-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.16);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.28);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list--compact {
  gap: 14px;
}

.feature-list h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.feature-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.glass-card {
  border-radius: var(--radius-xl);
  padding: 16px;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 122, 26, 0.25),
      transparent 55%
    ),
    rgba(9, 11, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
}

.glass-card img {
  border-radius: calc(var(--radius-xl) - 6px);
}

.glass-card--wide {
  max-width: 580px;
}

/* PHONE MOCKUP */

.phone-stack {
  position: relative;
  width: 290px;
  height: 580px;
}

.phone {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(22, 31, 49, 0.9), rgba(6, 10, 20, 0.96));
  border: 1px solid rgba(137, 206, 255, 0.22);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.72), 0 0 32px rgba(53, 177, 255, 0.12);
  overflow: hidden;
}

.phone--front {
  padding: 10px;
  background:
    radial-gradient(circle at 50% 0, rgba(64, 215, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(15, 25, 41, 0.96), rgba(6, 10, 20, 0.98));
}

.phone--front img {
  display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 28px;
  }
  
.phone--back {
    display: none;
  }

/* GRID BENEFICIOS */

.section--grid .section__header {
  max-width: 40rem;
  margin-bottom: 30px;
}

.section--grid .section__header p {
  color: var(--text-soft);
}

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

.grid-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.7);
  transition: transform 0.28s ease, border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 26, 0.24);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.82);
}

.grid-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.grid-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* CTA */

.section--cta {
  padding-block: 72px;
}

.section__cta-inner {
  border-radius: 32px;
  padding: 34px 30px;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 122, 26, 0.44),
      transparent 60%
    ),
    linear-gradient(135deg, #151624, #05060a);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.section__cta-inner h2 {
  margin: 0 0 8px;
}

.section__cta-inner p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

/* CONTACTO */

.section--contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
}

.contact-meta p {
  margin: 0 0 4px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.contact-form {
  background: rgba(13, 15, 24, 0.96);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
}

.field {
  margin-bottom: 14px;
}

.field--half {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.field input,
.field textarea {
  width: 100%;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 9, 18, 0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.6);
  background: rgba(10, 11, 20, 0.98);
}

.form-message {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.form-message--success {
  color: #8ef0ba;
}

.form-message--error {
  color: #ff9e9e;
}

/* BADGES */

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

.badge--store {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-list li,
.contact-form,
.glass-card,
.phone,
.section__cta-inner {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-list li:hover,
.contact-form:hover,
.glass-card:hover,
.phone:hover,
.section__cta-inner:hover {
  transform: translateY(-4px);
}

/* FOOTER */

.footer {
  padding: 22px max(6vw, 48px) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.footer__note {
  opacity: 0.7;
}

@keyframes introBrandFade {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.88);
  }
  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  62% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(0) scale(1.03);
  }
}

@keyframes introLabelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introLogoPulse {
  0% {
    opacity: 0;
    transform: scale(0.74);
    filter:
      drop-shadow(0 0 0 rgba(255, 122, 26, 0))
      drop-shadow(0 0 0 rgba(255, 122, 26, 0));
  }
  24% {
    opacity: 1;
    transform: scale(1.06);
  }
  52% {
    opacity: 1;
    transform: scale(1);
    filter:
      drop-shadow(0 0 26px rgba(255, 122, 26, 0.42))
      drop-shadow(0 0 58px rgba(255, 122, 26, 0.48));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter:
      drop-shadow(0 0 18px rgba(255, 122, 26, 0.34))
      drop-shadow(0 0 42px rgba(255, 122, 26, 0.42));
  }
}

@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroStageReveal {
  0% {
    opacity: 0;
    transform: perspective(1800px) rotateX(12deg) translateY(56px) scale(0.94);
    filter: blur(22px) saturate(0.78);
    clip-path: inset(12% 8% 14% 8% round 32px);
  }
  48% {
    opacity: 1;
    transform: perspective(1800px) rotateX(-4deg) translateY(-10px) scale(1.016);
    filter: blur(0) saturate(1.06);
    clip-path: inset(1.5% 1% 2.5% 1% round 32px);
  }
  72% {
    opacity: 1;
    transform: perspective(1800px) rotateX(1.5deg) translateY(2px) scale(0.998);
    filter: blur(0) saturate(1.04);
    clip-path: inset(0 0 0 0 round 32px);
  }
  100% {
    opacity: 1;
    transform: perspective(1800px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0) saturate(1);
    clip-path: inset(0 0 0 0 round 32px);
  }
}

@keyframes heroCanvasReveal {
  0% {
    opacity: 0;
    transform: scale(1.12);
    filter: saturate(0.82) brightness(0.72);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }
}

@keyframes heroAtmosphereRise {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
}

@keyframes heroLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-62%) skewX(-16deg);
  }
  18% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(72%) skewX(-16deg);
  }
}

@keyframes heroCopyReveal {
  0% {
    opacity: 0;
    transform: translate3d(-42px, 24px, 0);
    filter: blur(16px);
  }
  60% {
    opacity: 1;
    transform: translate3d(6px, -2px, 0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroDataClusterReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(28px, -50%, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes heroTextLineIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroTelemetryCardIn {
  0% {
    opacity: 0;
    transform: translate3d(22px, 22px, 0) scale(0.96);
    filter: blur(10px);
  }
  58% {
    opacity: 1;
    transform: translate3d(-4px, -4px, 0) scale(1.015);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroCardEnter {
  0% {
    opacity: 0;
    transform: perspective(1400px) rotateX(34deg) rotateY(-28deg) translateY(70px) scale(0.84);
  }
  55% {
    opacity: 1;
    transform: perspective(1400px) rotateX(-8deg) rotateY(12deg) translateY(-6px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: perspective(1400px) rotateX(0deg) rotateY(0deg) translateY(0) scale(1);
  }
}

@keyframes techParticleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(0, -16px, 0);
    opacity: 0.95;
  }
}

@keyframes techRingRotate {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.02);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  main {
    padding-inline: 24px;
  }

  .nav {
    padding-inline: 24px;
  }

  .hero,
  .section--split,
  .section--contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .section--reverse .section__text,
  .section--reverse .section__visual {
    order: initial;
  }

  .hero__visual {
    order: -1;
  }

  .hero {
    padding-top: 10px;
  }

  .hero__hero-image {
    min-height: clamp(480px, 78vh, 720px);
  }

  .cloud-stage {
    min-height: 760px;
  }

  .cloud-stage__content {
    align-items: flex-start;
    padding-top: 34px;
  }

  .cloud-stage__copy-card {
    width: min(100%, 38rem);
  }

  .cloud-stage__intel.hero-live-data {
    top: auto;
    right: 28px;
    bottom: 28px;
    transform: none;
    width: min(20rem, calc(100% - 56px));
  }

  .cloud-stage__intel-blur {
    left: 52%;
    top: 18%;
    width: 22rem;
    height: 22rem;
  }

  .cloud-stage__telemetry {
    width: min(12rem, 24vw);
  }

  .cloud-stage__telemetry--left {
    left: 49%;
    top: 18%;
  }

  .cloud-stage__telemetry--center {
    left: 58%;
    top: 44%;
  }

  .cloud-stage__telemetry--right {
    right: 3%;
    top: 23%;
  }

  .cloud-stage__state-strip {
    left: 52%;
    width: min(22rem, 36vw);
  }

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

@media (max-width: 768px) {
  main {
    padding-inline: 18px;
  }

  .nav {
    padding-inline: 18px;
  }

  .nav__links {
    position: fixed;
    inset-inline: 18px;
    top: 66px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(5, 6, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    gap: 10px;
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav__links--open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    display: block;
  }

  .hero {
    padding-top: 10px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .section--cloud {
    padding-top: 6px;
  }

  .cloud-stage {
    min-height: auto;
    padding-bottom: 260px;
  }

  .cloud-stage__overlay {
    background:
      linear-gradient(180deg, rgba(4, 7, 20, 0.42), rgba(4, 7, 20, 0.22) 34%, rgba(4, 7, 20, 0.78) 100%),
      linear-gradient(90deg, rgba(4, 7, 20, 0.52), rgba(4, 7, 20, 0.12));
  }

  .cloud-stage__scene {
    left: 0;
    width: 100%;
    top: 0;
    bottom: 0;
  }

  .cloud-stage__debug {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cloud-stage__intel-blur {
    left: 50%;
    top: 10%;
    width: 18rem;
    height: 18rem;
  }

  .cloud-stage__telemetry {
    width: min(11rem, calc(50% - 18px));
    padding: 12px 13px 13px;
  }

  .cloud-stage__telemetry--left {
    left: 18px;
    top: 24px;
  }

  .cloud-stage__telemetry--center {
    left: auto;
    right: 18px;
    top: 140px;
  }

  .cloud-stage__telemetry--right {
    right: 18px;
    top: 24px;
  }

  .cloud-stage__state-strip {
    left: 18px;
    right: 18px;
    bottom: 110px;
    width: auto;
    gap: 12px;
  }

  .cloud-stage__orbit-gizmo {
    right: 18px;
    top: 18px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .cloud-stage__content {
    min-height: auto;
    padding: 22px;
  }

  .cloud-stage__copy-card {
    width: 100%;
    padding: 22px 20px;
  }

  .cloud-stage__copy-card h2 {
    font-size: 2rem;
  }

  .cloud-stage__intel.hero-live-data {
    right: 20px;
    bottom: 18px;
    width: min(22rem, calc(100% - 40px));
  }

  .cloud-stage__intel.hero-live-data.reveal-on-scroll,
  .cloud-stage__intel.hero-live-data.reveal-on-scroll.is-visible {
    transform: none;
  }

  .hero__content {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    margin-left: 28px;
    padding: 28px 0 58px;
  }

  .hero-live-data {
    right: 20px;
    top: auto;
    bottom: 18px;
    transform: none;
    width: min(22rem, calc(100% - 40px));
  }

  .intro-overlay__brand {
    animation-duration: 1.25s;
  }

  .intro-overlay__label {
    letter-spacing: 0.24em;
    font-size: 0.72rem;
  }

  .device-mockup {
    max-width: 440px;
  }

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

@media (max-width: 520px) {
  .hero__hero-image {
    min-height: 520px;
  }

  .cloud-stage {
    border-radius: 26px;
    padding-bottom: 18px;
  }

  .cloud-stage__content {
    padding: 18px;
  }

  .cloud-stage__copy-card {
    padding: 18px 16px;
  }

  .cloud-stage__intel.hero-live-data {
    display: grid;
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: auto;
    margin: 0 18px 18px;
  }

  .hero__content {
    margin-left: 18px;
    margin-right: 18px;
    width: auto;
    padding-top: 22px;
    padding-bottom: 46px;
  }

  .hero-live-data {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section__cta-inner {
    padding-inline: 18px;
  }

  .phone-stack {
      width: 240px;
      height: 480px;
    }

  .intro-overlay__logo {
    width: min(62vw, 210px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body.intro-pending {
    overflow: auto;
  }

  .intro-overlay {
    display: none;
  }

  .page-shell,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__hero-image,
  .hero__content,
  .hero-premium-bg__canvas,
  .hero-live-data,
  .hero-live-data__card,
  .hero-live-data__pill {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero__hero-image::before,
  .hero__hero-image::after {
    opacity: 0 !important;
  }
}
