:root {
  --hue-primary: #27e5c2;
  --hue-primary-glow: rgba(39, 229, 194, 0.25);
  --hue-primary-dark: #1ab094;
  --bg-darkest: #070a10;
  --bg-base: #0c111c;
  --bg-surface: #141c2e;
  --bg-elevated: #1d273e;
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 16px;
  --transition-base: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-darkest);
  color: #f0f4fc;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #152238 0%, #070a10 70%);
  min-height: 100vh;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

/* Header & Omnibar */
.router {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.emblem-vessel {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.emblem {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.emblem-prose {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  white-space: normal;
}

.router nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.omnibar-hyper {
  font-size: 15px;
  font-weight: 500;
  color: #a0aec0;
  transition: color var(--transition-base);
  padding: 6px 0;
  position: relative;
}

.omnibar-hyper:hover {
  color: var(--hue-primary);
}

.omnibar-hyper.active {
  color: var(--hue-primary);
  font-weight: 600;
}

.omnibar-hyper.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--hue-primary);
  box-shadow: 0 0 8px var(--hue-primary);
}

.actuate-strand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.actuate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-m);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: normal;
  border: 1px solid transparent;
}

.actuate-primary {
  background: linear-gradient(135deg, var(--hue-primary) 0%, var(--hue-primary-dark) 100%);
  color: #070a10;
  box-shadow: 0 4px 16px var(--hue-primary-glow);
}

.actuate-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 229, 194, 0.4);
}

.actuate-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.actuate-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--hue-primary);
  color: var(--hue-primary);
}

/* Main Layout & Sections */
main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px 24px;
}

/* Top-level 1: Intro Article / Reverse Split Hero */
.viewport {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  padding: 40px 32px;
  background: rgba(20, 28, 46, 0.6);
  border: 1px solid rgba(39, 229, 194, 0.2);
  border-radius: var(--radius-l);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stage {
  flex: 1 1 500px;
  min-width: 0;
}

.canvas {
  flex: 1 1 450px;
  min-width: 0;
}

.zenith {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(39, 229, 194, 0.1);
  border: 1px solid rgba(39, 229, 194, 0.3);
  color: var(--hue-primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.headline-primary {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.prose-intro {
  font-size: 17px;
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Data UI Console Component */
.matrix-console {
  background: var(--bg-darkest);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 24px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.matrix-nadir {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.matrix-headline {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.matrix-status {
  font-size: 12px;
  color: var(--hue-primary);
  background: rgba(39, 229, 194, 0.12);
  padding: 2px 10px;
  border-radius: 12px;
}

.stream-cluster {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stream-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: var(--radius-s);
  border-left: 3px solid var(--hue-primary);
  font-size: 13px;
}

.stream-signal {
  color: #e2e8f0;
  font-weight: 500;
}

.stream-val {
  color: var(--hue-primary);
  font-family: monospace;
  font-weight: 700;
}

/* Wafers Container */
.strand-wafers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.wafer {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-m);
  padding: 24px;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.wafer:hover {
  transform: translateY(-4px);
  border-color: var(--hue-primary);
}

.wafer-nadir {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.glyph-casing {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-s);
  background: rgba(39, 229, 194, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hue-primary);
  flex-shrink: 0;
}

.headline-tertiary {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.prose-wafer {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
}

/* Top-level 2: Section / Context (Privacy Guard) */
.chassis {
  margin-bottom: 80px;
  padding: 48px 36px;
  background: var(--bg-base);
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.headline-secondary {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.prose-context {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 800px;
  margin-bottom: 36px;
}

.media-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.pixmap-casing {
  flex: 1 1 480px;
  min-width: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(39, 229, 194, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.pixmap-casing img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.nodules-cluster {
  flex: 1 1 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nodule-nodule {
  display: flex;
  gap: 16px;
  background: var(--bg-surface);
  padding: 20px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nodule-casing h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.nodule-casing p {
  font-size: 14px;
  color: #94a3b8;
}

/* Top-level 3: Aside / Phishing Protection */
.casing {
  margin-bottom: 80px;
  padding: 48px 36px;
  background: radial-gradient(circle at 10% 20%, rgba(39, 229, 194, 0.08) 0%, rgba(20, 28, 46, 0.8) 100%);
  border-radius: var(--radius-l);
  border: 1px solid rgba(39, 229, 194, 0.15);
}

.casing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.snippet-wafer {
  background: rgba(12, 17, 28, 0.7);
  padding: 28px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.snippet-wafer h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.snippet-wafer p {
  font-size: 14px;
  color: #a0aec0;
  line-height: 1.6;
}

/* Top-level 4: Div / Definition List & Policy Summary */
.vessel-policy {
  padding: 40px;
  background: var(--bg-surface);
  border-radius: var(--radius-l);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 60px;
}

.policy-dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.policy-dl dt {
  font-size: 15px;
  font-weight: 700;
  color: var(--hue-primary);
  margin-bottom: 6px;
}

.policy-dl dd {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.trigger-viewport {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(180deg, rgba(39, 229, 194, 0.05) 0%, rgba(7, 10, 16, 0.9) 100%);
  border-radius: var(--radius-l);
  border: 1px solid rgba(39, 229, 194, 0.2);
}

.trigger-headline {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.trigger-prose {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 28px;
}

/* Footer / Terminus */
.dock {
  background: var(--bg-darkest);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 5% 30px 5%;
}

.dock-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.dock-brand {
  flex: 1 1 300px;
  min-width: 0;
}

.dock-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.dock-desc {
  font-size: 14px;
  color: #718096;
  max-width: 340px;
}

.dock-omnibar {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  min-width: 0;
}

.dock-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dock-col-headline {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.dock-hyper {
  font-size: 14px;
  color: #a0aec0;
  transition: color var(--transition-base);
}

.dock-hyper:hover {
  color: var(--hue-primary);
}

.dock-prose {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: #4a5568;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .router {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .router nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 16px;
  }
  .viewport {
    padding: 24px 18px;
  }
  .chassis, .casing, .vessel-policy {
    padding: 28px 20px;
  }
}

.omnibar-router,
.omnibar-router *,
.omnibar-router *::before,
.omnibar-router *::after {
    box-sizing: border-box;
}

.omnibar-router nav,
.omnibar-router div,
.omnibar-router section,
.omnibar-router article,
.omnibar-router aside,
.omnibar-router p,
.omnibar-router h1,
.omnibar-router h2,
.omnibar-router h3,
.omnibar-router h4,
.omnibar-router h5,
.omnibar-router h6,
.omnibar-router a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.omnibar-router p,
.omnibar-router h1,
.omnibar-router h2,
.omnibar-router h3,
.omnibar-router h4,
.omnibar-router h5,
.omnibar-router h6 {
    text-decoration: none;
}

.omnibar-router img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.omnibar-router {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.omnibar-router a.omnibar-omnibar-hyper {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.omnibar-router a.omnibar-omnibar-hyper,
.omnibar-router a.omnibar-omnibar-hyper:hover,
.omnibar-router a.omnibar-omnibar-hyper:focus,
.omnibar-router a.omnibar-omnibar-hyper:active,
.omnibar-router a.omnibar-omnibar-hyper.active,
.omnibar-router a.omnibar-omnibar-hyper[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.omnibar-router{
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(12, 17, 28, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 16px 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

.omnibar-router .omnibar-emblem-vessel{
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

.omnibar-router .omnibar-emblem{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
    }

.omnibar-router .omnibar-emblem img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

.omnibar-router .omnibar-emblem-prose{
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #ffffff;
      white-space: nowrap;
    }

.omnibar-router nav{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

.omnibar-router .omnibar-omnibar-hyper{
      padding: 8px 16px;
      font-size: 15px;
      font-weight: 500;
      color: #94a3b8;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.35s ease;
    }

.omnibar-router .omnibar-omnibar-hyper:hover{
      color: #27e5c2;
      background-color: rgba(39, 229, 194, 0.08);
    }

.omnibar-router .omnibar-omnibar-hyper.active{
      color: #27e5c2;
      background-color: rgba(39, 229, 194, 0.12);
      font-weight: 600;
    }

.omnibar-router .omnibar-actuate-strand{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

.omnibar-router .omnibar-actuate{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.35s ease;
      border: 1px solid transparent;
      white-space: nowrap;
    }

.omnibar-router .omnibar-actuate-primary{
      background: linear-gradient(135deg, #27e5c2 0%, #1ab094 100%);
      color: #070a10;
      box-shadow: 0 4px 16px rgba(39, 229, 194, 0.25);
    }

.omnibar-router .omnibar-actuate-primary:hover{
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(39, 229, 194, 0.4);
      filter: brightness(1.08);
    }

@media (max-width: 768px){.omnibar-router{
        padding: 12px 16px;
      }

.omnibar-router nav{
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
      }}

.omnibar-router {
    background: rgb(12, 17, 28);
    background-image: none;
}

.dock-dock,
.dock-dock *,
.dock-dock *::before,
.dock-dock *::after {
    box-sizing: border-box;
}

.dock-dock nav,
.dock-dock div,
.dock-dock section,
.dock-dock article,
.dock-dock aside,
.dock-dock p,
.dock-dock h1,
.dock-dock h2,
.dock-dock h3,
.dock-dock h4,
.dock-dock h5,
.dock-dock h6,
.dock-dock a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.dock-dock p,
.dock-dock h1,
.dock-dock h2,
.dock-dock h3,
.dock-dock h4,
.dock-dock h5,
.dock-dock h6 {
    text-decoration: none;
}

.dock-dock img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.dock-dock {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.dock-dock a,
.dock-dock a:hover,
.dock-dock a:focus,
.dock-dock a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.dock-dock .dock-vessel-inner{
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

.dock-dock .dock-prose-small{
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.5;
    }

.dock-dock{
      background-color: #06090e;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 0 30px 0;
    }

.dock-dock .dock-dock-matrix{
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      margin-bottom: 48px;
    }

.dock-dock .dock-dock-brand{
      flex: 1 1 300px;
      min-width: 0;
    }

.dock-dock .dock-dock-headline{
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      display: block;
    }

.dock-dock .dock-dock-router, .dock-dock .dock-dock-support{
      flex: 1 1 200px;
      min-width: 0;
    }

.dock-dock .dock-dock-labellet{
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 18px;
      display: block;
    }

.dock-dock .dock-dock-hypers{
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

.dock-dock .dock-hyper-dock{
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.35s ease;
    }

.dock-dock .dock-hyper-dock:hover{
      color: #27e5c2;
    }

.dock-dock .dock-dock-bottom{
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      text-align: center;
    }

.dock-dock .dock-prose-legal{
      font-size: 13px;
      color: #64748b;
    }