@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-mono-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/dm-mono-500.woff2") format("woff2");
}

:root {
  --bg: #05080c;
  --bg-soft: #0a0e13;
  --panel: #0d1218;
  --panel-2: #121820;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f7f8;
  --muted: #929da8;
  --cyan: #14b8ff;
  --cyan-bright: #63d2ff;
  --cyan-dark: #0079b6;
  --good: #6ee7ad;
  --display: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --page: min(1320px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--cyan);
  color: #00101a;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 200ms ease, height 200ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 70px;
  background: rgba(5, 8, 12, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-logo img {
  width: 138px;
  height: auto;
  display: block;
}

.site-footer .brand-logo img {
  width: 166px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  transform: skewX(-8deg);
}

.brand-mark > span {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(20, 184, 255, 0.42);
}

.brand-mark > span:nth-child(1),
.brand-mark > span:nth-child(4) {
  opacity: 0.42;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name > span {
  color: var(--cyan);
}

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

.desktop-nav a {
  position: relative;
  color: #d8dfe4;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--cyan);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 160ms ease, background 160ms ease;
}

.header-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--bg);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1905 / 825;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("assets/ledviz-stadium-hero.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #03070b;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.28) 0%, transparent 24%, transparent 58%, rgba(5, 8, 12, 0.82) 100%);
}

.hero-content {
  padding-bottom: clamp(18px, 4vw, 76px);
}

.kicker,
.eyebrow,
.section-index,
.card-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kicker,
.eyebrow,
.card-kicker {
  color: var(--cyan-bright);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(20, 184, 255, 0.14), 0 0 18px var(--cyan);
}

.contact h2 {
  margin: 0;
  font-size: clamp(62px, 7.4vw, 112px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.87;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 4.25vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.62);
}

.hero h1 em,
.contact h2 em {
  color: var(--cyan-bright);
  font-style: normal;
}

.hero-copy {
  max-width: 580px;
  margin: 34px 0 0;
  color: #c3cbd1;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--cyan);
  color: #00111b;
  box-shadow: 0 10px 36px rgba(20, 184, 255, 0.15);
  transition: background 160ms ease, transform 160ms ease;
}

.button-primary:hover {
  background: #6ed6ff;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 6px;
}

.hero-bottom {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.live-indicator,
.hero-bottom li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--good);
}

.live-indicator span,
.console-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 12px var(--good);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-bottom ul {
  display: flex;
  gap: 44px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bottom li {
  color: #aab4bd;
}

.hero-bottom li strong {
  color: var(--cyan-bright);
  margin-right: 8px;
}

.signal-strip {
  height: 3px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(20, 184, 255, 0.48);
}

.section {
  padding-block: 140px;
  scroll-margin-top: 70px;
}

.section-index {
  color: #697580;
}

.intro {
  display: grid;
  grid-template-columns: 0.45fr 1.45fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.intro-heading .eyebrow {
  margin-bottom: 24px;
}

.intro h2,
.section-head h2,
.workflow h2,
.use-case-head h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.intro h2 span,
.section-head h2 span,
.workflow h2 span,
.use-case-head h2 span {
  color: var(--cyan-bright);
}

.intro-copy {
  padding-top: 42px;
}

.intro-copy p,
.section-head > p,
.product-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.intro-copy p + p {
  margin-top: 22px;
}

.software-section {
  padding-bottom: 80px;
}

.software-section-head {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.software-section-head .section-index {
  margin-bottom: 30px;
}

.software-section-head .eyebrow {
  margin-bottom: 20px;
}

.software-section-head h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.software-section-head h2 span {
  color: var(--cyan-bright);
}

.software-section-head > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.software-showcase {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 280px;
  min-height: 610px;
  border: 1px solid var(--line-strong);
  background: #080c11;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.45), 0 0 80px rgba(20, 184, 255, 0.035);
}

.software-tabs {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: #0a0f14;
}

.software-tab {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 7px;
  padding: 16px 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #9ba6ae;
  cursor: pointer;
  text-align: left;
}

.software-tab:hover {
  background: #10171f;
}

.software-tab.active {
  border-color: rgba(20, 184, 255, 0.28);
  background: rgba(20, 184, 255, 0.075);
  color: #fff;
}

.software-tab.active::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(20, 184, 255, 0.65);
}

.software-tab > span {
  grid-row: 1 / 3;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 9px;
}

.software-tab strong {
  font-size: 12px;
  font-weight: 650;
}

.software-tab small {
  margin-top: 6px;
  color: #62707b;
  font-size: 9px;
  line-height: 1.35;
}

.software-viewer {
  min-width: 0;
  display: grid;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #070a0e;
  background-size: 30px 30px;
}

.software-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #33404b;
  background: #15191d;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.55);
}

.software-window-bar {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid #2a343d;
  background: linear-gradient(180deg, #202830, #12181e);
}

.software-window-bar > strong,
.window-state {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.software-window-bar > strong {
  color: #c7d0d6;
  font-weight: 500;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52606c;
}

.window-dots span:first-child {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(20, 184, 255, 0.65);
}

.window-state {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #75828d;
}

.window-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 8px var(--good);
}

.software-image-wrap {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #15191d;
}

.software-image-wrap img,
.hero-window > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: opacity 140ms ease, transform 180ms ease;
}

.software-image-wrap img.changing {
  opacity: 0;
  transform: scale(0.99);
}

.image-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 12, 0.88);
  color: #e8edf0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.image-zoom:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
}

.software-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-left: 1px solid var(--line);
  background: #0b1016;
}

.software-description > span {
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.software-description h3 {
  margin: 28px 0 18px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.software-description p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.software-description ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.software-description li {
  position: relative;
  padding-left: 17px;
  color: #b8c1c8;
  font-size: 11px;
  line-height: 1.45;
}

.software-description li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(20, 184, 255, 0.6);
}

.image-dialog {
  width: min(96vw, 1720px);
  max-width: none;
  margin: auto;
  padding: 0;
  border: 1px solid #3a4650;
  background: #080c11;
  color: #fff;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.8);
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.image-dialog img {
  width: 100%;
  max-height: 88vh;
  display: block;
  object-fit: contain;
}

.image-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 8, 12, 0.9);
  color: #fff;
  cursor: pointer;
  font-size: 21px;
}

.product-stage {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: center;
}

.product-copy h3 {
  margin: 20px 0 26px;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #c2cbd2;
  font-size: 13px;
}

.check-list li {
  display: flex;
  gap: 12px;
}

.check-list span {
  color: var(--cyan);
}

.console {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #090d12;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46), 0 0 70px rgba(20, 184, 255, 0.05);
}

.console-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #10161d;
}

.console-brand,
.console-status {
  display: flex;
  align-items: center;
}

.mini-mark {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  background: linear-gradient(135deg, rgba(20, 184, 255, 0.35) 0 46%, var(--cyan) 46% 100%);
  transform: skewX(-8deg);
}

.console-brand strong {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.console-brand small {
  margin-left: 18px;
  color: #62707d;
  font-family: var(--mono);
  font-size: 8px;
}

.console-status {
  gap: 8px;
  color: var(--good);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.console-body {
  min-height: 440px;
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
}

.scene-rail {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #0c1117;
}

.scene-rail > p {
  margin: 0 7px 12px;
  color: #677480;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scene-button {
  position: relative;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 6px;
  margin-bottom: 7px;
  padding: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #b9c3cb;
  cursor: pointer;
  text-align: left;
}

.scene-button:hover {
  background: #121922;
}

.scene-button.active {
  border-color: rgba(20, 184, 255, 0.34);
  background: rgba(20, 184, 255, 0.09);
  color: #fff;
}

.scene-button.active::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.scene-button > span {
  grid-row: 1 / 3;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 9px;
}

.scene-button strong {
  font-size: 10px;
  font-weight: 600;
}

.scene-button small {
  margin-top: 4px;
  color: #68747f;
  font-size: 8px;
}

.output-area {
  padding: 19px;
}

.output-head,
.output-meta,
.console-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.output-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.output-head strong {
  font-size: 13px;
}

.output-head small {
  color: #6f7c87;
  font-family: var(--mono);
  font-size: 9px;
}

.led-preview {
  position: relative;
  height: 230px;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border: 1px solid #28323c;
  background:
    radial-gradient(circle at 50% 120%, rgba(20, 184, 255, 0.25), transparent 62%),
    linear-gradient(135deg, #061724, #0b1118 62%);
  isolation: isolate;
}

.led-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, #e7f8ff 0 1px, transparent 1px);
  background-size: 6px 6px;
}

.led-preview::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(108deg, transparent 10%, rgba(20, 184, 255, 0.24) 33%, transparent 47%);
  transform: translateX(-120%);
  animation: preview-sweep 4s ease-in-out infinite;
}

.preview-word {
  color: #e9faff;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 0 24px rgba(20, 184, 255, 0.72);
  transition: opacity 120ms ease, transform 120ms ease;
}

.led-preview[data-mode="sponsor"] .preview-word {
  color: #061019;
  padding: 8px 16px;
  background: #f1f6f8;
  text-shadow: none;
}

.led-preview[data-mode="results"] .preview-word {
  width: 72%;
  padding: 12px;
  border-left: 5px solid var(--cyan);
  background: rgba(4, 9, 13, 0.72);
  font-size: clamp(18px, 2.2vw, 28px);
}

.preview-panels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.preview-panels span {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.preview-scanline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.output-meta {
  min-height: 38px;
  padding-inline: 2px;
  border-bottom: 1px solid var(--line);
  color: #697681;
  font-family: var(--mono);
  font-size: 8px;
}

.output-meta > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.output-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.output-meta strong {
  color: var(--good);
  font-weight: 500;
}

.console-actions {
  justify-content: flex-end;
  gap: 8px;
  padding-top: 13px;
}

.console-actions button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid #2b3742;
  background: #121922;
  color: #94a2ad;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
}

.console-actions .take-button {
  color: #051017;
  background: var(--cyan);
  border-color: var(--cyan);
}

.take-button span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: #052033;
}

.console.is-previewing .led-preview {
  outline: 2px solid #f4bd4a;
  outline-offset: -2px;
}

.console.is-live .take-button {
  background: var(--good);
  border-color: var(--good);
}

.features,
.use-cases {
  background: #080c11;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 70px;
  align-items: end;
  margin-bottom: 68px;
}

.section-head .section-index {
  margin-bottom: 30px;
}

.section-head > p {
  padding-bottom: 7px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0f14;
  transition: background 180ms ease;
}

.feature-card:hover {
  background: #0e151c;
}

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

.feature-number,
.case-number {
  position: relative;
  z-index: 2;
  color: #64717c;
  font-family: var(--mono);
  font-size: 10px;
}

.feature-card .card-kicker {
  margin-bottom: 13px;
}

.feature-card h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.feature-card p:last-child {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pixel-layout {
  position: absolute;
  top: 40px;
  right: 0;
  width: 70%;
  height: 180px;
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr 0.8fr 1.2fr;
  gap: 4px;
  padding: 48px 0 48px 48px;
  background: radial-gradient(circle at 70% 50%, rgba(20, 184, 255, 0.14), transparent 65%);
  transform: perspective(600px) rotateY(-18deg) rotateX(7deg);
}

.pixel-layout span {
  border: 1px solid rgba(70, 201, 255, 0.5);
  background: rgba(20, 184, 255, 0.12);
  box-shadow: inset 0 0 22px rgba(20, 184, 255, 0.08);
}

.feature-icon {
  position: relative;
  width: 110px;
  height: 110px;
  align-self: center;
  display: grid;
  place-items: center;
  border: 1px solid #26313a;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 255, 0.12), transparent 65%);
  color: var(--cyan-bright);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20, 184, 255, 0.17);
  border-radius: 50%;
}

.feature-icon::before {
  inset: -10px;
}

.feature-icon::after {
  inset: -22px;
}

.upload-icon span {
  font-family: var(--mono);
  font-size: 28px;
}

.pulse-icon span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 12px rgba(20, 184, 255, 0.1), 0 0 25px var(--cyan);
}

.eye-icon span {
  width: 40px;
  height: 24px;
  border: 1px solid var(--cyan-bright);
  border-radius: 50%;
}

.eye-icon span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 7px auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.feature-card-accent {
  background: linear-gradient(145deg, #0b151d, #071018);
}

.output-lines {
  position: absolute;
  top: 48px;
  right: 42px;
  width: 45%;
  display: grid;
  gap: 18px;
}

.output-lines span {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 184, 255, 0), var(--cyan));
  box-shadow: 0 0 12px rgba(20, 184, 255, 0.5);
}

.output-lines span::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.output-lines span:nth-child(2) {
  width: 78%;
  justify-self: end;
}

.output-lines span:nth-child(3) {
  width: 58%;
  justify-self: end;
}

.workflow {
  display: grid;
  grid-template-columns: 0.82fr 1.6fr;
  gap: 95px;
}

.workflow-title .section-index {
  margin-bottom: 64px;
}

.workflow-title .eyebrow {
  margin-bottom: 20px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.workflow-steps article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 10px;
}

.step-top i {
  width: 46px;
  height: 1px;
  background: var(--cyan);
}

.workflow-steps h3 {
  margin: 90px 0 14px;
  font-size: 22px;
  font-weight: 600;
}

.workflow-steps p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.use-case-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.use-case-grid article {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0f14;
}

.case-number {
  position: absolute;
  top: 28px;
  left: 28px;
}

.use-case-grid h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.use-case-grid p {
  position: relative;
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.case-graphic {
  position: absolute;
  inset: 50px 0 auto;
  height: 260px;
  opacity: 0.72;
}

.arena-graphic {
  perspective: 420px;
}

.arena-graphic i {
  position: absolute;
  left: 15%;
  right: 15%;
  height: 85px;
  border: 1px solid rgba(20, 184, 255, 0.4);
  border-radius: 50%;
  transform: rotateX(62deg);
  box-shadow: inset 0 -2px 10px rgba(20, 184, 255, 0.22), 0 0 18px rgba(20, 184, 255, 0.1);
}

.arena-graphic i:nth-child(1) { top: 35px; }
.arena-graphic i:nth-child(2) { top: 75px; left: 23%; right: 23%; }
.arena-graphic i:nth-child(3) { top: 115px; left: 31%; right: 31%; }

.event-graphic i {
  position: absolute;
  bottom: 32px;
  width: 32%;
  height: 125px;
  border: 1px solid rgba(20, 184, 255, 0.4);
  background: linear-gradient(180deg, transparent, rgba(20, 184, 255, 0.12));
  transform: skewY(-13deg);
}

.event-graphic i:nth-child(1) { left: 4%; }
.event-graphic i:nth-child(2) { left: 34%; height: 168px; }
.event-graphic i:nth-child(3) { left: 64%; height: 105px; }

.show-graphic i {
  position: absolute;
  top: 28px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 15px rgba(20, 184, 255, 0.5);
  transform: rotate(18deg);
}

.show-graphic i:nth-child(1) { left: 28%; }
.show-graphic i:nth-child(2) { left: 50%; transform: rotate(-12deg); }
.show-graphic i:nth-child(3) { left: 72%; transform: rotate(25deg); }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  padding-top: 170px;
  padding-bottom: 170px;
  isolation: isolate;
}

.contact-glow {
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  left: -300px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(20, 184, 255, 0.08);
  filter: blur(90px);
}

.contact h2 {
  margin-top: 34px;
  font-size: clamp(54px, 6.5vw, 92px);
}

.contact-copy > p {
  max-width: 490px;
  margin-top: 34px;
}

.contact-copy > a {
  display: inline-flex;
  gap: 18px;
  margin-top: 34px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 13px;
  text-underline-offset: 6px;
}

.contact-form {
  position: relative;
  align-self: center;
  display: grid;
  gap: 24px;
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(11, 16, 22, 0.74);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.contact-form label > span {
  color: #82909b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #2a343e;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 12px 0;
  resize: vertical;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #4f5a64;
}

.captcha-fieldset {
  min-width: 0;
  margin: 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.captcha-fieldset legend {
  padding: 0;
  color: #82909b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(130px, 1fr);
  gap: 20px;
  align-items: end;
  margin-top: 12px;
}

.captcha-preview {
  position: relative;
  min-height: 82px;
  overflow: hidden;
  border: 1px solid #2a343e;
  background: #0a1016;
}

.captcha-preview[aria-busy="true"]::before {
  content: "Code wird geladen …";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #63717c;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.captcha-preview img {
  width: 100%;
  height: 82px;
  display: block;
  object-fit: cover;
}

.captcha-refresh {
  position: absolute;
  right: 6px;
  bottom: 6px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 8, 12, 0.88);
  color: #dbe4e9;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-bright);
}

.captcha-refresh:disabled {
  cursor: wait;
  opacity: 0.55;
}

.captcha-entry {
  align-self: stretch;
  align-content: end;
}

.captcha-entry input {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.captcha-status {
  margin: 10px 0 0;
  color: #596773;
  font-size: 10px;
  line-height: 1.5;
}

.captcha-status.error {
  color: #ff8b8b;
}

.contact-form .button {
  justify-self: start;
  margin-top: 6px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-note {
  margin: -10px 0 0;
  color: #596773;
  font-size: 11px;
}

.form-note.success {
  color: var(--good);
}

.form-note.error {
  color: #ff8b8b;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070a0e;
}

.footer-main {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-main p {
  justify-self: center;
  margin: 0;
  color: #6d7882;
  font-size: 12px;
}

.footer-top {
  justify-self: end;
  display: flex;
  gap: 12px;
  color: #c3cbd1;
  font-family: var(--mono);
  font-size: 10px;
  text-underline-offset: 5px;
}

.footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #4e5963;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.footer-legal a {
  color: #6f7b85;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--cyan-bright);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(20, 184, 255, 0.11), transparent 28rem),
    var(--bg);
}

.legal-header {
  grid-template-columns: 1fr auto;
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: blur(18px);
}

.legal-back {
  justify-self: end;
  color: #c3cbd1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--cyan-bright);
}

.legal-main {
  padding-top: 84px;
}

.legal-hero {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 100px;
  padding-bottom: 74px;
}

.legal-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--cyan-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--cyan);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.legal-intro {
  max-width: 680px;
  margin: 34px 0 0;
  color: #a8b2ba;
  font-size: 17px;
  line-height: 1.7;
}

.legal-content {
  max-width: 940px;
  margin-left: max(0px, calc((100% - 940px) / 2));
  padding-bottom: 130px;
}

.legal-content > section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 20px;
  color: #f4f7f8;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 30px 0 12px;
  color: #dce3e7;
  font-size: 17px;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: #929da8;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--cyan-bright);
  text-underline-offset: 4px;
}

.legal-content strong {
  color: #e6ecef;
  font-weight: 600;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.legal-info-grid section {
  min-height: 270px;
  padding: 34px;
  background: #0a0e13;
}

.legal-info-grid h2 {
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-version {
  color: #5f6b75;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes preview-sweep {
  0%, 18% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(150%); }
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 980px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .site-header .brand-logo img {
    width: 118px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .intro {
    grid-template-columns: 0.35fr 1.3fr 0.8fr;
    gap: 28px;
  }

  .product-stage,
  .workflow {
    grid-template-columns: 1fr;
  }

  .software-showcase {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .software-description {
    grid-column: 1 / -1;
    min-height: 250px;
    display: grid;
    grid-template-columns: 0.35fr 0.85fr 1.2fr;
    gap: 28px;
    align-items: start;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .software-description h3 {
    margin: 0;
  }

  .software-description ul {
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .product-copy {
    max-width: 600px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-title {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
  }

  .workflow-title .section-index {
    margin: 0;
  }

  .workflow-title .eyebrow,
  .workflow-title h2 {
    grid-column: 2;
  }

  .use-case-grid article {
    min-height: 430px;
  }

  .contact {
    gap: 56px;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
    background: rgba(5, 8, 12, 0.74);
    backdrop-filter: blur(14px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line-strong);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .site-header.menu-active .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.menu-active .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100svh - 68px);
    display: flex;
    flex-direction: column;
    padding: 36px 18px;
    background: rgba(5, 8, 12, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-header.menu-active .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 26px;
    font-weight: 500;
    text-decoration: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    background-position: center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5, 8, 12, 0.38) 0%, transparent 25%, transparent 55%, rgba(5, 8, 12, 0.88) 100%);
  }

  .hero-content {
    padding-bottom: clamp(18px, 4vw, 36px);
  }

  .hero h1 {
    font-size: clamp(18px, 5.3vw, 42px);
  }

  .section {
    padding-block: 90px;
  }

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

  .intro-heading .eyebrow {
    margin-top: 26px;
  }

  .intro-copy {
    max-width: 580px;
    padding-top: 0;
  }

  .product-stage {
    gap: 48px;
    padding-top: 0;
  }

  .console-body {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .scene-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scene-rail > p {
    display: none;
  }

  .scene-button {
    min-width: 0;
    margin: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .scene-button > span,
  .scene-button small {
    display: none;
  }

  .scene-button strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 46px;
  }

  .software-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .software-section-head > p {
    max-width: 540px;
  }

  .software-showcase {
    grid-template-columns: 1fr;
  }

  .software-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .software-tab {
    min-height: 82px;
  }

  .software-viewer {
    padding: 18px;
  }

  .software-description {
    grid-column: auto;
    display: flex;
    min-height: 0;
    padding: 28px;
  }

  .software-description h3 {
    margin: 24px 0 16px;
  }

  .software-description ul {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }

  .section-head > p {
    max-width: 520px;
  }

  .feature-grid,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 420px;
  }

  .workflow-title {
    display: block;
  }

  .workflow-title .section-index {
    margin-bottom: 44px;
  }

  .workflow-steps article {
    min-height: 230px;
  }

  .workflow-steps h3 {
    margin-top: 70px;
  }

  .use-case-head {
    display: grid;
    gap: 36px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .footer-main p {
    display: none;
  }

  .legal-main {
    padding-top: 68px;
  }

  .legal-hero {
    min-height: 350px;
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .legal-info-grid {
    grid-template-columns: 1fr;
  }

  .legal-info-grid section {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: 5.1vw;
  }

  .intro h2,
  .section-head h2,
  .software-section-head h2,
  .workflow h2,
  .use-case-head h2 {
    font-size: 40px;
  }

  .console-topbar {
    height: 50px;
  }

  .software-viewer {
    padding: 10px;
  }

  .software-window-bar {
    height: 38px;
  }

  .software-window-bar > strong {
    justify-self: end;
  }

  .window-state {
    display: none;
  }

  .image-zoom {
    right: 7px;
    bottom: 7px;
  }

  .console-brand small,
  .console-status {
    display: none;
  }

  .output-area {
    padding: 12px;
  }

  .led-preview {
    height: 165px;
  }

  .output-meta > span:nth-child(2) {
    display: none;
  }

  .feature-grid,
  .workflow-steps,
  .use-case-grid {
    border-left: 0;
  }

  .feature-card,
  .workflow-steps article,
  .use-case-grid article {
    border-left: 1px solid var(--line);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-preview {
    width: min(100%, 260px);
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact h2 {
    font-size: 52px;
  }

  .footer-main {
    min-height: 130px;
  }

  .footer-bottom {
    min-height: 78px;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 16px;
  }

  .footer-legal {
    order: 3;
    width: 100%;
  }

  .legal-back {
    font-size: 0;
  }

  .legal-back span {
    font-size: 18px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .legal-content {
    padding-bottom: 90px;
  }

  .legal-content > section {
    padding: 34px 0;
  }

  .legal-info-grid section {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
