/* Chordian Design System */
:root {
  /* â”€â”€ BRAND COLOUR â€” swap hex below to match exact cube logo blue â”€â”€ */
  --blue: #2a5fd4;
  --blue-light: #3b72f0;
  --blue-dim: rgba(42, 95, 212, 0.12);
  --blue-glow: rgba(42, 95, 212, 0.06);
  --blue-border: rgba(42, 95, 212, 0.25);

  /* â”€â”€ BACKGROUNDS â”€â”€ */
  --bg: #09090b;
  --bg1: #0f0f12;
  --bg2: #141418;
  --bg3: #1c1c22;

  /* â”€â”€ BORDERS â”€â”€ */
  --bd: rgba(255, 255, 255, 0.07);
  --bd2: rgba(255, 255, 255, 0.12);
  --bd3: rgba(255, 255, 255, 0.18);

  /* â”€â”€ TEXT â”€â”€ */
  --tx: #f4f4f5;
  --tx2: #a1a1aa;
  --tx3: #52525b;
  --tx4: #3f3f46;

  /* â”€â”€ RADIUS â”€â”€ */
  --r: 8px;
  --rlg: 12px;
  --rxl: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Geist", sans-serif;
  background: var(--bg);
  color: var(--tx);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* â”€â”€ REVEAL â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--bd);
}
.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 32px);
}
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-svg {
  height: 28px;
  width: auto;
  display: block;
  max-width: min(42vw, 160px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0 -8px 0 0;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--tx);
  border-radius: 1px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px 24px;
  flex: 0 1 auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  margin: 0;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--tx2);
  padding: 6px 12px;
  border-radius: var(--r);
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--tx);
  background: rgba(255, 255, 255, 0.05);
}
.nav-links a[aria-current="page"] {
  color: var(--tx);
  background: rgba(255, 255, 255, 0.05);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-ghost {
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--tx2);
  background: none;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--tx);
  border-color: var(--bd2);
}
.btn-nav-cta {
  font-family: "Geist", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: var(--r);
  padding: 7px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
body.nav-open {
  overflow: hidden;
}
.nav-backdrop {
  display: none;
}
.nav-sheet-label {
  display: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: none;
}
.hero-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(42, 95, 212, 0.09) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #93b4ff;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

h1.hero-h1 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 4px;
}
.hero-h1 em {
  font-style: normal;
  color: #93b4ff;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  color: var(--tx2);
  max-width: 530px;
  margin: 20px auto 36px;
  line-height: 1.65;
  letter-spacing: -0.1px;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 0 32px rgba(42, 95, 212, 0.3);
  transition: all 0.2s;
  letter-spacing: -0.2px;
}
.btn-hero-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(42, 95, 212, 0.45);
}
.btn-hero-secondary {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--tx);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--bd3);
}

.hero-trust {
  margin-top: 24px;
  font-size: 12px;
  color: var(--tx4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tdot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--tx4);
}

/* MCP TERMINAL */
.mcp-wrap {
  position: relative;
  z-index: 2;
  margin: 52px auto 0;
  max-width: 600px;
  background: var(--bg1);
  border: 1px solid var(--bd2);
  border-radius: var(--rlg);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(42, 95, 212, 0.08);
}
.mcp-bar {
  background: var(--bg2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--bd);
}
.mcp-dots {
  display: flex;
  gap: 5px;
}
.mcp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mcp-dot.r {
  background: #ff5f57;
}
.mcp-dot.y {
  background: #febc2e;
}
.mcp-dot.g {
  background: #28c840;
}
.mcp-title {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--tx3);
  margin: 0 auto;
}
.mcp-body {
  padding: 18px 22px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  line-height: 2;
  text-align: left;
}
.mc {
  color: var(--tx3);
}
.mk {
  color: #93b4ff;
}
.ma {
  color: #c4b5fd;
}
.mo {
  color: #86efac;
}
.cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--blue-light);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.mcp-footer {
  border-top: 1px solid var(--bd);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--tx3);
}
.mcp-badge {
  background: var(--blue-dim);
  color: #93b4ff;
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 500;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
section {
  padding: 96px 24px;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
}
.s-label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93b4ff;
  margin-bottom: 12px;
  display: block;
}
h2.s-h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.08;
}
.s-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--tx2);
  max-width: 480px;
  line-height: 1.65;
}
.section-dark {
  background: var(--bg1);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEAR STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fear-strip {
  background: var(--bg1);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 0;
}
.fear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}
.fear-card {
  padding: 36px 32px;
  border-right: 1px solid var(--bd);
}
.fear-card:last-child {
  border-right: none;
}
.fear-quote {
  font-size: 14px;
  color: var(--tx2);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.65;
  border-left: 2px solid rgba(42, 95, 212, 0.5);
  padding-left: 14px;
}
.fear-ans {
  font-size: 13.5px;
  color: var(--tx);
  line-height: 1.6;
  display: flex;
  gap: 8px;
}
.fear-arr {
  color: #93b4ff;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCT GRID
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  overflow: hidden;
  margin-top: 52px;
  background: var(--bd);
  gap: 1px;
}
.product-card {
  background: var(--bg1);
  padding: 40px 36px;
  transition: background 0.2s;
}
.product-card:hover {
  background: var(--bg2);
}
.p-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.p-icon svg {
  width: 18px;
  height: 18px;
  stroke: #93b4ff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-card h3 {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}
.product-card > p {
  font-size: 14.5px;
  color: var(--tx2);
  line-height: 1.65;
  margin-bottom: 22px;
}
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feat-list li {
  font-size: 13px;
  color: var(--tx2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.feat-tick {
  color: #93b4ff;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.p-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #93b4ff;
  margin-top: 24px;
  font-weight: 500;
  transition: gap 0.15s;
}
.p-link:hover {
  gap: 10px;
}
.p-connector {
  grid-column: 1/-1;
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: var(--tx3);
}
.p-con-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(42, 95, 212, 0.5);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SEARCH PATHS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 48px;
  margin-bottom: 8px;
}
.path-card {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 22px 18px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.path-card:hover {
  border-color: var(--bd2);
  background: var(--bg2);
}
.path-num {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  color: var(--tx3);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.path-card h4 {
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.path-card p {
  font-size: 12px;
  color: var(--tx2);
  line-height: 1.55;
}
.path-card.hl {
  border-color: var(--blue-border);
  background: var(--blue-glow);
}
.path-card.hl h4 {
  color: #93b4ff;
}
.rrf-bar {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--tx2);
}
.rrf-lbl {
  background: var(--blue-dim);
  color: #93b4ff;
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 500;
  font-family: "Geist Mono", monospace;
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ENTITY COHERENCE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.entity-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  padding: 36px;
  margin-top: 48px;
}
.entity-sources {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.entity-src {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 10px 14px;
}
.entity-src .lbl {
  font-size: 10px;
  color: var(--tx3);
  margin-bottom: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Geist Mono", monospace;
}
.entity-src .val {
  font-size: 13px;
  color: var(--tx);
}
.entity-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ea-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--blue-light),
    transparent
  );
  opacity: 0.35;
}
.ea-icon {
  font-size: 16px;
  color: #93b4ff;
  line-height: 1;
}
.entity-result {
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--rlg);
  padding: 24px;
}
.er-label {
  font-size: 10px;
  color: #93b4ff;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Geist Mono", monospace;
}
.er-name {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.er-meta {
  font-size: 12.5px;
  color: var(--tx2);
  margin-bottom: 12px;
}
.er-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-dim);
  color: #93b4ff;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11.5px;
}
.entity-caption {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--tx2);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DEPLOYMENT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bd);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  overflow: hidden;
  margin-top: 48px;
}
.deploy-card {
  background: var(--bg2);
  padding: 32px 28px;
}
.deploy-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 18px;
}
.db-cloud {
  background: rgba(42, 95, 212, 0.12);
  color: #93b4ff;
}
.db-byoc {
  background: rgba(167, 139, 250, 0.1);
  color: #c4b5fd;
}
.db-onp {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}
.deploy-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.deploy-card p {
  font-size: 13.5px;
  color: var(--tx2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.deploy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deploy-list li {
  font-size: 12.5px;
  color: var(--tx3);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.deploy-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.38em;
  border-radius: 50%;
  background: var(--tx2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOR TEAMS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 24px 20px;
  display: block;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.team-card:hover {
  border-color: var(--bd2);
  transform: translateY(-3px);
}
.team-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.team-card p {
  font-size: 12.5px;
  color: var(--tx2);
  line-height: 1.55;
}
.team-arr {
  font-size: 14px;
  color: var(--tx3);
  margin-top: 14px;
  display: block;
  transition: color 0.15s;
}
.team-card:hover .team-arr {
  color: #93b4ff;
}
.team-card.featured {
  border-color: var(--blue-border);
  background: var(--blue-glow);
}
.team-card.featured h4 {
  color: #93b4ff;
}
.team-card.featured .team-arr {
  color: #93b4ff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DEVELOPERS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.dev-entries {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dev-entry {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}
.dev-entry:hover {
  border-color: var(--bd2);
}
.dev-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r);
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dev-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--tx2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.dev-body h4 {
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}
.dev-body p {
  font-size: 12px;
  color: var(--tx2);
  line-height: 1.5;
}
.dev-badge {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
  font-size: 11px;
  color: var(--tx3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bd);
  border-radius: 100px;
  padding: 2px 10px;
}
.compat-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compat-label {
  font-size: 11px;
  color: var(--tx3);
  font-family: "Geist Mono", monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.compat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.compat-chip {
  font-size: 12px;
  color: var(--tx2);
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.code-block {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  overflow: hidden;
  margin-top: 4px;
}
.code-bar {
  background: var(--bg2);
  padding: 9px 14px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 6px;
}
.code-bar .mcp-dot {
  width: 9px;
  height: 9px;
}
.code-title {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--tx3);
  margin: 0 auto;
}
.code-body {
  padding: 16px 18px;
  font-family: "Geist Mono", monospace;
  font-size: 12.5px;
  line-height: 1.9;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHO USES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.who-card {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rxl);
  padding: 28px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.who-card:hover {
  border-color: var(--bd2);
  transform: translateY(-3px);
}
.who-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.who-card p {
  font-size: 13.5px;
  color: var(--tx2);
  line-height: 1.6;
}
.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.who-tag {
  font-size: 11px;
  color: var(--tx3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bd);
  border-radius: 100px;
  padding: 3px 10px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.blog-card {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 28px 24px;
  display: block;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.blog-card:hover {
  border-color: var(--bd2);
  transform: translateY(-3px);
}
.blog-tag {
  font-size: 11px;
  color: #93b4ff;
  background: var(--blue-dim);
  border-radius: 100px;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 14px;
}
.blog-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 13px;
  color: var(--tx2);
  line-height: 1.55;
}
.blog-meta {
  font-size: 11.5px;
  color: var(--tx3);
  margin-top: 16px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-section {
  background: var(--bg1);
  border-top: 1px solid var(--bd);
  text-align: center;
  padding: 96px 24px;
}
.cta-eyebrow {
  font-size: 13px;
  color: var(--tx3);
  margin-bottom: 20px;
}
.cta-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.08;
}
.cta-sub {
  font-size: 17px;
  color: var(--tx2);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--tx3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
  background: var(--bg);
  border-top: 1px solid var(--bd);
  padding: 64px 32px 40px;
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--tx3);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 200px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 500;
  color: var(--tx);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul a {
  font-size: 13px;
  color: var(--tx3);
  transition: color 0.15s;
}
.footer-col ul a:hover {
  color: var(--tx);
}
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bd);
  padding-top: 28px;
  font-size: 12px;
  color: var(--tx3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: var(--tx3);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--tx);
}

/* ══════════════════════════════
   SUBPAGE LAYOUT
══════════════════════════════ */
.page-hero {
  padding: 120px 24px 64px;
  text-align: center;
  position: relative;
}
.page-hero .hero-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(42, 95, 212, 0.09) 0%,
    transparent 70%
  );
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero .page-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--tx2);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.page-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.page-main.wide {
  max-width: 1120px;
}
.prose p {
  font-size: 17px;
  font-weight: 300;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.prose h2 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -1px;
  margin: 48px 0 16px;
  line-height: 1.15;
}
.prose h3 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 28px 0 10px;
}
.prose ul,
.prose ol {
  margin: 0 0 24px 20px;
  color: var(--tx2);
  font-size: 16px;
  line-height: 1.65;
}
.prose li {
  margin-bottom: 8px;
}
.prose a {
  color: #93b4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a.btn-hero-primary,
.prose a.btn-hero-secondary {
  text-decoration: none;
  text-underline-offset: unset;
}
.prose a.btn-hero-primary {
  color: #fff;
}
.prose a.btn-hero-primary:hover {
  color: #fff;
}
.prose a.btn-hero-secondary {
  color: var(--tx);
}
.prose a.btn-hero-secondary:hover {
  color: var(--tx);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.cap-card {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 24px 22px;
}
.cap-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.cap-card p {
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.6;
  margin: 0;
}
.def-block {
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--rlg);
  padding: 28px 32px;
  margin: 32px 0;
  font-size: 16px;
  color: var(--tx);
  line-height: 1.7;
}
.path-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.path-detail {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 24px 26px;
}
.path-detail.hl {
  border-color: var(--blue-border);
  background: var(--blue-glow);
}
.path-detail h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.path-detail.hl h3 {
  color: #93b4ff;
}
.path-detail p {
  font-size: 14.5px;
  color: var(--tx2);
  line-height: 1.65;
  margin: 0;
}
.outcomes-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.outcomes-list li {
  font-size: 16px;
  color: var(--tx2);
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--bd);
  position: relative;
  line-height: 1.55;
}
.outcomes-list li::before {
  content: attr(data-n);
  position: absolute;
  left: 0;
  color: #93b4ff;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  top: 14px;
}
.feature-list-plain {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.feature-list-plain li {
  font-size: 15px;
  color: var(--tx2);
  padding: 8px 0 8px 20px;
  position: relative;
  line-height: 1.55;
}
.feature-list-plain li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #93b4ff;
  font-size: 12px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--tx3);
  margin-bottom: 24px;
  font-family: "Geist Mono", monospace;
}
.breadcrumb a {
  color: var(--tx3);
}
.breadcrumb a:hover {
  color: var(--tx2);
}
.article-lede {
  font-size: 20px;
  font-weight: 300;
  color: var(--tx);
  line-height: 1.65;
  margin-bottom: 32px;
}
.page-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Legal documents */
.legal-doc {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.legal-doc p {
  font-size: 15px;
  font-weight: 300;
  color: var(--tx2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-doc p.legal-lead {
  color: var(--tx);
  margin-bottom: 12px;
}
.legal-doc h2.legal-h2 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 48px 0 14px;
  padding-top: 8px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.legal-doc h3.legal-h3 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin: 28px 0 10px;
  line-height: 1.3;
}
.legal-doc h3.legal-h3:first-child {
  margin-top: 0;
}
.legal-doc h4.legal-h4 {
  font-size: 15px;
  font-weight: 500;
  color: #93b4ff;
  margin: 20px 0 8px;
  letter-spacing: 0.02em;
}
.legal-doc ul.legal-list {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  list-style: disc;
}
.legal-doc ul.legal-list li {
  font-size: 15px;
  color: var(--tx2);
  line-height: 1.65;
  margin-bottom: 8px;
}
.legal-doc a {
  color: #93b4ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc strong {
  color: var(--tx);
  font-weight: 500;
}
.legal-meta {
  font-size: 14px;
  color: var(--tx3);
  margin-top: 8px;
}
.legal-doc .legal-notice {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--bd);
  font-size: 13px;
  color: var(--tx3);
}
.legal-page .page-hero-inner,
.legal-page .legal-doc {
  opacity: 1;
  transform: none;
}
.legal-doc h2.legal-h2:first-child {
  margin-top: 0;
}
.legal-review {
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 24px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}
.pricing-tier {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pricing-tier.featured {
  border-color: var(--blue-border);
  background: var(--blue-glow);
}
.pricing-tier h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.pricing-tagline {
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 0 0 auto;
}
.pricing-note {
  font-size: 12px;
  color: var(--tx3);
  margin-top: 10px;
}
.pricing-tier .feature-list-plain {
  flex: 1 1 auto;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.faq-item {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 0 18px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.65;
  margin: 0;
}

/* Changelog */
.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.changelog-entry {
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 22px 24px;
}
.changelog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.changelog-date {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--tx3);
}
.changelog-tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--blue-dim);
  color: #93b4ff;
  border-radius: 100px;
  padding: 2px 10px;
}
.changelog-entry h3 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.changelog-entry p {
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.6;
  margin: 0;
}
.changelog-note {
  font-size: 13px;
  color: var(--tx3);
  margin-top: 24px;
}

/* People / roles */
.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.role-card {
  display: block;
  background: var(--bg1);
  border: 1px solid var(--bd);
  border-radius: var(--rlg);
  padding: 24px 22px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.role-card:hover {
  border-color: var(--bd2);
  background: var(--bg2);
}
.role-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin: 8px 0;
}
.role-card p {
  font-size: 14px;
  color: var(--tx2);
  line-height: 1.55;
  margin: 0;
}
.role-meta {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--tx3);
  letter-spacing: 0.5px;
}
.buyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

/* ══════════════════════════════
   RESPONSIVE (below 1024px)
══════════════════════════════ */
@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
    z-index: 502;
    position: relative;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 498;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s;
  }
  .site-nav.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav.nav-open .nav-backdrop:not([hidden]) {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 501;
    width: min(320px, 88vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 24px 32px;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    background: var(--bg1);
    border-left: 1px solid var(--bd);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.45);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.28s;
  }
  .site-nav.nav-open .nav-menu {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .site-nav.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .site-nav.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-sheet-label {
    display: block;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tx3);
    margin: 56px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bd);
  }
  .nav-links {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 12px;
    font-size: 17px;
    white-space: normal;
    border-radius: var(--r);
  }
  .nav-actions {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }
  .nav-actions .btn-ghost,
  .nav-actions .btn-nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 13px 18px;
    font-size: 15px;
  }
  .nav-actions .btn-nav-cta:hover {
    transform: none;
  }

  section {
    padding: 64px clamp(16px, 4vw, 24px);
  }
  footer {
    padding: 48px clamp(16px, 4vw, 24px) 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 100px clamp(16px, 4vw, 24px) 64px;
    min-height: auto;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    max-width: 100%;
    padding: 0 8px;
  }

  .fear-grid,
  .product-grid,
  .who-grid,
  .deploy-grid,
  .dev-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .paths-grid {
    grid-template-columns: 1fr;
  }
  .teams-grid {
    grid-template-columns: 1fr;
  }
  .entity-grid {
    grid-template-columns: 1fr;
  }
  .entity-arrow {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ea-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      var(--blue-light),
      transparent
    );
  }
  .fear-card {
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
  .product-card,
  .who-card {
    padding: 28px 22px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .compat-section {
    flex-direction: column;
    gap: 24px;
  }
  .compat-chips {
    justify-content: flex-start;
  }
  .code-block,
  .mcp-wrap {
    max-width: 100%;
    overflow-x: auto;
  }
  .mcp-body,
  .code-body {
    font-size: 12px;
    overflow-x: auto;
  }
  .dev-entry {
    flex-wrap: wrap;
    gap: 12px;
  }
  .dev-badge {
    margin-left: 0;
  }
  .cta-section .cta-btns {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .cta-section .btn-hero-primary,
  .cta-section .btn-hero-secondary {
    width: 100%;
  }

  .page-hero {
    padding: 96px clamp(16px, 4vw, 24px) 48px;
  }
  .page-hero .page-sub {
    font-size: 16px;
  }
  .page-main {
    padding: 0 clamp(16px, 4vw, 24px) 40px;
  }
  .prose h2 {
    font-size: 24px;
  }
  .def-block {
    padding: 20px;
  }
  .legal-doc {
    padding: 0 clamp(16px, 4vw, 24px) 64px;
  }
}

@media (min-width: 1024px) {
  .nav-backdrop {
    display: none !important;
  }
  .nav-sheet-label {
    display: none !important;
  }
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    max-height: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .nav-logo-svg {
    height: 24px;
    max-width: 38vw;
  }
  .paths-grid .path-card {
    padding: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .role-grid,
  .buyer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .role-grid {
    grid-template-columns: 1fr;
  }
}
