:root {
  color-scheme: dark;
  --bg: #060b13;
  --bg-elevated: #0a1220;
  --panel: #0f1929;
  --panel-strong: #111d30;
  --line: rgba(148, 163, 184, 0.22);
  --line-strong: rgba(148, 163, 184, 0.34);
  --text: #f8fafc;
  --muted: #a7b3c4;
  --soft: #718096;
  --cyan: #6ee7f9;
  --teal: #5eead4;
  --blue: #60a5fa;
  --green: #86efac;
  --amber: #fcd34d;
  --danger: #fb7185;
  --paper: #f5f8fb;
  --ink: #07111f;
  --radius: 18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050a12;
  color: var(--text);
  letter-spacing: 0;
}

main {
  background:
    radial-gradient(circle at 15% 6%, rgba(45, 212, 191, 0.14), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(96, 165, 250, 0.15), transparent 30%),
    linear-gradient(180deg, #050a12 0, #08111f 1040px, #f5f8fb 1040px, #f5f8fb 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 14, 25, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #cbd5e1;
  font-size: 14px;
}

.nav a,
.ghost-link,
.footer a {
  color: #cbd5e1;
  transition: color 160ms ease;
}

.nav a:hover,
.ghost-link:hover,
.footer a:hover {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 212, 191, 0.32);
  border-radius: 13px;
  background: linear-gradient(135deg, #c4f1ff 0%, #5eead4 100%);
  color: #04111d;
  font-weight: 700;
  padding: 0 18px;
  box-shadow: 0 16px 34px rgba(45, 212, 191, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(45, 212, 191, 0.26);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(680px, 1.26fr);
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 82px 0 66px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 30px;
  color: #c6d2e0;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.hero-proof div,
.metric-card,
.workflow-card,
.capability-grid article,
.security-grid article {
  border: 1px solid var(--line);
  background: rgba(15, 25, 41, 0.72);
}

.hero-proof div {
  min-width: 0;
  border-radius: 16px;
  padding: 14px;
}

.hero-proof dt,
.metric-card span,
.panel-label {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 650;
}

.hero-visual {
  min-width: 0;
}

.console-shell {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(20, 32, 51, 0.96), rgba(7, 13, 24, 0.98)),
    #08111f;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.console-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(6, 12, 23, 0.7);
}

.window-controls {
  display: flex;
  gap: 7px;
  margin-right: 8px;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #334155;
}

.window-dot:first-child {
  background: #fb7185;
}

.window-dot:nth-child(2) {
  background: #facc15;
}

.window-dot:nth-child(3) {
  background: #34d399;
}

.console-title {
  color: #dbeafe;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.console-search {
  flex: 1;
  min-width: 0;
  height: 32px;
  margin-left: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 9px;
  background: rgba(15, 23, 42, 0.72);
  color: #6f8197;
  font-size: 11px;
  line-height: 30px;
  padding: 0 12px;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.08);
  color: #bffff6;
  font-size: 11px;
  font-weight: 750;
  padding: 7px 10px;
  white-space: nowrap;
}

.console-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(94, 234, 212, 0.8);
}

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

.console-nav {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 18px 12px;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(5, 10, 18, 0.42);
  color: #93a4b8;
  font-size: 11px;
}

.nav-section {
  display: grid;
  gap: 5px;
}

.nav-section small {
  color: #5f7188;
  font-size: 10px;
  font-weight: 800;
  padding: 0 9px 4px;
  text-transform: uppercase;
}

.console-nav span {
  border-radius: 9px;
  padding: 8px 9px;
  white-space: nowrap;
}

.console-nav .nav-active {
  background: rgba(94, 234, 212, 0.12);
  color: #dcfffb;
}

.console-main {
  padding: 16px;
}

.workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.workspace-head span {
  display: block;
  color: #718096;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workspace-head strong {
  display: block;
  margin-top: 4px;
  color: #f8fafc;
  font-size: 16px;
}

.scope-tabs {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 3px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(3, 7, 18, 0.46);
  padding: 3px;
}

.scope-tabs span {
  border-radius: 7px;
  color: #8da0b8;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  padding: 7px 9px;
  text-transform: none;
}

.scope-tabs .active {
  background: rgba(96, 165, 250, 0.18);
  color: #dbeafe;
}

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

.metric-card {
  min-width: 0;
  border-radius: 13px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(18, 31, 50, 0.88), rgba(9, 17, 30, 0.78));
}

.metric-card strong {
  display: block;
  margin-top: 7px;
  color: #f8fafc;
  font-size: 25px;
  line-height: 1;
}

.metric-card em {
  display: block;
  margin-top: 6px;
  color: #7d8ca1;
  font-size: 11px;
  font-style: normal;
}

.metric-card.warning strong {
  color: var(--amber);
}

.workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(190px, 0.7fr);
  gap: 10px;
  margin-top: 12px;
}

.queue,
.device-panel {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 15px;
  background: rgba(7, 14, 25, 0.78);
  padding: 12px;
}

.queue-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.queue-head small {
  display: block;
  margin-top: 3px;
  color: #6f8197;
  font-size: 11px;
  font-weight: 600;
}

.queue-head span:last-child {
  color: var(--green);
  white-space: nowrap;
}

.table-head,
.device-row {
  display: grid;
  grid-template-columns: minmax(76px, 0.85fr) minmax(78px, 0.9fr) minmax(88px, 1fr) 56px;
  gap: 7px;
  align-items: center;
}

.table-head {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #5f7188;
  font-size: 10px;
  font-weight: 800;
  padding: 8px 0;
  text-transform: uppercase;
}

.device-row {
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding: 11px 0;
  color: #cbd5e1;
  font-size: 12px;
}

.device-row:last-child {
  border-bottom: 0;
}

.device-row b {
  color: #f8fafc;
}

.device-row b,
.device-row span,
.table-head span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.device-row em {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  color: #c7d2fe;
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  padding: 5px 7px;
  text-align: center;
  text-transform: uppercase;
}

.device-row.critical b {
  color: var(--danger);
}

.device-row.warning b {
  color: var(--amber);
}

.device-row.selected {
  margin: 0 -7px;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.07);
  padding-left: 7px;
  padding-right: 7px;
}

.status {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: 1px;
}

.status.critical {
  background: var(--danger);
}

.status.warning {
  background: var(--amber);
}

.status.good {
  background: var(--green);
}

.device-panel h3 {
  margin: 7px 0 8px;
  font-size: 21px;
}

.device-panel p {
  margin-bottom: 13px;
  color: #9aacc1;
  font-size: 12px;
  line-height: 1.55;
}

.health-bar {
  overflow: hidden;
  height: 7px;
  border-radius: 99px;
  background: rgba(148, 163, 184, 0.15);
}

.health-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--danger), var(--amber), var(--green));
}

.endpoint-facts {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.endpoint-facts span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  color: #cbd5e1;
  font-size: 11px;
  padding-bottom: 7px;
}

.endpoint-facts b {
  color: #697b91;
  font-weight: 800;
}

.action-list {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.action-list span {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.56);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 650;
  padding: 9px;
}

.activity-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.activity-strip div {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 13px;
  background: rgba(3, 7, 18, 0.38);
  padding: 11px;
}

.activity-strip b,
.activity-strip span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-strip b {
  color: #e2e8f0;
  font-size: 12px;
}

.activity-strip span {
  margin-top: 5px;
  color: #7d8ca1;
  font-size: 11px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 26px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(148, 163, 184, 0.12);
}

.logo-strip span {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  background: rgba(9, 18, 31, 0.9);
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 650;
  text-align: center;
  padding: 0 18px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  color: var(--ink);
}

.section h2,
.final-cta h2 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #07111f;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.02;
}

.section p,
.final-cta p {
  max-width: 690px;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
}

.capability-grid,
.workflow-grid,
.security-grid {
  display: grid;
  gap: 14px;
}

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

.capability-grid article,
.workflow-card,
.security-grid article {
  border-color: rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  padding: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.capability-grid h3,
.workflow-card h3,
.security-grid h3,
.steps h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 20px;
}

.capability-grid p,
.workflow-card p,
.security-grid p,
.steps p {
  margin-bottom: 0;
  color: #526174;
  font-size: 15px;
  line-height: 1.68;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: #e6fffb;
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
}

.narrative {
  text-align: center;
}

.narrative h2,
.narrative p {
  margin-left: auto;
  margin-right: auto;
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  text-align: left;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  border-radius: 30px;
  background: #07111f;
  color: white;
  padding: 54px;
}

.proof-panel h2 {
  color: white;
}

.proof-panel p {
  color: #b9c5d5;
}

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

.proof-list div {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
}

.proof-list span {
  color: #b9c5d5;
  line-height: 1.62;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
}

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

.migration {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: white;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.steps li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: #07111f;
  color: white;
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 12%, rgba(94, 234, 212, 0.2), transparent 26%),
    linear-gradient(135deg, #07111f, #0d1b2e);
  padding: 56px;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: #c0ccdb;
}

.demo-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}

.demo-form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 13px;
  background: rgba(3, 9, 18, 0.62);
  color: white;
  font: inherit;
  padding: 0 13px;
  outline: none;
}

.demo-form input:focus {
  border-color: rgba(94, 234, 212, 0.72);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
}

.demo-form p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
}

.demo-form a {
  color: #a7f3d0;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  color: #475569;
  padding: 80px 0 44px;
  font-size: 14px;
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.footer .brand {
  color: #07111f;
}

.footer .brand img {
  width: 30px;
  height: 30px;
}

.footer a {
  color: #0f766e;
  font-weight: 700;
}

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

  .hero,
  .split,
  .proof-panel,
  .security,
  .migration,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 70px;
  }

  .hero-visual {
    order: 0;
  }

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

  .console-nav {
    display: none;
  }

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

  .logo-strip,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  main {
    background:
      radial-gradient(circle at 18% 3%, rgba(45, 212, 191, 0.14), transparent 24%),
      linear-gradient(180deg, #050a12 0, #08111f 1760px, #f5f8fb 1760px, #f5f8fb 100%);
  }

  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .header-actions .ghost-link {
    display: none;
  }

  .hero,
  .section,
  .logo-strip,
  .final-cta,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-proof,
  .workbench,
  .capability-grid,
  .workflow-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

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

  .console-shell {
    border-radius: 18px;
  }

  .console-grid {
    min-height: 0;
  }

  .console-main {
    padding: 12px;
  }

  .console-topbar {
    align-items: stretch;
    flex-wrap: wrap;
    height: auto;
    padding: 11px;
  }

  .console-search {
    display: none;
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
  }

  .workspace-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-head {
    display: none;
  }

  .device-row,
  .table-head {
    grid-template-columns: 1fr auto;
  }

  .device-row span {
    grid-column: 1 / -1;
    white-space: normal;
  }

  .device-row em {
    grid-column: 2;
    grid-row: 1;
  }

  .optional-row,
  .activity-strip {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .proof-panel,
  .final-cta {
    padding: 28px;
    border-radius: 24px;
  }

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