:root {
  --ink: #f7f5ff;
  --muted: #a8a2b7;
  --bg: #09070f;
  --bg-soft: #100d19;
  --purple: #7d45ff;
  --purple-bright: #9b72ff;
  --purple-pale: #d8c8ff;
  --green: #64f58d;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--purple) var(--bg);
}

body {
  margin: 0;
  min-width: 1100px;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::selection {
  color: #fff;
  background: var(--purple);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-pale));
  box-shadow: 0 0 18px var(--purple);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.13;
  background: radial-gradient(circle, var(--purple) 0%, transparent 67%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px clamp(38px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: padding 0.35s ease, background 0.35s ease, border 0.35s ease;
}

.topbar.compact {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 7, 15, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 14px;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 25px rgba(125, 69, 255, 0.35);
}

.status-pill {
  appearance: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #c9c5d2;
  background: rgba(11, 8, 17, 0.45);
  backdrop-filter: blur(12px);
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.status-pill:hover,
.status-control.open .status-pill {
  border-color: rgba(155, 114, 255, 0.42);
  background: rgba(20, 15, 30, 0.88);
}

.status-pill svg {
  width: 14px;
  height: 14px;
  margin-left: 3px;
  fill: none;
  stroke: #827c8b;
  stroke-width: 1.5;
  transition: transform 0.25s ease;
}

.status-control.open .status-pill svg {
  transform: rotate(180deg);
}

.status-control {
  position: relative;
}

.city-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  opacity: 0;
  visibility: hidden;
  background: rgba(13, 9, 20, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.46), 0 0 45px rgba(125, 69, 255, 0.08);
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.23s ease, visibility 0.23s ease, transform 0.23s ease;
}

.status-control.open .city-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.city-menu-head {
  padding: 8px 8px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8e8797;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.city-menu-head small {
  color: #655f6c;
  font-size: 8px;
}

.city-row {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.city-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.city-row > div b {
  color: #f1edf7;
  font-size: 13px;
}

.city-row > div small {
  color: #716b79;
  font-size: 9px;
}

.city-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 10px;
}

.city-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(100, 245, 141, 0.1), 0 0 15px rgba(100, 245, 141, 0.75);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.hero,
.solution {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  display: grid;
  place-items: center;
  padding: 120px 7vw 105px;
  background:
    radial-gradient(circle at 48% 42%, rgba(105, 56, 225, 0.13), transparent 35%),
    linear-gradient(135deg, #0c0913, #07060b 72%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -100px;
  opacity: 0.2;
  background-image: repeating-linear-gradient(90deg, transparent 0 99px, rgba(255, 255, 255, 0.035) 100px);
  transform: perspective(700px) rotateX(64deg) translateY(460px) scale(1.7);
  transform-origin: center bottom;
}

.hero-map {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.6;
  transform: scale(1.03);
}

.hero-map svg {
  width: 100%;
  height: 100%;
  fill: none;
}

.hero-map path {
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 22;
  stroke-linecap: round;
}

.hero-map .active-road {
  stroke: var(--purple);
  stroke-width: 1.5;
  opacity: 0.55;
  stroke-dasharray: 8 20;
  animation: roadFlow 8s linear infinite;
}

.signal {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(236, 229, 255, 0.6);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal b {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 18px var(--purple);
}

.signal b::before,
.signal b::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid var(--purple-bright);
  border-radius: 50%;
  animation: radar 2.7s ease-out infinite;
}

.signal b::after {
  animation-delay: 1.35s;
}

.signal em {
  font-style: normal;
}

.signal.muted b {
  background: #ff7187;
  box-shadow: 0 0 18px rgba(255, 80, 110, 0.85);
}

.signal.muted b::before,
.signal.muted b::after {
  border-color: #ff7187;
}

.signal.manual {
  color: rgba(91, 174, 255, 0.82);
}

.signal.manual b {
  background: #4ea8ff;
  box-shadow: 0 0 20px rgba(78, 168, 255, 0.95);
}

.signal.manual b::before,
.signal.manual b::after {
  border-color: #4ea8ff;
}

.s1 { left: 12%; top: 34%; }
.s2 { left: 72%; top: 25%; }
.s3 { left: 82%; top: 70%; }
.s4 { left: 25%; top: 76%; }
.s5 { left: 62%; top: 65%; }
.s6 { left: 76%; top: 49%; }

.hero-noise {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1190px, 88vw);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  color: #aaa3b9;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(162, 126, 255, 0.38);
  border-radius: 50%;
  color: var(--purple-pale);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  color: #f8f6fd;
  font-size: clamp(65px, 7.1vw, 122px);
  line-height: 0.92;
  letter-spacing: -0.064em;
  font-weight: 760;
}

h1 span {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(98deg, #9e79ff 4%, #6c35ee 86%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 55px rgba(125, 69, 255, 0.18);
}

h1 span::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 0;
  bottom: -9px;
  height: 7px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='10' viewBox='0 0 800 10'%3E%3Cpath d='M3 7C183 2 485 2 797 5' fill='none' stroke='%237d45ff' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  transform: rotate(-0.8deg);
}

.hero-note {
  margin-bottom: 0;
  color: #918b9d;
  font-size: 17px;
  letter-spacing: 0.025em;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #8f899a;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.19em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  animation: bob 2s ease-in-out infinite;
  transition: background 0.25s ease, border 0.25s ease;
}

.scroll-cue:hover i {
  border-color: var(--purple-bright);
  background: var(--purple);
}

.scroll-cue svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.solution {
  min-height: 1080px;
  padding: 150px max(6vw, 74px) 105px;
  display: grid;
  grid-template-columns: minmax(600px, 0.95fr) minmax(430px, 0.72fr);
  gap: 5vw;
  align-items: center;
  background:
    radial-gradient(circle at 82% 43%, rgba(125, 69, 255, 0.23), transparent 25%),
    radial-gradient(circle at 12% 95%, rgba(125, 69, 255, 0.08), transparent 28%),
    #0d0a14;
}

.solution-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000 100%);
}

.scanline {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 49%;
  height: 2px;
  opacity: 0.7;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  box-shadow: 0 0 20px var(--purple);
  animation: scan 7s linear infinite;
}

.solution-copy {
  position: relative;
  z-index: 3;
}

.solution .eyebrow {
  margin-bottom: 21px;
}

h2 {
  margin-bottom: 27px;
  color: #faf8ff;
  font-size: clamp(54px, 5.5vw, 91px);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: 740;
}

h2 em {
  color: var(--purple-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 700px;
  margin-bottom: 44px;
  color: #a9a3b2;
  font-size: 18px;
  line-height: 1.55;
}

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

.feature {
  position: relative;
  min-height: 265px;
  padding: 25px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.feature::after {
  content: attr(data-index);
  position: absolute;
  top: 22px;
  right: 19px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 114, 255, 0.48);
  background: rgba(125, 69, 255, 0.075);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 36px;
  border: 1px solid rgba(155, 114, 255, 0.3);
  border-radius: 14px;
  color: var(--purple-pale);
  background: rgba(125, 69, 255, 0.12);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.feature p {
  margin-bottom: 0;
  color: #918b9a;
  font-size: 13px;
  line-height: 1.55;
}

.visual-stage {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 0.82;
  justify-self: center;
}

.portrait-wrap {
  position: absolute;
  z-index: 2;
  inset: 8% 8% 10%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 44% 44% 26px 26px;
  background: #16111e;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.45), 0 0 120px rgba(125, 69, 255, 0.17);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.025);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait-wrap:hover img {
  transform: scale(1.07);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 5, 13, 0.92), transparent 45%), linear-gradient(130deg, rgba(125, 69, 255, 0.14), transparent 52%);
}

.portrait-label {
  position: absolute;
  z-index: 2;
  left: 35px;
  right: 35px;
  bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.portrait-label span {
  font-size: 30px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.portrait-label small {
  max-width: 180px;
  color: #bbb4c4;
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(155, 114, 255, 0.2);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 47%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 22px var(--purple);
}

.orbit-one {
  inset: 2% -2% 5%;
  animation: spin 19s linear infinite;
}

.orbit-two {
  inset: 12% -10% 14%;
  transform: rotate(27deg);
  animation: spinReverse 27s linear infinite;
}

.metric,
.float-id {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 13, 27, 0.83);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.metric {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 15px 17px;
  border-radius: 16px;
}

.metric-top {
  top: 13%;
  right: -8%;
  animation: float 5s ease-in-out infinite;
}

.metric-bottom {
  bottom: -1%;
  left: -9%;
  animation: float 5.7s 0.8s ease-in-out infinite;
}

.metric-icon {
  display: grid;
  place-items: center;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  border-radius: 11px;
  color: #e4d9ff;
  background: rgba(125, 69, 255, 0.2);
  font-size: 11px;
  font-weight: 800;
}

.pulse-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.metric div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric b {
  font-size: 14px;
}

.metric small {
  color: #8f8998;
  font-size: 10px;
}

.float-id {
  padding: 9px 12px;
  border-radius: 10px;
  color: #a69fac;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.float-id span { color: var(--green); }
.id-one { top: 44%; left: -5%; animation: float 6.4s 0.4s ease-in-out infinite; }
.id-two { top: 60%; right: -6%; animation: float 5.5s 1.2s ease-in-out infinite; }

.section-footer {
  position: absolute;
  left: max(6vw, 74px);
  right: max(6vw, 74px);
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  color: #625c6b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 110px max(6vw, 74px) 125px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(125, 69, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #0d0916 0%, #09070f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta::before,
.contact-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(155, 114, 255, 0.17);
  border-radius: 50%;
}

.contact-cta::before {
  width: 760px;
  height: 300px;
  top: 18%;
  left: 50%;
  transform: translateX(-50%) rotate(-14deg);
}

.contact-cta::after {
  width: 1120px;
  height: 480px;
  top: 2%;
  left: 50%;
  transform: translateX(-50%) rotate(-14deg);
  border-color: rgba(155, 114, 255, 0.08);
}

.contact-cta-inner {
  max-width: 820px;
  text-align: center;
}

.contact-cta .eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--purple-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-cta h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.contact-cta h2 a {
  color: var(--purple-pale);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  text-decoration-color: var(--purple-bright);
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.contact-cta h2 a:hover,
.contact-cta h2 a:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

.contact-cta p {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 14px 19px 14px 22px;
  border: 1px solid rgba(155, 114, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(125, 69, 255, 0.16);
  box-shadow: 0 12px 40px rgba(72, 33, 170, 0.24);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-3px);
  border-color: var(--purple-bright);
  background: rgba(125, 69, 255, 0.32);
}

.contact-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.workflow {
  position: relative;
  min-height: 1120px;
  padding: 125px max(6vw, 74px) 95px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 22%, rgba(78, 168, 255, 0.1), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(125, 69, 255, 0.13), transparent 28%),
    #09070f;
}

.workflow-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 2%, #000 24%, #000 85%, transparent);
}

.workflow-glow {
  position: absolute;
  z-index: -1;
  top: 30%;
  left: 50%;
  width: 780px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.17;
  background: radial-gradient(circle, var(--purple), transparent 68%);
  transform: translateX(-50%);
  filter: blur(15px);
}

.workflow-head {
  position: relative;
  z-index: 2;
  max-width: 1150px;
}

.workflow-kicker {
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #918a9b;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.workflow-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.workflow h2 {
  max-width: 1080px;
  margin-bottom: 24px;
  font-size: clamp(61px, 5.8vw, 92px);
}

.workflow-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #a7a0af;
  font-size: 17px;
  line-height: 1.58;
}

.workflow-path {
  position: relative;
  z-index: 2;
  margin-top: 47px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 215px);
  gap: 20px;
}

.workflow-connector {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(155, 114, 255, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 7 13;
  filter: drop-shadow(0 0 7px rgba(125, 69, 255, 0.55));
}

.workflow-connector path {
  animation: flowRoute 12s linear infinite;
}

.flow-step {
  --step-color: 155, 114, 255;
  position: relative;
  min-width: 0;
  padding: 23px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(18, 14, 26, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.23);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 76px;
  height: 2px;
  background: rgb(var(--step-color));
  box-shadow: 0 0 18px rgba(var(--step-color), 0.9);
}

.flow-step::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.12;
  background: rgb(var(--step-color));
  filter: blur(25px);
}

.flow-step:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--step-color), 0.42);
  background: rgba(22, 17, 32, 0.95);
}

.flow-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--step-color), 0.95);
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.flow-meta b {
  padding: 6px 8px;
  border: 1px solid rgba(var(--step-color), 0.25);
  border-radius: 8px;
  color: #c9c2d2;
  background: rgba(var(--step-color), 0.08);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.flow-step h3 {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin-bottom: 11px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.flow-step p {
  position: relative;
  z-index: 1;
  max-width: 370px;
  margin-bottom: 0;
  color: #918a99;
  font-size: 12px;
  line-height: 1.52;
}

.step-detect { --step-color: 255, 80, 110; grid-column: 1; grid-row: 1; }
.step-confirm { --step-color: 78, 168, 255; grid-column: 2; grid-row: 1; }
.step-score { --step-color: 155, 114, 255; grid-column: 3; grid-row: 1; }
.step-task { --step-color: 155, 114, 255; grid-column: 3; grid-row: 2; }
.step-watch { --step-color: 78, 168, 255; grid-column: 2; grid-row: 2; }
.step-finish { --step-color: 100, 245, 141; grid-column: 1; grid-row: 2; }

.report-strip {
  position: relative;
  z-index: 3;
  margin-top: 26px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(100, 245, 141, 0.2);
  border-radius: 18px;
  background: linear-gradient(100deg, rgba(100, 245, 141, 0.07), rgba(125, 69, 255, 0.07));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.report-badge {
  display: flex;
  align-items: center;
  gap: 13px;
}

.report-badge > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--green);
  background: rgba(100, 245, 141, 0.1);
}

.report-badge svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-badge div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.report-badge b {
  font-size: 14px;
}

.report-badge small {
  color: #7f7887;
  font-size: 9px;
}

.report-example {
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  color: #9c95a3;
  background: rgba(7, 5, 11, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.report-example i {
  font-style: normal;
}

.report-example b {
  color: var(--purple-bright);
}

.report-example strong {
  padding: 5px 7px;
  border-radius: 7px;
  color: var(--green);
  background: rgba(100, 245, 141, 0.08);
  font-size: 8px;
  font-weight: 650;
}

@keyframes flowRoute {
  to { stroke-dashoffset: -240; }
}

.control {
  position: relative;
  --spot-x: 25%;
  --spot-y: 50%;
  min-height: 100vh;
  padding: 140px max(6vw, 74px) 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 48%, rgba(125, 69, 255, 0.17), transparent 30%),
    linear-gradient(125deg, #0e0a16 0 50%, #0a0810 50% 100%);
}

.control::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.13), transparent);
}

.control::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 190px at var(--spot-x) var(--spot-y), rgba(125, 69, 255, 0.18), transparent 72%);
  transition: opacity 0.4s ease;
}

.control.access-off::before {
  opacity: 1;
}

.control-grid {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 50%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.control-left {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-right: clamp(55px, 7vw, 125px);
}

.access-signals {
  position: absolute;
  z-index: 1;
  inset: 0 50% 0 0;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.access-signal {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 104, 129, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-signal i {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff506e;
  box-shadow: 0 0 17px rgba(255, 80, 110, 0.95);
}

.access-signal i::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid #ff506e;
  border-radius: 50%;
  animation: radar 2.7s ease-out infinite;
}

.access-signal.alarm {
  color: rgba(255, 104, 129, 0.78);
}

.access-signal.alarm i {
  background: #ff506e;
  box-shadow: 0 0 19px rgba(255, 80, 110, 0.95);
}

.access-signal.alarm i::after {
  border-color: #ff506e;
}

.access-signal.manual-change {
  color: rgba(91, 174, 255, 0.82);
}

.access-signal.manual-change i {
  background: #4ea8ff;
  box-shadow: 0 0 19px rgba(78, 168, 255, 0.95);
}

.access-signal.manual-change i::after {
  border-color: #4ea8ff;
}

.access-one { top: 12%; left: 48%; }
.access-two { top: 14%; left: 72%; }
.access-three { top: 57%; left: 86%; }
.access-four { top: 88%; left: 57%; }
.access-five { top: 72%; left: 91%; }

.control.access-off .access-signals {
  opacity: 0.34;
  filter: grayscale(0.12);
  -webkit-mask-image: radial-gradient(circle 170px at var(--spot-x) var(--spot-y), #000 0, rgba(0, 0, 0, 0.78) 48%, transparent 100%);
  mask-image: radial-gradient(circle 170px at var(--spot-x) var(--spot-y), #000 0, rgba(0, 0, 0, 0.78) 48%, transparent 100%);
}

.control h2 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(53px, 5vw, 82px);
}

.control-lead {
  max-width: 650px;
  margin-bottom: 41px;
  color: #aaa3b2;
  font-size: 19px;
  line-height: 1.6;
}

.kill-switch {
  width: min(100%, 560px);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.kill-switch:hover {
  border-color: rgba(155, 114, 255, 0.5);
  background: rgba(125, 69, 255, 0.08);
}

.switch-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.switch-copy small {
  color: #85808d;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.17em;
}

.switch-copy b {
  font-size: 20px;
}

.switch-track {
  position: relative;
  width: 67px;
  height: 35px;
  border-radius: 99px;
  background: var(--purple);
  box-shadow: 0 0 32px rgba(125, 69, 255, 0.45);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.switch-track i {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kill-switch.off .switch-track {
  background: #38333f;
  box-shadow: none;
}

.kill-switch.off .switch-track i {
  transform: translateX(-32px);
}

.kill-switch.off .switch-copy b {
  color: #aaa3b2;
}

.control-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #807986;
}

.control-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 41px;
  width: 41px;
  height: 41px;
  border: 1px solid rgba(155, 114, 255, 0.28);
  border-radius: 12px;
  color: var(--purple-pale);
  background: rgba(125, 69, 255, 0.08);
}

.control-note svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.control-note b {
  color: #b9b3c0;
}

.control-right {
  position: relative;
  min-height: 650px;
}

.brand-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  padding: 92px;
  border: 1px solid rgba(155, 114, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 65px rgba(125, 69, 255, 0.025), 0 0 0 130px rgba(125, 69, 255, 0.015);
  animation: ghostBreath 5s ease-in-out infinite;
}

.brand-ghost img {
  width: 100%;
  height: 100%;
  border-radius: 34%;
  opacity: 0.06;
  filter: grayscale(0.1);
}

.terms-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 670px);
  margin: 0 auto;
  align-self: center;
}

.control-right {
  display: flex;
  align-items: center;
  padding-left: clamp(55px, 6vw, 110px);
}

.terms-copy h3 {
  margin: 0 0 20px;
  color: #faf8ff;
  font-size: clamp(48px, 4.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.terms-copy h3 em {
  color: var(--purple-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.terms-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #aaa3b2;
  font-size: 17px;
  line-height: 1.55;
}

.terms-list {
  display: grid;
  gap: 10px;
}

.term {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(16, 12, 24, 0.72);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.term:hover {
  transform: translateX(7px);
  border-color: rgba(155, 114, 255, 0.42);
  background: rgba(125, 69, 255, 0.08);
}

.term-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(155, 114, 255, 0.3);
  border-radius: 12px;
  color: var(--purple-pale);
  background: rgba(125, 69, 255, 0.12);
}

.term-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.term h4 {
  margin: 1px 0 6px;
  font-size: 15px;
}

.term p {
  margin: 0;
  color: #89838f;
  font-size: 12px;
  line-height: 1.5;
}

.session-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(440px, 82%);
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(15, 11, 23, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -50%);
}

.session-head,
.session-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.session-head {
  padding-bottom: 19px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.session-head span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.session-head span i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.session-head small {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.session-line {
  padding: 13px 0;
  color: #827c8a;
  font-size: 12px;
}

.session-line b {
  color: #d6d1dc;
  font-size: 12px;
}

.session-line .slot-free {
  color: var(--purple-pale);
}

.session-pulse {
  height: 40px;
  margin-top: 10px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.session-pulse i {
  flex: 1;
  height: 5px;
  border-radius: 4px;
  background: var(--purple);
  opacity: 0.25;
  animation: wave 1.8s ease-in-out infinite;
}

.session-pulse i:nth-child(2) { animation-delay: 0.14s; }
.session-pulse i:nth-child(3) { animation-delay: 0.28s; }
.session-pulse i:nth-child(4) { animation-delay: 0.42s; }
.session-pulse i:nth-child(5) { animation-delay: 0.56s; }

.node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 18px var(--purple);
  animation: statusPulse 2.5s ease-in-out infinite;
}

.n1 { top: 19%; left: 18%; }
.n2 { right: 11%; top: 35%; animation-delay: 0.7s; }
.n3 { left: 22%; bottom: 18%; animation-delay: 1.4s; }

@keyframes ghostBreath {
  50% { transform: translate(-50%, -50%) scale(1.035); opacity: 0.75; }
}

@keyframes wave {
  50% { height: 34px; opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.78, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Used only by the local screenshot check in script.js. */
body.preview-solution .hero {
  display: none;
}

body.preview-control .hero,
body.preview-control .solution {
  display: none;
}

body.preview-solution .reveal,
body.preview-control .reveal,
body.preview-terms .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.preview-terms .hero,
body.preview-terms .solution,
body.preview-terms .control-left,
body.preview-terms .access-signals {
  display: none;
}

body.preview-workflow .hero,
body.preview-workflow .solution,
body.preview-workflow .control {
  display: none;
}

body.preview-workflow .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.features .reveal:nth-child(2) { transition-delay: 0.12s; }
.features .reveal:nth-child(3) { transition-delay: 0.24s; }

@keyframes radar {
  0% { transform: scale(0.2); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes roadFlow {
  to { stroke-dashoffset: -280; }
}

@keyframes statusPulse {
  50% { box-shadow: 0 0 0 8px rgba(100, 245, 141, 0), 0 0 20px rgba(100, 245, 141, 0.8); }
}

@keyframes bob {
  50% { transform: translateY(7px); }
}

@keyframes scan {
  0% { top: 5%; opacity: 0; }
  12%, 88% { opacity: 0.65; }
  100% { top: 95%; opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(27deg); }
  to { transform: rotate(-333deg); }
}

@keyframes float {
  50% { transform: translateY(-11px); }
}

@media (max-height: 840px) and (min-width: 1100px) {
  .solution { min-height: 940px; padding-top: 115px; }
  .visual-stage { width: 470px; }
  .feature { min-height: 230px; }
  .feature-icon { margin-bottom: 22px; }
}

@media (max-width: 900px) {
  body {
    min-width: 0;
  }

  .cursor-glow {
    display: none;
  }

  .topbar {
    padding: 16px 18px;
  }

  .topbar.compact {
    padding: 11px 18px;
  }

  .brand {
    gap: 9px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .status-pill {
    gap: 7px;
    padding: 9px 11px;
    font-size: 10px;
  }

  .status-pill svg {
    width: 12px;
    height: 12px;
    margin-left: 0;
  }

  .city-menu {
    width: min(300px, calc(100vw - 36px));
  }

  .hero {
    min-height: 100svh;
    padding: 96px 20px 82px;
  }

  .hero::before {
    transform: perspective(550px) rotateX(64deg) translateY(460px) scale(2.2);
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(45px, 13.5vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  h1 br {
    display: none;
  }

  h1 span::after {
    bottom: -6px;
    height: 5px;
  }

  .hero-note {
    font-size: 14px;
  }

  .signal {
    gap: 7px;
    font-size: 7px;
  }

  .signal b {
    width: 6px;
    height: 6px;
  }

  .s1 { left: 8%; top: 24%; }
  .s2,
  .s3,
  .s5 { display: none; }
  .s4 { left: 9%; top: 72%; }
  .s6 { left: auto; right: 5%; top: 62%; }

  .scroll-cue {
    bottom: 17px;
  }

  .scroll-cue > span {
    display: none;
  }

  .scroll-cue i {
    width: 42px;
    height: 42px;
  }

  .solution {
    min-height: 0;
    padding: 102px 20px 76px;
    display: block;
  }

  .solution-grid {
    background-size: 48px 48px;
  }

  .scanline {
    width: 100%;
  }

  h2 {
    margin-bottom: 23px;
    font-size: clamp(43px, 12vw, 54px);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .solution h2 {
    font-size: clamp(40px, 10.5vw, 48px);
  }

  .lead {
    margin-bottom: 31px;
    font-size: 15px;
    line-height: 1.55;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature {
    min-height: 0;
    padding: 18px 42px 18px 17px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-radius: 16px;
  }

  .feature:hover {
    transform: none;
  }

  .feature::after {
    top: 18px;
    right: 16px;
  }

  .feature-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    margin: 0;
    border-radius: 12px;
  }

  .feature h3 {
    margin: 1px 0 7px;
    font-size: 15px;
  }

  .feature p {
    font-size: 12px;
    line-height: 1.48;
  }

  .visual-stage {
    width: calc(100% - 10px);
    max-width: 430px;
    margin: 54px auto 0;
    aspect-ratio: 0.78;
  }

  .portrait-wrap {
    inset: 6% 3% 8%;
    border-radius: 40% 40% 22px 22px;
  }

  .portrait-label {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .portrait-label span {
    font-size: 22px;
  }

  .portrait-label small {
    max-width: 130px;
    font-size: 8px;
  }

  .metric {
    min-width: 175px;
    padding: 11px 12px;
    gap: 10px;
    border-radius: 13px;
  }

  .metric-top {
    top: 8%;
    right: -2%;
  }

  .metric-bottom {
    bottom: 0;
    left: -2%;
  }

  .metric-icon {
    flex-basis: 33px;
    width: 33px;
    height: 33px;
    border-radius: 9px;
  }

  .metric b {
    font-size: 12px;
  }

  .metric small {
    font-size: 8px;
  }

  .id-one {
    top: 45%;
    left: -1%;
  }

  .id-two {
    display: none;
  }

  .workflow {
    min-height: 0;
    padding: 100px 20px 78px;
  }

  .workflow-grid {
    background-size: 48px 48px;
  }

  .workflow-glow {
    top: 34%;
    width: 420px;
    height: 820px;
  }

  .workflow-kicker {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .workflow h2 {
    margin-bottom: 21px;
    font-size: clamp(42px, 11.5vw, 51px);
    line-height: 1;
  }

  .workflow-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .workflow-path {
    margin-top: 37px;
    padding-left: 15px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 11px;
  }

  .workflow-path::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 3px;
    width: 1px;
    opacity: 0.55;
    background: linear-gradient(#ff506e, #4ea8ff 38%, #9b72ff 68%, #64f58d);
    box-shadow: 0 0 10px rgba(125, 69, 255, 0.45);
  }

  .workflow-connector {
    display: none;
  }

  .flow-step,
  .step-detect,
  .step-confirm,
  .step-score,
  .step-task,
  .step-watch,
  .step-finish {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-step {
    min-height: 0;
    padding: 19px 18px;
    border-radius: 16px;
  }

  .flow-step::before {
    top: 24px;
    left: -19px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }

  .flow-step:hover {
    transform: none;
  }

  .flow-meta {
    margin-bottom: 16px;
    font-size: 8px;
  }

  .flow-meta b {
    padding: 5px 7px;
    font-size: 8px;
  }

  .flow-step h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .flow-step p {
    font-size: 11px;
  }

  .report-strip {
    margin-top: 18px;
    padding: 17px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    border-radius: 16px;
  }

  .report-badge small {
    max-width: 230px;
    line-height: 1.35;
  }

  .report-example {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }

  .control {
    min-height: 0;
    padding: 104px 20px 92px;
    grid-template-columns: 1fr;
    gap: 88px;
    background:
      radial-gradient(circle at 52% 73%, rgba(125, 69, 255, 0.14), transparent 26%),
      linear-gradient(155deg, #0e0a16 0 49%, #0a0810 49% 100%);
  }

  .control::after {
    top: 49%;
    bottom: auto;
    left: 20px;
    right: 20px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  }

  .control::before {
    background: radial-gradient(circle 145px at var(--spot-x) var(--spot-y), rgba(125, 69, 255, 0.2), transparent 75%);
  }

  .control-grid {
    inset: 48% 0 0;
    background-size: 50px 50px;
  }

  .control-left {
    padding-right: 0;
  }

  .control h2 {
    margin-bottom: 25px;
    font-size: clamp(43px, 12vw, 53px);
  }

  .control-lead {
    margin-bottom: 31px;
    font-size: 15px;
    line-height: 1.55;
  }

  .kill-switch {
    width: 100%;
    padding: 17px 18px;
    border-radius: 16px;
  }

  .switch-copy b {
    font-size: 18px;
  }

  .switch-track {
    width: 61px;
    height: 33px;
  }

  .switch-track i {
    width: 25px;
    height: 25px;
  }

  .kill-switch.off .switch-track i {
    transform: translateX(-28px);
  }

  .control-note {
    align-items: flex-start;
  }

  .access-signals {
    inset: 0 0 auto;
    height: 750px;
  }

  .access-signal {
    font-size: 7px;
  }

  .access-one { top: 78px; left: 46%; }
  .access-two { top: 442px; left: 48%; }
  .access-five { top: 625px; left: auto; right: 6%; }
  .access-three,
  .access-four { display: none; }

  .control.access-off .access-signals {
    opacity: 0.4;
    -webkit-mask-image: radial-gradient(circle 145px at var(--spot-x) var(--spot-y), #000 0, rgba(0, 0, 0, 0.82) 50%, transparent 100%);
    mask-image: radial-gradient(circle 145px at var(--spot-x) var(--spot-y), #000 0, rgba(0, 0, 0, 0.82) 50%, transparent 100%);
  }

  .control-right {
    min-height: 0;
    padding-left: 0;
  }

  .terms-copy {
    width: 100%;
  }

  .terms-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(42px, 11.5vw, 50px);
  }

  .terms-lead {
    margin-bottom: 27px;
    font-size: 15px;
  }

  .terms-list {
    gap: 9px;
  }

  .term {
    gap: 13px;
    padding: 16px;
    border-radius: 15px;
  }

  .term:hover {
    transform: none;
  }

  .term-icon {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
    border-radius: 11px;
  }

  .term h4 {
    margin-top: 0;
    font-size: 14px;
  }

  .term p {
    font-size: 11px;
  }

  .brand-ghost {
    top: 52%;
    width: 235px;
    height: 235px;
    padding: 48px;
  }

  .n1 { top: 8%; left: 6%; }
  .n2 { top: 47%; right: 2%; }
  .n3 { bottom: 3%; left: 12%; }

  .section-footer {
    left: 20px;
    right: 20px;
    bottom: 25px;
    flex-direction: column;
    gap: 7px;
    font-size: 8px;
  }

  .contact-cta {
    min-height: 510px;
    padding: 90px 20px 100px;
  }

  .contact-cta::before {
    width: 650px;
    height: 270px;
  }

  .contact-cta::after {
    width: 900px;
    height: 420px;
  }

  .contact-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.08;
  }

  .contact-cta p {
    margin-top: 22px;
    font-size: 14px;
  }
}

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