:root {
  --bg: #07090d;
  --bg-2: #0b0f14;
  --panel: #10151d;
  --panel-2: #131a22;
  --line: #263241;
  --line-soft: #1b2430;
  --text: #f4f7fb;
  --muted: #9ba8b6;
  --muted-2: #6f7d8c;
  --green: #35f2a0;
  --green-soft: rgba(53, 242, 160, 0.13);
  --cyan: #7dd3fc;
  --amber: #f4b35b;
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #05070a;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #05070a;
  isolation: isolate;
  color: var(--text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before,
body::after,
.particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before,
body::after {
  content: "";
}

body::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(38, 50, 65, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 50, 65, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

body::after {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 242, 160, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.62));
}

.particle-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 3;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 36px;
  background: rgba(7, 9, 13, 0.82);
  border-bottom: 1px solid rgba(38, 50, 65, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.nav-links,
.hero-actions,
.signal-row,
.badge-row,
.filters {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(53, 242, 160, 0.9), rgba(125, 211, 252, 0.65));
  box-shadow: 0 0 28px rgba(53, 242, 160, 0.24);
}

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

.nav-links a:hover,
.footer a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"],
.header-cta[aria-current="page"] {
  color: var(--green);
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  padding: 118px 24px 72px;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
}

.hero-canvas {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.38));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: #c5cfda;
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: #07110d;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(16, 21, 29, 0.78);
  color: var(--text);
}

.button:hover,
.header-cta:hover,
.filter:hover,
.link-button:hover {
  transform: translateY(-1px);
}

.signal-row,
.badge-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signal-row span,
.badge-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 29, 0.72);
  color: #d9e2ec;
  padding: 8px 10px;
  font-size: 13px;
}

.hero-terminal {
  width: min(920px, 100%);
  margin-top: 42px;
  border: 1px solid rgba(38, 50, 65, 0.92);
  border-radius: 8px;
  background: rgba(10, 14, 19, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(19, 26, 34, 0.86);
}

.terminal-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--muted-2);
}

.terminal-top span:first-child {
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--amber);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1px;
  background: var(--line-soft);
}

.terminal-grid > div {
  background: rgba(9, 12, 17, 0.98);
  padding: 20px;
}

.terminal-label {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #d8f3e7;
  font: 14px/1.55 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.section {
  padding: 88px 24px;
}

.section.band {
  background: rgba(11, 15, 20, 0.7);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(2px);
}

.section-head,
.section-copy,
.card-grid,
.flow,
.split,
.comparison,
.catalog-grid,
.pricing-grid,
.access-section,
.faq-list,
.footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.section-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.card-grid,
.catalog-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.db-card,
.price-card,
.code-panel,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.info-card,
.db-card,
.price-card {
  padding: 22px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 700;
}

.info-card h3,
.db-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-card p,
.db-card p,
.price-card p,
.faq-list p {
  color: var(--muted);
}

.flow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr 46px 1fr;
  align-items: stretch;
}

.flow-node {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.flow-node.active {
  border-color: rgba(125, 211, 252, 0.7);
}

.flow-node.success {
  border-color: rgba(53, 242, 160, 0.7);
  background: var(--green-soft);
}

.flow-node span {
  color: var(--muted);
  font-size: 14px;
}

.flow-line {
  align-self: center;
  height: 1px;
  background: var(--line);
}

.split,
.access-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.code-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.tab,
.filter {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--muted);
  cursor: pointer;
}

.tab {
  padding: 7px 10px;
}

.tab.active,
.filter.active {
  border-color: rgba(53, 242, 160, 0.75);
  color: var(--text);
}

.code-panel pre {
  padding: 20px;
}

.comparison {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 1px;
  background: var(--line-soft);
}

.comparison-row span,
.comparison-row strong {
  padding: 15px 16px;
  background: var(--panel);
}

.comparison-row.head span {
  background: #0d1218;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-row strong {
  color: var(--green);
}

.filters {
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
}

.catalog-grid {
  grid-template-columns: repeat(4, 1fr);
}

.status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.status.available {
  background: rgba(53, 242, 160, 0.12);
  color: var(--green);
}

.status.soon {
  background: rgba(244, 179, 91, 0.12);
  color: var(--amber);
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-weight: 700;
  cursor: pointer;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card.recommended {
  border-color: rgba(53, 242, 160, 0.72);
  background: #111b1a;
}

.plan-name {
  color: var(--muted);
  font-weight: 700;
}

.price {
  display: block;
  font-size: 34px;
  line-height: 1.1;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #dce5ee;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
}

.plan-cta {
  margin-top: auto;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090d12;
  color: var(--text);
  padding: 0 12px;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid rgba(53, 242, 160, 0.4);
  outline-offset: 1px;
}

.submit-button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 24px 42px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.inner-page {
  background: transparent;
}

.page-hero,
.route-grid,
.content-layout,
.final-cta {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 138px 24px 76px;
}

.page-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 58px;
  line-height: 1.04;
}

.page-hero-copy p {
  max-width: 700px;
  color: #c5cfda;
  font-size: 19px;
}

.data-board,
.metric-panel,
.access-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 29, 0.86);
  box-shadow: var(--shadow);
}

.data-board {
  overflow: hidden;
}

.board-top,
.board-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.board-top {
  background: #0d1218;
}

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

.board-top span,
.board-row span,
.metric-panel span,
.access-summary span,
.timeline span,
.dataset-row span,
.spec-table span,
.detail-card p,
.step-list p,
.content-block p,
.db-card small {
  color: var(--muted);
}

.board-top strong,
.board-row strong {
  color: #dce5ee;
}

.board-row.good strong {
  color: var(--green);
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

.metric-panel div {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.metric-panel div:nth-child(2n) {
  border-right: 0;
}

.metric-panel div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metric-panel strong {
  font-size: 34px;
  line-height: 1;
  color: var(--green);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.route-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.route-card {
  display: grid;
  gap: 12px;
  min-height: 238px;
  padding: 22px;
}

.route-card:hover,
.detail-card:hover,
.db-card:hover {
  border-color: rgba(125, 211, 252, 0.54);
}

.route-card span {
  color: var(--cyan);
  font-weight: 700;
}

.route-card h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.inline-link,
.section-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 700;
}

.section-link {
  width: min(1120px, 100%);
  margin: 22px auto 0;
}

.content-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 46px;
}

.toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  align-self: start;
  padding: 10px;
  border-left: 1px solid var(--line);
}

.toc a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.toc a:hover {
  background: var(--panel);
  color: var(--text);
}

.content-stack {
  display: grid;
  gap: 58px;
}

.content-block {
  scroll-margin-top: 96px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-soft);
}

.content-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-block h2,
.final-cta h2 {
  max-width: 800px;
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.14;
}

.content-block > p {
  max-width: 760px;
  font-size: 17px;
}

.step-list,
.detail-grid,
.timeline,
.spec-table,
.dataset-table {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.step-list > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}

.step-list > div:first-child {
  border-top: 0;
}

.step-list span {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(53, 242, 160, 0.56);
  border-radius: 8px;
  color: var(--green);
  font-weight: 700;
}

.step-list h3,
.detail-card h3 {
  grid-column: 2;
  margin-bottom: 8px;
  font-size: 19px;
}

.step-list p,
.detail-card p {
  grid-column: 2;
  margin-bottom: 0;
}

.step-list.compact > div {
  padding: 14px 0;
}

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

.detail-grid.three {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.detail-card {
  padding: 20px;
}

.timeline {
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.timeline > div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.timeline.compact {
  margin-top: 14px;
  padding: 0 20px 6px;
  border-top: 0;
}

.timeline.compact > div {
  grid-template-columns: 74px minmax(0, 1fr);
  padding: 16px 0;
}

.spec-table,
.dataset-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-soft);
  gap: 1px;
}

.spec-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  background: var(--panel);
}

.dataset-row {
  display: grid;
  grid-template-columns: 0.78fr 1.08fr 1fr;
  gap: 1px;
  background: var(--line-soft);
}

.dataset-row > * {
  padding: 15px 16px;
  background: var(--panel);
}

.dataset-row.head > * {
  background: #0d1218;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.callout {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.42);
  border-radius: 8px;
  background: rgba(125, 211, 252, 0.08);
}

.callout strong {
  color: var(--cyan);
}

.callout span {
  color: #d8e4ef;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 72px 24px;
  border-top: 1px solid var(--line-soft);
}

.final-cta h2 {
  margin-bottom: 0;
}

.hero-code {
  align-self: stretch;
}

.hero-code pre {
  min-height: 258px;
}

.catalog-grid.expanded {
  grid-template-columns: repeat(4, 1fr);
}

.db-card small {
  display: block;
  margin-top: 14px;
  font-size: 13px;
}

.pricing-grid.detailed .price-card {
  min-height: 500px;
}

.access-hero {
  align-items: start;
}

.access-summary {
  padding-top: 22px;
}

.access-summary h2 {
  margin: 0 20px 0;
  font-size: 26px;
}

.access-section.standalone {
  padding-top: 42px;
}

.compact-faq {
  width: 100%;
}

@media (max-width: 920px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .terminal-grid,
  .split,
  .page-hero,
  .content-layout,
  .access-section,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .pricing-grid,
  .route-grid,
  .detail-grid.three {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .catalog-grid.expanded,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    padding: 120px 18px 62px;
  }

  .page-hero-copy h1 {
    font-size: 44px;
  }

  .toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .final-cta {
    align-items: start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-line {
    height: 28px;
    width: 1px;
    justify-self: center;
  }

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

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 104px 16px 56px;
  }

  .section {
    padding: 64px 16px;
  }

  h1 {
    font-size: 34px;
  }

  .section-head h2,
  .section-copy h2,
  .content-block h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .page-hero {
    padding: 104px 16px 52px;
  }

  .page-hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy,
  .section-copy p,
  .page-hero-copy p {
    font-size: 16px;
  }

  .catalog-grid,
  .catalog-grid.expanded,
  .route-grid,
  .detail-grid,
  .detail-grid.three,
  .metric-panel,
  .toc {
    grid-template-columns: 1fr;
  }

  .comparison-row,
  .dataset-row,
  .spec-table div,
  .timeline > div,
  .timeline.compact > div,
  .board-top,
  .board-row,
  .step-list > div {
    grid-template-columns: 1fr;
  }

  .step-list span,
  .step-list h3,
  .step-list p {
    grid-column: 1;
    grid-row: auto;
  }

  .comparison-row.head {
    display: none;
  }

  .dataset-row.head {
    display: none;
  }

  .metric-panel div,
  .metric-panel div:nth-child(2n),
  .metric-panel div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .metric-panel div:last-child {
    border-bottom: 0;
  }

  .footer {
    flex-direction: column;
  }
}

/* Modern product refresh */
:root {
  --bg: #050706;
  --bg-2: #0a0f0d;
  --panel: rgba(13, 19, 18, 0.74);
  --panel-2: rgba(18, 26, 24, 0.78);
  --line: rgba(213, 255, 229, 0.16);
  --line-soft: rgba(213, 255, 229, 0.09);
  --text: #f7faf6;
  --muted: #aab7b1;
  --muted-2: #75847d;
  --green: #31f29f;
  --cyan: #76ddff;
  --lime: #d7ff69;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

html,
body {
  background: #050706;
}

body::before {
  background-image:
    linear-gradient(rgba(213, 255, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 255, 229, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.34;
}

body::after {
  background:
    linear-gradient(116deg, rgba(49, 242, 159, 0.1) 0%, transparent 36%),
    linear-gradient(254deg, rgba(118, 221, 255, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, rgba(5, 7, 6, 0.02), rgba(5, 7, 6, 0.74));
}

.site-header {
  top: 16px;
  left: 24px;
  right: 24px;
  width: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(213, 255, 229, 0.14);
  border-radius: 8px;
  background: rgba(7, 10, 10, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(130%);
}

.brand {
  padding-right: 10px;
  color: #ffffff;
}

.brand-mark {
  background: linear-gradient(135deg, var(--lime), var(--green) 52%, var(--cyan));
  box-shadow: 0 0 36px rgba(49, 242, 159, 0.3);
}

.nav-links {
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(213, 255, 229, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  padding: 7px 11px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(215, 255, 105, 0.1);
  color: var(--lime);
}

.header-cta {
  min-height: 40px;
  border-color: rgba(215, 255, 105, 0.22);
  background: rgba(30, 43, 16, 0.9);
  color: #f5ffe0;
}

.hero {
  min-height: 880px;
  padding: 132px 24px 84px;
  border-bottom: 1px solid rgba(213, 255, 229, 0.1);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.2), rgba(5, 7, 6, 0.06) 52%, rgba(5, 7, 6, 0.36)),
    linear-gradient(180deg, transparent, rgba(5, 7, 6, 0.66));
}

.hero-inner {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
  column-gap: 58px;
  align-items: center;
}

.hero-inner > .eyebrow,
.hero-inner > h1,
.hero-inner > .hero-copy,
.hero-inner > .hero-actions,
.hero-inner > .signal-row {
  grid-column: 1;
}

.hero-inner > .hero-terminal {
  grid-column: 2;
  grid-row: 1 / span 5;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(215, 255, 105, 0.22);
  border-radius: 8px;
  background: rgba(215, 255, 105, 0.08);
  color: var(--lime);
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
}

.hero-copy {
  max-width: 720px;
  color: #d6dfda;
  font-size: 21px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  background: var(--lime);
  color: #07100b;
  box-shadow: 0 14px 38px rgba(215, 255, 105, 0.16);
}

.button.secondary {
  border-color: rgba(213, 255, 229, 0.18);
  background: rgba(10, 14, 12, 0.9);
}

.signal-row span,
.badge-row span {
  border-color: rgba(213, 255, 229, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: #dfe8e2;
}

.hero-terminal,
.data-board,
.metric-panel,
.access-summary,
.code-panel,
.lead-form,
.comparison,
.faq-list details,
.route-card,
.detail-card,
.info-card,
.db-card,
.price-card,
.flow-node {
  border-color: rgba(213, 255, 229, 0.14);
  background: linear-gradient(180deg, rgba(24, 31, 27, 0.9), rgba(9, 13, 12, 0.88));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(120%);
}

.hero-terminal {
  width: 100%;
  min-height: 520px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.terminal-top {
  min-height: 52px;
  background: rgba(255, 255, 255, 0.055);
}

.terminal-top strong {
  color: #dfe8e2;
}

.terminal-top em {
  margin-left: auto;
  color: var(--lime);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.fact-preview {
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 14px;
  padding: 18px;
}

.fact-query,
.fact-score,
.fact-list,
.mini-metrics span {
  border: 1px solid rgba(213, 255, 229, 0.12);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.42);
}

.fact-query {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.fact-query strong {
  font-size: 24px;
  line-height: 1.15;
}

.fact-query span {
  color: var(--muted);
  font-size: 13px;
}

.fact-score {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.fact-score span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-score strong {
  color: var(--lime);
  font-size: 42px;
  line-height: 1;
}

.fact-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.fact-list p {
  margin: 0;
  color: #e7efe9;
}

.fact-list p::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.mini-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-metrics span {
  min-height: 78px;
  display: flex;
  align-items: end;
  padding: 14px;
  color: #dfe8e2;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 104px 24px;
}

.section.band {
  background: rgba(213, 255, 229, 0.035);
  border-color: rgba(213, 255, 229, 0.1);
}

.section-head h2,
.section-copy h2,
.content-block h2,
.final-cta h2 {
  color: #f8fbf6;
  font-size: 46px;
  line-height: 1.05;
}

.section-copy p,
.content-block > p,
.info-card p,
.db-card p,
.price-card p,
.faq-list p,
.route-card p,
.detail-card p {
  color: #aebbb5;
}

.card-index {
  margin-bottom: 42px;
  color: var(--lime);
}

.route-card,
.info-card,
.db-card,
.price-card,
.detail-card {
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.route-card:hover,
.info-card:hover,
.db-card:hover,
.price-card:hover,
.detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 255, 105, 0.34);
  background: linear-gradient(180deg, rgba(215, 255, 105, 0.095), rgba(255, 255, 255, 0.04));
}

.flow-node.success,
.price-card.recommended {
  border-color: rgba(215, 255, 105, 0.38);
  background: linear-gradient(180deg, rgba(215, 255, 105, 0.12), rgba(49, 242, 159, 0.045));
}

.comparison-row,
.dataset-row,
.terminal-grid {
  background: rgba(213, 255, 229, 0.08);
}

.comparison-row span,
.comparison-row strong,
.dataset-row > *,
.terminal-grid > div {
  background: rgba(7, 11, 10, 0.82);
}

.tabs,
.terminal-top {
  border-color: rgba(213, 255, 229, 0.1);
}

.tab,
.filter {
  border-color: rgba(213, 255, 229, 0.13);
  background: rgba(255, 255, 255, 0.052);
}

.tab.active,
.filter.active {
  border-color: rgba(215, 255, 105, 0.5);
  color: var(--lime);
  background: rgba(215, 255, 105, 0.085);
}

.page-hero {
  width: min(1220px, 100%);
  min-height: 760px;
  align-items: center;
  padding-top: 148px;
}

.page-hero-copy h1 {
  max-width: 780px;
  font-size: 66px;
  line-height: 0.98;
}

.page-hero-copy p {
  color: #d6dfda;
  font-size: 20px;
}

.data-board,
.metric-panel,
.access-summary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.036));
}

.board-top,
.dataset-row.head > *,
.comparison-row.head span {
  background: rgba(215, 255, 105, 0.07);
}

.metric-panel strong,
.comparison-row strong,
.board-row.good strong,
.status.available {
  color: var(--lime);
}

.lead-form input,
.lead-form select {
  border-color: rgba(213, 255, 229, 0.13);
  background: rgba(5, 7, 6, 0.58);
}

.footer {
  border-color: rgba(213, 255, 229, 0.1);
  background: rgba(5, 7, 6, 0.7);
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 12px;
  }

  .hero-inner,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-inner > .hero-terminal {
    grid-column: 1;
    grid-row: auto;
    margin-top: 34px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  h1,
  .page-hero-copy h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .section-head h2,
  .section-copy h2,
  .content-block h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .page-hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    left: 10px;
    right: 10px;
  }

  .hero {
    padding: 108px 16px 60px;
  }

  h1,
  .page-hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy,
  .page-hero-copy p {
    font-size: 17px;
  }

  .hero-terminal {
    min-height: auto;
  }

  .fact-preview,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .fact-list,
  .mini-metrics {
    grid-column: auto;
  }

  .fact-query strong {
    font-size: 20px;
  }

  .fact-score strong {
    font-size: 36px;
  }

  .section {
    padding: 72px 16px;
  }
}

/* P0 landing adaptation */
.centered {
  text-align: center;
}

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

.audience-switch {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px;
  border: 1px solid rgba(213, 255, 229, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.audience-panel {
  display: none;
}

.audience-panel.active {
  display: block;
}

.hero-code-sample {
  flex: 1;
  padding: 24px;
  overflow: auto;
  color: #e5f7ec;
}

.proof-strip,
.center-cta {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(213, 255, 229, 0.08);
}

.proof-grid div {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: center;
  padding: 24px;
  background: rgba(7, 11, 10, 0.82);
}

.proof-grid strong {
  color: var(--lime);
  font-size: 40px;
  line-height: 1;
}

.proof-grid span,
.source-note,
.use-case-grid small {
  color: var(--muted);
}

.quote-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(215, 255, 105, 0.18);
  border-radius: 8px;
  background: rgba(215, 255, 105, 0.06);
  color: #edf7ec;
  font-size: 18px;
}

.quote-card span {
  color: var(--muted);
  font-size: 14px;
}

.danger-card {
  border-color: rgba(239, 68, 68, 0.24);
}

.danger-card .card-index {
  color: #ff7b7b;
}

.center-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  text-align: center;
}

.flow-three {
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
}

.featured-catalog {
  grid-template-columns: repeat(3, 1fr);
}

.db-card .inline-link,
.detail-card .inline-link {
  margin-top: 12px;
}

.comparison-four .comparison-row {
  grid-template-columns: 0.85fr repeat(3, 1fr);
}

.source-note {
  width: min(1120px, 100%);
  margin: 16px auto 0;
  font-size: 13px;
}

.pricing-grid-five {
  width: min(1220px, 100%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-grid-five .price-card {
  min-height: 470px;
  padding: 20px;
}

.pricing-grid-five .price {
  font-size: 28px;
}

.pricing-grid-five .plan-name {
  color: var(--lime);
}

.final-cta p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.playground-shell,
.docs-shell,
.pricing-calculator {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.playground-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  align-items: stretch;
}

.playground-form,
.playground-result,
.docs-card,
.pricing-calculator {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 31, 27, 0.9), rgba(9, 13, 12, 0.88));
  box-shadow: var(--shadow);
}

.playground-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.playground-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.playground-form input,
.playground-form select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 6, 0.58);
  color: var(--text);
  padding: 0 12px;
}

.playground-result {
  min-height: 360px;
  padding: 20px;
  overflow: auto;
}

.docs-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
}

.docs-card {
  padding: 24px;
}

.docs-card + .docs-card {
  margin-top: 18px;
}

.docs-card h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.pricing-calculator {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
}

.pricing-calculator input[type="range"] {
  width: 100%;
}

.calculator-output {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.calculator-output strong {
  color: var(--lime);
}

@media (max-width: 1100px) {
  .pricing-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .proof-grid,
  .featured-catalog,
  .playground-shell,
  .docs-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .audience-switch,
  .center-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-grid-five,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid-five .price-card {
    min-height: auto;
  }

  .hero-code-sample {
    max-height: 520px;
    padding: 18px;
  }
}
