:root {
  --bg: #03060f;
  --bg-2: #071120;
  --panel: rgba(8, 16, 30, 0.66);
  --panel-strong: rgba(10, 20, 38, 0.9);
  --text: #f4f8ff;
  --muted: #8ca3c8;
  --cyan: #7cf6ff;
  --blue: #5b84ff;
  --green: #85ffd4;
  --white-glow: rgba(255, 255, 255, 0.42);
  --line: rgba(124, 246, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.13), transparent 24%),
    radial-gradient(circle at 14% 12%, rgba(91, 132, 255, 0.14), transparent 20%),
    radial-gradient(circle at 85% 16%, rgba(124, 246, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #0a101d 0%, #04070f 42%, #02040a 100%);
}

.noise,
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(124, 246, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 246, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.ambient-a {
  background: radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 18%);
}

.ambient-b {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%);
}

body.is-scrolling .hero-visual,
body.is-scrolling .quote-zone,
body.is-scrolling .contact-panel {
  animation: screen-jitter 220ms linear 1;
}

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

.page-shell {
  position: relative;
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(4, 9, 18, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(124, 246, 255, 0.34);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(124, 246, 255, 0.18), rgba(91, 132, 255, 0.18)),
    rgba(8, 16, 30, 0.95);
  box-shadow: inset 0 0 26px rgba(124, 246, 255, 0.08), 0 0 20px rgba(124, 246, 255, 0.08);
}

.brand-copy strong,
.site-nav,
.nav-cta,
.button,
.eyebrow,
.mini-tag,
.module-index,
.timeline-no,
.scene-tag,
.quote-mark,
.status-head,
.kpi span,
.visual-floating span,
.contact-box span {
  font-family: "Orbitron", sans-serif;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.1em;
}

.brand-copy span {
  color: var(--muted);
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav a:hover,
.nav-cta:hover,
.contact-box:hover {
  color: var(--cyan);
}

.nav-cta,
.button,
.contact-box {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(124, 246, 255, 0.05);
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.82), rgba(6, 12, 24, 0.76)),
    rgba(8, 16, 30, 0.84);
  box-shadow: var(--shadow);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, transparent 55%, rgba(91, 132, 255, 0.05));
}

.panel-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%);
}

.hero-board {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  grid-template-areas:
    "title visual"
    "status visual"
    "feed visual";
  gap: 18px;
  min-height: calc(100vh - 110px);
  padding: 34px 0 0;
}

.hero-title {
  grid-area: title;
  padding: 36px;
}

.hero-visual {
  grid-area: visual;
  min-height: 760px;
  padding: 30px;
}

.hero-status {
  grid-area: status;
  padding: 24px;
}

.hero-feed {
  grid-area: feed;
  padding: 22px 26px;
}

.eyebrow,
.mini-tag,
.scene-tag,
.quote-mark {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title h1,
.section-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Orbitron", "Noto Sans SC", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-title h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6.8vw, 5.8rem);
}

.hero-text,
.module-card p,
.timeline-item p,
.scene-card p,
.contact-copy p,
.visual-floating small,
.status-list span,
.feed-lines span {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 54ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button:hover,
.nav-cta:hover,
.contact-box:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(124, 246, 255, 0.12)),
    rgba(8, 16, 30, 0.9);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05), 0 0 20px rgba(124, 246, 255, 0.08);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(124, 246, 255, 0.04);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.kpi {
  padding: 16px;
  border: 1px solid rgba(124, 246, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.kpi strong,
.visual-floating strong {
  display: block;
  margin-top: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  color: var(--text);
}

.radar {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.radar-back {
  inset: 5% 6%;
}

.radar-ring,
.radar-grid,
.radar-sweep {
  position: absolute;
  border-radius: 50%;
}

.radar-ring {
  border: 1px solid rgba(124, 246, 255, 0.14);
}

.ring-1 {
  inset: 16%;
}

.ring-2 {
  inset: 28%;
}

.ring-3 {
  inset: 40%;
}

.radar-grid {
  inset: 10%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.radar-sweep {
  inset: 8%;
  background: conic-gradient(from 0deg, rgba(124, 246, 255, 0.26), transparent 22%, transparent 100%);
  filter: blur(6px);
  animation: radar-spin 7s linear infinite;
}

.robot-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  z-index: 1;
  transform: translate3d(0, calc(var(--scroll-shift, 0px) * -0.08), 0);
}

.robot-halo {
  position: absolute;
  inset: 13% 20% 25%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(124, 246, 255, 0.12) 28%, transparent 56%),
    radial-gradient(circle at center, rgba(91, 132, 255, 0.12), transparent 62%);
  filter: blur(4px);
  transform: translate3d(0, calc(var(--scroll-shift, 0px) * -0.05), 0);
}

.stage-beam {
  position: absolute;
  top: -6%;
  width: 34%;
  height: 88%;
  opacity: 0.34;
  filter: blur(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(124, 246, 255, 0.1), transparent 72%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.beam-left {
  left: 10%;
  transform: rotate(-7deg) translate3d(0, calc(var(--scroll-shift, 0px) * -0.04), 0);
}

.beam-right {
  right: 10%;
  transform: rotate(7deg) translate3d(0, calc(var(--scroll-shift, 0px) * -0.04), 0);
}

.robot-bust {
  position: relative;
  width: min(500px, 68vw);
  aspect-ratio: 0.88;
  margin-top: 30px;
  transform: translate3d(0, calc(var(--scroll-shift, 0px) * -0.12), 0);
}

.robot-shadow {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 42%;
  height: 10%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 246, 255, 0.26), transparent 70%);
  filter: blur(14px);
}

.robot-head,
.robot-neck,
.robot-body,
.body-shell,
.body-core,
.body-panel,
.body-base,
.body-core-glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.robot-head {
  top: 18%;
  width: 34%;
  height: 34%;
  border-radius: 46% 46% 42% 42% / 36% 36% 42% 42%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(213, 225, 255, 0.35) 24%, rgba(63, 82, 121, 0.2) 58%, rgba(11, 20, 38, 0.95) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%);
  box-shadow:
    inset 0 -24px 28px rgba(3, 8, 18, 0.5),
    inset 0 2px 2px rgba(255, 255, 255, 0.42),
    0 20px 50px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(124, 246, 255, 0.1);
}

.face-plate {
  position: absolute;
  left: 50%;
  top: 25%;
  width: 70%;
  height: 32%;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 246, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(4, 10, 22, 0.92), rgba(16, 30, 54, 0.86));
  border: 1px solid rgba(124, 246, 255, 0.16);
  box-shadow: inset 0 0 18px rgba(124, 246, 255, 0.08);
}

.eye {
  position: absolute;
  top: 39%;
  width: 16%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px rgba(124, 246, 255, 0.85);
  animation: blink 5s infinite;
}

.eye-left {
  left: 28%;
}

.eye-right {
  right: 28%;
}

.temple {
  position: absolute;
  top: 40%;
  width: 8%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(20, 35, 60, 0.2));
}

.temple-left {
  left: 12%;
}

.temple-right {
  right: 12%;
}

.robot-neck {
  top: 49%;
  width: 10%;
  height: 10%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(19, 33, 56, 0.96));
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.robot-body {
  top: 54%;
  width: 54%;
  height: 34%;
}

.body-shell {
  top: 0;
  width: 100%;
  height: 78%;
  border-radius: 44% 44% 32% 32% / 22% 22% 48% 48%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(86, 104, 136, 0.12) 18%, rgba(8, 16, 30, 0.98) 82%);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.14),
    inset 0 -18px 24px rgba(4, 8, 18, 0.38),
    0 18px 30px rgba(0, 0, 0, 0.22);
}

.body-shell::before {
  content: "";
  position: absolute;
  inset: 10% 16% 20%;
  border-radius: 40px 40px 64px 64px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 72%);
}

.body-core {
  top: 14%;
  width: 22%;
  height: 34%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(124, 246, 255, 0.06) 24%, rgba(8, 16, 30, 0.98) 100%);
  box-shadow:
    inset 0 0 14px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(124, 246, 255, 0.06);
  z-index: 2;
}

.body-core-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 56%;
  height: 22%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(124, 246, 255, 0.18) 44%, transparent 72%);
  filter: blur(5px);
  animation: reactor-pulse 2.8s ease-in-out infinite;
}

.body-panel {
  top: 16%;
  width: 22%;
  height: 28%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(52, 68, 100, 0.08) 24%, rgba(8, 16, 30, 0.92) 100%);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.08);
  opacity: 0.72;
}

.panel-left {
  left: 25%;
}

.panel-right {
  right: 25%;
}

.body-base {
  top: 52%;
  width: 38%;
  height: 24%;
  border-radius: 999px 999px 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(56, 72, 100, 0.08) 18%, rgba(8, 16, 30, 0.98) 100%);
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.08),
    0 14px 20px rgba(0, 0, 0, 0.2);
}

.visual-floating {
  position: absolute;
  z-index: 2;
  min-width: 160px;
  padding: 14px 16px;
  border: 1px solid rgba(124, 246, 255, 0.16);
  border-radius: 20px;
  background: rgba(7, 16, 31, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transform: translate3d(0, calc(var(--scroll-shift, 0px) * -0.06), 0);
}

.visual-floating span {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.visual-floating small {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
}

.floating-a {
  top: 9%;
  left: 4%;
}

.floating-b {
  top: 22%;
  right: 5%;
}

.floating-c {
  right: 10%;
  bottom: 12%;
}

.status-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.status-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.status-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(124, 246, 255, 0.08);
}

.status-list strong {
  font-family: "Orbitron", sans-serif;
  color: var(--cyan);
  font-size: 0.88rem;
}

.status-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 100px;
  margin-top: 18px;
}

.status-bars span,
.feed-chart i,
.mini-wave i,
.stacked-meters span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(124, 246, 255, 0.2) 30%, rgba(91, 132, 255, 0.5) 100%);
}

.status-bars span {
  height: var(--level);
  animation: pulse-bar 2.8s ease-in-out infinite;
}

.status-bars span:nth-child(2) { animation-delay: 0.2s; }
.status-bars span:nth-child(3) { animation-delay: 0.35s; }
.status-bars span:nth-child(4) { animation-delay: 0.5s; }
.status-bars span:nth-child(5) { animation-delay: 0.65s; }
.status-bars span:nth-child(6) { animation-delay: 0.8s; }

.feed-lines {
  display: grid;
  gap: 10px;
}

.feed-lines span {
  font-family: "Chakra Petch", sans-serif;
  text-transform: lowercase;
}

.feed-chart,
.mini-wave,
.stacked-meters {
  display: grid;
  align-items: end;
  gap: 8px;
}

.feed-chart {
  grid-template-columns: repeat(8, 1fr);
  height: 84px;
  margin-top: 18px;
}

.feed-chart i {
  animation: jump 1.8s ease-in-out infinite;
}

.feed-chart i:nth-child(1) { height: 28%; }
.feed-chart i:nth-child(2) { height: 54%; animation-delay: 0.12s; }
.feed-chart i:nth-child(3) { height: 38%; animation-delay: 0.24s; }
.feed-chart i:nth-child(4) { height: 72%; animation-delay: 0.36s; }
.feed-chart i:nth-child(5) { height: 42%; animation-delay: 0.48s; }
.feed-chart i:nth-child(6) { height: 82%; animation-delay: 0.6s; }
.feed-chart i:nth-child(7) { height: 50%; animation-delay: 0.72s; }
.feed-chart i:nth-child(8) { height: 66%; animation-delay: 0.84s; }

.signal-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.signal-strip span,
.module-card,
.timeline,
.scene-card,
.contact-box {
  border: 1px solid var(--line);
  background: rgba(8, 16, 30, 0.56);
  box-shadow: var(--shadow);
}

.signal-strip span {
  padding: 14px 12px;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.module-zone,
.timeline-zone,
.scene-zone,
.contact-zone {
  padding-top: 120px;
}

.section-intro {
  max-width: 860px;
}

.section-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Orbitron", "Noto Sans SC", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.module-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.module-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
}

.module-large {
  min-height: 320px;
}

.module-tall {
  grid-column: 3;
  grid-row: span 2;
  min-height: 0;
}

.module-index,
.timeline-no {
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.module-card h3,
.timeline-item h3,
.scene-card h3,
.contact-box strong {
  margin: 14px 0 0;
  font-size: 1.3rem;
}

.mini-wave {
  grid-template-columns: repeat(6, 1fr);
  height: 72px;
  margin-top: 22px;
}

.mini-wave i {
  animation: jump 1.6s ease-in-out infinite;
}

.mini-wave i:nth-child(1) { height: 34%; }
.mini-wave i:nth-child(2) { height: 68%; animation-delay: 0.1s; }
.mini-wave i:nth-child(3) { height: 45%; animation-delay: 0.2s; }
.mini-wave i:nth-child(4) { height: 84%; animation-delay: 0.3s; }
.mini-wave i:nth-child(5) { height: 52%; animation-delay: 0.4s; }
.mini-wave i:nth-child(6) { height: 74%; animation-delay: 0.5s; }

.stacked-meters {
  grid-template-columns: 1fr;
  height: auto;
  margin-top: 18px;
}

.stacked-meters span {
  height: 10px;
  border-radius: 999px;
  animation: scan-width 3s ease-in-out infinite;
}

.stacked-meters span:nth-child(1) { width: 94%; }
.stacked-meters span:nth-child(2) { width: 72%; animation-delay: 0.2s; }
.stacked-meters span:nth-child(3) { width: 84%; animation-delay: 0.4s; }
.stacked-meters span:nth-child(4) { width: 66%; animation-delay: 0.6s; }

.timeline {
  margin-top: 34px;
  padding: 22px;
  border-radius: 32px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 22px 12px 22px 0;
}

.timeline-item + .timeline-item {
  border-top: 1px solid rgba(124, 246, 255, 0.08);
}

.timeline-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(124, 246, 255, 0.24);
  border-radius: 18px;
}

.scene-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
}

.scene-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
}

.scene-a {
  grid-row: span 2;
  min-height: 498px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(14, 26, 48, 0.92), rgba(6, 12, 24, 0.86)),
    rgba(8, 16, 30, 0.82);
}

.scene-b {
  background:
    linear-gradient(135deg, rgba(91, 132, 255, 0.12), transparent 65%),
    rgba(8, 16, 30, 0.82);
}

.scene-c {
  background:
    linear-gradient(135deg, rgba(133, 255, 212, 0.08), transparent 70%),
    rgba(8, 16, 30, 0.82);
}

.quote-zone {
  margin-top: 120px;
  padding: 32px 36px;
  transform: translate3d(0, calc(var(--scroll-shift, 0px) * -0.03), 0);
}

.quote {
  margin: 0;
  max-width: 16ch;
  font-family: "Orbitron", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 30px;
}

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

.contact-box {
  display: block;
  padding: 22px;
  border-radius: 24px;
}

.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.contact-box strong {
  display: block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%, 44%, 48%, 100% {
    opacity: 1;
    transform: scaleX(1);
  }

  46% {
    opacity: 0.4;
    transform: scaleX(0.2);
  }
}

@keyframes pulse-bar {
  0%, 100% {
    transform: scaleY(0.88);
    opacity: 0.84;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes jump {
  0%, 100% {
    transform: scaleY(0.72);
    opacity: 0.76;
  }

  50% {
    transform: scaleY(1.06);
    opacity: 1;
  }
}

@keyframes scan-width {
  0%, 100% {
    transform: scaleX(0.92);
    transform-origin: left center;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes reactor-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.94);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes reactor-ring {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.96);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.02);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.96);
  }
}

@keyframes screen-jitter {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(0.8px, -0.6px, 0);
  }

  50% {
    transform: translate3d(-0.9px, 0.6px, 0);
  }

  75% {
    transform: translate3d(0.6px, 0.4px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1140px) {
  .hero-board,
  .module-grid,
  .scene-stack,
  .contact-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-board {
    grid-template-areas:
      "title"
      "visual"
      "status"
      "feed";
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .module-tall,
  .scene-a {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .signal-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1320px);
  }

  .site-header {
    position: static;
  }

  .hero-title,
  .hero-visual,
  .hero-status,
  .hero-feed,
  .module-card,
  .timeline,
  .scene-card,
  .contact-panel,
  .quote-zone {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-title h1 {
    max-width: none;
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .hero-kpis,
  .signal-strip,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .robot-bust {
    width: min(380px, 90vw);
  }

  .robot-arm {
    width: 16%;
    height: 54%;
  }

  .robot-arm {
    display: none;
  }

  .visual-floating {
    min-width: 136px;
    padding: 12px 14px;
  }

  .floating-a {
    top: 6%;
    left: 2%;
  }

  .floating-b {
    top: auto;
    right: 4%;
    bottom: 24%;
  }

  .floating-c {
    right: 6%;
    bottom: 8%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}
