@font-face {
  font-family: "Aggressive";
  src: url("/fonts/aggressive/AGRESSIVE.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Retro Pixel";
  src: url("/fonts/retro-pixel/Retro%20Pixel.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("/fonts/pp-editorial-new/PPEditorialNew-Regular-BF644b214ff145f.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("/fonts/pp-editorial-new/PPEditorialNew-Italic-BF644b214fb0c0a.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("/fonts/pp-editorial-new/PPEditorialNew-Ultralight-BF644b21500d0c0.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("/fonts/pp-editorial-new/PPEditorialNew-UltralightItalic-BF644b214ff1e9b.otf") format("opentype");
  font-style: italic;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("/fonts/pp-editorial-new/PPEditorialNew-Ultrabold-BF644b21500840c.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("/fonts/pp-editorial-new/PPEditorialNew-UltraboldItalic-BF644b214faef01.otf") format("opentype");
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

:root {
  --font-display-aggressive: "Aggressive", "Arial Black", Impact, sans-serif;
  --font-display-editorial: "PP Editorial New", Georgia, "Times New Roman", serif;
  --font-body-main: Manrope, Inter, Arial, sans-serif;
  --font-pixel: "Retro Pixel", "Courier New", monospace;
  --font-micro-dark: Consolas, "Lucida Console", Monaco, monospace;
  --font-micro-light: "Courier New", Courier, monospace;
  --black: #050505;
  --black-2: #121212;
  --graphite: #242424;
  --white: #ffffff;
  --paper: #f6f3ec;
  --line: rgba(5, 5, 5, 0.12);
  --orange: #ff3d00;
  --orange-2: #ff5a1f;
  --green: #00ff4c;
  --green-shadow: #ff00ff;
  --fuchsia: #ff00ff;
  --muted: #6d6b66;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.18);
  --glow: 0 0 34px rgba(240, 52, 0, .28);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #050505;
  color: var(--black);
  font-family: var(--font-body-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(5,5,5,.1);
  backdrop-filter: blur(18px);
}
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 190px; height: auto; object-fit: contain; }
nav { display: flex; align-items: center; gap: 20px; font-family: var(--font-body-main); font-size: 14px; font-weight: 900; color: var(--black); }
nav a { opacity: .78; transition: color .22s ease, opacity .22s ease, transform .22s ease; white-space: nowrap; }
nav a:hover { opacity: 1; color: var(--orange); transform: translateY(-1px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(0, .92fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 78px);
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.hero::before {
  content: none;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.hero-copy { max-width: none; }
.hero-left-panel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding: clamp(34px, 5vw, 76px) clamp(84px, 10vw, 150px) clamp(34px, 5vw, 76px) clamp(26px, 6vw, 96px);
  background: #020202;
  isolation: isolate;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}
.spacetime-grid-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: auto;
}
.hero-spacetime-canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}
.hero-left-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.78)),
    radial-gradient(circle at 20% 20%, rgba(0,255,76,.08), transparent 30%),
    radial-gradient(circle at 70% 75%, rgba(255,0,255,.055), transparent 34%);
}
.hero-left-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.green { color: var(--green); text-shadow: 2px 2px 0 var(--green-shadow); }
.eyebrow.orange { color: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(46px, 5.2vw, 74px); line-height: .94; font-weight: 700; color: var(--black); }
.hero h1 { color: #fff; text-shadow: 0 10px 34px rgba(0,0,0,.38); }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4.6vw, 64px); line-height: 1; font-weight: 700; }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.12; }
.pixel-title {
  display: inline-block;
  font-family: var(--font-pixel);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow:
    2px 2px 0 var(--green-shadow),
    0 0 8px rgba(0,255,76,.45);
}
.lead { max-width: 650px; color: rgba(255,255,255,.82); font-size: clamp(18px, 1.55vw, 22px); font-weight: 650; text-shadow: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 950; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 8px 24px rgba(255,61,0,.22); }
.button.primary:hover { background: var(--orange-2); border-color: var(--orange-2); box-shadow: 0 10px 28px rgba(255,61,0,.34); }
.button.catalog { background: #050505; color: #fff; border-color: rgba(255,255,255,.28); box-shadow: none; }
.button.catalog:hover { border-color: var(--green); box-shadow: 0 0 12px rgba(0,255,76,.25); }
.button.catalog.dark { background: #fff; color: var(--black); border-color: rgba(255,255,255,.22); }
.signal-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.signal-strip span, .energy-points span, .contact-badges span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; background: rgba(0,0,0,.72); color: #fff; border: 1px solid rgba(255,61,0,.55); box-shadow: none; font-size: 13px; font-weight: 900; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.signal-strip span:hover { border-color: var(--green); box-shadow: 0 0 10px rgba(0,255,76,.22); transform: translateY(-1px); }
.hero-visual {
  position: relative;
  z-index: 0;
  align-self: stretch;
  min-height: calc(100vh - 78px);
  margin-left: clamp(-140px, -8vw, -80px);
  padding: 0;
  overflow: hidden;
  background: #050505;
}
.hero-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 50%;
  filter: saturate(1.02) contrast(1.02);
}
.hero-visual-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  width: min(245px, 30vw);
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #141414;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
}
.hero-visual-note::before,
.hero-visual-note::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-visual-note::before {
  z-index: 1;
  border: 1px solid rgba(0,255,76,0);
  border-radius: inherit;
  transition: border-color 280ms ease;
}
.hero-visual-note::after {
  z-index: 0;
  background: linear-gradient(
    120deg,
    transparent 18%,
    rgba(255,255,255,0) 38%,
    rgba(255,255,255,.34) 50%,
    rgba(255,255,255,0) 62%,
    transparent 82%
  );
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms ease, opacity 280ms ease;
}
.hero-visual-note > * {
  position: relative;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .hero-visual-note:hover {
    z-index: 3;
    background: rgba(255,255,255,.92);
    border-color: rgba(0,255,76,.45);
    box-shadow:
      0 18px 46px rgba(0,0,0,.16),
      0 0 18px rgba(0,255,76,.16);
    transform: translate3d(0, -7px, 0) scale(1.022);
  }
  .hero-visual-note:hover::before {
    border-color: rgba(0,255,76,.28);
  }
  .hero-visual-note:hover::after {
    opacity: .48;
    transform: translateX(120%);
  }
}
.hero-visual .note-b {
  width: min(220px, 28vw);
  padding: 14px 16px;
}
.hero-visual-note strong {
  font-family: var(--font-display-editorial);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  color: #111;
}
.hero-visual-note span,
.hero-visual-note em {
  font-family: var(--font-body-main);
  color: rgba(5,5,5,.72);
  font-size: 13px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 750;
}
.hero-visual-note em {
  margin-top: 2px;
  color: rgba(5,5,5,.52);
  font-size: 12px;
}
.hero-visual .note-a {
  top: clamp(48px, 8vh, 84px);
  left: clamp(126px, 13vw, 188px);
  right: auto;
}
.hero-visual .note-b {
  right: clamp(28px, 5vw, 74px);
  bottom: clamp(36px, 7vh, 72px);
  left: auto;
}

.section-theme-aggressive h1,
.section-theme-aggressive h2,
.section-theme-aggressive h3 {
  font-family: var(--font-display-aggressive);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.01em;
  text-wrap: balance;
  overflow-wrap: normal;
}
.section-theme-aggressive h1 { font-size: clamp(2.85rem, 4.7vw, 5.45rem); }
.section-theme-aggressive h2 { font-size: clamp(2.35rem, 4.35vw, 5rem); }
.section-theme-aggressive h3 { font-size: clamp(1.45rem, 2vw, 2.65rem); }
.section-theme-aggressive p,
.section-theme-aggressive li,
.section-theme-aggressive input,
.section-theme-aggressive select,
.section-theme-aggressive textarea {
  font-family: var(--font-body-main);
  letter-spacing: -.005em;
}
.section-theme-aggressive p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.65;
}
.section-theme-aggressive .eyebrow,
.section-theme-aggressive .button,
.section-theme-aggressive .signal-strip span,
.section-theme-aggressive .energy-pills span,
.section-theme-aggressive .energy-cta,
.section-theme-aggressive .service-output,
.section-theme-aggressive .service-detail-main span,
.section-theme-aggressive .service-detail li,
.section-theme-aggressive .service-dashboard span,
.section-theme-aggressive .contact-badges span,
.section-theme-aggressive .form-status,
.section-theme-aggressive label {
  font-family: var(--font-micro-dark);
  letter-spacing: .035em;
}
.hero h1 {
  max-width: min(760px, 100%);
  margin-bottom: 22px;
  font-size: clamp(2.04rem, 3.56vw, 3.92rem);
  line-height: .96;
  letter-spacing: -.004em;
}
.hero h1 .pixel-title {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-pixel);
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: .94;
}
.hero-title-main {
  display: block;
  max-width: 12ch;
  text-wrap: balance;
}
.hero-title-nowrap {
  white-space: nowrap;
}
.hero .lead {
  max-width: 600px;
  font-family: var(--font-micro-dark);
  font-size: clamp(.95rem, 1vw, 1.05rem);
  line-height: 1.6;
  letter-spacing: .01em;
}
.needs-section .section-intro h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  line-height: 1;
  text-align: center;
}
.needs-section .section-intro .eyebrow {
  margin-bottom: 16px;
  text-align: center;
}
.needs-section .section-intro p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.need-grid h3 {
  max-width: 18ch;
  font-size: clamp(.95rem, 1.05vw, 1.3rem);
  line-height: 1.1;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}
.energy-content h2 {
  max-width: 610px;
  font-size: clamp(2.6rem, 4.25vw, 4.85rem);
  line-height: .95;
}
.services-intro h2 {
  font-size: clamp(2.35rem, 4.1vw, 4.6rem);
  line-height: .96;
}
.services-intro h3 {
  font-size: clamp(1.6rem, 2.45vw, 2.7rem);
  line-height: 1.02;
}
.service-detail h3 {
  max-width: 12ch;
  font-size: clamp(1.45rem, 1.55vw, 1.9rem);
  line-height: 1.04;
  overflow-wrap: break-word;
}
.services-cta h3 {
  max-width: 760px;
  font-size: clamp(1.7rem, 2.35vw, 2.7rem);
  line-height: 1.02;
}
.contact-copy h2 {
  max-width: 640px;
  font-size: clamp(2.35rem, 4vw, 4.65rem);
  line-height: .98;
}
.section-theme-editorial h1,
.section-theme-editorial h2,
.section-theme-editorial h3 {
  font-family: var(--font-display-editorial);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.02em;
}
.section-theme-editorial h2 { font-size: clamp(2.6rem, 5.2vw, 5.8rem); }
.section-theme-editorial h3 { font-size: clamp(1.7rem, 2.4vw, 3rem); }
.section-theme-editorial p,
.section-theme-editorial li,
.section-theme-editorial span {
  font-family: var(--font-body-main);
  letter-spacing: -.005em;
}
.section-theme-editorial p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.65;
}
.section-theme-editorial .eyebrow,
.section-theme-editorial .button,
.section-theme-editorial .product-category,
.section-theme-editorial .text-link,
.section-theme-editorial .benefit {
  font-family: var(--font-micro-light);
  letter-spacing: .035em;
}
.pixel-title,
.energy-eyebrow,
.need-grid span,
.service-number {
  font-family: var(--font-pixel);
}

.section { padding: clamp(74px, 8vw, 124px) clamp(20px, 5vw, 78px); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-intro { margin-bottom: 42px; }
.section-intro p { max-width: 760px; color: #d7d7d7; font-size: 18px; }
.narrow { max-width: 880px; text-align: center; }
.light h2, .light p { color: #fff; }

.needs-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(5,5,5,.76), rgba(5,5,5,.86)),
    radial-gradient(circle at 16% 8%, rgba(0,255,56,.10), transparent 28%),
    radial-gradient(circle at 82% 92%, rgba(240,52,0,.12), transparent 34%),
    url('/assets/needs-background.png') center/cover;
  color: #fff;
}
.needs-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 170px;
  background: linear-gradient(180deg, transparent, #090604 78%);
  pointer-events: none;
}
.need-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.need-grid article { padding: 28px; border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 18px 50px rgba(0,0,0,.24); }
.need-grid span { color: var(--green); font-family: var(--font-pixel); font-size: 22px; text-shadow: 2px 2px 0 var(--green-shadow); }
.need-grid p { color: #d7d7d7; margin: 0; }

.energy-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: clamp(58px, 6vw, 84px) clamp(22px, 5vw, 82px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 92, 0, 0.24), transparent 35%),
    radial-gradient(circle at 25% 84%, rgba(0, 255, 90, 0.10), transparent 34%),
    linear-gradient(110deg, #030503 0%, #080403 45%, #160702 100%);
  color: #fff;
}
.energy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.88) 30%, rgba(0,0,0,.42) 58%, rgba(0,0,0,.10) 100%);
  pointer-events: none;
}
.energy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255,92,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,90,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .28;
  pointer-events: none;
}
.energy-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.energy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .94;
  filter: contrast(1.06) saturate(1.08) drop-shadow(0 0 34px rgba(255,92,0,.22));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.18) 16%, black 38%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.18) 16%, black 38%);
}
.energy-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}
.energy-eyebrow {
  margin: 0 0 24px;
  color: #7dffab;
  font-family: var(--font-pixel);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0,255,90,.7), 2px 2px 0 rgba(214,0,255,.35);
}
.energy-eyebrow::after {
  content: "";
  display: block;
  width: 136px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, #ff5c00, rgba(255,92,0,.2));
  box-shadow: 0 0 12px rgba(255,92,0,.9);
}
.energy-content h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.6rem, 4.25vw, 4.85rem);
  line-height: .95;
  text-shadow: 0 10px 38px rgba(0,0,0,.65);
}
.energy-content h2 span { color: #ff5c00; text-shadow: 0 0 24px rgba(255,92,0,.34); }
.energy-content p {
  max-width: 590px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 600;
}
.energy-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
  margin: 24px 0 28px;
}
.energy-pills span {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,92,0,.82);
  background: rgba(0,0,0,.38);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: inset 0 0 14px rgba(255,92,0,.12), 0 0 12px rgba(255,92,0,.28);
  backdrop-filter: blur(10px);
}
.energy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 26px 0 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4b00, #f06418 62%, rgba(255,92,0,.24));
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 0 18px rgba(255,92,0,.55), 0 0 44px rgba(255,92,0,.20), 0 18px 34px rgba(0,0,0,.45);
}
.energy-cta b { font-size: 28px; font-weight: 500; }

.solutions-section { background: var(--paper); color: var(--black); }
.split-intro { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: end; }
.split-intro p { color: #403c36; font-weight: 650; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; border-radius: 28px; background: #fff; border: 1px solid rgba(5,5,5,.1); box-shadow: 0 0 0 2px rgba(0,255,56,.54), 0 0 16px rgba(0,255,56,.72), 0 0 34px rgba(214,0,255,.46), 0 0 52px rgba(255,59,0,.18), 0 16px 38px rgba(5,5,5,.12); transition: transform .26s ease, box-shadow .26s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 0 0 2px rgba(0,255,56,.90), 0 0 18px rgba(0,255,56,.75), 0 0 42px rgba(214,0,255,.55), 0 0 68px rgba(255,92,0,.22), 0 28px 70px rgba(5,5,5,.20); }
.product-image { display: grid; place-items: center; padding: 16px; min-height: 280px; background: radial-gradient(circle at 50% 42%, #5d5d5d 0%, #222 62%, #080808 100%); box-shadow: inset 0 0 0 1px rgba(255,92,0,.48), inset 0 0 26px rgba(255,92,0,.22), inset 0 0 38px rgba(0,255,56,.08); }
.product-image img { width: 100%; height: 250px; object-fit: contain; object-position: center; border-radius: 18px; }
.product-card:nth-child(3) .product-image img { object-fit: contain; object-position: center center; transform: scale(.96); }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.product-category { color: var(--orange); font-size: 12px; font-weight: 950; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin-top: 10px; font-size: 24px; }
.product-card p { color: #4a4640; }
.benefit { margin: 4px 0 16px; padding: 12px 14px; border-radius: 14px; background: #111; color: #fff; font-weight: 950; border-left: 4px solid var(--orange); }
.product-card ul { margin: 0 0 22px; padding-left: 18px; color: #4a4640; }
.product-card li { margin: 7px 0; }
.text-link { margin-top: auto; color: var(--orange-2); font-weight: 950; }
.text-link::after { content: " ->"; }

.services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(240,52,0,.20), transparent 28%),
    radial-gradient(circle at 86% 92%, rgba(0,255,76,.08), transparent 30%),
    linear-gradient(180deg, #040404, #111 48%, #050505);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  color: #fff;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,61,0,.08), transparent 42%, rgba(255,0,255,.035));
  pointer-events: none;
}
.services-section > * { position: relative; z-index: 1; }
.services-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin-bottom: 34px;
  text-align: left;
}
.services-intro h2 { margin-bottom: 14px; font-size: clamp(2.35rem, 4.1vw, 4.6rem); line-height: .96; }
.services-intro h3 {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.6rem, 2.45vw, 2.7rem);
  line-height: 1.02;
}
.services-intro p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.76); font-weight: 650; }
.services-intro strong {
  display: block;
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
}
.services-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 22px;
}
.service-path {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0;
  margin: 0 0 24px;
  padding: 34px 0 0;
  list-style: none;
}
.service-path::before,
.service-path::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 56px;
  height: 2px;
  border-radius: 999px;
}
.service-path::before { background: rgba(255,255,255,.16); }
.service-path::after {
  right: auto;
  width: 0;
  background: linear-gradient(90deg, var(--orange), rgba(255,90,31,.82), rgba(0,255,76,.42));
  box-shadow: 0 0 10px rgba(255,61,0,.30);
  transition: width .9s ease;
}
.services-map.is-visible .service-path::after { width: 82%; }
.service-path li { position: relative; min-width: 0; }
.service-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  min-height: 166px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
}
.service-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #090909;
  border: 2px solid rgba(255,61,0,.86);
  color: #ff6a2a;
  font-family: var(--font-pixel);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 0 5px rgba(5,5,5,.92), inset 0 0 0 1px rgba(255,255,255,.06);
  transition: background .24s ease, border-color .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}
.service-step-copy {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
  width: min(100%, 17ch);
  min-width: 0;
}
.service-step-copy strong {
  max-width: 100%;
  font-family: var(--font-micro-dark);
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  line-height: 1.08;
  letter-spacing: .02em;
  overflow-wrap: break-word;
}
.service-step-copy em {
  display: block;
  max-width: 16ch;
  color: rgba(255,255,255,.62);
  font-size: clamp(.68rem, .75vw, .76rem);
  font-style: normal;
  font-weight: 850;
  line-height: 1.32;
  overflow-wrap: break-word;
}
.service-step p {
  display: none;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.45;
}
.service-step:hover .service-number,
.service-step.is-active .service-number {
  background: var(--orange);
  color: #fff;
  border-color: rgba(255,255,255,.92);
  transform: translateY(-2px);
  box-shadow: 0 0 0 5px rgba(5,5,5,.94), 0 8px 18px rgba(255,61,0,.34), inset 0 0 0 1px rgba(255,255,255,.20);
}
.service-step.is-active .service-step-copy strong { color: #fff; }
.service-step.is-active .service-step-copy em { color: rgba(255,255,255,.86); }
.service-detail-shell {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 24px 56px rgba(0,0,0,.30), inset 0 0 0 1px rgba(255,61,0,.08);
  overflow: visible;
}
.service-detail-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255,61,0,.16), transparent 30%), radial-gradient(circle at 88% 82%, rgba(0,255,76,.08), transparent 32%);
  pointer-events: none;
}
.service-detail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(300px, .76fr);
  gap: 22px;
  align-items: stretch;
  min-height: 430px;
  padding: clamp(24px, 3.4vw, 34px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
}
.service-detail.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.service-detail-main span {
  color: var(--orange);
  font-family: var(--font-pixel);
  font-size: 18px;
  font-weight: 700;
}
.service-detail-main {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-detail h3 { margin: 10px 0 8px; max-width: 12ch; font-size: clamp(1.45rem, 1.55vw, 1.9rem); line-height: 1.04; overflow-wrap: break-word; }
.service-detail[data-service-detail="3"] h3 {
  max-width: 11ch;
  font-size: clamp(1.3rem, 1.35vw, 1.68rem);
  line-height: 1.06;
}
.service-kicker { margin-bottom: 14px; color: var(--green); font-weight: 950; text-shadow: 1px 1px 0 rgba(255,0,255,.42); }
.service-detail-main > p:not(.service-kicker) { color: rgba(255,255,255,.76); font-size: 16px; font-weight: 650; }
.service-output {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,61,0,.20);
  color: #fff;
  border: 1px solid rgba(255,61,0,.70);
  box-shadow: inset 0 0 10px rgba(255,61,0,.08);
}
.service-detail ul {
  display: grid;
  align-content: start;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail li {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(5,5,5,.34);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 850;
}
.service-detail li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255,61,0,.64);
}
.service-dashboard {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  border-radius: 22px;
  background: #080808;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 20px rgba(255,61,0,.06);
}
.service-dashboard span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,61,0,.14), rgba(255,255,255,.035));
  color: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 13px;
  font-weight: 950;
}
.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(255,61,0,.22), rgba(255,255,255,.055) 52%, rgba(0,255,76,.07));
  border: 1px solid rgba(255,255,255,.13);
}
.services-cta h3 { max-width: 760px; margin: 0 0 8px; color: #fff; font-size: clamp(1.7rem, 2.35vw, 2.7rem); line-height: 1.02; }
.services-cta p { max-width: 760px; margin: 0; color: rgba(255,255,255,.74); font-weight: 650; }
.services-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; min-width: 300px; }

.benchmark-section { display: grid; grid-template-columns: minmax(340px,.92fr) minmax(0,1.08fr); gap: clamp(34px,6vw,82px); align-items: center; background: var(--paper); color: var(--black); }
.benchmark-section > * { max-width: none; }
.why-visual img { width: 100%; aspect-ratio: 1.06/1; object-fit: cover; border-radius: 34px; background: #111; box-shadow: var(--shadow); }
.why-copy p { color: #3f3a35; font-weight: 650; }
.benchmark-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 26px; }
.benchmark-grid article { padding: 18px; border-radius: 18px; background: #fff; border: 1px solid rgba(5,5,5,.1); box-shadow: 0 12px 28px rgba(5,5,5,.08); }
.benchmark-grid strong { display: block; margin-bottom: 6px; font-family: var(--font-display-editorial); font-size: 22px; font-weight: 400; letter-spacing: -.01em; }
.benchmark-grid span { color: #5d5750; font-weight: 650; }

.contact-section { display: grid; grid-template-columns: minmax(280px,.82fr) minmax(320px,1.18fr); gap: clamp(34px,6vw,82px); background: linear-gradient(135deg, #0b0b0b, #1c0d07 58%, #050505); color: #fff; }
.contact-section > * { max-width: none; }
.contact-copy p { color: #e6ddd5; font-size: 18px; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.contact-badges span { background: rgba(255,255,255,.08); border-color: rgba(240,52,0,.4); }
.contact-form { display: grid; grid-template-columns: repeat(2,1fr); align-items: start; gap: 14px; padding: 26px; border-radius: 28px; background: rgba(255,255,255,.96); color: var(--black); box-shadow: var(--shadow); }
label { display: grid; align-content: start; gap: 8px; color: #403c36; font-size: 13px; font-weight: 950; }
input, select, textarea { width: 100%; border: 1px solid rgba(5,5,5,.16); border-radius: 14px; padding: 13px 14px; background: #fff; color: var(--black); font: inherit; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input, select { min-height: 48px; }
select[name="interest"] { height: 48px; align-self: start; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(240,52,0,.12); }
textarea, .check, .contact-form button, .form-status { grid-column: 1/-1; }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; }
.check input { width: auto; margin-top: 4px; }
.form-status { min-height: 22px; margin: 0; color: var(--orange-2); font-weight: 950; }

.site-footer { display: grid; grid-template-columns: 190px minmax(0,1fr) auto; gap: 28px; align-items: center; padding: 34px clamp(20px,5vw,78px); background: #fff; color: var(--black); }
.site-footer img { width: 180px; }
.site-footer div { display: grid; gap: 4px; }
.site-footer span, .site-footer a { color: #4a4640; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease var(--delay,0ms), transform .55s ease var(--delay,0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.admin-shell { min-height: calc(100vh - 78px); background: var(--paper); }
.admin-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding-top: 0; }
.admin-list { display: grid; gap: 12px; }
.lead-card { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.json-editor { min-height: 440px; margin-bottom: 12px; font-family: Consolas, monospace; font-size: 13px; }

@media (max-width: 1120px) {
  .hero, .energy-feature, .benchmark-section, .contact-section, .split-intro { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #050505;
  }
  .hero-left-panel {
    min-height: auto;
    padding: 70px clamp(28px, 7vw, 84px) 62px;
    clip-path: none;
  }
  .hero-left-content { max-width: 780px; }
  .hero-visual { width: 100%; max-width: none; min-height: 560px; margin-left: 0; padding: 0; transform: none; }
  .hero-main { object-position: 50% 48%; }
  .hero-visual-note { width: min(230px, 36vw); }
  .hero-visual .note-a { top: 42px; left: clamp(28px, 5vw, 64px); }
  .hero-visual .note-b { right: clamp(28px, 5vw, 64px); bottom: 34px; }
  .energy-hero { min-height: auto; padding: 70px 22px 420px; }
  .energy-visual { width: 100%; top: auto; bottom: 0; height: 52%; opacity: .72; }
  .energy-hero::before { background: linear-gradient(180deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.9) 42%, rgba(0,0,0,.38) 100%); }
  .energy-content h2 { font-size: clamp(2.45rem, 6vw, 3.9rem); max-width: 640px; }
  .energy-pills { grid-template-columns: 1fr; }
  .product-grid, .need-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .needs-section .section-intro h2 { max-width: 720px; font-size: clamp(1.75rem, 4.6vw, 3rem); }
  .need-grid h3 { max-width: 18ch; font-size: clamp(.95rem, 1.9vw, 1.22rem); }
  .contact-copy h2 { font-size: clamp(2.3rem, 6vw, 4rem); }
  .services-intro, .services-map, .services-cta { grid-template-columns: 1fr; }
  .services-actions { justify-content: flex-start; min-width: 0; }
  .service-detail-shell { min-height: 430px; }
  .service-detail { min-height: 430px; }
  .service-dashboard { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; gap: 14px; }
  .brand img { width: 168px; }
  nav { width: 100%; overflow-x: auto; gap: 14px; padding-bottom: 4px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero { padding: 0; gap: 0; }
  .hero-left-panel { padding: 38px 18px 42px; }
  .spacetime-grid-wrapper { opacity: .72; }
  .hero h1 { font-size: clamp(1.48rem, 6.56vw, 2.04rem); line-height: .98; max-width: 100%; }
  .hero h1 .pixel-title { font-size: clamp(40px, 13vw, 58px); line-height: .98; }
  .hero-title-main { max-width: 12ch; }
  .lead { font-size: 17px; }
  .hero .lead { font-size: clamp(.9rem, 3.6vw, 1rem); line-height: 1.55; }
  .hero-actions { gap: 10px; margin-top: 26px; }
  .button { width: 100%; min-height: 50px; padding: 0 18px; }
  .signal-strip { margin-top: 26px; }
  .hero-visual { min-height: 520px; padding: 0; }
  .hero-main { object-position: 50% 50%; }
  .hero-visual-note {
    width: min(210px, calc(100% - 36px));
    padding: 12px 14px;
    border-radius: 14px;
  }
  .hero-visual .note-b { width: min(190px, calc(100% - 36px)); }
  .hero-visual-note strong { font-size: 22px; }
  .hero-visual-note span,
  .hero-visual-note em { font-size: 12px; }
  .hero-visual .note-a { top: 28px; left: 18px; right: auto; }
  .hero-visual .note-b { right: 18px; bottom: 22px; left: auto; }
  .product-grid, .need-grid, .benchmark-grid, .contact-form, .admin-grid { grid-template-columns: 1fr; }
  .services-section { background-size: 38px 38px, 38px 38px, auto, auto, auto; }
  .needs-section .section-intro h2 { font-size: clamp(1.55rem, 7.4vw, 2.35rem); }
  .need-grid h3 { max-width: none; font-size: clamp(1rem, 5.2vw, 1.35rem); line-height: 1.12; }
  .energy-content h2 { font-size: clamp(2.25rem, 9vw, 3.2rem); }
  .services-intro h2 { font-size: clamp(2.15rem, 9vw, 3rem); }
  .services-intro h3 { font-size: clamp(1.35rem, 6vw, 1.9rem); }
  .service-path {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 0 0 18px;
    margin-bottom: 22px;
  }
  .service-path::before {
    left: 18px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 2px;
    height: auto;
  }
  .service-path::after {
    left: 18px;
    right: auto;
    top: 24px;
    width: 2px;
    height: 0;
  }
  .services-map.is-visible .service-path::after { width: 2px; height: calc(100% - 48px); }
  .service-step {
    grid-template-columns: 52px minmax(0,1fr);
    justify-items: start;
    min-height: 0;
    gap: 12px;
    padding: 0 0 0 12px;
    text-align: left;
  }
  .service-step-copy {
    justify-items: start;
    width: 100%;
    max-width: none;
  }
  .service-step-copy strong { font-size: clamp(.92rem, 4vw, 1.08rem); }
  .service-step-copy em { max-width: none; font-size: .78rem; }
  .service-number { grid-row: 1 / span 2; }
  .service-step p {
    display: block;
    grid-column: 2;
    font-size: 13px;
  }
  .service-detail-shell {
    display: grid;
    gap: 14px;
    min-height: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .service-detail-shell::before { content: none; }
  .service-detail {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.13);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .service-detail h3 { max-width: none; font-size: clamp(1.35rem, 6vw, 1.85rem); }
  .service-detail[data-service-detail="3"] h3 { max-width: none; font-size: clamp(1.25rem, 5.6vw, 1.7rem); }
  .service-detail-main > p:not(.service-kicker) { font-size: 15px; }
  .service-output { margin-top: 8px; }
  .service-dashboard { grid-template-columns: 1fr; }
  .services-cta { padding: 22px; }
  .services-cta h3 { font-size: clamp(1.45rem, 7vw, 2.1rem); }
  .contact-copy h2 { font-size: clamp(2.05rem, 9vw, 3rem); }
  .services-actions { display: grid; grid-template-columns: 1fr; }
  .product-image { min-height: 230px; }
  .product-image img { height: 210px; }
  .site-footer { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual-note,
  .hero-visual-note::before,
  .hero-visual-note::after {
    transition: none;
  }
  .hero-visual-note:hover {
    transform: none;
  }
}
