:root {
  --bg-0: #050b0f;
  --bg-1: #09171f;
  --bg-2: #102935;
  --surface: rgba(13, 29, 38, 0.78);
  --surface-strong: rgba(18, 38, 49, 0.94);
  --text: #eef8ff;
  --muted: #a9bdca;
  --soft: #d8eff7;
  --line: rgba(204, 236, 255, 0.16);
  --green: #61f2aa;
  --cyan: #56dfff;
  --blue: #7ea7ff;
  --orange: #ffb55f;
  --yellow: #ffd23f;
  --radius: 18px;
  --shadow: 0 28px 70px rgba(0, 8, 16, 0.46);
  --mouse-x: 50%;
  --mouse-y: 18%;
}

@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 110px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(720px 460px at var(--mouse-x) var(--mouse-y), rgba(97, 242, 170, 0.13), transparent 62%),
    radial-gradient(900px 540px at 15% -10%, rgba(41, 128, 132, 0.34), transparent 68%),
    radial-gradient(860px 520px at 96% 4%, rgba(61, 76, 139, 0.34), transparent 64%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 58%, #061015);
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-loaded .launch-loader {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.12);
}

.launch-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(86, 223, 255, 0.24), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(97, 242, 170, 0.18), transparent 42%),
    #050b0f;
  transition: opacity 0.65s ease, visibility 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}
.launch-loader strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  letter-spacing: 0.08em;
  text-shadow: 0 0 36px rgba(86, 223, 255, 0.7);
}
.launch-loader span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.loader-ring {
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(86, 223, 255, 0.2);
  background:
    conic-gradient(from 90deg, var(--green), var(--cyan), transparent 58%, var(--yellow), var(--green));
  mask: radial-gradient(circle, transparent 0 56%, #000 57%);
  animation: ringSpin 0.9s linear infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow));
  box-shadow: 0 0 24px rgba(86, 223, 255, 0.68);
}

#energy-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  pointer-events: none;
}

.beam-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.7;
}
.beam-field span {
  position: absolute;
  top: -22vh;
  width: 2px;
  height: 150vh;
  background: linear-gradient(180deg, transparent, rgba(86,223,255,0.36), transparent);
  filter: blur(0.5px) drop-shadow(0 0 18px rgba(86,223,255,0.7));
  transform: rotate(22deg);
  animation: beamSweep 7s ease-in-out infinite;
}
.beam-field span:nth-child(1) { left: 16%; animation-delay: -1s; }
.beam-field span:nth-child(2) { left: 54%; animation-delay: -4s; opacity: 0.65; }
.beam-field span:nth-child(3) { left: 84%; animation-delay: -2.5s; opacity: 0.45; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
}

.page-glow {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(97, 242, 170, 0.18), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(86, 223, 255, 0.14), transparent 22%);
  filter: blur(12px);
  animation: glowDrift 12s ease-in-out infinite alternate;
}

.aurora-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aurora-field span {
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.18;
  filter: blur(48px);
  mix-blend-mode: screen;
  animation: auroraFloat 16s ease-in-out infinite;
}
.aurora-field span:nth-child(1) {
  left: -9vw;
  top: 18vh;
  background: #61f2aa;
}
.aurora-field span:nth-child(2) {
  right: -10vw;
  top: 8vh;
  background: #56dfff;
  animation-delay: -5s;
}
.aurora-field span:nth-child(3) {
  left: 36vw;
  bottom: -22vh;
  background: #7ea7ff;
  animation-delay: -9s;
}

.container { width: min(1160px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(14, 28, 34, 0.68), rgba(5, 12, 16, 0.54));
  border: 1px solid rgba(204, 236, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #031513;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 24px rgba(97, 242, 170, 0.34);
  animation: markPulse 3.8s ease-in-out infinite;
}

nav { display: flex; gap: 22px; align-items: center; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
nav a:hover { color: var(--text); }
nav a:hover::after { transform: scaleX(1); }

nav a[href="#testflight"] {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 28px;
  padding: 152px 0 64px;
  min-height: calc(100vh - 20px);
  perspective: 1200px;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(940px, 100%);
  text-align: center;
}

.hero-symbols {
  position: absolute;
  inset: 80px -8vw 0;
  z-index: 1;
  pointer-events: none;
}
.hero-symbols span {
  position: absolute;
  color: rgba(221, 244, 255, 0.28);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 2.6rem);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(86, 223, 255, 0.16);
  animation: symbolDrift 9s ease-in-out infinite;
}
.hero-symbols span:nth-child(1) { left: 5%; top: 28%; transform: rotate(-13deg); }
.hero-symbols span:nth-child(2) { left: 13%; top: 66%; animation-delay: -2s; }
.hero-symbols span:nth-child(3) { right: 7%; top: 31%; transform: rotate(12deg); animation-delay: -4s; }
.hero-symbols span:nth-child(4) { right: 18%; top: 72%; transform: rotate(-9deg); animation-delay: -6s; }
.hero-symbols span:nth-child(5) { left: 48%; top: 10%; transform: rotate(8deg); animation-delay: -1.2s; }
.hero-symbols span:nth-child(6) { right: 32%; top: 51%; transform: rotate(14deg); animation-delay: -3.4s; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
}
.hero-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(221, 244, 255, 0.18);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  font-size: 0.78rem;
  font-weight: 900;
  animation: badgeSpark 4.8s ease-in-out infinite;
}
.hero-badges span:nth-child(2) { animation-delay: -1.4s; }
.hero-badges span:nth-child(3) { animation-delay: -2.8s; }

.acronym {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
.acronym span:nth-of-type(1) { color: var(--green); }
.acronym span:nth-of-type(2) { color: var(--cyan); }
.acronym span:nth-of-type(3) { color: var(--blue); }
.acronym span:nth-of-type(4) { color: var(--orange); }
.acronym span:nth-of-type(5) { color: var(--yellow); }

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.04;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.6rem, 7.6vw, 7.4rem);
  max-width: 11.8ch;
  margin: 0 auto;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff, #d7f7ff 54%, #92b5c4);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(86, 223, 255, 0.12));
}

.hero-title {
  position: relative;
  animation: titleGlow 3.4s ease-in-out infinite;
}
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
}
.hero-title::before {
  background: linear-gradient(180deg, var(--cyan), transparent);
  transform: translate(2px, -1px);
  animation: titleGlitch 5s steps(1) infinite;
}
.hero-title::after {
  background: linear-gradient(180deg, var(--green), transparent);
  transform: translate(-2px, 1px);
  animation: titleGlitch 6.2s steps(1) infinite reverse;
}

.hero-copy {
  max-width: 72ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 20px auto 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: #c6f7e4;
  font-size: 0.8rem;
  font-weight: 900;
}
.hero-proof span {
  position: relative;
  padding-left: 16px;
}
.hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.36), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #031513;
  box-shadow: 0 18px 38px rgba(42, 211, 168, 0.22);
}
.btn-ghost {
  border-color: rgba(210, 232, 250, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.live-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-width: 530px;
  margin: 28px auto 0;
}
.live-strip span {
  padding: 12px 13px;
  border: 1px solid rgba(224, 247, 255, 0.13);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 0.82rem;
  font-weight: 900;
}
.live-strip strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.data-marquee {
  position: relative;
  display: flex;
  width: min(540px, 100%);
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid rgba(86, 223, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 12, 17, 0.44);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.data-marquee div {
  display: flex;
  gap: 9px;
  min-width: max-content;
  padding: 8px 9px;
  animation: dataRail 18s linear infinite;
}
.data-marquee span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #c9f9ff;
  background: rgba(86, 223, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero-stage {
  position: relative;
  min-width: 0;
  width: min(930px, 92vw);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #071116;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.24s ease;
  animation: heroEntrance 1.05s cubic-bezier(.2,.8,.2,1) both;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 6;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent, rgba(97,242,170,0.9), rgba(86,223,255,0.8), transparent 38%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: borderSpin 5s linear infinite;
}
.hero-stage:hover {
  box-shadow: 0 34px 92px rgba(0, 8, 16, 0.58), 0 0 70px rgba(86, 223, 255, 0.1);
}

.hero-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
  animation: imageBreath 9s ease-in-out infinite alternate;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 17, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(4, 12, 17, 0.24), transparent 30%, rgba(4, 12, 17, 0.18));
  pointer-events: none;
}

.energy-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 2 18;
  filter: url(#lineGlow);
  animation: dashMove 7s linear infinite, linePulse 2.8s ease-in-out infinite;
}
.flow-solar { stroke: var(--green); }
.flow-battery { stroke: var(--blue); animation-duration: 8.5s; }
.flow-grid { stroke: var(--orange); animation-duration: 9.5s; }
.flow-car { stroke: var(--yellow); animation-duration: 8s; }

.node {
  fill: rgba(9, 20, 27, 0.88);
  stroke-width: 4;
  filter: url(#lineGlow);
  animation: nodePulse 2.7s ease-in-out infinite;
}
.node-house { stroke: var(--cyan); }
.node-grid { stroke: var(--orange); }
.node-solar { stroke: var(--green); }

.metric-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid rgba(224, 247, 255, 0.24);
  border-radius: 14px;
  background: rgba(5, 14, 19, 0.68);
  backdrop-filter: blur(13px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  animation: metricFloat 5.4s ease-in-out infinite;
}
.metric-home { animation-delay: -1.2s; }
.metric-price { animation-delay: -2.4s; }
.metric-card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}
.metric-card strong {
  color: var(--text);
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-variant-numeric: tabular-nums;
}
.metric-solar { top: 9%; left: 43%; }
.metric-home { left: 48%; bottom: 18%; }
.metric-price { right: 6%; bottom: 18%; }

.stage-halo {
  position: absolute;
  z-index: 1;
  inset: -24%;
  background:
    radial-gradient(circle at 54% 70%, rgba(86,223,255,0.24), transparent 18%),
    radial-gradient(circle at 44% 14%, rgba(97,242,170,0.14), transparent 22%);
  filter: blur(18px);
  animation: haloBreathe 3.2s ease-in-out infinite;
  pointer-events: none;
}

.surge-burst {
  position: absolute;
  z-index: 6;
  left: 52%;
  top: 74%;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.surge-burst span {
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(86,223,255,0.66), transparent);
  filter: drop-shadow(0 0 12px rgba(86,223,255,0.85));
  animation: surgeRay 2.6s ease-in-out infinite;
}
.surge-burst span:nth-child(1) { transform: rotate(0deg); }
.surge-burst span:nth-child(2) { transform: rotate(58deg); animation-delay: -0.4s; }
.surge-burst span:nth-child(3) { transform: rotate(124deg); animation-delay: -0.8s; }
.surge-burst span:nth-child(4) { transform: rotate(188deg); animation-delay: -1.2s; }
.surge-burst span:nth-child(5) { transform: rotate(242deg); animation-delay: -1.6s; }
.surge-burst span:nth-child(6) { transform: rotate(306deg); animation-delay: -2s; }

.orbit-ring {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(86, 223, 255, 0.18);
  border-radius: 999px;
  pointer-events: none;
}
.ring-one {
  width: 42%;
  aspect-ratio: 1;
  left: 33%;
  top: 32%;
  animation: ringSpin 18s linear infinite;
}
.ring-two {
  width: 25%;
  aspect-ratio: 1;
  left: 41%;
  top: 41%;
  border-color: rgba(97, 242, 170, 0.18);
  animation: ringSpin 13s linear infinite reverse;
}
.orbit-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.scanline {
  position: absolute;
  inset: -60% 0 auto;
  z-index: 3;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(86,223,255,0.09), transparent);
  transform: translateY(-20%);
  animation: scanMove 6.5s ease-in-out infinite;
  pointer-events: none;
}

.energy-core {
  position: absolute;
  z-index: 5;
  left: 51.5%;
  top: 75.5%;
  width: 104px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.energy-core span,
.energy-core i,
.energy-core::before,
.energy-core::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: "";
}
.energy-core span {
  inset: 26px;
  background: radial-gradient(circle, #fff 0 12%, var(--cyan) 13% 38%, rgba(86,223,255,0.14) 39% 100%);
  box-shadow: 0 0 28px rgba(86,223,255,0.95), 0 0 56px rgba(97,242,170,0.34);
  animation: corePulse 1.6s ease-in-out infinite;
}
.energy-core i {
  border: 1px solid rgba(86,223,255,0.42);
  animation: coreRipple 2.2s ease-out infinite;
}
.energy-core::before {
  inset: 13px;
  border: 1px dashed rgba(97,242,170,0.52);
  animation: ringSpin 7s linear infinite;
}
.energy-core::after {
  inset: -18px;
  background: conic-gradient(from 90deg, transparent, rgba(86,223,255,0.58), transparent, rgba(97,242,170,0.4), transparent);
  mask: radial-gradient(circle, transparent 0 52%, #000 53% 56%, transparent 57%);
  animation: ringSpin 4.5s linear infinite reverse;
}

.system-chip {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(97,242,170,0.3);
  border-radius: 999px;
  color: #dfffee;
  background: rgba(2, 12, 16, 0.58);
  backdrop-filter: blur(12px);
  font-size: 0.73rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.system-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: chipPulse 1.1s ease-in-out infinite;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: -18px;
  border: 1px solid rgba(209, 238, 255, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 26px 70px rgba(0, 8, 16, 0.32);
}
.signal-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--soft);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(7, 17, 22, 0.66);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}
.signal-band span:nth-child(2) { color: #d8f7ff; }
.signal-band span:nth-child(3) { color: #fff0c2; }
.signal-band span:nth-child(4) { color: #d7ffe9; }

.section { padding: 74px 0; position: relative; }
.section-label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head h2, .dash-text h2, .contact h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}
.section-head p:not(.section-label), .dash-text p, .contact p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.shot-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.shot-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(18, 38, 49, 0.9), rgba(8, 18, 25, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.shot-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(86, 223, 255, 0.32);
  box-shadow: 0 32px 82px rgba(0, 8, 16, 0.52);
}
.shot-wide { grid-row: span 2; padding: 16px; }
.shot-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}
.shot-topline strong { color: var(--green); }

.mini-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  background: #d9edf8;
}
.mini-dashboard img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transform: scale(1.01);
}
.mini-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(5,15,20,0.18));
  pointer-events: none;
}
.mini-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mini-line {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 1 22;
  animation: dashMove 8.5s linear infinite;
  filter: drop-shadow(0 0 9px currentColor);
}
.mini-line.solar { stroke: var(--green); color: var(--green); }
.mini-line.storage { stroke: var(--blue); color: var(--blue); animation-duration: 10s; }
.mini-line.grid { stroke: var(--orange); color: var(--orange); animation-duration: 9.4s; }
.mini-line.car { stroke: var(--yellow); color: var(--yellow); animation-duration: 9s; }

.floating-value {
  position: absolute;
  z-index: 3;
  min-width: 92px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 13px;
  color: #10202b;
  background: rgba(239, 249, 255, 0.8);
  backdrop-filter: blur(9px);
  font-size: 0.82rem;
  font-weight: 800;
}
.floating-value strong {
  display: block;
  font-size: 1.15rem;
  font-family: "Space Grotesk", sans-serif;
}
.floating-value.pv { left: 42%; top: 8%; }
.floating-value.home { left: 49%; bottom: 21%; }
.floating-value.grid { right: 6%; bottom: 16%; }

.phone-card {
  padding: 18px;
  display: grid;
  place-items: center;
}
.phone-shell {
  width: min(270px, 100%);
  border-radius: 32px;
  padding: 16px;
  border: 1px solid rgba(222, 244, 255, 0.24);
  background: #071015;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,0.04), 0 20px 48px rgba(0,0,0,0.32);
  animation: phoneTilt 7s ease-in-out infinite;
}
.phone-header {
  display: grid;
  gap: 2px;
  margin-bottom: 12px;
}
.phone-header strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}
.phone-header span { color: var(--muted); font-size: 0.78rem; }
.phone-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.phone-hero img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.phone-pill {
  position: absolute;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 0.69rem;
  font-weight: 800;
  color: #071015;
  background: rgba(97, 242, 170, 0.9);
  animation: pillBlink 3.2s ease-in-out infinite;
}
.phone-pill.solar { left: 11px; top: 10px; }
.phone-pill.home { left: 50%; top: 46%; transform: translateX(-50%); background: rgba(255,255,255,0.82); }
.phone-pill.storage { left: 11px; bottom: 10px; background: rgba(126,167,255,0.92); color: #fff; }
.phone-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}
.phone-tiles span {
  min-height: 58px;
  padding: 9px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(222, 244, 255, 0.12);
}
.phone-tiles small { display: block; color: var(--muted); font-weight: 800; }
.phone-tiles strong { display: block; margin-top: 2px; font-size: 1.12rem; }

.widget-card {
  padding: 18px;
}
.widget-preview {
  border-radius: 24px;
  padding: 20px;
  color: #eaf4ff;
  background:
    linear-gradient(135deg, rgba(54, 116, 212, 0.34), transparent 46%),
    linear-gradient(160deg, #0b2448, #06182e);
  border: 1px solid rgba(151, 194, 255, 0.32);
  position: relative;
  overflow: hidden;
}
.widget-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,0.1) 50%, transparent 78%);
  transform: translateX(-110%);
  animation: widgetSweep 4.8s ease-in-out infinite;
}
.widget-preview > div {
  display: grid;
  gap: 2px;
  margin-bottom: 15px;
}
.widget-preview strong { font-family: "Space Grotesk", sans-serif; font-size: 1.35rem; }
.widget-preview span { color: #b9cce1; font-size: 0.78rem; }
.widget-preview dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  margin: 0;
}
.widget-preview dt { color: #b9cce1; font-weight: 800; }
.widget-preview dd { margin: 0; font-weight: 900; font-size: 1.22rem; }
.widget-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 16px 0 0;
}

.custom-house-section {
  padding-top: 42px;
}
.custom-house-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: stretch;
}
.custom-ipad {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(209, 238, 255, 0.16);
  border-radius: 30px;
  padding: 16px;
  background:
    radial-gradient(circle at 24% 18%, rgba(97,242,170,0.14), transparent 34%),
    linear-gradient(145deg, rgba(19, 42, 53, 0.9), rgba(3, 12, 17, 0.94));
  box-shadow: 0 34px 90px rgba(0, 8, 16, 0.46);
}
.custom-ipad::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  pointer-events: none;
}
.custom-ipad-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 14px;
}
.custom-ipad-top strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}
.custom-ipad-top span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}
.custom-screen {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #071116;
}
.custom-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.custom-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,12,17,0.08), transparent 42%),
    radial-gradient(circle at 52% 76%, rgba(86,223,255,0.12), transparent 20%);
  pointer-events: none;
}
.custom-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.custom-line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1 22;
  animation: dashMove 8s linear infinite, linePulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px currentColor);
}
.custom-line.solar { stroke: var(--green); color: var(--green); }
.custom-line.battery { stroke: var(--blue); color: var(--blue); animation-duration: 9.5s; }
.custom-line.grid { stroke: var(--orange); color: var(--orange); animation-duration: 10s; }
.custom-line.car { stroke: var(--yellow); color: var(--yellow); animation-duration: 8.8s; }
.pin {
  position: absolute;
  z-index: 4;
  min-width: 70px;
  min-height: 34px;
  border: 1px solid rgba(224,247,255,0.28);
  border-radius: 999px;
  color: #041815;
  background: linear-gradient(135deg, rgba(97,242,170,0.96), rgba(86,223,255,0.96));
  box-shadow: 0 0 24px rgba(86,223,255,0.32);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 950;
  cursor: default;
  animation: metricFloat 5s ease-in-out infinite;
}
.pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  transform: translateX(-50%);
}
.pin-solar { left: 41%; top: 9%; }
.pin-home { left: 48%; bottom: 18%; animation-delay: -1.4s; }
.pin-grid { right: 6%; bottom: 18%; animation-delay: -2.8s; }
.pin-car { left: 14%; bottom: 31%; animation-delay: -3.6s; }
.placement-toolbar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.placement-toolbar span {
  padding: 8px 10px;
  border: 1px solid rgba(222,244,255,0.14);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(3,12,17,0.62);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 900;
}
.custom-guide {
  display: grid;
  gap: 14px;
}
.custom-guide article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(222,244,255,0.14);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(22, 45, 57, 0.78), rgba(9, 20, 28, 0.9));
}
.custom-guide strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #031513;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-family: "Space Grotesk", sans-serif;
}
.custom-guide h3 {
  font-size: 1.22rem;
}
.custom-guide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.feature-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(204, 236, 255, 0.08);
  border-bottom: 1px solid rgba(204, 236, 255, 0.08);
  overflow: hidden;
}
.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(86,223,255,0.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(255,255,255,0.035) 87px, transparent 88px);
  opacity: 0.5;
  transform: skewY(-2deg);
  animation: bandSweep 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(150deg, rgba(22, 45, 57, 0.88), rgba(9, 20, 28, 0.94));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% -30%;
  height: 100px;
  background: radial-gradient(circle, rgba(86,223,255,0.16), transparent 62%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(97, 242, 170, 0.24);
  background: linear-gradient(150deg, rgba(25, 52, 64, 0.92), rgba(9, 20, 28, 0.96));
}
.card:hover::after {
  opacity: 1;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
  color: #041815;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-weight: 900;
  font-size: 0.78rem;
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(97, 242, 170, 0.52);
}

.device-stack {
  position: relative;
  min-height: 430px;
}
.tablet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  transition: transform 0.24s ease;
}
.device-stack:hover .tablet-card {
  transform: rotate(0deg) translateY(-4px);
}
.tablet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.tablet-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}
.tablet-strip span {
  padding: 12px;
  border-radius: 14px;
  color: var(--soft);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(222,244,255,0.12);
  font-weight: 900;
  text-align: center;
}
.hub-image {
  position: absolute;
  right: -12px;
  bottom: -38px;
  width: min(205px, 34%);
  filter: drop-shadow(0 24px 38px rgba(0,0,0,0.42));
  animation: hubHover 5.4s ease-in-out infinite;
}

.requirements-section {
  padding-top: 42px;
}
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.requirement-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 20px;
  border: 1px solid rgba(222,244,255,0.14);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(22, 45, 57, 0.78), rgba(9, 20, 28, 0.92));
  box-shadow: 0 22px 64px rgba(0, 8, 16, 0.28);
}
.requirement-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(86,223,255,0.14), transparent 64%);
  pointer-events: none;
}
.requirement-card.highlight {
  border-color: rgba(97,242,170,0.34);
  background:
    radial-gradient(circle at 24% 16%, rgba(97,242,170,0.18), transparent 34%),
    linear-gradient(150deg, rgba(28, 58, 62, 0.88), rgba(9, 20, 28, 0.94));
}
.requirement-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #041815;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 0.72rem;
  font-weight: 950;
}
.requirement-card h3 {
  font-size: 1.25rem;
}
.requirement-card p {
  color: var(--muted);
  line-height: 1.65;
}

.beta-section {
  padding-top: 28px;
}
.beta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(209, 238, 255, 0.16);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 18% 12%, rgba(97, 242, 170, 0.2), transparent 32%),
    radial-gradient(circle at 88% 42%, rgba(86, 223, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(18, 38, 49, 0.84), rgba(4, 12, 17, 0.9));
  box-shadow: 0 34px 90px rgba(0, 8, 16, 0.42);
}
.beta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.1), transparent 42%);
  transform: translateX(-80%);
  animation: widgetSweep 6s ease-in-out infinite;
  pointer-events: none;
}
.beta-orb {
  position: absolute;
  right: 9%;
  top: 18%;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97,242,170,0.36), rgba(86,223,255,0.1) 42%, transparent 68%);
  filter: blur(8px);
  animation: corePulse 3.4s ease-in-out infinite;
}
.beta-copy,
.beta-steps {
  position: relative;
  z-index: 2;
}
.beta-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}
.beta-copy p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}
.beta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.beta-actions span {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}
.beta-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.beta-requirement {
  padding: 14px 16px;
  border: 1px solid rgba(255, 210, 63, 0.28);
  border-radius: 16px;
  color: #fff0c2;
  background:
    radial-gradient(circle at 8% 50%, rgba(255,210,63,0.2), transparent 38%),
    rgba(255,210,63,0.06);
  font-weight: 850;
}
.beta-email {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 900;
}
.beta-email input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(222,244,255,0.16);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(3, 12, 17, 0.42);
  font: inherit;
  outline: none;
}
.beta-email input:focus {
  border-color: rgba(97,242,170,0.44);
  box-shadow: 0 0 0 3px rgba(97,242,170,0.1);
}
.beta-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}
.beta-form legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--soft);
  font-weight: 900;
}
.beta-form label:not(.beta-note) {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(222,244,255,0.14);
  border-radius: 14px;
  color: var(--soft);
  background: rgba(255,255,255,0.055);
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}
.beta-form label.source-option {
  border-color: rgba(97,242,170,0.28);
  background:
    radial-gradient(circle at 8% 50%, rgba(97,242,170,0.14), transparent 44%),
    rgba(255,255,255,0.07);
}
.beta-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}
.beta-note {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 900;
}
.beta-note textarea {
  width: 100%;
  resize: vertical;
  min-height: 92px;
  border: 1px solid rgba(222,244,255,0.16);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(3, 12, 17, 0.42);
  font: inherit;
  outline: none;
}
.beta-note textarea:focus {
  border-color: rgba(97,242,170,0.44);
  box-shadow: 0 0 0 3px rgba(97,242,170,0.1);
}
.beta-steps {
  display: grid;
  align-content: center;
  gap: 12px;
}
.beta-steps span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(222,244,255,0.14);
  border-radius: 18px;
  color: var(--soft);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(14px);
  font-weight: 900;
}
.beta-steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #031513;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 24px rgba(86,223,255,0.24);
  font-family: "Space Grotesk", sans-serif;
}

.contact {
  text-align: center;
  padding-bottom: 92px;
}
.contact p {
  max-width: 740px;
  margin: 18px auto 24px;
}
.contact .section-label { margin-bottom: 12px; }

.site-footer { border-top: 1px solid rgba(194, 222, 246, 0.1); }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px 0 28px;
  margin: 0;
}
.legal-links { display: flex; gap: 16px; }
.legal-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 700; }

.legal-page {
  padding: 56px 0 80px;
  max-width: 820px;
}
.legal-page h1 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-page h2 { margin-top: 26px; margin-bottom: 8px; font-size: 1.2rem; }
.legal-page p { color: var(--muted); line-height: 1.6; }
.legal-page a { color: var(--cyan); }

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@keyframes dashMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -120; }
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translate3d(42px, 20px, 0) rotateY(-8deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0) scale(1);
  }
}

@keyframes glowDrift {
  from { transform: translate3d(-1%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.04); }
}

@keyframes auroraFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(6vw, -4vh, 0) scale(1.16); }
}

@keyframes markPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(97, 242, 170, 0.34); }
  50% { box-shadow: 0 0 34px rgba(86, 223, 255, 0.48); }
}

@keyframes imageBreath {
  from { transform: scale(1.02); }
  to { transform: scale(1.065); }
}

@keyframes linePulse {
  0%, 100% { opacity: 0.68; }
  50% { opacity: 1; }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}

@keyframes metricFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scanMove {
  0%, 100% { transform: translateY(-80%); opacity: 0; }
  42%, 58% { opacity: 1; }
  100% { transform: translateY(260%); }
}

@keyframes phoneTilt {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(1.2deg) translateY(-7px); }
}

@keyframes pillBlink {
  0%, 100% { box-shadow: 0 0 0 rgba(97, 242, 170, 0); }
  50% { box-shadow: 0 0 22px rgba(97, 242, 170, 0.28); }
}

@keyframes widgetSweep {
  0%, 45% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}

@keyframes hubHover {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes corePulse {
  0%, 100% { transform: scale(0.92); opacity: 0.86; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes coreRipple {
  0% { transform: scale(0.25); opacity: 0.9; }
  100% { transform: scale(1.32); opacity: 0; }
}

@keyframes bandSweep {
  from { transform: translateX(-8%) skewY(-2deg); }
  to { transform: translateX(8%) skewY(-2deg); }
}

@keyframes beamSweep {
  0%, 100% { transform: translateX(-18vw) rotate(22deg); opacity: 0; }
  18%, 72% { opacity: 0.85; }
  50% { transform: translateX(18vw) rotate(22deg); }
}

@keyframes badgeSpark {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 0 rgba(86,223,255,0); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 24px rgba(86,223,255,0.18); }
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(86, 223, 255, 0.12)); }
  50% { filter: drop-shadow(0 0 46px rgba(97, 242, 170, 0.24)); }
}

@keyframes titleGlitch {
  0%, 92%, 100% { opacity: 0; clip-path: inset(0 0 0 0); }
  93% { opacity: 0.58; clip-path: inset(12% 0 68% 0); }
  94% { opacity: 0; }
  96% { opacity: 0.42; clip-path: inset(64% 0 18% 0); }
  97% { opacity: 0; }
}

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

@keyframes borderSpin {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}

@keyframes haloBreathe {
  0%, 100% { transform: scale(0.94); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.92; }
}

@keyframes surgeRay {
  0%, 100% { width: 34px; opacity: 0.08; }
  45%, 58% { width: 146px; opacity: 0.86; }
}

@keyframes chipPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.72; }
  50% { transform: scale(1.25); opacity: 1; }
}

@keyframes symbolDrift {
  0%, 100% { opacity: 0.16; translate: 0 0; }
  50% { opacity: 0.48; translate: 0 -14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation: none !important; }
  .launch-loader { display: none; }
}

@media (max-width: 1020px) {
  .hero, .split-section { grid-template-columns: 1fr; min-height: auto; }
  .hero { padding-top: 64px; }
  h1 { max-width: 11ch; }
  .grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .requirements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .custom-house-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .shot-wide { grid-row: auto; }
  .device-stack { min-height: auto; }
  .live-strip { grid-template-columns: 1fr; }
  .signal-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .system-chip { display: none; }
  .beta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  nav { display: none; }
  .hero { padding: 48px 0 30px; }
  h1 { font-size: clamp(2.5rem, 15vw, 4rem); }
  .hero-copy { font-size: 1rem; }
  .hero-symbols span {
    font-size: 1.1rem;
    opacity: 0.22;
  }
  .hero-symbols span:nth-child(2),
  .hero-symbols span:nth-child(5),
  .hero-symbols span:nth-child(6) {
    display: none;
  }
  .hero-badges span { font-size: 0.72rem; }
  .live-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }
  .live-strip span {
    min-width: 0;
    padding: 10px 8px;
    border-radius: 14px;
    font-size: 0.68rem;
    text-align: center;
  }
  .live-strip strong {
    font-size: 0.96rem;
  }
  .metric-card { scale: 0.82; transform-origin: center; }
  .metric-solar { left: 35%; top: 7%; }
  .metric-home { left: 38%; bottom: 14%; }
  .metric-price { right: 1%; bottom: 13%; }
  .energy-core { width: 76px; }
  .section { padding: 54px 0; }
  .grid-cards { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }
  .requirement-card { min-height: auto; }
  .custom-ipad { border-radius: 22px; padding: 12px; }
  .custom-ipad-top { align-items: flex-start; flex-direction: column; }
  .pin {
    min-width: 54px;
    min-height: 30px;
    font-size: 0.65rem;
  }
  .pin-car { left: 8%; }
  .placement-toolbar {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .placement-toolbar span {
    padding: 6px 8px;
    font-size: 0.66rem;
  }
  .signal-band { grid-template-columns: 1fr; margin-top: 14px; }
  .signal-band span { min-height: 58px; }
  .data-marquee { display: none; }
  .surge-burst span { width: 58px; }
  .hero-stage::before { display: none; }
  .floating-value { transform: scale(0.84); transform-origin: center; }
  .phone-shell { width: 100%; }
  .tablet-strip { grid-template-columns: 1fr; }
  .hub-image { display: none; }
  .beta-panel { border-radius: 22px; padding: 22px; }
  .beta-form fieldset { grid-template-columns: 1fr; }
  .beta-actions .btn { width: 100%; }
  .beta-steps span { min-height: 68px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; padding-top: 18px; }
  .site-footer p { padding: 0; }
  .legal-links { padding-bottom: 24px; }
}
