:root {
  color-scheme: dark;
  --bg: #06070d;
  --panel: rgba(9, 12, 22, 0.86);
  --panel-solid: rgba(8, 10, 18, 0.96);
  --line: rgba(184, 205, 255, 0.2);
  --line-strong: rgba(235, 242, 255, 0.48);
  --text: #f4f7ff;
  --muted: #8d9ab7;
  --cyan: #2ff6dc;
  --blue: #668dff;
  --pink: #ff4ed8;
  --amber: #ffbf59;
  --danger: #ff6f91;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(118deg, rgba(255, 78, 216, 0.18), transparent 34%),
    linear-gradient(288deg, rgba(47, 246, 220, 0.13), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px),
    linear-gradient(140deg, #070812 0%, #111424 42%, #05060c 100%);
  overflow-x: hidden;
}

body.light {
  color-scheme: light;
  --panel: rgba(246, 249, 255, 0.82);
  --panel-solid: rgba(255, 255, 255, 0.96);
  --line: rgba(42, 61, 112, 0.24);
  --line-strong: rgba(18, 28, 55, 0.46);
  --text: #111827;
  --muted: #5a6680;
  background:
    linear-gradient(118deg, rgba(255, 78, 216, 0.14), transparent 34%),
    linear-gradient(288deg, rgba(47, 246, 220, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(14, 24, 52, 0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(14, 24, 52, 0.032) 0 1px, transparent 1px 96px),
    linear-gradient(140deg, #eef4ff 0%, #e7ecfb 46%, #f8f4ff 100%);
}

button,
input {
  font: inherit;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.34;
}

#signal-canvas[hidden] {
  display: none;
}

.shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(10px, 1.6vh, 22px) clamp(18px, 2vw, 44px);
}

.cockpit {
  position: relative;
  min-height: calc(100svh - clamp(20px, 3.2vh, 44px));
  overflow: hidden;
}

.cockpit::before {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 16%, transparent 76%, rgba(47, 246, 220, 0.08)),
    linear-gradient(135deg, transparent 0 66%, rgba(255, 191, 89, 0.09) 66% 66.35%, transparent 66.35%),
    linear-gradient(315deg, transparent 0 59%, rgba(102, 141, 255, 0.12) 59% 59.35%, transparent 59.35%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  opacity: 0.72;
  pointer-events: none;
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 6px);
  opacity: 0.038;
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: clamp(72px, 8.8vh, 96px);
  padding: clamp(8px, 1.2vh, 14px) 0 clamp(10px, 1.6vh, 18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #090b12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34),
    0 16px 44px rgba(0, 0, 0, 0.5),
    0 0 38px rgba(47, 246, 220, 0.28);
}

.brand p,
.kicker {
  margin: 0 0 7px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 0.92;
  font-weight: 950;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 56px rgba(47, 246, 220, 0.18);
}

h2 {
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 0.96;
  font-weight: 950;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(235, 242, 255, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 18, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.icon-button:hover {
  border-color: rgba(47, 246, 220, 0.56);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 26px rgba(47, 246, 220, 0.18);
}

.icon-button span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset -7px -4px 0 var(--cyan);
}

.access-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(360px, 0.82fr);
  gap: clamp(18px, 2vw, 30px);
  min-height: calc(100svh - clamp(112px, 12vh, 142px));
  align-items: stretch;
}

.mecha-stage {
  position: relative;
  min-height: min(760px, calc(100svh - clamp(118px, 12vh, 150px)));
  overflow: hidden;
  border: 1px solid rgba(235, 242, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(5, 8, 16, 0.12), transparent 42%),
    rgba(5, 7, 13, 0.76);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.mecha-stage::before,
.mecha-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mecha-stage::before {
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 12, 0.72) 0%, rgba(4, 6, 12, 0.12) 31%, transparent 64%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.84), transparent 34%, transparent 76%, rgba(5, 7, 13, 0.32));
}

.mecha-stage::after {
  z-index: 3;
  left: 26px;
  top: 26px;
  width: min(430px, 44%);
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--pink), transparent);
  box-shadow: 0 0 28px rgba(47, 246, 220, 0.32);
}

.mecha-hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  filter: saturate(1.06) contrast(1.04) brightness(0.96);
  transform: scale(1.035);
}

.scan-beam,
.reactor-glow,
.visor-glow {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
}

.scan-beam {
  top: 0;
  bottom: 0;
  left: -38%;
  width: 32%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(47, 246, 220, 0.02),
    rgba(47, 246, 220, 0.18),
    rgba(255, 78, 216, 0.12),
    transparent
  );
  transform: skewX(-16deg);
  opacity: 0.28;
}

.reactor-glow {
  left: 61%;
  top: 70%;
  width: clamp(116px, 14vw, 190px);
  height: clamp(116px, 14vw, 190px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 78, 216, 0.56), rgba(255, 78, 216, 0.22) 28%, rgba(102, 141, 255, 0.1) 48%, transparent 70%),
    radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 18%);
  filter: blur(4px);
  transform: translate(-50%, -50%);
  opacity: 0.72;
}

.visor-glow {
  left: 61%;
  top: 32%;
  width: clamp(150px, 18vw, 240px);
  height: clamp(42px, 5.5vw, 72px);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 246, 220, 0.5), rgba(47, 246, 220, 0.12) 44%, transparent 72%);
  filter: blur(5px);
  transform: translate(-50%, -50%);
  opacity: 0.62;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: clamp(22px, 3vw, 48px);
  right: clamp(20px, 3vw, 46px);
  bottom: clamp(24px, 4vw, 54px);
}

.hero-copy p {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(47, 246, 220, 0.46);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(6, 10, 18, 0.58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(52px, 4.9vw, 82px);
  line-height: 0.92;
  font-weight: 950;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16),
    0 0 34px rgba(47, 246, 220, 0.34),
    6px 8px 0 rgba(255, 78, 216, 0.18);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(235, 242, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(244, 247, 255, 0.82);
  background: rgba(7, 10, 18, 0.5);
  font-size: 11px;
  font-weight: 900;
}

.access-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: min(760px, calc(100svh - clamp(118px, 12vh, 150px)));
}

.system-rail {
  display: none;
  min-height: min(760px, calc(100svh - clamp(118px, 12vh, 150px)));
}

.rail-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(235, 242, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 18, 0.64);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
}

.rail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(47, 246, 220, 0.08), transparent 72%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 42px);
  opacity: 0.72;
  pointer-events: none;
}

.rail-workspace,
.rail-signal,
.rail-session {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(16px, 1.7vw, 24px);
}

.rail-workspace {
  min-height: 184px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 78, 216, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(47, 246, 220, 0.12), transparent 44%),
    rgba(7, 10, 18, 0.66);
}

.rail-workspace strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: clamp(36px, 3.1vw, 56px);
  line-height: 0.9;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.rail-kicker,
.rail-card p {
  position: relative;
  z-index: 1;
}

.rail-kicker {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rail-card p {
  margin: 0;
  color: rgba(244, 247, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.rail-signal {
  min-height: 220px;
}

.signal-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(235, 242, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 8, 14, 0.5);
}

.signal-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(47, 246, 220, 0.8);
}

.signal-row strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
}

.rail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 136px;
  padding: 14px;
}

.rail-grid span {
  position: relative;
  z-index: 1;
  min-height: 46px;
  border: 1px solid rgba(235, 242, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 246, 220, 0.12), transparent),
    rgba(5, 8, 14, 0.5);
}

.rail-grid span:nth-child(2),
.rail-grid span:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(255, 78, 216, 0.18), transparent),
    rgba(5, 8, 14, 0.5);
}

.rail-session {
  min-height: 152px;
  align-content: center;
}

.rail-session strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: clamp(19px, 1.35vw, 26px);
  line-height: 1;
  font-weight: 950;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.status-strip div {
  display: grid;
  gap: 7px;
  min-height: 76px;
  padding: 13px 12px;
  border: 1px solid rgba(235, 242, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(7, 10, 18, 0.66);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.status-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.status-strip strong {
  color: var(--text);
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.auth-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: min(660px, calc(100svh - clamp(214px, 22vh, 252px)));
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(235, 242, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(315deg, rgba(47, 246, 220, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(12, 15, 27, 0.96), rgba(5, 7, 13, 0.94));
  box-shadow:
    0 38px 96px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  overflow: hidden;
}

.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent 76%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 64px);
  opacity: 0.72;
  pointer-events: none;
}

.auth-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(235, 242, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.panel-top,
.form-copy,
.field,
.domain-band,
.submit-button,
.form-message {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
}

.panel-top span {
  width: 112px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--pink));
  box-shadow: 0 0 22px rgba(47, 246, 220, 0.36);
}

.form-copy {
  padding: 8px 0 4px;
}

.field {
  display: grid;
  gap: 9px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.field input {
  width: 100%;
  height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(235, 242, 255, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(4, 6, 12, 0.72);
  outline: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18) inset;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.field input::placeholder {
  color: rgba(244, 247, 255, 0.34);
}

.field input:focus {
  border-color: rgba(47, 246, 220, 0.78);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18) inset,
    0 0 0 4px rgba(47, 246, 220, 0.1);
  transform: translateY(-1px);
}

.field.invalid input {
  border-color: var(--danger);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18) inset,
    0 0 0 4px rgba(255, 111, 145, 0.12);
}

.domain-band {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(47, 246, 220, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 246, 220, 0.1), rgba(102, 141, 255, 0.055)),
    rgba(5, 8, 14, 0.62);
}

.domain-band span,
.domain-band strong {
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.domain-band span {
  color: var(--cyan);
}

.domain-band strong {
  text-align: right;
  color: var(--text);
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: var(--radius);
  color: #040711;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, var(--cyan), var(--blue) 50%, var(--pink));
  cursor: pointer;
  font-weight: 950;
  box-shadow:
    0 22px 48px rgba(47, 246, 220, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition:
    filter 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}

.submit-button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 26px 56px rgba(47, 246, 220, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.button-loader {
  display: none;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid rgba(4, 7, 17, 0.26);
  border-top-color: #040711;
  border-radius: 50%;
  animation: spin 780ms linear infinite;
}

.submit-button.loading .button-loader {
  display: inline-block;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--cyan);
}

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

@media (min-width: 1500px) {
  .access-layout {
    grid-template-columns: minmax(680px, 1.42fr) minmax(420px, 0.76fr) minmax(230px, 0.42fr);
  }

  .system-rail {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 14px;
  }

  .mecha-stage,
  .access-stack,
  .system-rail {
    min-height: calc(100svh - clamp(112px, 12vh, 142px));
  }
}

@media (min-width: 1900px) {
  .access-layout {
    grid-template-columns: minmax(920px, 1.48fr) minmax(480px, 0.72fr) minmax(320px, 0.45fr);
  }
}

@media (max-width: 1160px) {
  .shell {
    width: min(880px, calc(100vw - 28px));
    margin-left: auto;
    margin-right: auto;
    padding: 14px 0;
  }

  .cockpit {
    min-height: auto;
  }

  .cockpit::before {
    inset: 70px 0 0;
  }

  .access-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mecha-stage {
    min-height: 430px;
  }

  .mecha-hero {
    object-position: 55% 38%;
  }

  .access-stack {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .shell {
    width: calc(100vw - 14px);
    padding: 7px 0;
  }

  .cockpit::before {
    inset: 64px 0 0;
  }

  .topbar {
    min-height: 76px;
    padding: 8px 0 12px;
  }

  .brand {
    gap: 10px;
  }

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

  .brand p {
    font-size: 10px;
    margin-bottom: 5px;
  }

  h1 {
    font-size: 34px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .access-layout {
    gap: 12px;
  }

  .mecha-stage {
    min-height: 300px;
  }

  .mecha-hero {
    object-position: 56% 36%;
    transform: scale(1.02);
  }

  .reactor-glow {
    left: 61%;
    top: 69%;
  }

  .visor-glow {
    left: 61%;
    top: 32%;
  }

  .hero-copy {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .hero-copy p {
    min-height: 28px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-copy strong {
    font-size: 44px;
    white-space: normal;
  }

  .hero-meta {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-meta span {
    min-height: 26px;
    font-size: 10px;
  }

  .status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .status-strip div {
    min-height: 54px;
    padding: 10px 8px;
  }

  .status-strip span {
    font-size: 9px;
  }

  .status-strip strong {
    font-size: 12px;
  }

  .auth-panel {
    gap: 14px;
    padding: 20px 16px;
  }

  .panel-top strong {
    display: none;
  }

  h2 {
    font-size: 38px;
  }

  .field input,
  .submit-button {
    height: 54px;
  }

  .domain-band {
    flex-direction: column;
    gap: 7px;
  }

  .domain-band strong {
    text-align: left;
  }
}

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

  #signal-canvas {
    display: none;
  }
}
