/* Onix — minimal dark landing. Same palette as the agentflow dashboard. */

:root {
  --bg:           #0a0a0a;
  --bg-elev:      #111111;
  --card:         #141414;
  --card-hover:   #1a1a1a;
  --border:       #1f1f1f;
  --border-strong:#2a2a2a;

  --ink:          #e8e8e8;
  --ink-dim:      #8a8a8a;
  --ink-faint:    #5a5a5a;

  --accent:       #ff6b35;
  --accent-soft:  rgba(255,107,53,0.12);

  --ok:           #4ade80;
  --bad:          #f87171;

  --max:          1400px;
  --gutter:        48px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Display serif for hero — the one elegant moment on the page */
.display-serif,
h1 {
  font-family: "Instrument Serif", "Times New Roman", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }

/* ─── Nav ────────────────────────────────────────────── */

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity .15s;
}
.brand:hover { opacity: 0.85; }
.foot .brand { font-size: 14px; }

.nav nav { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.nav nav a { color: var(--ink-dim); }
.nav nav a:hover { color: var(--ink); opacity: 1; }
.nav nav a.cta {
  color: #0a0a0a;
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 20px -8px rgba(255, 107, 53, 0.5);
  transition: opacity .15s, box-shadow .15s, transform .12s;
}
.nav nav a.cta:hover {
  opacity: 0.94;
  box-shadow: 0 8px 24px -8px rgba(255, 107, 53, 0.65);
  transform: translateY(-1px);
}

/* ─── Hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter) 120px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 72px;
  align-items: center;
  /* Fill the viewport so the next section is BELOW the fold on first load.
     88px ≈ the height of the top nav so the hero ends exactly at the viewport bottom. */
  min-height: calc(100vh - 88px);
}

/* Static orange aura removed — the moving grid shader is doing the work now. */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 72px; min-height: auto; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.22);
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,107,53,0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(255,107,53,0.08); }
}

h1 {
  font-size: clamp(58px, 7.5vw, 108px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  padding-right: 0.04em;
}

.lede {
  font-size: 19px;
  color: var(--ink-dim);
  max-width: 620px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.lede em { color: var(--ink); font-style: normal; font-weight: 500; }

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

.btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;     /* pill */
  font-size: 14.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--ink);
  transition: background .15s, opacity .15s, transform .15s, border-color .15s, box-shadow .15s;
}
.btn:hover { background: var(--card-hover); opacity: 1; transform: translateY(-1px); }
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 10px 32px -8px rgba(255, 107, 53, 0.55);
}
.btn.primary:hover { opacity: 0.96; box-shadow: 0 14px 38px -8px rgba(255, 107, 53, 0.68); }
.btn.ghost { background: transparent; padding: 13px 22px; }

/* Lemni-style circular arrow inside the pill — primary CTA only */
.btn .btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.18);
  color: #0a0a0a;
  font-size: 14px;
  margin-left: 12px;
  transition: transform .2s ease, background .15s;
}
.btn.primary:hover .btn-arrow { transform: translateX(2px); background: rgba(10, 10, 10, 0.28); }
.btn:not(.primary) .btn-arrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

/* Hero grid backdrop — STATIC grid of dim white lines, faded on all four edges.
   Two linear-gradient masks (vertical + horizontal) combined with `intersect`
   so the grid is only visible where BOTH masks are opaque — gives a soft
   rectangular fade frame around the grid. */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;

  /* vertical fade (top + bottom) */
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black 8%,  black 92%, transparent 100%);
  mask-composite: intersect;

  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black 8%,  black 92%, transparent 100%);
  -webkit-mask-composite: source-in;

  z-index: 0;
}

/* Animated CSS custom properties for the moving light source.
   Registered via @property so they can be interpolated by the animation. */
@property --gx { syntax: "<percentage>"; initial-value: 30%; inherits: false; }
@property --gy { syntax: "<percentage>"; initial-value: 30%; inherits: false; }

/* Illumination layer: a full-bleed orange radial gradient whose CENTER drifts.
   The mask is the GRID PATTERN itself (two crossed line-gradients composited
   together) — so orange only renders where a grid line exists. Empty cells
   stay completely dark, no bleed. */
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle 480px at var(--gx) var(--gy),
    rgba(255, 150, 90, 1.0)   0%,
    rgba(255, 107, 53, 0.75) 20%,
    rgba(255, 107, 53, 0.30) 45%,
    transparent              68%
  );

  /* Clip the orange to grid-line pixels only */
  -webkit-mask-image:
    linear-gradient(to right, black 1px, transparent 1px),
    linear-gradient(to bottom, black 1px, transparent 1px);
  -webkit-mask-size: 56px 56px;
  -webkit-mask-position: 0 0;
  mask-image:
    linear-gradient(to right, black 1px, transparent 1px),
    linear-gradient(to bottom, black 1px, transparent 1px);
  mask-size: 56px 56px;
  mask-position: 0 0;
  mask-composite: add;

  animation: grid-light 22s ease-in-out infinite;
}

@keyframes grid-light {
  0%, 100% { --gx: 22%; --gy: 28%; }
  25%      { --gx: 75%; --gy: 22%; }
  50%      { --gx: 62%; --gy: 75%; }
  75%      { --gx: 25%; --gy: 65%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid::after { animation: none; }
}


/* ─── Live agent terminal — right-side panel next to the headline ─── */
.hero-terminal {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0e0e0e 0%, #0a0a0a 100%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 24px 48px -16px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255, 107, 53, 0.04),
    0 0 60px -20px rgba(255, 107, 53, 0.25);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  line-height: 1.55;
}

.term-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.term-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.term-dot.red    { background: #ff5f56; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green  { background: #27c93f; }
.term-title {
  margin-left: 10px;
  color: var(--ink-faint);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

.term-body {
  padding: 16px 18px 18px;
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 100%);
}
@media (max-width: 900px) {
  .term-body { height: 240px; }
}

.term-line {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: term-in 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.term-line .glyph {
  color: var(--accent);
  width: 12px;
  flex-shrink: 0;
}
.term-line .glyph.ok   { color: var(--ok); }
.term-line .glyph.warn { color: var(--warn, #fbbf24); }
.term-line .tag {
  color: var(--ink-dim);
  flex-shrink: 0;
}
.term-line .msg {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
}
.term-line .msg .accent { color: var(--accent); }

.term-cursor {
  display: inline-block;
  width: 6px; height: 11px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: -1px;
  animation: term-cursor 1s steps(2) infinite;
}

@keyframes term-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes term-cursor {
  50% { opacity: 0; }
}

@media (max-width: 900px) {
  .term-body { height: 240px; }
}

/* ─── Section heads ──────────────────────────────────── */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px var(--gutter);
  position: relative;
}
.section-dark { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: none; }
.section-dark .section-head, .section-dark .steps { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 44px; max-width: 680px; }
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
/* Match "run" in the hero — Instrument Serif italic, orange */
.section-head h2 .accent {
  font-family: "Instrument Serif", "Times New Roman", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.01em;
  padding-right: 0.04em;
}
.section-head .sub {
  color: var(--ink-dim);
  font-size: 17px;
  margin: 14px 0 0;
}

/* ─── Flow visualizer (replaces the old 3-card section) ─── */

.flow-section { padding-bottom: 100px; }

.flow {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; gap: 24px; }
}

/* Left-side use-case picker */
.flow-cats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flow-cat {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  color: var(--ink-dim);
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.flow-cat:hover { color: var(--ink); background: rgba(255, 255, 255, 0.02); }
.flow-cat.active {
  background: rgba(255, 107, 53, 0.04);
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.15) inset,
              0 10px 28px -16px rgba(255, 107, 53, 0.45);
}
.flow-cat.active .flow-cat-label { color: var(--ink); }
.flow-cat-label { font-size: 15px; color: var(--ink); }
.flow-cat-label strong { font-weight: 600; }
.flow-cat-sub { font-size: 13px; color: var(--ink-faint); margin-top: 3px; }

/* SVG canvas */
.flow-canvas {
  position: relative;
  width: 100%;
}
.flow-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Connection lines */
.flow-svg .rail {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.flow-svg .rail-dim { stroke: rgba(255, 255, 255, 0.18); }

/* Flowing dashed pulse along the orange agent rails */
.flow-svg .rail-flow {
  stroke-dasharray: 4 8;
  stroke-width: 1.6;
  animation: rail-flow 1.6s linear infinite;
}
@keyframes rail-flow { to { stroke-dashoffset: -24; } }

/* Dashed tool branches under the agent */
.flow-svg .tool-line {
  fill: none;
  stroke: rgba(255, 107, 53, 0.32);
  stroke-width: 1.2;
  stroke-dasharray: 3 5;
  stroke-linecap: round;
  animation: tool-flow 2.4s linear infinite;
}
@keyframes tool-flow { to { stroke-dashoffset: -16; } }

@media (prefers-reduced-motion: reduce) {
  .flow-svg .rail-flow,
  .flow-svg .tool-line { animation: none; }
}

/* Node text styling */
.flow-svg .node-eyebrow {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  fill: var(--ink-faint);
}
.flow-svg .node-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  fill: var(--ink);
}
.flow-svg .node-sub {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  fill: var(--ink-faint);
}
.flow-svg .agent-mono {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 18px;
  font-weight: 700;
  fill: #0a0a0a;
  text-anchor: middle;
}
.flow-svg .tool-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  fill: var(--ink-dim);
  text-anchor: middle;
}
.flow-svg .tool-icon-letter {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
  fill: #ffffff;
  text-anchor: middle;
}

/* subtle node-hover lift */
.flow-svg .tool rect {
  transition: stroke .15s, fill .15s;
}
.flow-svg .tool:hover rect {
  stroke: rgba(255, 107, 53, 0.45);
  fill: #1a1a1a;
}

/* ─── Steps ──────────────────────────────────────────── */

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
}
.step-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.steps h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.steps p {
  font-size: 14.5px;
  color: var(--ink-dim);
  margin: 0;
}

/* ─── Form ───────────────────────────────────────────── */

.form {
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }

.form label {
  display: block;
  margin-bottom: 14px;
}
.form label > span {
  display: block;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.form input, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  padding: 11px 13px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 14.5px;
  resize: vertical;
  transition: border-color .15s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.form-status {
  font-size: 13.5px;
  color: var(--ink-dim);
}
.form-status.ok  { color: var(--ok); }
.form-status.err { color: var(--bad); }

.form-fine {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 18px 0 0;
}

/* ─── Footer ─────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-faint);
}
.foot a { color: var(--ink-dim); }
.foot-meta { display: flex; gap: 18px; align-items: center; }

/* ─── Pricing (agent-model revamp) ───────────────────── */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1020px;
}
@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 50px -30px rgba(255,107,53,0.45);
}
.price-tag {
  position: absolute; top: -11px; right: 18px;
  background: var(--accent); color: #0a0a0a;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.price-name {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12.5px; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.price-amt { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.price-amt span { font-size: 15px; color: var(--ink-dim); font-weight: 500; }
.price-amt.talk { font-size: 28px; color: var(--accent); line-height: 1.5; }
.price-card ul {
  list-style: none; padding: 0; margin: 18px 0 26px;
  color: var(--ink-dim); font-size: 14.5px; flex: 1;
}
.price-card ul li { padding: 5px 0 5px 22px; position: relative; }
.price-card ul li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent); font-size: 13px;
}
.price-btn { justify-content: center; width: 100%; }

/* ───────────────────────────────────────────────────────
   Mobile polish — collapse nav, tighten spacing (≤720px)
   Root cause of the broken header: .nav had no mobile rules,
   so 4 links + CTA + brand overflowed and wrapped.
─────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  :root { --gutter: 20px; }

  /* Nav → brand + primary CTA only. Section links reachable by scroll. */
  .nav { padding: 15px var(--gutter); }
  .brand { font-size: 14px; }
  .nav nav { gap: 0; }
  .nav nav a:not(.cta) { display: none; }
  .nav nav a.cta { padding: 9px 16px; font-size: 13px; white-space: nowrap; }

  /* Sections: trim oversized padding */
  .section { padding: 58px var(--gutter); }
  .section-head { margin-bottom: 30px; }
  .section-head .sub { font-size: 15.5px; }
  .lede { font-size: 16.5px; }

  /* Flow diagram SVG is unreadable at phone width — it's decorative; the
     use-case list above carries the meaning. Hide it, keep the list. */
  .flow-canvas { display: none; }
  .flow { gap: 0; }

  /* Hero CTAs: clean full-width stack instead of a cramped/wrapping row */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 440px) {
  h1 { font-size: 46px; }
  .section-head h2 { font-size: 28px; }
}

/* ─── Slack intake mock (hero right panel) ────────────────────────────────
   Replaces the old generated terminal feed. Reuses .hero-terminal +
   .term-chrome; only the body is new. Accent stays CTA/flag-only per the
   existing token roles — no orange surfaces. */

.slack-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  overflow: hidden;
}

.slack-msg { display: flex; gap: 10px; align-items: flex-start; }
.slack-msg.dim { opacity: .55; }

.slack-avatar {
  flex: 0 0 28px; height: 28px; border-radius: 6px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}

.slack-content { min-width: 0; flex: 1; }

.slack-meta { display: flex; align-items: center; gap: 7px; margin-bottom: 3px; }
.slack-name { color: var(--ink); font-weight: 600; font-size: 13.5px; }
.slack-badge {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-dim);
  border: 1px solid var(--border-strong);
  border-radius: 3px; padding: 1px 4px;
}
.slack-time { color: var(--ink-faint); font-size: 11.5px; }
.slack-text { color: var(--ink-dim); }
.slack-text strong { color: var(--ink); font-weight: 600; }

.slack-card {
  margin-top: 9px;
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--accent);
  border-radius: 6px;
  background: var(--bg-elev);
  padding: 11px 13px;
  display: flex; flex-direction: column; gap: 5px;
}
.slack-field { display: flex; gap: 10px; font-size: 12.5px; }
.slack-field span {
  flex: 0 0 108px; color: var(--ink-faint);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase;
  padding-top: 2px;
}
.slack-field b { color: var(--ink); font-weight: 500; }

.slack-flag {
  margin-top: 4px; padding-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: .02em;
}

.slack-actions { display: flex; gap: 7px; margin-top: 10px; flex-wrap: wrap; }
.slack-btn {
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 5px 11px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-dim);
  background: var(--card);
}
.slack-btn.primary {
  background: var(--ok); border-color: var(--ok); color: #0a0a0a; font-weight: 600;
}

@media (max-width: 860px) {
  .slack-field { flex-direction: column; gap: 1px; }
  .slack-field span { flex: none; }
  .slack-body { font-size: 13px; gap: 14px; }
}

/* ─── Engagement section (replaces public pricing) ───────────────────────── */
.scope-grid { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 900px; margin-inline: auto; }
.section-cta { display: flex; justify-content: center; margin-top: 38px; }
@media (max-width: 760px) { .scope-grid { grid-template-columns: 1fr; } }
