:root {
  color-scheme: dark;
  --bg: #020304;
  --bg-soft: #05080b;
  --surface: rgba(10, 14, 18, 0.68);
  --surface-strong: rgba(17, 23, 30, 0.86);
  --surface-light: rgba(224, 235, 255, 0.12);
  --text: #f6f8fb;
  --text-soft: rgba(246, 248, 251, 0.74);
  --text-muted: rgba(246, 248, 251, 0.52);
  --border: rgba(230, 240, 255, 0.12);
  --border-bright: rgba(238, 246, 255, 0.42);
  --accent: #dce9ff;
  --accent-blue: #9bc4ff;
  --green: #55f0a8;
  --shadow: rgba(0, 0, 0, 0.56);
  --pointer-x: 0;
  --pointer-y: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.86), rgba(2, 3, 4, 0.98) 58%, #020304),
    radial-gradient(900px 580px at 76% 20%, rgba(139, 179, 255, 0.18), transparent 67%),
    radial-gradient(900px 520px at 26% 4%, rgba(255, 255, 255, 0.055), transparent 70%),
    #020304;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 62%, transparent);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 22%, rgba(154, 196, 255, 0.07) 48%, transparent 74%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0, rgba(255, 255, 255, 0.028) 1px, transparent 1px, transparent 4px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 26px 30px 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  padding: 12px 17px 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(2, 3, 4, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.nav-actions,
.hero-actions,
.hero-tags,
.mini-logos,
.metrics {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 26px;
  height: 26px;
  color: #ffffff;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark path + path {
  fill: var(--bg);
}

.nav-links {
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  color: var(--text-soft);
}

.nav-links a,
.ghost-link,
.button {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.nav-links a:hover,
.ghost-link:hover {
  color: var(--text);
}

.nav-actions {
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.button span,
.glass-card a span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 1px;
  overflow: visible;
  font-size: 0;
  background: currentColor;
}

.button span::after,
.glass-card a span::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  color: #05070a;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.08);
}

.button-light:hover {
  background: #eef4ff;
  box-shadow: 0 20px 42px rgba(155, 196, 255, 0.18);
}

.button-quiet,
.button-dark {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button-quiet:hover,
.button-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, 0.83fr) minmax(520px, 1.17fr);
  grid-template-areas:
    "copy visual"
    "cards visual"
    "rail rail";
  column-gap: 28px;
  row-gap: 22px;
  min-height: calc(100vh - 28px);
  padding: 64px 30px 24px;
}

.hero-section::before {
  position: absolute;
  right: 0;
  bottom: 138px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
  grid-area: copy;
  align-self: center;
  max-width: 610px;
}

.section-label {
  margin: 0 0 23px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.coverage-copy h2,
.developer-copy h2,
.cta-section h2 {
  margin: 0;
  font-weight: 650;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 580px;
  font-size: 58px;
}

.hero-lede {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.58;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.hero-tags {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 13px;
}

.hero-tags span {
  position: relative;
  padding-left: 21px;
}

.hero-tags span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 10px rgba(155, 196, 255, 0.18);
}

.hero-visual {
  position: relative;
  z-index: 2;
  grid-area: visual;
  align-self: center;
  overflow: hidden;
  min-height: 530px;
  perspective: 1400px;
}

.visual-frame {
  position: absolute;
  inset: 2% -6% 0 -12%;
  overflow: hidden;
  border-radius: 8px;
  transform:
    translate3d(calc(var(--pointer-x) * -18px), calc(var(--pointer-y) * -13px), 0)
    rotateX(calc(var(--pointer-y) * -2deg))
    rotateY(calc(var(--pointer-x) * 2.2deg));
  transform-style: preserve-3d;
  animation: visualDrift 8s ease-in-out infinite;
}

.visual-frame::before,
.visual-frame::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
}

.visual-frame::before {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.95) 0%, rgba(2, 3, 4, 0.2) 16%, transparent 31%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.62) 0%, transparent 18%, transparent 75%, rgba(2, 3, 4, 0.96) 100%);
}

.visual-frame::after {
  background:
    linear-gradient(105deg, transparent 15%, rgba(255, 255, 255, 0.16) 42%, transparent 49%),
    radial-gradient(640px 260px at 73% 49%, rgba(202, 224, 255, 0.24), transparent 68%);
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: gleam 3.56s ease-in-out infinite;
}

.visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.1) brightness(0.92);
  transform: scale(1.05);
}

.edge-cover {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.edge-cover-left {
  bottom: 0;
  left: 0;
  width: 26%;
  height: 34%;
  background: linear-gradient(90deg, #020304 0%, rgba(2, 3, 4, 0.92) 58%, transparent 100%);
}

.edge-cover-bottom {
  right: 0;
  bottom: 0;
  left: 0;
  height: 15%;
  background: linear-gradient(180deg, transparent, rgba(2, 3, 4, 0.92));
}

.light-sweep {
  position: absolute;
  z-index: 6;
  top: 48%;
  left: 2%;
  width: 98%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), rgba(155, 196, 255, 0.72), transparent);
  box-shadow: 0 0 28px rgba(188, 215, 255, 0.95);
  opacity: 0.82;
  transform: translateX(-100%) rotate(-2deg);
  animation: beamPass 3.56s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.scan-beam {
  position: absolute;
  z-index: 6;
  top: 18%;
  left: 42%;
  width: 34%;
  height: 62%;
  background: linear-gradient(90deg, transparent, rgba(220, 233, 255, 0.17), transparent);
  filter: blur(8px);
  opacity: 0;
  transform: skewX(-18deg);
  animation: scanFlash 3.56s ease-in-out infinite;
}

.spark {
  position: absolute;
  z-index: 7;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px 8px rgba(174, 205, 255, 0.42);
  opacity: 0;
  animation: sparkBlink 3.56s ease-in-out infinite;
}

.spark-one {
  top: 38%;
  left: 34%;
}

.spark-two {
  top: 49%;
  left: 58%;
  animation-delay: 0.36s;
}

.spark-three {
  top: 31%;
  right: 15%;
  animation-delay: 0.7s;
}

.hero-cards {
  position: relative;
  z-index: 4;
  display: grid;
  grid-area: cards;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-self: end;
}

.glass-card,
.workflow-card,
.terminal-panel,
.signal-board,
.cta-section {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 70px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.glass-card {
  min-height: 138px;
  padding: 23px 25px 22px;
  border-radius: 8px;
  overflow: hidden;
}

.glass-card::before,
.workflow-card::before,
.signal-board::before,
.terminal-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 220ms ease;
}

.glass-card:hover::before,
.workflow-card:hover::before,
.signal-board:hover::before,
.terminal-panel:hover::before {
  opacity: 1;
  animation: cardSweep 820ms ease;
}

.glass-card h2 {
  margin: 15px 0 6px;
  font-size: 18px;
  line-height: 1.24;
}

.glass-card p,
.workflow-card p,
.coverage-copy p,
.developer-copy p,
.cta-section p {
  color: var(--text-soft);
  line-height: 1.64;
}

.glass-card p {
  min-height: 40px;
  margin: 0;
  font-size: 13px;
}

.glass-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--text);
  font-size: 14px;
  font-weight: 680;
}

.icon-shield,
.icon-bars {
  width: 35px;
  height: 35px;
  color: var(--accent);
}

.icon-shield {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px 10px 14px 14px;
  clip-path: polygon(50% 0, 92% 18%, 82% 78%, 50% 100%, 18% 78%, 8% 18%);
  box-shadow: inset 0 0 20px rgba(155, 196, 255, 0.18), 0 0 24px rgba(155, 196, 255, 0.14);
}

.icon-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.icon-bars i {
  display: block;
  width: 7px;
  background: rgba(236, 245, 255, 0.86);
  box-shadow: 0 0 16px rgba(155, 196, 255, 0.22);
}

.icon-bars i:nth-child(1) {
  height: 16px;
}

.icon-bars i:nth-child(2) {
  height: 28px;
}

.icon-bars i:nth-child(3) {
  height: 22px;
}

.hero-rail {
  position: relative;
  z-index: 5;
  display: grid;
  grid-area: rail;
  grid-template-columns: minmax(320px, 1.2fr) minmax(440px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 108px;
  padding: 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(6, 8, 11, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.rail-group p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.mini-logos {
  flex-wrap: wrap;
  gap: 28px;
  color: var(--text-soft);
  font-size: 17px;
}

.mini-logos span {
  position: relative;
  padding-left: 24px;
}

.mini-logos span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) rotate(45deg);
}

.metrics {
  justify-content: space-between;
  gap: 22px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics dl,
.metrics dt,
.metrics dd {
  margin: 0;
}

.metrics div {
  min-width: 92px;
}

.metrics dt {
  margin-bottom: 6px;
  font-size: 23px;
  font-weight: 650;
  white-space: nowrap;
}

.metrics dd {
  color: var(--text-muted);
  font-size: 13px;
}

.workflow-section,
.coverage-section,
.developer-section,
.cta-section {
  margin-top: 112px;
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.coverage-copy h2,
.developer-copy h2,
.cta-section h2 {
  font-size: 50px;
}

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

.workflow-card {
  position: relative;
  min-height: 276px;
  padding: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.workflow-card:not(:last-child)::after {
  position: absolute;
  top: 52px;
  right: -34px;
  z-index: 2;
  width: 62px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(155, 196, 255, 0.6), transparent);
  box-shadow: 0 0 22px rgba(155, 196, 255, 0.52);
}

.step-number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  font-weight: 760;
}

.workflow-card h3 {
  margin: 82px 0 14px;
  font-size: 32px;
  line-height: 1.08;
}

.workflow-card p {
  margin: 0;
  font-size: 16px;
}

.coverage-section,
.developer-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(520px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.coverage-copy p,
.developer-copy p,
.cta-section p {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: 17px;
}

.coverage-copy .button {
  margin-top: 34px;
}

.signal-board {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border-radius: 8px;
  overflow: hidden;
}

.signal-board::after {
  position: absolute;
  inset: 16% -15% -20% 16%;
  content: "";
  background: radial-gradient(closest-side, rgba(155, 196, 255, 0.14), transparent 72%);
  pointer-events: none;
}

.signal-cube {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 420px;
  margin: 14px auto 0;
  transform: rotateX(55deg) rotateZ(-34deg) skewX(-7deg);
  animation: cubeBreath 5.2s ease-in-out infinite;
}

.signal-cube span {
  display: grid;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(0, 0, 0, 0.32);
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
  place-items: center;
  text-align: center;
}

.signal-list {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 5, 8, 0.62);
}

.signal-list strong,
.signal-list span {
  display: block;
}

.signal-list strong {
  margin-bottom: 7px;
  font-size: 15px;
}

.signal-list span {
  color: var(--text-muted);
  font-size: 13px;
}

.developer-section {
  grid-template-columns: minmax(520px, 1.05fr) minmax(330px, 0.95fr);
}

.terminal-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 8px;
}

.terminal-header {
  display: flex;
  gap: 8px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.terminal-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.terminal-panel pre {
  margin: 0;
  padding: 32px;
  overflow-x: auto;
  color: rgba(240, 247, 255, 0.88);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  line-height: 1.72;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  border-radius: 8px;
}

.cta-section h2 {
  max-width: 760px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes visualDrift {
  0%,
  100% {
    filter: brightness(0.95);
  }

  50% {
    filter: brightness(1.08);
  }
}

@keyframes gleam {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-6%);
  }

  42%,
  58% {
    opacity: 0.7;
    transform: translateX(5%);
  }
}

@keyframes beamPass {
  0% {
    opacity: 0;
    transform: translateX(-102%) rotate(-2deg);
  }

  24% {
    opacity: 0.95;
  }

  58% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(55%) rotate(-2deg);
  }
}

@keyframes scanFlash {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-45%) skewX(-18deg);
  }

  45% {
    opacity: 0.72;
  }

  68% {
    opacity: 0;
    transform: translateX(68%) skewX(-18deg);
  }
}

@keyframes sparkBlink {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  42% {
    opacity: 1;
    transform: scale(1);
  }

  52% {
    opacity: 0.35;
  }
}

@keyframes cardSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes cubeBreath {
  0%,
  100% {
    transform: rotateX(55deg) rotateZ(-34deg) skewX(-7deg) translateY(0);
  }

  50% {
    transform: rotateX(55deg) rotateZ(-34deg) skewX(-7deg) translateY(-12px);
  }
}

@media (max-width: 1180px) {
  .site-shell {
    padding-inline: 22px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "cards"
      "rail";
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: 56px;
  }

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

  .visual-frame {
    inset: 0 -4%;
  }

  .coverage-section,
  .developer-section {
    grid-template-columns: 1fr;
  }

  .developer-section .developer-copy {
    order: -1;
  }
}

@media (max-width: 860px) {
  .site-shell {
    padding: 16px 14px 40px;
  }

  .site-header {
    top: 10px;
    gap: 14px;
  }

  .brand {
    font-size: 15px;
  }

  .nav-actions {
    gap: 10px;
  }

  .ghost-link {
    display: none;
  }

  .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-section {
    padding: 50px 4px 12px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .visual-frame {
    inset: 0 -52% 0 -18%;
  }

  .hero-cards,
  .workflow-grid,
  .signal-list,
  .hero-rail,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-cards,
  .workflow-grid {
    gap: 14px;
  }

  .hero-rail {
    gap: 24px;
    padding: 22px;
  }

  .metrics {
    display: grid;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
  }

  .workflow-section,
  .coverage-section,
  .developer-section,
  .cta-section {
    margin-top: 72px;
  }

  .section-heading h2,
  .coverage-copy h2,
  .developer-copy h2,
  .cta-section h2 {
    font-size: 36px;
  }

  .section-heading {
    text-align: left;
  }

  .workflow-card:not(:last-child)::after {
    display: none;
  }

  .signal-board {
    min-height: 560px;
    padding: 22px;
  }

  .signal-cube {
    max-width: 330px;
  }

  .signal-cube span {
    min-height: 78px;
    padding: 10px;
    font-size: 11px;
  }

  .signal-list {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .terminal-panel {
    min-height: auto;
  }

  .terminal-panel pre {
    padding: 24px;
    font-size: 13px;
  }

  .cta-section {
    display: grid;
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px;
  }

  .brand-mark {
    width: 23px;
    height: 23px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .visual-frame {
    inset: 0 -78% 0 -30%;
  }

  .mini-logos {
    gap: 16px;
    font-size: 14px;
  }

  .glass-card,
  .workflow-card,
  .cta-section {
    padding: 24px;
  }
}

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