:root {
  --bg: #06101d;
  --bg-soft: #0a1728;
  --panel: rgba(14, 29, 50, 0.78);
  --panel-strong: rgba(17, 38, 67, 0.92);
  --text: #f4f8ff;
  --muted: #a9b7cc;
  --line: rgba(156, 204, 255, 0.16);
  --accent: #58c7ff;
  --accent-2: #7cf3ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(88, 199, 255, 0.13), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(124, 243, 255, 0.1), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 50;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 16, 29, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-image {
  display: inline-flex;
  align-items: center;
  max-width: 200px;
}

.brand-image img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section-pad {
  padding: 92px 0;
}

.workbench {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.grid-bg {
  position: absolute;
  inset: 40px -40px 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: 0.45;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03101d;
}

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

.btn.full {
  width: 100%;
}

.status-card {
  padding: 24px;
  border-radius: var(--radius);
}

.status-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(124, 243, 255, 0.12);
}

.status-lines {
  display: grid;
  gap: 18px;
}

.status-lines div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
}

.status-lines small,
.scenario span {
  color: var(--accent-2);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-lines strong {
  display: block;
  margin-bottom: 6px;
}

.status-lines p,
.build-card p,
.section-intro p,
.scenario p,
.note-grid p,
.contact-copy p,
.footer p {
  color: var(--muted);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro.compact {
  margin-bottom: 28px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.build-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    linear-gradient(180deg, rgba(14, 29, 50, 0.35), rgba(14, 29, 50, 0.96)),
    radial-gradient(circle at 80% 18%, rgba(88, 199, 255, 0.24), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(124, 243, 255, 0.12), transparent 32%),
    var(--panel);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.build-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(rgba(124, 243, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 243, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;

  opacity: 0.22;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.build-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 92px;
  height: 92px;
  z-index: 0;

  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(88, 199, 255, 0.28), rgba(0, 98, 255, 0.08));
  box-shadow:
    0 0 35px rgba(88, 199, 255, 0.12),
    inset 0 0 0 1px rgba(124, 243, 255, 0.18);

  clip-path: polygon(
    0 0,
    100% 0,
    100% 34%,
    64% 34%,
    64% 100%,
    36% 100%,
    36% 34%,
    0 34%
  );

  opacity: 0.72;
  transition: transform 0.45s ease, opacity 0.35s ease, filter 0.35s ease;
}

.build-card h3,
.build-card p {
  position: relative;
  z-index: 1;
}

.build-card h3 {
  margin-bottom: 10px;
}

.build-card p {
  max-width: 92%;
  margin-bottom: 0;
}

.build-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 243, 255, 0.42);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.45),
    0 0 42px rgba(88, 199, 255, 0.08);
}

.build-card:hover::before {
  opacity: 0.38;
  transform: scale(1.08) translateY(-6px);
}

.build-card:hover::after {
  opacity: 1;
  transform: translateY(-8px) rotate(4deg) scale(1.08);
  filter: drop-shadow(0 0 18px rgba(88, 199, 255, 0.24));
}

.build-card.large {
  grid-column: span 2;
}

.build-card.wide {
  grid-column: span 2;
}

.scenario-list {
  display: grid;
  gap: 12px;
}

.build-card:nth-child(1)::after {
  top: 28px;
  right: 34px;
  width: 108px;
  height: 108px;
}

.build-card:nth-child(2)::after {
  clip-path: polygon(
    0 0,
    42% 0,
    42% 42%,
    100% 42%,
    100% 70%,
    42% 70%,
    42% 100%,
    0 100%
  );
}

.build-card:nth-child(3)::after {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 28%,
    28% 28%,
    28% 56%,
    78% 56%,
    78% 84%,
    0 84%
  );
}

.build-card:nth-child(4)::after {
  width: 120px;
  height: 120px;
  clip-path: polygon(
    0 18%,
    82% 18%,
    82% 0,
    100% 0,
    100% 36%,
    18% 36%,
    18% 100%,
    0 100%
  );
}

.scenario {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  min-height: 84px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}

.scenario p {
  margin: 0;
  font-size: 19px;
}

.starting-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.starting-copy .section-intro {
  margin-bottom: 28px;
}

.starting-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(88, 199, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(14, 29, 50, 0.28), rgba(14, 29, 50, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.starting-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 243, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 243, 255, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.32;
  animation: visualGridMove 12s linear infinite;
}

.starting-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(88, 199, 255, 0.13);
  filter: blur(8px);
}

.visual-window {
  position: absolute;
  inset: 28px;
  z-index: 1;
  border: 1px solid rgba(124, 243, 255, 0.16);
  border-radius: 24px;
  background: rgba(6, 16, 29, 0.58);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.visual-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(124, 243, 255, 0.13);
}

.visual-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124, 243, 255, 0.6);
}

.visual-flow {
  display: flex;
  align-items: center;
  padding: 32px 24px 20px;
}

.flow-node {
  width: 88px;
  height: 88px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(124, 243, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  animation: nodeFloat 4.5s ease-in-out infinite;
}

.flow-node:nth-child(3) {
  animation-delay: .35s;
}

.flow-node:nth-child(5) {
  animation-delay: .7s;
}

.flow-node.active {
  background: linear-gradient(135deg, rgba(88,199,255,.34), rgba(124,243,255,.12));
  box-shadow: 0 0 28px rgba(88, 199, 255, 0.14);
}

.flow-node small {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.flow-node strong {
  font-size: 18px;
  line-height: 1;
}

.flow-line {
  flex: 1;
  height: 1px;
  margin: 0 10px;
  background: linear-gradient(90deg, rgba(124,243,255,.12), rgba(124,243,255,.62), rgba(124,243,255,.12));
  position: relative;
}

.flow-line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 14px rgba(124, 243, 255, 0.8);
  animation: dotTravel 2.8s ease-in-out infinite;
}

.visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(124, 243, 255, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  transform: translateZ(0);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.visual-card:hover {
  transform: translateX(8px);
  border-color: rgba(124, 243, 255, 0.34);
  background: rgba(255,255,255,.07);
}

.visual-card > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(88,199,255,.95), rgba(0,98,255,.7));
  box-shadow: 0 0 22px rgba(88,199,255,.18);
}

.visual-card strong,
.visual-card small {
  display: block;
}

.visual-card small {
  color: var(--muted);
}

.card-one {
  top: 190px;
}

.card-two {
  top: 278px;
  left: 58px;
}

.card-three {
  top: 366px;
}

.scenario {
  position: relative;
  overflow: hidden;
  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.scenario::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 243, 255, 0.07), transparent);
  transform: translateX(-100%);
  transition: transform .65s ease;
}

.scenario:hover {
  transform: translateX(6px);
  border-color: rgba(124, 243, 255, 0.34);
  background: rgba(255,255,255,.055);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(88, 199, 255, 0.06);
}

.scenario:hover::after {
  transform: translateX(100%);
}

.scenario span {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(124, 243, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(124, 243, 255, 0.12);
}
.scenario p {
  position: relative;
  z-index: 1;
}

@keyframes visualGridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 38px 38px;
  }
}

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

@keyframes dotTravel {
  0% {
    left: 0;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 7px);
    opacity: 0;
  }
}

.note-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius);
}

.note-grid {
  display: grid;
  gap: 16px;
}

.note-grid div {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.045);
}

.desk-method {
  position: relative;
  overflow: hidden;
  grid-template-columns: 0.9fr 1.1fr;
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 199, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(124, 243, 255, 0.1), transparent 30%),
    var(--panel);
}

.desk-method::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 243, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 243, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.method-head,
.method-grid {
  position: relative;
  z-index: 1;
}

.method-head p:not(.eyebrow) {
  color: var(--muted);
  max-width: 520px;
}

.method-card {
  position: relative;
  overflow: hidden;
  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.method-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -52px;
  bottom: -52px;
  border-radius: 50%;
  background: rgba(88, 199, 255, 0.12);
  filter: blur(4px);
  transition: transform .4s ease, opacity .3s ease;
}

.method-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: rgba(124, 243, 255, 0.07);
  color: var(--accent-2);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(124, 243, 255, 0.14);
}

.method-card strong,
.method-card p {
  position: relative;
  z-index: 1;
}

.method-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 243, 255, 0.34);
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(88, 199, 255, 0.06);
}

.method-card:hover::after {
  transform: scale(1.25);
  opacity: 1;
}

.focus-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.focus-console {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(88, 199, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(14, 29, 50, 0.36), rgba(14, 29, 50, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.focus-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 243, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 243, 255, 0.065) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.28;
  animation: visualGridMove 14s linear infinite;
}

.focus-console::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(88, 199, 255, 0.08);
  filter: blur(12px);
}

.console-top {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid rgba(124, 243, 255, 0.13);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124, 243, 255, 0.65);
}

.console-body {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.console-label {
  position: absolute;
  top: 28px;
  left: 28px;
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
}

.focus-radar {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(124, 243, 255, 0.18);
  border-radius: 50%;
}

.ring-one {
  width: 100%;
  height: 100%;
  animation: radarPulse 4.5s ease-in-out infinite;
}

.ring-two {
  width: 72%;
  height: 72%;
  animation: radarPulse 4.5s ease-in-out infinite .35s;
}

.ring-three {
  width: 44%;
  height: 44%;
  animation: radarPulse 4.5s ease-in-out infinite .7s;
}

.focus-radar::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(124, 243, 255, 0.65), transparent);
  animation: radarSweep 5s linear infinite;
}

.radar-center {
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(124, 243, 255, 0.28);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(88, 199, 255, 0.22), rgba(6, 16, 29, 0.72));
  box-shadow:
    0 0 42px rgba(88, 199, 255, 0.16),
    inset 0 0 0 1px rgba(255,255,255,.04);
}

.radar-center strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.radar-center small {
  margin-top: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
}

.radar-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px rgba(124, 243, 255, 0.9);
}

.dot-one {
  top: 18%;
  left: 58%;
}

.dot-two {
  top: 46%;
  right: 12%;
}

.dot-three {
  bottom: 20%;
  left: 30%;
}

.dot-four {
  top: 34%;
  left: 18%;
}

.console-lines {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.console-lines span {
  padding: 11px 12px;
  border: 1px solid rgba(124, 243, 255, 0.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.focus-content .section-intro {
  margin-bottom: 28px;
}

.focus-list {
  display: grid;
  gap: 12px;
}

.focus-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}

.focus-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(124, 243, 255, 0.07);
  color: var(--accent-2);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(124, 243, 255, 0.14);
}

.focus-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.focus-item p {
  margin: 0;
  color: var(--muted);
}

.focus-item:hover {
  transform: translateX(6px);
  border-color: rgba(124, 243, 255, 0.34);
  background: rgba(255,255,255,.055);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(88, 199, 255, 0.06);
}

.focus.section-pad {
  padding-top: 70px;
  padding-bottom: 70px;
}

.focus-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: center;
}

.focus-console {
  min-height: 430px;
}

.console-body {
  min-height: 370px;
  padding: 22px;
}

.focus-radar {
  width: min(100%, 300px);
}

.radar-center {
  width: 112px;
  height: 112px;
  padding: 14px;
  border-radius: 30px;
}

.radar-center img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.console-lines {
  left: 22px;
  right: 22px;
  bottom: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.focus-content .section-intro {
  margin-bottom: 22px;
}

.focus-content .section-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.focus-item {
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  min-height: 116px;
}

.focus-item span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.focus-item strong {
  font-size: 17px;
}

.focus-item p {
  font-size: 14px;
  line-height: 1.45;
}

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

@keyframes radarPulse {
  0%, 100% {
    opacity: 0.52;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.035);
  }
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius);
}

.company-card {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-sm);
}

.company-card span {
  color: var(--muted);
}

.company-card a {
  margin-top: 8px;
  color: var(--accent-2);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  padding: 15px 16px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(124, 243, 255, 0.65);
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 44px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(88, 199, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.025);
}

.footer-brand p,
.footer-col span,
.footer-bottom {
  color: var(--muted);
}

.footer-logo {
  display: inline-flex;
  max-width: 230px;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col strong {
  margin-bottom: 6px;
  color: var(--text);
}

.footer-col a,
.footer-col span {
  font-size: 14px;
}

.footer-col a {
  color: var(--muted);
  transition: color .25s ease, transform .25s ease;
}

.footer-col a:hover {
  color: var(--accent-2);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--accent-2);
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(8px);
}

.popup.active {
  display: grid;
}

.popup-box {
  position: relative;
  width: min(100%, 420px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.popup-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.popup-box p {
  margin: 0;
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 22px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(100%, 320px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(6, 16, 29, .96);
  }

  .nav.active {
    display: flex;
  }

  .workbench,
  .note-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .workbench {
    min-height: auto;
    padding-top: 76px;
  }

  .build-grid {
    grid-template-columns: 1fr;
  }

  .build-card.large,
  .build-card.wide {
    grid-column: span 1;
  }

  .scenario {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .starting-layout {
    grid-template-columns: 1fr;
  }
  
  .starting-visual {
    min-height: 460px;
  }

  .focus-layout {
    grid-template-columns: 1fr;
  }
  
  .focus-console {
    min-height: 430px;
  }
  
  .focus-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding: 64px 0;
  }

  .topbar {
    top: 10px;
    border-radius: 24px;
  }

  .brand-text small {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .status-card,
  .note-panel,
  .contact-panel {
    border-radius: 22px;
  }

  .note-panel,
  .contact-panel {
    padding: 22px;
  }

  .brand-image {
    max-width: 170px;
  }

  .build-card {
    min-height: 260px;
    padding: 24px;
  }
  
  .build-card::after {
    width: 78px;
    height: 78px;
    top: 22px;
    right: 22px;
  }

  .starting-visual {
    min-height: 430px;
  }
  
  .visual-window {
    inset: 18px;
  }
  
  .visual-flow {
    padding: 26px 14px 18px;
  }
  
  .flow-node {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  
  .flow-node strong {
    font-size: 15px;
  }
  
  .flow-node small {
    font-size: 9px;
  }
  
  .visual-card {
    left: 14px;
    right: 14px;
    padding: 14px;
  }
  
  .card-one {
    top: 168px;
  }
  
  .card-two {
    top: 252px;
    left: 30px;
  }
  
  .card-three {
    top: 336px;
  }

  .desk-method {
    padding: 24px;
  }
  
  .method-card span {
    margin-bottom: 16px;
  }

  .focus.section-pad {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  
  .focus-console {
    min-height: 420px;
  }
  
  .console-body {
    min-height: 360px;
  }
  
  .focus-radar {
    width: min(100%, 260px);
  }
  
  .radar-center {
    width: 96px;
    height: 96px;
    border-radius: 26px;
  }
  
  .console-lines {
    grid-template-columns: 1fr;
  }
  
  .focus-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  
  .footer-logo {
    max-width: 210px;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
}

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