:root {
  color-scheme: dark;
  --cyan: #55e6ff;
  --cyan-hot: #9af5ff;
  --cyan-soft: rgba(85, 230, 255, 0.28);
  --terminal: #ffbf55;
  --terminal-soft: rgba(255, 191, 85, 0.22);
  --gold: #d5ae6e;
  --text: #f7f5ef;
  --muted: #b9c0c2;
  --shadow: rgba(0, 0, 0, 0.72);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  color: var(--text);
  background: #050708;
  overflow: hidden;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #061012;
  background: var(--terminal);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.app-shell {
  position: fixed;
  left: 0;
  top: 0;
  width: 1400px;
  height: 900px;
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr) 72px;
  background: #050708;
  transform: translate(var(--site-left, 0px), var(--site-top, 0px)) scale(var(--site-scale, 1));
  transform-origin: top left;
}

.topbar {
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(218, 231, 234, 0.22);
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.98), rgba(7, 11, 13, 0.9));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 82px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  filter:
    sepia(1)
    saturate(1.8)
    hue-rotate(350deg)
    brightness(1.35)
    drop-shadow(0 0 8px rgba(213, 174, 110, 0.28))
    drop-shadow(0 0 12px rgba(85, 230, 255, 0.08));
  opacity: 0.92;
}

.brand-copy {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.brand-copy strong {
  font-size: 1.72rem;
  font-weight: 650;
}

.brand-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.phone-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
}

.phone-link {
  color: var(--terminal);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 0 10px rgba(255, 191, 85, 0.22);
}

.contact-link {
  gap: 12px;
}

.phone-link:hover,
.phone-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--cyan-hot);
}

.contact-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.console {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.board-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.board-art {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1672px;
  height: 933px;
  transform: translate(-50%, -50%) scale(var(--board-scale, 1));
  transform-origin: center;
}

.board-picture,
.board-image,
.board-shade {
  position: absolute;
  inset: 0;
}

.board-picture {
  display: block;
}

.board-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: saturate(0.98) contrast(1.06) brightness(0.9);
}

.board-shade {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0), rgba(5, 8, 9, 0) 58%, rgba(5, 8, 9, 0.2) 76%, rgba(5, 8, 9, 0.52) 100%),
    radial-gradient(circle at 32% 50%, rgba(255, 255, 255, 0.08), transparent 15rem),
    radial-gradient(circle at 76% 45%, rgba(0, 0, 0, 0.22), transparent 23rem);
  pointer-events: none;
}

.route-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.idle-routes path,
.live-routes path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.idle-routes path {
  stroke: rgba(83, 225, 255, 0.08);
  stroke-width: 1.3;
  opacity: 0.12;
}

.live-routes path {
  stroke: rgba(85, 230, 255, 0.22);
  stroke-width: 2.1;
  opacity: 0.22;
  transition:
    opacity 180ms ease,
    stroke 180ms ease,
    stroke-width 180ms ease;
}

.live-routes path.is-live {
  stroke: rgba(93, 234, 255, 0.86);
  stroke-width: 3.2;
  opacity: 0.88;
  animation: routePower 1.35s ease-in-out infinite alternate;
}

.live-routes.is-focused path:not(.is-live) {
  opacity: 0.08;
}

.electron {
  opacity: 0.55;
  transition: opacity 180ms ease;
}

.electron-route.is-live .electron {
  opacity: 1;
}

.electron-stream.is-focused .electron-route:not(.is-live) .electron {
  opacity: 0.15;
}

.electron-a {
  filter: drop-shadow(0 0 7px var(--cyan-hot)) drop-shadow(0 0 14px var(--cyan));
}

.electron-b,
.electron-c {
  opacity: 0.5;
}

.chip {
  position: absolute;
  z-index: 6;
  width: 132px;
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 10px;
  color: #f3f6f5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font: inherit;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0),
    0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.chip::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(124, 239, 255, 0.34), transparent 56%),
    linear-gradient(180deg, rgba(82, 232, 255, 0.16), rgba(82, 232, 255, 0.01));
  box-shadow:
    0 0 14px rgba(88, 231, 255, 0.45),
    0 0 36px rgba(88, 231, 255, 0.2),
    inset 0 0 18px rgba(88, 231, 255, 0.22);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.chip:hover,
.chip:focus-visible,
.chip.is-preview,
.chip.is-active {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(125, 241, 255, 0.16),
    0 0 22px rgba(88, 231, 255, 0.2);
}

.chip:hover::after,
.chip:focus-visible::after,
.chip.is-preview::after,
.chip.is-active::after {
  opacity: 1;
}

.chip:focus-visible,
.panel-cta:focus-visible,
.contact-link:focus-visible,
.phone-link:focus-visible,
.feature-card:focus-visible,
.supporting-links a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.chip-icon,
.chip-icon svg {
  display: none;
}

.chip span:last-child {
  position: relative;
  z-index: 2;
  max-width: 108px;
  min-width: 88px;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  text-align: center;
  line-height: 1.12;
  font-size: 0.76rem;
  font-weight: 700;
  text-shadow: 0 1px 5px #000;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.chip:hover span:last-child,
.chip:focus-visible span:last-child,
.chip.is-preview span:last-child,
.chip.is-active span:last-child {
  color: #dffaff;
  border-color: transparent;
  box-shadow: none;
}

.chip.is-active::after {
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 191, 85, 0.28), transparent 56%),
    linear-gradient(180deg, rgba(255, 191, 85, 0.13), rgba(255, 191, 85, 0.01));
  box-shadow:
    0 0 12px rgba(255, 191, 85, 0.38),
    0 0 30px rgba(255, 191, 85, 0.17),
    inset 0 0 16px rgba(255, 191, 85, 0.18);
}

.chip.is-active span:last-child {
  color: #ffe2ad;
  border-color: transparent;
  box-shadow: none;
}

.chip-about-us {
  left: 91px;
  top: 141px;
}

.chip-hours {
  left: 91px;
  top: 364px;
}

.chip-remote-support {
  left: 91px;
  top: 590px;
}

.chip-rates {
  left: 825px;
  top: 139px;
}

.chip-contracts {
  left: 827px;
  top: 374px;
}

.chip-contact {
  left: 823px;
  top: 608px;
}

.bios-chip {
  min-height: 102px;
}

.bios-notch {
  display: none;
}

.bios-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 9px;
  transform: translateX(-50%);
  color: var(--gold);
  font: 700 0.52rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.14em;
  opacity: 0.9;
}

.cpu-copy {
  position: absolute;
  left: 522px;
  top: 426px;
  z-index: 5;
  width: 390px;
  min-height: 305px;
  transform: translate(-50%, -50%);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  text-align: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 24, 25, 0.2), rgba(0, 0, 0, 0.02));
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

.cpu-brand,
.cpu-subbrand,
.cpu-note {
  margin: 0;
}

.cpu-brand {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 2.72rem;
  font-weight: 520;
  color: #eef1ef;
}

.cpu-subbrand {
  margin-top: 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 1rem;
  font-weight: 700;
}

.cpu-light {
  width: 58px;
  height: 3px;
  margin: 18px 0 20px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 30px rgba(85, 230, 255, 0.58);
}

.cpu-note {
  max-width: 220px;
  color: #dce0df;
  line-height: 1.45;
  font-size: 1.08rem;
}

.detail-panel {
  position: absolute;
  z-index: 12;
  right: 48px;
  top: 50%;
  width: 406px;
  min-width: 360px;
  max-height: calc(100% - 48px);
  transform: translateY(-50%);
  padding: 30px;
  border: 1px solid rgba(255, 191, 85, 0.55);
  border-radius: 12px;
  overflow: auto;
  background:
    linear-gradient(140deg, rgba(255, 191, 85, 0.07), transparent 28%),
    radial-gradient(circle at 50% 12%, rgba(255, 191, 85, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(8, 15, 13, 0.92), rgba(3, 8, 8, 0.94));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 38px rgba(255, 191, 85, 0.12),
    0 30px 70px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 191, 85, 0.48) rgba(0, 0, 0, 0.2);
}

.detail-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255, 191, 85, 0.3) 3px 4px);
  pointer-events: none;
}

.terminal-screen {
  position: relative;
  min-height: 160px;
}

.panel-sheen {
  position: absolute;
  inset: -32% -65% auto auto;
  width: 80%;
  height: 80%;
  transform: rotate(26deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.panel-eyebrow {
  margin: 0 0 8px;
  color: var(--terminal);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 800;
}

.detail-panel h1 {
  margin: 0;
  color: #ffd58a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 2.28rem;
  text-shadow: 0 0 14px rgba(255, 191, 85, 0.24);
}

.panel-rule {
  display: block;
  width: 60px;
  height: 2px;
  margin: 18px 0 24px;
  background: var(--terminal);
  box-shadow: 0 0 12px rgba(255, 191, 85, 0.5);
}

#panelText {
  margin: 0 0 22px;
  max-width: 34ch;
  color: #ffd99d;
  line-height: 1.5;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 1rem;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.025);
}

a.feature-card {
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.feature-card:hover,
a.feature-card:focus-visible {
  border-color: rgba(255, 191, 85, 0.58);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.025),
    0 0 18px rgba(255, 191, 85, 0.12);
  transform: translateY(-1px);
}

.panel-notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: #ffe2ad;
  border: 1px solid rgba(255, 191, 85, 0.44);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 191, 85, 0.1), rgba(255, 191, 85, 0.025)),
    rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 0 18px rgba(255, 191, 85, 0.06);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.42;
}

.panel-notice[hidden] {
  display: none;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--terminal);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(85, 230, 255, 0.28));
}

.feature-card strong {
  display: block;
  margin-bottom: 3px;
  color: #ffe5b6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88rem;
}

.feature-card span span {
  display: block;
  color: #ffd99d;
  line-height: 1.35;
  font-size: 0.9rem;
}

.panel-cta {
  margin: 22px auto 0;
  width: min(280px, 100%);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--terminal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.84rem;
  border: 1px solid var(--terminal);
  border-radius: 7px;
  box-shadow:
    0 0 16px rgba(255, 191, 85, 0.16),
    inset 0 0 18px rgba(255, 191, 85, 0.08);
}

.detail-panel.is-idle .panel-cta {
  display: none;
}

.panel-cta[hidden] {
  display: none;
}

.panel-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-rail {
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1.18fr 1.08fr 0.98fr 1.06fr;
  border-top: 1px solid rgba(210, 224, 228, 0.18);
  background: linear-gradient(180deg, rgba(8, 12, 14, 0.88), rgba(5, 8, 9, 0.98));
}

.status-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.status-cell:last-child {
  border-right: 0;
}

.status-cell svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(218, 226, 227, 0.72);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #27d36a;
  box-shadow: 0 0 18px rgba(39, 211, 106, 0.45);
}

.status-cell p {
  margin: 0;
  display: grid;
  gap: 2px;
  min-width: 0;
}

.status-cell strong {
  color: #e9eeee;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  white-space: nowrap;
}

.status-cell span {
  color: var(--cyan);
  font-size: 0.86rem;
  white-space: nowrap;
}

.status-cell a {
  color: var(--cyan);
  font-size: 0.86rem;
  text-decoration: none;
  white-space: nowrap;
}

.status-cell a:hover,
.status-cell a:focus-visible {
  color: var(--cyan-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.supporting-links a {
  color: var(--cyan);
  text-decoration: none;
}

.supporting-links a:hover,
.supporting-links a:focus-visible {
  color: var(--cyan-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.uptime-cell {
  justify-content: flex-start;
  text-align: left;
}

.uptime-cell p {
  justify-items: start;
}

.mobile-shell {
  display: none;
}

@keyframes routePower {
  from {
    filter: drop-shadow(0 0 3px rgba(85, 230, 255, 0.42));
  }

  to {
    filter: drop-shadow(0 0 9px rgba(85, 230, 255, 0.76));
  }
}

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

@media (max-width: 720px),
  ((hover: none) and (pointer: coarse) and (orientation: portrait)),
  ((hover: none) and (pointer: coarse) and (max-width: 1024px)) {
  html,
  body {
    min-height: 100%;
  }

  body {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(2, 5, 6, 0.18), rgba(2, 5, 6, 0.9)),
      url("./assets/motherboard-bg.webp") center top / cover fixed,
      #050708;
  }

  .app-shell {
    display: none;
  }

  .mobile-shell {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background:
      radial-gradient(circle at 50% 14%, rgba(85, 230, 255, 0.13), transparent 13rem),
      linear-gradient(180deg, rgba(4, 8, 9, 0.76), rgba(4, 8, 9, 0.96) 72%);
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 70px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(218, 231, 234, 0.18);
    background: rgba(5, 9, 10, 0.92);
    backdrop-filter: blur(12px);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
  }

  .mobile-logo {
    width: 52px;
    height: 34px;
    object-fit: contain;
    filter:
      sepia(1)
      saturate(1.8)
      hue-rotate(350deg)
      brightness(1.35)
      drop-shadow(0 0 8px rgba(213, 174, 110, 0.28));
  }

  .mobile-brand span {
    display: grid;
    gap: 1px;
    min-width: 0;
    text-transform: uppercase;
  }

  .mobile-brand strong {
    font-size: 1.08rem;
    letter-spacing: 0.16em;
  }

  .mobile-brand span span {
    color: var(--gold);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .mobile-phone {
    flex: 0 0 auto;
    color: var(--terminal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .mobile-console {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 22px 16px 26px;
  }

  .mobile-hero {
    position: relative;
    min-height: 210px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(255, 191, 85, 0.26);
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(11, 18, 19, 0.78), rgba(0, 0, 0, 0.36)),
      radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 11rem);
    box-shadow:
      inset 0 0 34px rgba(255, 191, 85, 0.04),
      0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .mobile-hero p {
    margin: 0 0 10px;
    color: var(--terminal);
    font: 800 0.7rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: 0.24em;
  }

  .mobile-hero h1 {
    max-width: 23rem;
    margin: 0;
    font-size: 1.48rem;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .mobile-hero span {
    width: 54px;
    height: 3px;
    margin-top: 18px;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan), 0 0 30px rgba(85, 230, 255, 0.44);
  }

  .mobile-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
  }

  .mobile-chip {
    min-height: 58px;
    padding: 12px 10px;
    color: #f5f7f5;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(20, 28, 29, 0.78), rgba(5, 10, 11, 0.84));
    box-shadow:
      inset 0 0 18px rgba(255, 255, 255, 0.025),
      0 12px 28px rgba(0, 0, 0, 0.24);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font: 800 0.72rem/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
  }

  .mobile-chip.is-active,
  .mobile-chip:focus-visible {
    color: #fff4dd;
    border-color: rgba(255, 191, 85, 0.66);
    box-shadow:
      0 0 20px rgba(255, 191, 85, 0.14),
      inset 0 0 20px rgba(255, 191, 85, 0.1);
  }

  .mobile-panel {
    padding: 22px 18px;
    border: 1px solid rgba(255, 191, 85, 0.5);
    border-radius: 10px;
    background:
      linear-gradient(140deg, rgba(255, 191, 85, 0.08), transparent 30%),
      linear-gradient(180deg, rgba(8, 15, 13, 0.94), rgba(3, 8, 8, 0.96));
    box-shadow:
      0 0 34px rgba(255, 191, 85, 0.12),
      0 26px 60px rgba(0, 0, 0, 0.42);
  }

  .mobile-eyebrow {
    margin: 0 0 8px;
    color: var(--terminal);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font: 800 0.66rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  }

  .mobile-panel h2 {
    margin: 0;
    color: #ffd58a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font: 800 1.66rem/1.08 ui-monospace, SFMono-Regular, Consolas, monospace;
  }

  .mobile-rule {
    display: block;
    width: 58px;
    height: 2px;
    margin: 16px 0 18px;
    background: var(--terminal);
    box-shadow: 0 0 12px rgba(255, 191, 85, 0.5);
  }

  #mobileText {
    margin: 0 0 18px;
    color: #ffd99d;
    font: 0.95rem/1.48 ui-monospace, SFMono-Regular, Consolas, monospace;
  }

  .mobile-feature-list {
    display: grid;
    gap: 10px;
  }

  .mobile-feature-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 12px 13px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-feature-card svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--terminal);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-feature-card strong {
    display: block;
    margin-bottom: 3px;
    color: #ffe5b6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
  }

  .mobile-feature-card span span {
    display: block;
    color: #ffd99d;
    line-height: 1.35;
    font-size: 0.84rem;
  }

  .mobile-notice {
    margin: 14px 0 0;
    padding: 12px;
    color: #ffe2ad;
    border: 1px solid rgba(255, 191, 85, 0.44);
    border-radius: 6px;
    background: rgba(255, 191, 85, 0.07);
    font: 0.78rem/1.42 ui-monospace, SFMono-Regular, Consolas, monospace;
  }

  .mobile-notice[hidden],
  .mobile-cta[hidden] {
    display: none;
  }

  .mobile-cta {
    min-height: 46px;
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    color: var(--terminal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid var(--terminal);
    border-radius: 7px;
  }

  .mobile-cta svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    padding: 16px;
    border-top: 1px solid rgba(210, 224, 228, 0.18);
    background: rgba(5, 9, 10, 0.9);
  }

  .mobile-status a {
    color: var(--cyan);
    font-size: 0.76rem;
    text-decoration: none;
  }
}
