:root {
  color-scheme: dark;
  --dx-bg: #0d1117;
  --dx-bg-2: #111820;
  --dx-panel: rgba(20, 29, 36, 0.86);
  --dx-panel-strong: #17212a;
  --dx-line: rgba(227, 235, 238, 0.16);
  --dx-line-strong: rgba(227, 235, 238, 0.28);
  --dx-text: #edf3f5;
  --dx-muted: #9baab1;
  --dx-soft: #c7d3d8;
  --dx-cyan: #4cc9c0;
  --dx-blue: #6ca8ff;
  --dx-green: #7bd88f;
  --dx-amber: #f2c14e;
  --dx-rust: #d97a45;
  --dx-red: #ff6b6b;
  --dx-display: "Space Grotesk", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dx-font: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dx-mono: "IBM Plex Mono", "SF Mono", "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--dx-text);
  background: var(--dx-bg);
  font-family: var(--dx-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.dx-shell {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(76, 201, 192, 0.1), transparent 44%),
    var(--dx-bg);
  background-size: 36px 36px, 36px 36px, 100% 720px, auto;
}

.dx-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(13, 17, 23, 0.78);
  backdrop-filter: blur(18px);
}

.dx-development-notice {
  position: fixed;
  top: calc(82px + env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 45;
  width: min(430px, calc(100% - 36px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 9px 12px;
  pointer-events: none;
  border: 1px solid rgba(242, 193, 78, 0.36);
  background: linear-gradient(90deg, rgba(242, 193, 78, 0.14), rgba(76, 201, 192, 0.08));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  color: var(--dx-soft);
  font-size: 13px;
  line-height: 1.25;
}

.dx-development-notice strong {
  color: var(--dx-amber);
  font-family: var(--dx-mono);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.dx-development-notice span {
  min-width: 0;
}

.dx-brand,
.dx-nav,
.dx-cell-link,
.dx-proof-strip,
.dx-route-picker {
  display: inline-flex;
  align-items: center;
}

.dx-brand {
  min-width: 0;
  gap: 12px;
  font-weight: 700;
}

.dx-brand-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.dx-brand-copy strong,
.dx-brand-copy small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dx-brand-copy strong {
  color: var(--dx-text);
  font-family: var(--dx-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.dx-brand-copy small {
  color: var(--dx-muted);
  font: 11px/1.1 var(--dx-mono);
}

.dx-logo-mark {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--dx-line-strong);
  border-radius: 12px;
  background:
    radial-gradient(circle at 76% 18%, rgba(123, 216, 143, 0.34), transparent 20%),
    radial-gradient(circle at 20% 78%, rgba(76, 201, 192, 0.28), transparent 24%),
    linear-gradient(135deg, #06100f, #0b2524 48%, #0b1727);
  box-shadow:
    0 0 0 1px rgba(123, 216, 143, 0.14),
    0 18px 42px rgba(76, 201, 192, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dx-logo-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 1;
  border: 1px solid rgba(123, 216, 143, 0.32);
  border-radius: 9px;
  box-shadow: inset 0 0 18px rgba(76, 201, 192, 0.12);
}

.dx-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 0 38%, rgba(123, 216, 143, 0.18) 39% 40%, transparent 42% 100%);
  opacity: 0.9;
}

.dx-logo-mark--small {
  width: 44px;
}

.dx-logo-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(123, 216, 143, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 201, 192, 0.13) 1px, transparent 1px);
  background-size: 9px 9px;
  opacity: 0.72;
}

.dx-logo-binary-wave {
  position: relative;
  z-index: 2;
  width: 76%;
  height: 60%;
}

.dx-logo-binary-wave::before {
  content: "";
  position: absolute;
  inset: 14% 0 10%;
  background:
    radial-gradient(circle at 5% 53%, rgba(123, 216, 143, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 17% 31%, rgba(76, 201, 192, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 29% 17%, rgba(123, 216, 143, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 41% 28%, rgba(76, 201, 192, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 53% 55%, rgba(123, 216, 143, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 78%, rgba(76, 201, 192, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 77% 70%, rgba(123, 216, 143, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 89% 42%, rgba(76, 201, 192, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 98% 25%, rgba(123, 216, 143, 0.88) 0 2px, transparent 3px);
  filter: blur(1px) drop-shadow(0 0 9px rgba(76, 201, 192, 0.62));
  opacity: 0.72;
}

.dx-logo-binary-wave::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 2%;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(123, 216, 143, 0.75), rgba(76, 201, 192, 0.82), transparent);
  filter: drop-shadow(0 0 8px rgba(76, 201, 192, 0.65));
  transform: rotate(-10deg);
  opacity: 0.52;
}

.dx-logo-binary-wave span {
  position: absolute;
  z-index: 2;
  display: block;
  color: #dfffe8;
  font: 700 11px/1 var(--dx-mono);
  letter-spacing: 0;
  text-shadow:
    0 0 8px rgba(123, 216, 143, 0.54),
    0 0 18px rgba(76, 201, 192, 0.28);
  transform: translate(-50%, -50%);
}

.dx-logo-binary-wave span:nth-child(even) {
  color: var(--dx-cyan);
}

.dx-logo-binary-wave span:nth-child(1) {
  left: 4%;
  top: 55%;
}

.dx-logo-binary-wave span:nth-child(2) {
  left: 16%;
  top: 33%;
}

.dx-logo-binary-wave span:nth-child(3) {
  left: 28%;
  top: 17%;
}

.dx-logo-binary-wave span:nth-child(4) {
  left: 40%;
  top: 28%;
}

.dx-logo-binary-wave span:nth-child(5) {
  left: 52%;
  top: 55%;
}

.dx-logo-binary-wave span:nth-child(6) {
  left: 64%;
  top: 78%;
}

.dx-logo-binary-wave span:nth-child(7) {
  left: 76%;
  top: 70%;
}

.dx-logo-binary-wave span:nth-child(8) {
  left: 88%;
  top: 42%;
}

.dx-logo-binary-wave span:nth-child(9) {
  left: 98%;
  top: 25%;
}

.dx-nav {
  gap: 18px;
  color: var(--dx-muted);
  font-size: 14px;
}

.dx-nav a:hover {
  color: var(--dx-text);
}

.dx-cell-link {
  justify-self: end;
  min-width: 0;
  min-height: 36px;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-soft);
  background: rgba(255, 255, 255, 0.05);
  font: 12px var(--dx-mono);
}

.dx-workspace {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin: 0 auto;
  padding: 34px 0 72px;
}

.dx-intro {
  min-width: 0;
}

.dx-kicker {
  margin: 0 0 12px;
  color: var(--dx-green);
  font: 700 12px var(--dx-mono);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-family: var(--dx-display);
  font-size: clamp(62px, 12vw, 142px);
  font-weight: 700;
  line-height: 0.88;
}

h2 {
  font-family: var(--dx-display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
}

h3 {
  color: var(--dx-muted);
  font: 700 12px var(--dx-mono);
  text-transform: uppercase;
}

.dx-product-summary {
  max-width: 720px;
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(227, 235, 238, 0.14);
}

.dx-summary-eyebrow {
  color: var(--dx-cyan);
  font: 700 11px var(--dx-mono);
  text-transform: uppercase;
}

.dx-summary-headline {
  max-width: 660px;
  color: var(--dx-text);
  font: 700 34px/1.06 var(--dx-display);
}

.dx-summary-signal {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(76, 201, 192, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(76, 201, 192, 0.18), rgba(123, 216, 143, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(123, 216, 143, 0.08);
}

.dx-summary-signal strong {
  color: var(--dx-green);
  font: 700 42px/0.92 var(--dx-display);
}

.dx-summary-signal span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.dx-summary-signal small {
  color: var(--dx-cyan);
  font: 700 11px/1.1 var(--dx-mono);
  text-transform: uppercase;
}

.dx-summary-signal em {
  color: var(--dx-text);
  font: normal 700 16px/1.15 var(--dx-display);
}

.dx-lede {
  max-width: 650px;
  color: var(--dx-soft);
  font-size: 20px;
  line-height: 1.42;
}

.dx-proof-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.dx-proof-strip span {
  min-width: 0;
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.dx-proof-strip strong,
.dx-proof-strip small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.dx-proof-strip strong {
  color: var(--dx-text);
  font: 700 15px/1.12 var(--dx-display);
}

.dx-proof-strip small {
  color: var(--dx-muted);
  font: 11px/1.2 var(--dx-mono);
}

.dx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.dx-primary-link,
.dx-secondary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  font-family: var(--dx-display);
  font-weight: 700;
}

.dx-primary-link {
  color: #06100f;
  background: var(--dx-cyan);
}

.dx-secondary-link {
  border: 1px solid var(--dx-line);
  color: var(--dx-soft);
  background: rgba(255, 255, 255, 0.045);
}

.dx-cookie-notice {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(76, 201, 192, 0.32);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

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

.dx-cookie-notice p {
  min-width: 0;
  margin: 0;
  color: var(--dx-soft);
  font: 600 13px/1.35 var(--dx-font);
}

.dx-cookie-notice button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-text);
  background: rgba(255, 255, 255, 0.06);
  font: 700 12px/1 var(--dx-display);
}

.dx-cookie-notice button:first-of-type {
  border-color: transparent;
  color: #06100f;
  background: var(--dx-cyan);
}

.dx-account-panel {
  min-width: 0;
  border: 1px solid var(--dx-line-strong);
  border-radius: 8px;
  background: var(--dx-panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.dx-pro-panel {
  border-color: rgba(76, 201, 192, 0.34);
  background:
    linear-gradient(135deg, rgba(76, 201, 192, 0.09), transparent 46%),
    var(--dx-panel);
}

.dx-account-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-bottom: 1px solid var(--dx-line);
}

.dx-account-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.dx-account-steps {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
}

.dx-account-steps article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  padding: 14px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.dx-pro-signals article {
  border-color: rgba(76, 201, 192, 0.2);
  background:
    linear-gradient(90deg, rgba(76, 201, 192, 0.08), transparent 64%),
    rgba(255, 255, 255, 0.035);
}

.dx-account-steps span {
  grid-row: span 2;
  color: var(--dx-green);
  font: 700 12px var(--dx-mono);
}

.dx-account-steps h3 {
  color: var(--dx-text);
  font: 700 19px/1.15 var(--dx-display);
  text-transform: none;
}

.dx-account-steps p {
  color: var(--dx-soft);
  line-height: 1.45;
}

.dx-console {
  min-width: 0;
  border: 1px solid var(--dx-line-strong);
  border-radius: 8px;
  background: var(--dx-panel);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.dx-console-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-bottom: 1px solid var(--dx-line);
}

.dx-console-head h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.dx-status {
  justify-self: end;
  max-width: 220px;
  padding: 8px 10px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-amber);
  background: rgba(242, 193, 78, 0.1);
  font: 12px/1.25 var(--dx-mono);
  overflow-wrap: anywhere;
}

.dx-status[data-phase="ready"],
.dx-status[data-phase="complete"] {
  color: var(--dx-green);
  background: rgba(123, 216, 143, 0.1);
}

.dx-status[data-phase="failed"] {
  color: var(--dx-red);
  background: rgba(255, 107, 107, 0.1);
}

.dx-route-picker {
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 22px 0;
}

.dx-route-tab {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
}

.dx-route-tab[aria-selected="true"] {
  color: #07110f;
  border-color: transparent;
  background: var(--dx-green);
}

.dx-form {
  display: grid;
  gap: 12px;
  padding: 18px 22px 20px;
}

.dx-form label {
  color: var(--dx-muted);
  font: 700 12px var(--dx-mono);
  text-transform: uppercase;
}

textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-text);
  background: rgba(0, 0, 0, 0.24);
  line-height: 1.45;
}

textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--dx-cyan);
  outline-offset: 2px;
}

#sendMission,
#continueBilling,
#completeOnboarding,
#sendChatMessage {
  justify-self: start;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: #06100f;
  background: var(--dx-cyan);
  font-family: var(--dx-display);
  font-weight: 700;
}

#sendMission:disabled,
#continueBilling:disabled,
#completeOnboarding:disabled,
#sendChatMessage:disabled {
  cursor: wait;
  opacity: 0.48;
}

.dx-wire {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--dx-line);
}

.dx-wire section {
  min-width: 0;
  padding: 18px 22px 22px;
}

.dx-wire section + section {
  border-left: 1px solid var(--dx-line);
}

pre {
  min-height: 122px;
  max-height: 260px;
  margin: 10px 0 0;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #d8e5e8;
  font: 12px/1.5 var(--dx-mono);
}

.dx-section,
.dx-mission,
.dx-signin,
.dx-host {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.dx-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.dx-page-shell {
  padding-bottom: 72px;
}

.dx-page-section {
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  display: grid;
  align-content: start;
  padding-top: clamp(44px, 8vw, 96px);
}

.dx-page-section h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.96;
}

.dx-section-head p {
  margin-top: 16px;
  color: var(--dx-muted);
  font-size: 17px;
  line-height: 1.5;
}

.dx-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.dx-route-grid,
.dx-capability-grid,
.dx-plan-grid,
.dx-market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dx-route-card,
.dx-capability,
.dx-plan-card,
.dx-market-card {
  min-width: 0;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  background: var(--dx-panel-strong);
}

.dx-route-card[data-active="true"] {
  border-color: rgba(123, 216, 143, 0.7);
  box-shadow: inset 0 0 0 1px rgba(123, 216, 143, 0.2);
}

.dx-route-card h3,
.dx-capability h3,
.dx-plan-card h3,
.dx-market-card h3 {
  color: var(--dx-text);
  font: 700 19px/1.15 var(--dx-display);
  text-transform: none;
}

.dx-route-card p,
.dx-capability p,
.dx-plan-card p,
.dx-market-card p {
  color: var(--dx-soft);
  line-height: 1.45;
}

.dx-route-card code,
.dx-route-card small,
.dx-capability small,
.dx-plan-card small,
.dx-market-card small {
  min-width: 0;
  color: var(--dx-muted);
  font: 12px/1.45 var(--dx-mono);
  overflow-wrap: anywhere;
}

.dx-plan-card strong {
  color: var(--dx-green);
  font-size: 34px;
  line-height: 1;
}

.dx-plan-card[data-featured="true"] {
  border-color: rgba(76, 201, 192, 0.72);
  box-shadow: inset 0 0 0 1px rgba(76, 201, 192, 0.2);
}

.dx-plan-card[data-availability="coming-soon"] {
  opacity: 0.72;
}

.dx-plan-card[data-availability="coming-soon"] strong {
  color: var(--dx-muted);
  font-size: 26px;
}

.dx-beta-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  padding: 14px;
  border: 1px solid rgba(76, 201, 192, 0.38);
  border-radius: 8px;
  background: rgba(76, 201, 192, 0.08);
}

.dx-beta-plan span {
  color: var(--dx-text);
  font: 700 17px/1.2 var(--dx-display);
}

.dx-beta-plan strong {
  color: var(--dx-green);
  font: 800 22px/1 var(--dx-display);
}

.dx-beta-plan small {
  grid-column: 1 / -1;
  color: var(--dx-muted);
  font: 12px/1.45 var(--dx-mono);
}

.dx-mission,
.dx-signin,
.dx-host {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--dx-line);
}

.dx-mission .dx-section-head,
.dx-signin > div {
  max-width: 760px;
}

.dx-mission > .dx-section-head {
  margin-bottom: 0;
}

.dx-signin p,
.dx-host p:last-child {
  color: var(--dx-soft);
  font-size: 20px;
  line-height: 1.42;
}

.dx-signin-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--dx-line-strong);
  border-radius: 8px;
  background: var(--dx-panel);
}

.dx-signin-form label {
  color: var(--dx-muted);
  font: 700 12px var(--dx-mono);
  text-transform: uppercase;
}

.dx-signin-form input,
.dx-signin-form select,
.dx-signin-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-text);
  background: rgba(0, 0, 0, 0.24);
}

.dx-signin-form textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
  line-height: 1.45;
}

.dx-auth-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0;
  padding: 10px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.dx-auth-options legend {
  padding: 0 5px;
  color: var(--dx-muted);
  font: 700 12px var(--dx-mono);
  text-transform: uppercase;
}

.dx-auth-options label {
  min-width: 0;
  min-height: 52px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-soft);
  background: rgba(0, 0, 0, 0.18);
  text-transform: none !important;
}

.dx-provider-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--dx-text);
}

.dx-provider-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.dx-provider-label {
  min-width: 0;
  color: var(--dx-soft);
  font: 700 14px var(--dx-font);
  overflow-wrap: anywhere;
}

.dx-provider-icon--google svg,
.dx-provider-icon--microsoft svg {
  border-radius: 4px;
}

.dx-provider-icon--apple svg,
.dx-provider-icon--apple path {
  fill: currentColor;
}

.dx-provider-icon--email svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dx-google-blue {
  fill: #4285f4;
}

.dx-google-green {
  fill: #34a853;
}

.dx-google-yellow {
  fill: #fbbc05;
}

.dx-google-red {
  fill: #ea4335;
}

.dx-microsoft-red {
  fill: #f25022;
}

.dx-microsoft-green {
  fill: #7fba00;
}

.dx-microsoft-blue {
  fill: #00a4ef;
}

.dx-microsoft-yellow {
  fill: #ffb900;
}

.dx-auth-options input:checked + .dx-provider-icon {
  color: var(--dx-mint);
}

.dx-auth-options input:checked + .dx-provider-icon + .dx-provider-label {
  color: var(--dx-text);
}

.dx-auth-options input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--dx-cyan);
}

.dx-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;
}

.dx-checkbox-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  color: var(--dx-soft) !important;
  background: rgba(255, 255, 255, 0.035);
  text-transform: none !important;
}

.dx-checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--dx-cyan);
}

.dx-form-note {
  color: var(--dx-muted) !important;
  font: 12px/1.45 var(--dx-mono) !important;
}

.dx-chat-body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.dx-chat-shell {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dx-chat-topbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0;
  border-bottom: 1px solid var(--dx-line);
}

.dx-chat-nav {
  display: flex;
  gap: 16px;
  justify-self: center;
  color: var(--dx-muted);
  font-size: 14px;
}

.dx-chat-nav a {
  color: inherit;
}

.dx-chat-page {
  min-height: 0;
  flex: 1;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 0 auto;
  padding: 18px 0 max(16px, env(safe-area-inset-bottom));
}

.dx-chat-thread {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  overflow-y: auto;
  padding: 0 2px;
  scrollbar-width: thin;
}

.dx-chat-empty-state {
  width: min(640px, 100%);
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: auto auto 14px;
  text-align: center;
}

.dx-logo-mark--chat {
  width: 62px;
  border-radius: 18px;
}

.dx-chat-empty-state .dx-kicker {
  margin: 0;
}

.dx-chat-prompt {
  max-width: 680px;
  margin: 0;
  color: var(--dx-text);
  font: 700 clamp(32px, 6vw, 52px)/1.05 var(--dx-display);
}

.dx-chat-empty-state p:last-child {
  max-width: 620px;
  color: var(--dx-soft);
  font-size: clamp(17px, 3.5vw, 22px);
  line-height: 1.35;
}

.dx-chat-message {
  width: min(720px, 100%);
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid var(--dx-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.dx-chat-message[hidden] {
  display: none;
}

.dx-chat-message--user {
  justify-self: end;
  align-self: flex-end;
  background: rgba(76, 201, 192, 0.13);
}

.dx-chat-message strong {
  color: var(--dx-green);
  font-family: var(--dx-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.dx-chat-message p {
  color: var(--dx-soft);
  font-size: 16px;
  line-height: 1.42;
}

.dx-chat-composer {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  background: linear-gradient(180deg, rgba(9, 13, 19, 0), var(--dx-bg) 24%);
}

.dx-chat-composer-box {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
  padding: 10px;
  border: 1px solid var(--dx-line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.dx-chat-tool,
.dx-chat-submit#sendChatMessage {
  min-width: 42px;
  min-height: 42px;
  border-radius: 8px;
  font-family: var(--dx-display);
  font-weight: 800;
}

.dx-chat-tool {
  color: var(--dx-text);
  background: rgba(0, 0, 0, 0.2);
}

.dx-chat-composer textarea {
  min-height: 42px;
  max-height: 118px;
  padding: 9px 2px;
  border: 0;
  border-radius: 0;
  resize: none;
  background: transparent;
  line-height: 1.45;
}

.dx-chat-composer textarea:focus-visible {
  outline-offset: 0;
}

.dx-chat-submit#sendChatMessage {
  justify-self: auto;
  padding: 0 18px;
}

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

.dx-cell-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dx-green);
  box-shadow: 0 0 14px rgba(123, 216, 143, 0.8);
}

@media (max-width: 980px) {
  .dx-topbar,
  .dx-workspace,
  .dx-mission,
  .dx-signin,
  .dx-host {
    grid-template-columns: 1fr;
  }

  .dx-topbar {
    position: sticky;
  }

  .dx-nav,
  .dx-cell-link {
    justify-self: start;
  }

  .dx-workspace {
    min-height: auto;
    padding-top: 48px;
  }

  .dx-route-grid,
  .dx-capability-grid,
  .dx-plan-grid,
  .dx-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .dx-shell {
    background:
      linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
      linear-gradient(180deg, rgba(76, 201, 192, 0.07), transparent 44%),
      var(--dx-bg);
    background-size: 24px 24px, 24px 24px, 100% 560px, auto;
  }

  .dx-topbar {
    width: 100%;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--dx-line);
  }

  .dx-chat-topbar {
    width: 100%;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: max(8px, env(safe-area-inset-top)) 14px 8px;
  }

  .dx-chat-nav {
    display: none;
  }

  .dx-cookie-notice {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .dx-cookie-notice button {
    width: 100%;
  }

  .dx-development-notice {
    top: calc(142px + env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: calc(100% - 24px);
    gap: 8px;
    padding: 7px 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  .dx-workspace {
    padding-top: 92px;
  }

  .dx-page-section {
    padding-top: 112px;
  }

  .dx-workspace,
  .dx-section,
  .dx-mission,
  .dx-signin,
  .dx-host {
    width: min(100% - 24px, 1180px);
  }

  .dx-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-top: 2px;
    font-size: 13px;
    scrollbar-width: none;
  }

  .dx-nav::-webkit-scrollbar {
    display: none;
  }

  .dx-brand {
    gap: 10px;
  }

  .dx-logo-mark--small {
    width: 38px;
    border-radius: 12px;
  }

  .dx-logo-mark--small .dx-logo-binary-wave span {
    font-size: 8px;
  }

  .dx-brand-copy strong {
    font-size: 18px;
  }

  .dx-brand-copy small {
    display: none;
  }

  .dx-cell-link {
    justify-self: end;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.07);
  }

  .dx-chat-page {
    width: 100%;
    gap: 10px;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
  }

  .dx-chat-thread {
    gap: 10px;
    padding: 0;
  }

  .dx-chat-empty-state {
    gap: 8px;
    margin-bottom: 10px;
  }

  .dx-logo-mark--chat {
    width: 52px;
    border-radius: 14px;
  }

  .dx-chat-prompt {
    font-size: clamp(30px, 9vw, 38px);
  }

  .dx-chat-empty-state p:last-child {
    max-width: 360px;
    font-size: 16px;
  }

  .dx-chat-message {
    padding: 11px 12px;
  }

  .dx-chat-message p {
    font-size: 15px;
  }

  .dx-chat-composer {
    padding-top: 4px;
  }

  .dx-chat-composer-box {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 8px;
  }

  .dx-chat-tool,
  .dx-chat-submit#sendChatMessage {
    min-width: 40px;
    min-height: 40px;
  }

  .dx-chat-submit#sendChatMessage {
    padding: 0 12px;
  }

  .dx-console-head,
  .dx-wire,
  .dx-account-head,
  .dx-mission,
  .dx-signin,
  .dx-host {
    grid-template-columns: 1fr;
  }

  .dx-status {
    justify-self: start;
    max-width: none;
  }

  .dx-wire section + section {
    border-top: 1px solid var(--dx-line);
    border-left: 0;
  }

  .dx-route-grid,
  .dx-capability-grid,
  .dx-plan-grid,
  .dx-market-grid {
    grid-template-columns: 1fr;
  }

  .dx-workspace {
    gap: 24px;
    padding: 92px 0 44px;
  }

  .dx-page-section {
    min-height: auto;
    padding-top: 112px;
  }

  .dx-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .dx-product-summary {
    gap: 7px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .dx-summary-headline {
    font-size: 25px;
    line-height: 1.08;
  }

  .dx-summary-signal {
    gap: 10px;
    padding: 9px 10px;
  }

  .dx-summary-signal strong {
    font-size: 36px;
  }

  .dx-summary-signal em {
    font-size: 15px;
  }

  .dx-lede {
    font-size: 17px;
    line-height: 1.38;
  }

  .dx-proof-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .dx-proof-strip span {
    min-height: 58px;
    display: grid;
    align-content: center;
    padding: 10px;
  }

  .dx-proof-strip span:last-child {
    grid-column: 1 / -1;
  }

  .dx-proof-strip strong {
    font-size: 14px;
  }

  .dx-console {
    margin-top: 8px;
  }

  .dx-account-panel {
    margin-top: 8px;
  }

  .dx-console-head {
    padding: 18px;
  }

  .dx-account-head {
    padding: 18px;
  }

  .dx-console-head h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  .dx-account-head h2 {
    font-size: 28px;
    line-height: 1.04;
  }

  .dx-route-picker {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px 18px 0;
    scrollbar-width: none;
  }

  .dx-route-picker::-webkit-scrollbar {
    display: none;
  }

  .dx-route-tab {
    flex: 0 0 auto;
    min-height: 38px;
    font-size: 16px;
  }

  .dx-form {
    padding: 18px;
  }

  textarea {
    min-height: 150px;
    font-size: 16px;
  }

  #sendMission,
  #continueBilling,
  #completeOnboarding,
  #sendChatMessage {
    width: 100%;
  }

  .dx-wire section {
    padding: 18px;
  }

  .dx-account-steps,
  .dx-signin-form {
    padding: 18px;
  }

  .dx-auth-options {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }
}
