:root {
  color-scheme: dark;
  --ink: #05060b;
  --ink-deep: #020205;
  --fog: #0c1020;
  --glow: #5df6ff;
  --glow-soft: rgba(93, 246, 255, 0.3);
  --pulse: #ff6bff;
  --pulse-soft: rgba(255, 107, 255, 0.25);
  --sun: #ffb347;
  --mist: #c8d6ff;
  --text: #eaf3ff;
  --muted: rgba(234, 243, 255, 0.7);
  --border: rgba(234, 243, 255, 0.12);
  --glass: rgba(8, 12, 24, 0.7);
  --glass-strong: rgba(11, 14, 26, 0.85);
  --shadow: 0 40px 120px rgba(3, 6, 16, 0.55);
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #fbfcff;
  --ink-deep: #f1f4fb;
  --fog: #f6f8ff;
  --glow: #0ea5e9;
  --glow-soft: rgba(14, 165, 233, 0.18);
  --pulse: #ff6b6b;
  --pulse-soft: rgba(255, 107, 107, 0.18);
  --sun: #f5b24a;
  --mist: #223350;
  --text: #0b1a33;
  --muted: rgba(11, 26, 51, 0.78);
  --border: rgba(11, 26, 51, 0.12);
  --glass: rgba(255, 255, 255, 0.75);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 40px 120px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.motion-reduced {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, var(--fog), var(--ink)),
    radial-gradient(circle at 90% 0%, var(--glow-soft), transparent 50%),
    radial-gradient(circle at 30% 90%, var(--pulse-soft), transparent 50%),
    var(--ink);
  overflow-x: hidden;
  touch-action: pan-y;
}

body.legal {
  background: var(--ink);
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 6vw 4rem;
  display: grid;
  gap: 1.2rem;
}

.legal-page h1 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.legal-page h2 {
  margin-top: 1.5rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
}

.legal-page ul {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.admin-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.attribution {
  font-size: 0.8rem;
  color: var(--muted);
}

.attribution a {
  color: var(--glow);
}

.widget-controls {
  display: grid;
  gap: 0.8rem;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
}

.widget-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.widget-toggle input {
  accent-color: var(--glow);
}

.widget-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.widget-hidden {
  display: none !important;
}

body.admin {
  background: var(--ink);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 11, 0.92);
  backdrop-filter: blur(20px);
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 84px);
}

.admin-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 1rem;
  display: grid;
  gap: 0.6rem;
  background: rgba(6, 8, 16, 0.95);
}

.tab-button {
  padding: 0.7rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-align: left;
  cursor: pointer;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  transition: border 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tab-button.active {
  background: rgba(93, 246, 255, 0.12);
  border-color: rgba(93, 246, 255, 0.4);
  color: var(--text);
}

.admin-main {
  padding: 2rem 4vw 4rem;
  display: grid;
  gap: 2rem;
}

.tab-panel {
  display: none;
  gap: 1.6rem;
}

.tab-panel.active {
  display: grid;
  gap: 1.6rem;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.panel-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mini-form {
  display: grid;
  gap: 0.8rem;
}

.mini-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.mini-form input,
.mini-form select,
.mini-form textarea {
  padding: 0.65rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 16, 0.85);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.mini-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 16, 0.7);
  margin-bottom: 0.8rem;
}

.mini-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.meta-line {
  display: grid;
  gap: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.lead-detail {
  display: grid;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-message {
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: rgba(5, 7, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.link {
  background: none;
  border: none;
  color: var(--glow);
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pipeline-column {
  background: rgba(5, 7, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--muted);
}

.pipeline-cards {
  display: grid;
  gap: 0.6rem;
}

.pipeline-card {
  padding: 0.7rem 0.8rem;
  border-radius: 0.8rem;
  background: rgba(12, 16, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.pipeline-card small {
  color: var(--muted);
}

.export-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.status-pill.new {
  border-color: rgba(93, 246, 255, 0.4);
  color: var(--glow);
}

.status-pill.qualified,
.status-pill.won {
  border-color: rgba(87, 230, 170, 0.4);
  color: #57e6aa;
}

.status-pill.proposal {
  border-color: rgba(255, 183, 77, 0.4);
  color: #ffb74d;
}

.status-pill.dormant {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--muted);
}

@media (max-width: 960px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    grid-auto-flow: column;
    overflow-x: auto;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .admin-main {
    padding: 2rem 6vw 4rem;
  }
}

.admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.admin-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.admin-list strong {
  color: var(--text);
}

.card .meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--muted);
}

.bar-list {
  display: grid;
  gap: 0.6rem;
}

.bar-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.bar {
  height: 6px;
  background: linear-gradient(90deg, var(--glow), var(--pulse));
  border-radius: 999px;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;
  margin-top: 0.8rem;
}

.heatmap-cell {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: rgba(93, 246, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th,
.admin-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.admin-table th {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

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

canvas#omniverse {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body.motion-reduced canvas#omniverse {
  opacity: 0.35;
}

body.motion-reduced #parallax-field {
  display: none;
}

body.motion-reduced .noise {
  opacity: 0.12;
}

#parallax-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.parallax-layer {
  position: absolute;
  inset: -20%;
  opacity: 0.6;
  mix-blend-mode: screen;
  will-change: transform;
  backface-visibility: hidden;
}

.layer-1 {
  background: radial-gradient(circle at 20% 30%, rgba(93, 246, 255, 0.2), transparent 55%);
  filter: blur(10px);
}

.layer-2 {
  background: radial-gradient(circle at 70% 40%, rgba(255, 107, 255, 0.2), transparent 50%);
  filter: blur(30px);
}

.layer-3 {
  background: conic-gradient(from 90deg, rgba(255, 179, 71, 0.2), transparent 60%);
  filter: blur(45px);
}

.layer-4 {
  background: radial-gradient(circle at 50% 80%, rgba(93, 246, 255, 0.12), transparent 60%);
  filter: blur(20px);
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.25;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  background: linear-gradient(90deg, rgba(5, 6, 11, 0.9), rgba(5, 6, 11, 0.2));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 1.1rem 5vw;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

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

.brand-mark {
  font-size: 1.8rem;
  color: var(--glow);
  text-shadow: 0 0 20px rgba(93, 246, 255, 0.6);
}

.brand-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.brand > div {
  min-width: 0;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.3);
  background: rgba(93, 246, 255, 0.12);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  cursor: pointer;
}

.theme-toggle .theme-icon {
  font-size: 0.9rem;
}

.theme-toggle.mobile {
  margin: 0;
}

.theme-toggle.slim {
  padding: 0.4rem 0.75rem;
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.4);
  background: rgba(93, 246, 255, 0.12);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
}

.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
}

.burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-label {
  font-size: 0.68rem;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 11, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 11;
  touch-action: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  height: 100dvh;
  min-height: 100svh;
  width: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(93, 246, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 255, 0.22), transparent 60%),
    rgba(5, 7, 16, 0.98);
  border-left: 1px solid rgba(93, 246, 255, 0.2);
  display: block;
  padding: 0;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.35s ease;
  z-index: 12;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

.mobile-nav-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  --menu-text-pad: 1.7rem;
  --menu-right-pad: 0.7rem;
  --menu-chip-size: 1.9rem;
  padding: calc(1.6rem + env(safe-area-inset-top)) 1.6rem calc(2rem + env(safe-area-inset-bottom));
}

.mobile-nav-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(93, 246, 255, 0.16);
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(5, 7, 16, 0.98) 60%, rgba(5, 7, 16, 0));
  z-index: 3;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.mobile-brand .brand-mark {
  font-size: 1rem;
  line-height: 1;
}

.mobile-brand .brand-name {
  font-size: 0.9rem;
  letter-spacing: 0.12rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-brand .brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12rem;
  line-height: 1.2;
}

.mobile-menu-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
  padding-left: var(--menu-text-pad);
}

.mobile-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

.mobile-nav-actions .locale-switcher {
  flex: 0 1 auto;
  min-width: 0;
}

.mobile-nav-actions .theme-toggle {
  padding: 0.45rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.08rem;
}

.mobile-close {
  margin-inline-start: auto;
}

.mobile-nav-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  padding-top: 0.4rem;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-nav-links a {
  display: grid;
  grid-template-columns: 1fr var(--menu-chip-size);
  align-items: center;
  column-gap: 0.6rem;
  padding: 0.85rem var(--menu-right-pad) 0.85rem var(--menu-text-pad);
  border-radius: 1rem;
  border: 1px solid rgba(93, 246, 255, 0.18);
  background: rgba(8, 12, 24, 0.7);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0.12rem;
}

.mobile-nav-links a::after {
  content: "›";
  display: grid;
  place-items: center;
  width: var(--menu-chip-size);
  height: var(--menu-chip-size);
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.25);
  background: rgba(5, 7, 16, 0.6);
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  justify-self: end;
}

.mobile-nav-links a.cta::after {
  content: "→";
  color: inherit;
  border-color: rgba(93, 246, 255, 0.4);
  background: rgba(93, 246, 255, 0.28);
}

.mobile-nav-links a.cta {
  border-color: rgba(93, 246, 255, 0.45);
  background: rgba(93, 246, 255, 0.22);
  color: #05060b;
  font-weight: 600;
}

.mobile-close {
  position: relative;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.35);
  background: rgba(93, 246, 255, 0.12);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(3, 6, 16, 0.4);
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 90deg, rgba(93, 246, 255, 0.12), transparent 40%, rgba(255, 107, 255, 0.18));
  opacity: 0.6;
  filter: blur(20px);
  animation: spin 18s linear infinite;
  pointer-events: none;
}

.mobile-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(93, 246, 255, 0.08), transparent 60%),
    linear-gradient(320deg, rgba(255, 107, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.mobile-nav a,
.mobile-nav .cta {
  position: relative;
  z-index: 1;
}

.mobile-nav a {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.05rem;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav .cta {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: inherit;
}

.mobile-nav a:active,
.mobile-nav .cta:active {
  transform: translateX(6px) scale(0.98);
}

.mission-panel {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: rgba(8, 12, 24, 0.75);
  border: 1px solid rgba(93, 246, 255, 0.25);
  box-shadow: 0 20px 60px rgba(3, 6, 16, 0.6);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.command-deck .stats-grid {
  margin-top: 1rem;
}

.ops-table {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--muted);
}

.ops-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  background: rgba(5, 7, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-name {
  color: var(--text);
}

.ops-status {
  justify-self: start;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.4);
  color: var(--glow);
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.6rem;
}

.ops-region {
  text-align: right;
  color: var(--muted);
}

.mission-panel::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, rgba(93, 246, 255, 0.18), transparent 50%, rgba(255, 107, 255, 0.22));
  opacity: 0.6;
  filter: blur(25px);
  animation: spin 22s linear infinite;
  pointer-events: none;
}

.mission-panel > * {
  position: relative;
  z-index: 1;
}

.mission-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mission-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mission-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
}

.mission-panel h3 {
  margin: 0.4rem 0 0;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
}

.mission-panel p {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.5);
  background: rgba(93, 246, 255, 0.15);
  font-size: 0.7rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
  color: var(--glow);
}

.demo-pill {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.62rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  padding: 0.7rem;
  border-radius: 0.8rem;
  background: rgba(5, 7, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted);
}

.stat span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.stat-label {
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
}

.stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 0.3rem;
}

.ops-note {
  margin: 0.8rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.pulse-strip {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--muted);
}

.pulse-line {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(93, 246, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.pulse-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(93, 246, 255, 0.9), transparent);
  transform: translateX(-100%);
  animation: pulse 2.4s ease-in-out infinite;
}

.micro-press {
  transform: scale(0.98);
}

body.nav-open .mobile-nav {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

body.nav-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

body.nav-open {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

:root[data-theme="light"] .site-header {
  background: linear-gradient(90deg, rgba(248, 250, 255, 0.95), rgba(248, 250, 255, 0.7));
  border-bottom: 1px solid rgba(11, 19, 36, 0.08);
}

:root[data-theme="light"] .brand-mark {
  text-shadow: 0 0 18px rgba(14, 165, 233, 0.4);
}

:root[data-theme="light"] .site-nav .cta,
:root[data-theme="light"] .nav-toggle,
:root[data-theme="light"] .theme-toggle {
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.12);
  color: var(--text);
}

:root[data-theme="light"] .mobile-close {
  border-color: rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.12);
  color: var(--text);
}

:root[data-theme="light"] .card,
:root[data-theme="light"] .stack,
:root[data-theme="light"] .orbit-card,
:root[data-theme="light"] .connect-visual,
:root[data-theme="light"] .metric,
:root[data-theme="light"] .ship-step,
:root[data-theme="light"] .timeline-step,
:root[data-theme="light"] .contact-form,
:root[data-theme="light"] .glass,
:root[data-theme="light"] .mission-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.95));
  border-color: rgba(11, 19, 36, 0.18);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

:root[data-theme="light"] .mission-panel {
  border-color: rgba(14, 165, 233, 0.2);
}

:root[data-theme="light"] .stat,
:root[data-theme="light"] .contact-form input,
:root[data-theme="light"] .contact-form select,
:root[data-theme="light"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(11, 19, 36, 0.2);
}

:root[data-theme="light"] .ship-outputs span,
:root[data-theme="light"] .ship-tags span {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(11, 26, 51, 0.18);
  color: var(--text);
}

:root[data-theme="light"] .ops-row {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 26, 51, 0.12);
}

:root[data-theme="light"] .ops-status {
  border-color: rgba(14, 165, 233, 0.4);
  color: var(--text);
}

:root[data-theme="light"] .site-footer {
  background: rgba(247, 248, 251, 0.95);
  border-top: 1px solid rgba(11, 19, 36, 0.08);
}

:root[data-theme="light"] .mobile-nav {
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.22), transparent 60%),
    rgba(247, 248, 251, 0.98);
  border-left: 1px solid rgba(11, 19, 36, 0.12);
}

:root[data-theme="light"] .mobile-nav-header {
  background: linear-gradient(180deg, rgba(247, 248, 251, 0.98) 60%, rgba(247, 248, 251, 0));
  border-bottom: 1px solid rgba(11, 19, 36, 0.08);
}

:root[data-theme="light"] .mobile-nav-links a {
  border-color: rgba(11, 26, 51, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

:root[data-theme="light"] .mobile-nav-links a.cta {
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.35);
  color: var(--text);
}

:root[data-theme="light"] .clarity-tags span {
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.12);
  color: var(--text);
}

:root[data-theme="light"] .hero-highlights li {
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.12);
  color: var(--text);
}

:root[data-theme="light"] .hero-stats div,
:root[data-theme="light"] .match-recommendation,
:root[data-theme="light"] .offer-card,
:root[data-theme="light"] .matrix-row:not(.matrix-header) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(233, 243, 255, 0.92));
  border-color: rgba(11, 26, 51, 0.16);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .match-strip span,
:root[data-theme="light"] .chip,
:root[data-theme="light"] .mode-button {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.28);
  color: var(--text);
}

:root[data-theme="light"] .chip.is-active,
:root[data-theme="light"] .mode-button.is-active {
  background: rgba(255, 107, 107, 0.18);
  border-color: rgba(255, 107, 107, 0.4);
  color: var(--text);
}

:root[data-theme="light"] .matrix-toggle {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
  color: var(--text);
}

:root[data-theme="light"] .matrix-stack span,
:root[data-theme="light"] .matrix-tags span,
:root[data-theme="light"] .matrix-proof span,
:root[data-theme="light"] .path-outputs span,
:root[data-theme="light"] .ship-outputs span,
:root[data-theme="light"] .ship-tags span {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(11, 26, 51, 0.18);
  color: var(--text);
}

:root[data-theme="light"] .matrix-row.is-highlight {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.18);
}

:root[data-theme="light"] .outcomes-banner {
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.18), rgba(255, 107, 107, 0.18));
  border-color: rgba(14, 165, 233, 0.25);
}

:root[data-theme="light"] .consent-card {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(14, 165, 233, 0.2);
}

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

@keyframes pulse {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--glow);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav .cta {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.4);
  background: rgba(93, 246, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(93, 246, 255, 0.2);
}

main {
  position: relative;
  z-index: 3;
}

.panel {
  padding: clamp(3.5rem, 7vw, 6.5rem) 6vw;
  position: relative;
}

.panel.hero {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
}

.hero-copy h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.hero-emphasis {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(93, 246, 255, 0.18);
  border: 1px solid rgba(93, 246, 255, 0.4);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.glow {
  color: var(--glow);
  text-shadow: 0 0 30px rgba(93, 246, 255, 0.5);
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-clarity {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

.hero-who {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-highlights li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.35);
  background: rgba(93, 246, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.consent-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 420px;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
}

.consent-card {
  background: var(--glass-strong);
  border: 1px solid rgba(93, 246, 255, 0.25);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.consent-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
}

.consent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent-manage {
  display: grid;
  gap: 0.6rem;
}

.consent-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.consent-links {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.consent-links a {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button.small {
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.button.primary {
  background: linear-gradient(135deg, rgba(93, 246, 255, 0.9), rgba(255, 107, 255, 0.9));
  color: #06070f;
  box-shadow: 0 20px 60px rgba(93, 246, 255, 0.3);
}

.button.ghost {
  border-color: rgba(234, 243, 255, 0.4);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 60px rgba(93, 246, 255, 0.35);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats div {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(93, 246, 255, 0.2);
}

.hero-stats span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-stats strong {
  font-size: 1.1rem;
}

.hero-orbit {
  display: grid;
  gap: 1.5rem;
}

.ops-grid {
  display: grid;
  justify-items: center;
}

.ops-grid .command-deck {
  width: min(100%, 960px);
}

.orbit-card {
  padding: 1.8rem;
  border-radius: 1.4rem;
  background: var(--glass);
  border: 1px solid rgba(93, 246, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.orbit-card.highlight {
  background: linear-gradient(135deg, rgba(93, 246, 255, 0.2), rgba(255, 107, 255, 0.2));
  border-color: rgba(255, 107, 255, 0.5);
}

.orbit-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.signal {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 6vw;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.2rem;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.clarity-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.clarity-tags span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.35);
  background: rgba(93, 246, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.match-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.match-strip span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.35);
  background: rgba(93, 246, 255, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

.match-intents {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.match-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.match-recommendation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.35);
  background: rgba(8, 12, 24, 0.7);
  color: var(--text);
}

.match-recommendation-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.match-recommendation strong {
  color: var(--glow);
}

.build-grid {
  margin-top: 1rem;
}

.build-cta {
  margin-top: 0.8rem;
  width: fit-content;
}

.build-card.is-highlight {
  border-color: rgba(93, 246, 255, 0.55);
  box-shadow: 0 22px 60px rgba(3, 6, 16, 0.35);
}

.build-card.is-dim {
  opacity: 0.55;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.capability-grid {
  gap: 1.6rem;
}

.capability-item h3 {
  font-size: 1.05rem;
}

.capability-item p {
  color: var(--muted);
}

.matrix-controls {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.3);
  background: rgba(8, 12, 24, 0.6);
  width: fit-content;
}

.mode-button {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mode-button.is-active {
  border-color: rgba(93, 246, 255, 0.6);
  background: rgba(93, 246, 255, 0.18);
  color: var(--text);
}

.mode-button:focus-visible,
.chip:focus-visible,
.matrix-toggle:focus-visible,
.path-card .button:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
}

.matrix-filters {
  display: grid;
  gap: 0.6rem;
}

.matrix-filter-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.3);
  background: rgba(93, 246, 255, 0.12);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip.is-active {
  background: rgba(255, 107, 255, 0.2);
  border-color: rgba(255, 107, 255, 0.55);
  color: var(--text);
}

.matrix-status {
  font-size: 0.85rem;
  color: var(--muted);
}

.matrix-table {
  display: grid;
  gap: 1rem;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: rgba(7, 10, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.matrix-row.matrix-header {
  background: transparent;
  border: none;
  padding: 0 0 0.8rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--muted);
}

.matrix-row.matrix-header .matrix-cell {
  padding: 0 0.3rem;
}

.matrix-row.is-highlight {
  border-color: rgba(93, 246, 255, 0.45);
  box-shadow: 0 20px 50px rgba(3, 6, 16, 0.35);
}

.matrix-row.is-dim {
  opacity: 0.55;
}

.matrix-cell {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.matrix-outcome h3 {
  margin: 0 0 0.4rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}

.matrix-outcome p {
  margin: 0;
  color: var(--muted);
}

.matrix-row-body {
  display: contents;
}

.matrix-deliverables {
  margin: 0;
}

.matrix-stack,
.matrix-tags,
.matrix-proof,
.path-outputs,
.ship-outputs,
.ship-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.matrix-stack span,
.matrix-tags span,
.matrix-proof span,
.path-outputs span,
.ship-outputs span,
.ship-tags span {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
}

.matrix-tags span {
  border-color: rgba(93, 246, 255, 0.35);
  color: var(--text);
}

.matrix-proof span {
  border-color: rgba(255, 107, 255, 0.35);
  color: var(--text);
}

.matrix-toggle {
  margin-top: 1rem;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 246, 255, 0.4);
  background: rgba(93, 246, 255, 0.12);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
}

.matrix-toggle-icon {
  font-size: 0.9rem;
}


.services-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.path-card.is-highlight {
  border-color: rgba(93, 246, 255, 0.6);
  box-shadow: 0 20px 50px rgba(3, 6, 16, 0.35);
}

.ship-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.matrix-helper {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-block {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.faq-item h4 {
  margin: 0 0 0.6rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
}
.choose-path .path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.path-card {
  display: grid;
  gap: 1rem;
}

.path-for {
  color: var(--muted);
}

.path-steps {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.path-card .button {
  width: fit-content;
}

.ship-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  position: relative;
}

.ship-timeline::before {
  content: \"\";
  position: absolute;
  top: 2.6rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(93, 246, 255, 0.5), rgba(255, 107, 255, 0.5));
  opacity: 0.35;
}

.ship-step {
  position: relative;
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: rgba(8, 12, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.8rem;
}

.ship-number {
  font-family: \"JetBrains Mono\", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--muted);
}

.ship-step h3 {
  margin: 0;
  font-family: \"Orbitron\", sans-serif;
}

.offer-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.6rem;
  background: rgba(7, 10, 22, 0.8);
  border: 1px solid rgba(93, 246, 255, 0.25);
  box-shadow: var(--shadow);
}

.offer-main h3 {
  margin-top: 0;
  font-family: \"Orbitron\", sans-serif;
}

.offer-list,
.offer-need ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.offer-need h4 {
  margin-top: 0;
  font-family: \"Orbitron\", sans-serif;
  font-size: 1rem;
}

.offer-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.intent-highlight {
  box-shadow: 0 0 0 2px rgba(93, 246, 255, 0.5);
}

.outcomes-banner {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 1.4rem;
  background: linear-gradient(120deg, rgba(93, 246, 255, 0.2), rgba(255, 107, 255, 0.2));
  border: 1px solid rgba(255, 107, 255, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.outcomes-banner .button {
  margin-left: auto;
}

.card {
  padding: 1.6rem;
  border-radius: 1.2rem;
  background: var(--glass-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card h3 {
  margin-top: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.stack {
  padding: 1.8rem;
  border-radius: 1.2rem;
  background: rgba(10, 14, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stack h3 {
  margin-top: 0;
  font-family: "Orbitron", sans-serif;
}

.stack ul,
.glass ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.connect-visual {
  background: rgba(8, 12, 24, 0.75);
  border-radius: 1.8rem;
  padding: 2rem;
  border: 1px solid rgba(93, 246, 255, 0.2);
  text-align: center;
}

.connect-visual svg {
  width: 100%;
  height: auto;
}

.connect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.connect-tags span {
  border: 1px solid rgba(93, 246, 255, 0.4);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.connect-copy h3 {
  font-family: "Orbitron", sans-serif;
}

.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(10, 14, 24, 0.6);
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.8rem;
  font-family: "JetBrains Mono", monospace;
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-step {
  padding: 1.6rem;
  border-radius: 1rem;
  background: rgba(7, 10, 22, 0.7);
  border-left: 4px solid var(--glow);
}

.timeline-step h3 {
  margin: 0 0 0.6rem;
  font-family: "Orbitron", sans-serif;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.impact-banner {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 1.4rem;
  background: linear-gradient(120deg, rgba(93, 246, 255, 0.2), rgba(255, 107, 255, 0.2));
  border: 1px solid rgba(255, 107, 255, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.banner-metric {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
}

.contact {
  background: radial-gradient(circle at 20% 20%, rgba(93, 246, 255, 0.2), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 255, 0.2), transparent 55%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: 1.4rem;
  background: rgba(7, 10, 22, 0.75);
  border: 1px solid rgba(93, 246, 255, 0.2);
}

.contact-form.is-hidden {
  display: none;
}

.contact-success {
  display: none;
  padding: 1.8rem;
  border-radius: 1.4rem;
  background: rgba(7, 10, 22, 0.75);
  border: 1px solid rgba(93, 246, 255, 0.2);
  box-shadow: var(--shadow);
}

.contact-success.is-visible {
  display: grid;
  gap: 0.8rem;
}

.contact-success-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form label em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  margin-left: 0.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(5, 7, 16, 0.9);
  border: 1px solid rgba(234, 243, 255, 0.15);
  padding: 0.7rem 0.9rem;
  border-radius: 0.8rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.4rem;
}

.contact-form .select-field {
  position: relative;
}

.contact-form .select-field::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 57%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--text);
  pointer-events: none;
  opacity: 0.8;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.2rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--glow);
}

.form-status.success {
  color: #57e6aa;
}

.form-status.error {
  color: #ff8a8a;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.form-note a {
  color: var(--glow);
}

.contact-details {
  display: grid;
  gap: 1.2rem;
}

.glass {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

.site-footer {
  padding: 3rem 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 6, 11, 0.95);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

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

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.55rem;
    margin-inline-start: auto;
    flex: 0 0 auto;
    min-width: 0;
  }

  .header-actions .locale-switcher,
  .header-actions .theme-toggle {
    display: inline-flex;
  }

  .brand-sub {
    display: none;
  }

  .header-row {
    padding: 0.65rem 5vw;
    gap: 0.4rem;
  }

  .brand-mark {
    font-size: 1.2rem;
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .nav-toggle {
    padding: 0.35rem 0.6rem;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand > div {
    min-width: 0;
  }

  .brand-name {
    font-size: 0.76rem;
    letter-spacing: 0.08rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: clamp(6rem, 30vw, 11rem);
  }

  .nav-label {
    font-size: 0.62rem;
  }

  .theme-toggle {
    width: clamp(2.25rem, 7vw, 2.5rem);
    height: clamp(2.25rem, 7vw, 2.5rem);
    padding: 0;
    font-size: 0.62rem;
    justify-content: center;
  }

  .theme-toggle .theme-icon {
    font-size: 0.8rem;
  }

  .theme-label {
    display: none;
  }

  .locale-switcher {
    padding: 0.25rem 0.5rem;
    width: clamp(4.4rem, 20vw, 6.2rem);
    min-width: clamp(4.4rem, 20vw, 6.2rem);
    max-width: clamp(4.4rem, 20vw, 6.2rem);
  }

  .locale-switcher select {
    font-size: 0.62rem;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions .theme-toggle,
  .header-actions .locale-switcher,
  .nav-toggle {
    height: clamp(2.25rem, 7vw, 2.5rem);
  }

  .nav-toggle {
    flex: 0 0 auto;
    min-width: clamp(2.4rem, 8vw, 3rem);
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-top: 8rem;
    gap: 2.5rem;
  }

  .scroll-hint {
    display: none;
  }

  .panel {
    padding: clamp(3.2rem, 8vw, 5.8rem) 7vw;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6.4vw, 3.2rem);
    line-height: 1.08;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  #parallax-field {
    opacity: 0.6;
  }

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

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .matrix-row.matrix-header {
    display: none;
  }

  .matrix-row-body {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .matrix-row.is-open .matrix-row-body {
    display: grid;
  }

  .matrix-toggle {
    display: inline-flex;
  }

  .matrix-row-body .matrix-cell::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.4rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--muted);
  }

  .ship-timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 0.98rem;
  }

  .panel {
    padding: 3.2rem 5vw;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7.2vw, 2.6rem);
  }

  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .section-header h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .hero-orbit {
    order: 2;
  }

  .orbit-card {
    padding: 1.4rem;
  }

  .command-deck .stats-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .impact-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 1.4rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.6rem;
  }

  #parallax-field {
    opacity: 0.4;
  }
}

@media (max-width: 540px) {
  .hero-copy h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .orbit-card,
  .stack,
  .card,
  .glass {
    padding: 1.2rem;
  }

  .hero-actions .button {
    padding: 0.85rem 1.2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .theme-label {
    display: none;
  }

  .theme-toggle {
    padding: 0.45rem 0.6rem;
  }

  .site-footer {
    padding: 2.5rem 5vw;
  }

  .mobile-nav-shell {
    padding: calc(1.2rem + env(safe-area-inset-top)) 1.1rem calc(1.6rem + env(safe-area-inset-bottom));
  }

  .mobile-nav-header {
    align-items: stretch;
  }

  .mobile-nav-actions {
    align-items: center;
    gap: 0.45rem;
    justify-content: flex-start;
  }

  .mobile-close {
    top: auto;
    right: auto;
  }

  .nav-toggle {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
  }

  .nav-label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.12rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-meta {
    width: 100%;
  }

  .ops-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ops-region {
    text-align: left;
  }

  .consent-banner {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .legal-page {
    padding: 5rem 6vw 3rem;
  }

  .mode-switch {
    width: 100%;
    justify-content: space-between;
  }

  .mode-button {
    flex: 1;
    text-align: center;
  }

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

  .ship-step {
    border-left: 3px solid rgba(93, 246, 255, 0.5);
  }

  .offer-card {
    padding: 1.4rem;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 0.72rem;
    letter-spacing: 0.06rem;
    max-width: clamp(5.4rem, 32vw, 8.5rem);
  }

  .locale-switcher {
    width: clamp(4.2rem, 22vw, 5.6rem);
    min-width: clamp(4.2rem, 22vw, 5.6rem);
    max-width: clamp(4.2rem, 22vw, 5.6rem);
  }

  .locale-switcher select {
    font-size: 0.6rem;
  }

  .nav-label {
    display: none;
  }

  .nav-toggle {
    padding: 0.3rem 0.55rem;
  }
}

@media (max-width: 360px) {
  .brand-name {
    max-width: 6.8rem;
  }

  .locale-switcher {
    width: 4.6rem;
    min-width: 4.6rem;
    max-width: 4.6rem;
  }

  .locale-switcher select {
    font-size: 0.58rem;
  }
}

@media (hover: none) {
  .button:hover {
    transform: none;
    box-shadow: 0 12px 40px rgba(93, 246, 255, 0.25);
  }
}

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

  .button,
  [data-reveal],
  .mode-button,
  .chip,
  .matrix-row,
  .matrix-toggle,
  .ship-step,
  .offer-card,
  .path-card {
    transition: none;
  }

  .mobile-nav::before,
  .mission-panel::after,
  .pulse-line::after {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  box-shadow: 0 12px 24px rgba(3, 6, 16, 0.25);
}

.locale-switcher select {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.locale-switcher select:focus {
  outline: none;
}

.locale-switcher.compact {
  padding: 0.35rem 0.55rem;
}

.locale-switcher.compact select {
  font-size: 0.72rem;
}

.locale-switcher.slim {
  padding: 0.3rem 0.55rem;
}

.locale-switcher.slim select {
  font-size: 0.7rem;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  body.is-scrolled .header-row {
    padding: 0.35rem 5vw;
  }

  body.is-scrolled .brand-mark {
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
  }

  body.is-scrolled .brand-name {
    font-size: 0.7rem;
    letter-spacing: 0.14rem;
  }

  body.is-scrolled .theme-label {
    display: none;
  }

  body.is-scrolled .theme-toggle {
    padding: 0.25rem 0.45rem;
  }

  body.is-scrolled .locale-switcher {
    padding: 0.2rem 0.4rem;
  }

  body.is-scrolled .locale-switcher select {
    font-size: 0.58rem;
  }

  body.is-scrolled .nav-toggle {
    padding: 0.25rem 0.55rem;
  }

  body.is-scrolled .nav-label {
    display: none;
  }
}

.locale-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 6, 16, 0.78);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.locale-card {
  width: min(92vw, 520px);
  background: var(--glass-strong);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
}

.locale-header h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
}

.locale-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.locale-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
  font-family: "Noto Naskh Arabic", "Noto Sans Arabic", "Space Grotesk", sans-serif;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .admin-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .mobile-nav-header {
  flex-direction: column;
  align-items: stretch;
}

html[dir="rtl"] .header-actions,
html[dir="rtl"] .mobile-nav-actions,
html[dir="rtl"] .admin-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .mobile-nav-links,
html[dir="rtl"] .footer-links {
  text-align: right;
}

html[dir="rtl"] .hero,
html[dir="rtl"] .section-header,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .contact-details,
html[dir="rtl"] .matrix-row,
html[dir="rtl"] .ship-step,
html[dir="rtl"] .offer-card,
html[dir="rtl"] .path-card,
html[dir="rtl"] .legal-page {
  text-align: right;
}

html[dir="rtl"] .ops-row {
  text-align: right;
}

html[dir="rtl"] .nav-toggle {
  margin-left: 0;
}

html[dir="rtl"] .matrix-toggle-icon {
  transform: rotate(180deg);
}

html[dir="rtl"] .legal-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .locale-switcher select {
  direction: rtl;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .mobile-brand {
  text-align: right;
}

html[dir="rtl"] .admin-sidebar {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

html[dir="rtl"] .tab-button {
  text-align: right;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  text-align: start;
}
