:root {
  --night: #07111f;
  --night-raised: #0d1a2b;
  --violet: #9b93c2;
  --violet-bright: #c3baff;
  --electric: #55ddff;
  --electric-soft: #8eeaff;
  --green: #6fffc0;
  --text: #f7f8fb;
  --muted: #8796aa;
  --mono: "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
  --sans: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--night);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

.minimal-site {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 44%, rgba(85, 221, 255, 0.08), transparent 28%),
    radial-gradient(circle at 62% 55%, rgba(155, 147, 194, 0.14), transparent 36%),
    linear-gradient(145deg, #07111f 0%, #091525 58%, #07101c 100%);
  transition: background 420ms ease;
}

.minimal-site[data-theme="airtrace"] {
  --electric: #55ffc8;
  --electric-soft: #a5ffe2;
  --violet-bright: #7ccfff;
  --green: #55ffc8;
  background:
    radial-gradient(circle at 74% 42%, rgba(85, 255, 200, 0.1), transparent 30%),
    radial-gradient(circle at 61% 58%, rgba(78, 168, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #06141d 0%, #081c27 58%, #06121d 100%);
}

.minimal-site[data-theme="sensornet"] {
  --electric: #ff76d8;
  --electric-soft: #ffb8ed;
  --violet-bright: #b7a9ff;
  --green: #ffcf70;
  background:
    radial-gradient(circle at 76% 44%, rgba(255, 118, 216, 0.1), transparent 29%),
    radial-gradient(circle at 60% 55%, rgba(142, 111, 255, 0.14), transparent 38%),
    linear-gradient(145deg, #120b1d 0%, #151026 58%, #0c0c1a 100%);
}

.minimal-site[data-theme="future"] {
  --electric: #aaa3bd;
  --electric-soft: #d0cada;
  --violet-bright: #9c95af;
  --green: #aaa3bd;
  background:
    radial-gradient(circle at 74% 44%, rgba(170, 163, 189, 0.09), transparent 30%),
    linear-gradient(145deg, #0c111b 0%, #111723 58%, #0b1018 100%);
}

.ambient-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(128, 151, 181, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 151, 181, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.minimal-site::before {
  position: absolute;
  z-index: -1;
  top: -28%;
  right: 8%;
  width: 42vw;
  height: 80vh;
  border: 1px solid rgba(85, 221, 255, 0.08);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  transform: rotate(-22deg);
}

.minimal-header,
.minimal-footer {
  display: flex;
  width: min(1700px, calc(100% - 96px));
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.minimal-footer a {
  color: #75869b;
  transition: color 160ms ease;
}

.minimal-footer a:hover,
.minimal-footer a:focus-visible {
  color: var(--electric-soft);
}

.minimal-header {
  position: relative;
  z-index: 50;
  min-height: 88px;
  border-bottom: 1px solid rgba(151, 167, 189, 0.12);
}

.brand-lockup,
.entry-brand {
  display: grid;
  gap: 4px;
}

.brand-name {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-name img {
  width: 28px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(195, 186, 255, 0.2));
}

.brand-name strong {
  color: #fff;
  font-size: 30px;
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-lockup small,
.entry-brand small {
  color: #91a0b4;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.045em;
  line-height: 1.3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  position: relative;
}

.system-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aab6c6;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-state > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 7px var(--green),
    0 0 16px rgba(111, 255, 192, 0.42);
  animation: status-pulse 2.8s ease-in-out infinite;
}

.minimal-hero {
  display: grid;
  width: min(1700px, calc(100% - 96px));
  margin-inline: auto;
  grid-template-columns: minmax(520px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: 40px;
}

.minimal-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  padding: 64px 0;
}

.module-transition {
  animation: module-enter 360ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.minimal-kicker {
  margin-bottom: 26px;
  color: var(--electric-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.minimal-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(50px, 5.7vw, 82px);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.minimal-copy h1 span {
  display: block;
  color: var(--violet-bright);
  font-weight: 420;
  text-shadow: 0 0 28px rgba(155, 147, 194, 0.18);
}

.minimal-copy > p {
  max-width: 550px;
  margin: 28px 0 0;
  color: #a3afbe;
  font-size: 16px;
  line-height: 1.65;
}

.program-panel {
  position: relative;
  max-width: 555px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--electric) 22%, transparent);
  border-radius: 16px;
  background: rgba(7, 17, 31, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.program-panel-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.program-panel-head > img {
  width: 34px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--electric) 30%, transparent));
}

.program-panel-head > div {
  display: grid;
  gap: 3px;
}

.program-panel-head span,
.contact-label {
  color: var(--electric-soft);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.program-panel h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
}

.program-panel > p {
  max-width: 470px;
  margin: 13px 0 0;
  color: #8e9caf;
  font-size: 12px;
  line-height: 1.55;
}

.powertrace-workflow {
  margin-top: 14px;
  border-block: 1px solid rgba(155, 164, 181, 0.1);
}

.workflow-heading {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #c5cfdb;
  font: 680 9px/1.2 var(--mono);
  letter-spacing: 0.055em;
  list-style: none;
  text-transform: uppercase;
}

.workflow-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-left: 2px;
  padding: 2px 8px;
  border: 1px solid color-mix(in srgb, var(--electric) 32%, transparent);
  border-radius: 999px;
  color: var(--electric-soft);
  background: color-mix(in srgb, var(--electric) 6%, transparent);
  cursor: pointer;
  font: inherit;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    text-shadow 160ms ease;
}

.workflow-link:hover,
.workflow-link:focus-visible {
  border-color: var(--electric);
  color: #fff;
  background: color-mix(in srgb, var(--electric) 12%, transparent);
  text-shadow: 0 0 10px color-mix(in srgb, var(--electric) 70%, transparent);
  transform: translateY(-1px);
}

.workflow-collapse {
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(155, 164, 181, 0.14);
  border-radius: 6px;
  color: #91a1b6;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  font: 650 7px/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.workflow-collapse:hover {
  border-color: color-mix(in srgb, var(--electric) 42%, transparent);
  color: #fff;
  background: color-mix(in srgb, var(--electric) 7%, transparent);
}

.powertrace-workflow ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 6px;
  margin: 0;
  padding: 2px 0 12px;
  list-style: none;
}

.powertrace-workflow li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  min-height: 108px;
  padding: 9px;
  border: 1px solid rgba(155, 164, 181, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.powertrace-workflow li:hover {
  border-color: color-mix(in srgb, var(--electric) 46%, transparent);
  background:
    radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--electric) 10%, transparent), transparent 46%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    0 0 18px color-mix(in srgb, var(--electric) 10%, transparent);
  transform: translateY(-3px);
}

.powertrace-workflow li > span {
  color: var(--electric-soft);
  font: 650 8px/1.4 var(--mono);
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.powertrace-workflow li strong {
  display: block;
  color: #b7c2cf;
  font-size: 9px;
  font-weight: 680;
  transition: color 180ms ease;
}

.powertrace-workflow li p,
.powertrace-workflow .workflow-note {
  margin: 4px 0 0;
  color: #68788c;
  font-size: 8px;
  line-height: 1.45;
  transition: color 180ms ease;
}

.powertrace-workflow li:hover > span {
  color: #fff;
  text-shadow: 0 0 9px var(--electric);
}

.powertrace-workflow li:hover strong {
  color: #fff;
}

.powertrace-workflow li:hover p {
  color: #aab8c8;
}

.powertrace-workflow .workflow-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -2px 0 11px;
  color: #9aa9ba;
  font-size: 8.5px;
}

.workflow-note > span:first-child {
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--electric) 32%, transparent);
  border-radius: 50%;
  color: var(--electric-soft);
  font: 700 8px/1 var(--mono);
  place-items: center;
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.enter-program,
.request-demo,
.contact-trigger {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 13px;
  border-radius: 9px;
  cursor: pointer;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.enter-program {
  border: 1px solid color-mix(in srgb, var(--electric) 52%, transparent);
  color: #06121d;
  background: var(--electric-soft);
  box-shadow: 0 0 20px color-mix(in srgb, var(--electric) 17%, transparent);
}

.enter-program:hover {
  transform: translateY(-2px);
}

.request-demo {
  border: 1px solid color-mix(in srgb, var(--electric) 24%, transparent);
  color: var(--electric-soft);
  background: color-mix(in srgb, var(--electric) 5%, transparent);
}

.request-demo:hover {
  border-color: color-mix(in srgb, var(--electric) 52%, transparent);
  color: #fff;
  background: color-mix(in srgb, var(--electric) 10%, transparent);
  transform: translateY(-2px);
}

.enter-program.unavailable {
  border-color: rgba(137, 150, 168, 0.14);
  color: #647287;
  background: rgba(137, 150, 168, 0.06);
  box-shadow: none;
  cursor: not-allowed;
}

.contact-trigger {
  border: 1px solid rgba(155, 164, 181, 0.18);
  color: #a8b5c5;
  background: rgba(255, 255, 255, 0.025);
}

.contact-trigger:hover {
  border-color: color-mix(in srgb, var(--electric) 42%, transparent);
  color: var(--text);
  background: color-mix(in srgb, var(--electric) 7%, transparent);
}

.contact-picker {
  position: absolute;
  z-index: 30;
  top: calc(100% + 12px);
  right: 0;
  width: min(460px, calc(100vw - 48px));
  margin-top: 0;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--electric) 28%, transparent);
  border-radius: 13px;
  background: rgba(8, 19, 33, 0.97);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 24px color-mix(in srgb, var(--electric) 8%, transparent);
  backdrop-filter: blur(18px);
  animation: contact-in 180ms ease-out both;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 5px;
  margin-top: 11px;
}

.contact-options a {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #9daabb;
  font-size: 10px;
  transition:
    border-color 150ms ease,
    color 150ms ease,
    background 150ms ease;
}

.contact-options a:hover {
  border-color: color-mix(in srgb, var(--electric) 24%, transparent);
  color: #fff;
  background: color-mix(in srgb, var(--electric) 6%, transparent);
}

.brand-lockup:focus-visible,
.contact-trigger:focus-visible,
.contact-options a:focus-visible,
.enter-program:focus-visible,
.request-demo:focus-visible,
.workflow-link:focus-visible,
.workflow-collapse:focus-visible,
.entry-card > a:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
}

.hive-stage {
  position: relative;
  min-width: 0;
  min-height: 570px;
}

.electric-haze {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 400px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(85, 221, 255, 0.08), transparent 58%),
    radial-gradient(circle at 58% 56%, rgba(155, 147, 194, 0.14), transparent 42%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

.hive-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 552px;
  height: 476px;
  transform: translate(-50%, -50%);
}

.hive-cell {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 128px;
  padding: 0;
  border: 0;
  outline: none;
  color: var(--text);
  cursor: default;
  font: inherit;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(155, 147, 194, 0.34);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
  transition:
    transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 220ms ease,
    background 220ms ease;
  touch-action: none;
  user-select: none;
}

.hive-cell::before {
  position: absolute;
  z-index: -1;
  inset: 1px;
  clip-path: inherit;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
    rgba(11, 24, 41, 0.96);
  transition: background 220ms ease;
}

.cell-surface {
  display: grid;
  width: 100%;
  height: 100%;
  align-content: center;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.cell-surface img {
  width: 38px;
  height: 44px;
  object-fit: contain;
  opacity: 0.76;
  filter: saturate(0.8);
  transition:
    opacity 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.cell-surface strong {
  color: #d9e2ee;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: -0.01em;
  text-shadow: 0 0 0 transparent;
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.cell-surface small {
  max-width: 96px;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hive-cell:hover,
.hive-cell:focus-visible,
.hive-cell.selected {
  z-index: 8;
  background: linear-gradient(145deg, var(--electric), var(--violet-bright));
  filter:
    drop-shadow(0 0 8px rgba(85, 221, 255, 0.75))
    drop-shadow(0 0 24px rgba(155, 147, 194, 0.34));
  transform: translateY(-9px) scale(1.055);
}

.hive-cell[draggable="true"] {
  cursor: grab;
}

.hive-cell.is-drag-source {
  opacity: 0.42;
  filter: saturate(0.5);
  transform: scale(0.94);
}

.hive-cell.is-drop-target {
  z-index: 9;
  background: linear-gradient(145deg, #f3fbff, var(--electric));
  filter:
    drop-shadow(0 0 10px rgba(229, 251, 255, 0.95))
    drop-shadow(0 0 30px rgba(85, 221, 255, 0.6));
  transform: translateY(-7px) scale(1.08);
}

.hive-drag-ghost {
  position: fixed;
  z-index: 3000;
  width: 112px;
  height: 128px;
  overflow: hidden;
  pointer-events: none;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(145deg, rgba(85, 221, 255, 0.96), var(--violet-bright));
  box-shadow:
    0 0 16px rgba(85, 221, 255, 0.68),
    0 18px 42px rgba(0, 0, 0, 0.38);
  opacity: 0.92;
  transform: translate(-50%, -56%) scale(0.78);
}

.hive-drag-ghost .cell-surface {
  background:#102039;
}

.hive-cell:hover::before,
.hive-cell:focus-visible::before,
.hive-cell.selected::before {
  background:
    radial-gradient(circle at 50% 45%, rgba(85, 221, 255, 0.11), transparent 45%),
    #0e2035;
}

.hive-cell:hover img,
.hive-cell:focus-visible img,
.hive-cell.selected img {
  opacity: 1;
  filter:
    saturate(1.15)
    drop-shadow(0 0 9px rgba(195, 186, 255, 0.55));
  transform: scale(1.08);
}

.hive-cell:hover small,
.hive-cell:focus-visible small,
.hive-cell.selected small {
  opacity: 1;
  transform: translateY(0);
}

.hive-cell:hover strong,
.hive-cell:focus-visible strong,
.hive-cell.selected strong {
  color: #fff;
  text-shadow:
    0 0 7px var(--electric),
    0 0 18px color-mix(in srgb, var(--electric) 58%, transparent);
  transform: translateY(-1px);
}

.active {
  z-index: 4;
  cursor: pointer;
  background: linear-gradient(145deg, rgba(85, 221, 255, 0.88), var(--violet-bright));
  filter:
    drop-shadow(0 0 7px rgba(85, 221, 255, 0.42))
    drop-shadow(0 0 18px rgba(155, 147, 194, 0.25));
  animation: active-charge 4.6s ease-in-out infinite;
}

.active::before {
  inset: 2px;
  background:
    radial-gradient(circle at 50% 42%, rgba(85, 221, 255, 0.1), transparent 48%),
    #102039;
}

.active .cell-surface img {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(195, 186, 255, 0.45));
}

.active .cell-surface strong {
  color: #fff;
}

.active .cell-surface small {
  color: var(--green);
  opacity: 1;
  transform: none;
}

.development {
  z-index: 4;
  cursor: pointer;
  background: rgba(155, 147, 194, 0.55);
}

.future {
  background: repeating-linear-gradient(
    135deg,
    rgba(155, 147, 194, 0.26) 0 5px,
    rgba(85, 221, 255, 0.05) 5px 10px
  );
  filter: none;
}

.future::before {
  inset: 2px;
  background: rgba(8, 20, 35, 0.82);
}

.future .cell-surface span {
  color: rgba(155, 147, 194, 0.22);
  font-family: var(--mono);
  font-size: 18px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.future .cell-surface small {
  position: absolute;
  bottom: 42px;
}

.future:hover .cell-surface span {
  color: var(--electric-soft);
  transform: rotate(45deg);
}

.future.selected .cell-surface span {
  color: var(--electric-soft);
  transform: rotate(45deg);
}

.cell-a1 {
  top: 0;
  left: 0;
}

.cell-a2 {
  top: 0;
  left: 120px;
}

.cell-b1 {
  top: 108px;
  left: 60px;
}

.cell-b2 {
  top: 108px;
  left: 180px;
}

.cell-b3 {
  top: 108px;
  left: 300px;
}

.cell-b4 {
  top: 108px;
  left: 420px;
}

.cell-c1 {
  top: 216px;
  left: 120px;
}

.cell-c2 {
  top: 216px;
  left: 240px;
}

.cell-c3 {
  top: 216px;
  left: 360px;
}

.cell-d1 {
  top: 324px;
  left: 300px;
}

.hive-energy {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hive-energy-path {
  fill: none;
  stroke: rgba(85, 221, 255, 0.64);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 3 8;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(85, 221, 255, 0.9));
  animation: hive-energy-flow 1.1s linear infinite;
}

.hive-energy-path:nth-of-type(2) {
  animation-delay: -0.38s;
}

.hive-energy-path:nth-of-type(3) {
  animation-delay: -0.72s;
}

.hive-energy-node {
  fill: #effdff;
  filter:
    drop-shadow(0 0 3px #fff)
    drop-shadow(0 0 8px var(--electric));
}

.energy-caption {
  position: absolute;
  z-index: 7;
  display:block;
  padding: 3px 7px;
  border: 1px solid rgba(85, 221, 255, 0.32);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(6, 18, 31, 0.86);
  box-shadow: 0 0 18px rgba(85, 221, 255, 0.18);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition:
    left 260ms ease,
    top 260ms ease,
    opacity 180ms ease;
}

.energy-caption[hidden] {
  display:none;
}

@keyframes hive-energy-flow {
  to { stroke-dashoffset: -22; }
}

.minimal-footer {
  min-height: 58px;
  border-top: 1px solid rgba(151, 167, 189, 0.1);
  color: #536278;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.entry-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  color: var(--text);
  background:
    linear-gradient(rgba(85, 221, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 221, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(85, 221, 255, 0.09), transparent 28%),
    var(--night);
  background-size:
    44px 44px,
    44px 44px,
    auto,
    auto;
}

.entry-card {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(85, 221, 255, 0.2);
  border-radius: 18px;
  background: rgba(11, 24, 41, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.entry-brand {
  width: max-content;
}

.entry-product {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 52px;
}

.entry-product > img {
  width: 52px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(155, 147, 194, 0.36));
}

.entry-product span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.entry-product h1 {
  margin: 5px 0 0;
  font-size: 32px;
}

.entry-card > p {
  margin: 25px 0;
  color: #8e9caf;
  font-size: 13px;
  line-height: 1.6;
}

.entry-card > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(85, 221, 255, 0.25);
  border-radius: 9px;
  color: var(--electric-soft);
  font: 700 9px/1 var(--mono);
  text-transform: uppercase;
}

@keyframes current-flow {
  0% {
    left: 0;
    opacity: 0;
  }
  12%,
  86% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 5px);
    opacity: 0;
  }
}

@keyframes active-charge {
  0%,
  100% {
    filter:
      drop-shadow(0 0 6px rgba(85, 221, 255, 0.34))
      drop-shadow(0 0 16px rgba(155, 147, 194, 0.22));
  }
  50% {
    filter:
      drop-shadow(0 0 9px rgba(85, 221, 255, 0.52))
      drop-shadow(0 0 25px rgba(155, 147, 194, 0.34));
  }
}

@keyframes status-pulse {
  50% {
    opacity: 0.55;
    box-shadow:
      0 0 4px var(--green),
      0 0 10px rgba(111, 255, 192, 0.28);
  }
}

@keyframes module-enter {
  from {
    opacity: 0.72;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) and (min-width: 761px) {
  .minimal-header,
  .minimal-hero,
  .minimal-footer {
    width: calc(100% - 48px);
  }

  .minimal-hero {
    grid-template-columns: minmax(300px, 0.88fr) minmax(340px, 1.12fr);
    gap: 0;
  }

  .minimal-copy h1 {
    font-size: clamp(48px, 6.6vw, 68px);
  }

  .hive-stage {
    min-height: 510px;
  }

  .hive-canvas {
    transform: translate(-50%, -50%) scale(0.72);
  }
}

@media (max-width: 760px) {
  .minimal-site {
    min-height: auto;
  }

  .minimal-hero {
    grid-template-columns: 1fr;
    padding: 58px 0 10px;
  }

  .minimal-copy {
    max-width: 720px;
    padding: 0;
  }

  .hive-stage {
    min-height: 490px;
  }

  .hive-canvas {
    transform: translate(-50%, -50%) scale(0.76);
  }
}

@media (max-width: 680px) {
  .minimal-header,
  .minimal-hero,
  .minimal-footer {
    width: calc(100% - 32px);
  }

  .minimal-header {
    min-height: 104px;
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 12px;
  }

  .brand-name {
    gap: 8px;
  }

  .brand-name img {
    width: 22px;
    height: 26px;
  }

  .brand-name strong {
    font-size: 24px;
  }

  .brand-lockup small,
  .entry-brand small {
    max-width: 188px;
    font-size: 7px;
  }

  .system-state {
    font-size: 8px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .header-contact .contact-trigger {
    width: auto;
    min-height: 34px;
    padding-inline: 10px;
    font-size: 8px;
  }

  .minimal-hero {
    padding-top: 44px;
  }

  .minimal-copy h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

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

  .program-actions {
    display: grid;
  }

  .powertrace-workflow ol {
    grid-template-columns: 1fr;
  }

  .program-actions .enter-program {
    width: 100%;
  }

  .program-actions .request-demo {
    width: 100%;
  }

  .header-contact .contact-picker {
    position: fixed;
    top: 112px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100svh - 128px);
    margin-top: 0;
    overflow-y: auto;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .hive-stage {
    min-height: 330px;
  }

  .hive-canvas {
    top: 47%;
    transform: translate(-50%, -50%) scale(0.59);
  }

  .minimal-footer {
    min-height: 70px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .header-contact .contact-trigger {
    gap: 7px;
    padding-inline: 8px;
    font-size: 7px;
  }

  .system-state {
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
