/* ============================================================
   PRIME — marketing design system v3 "blueprint nuit"
   DNA (from the mesa.dev style study, transposed to dark blue):
   - technical paper, not screen: deep navy page, barely-lighter cards,
     0.8px hairlines, numbered sections (1.0 / 2.0 …), mono uppercase labels
   - ZERO border-radius, ZERO drop shadows — depth comes from hairlines
     and the bg/card contrast only
   - ONE action color (electric blue) — no gradients, no second accent
     except a rare terracotta in schematics
   - headings weight 400 with a final period — hierarchy by size + air
   - the product IS the visual: simulated mini-interfaces + schematic
     SVG charts, no stock imagery, no emoji
   ============================================================ */

:root {
  --ink-bg:          #0a1020;  /* page (deep navy — never pure black) */
  --ink-bg-alt:      #0d1528;  /* alternate panels / hovers */
  --ink-card:        #0f1830;  /* cards + code windows */
  --ink-text:        #e9eefb;  /* primary text (never pure white) */
  --ink-text-2:      #b6c2dd;  /* secondary */
  --ink-muted:       #7d8bad;  /* tertiary / captions */
  --ink-action:      #4d8dff;  /* THE single action color */
  --ink-action-deep: #3a76e0;  /* pressed/hover darken */
  --ink-tape:        #1c2a4d;  /* decorative "tape" steel-blue */
  --ink-rust:        #c96a4d;  /* rare schematic accent (terracotta) */

  --hairline:        0.8px;
  --line:            rgba(141, 166, 214, 0.22); /* card borders */
  --line-strong:     rgba(141, 166, 214, 0.34); /* section separators */
  --line-soft:       rgba(141, 166, 214, 0.10);

  /* code window syntax (GitHub-dark-ish on --ink-card) */
  --syn-text:        #c9d4ea;
  --syn-keyword:     #ff7b72;
  --syn-string:      #a5d6ff;
  --syn-function:    #d2a8ff;
  --syn-constant:    #79c0ff;
  --syn-comment:     #6e7e9e;
  --traffic-red:     #ff5f57;
  --traffic-yellow:  #febc2e;
  --traffic-green:   #28c840;

  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --container: 1088px;
  --header-h: 88px;
  --t: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0 !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  background: var(--ink-bg);
  color: var(--ink-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(77, 141, 255, 0.30); }

a { color: inherit; text-decoration: none; transition: color var(--t); }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }

/* ---------------- typography scale (measured on the reference) -------- */

h1 { font-size: 48px; font-weight: 400; line-height: 1.45; letter-spacing: -0.01em; }
h2 { font-size: 30px; font-weight: 400; line-height: 1.35; letter-spacing: -0.005em; }
h3 { font-size: 20px; font-weight: 500; line-height: 1.4; }
.lede { font-size: 17px; line-height: 1.65; color: var(--ink-text-2); max-width: 56ch; }
p { color: var(--ink-text-2); }
strong { color: var(--ink-text); font-weight: 500; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

/* ---------------- header ---------------------------------------------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  background: var(--ink-bg);              /* opaque — no blur, per the DNA */
  border-bottom: var(--hairline) solid var(--line-soft);
}
.site-header .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-dot {
  width: 26px; height: 26px; flex: none;
  background: var(--ink-action);
  position: relative;
}
.brand-dot::after {                        /* square mark with a notch — blueprint stamp */
  content: ""; position: absolute; right: -1px; bottom: -1px;
  width: 9px; height: 9px; background: var(--ink-bg);
}
.brand-name { font-weight: 500; font-size: 17px; letter-spacing: 0.01em; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-right: auto; margin-left: 36px; }
.site-nav a { font-size: 15px; color: var(--ink-text-2); }
.site-nav a:hover, .site-nav a.active { color: var(--ink-text); }

/* ---------------- buttons (radius 0, one color) ------------------------ */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 400;
  padding: 10px 20px;
  background: var(--ink-action); color: #fff;
  border: var(--hairline) solid var(--ink-action);
  transition: background var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn:hover { background: var(--ink-action-deep); border-color: var(--ink-action-deep); color: #fff; }
.btn .arr { font-family: var(--font-mono); }
.btn-secondary {
  background: transparent; color: var(--ink-action);
  border: var(--hairline) solid var(--ink-action);
}
.btn-secondary:hover { background: rgba(77, 141, 255, 0.10); color: var(--ink-action); }
.btn-sm { padding: 6px 12px; }
.btn-ghost {
  background: var(--ink-card); color: var(--ink-text);
  border: var(--hairline) solid var(--line);
}
.btn-ghost:hover { background: var(--ink-bg-alt); }

/* ---------------- section separator (signature) ------------------------ */

.section { padding: 96px 0 0; }
.section-rule {
  display: flex; align-items: baseline;
  border-bottom: var(--hairline) solid var(--line-strong);
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.section-rule .num {
  font-family: var(--font-mono); font-size: 14px; color: var(--ink-text);
  padding-right: 20px;
  border-right: var(--hairline) solid var(--line-strong);
}
.section-rule .label {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
  padding-left: 20px;
}
.section > .container > h2 { max-width: 30ch; }
.section-sub { margin-top: 14px; }

/* ---------------- hero ------------------------------------------------- */

.hero { padding: calc(var(--header-h) + 72px) 0 32px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px; align-items: start;
}
.hero h1 { margin-bottom: 24px; }
.hero .lede { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); }

/* ---------------- product window (chrome + simulated UI) --------------- */

.window {
  background: var(--ink-card);
  border: var(--hairline) solid var(--line);
}
.window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: var(--hairline) solid var(--line);
}
.window-bar .dot { width: 10px; height: 10px; border-radius: 50% !important; }
.window-bar .dot.r { background: var(--traffic-red); }
.window-bar .dot.y { background: var(--traffic-yellow); }
.window-bar .dot.g { background: var(--traffic-green); }
.window-bar .title {
  margin-left: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.window-tabs { display: flex; border-bottom: var(--hairline) solid var(--line); }
.window-tabs .tab {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  padding: 9px 16px; color: var(--ink-muted);
  border-right: var(--hairline) solid var(--line);
}
.window-tabs .tab.on { color: var(--ink-text); background: var(--ink-bg-alt); }

/* simulated directive feed rows */
.sim-feed { display: flex; flex-direction: column; }
.sim-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 16px;
  border-bottom: var(--hairline) solid var(--line-soft);
}
.sim-item:last-child { border-bottom: none; }
.sim-kind {
  flex: none; margin-top: 2px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 7px;
  border: var(--hairline) solid var(--line); color: var(--ink-muted);
}
.sim-kind.deal { color: var(--ink-action); border-color: rgba(77, 141, 255, 0.45); }
.sim-kind.act { color: var(--ink-rust); border-color: rgba(201, 106, 77, 0.45); }
.sim-text { font-size: 13.5px; line-height: 1.5; color: var(--ink-text-2); }
.sim-text b { color: var(--ink-text); font-weight: 500; }
.sim-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); margin-top: 3px; }

/* simulated decision card (the human gate) */
.sim-question {
  margin: 12px 16px 16px;
  border: var(--hairline) solid rgba(77, 141, 255, 0.45);
  background: var(--ink-bg-alt);
  padding: 14px 16px;
}
.sim-question .q-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-action); margin-bottom: 8px;
}
.sim-question .q-text { font-size: 13.5px; color: var(--ink-text); line-height: 1.5; }
.sim-question .q-actions { display: flex; gap: 8px; margin-top: 12px; }
.sim-question .q-btn {
  font-size: 12.5px; padding: 6px 12px;
  background: var(--ink-action); color: #fff;
}
.sim-question .q-btn.alt { background: transparent; color: var(--ink-text-2); border: var(--hairline) solid var(--line); }

/* ---------------- bento grid (cards share hairlines, no gap) ----------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: var(--hairline) solid var(--line);
  background: var(--line);                 /* shared hairlines via 0.8px gaps */
  gap: var(--hairline);
}
.bento > .cell { background: var(--ink-card); padding: 28px; min-width: 0; }
.cell-4 { grid-column: span 4; }
.cell-3 { grid-column: span 3; }
.cell-2 { grid-column: span 2; }
.cell-6 { grid-column: span 6; }
.cell .eyebrow { margin-bottom: 14px; }
.cell h3 { margin-bottom: 10px; }
.cell p { font-size: 14.5px; line-height: 1.6; }
.cell .demo { margin-top: 22px; }

/* ---------------- schematic diagrams + charts -------------------------- */

.schematic { width: 100%; height: auto; }
.schematic text {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  fill: var(--ink-muted);
}
.schematic .lbl-on { fill: var(--ink-text); }
.schematic .lbl-blue { fill: var(--ink-action); }
.schematic .lbl-rust { fill: var(--ink-rust); }
.schematic .stroke { stroke: var(--ink-muted); stroke-width: 1; fill: none; }
.schematic .stroke-soft { stroke: var(--line); stroke-width: 1; fill: none; }
.schematic .stroke-blue { stroke: var(--ink-action); stroke-width: 1.2; fill: none; }
.schematic .stroke-rust { stroke: var(--ink-rust); stroke-width: 1.2; fill: none; }
.schematic .dotted { stroke-dasharray: 2 4; }
.schematic .node { fill: var(--ink-card); stroke: var(--ink-muted); stroke-width: 1; }
.schematic .node-blue { fill: var(--ink-card); stroke: var(--ink-action); stroke-width: 1.2; }
.schematic .pip { fill: var(--ink-action); }
.schematic .pip-dim { fill: var(--ink-muted); }
.schematic .fill-blue-soft { fill: rgba(77, 141, 255, 0.12); }

@keyframes pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.schematic .live { animation: pulse 2.4s ease-in-out infinite; }

.chart-caption {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.chart-caption .vs { color: var(--ink-rust); }

/* ---------------- stats ------------------------------------------------ */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--hairline); background: var(--line); border: var(--hairline) solid var(--line); }
.stat { background: var(--ink-card); padding: 30px 28px; }
.stat .value { font-family: var(--font-mono); font-size: 52px; line-height: 1.1; color: var(--ink-text); }
.stat .value .unit { font-size: 24px; color: var(--ink-muted); }
.stat .what { font-size: 13.5px; color: var(--ink-text-2); margin-top: 12px; line-height: 1.5; }
.stat .vs { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-muted); margin-top: 8px; }
.stat .vs::before { content: "vs. "; color: var(--ink-rust); }

/* ---------------- comparison table ------------------------------------- */

.compare { width: 100%; border-collapse: collapse; border: var(--hairline) solid var(--line); }
.compare th, .compare td {
  text-align: left; padding: 13px 18px;
  border-bottom: var(--hairline) solid var(--line-soft);
  font-size: 14px;
}
.compare th {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 400; color: var(--ink-muted);
  border-bottom: var(--hairline) solid var(--line);
}
.compare th:first-child { width: 38%; }
.compare td { color: var(--ink-text-2); }
.compare td.yes { color: var(--ink-action); font-family: var(--font-mono); }
.compare td.no { color: var(--ink-muted); font-family: var(--font-mono); }
.compare tr:last-child td { border-bottom: none; }
.compare .col-prime { background: rgba(77, 141, 255, 0.05); }

/* ---------------- use cases accordion ----------------------------------- */

.usecases { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 48px; align-items: start; }
.uc-list { border-top: var(--hairline) solid var(--line); }
.uc-item { border-bottom: var(--hairline) solid var(--line); }
.uc-head {
  width: 100%; display: flex; align-items: baseline; gap: 18px;
  padding: 18px 4px; text-align: left;
  transition: background var(--t);
}
.uc-head:hover { background: var(--ink-bg-alt); }
.uc-head .idx { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); }
.uc-head .ttl { font-size: 17px; color: var(--ink-text); font-weight: 400; }
.uc-head .plus { margin-left: auto; font-family: var(--font-mono); color: var(--ink-muted); transition: transform var(--t); }
.uc-item.open .plus { transform: rotate(45deg); }
.uc-body { display: none; padding: 0 4px 20px 46px; font-size: 14.5px; line-height: 1.65; color: var(--ink-text-2); }
.uc-item.open .uc-body { display: block; }
.uc-visual { position: sticky; top: calc(var(--header-h) + 24px); }

/* ---------------- pricing ----------------------------------------------- */

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--hairline); background: var(--line); border: var(--hairline) solid var(--line); }
.price-card { background: var(--ink-card); padding: 30px 28px; display: flex; flex-direction: column; }
.price-card .tier { font-size: 18px; font-weight: 500; }
.price-card .tier-sub { font-size: 13.5px; color: var(--ink-muted); margin-top: 4px; }
.price-card .amount { font-family: var(--font-mono); font-size: 44px; margin: 22px 0 4px; }
.price-card .amount .per { font-size: 14px; color: var(--ink-muted); }
.price-card ul { list-style: none; margin: 18px 0 26px; display: flex; flex-direction: column; gap: 9px; }
.price-card li { font-size: 14px; color: var(--ink-text-2); display: flex; gap: 10px; }
.price-card li::before { content: "✓"; font-family: var(--font-mono); color: var(--ink-action); }
.price-card .btn, .price-card .btn-secondary { margin-top: auto; justify-content: center; }

/* ---------------- FAQ ---------------------------------------------------- */

.faq { max-width: 720px; }
.faq-item { border-bottom: var(--hairline) solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 18px 4px; text-align: left; font-size: 17px; color: var(--ink-text);
}
.faq-q:hover { background: var(--ink-bg-alt); }
.faq-q .plus { font-family: var(--font-mono); color: var(--ink-muted); transition: transform var(--t); }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 4px 20px; font-size: 14.5px; line-height: 1.65; color: var(--ink-text-2); max-width: 62ch; }
.faq-item.open .faq-a { display: block; }

/* ---------------- final CTA + footer ------------------------------------ */

.final-cta { padding: 120px 0 96px; text-align: center; }
.final-cta h2 { margin: 0 auto 26px; }

.site-footer { border-top: var(--hairline) solid var(--line-strong); padding-top: 64px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2fr)); gap: 40px; }
.footer-brand .tagline { display: flex; align-items: center; gap: 10px; font-size: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--ink-muted); margin-top: 10px; max-width: 34ch; }
.footer-col .head { font-size: 14.5px; font-weight: 500; margin-bottom: 16px; }
.footer-col a {
  display: block; margin-bottom: 11px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-muted);
}
.footer-col a:hover { color: var(--ink-text); }
.footer-col a .ext { font-size: 11px; }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 56px; padding: 18px 0;
  border-top: var(--hairline) solid var(--line-soft);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-muted);
}
.wordmark {
  margin-top: 8px;
  font-weight: 700; line-height: 0.78;
  font-size: clamp(120px, 26vw, 390px);
  letter-spacing: -0.02em;
  text-align: center;
  user-select: none;
  background-image:
    linear-gradient(180deg, var(--ink-bg) 0%, rgba(10, 16, 32, 0) 42%),
    radial-gradient(120% 90% at 18% 100%, #16306b 0%, rgba(22, 48, 107, 0) 55%),
    radial-gradient(110% 95% at 78% 100%, #1b4fa3 0%, rgba(27, 79, 163, 0) 58%),
    radial-gradient(70% 60% at 52% 88%, rgba(77, 141, 255, 0.85) 0%, rgba(77, 141, 255, 0) 60%),
    repeating-linear-gradient(105deg, rgba(141, 166, 214, 0.18) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #0d1a3a 0%, #14306e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(14%);
}

/* ---------------- deck (slides reuse the same DNA) ----------------------- */

.deck { height: 100dvh; overflow-y: auto; scroll-snap-type: y mandatory; }
.slide {
  min-height: 100dvh; scroll-snap-align: start;
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 0;
  border-bottom: var(--hairline) solid var(--line-soft);
}
.slide .container { width: 100%; }
.slide h2 { font-size: 38px; max-width: 26ch; }
.slide .lede { margin-top: 18px; }
.deck-nav {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 40;
  display: flex; flex-direction: column; gap: 10px;
}
.deck-nav a { width: 7px; height: 7px; background: var(--line-strong); }
.deck-nav a.on { background: var(--ink-action); }
.deck-foot {
  position: fixed; left: 24px; bottom: 18px; z-index: 40;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-muted);
}

/* ---------------- legal / prose pages ------------------------------------ */

.prose { max-width: 720px; padding: calc(var(--header-h) + 56px) 24px 96px; margin: 0 auto; }
.prose h1 { font-size: 38px; margin-bottom: 10px; }
.prose .updated { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 40px; }
.prose h2 { font-size: 22px; margin: 40px 0 12px; }
.prose h3 { font-size: 17px; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 15px; line-height: 1.7; color: var(--ink-text-2); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 20px; }
.prose a { color: var(--ink-action); }
.prose code { font-family: var(--font-mono); font-size: 13px; background: var(--ink-card); border: var(--hairline) solid var(--line-soft); padding: 1px 5px; }
.prose pre { background: var(--ink-card); border: var(--hairline) solid var(--line); padding: 16px; overflow-x: auto; margin-bottom: 14px; }
.prose pre code { background: none; border: none; padding: 0; font-size: 13px; line-height: 1.6; color: var(--syn-text); }
.prose table { width: 100%; border-collapse: collapse; border: var(--hairline) solid var(--line); margin: 16px 0; }
.prose th, .prose td { padding: 10px 14px; font-size: 13.5px; border-bottom: var(--hairline) solid var(--line-soft); text-align: left; }
.prose th { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); font-weight: 400; }
.prose blockquote { border-left: var(--hairline) solid var(--ink-action); padding-left: 16px; margin: 16px 0; }

/* ---------------- responsive --------------------------------------------- */

@media (max-width: 960px) {
  .hero-grid, .usecases { grid-template-columns: 1fr; gap: 40px; }
  .uc-visual { position: static; }
  .bento { grid-template-columns: 1fr 1fr; }
  .cell-4, .cell-3, .cell-2, .cell-6 { grid-column: span 2; }
  .stats, .pricing { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .slide h2 { font-size: 27px; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .site-nav { display: none; }
  .section { padding-top: 72px; }
  .bento { grid-template-columns: 1fr; }
  .cell-4, .cell-3, .cell-2, .cell-6 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare th, .compare td { padding: 10px 10px; font-size: 12px; }
  .stat .value { font-size: 40px; }
  .deck-nav { display: none; }
}

/* ============================================================
   Connectors logo row — uniform line marks (Tabler brand set,
   one shared stroke-width so every logo carries identical weight)
   ============================================================ */
.logo-row {
  display: flex; flex-wrap: wrap; gap: var(--hairline);
  background: var(--line); border: var(--hairline) solid var(--line);
  margin-top: 44px;
}
.logo-chip {
  flex: 1 1 150px; background: var(--ink-card);
  display: flex; flex-direction: column; align-items: flex-start; gap: 7px;
  padding: 22px 20px; min-width: 0;
}
.logo-ic {
  width: 28px; height: 28px;
  fill: none; stroke: var(--ink-text);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; /* uniform weight for ALL marks */
}
.logo-chip:hover .logo-ic { stroke: var(--ink-action); }
.logo-name { font-weight: 500; font-size: 14px; color: var(--ink-text); }
.logo-kind {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-muted);
}
.logo-foot { margin-top: 16px; font-size: 12.5px; color: var(--ink-muted); }

/* ============================================================
   "Request access" lead modal
   ============================================================ */
.access-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(4, 6, 12, 0.74);
}
.access-modal.show { display: flex; }
.access-card {
  position: relative; width: 100%; max-width: 440px;
  background: var(--ink-card); border: var(--hairline) solid var(--line-strong); padding: 32px 30px;
}
.access-close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  color: var(--ink-muted); font-size: 24px; line-height: 1; cursor: pointer;
}
.access-close:hover { color: var(--ink-text); }
.access-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-action); margin-bottom: 10px;
}
.access-title { margin: 0 0 8px; }
.access-sub { font-size: 13.5px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 20px; }
.access-form { display: flex; flex-direction: column; gap: 10px; }
.access-in {
  width: 100%; background: var(--ink-bg); border: var(--hairline) solid var(--line);
  color: var(--ink-text); padding: 11px 13px; font: inherit; font-size: 14px;
}
.access-in:focus { outline: none; border-color: var(--ink-action); }
textarea.access-in { resize: vertical; }
.access-submit { margin-top: 4px; }
.access-msg { font-size: 13px; min-height: 18px; line-height: 1.5; }
.access-msg.ok { color: var(--traffic-green); }
.access-msg.err { color: var(--traffic-red); }
