/* ============================================================
   arcdoq.com — marketing landing (static, zero JS).
   "Launch Control" implemented straight from docs/DESIGN.md:
   instrument-dark, OKLCH, tinted cool-violet neutrals. The
   teal->purple->pink brand gradient + the glowing live-dot mean
   exactly ONE thing: a site is LIVE. amber = in progress, red =
   error, steel = a calm positive (verified) that is NOT live,
   tinted neutrals everywhere else. No gradient text. The arc
   motif echoes the name (the upward motion of going live).
   Tokens mirror src/styles/app.css; DESIGN.md is the source of truth.
   ============================================================ */

:root {
  /* Brand gradient hues + the LIVE composite (the only sanctioned gradient) */
  --teal:   oklch(0.82 0.130 184);
  --purple: oklch(0.66 0.205 296);
  --pink:   oklch(0.72 0.180 16);
  --live-gradient: linear-gradient(96deg, var(--teal) 0%, var(--purple) 52%, var(--pink) 100%);

  /* Canvas + elevation */
  --canvas:     oklch(0.150 0.020 285);
  --canvas-top: oklch(0.168 0.022 285);
  --surface-1:  oklch(0.190 0.020 285);
  --surface-2:  oklch(0.224 0.020 285);
  --surface-3:  oklch(0.265 0.021 285);

  /* Hairlines */
  --line:        oklch(0.300 0.018 285);
  --line-soft:   oklch(0.245 0.016 285);
  --line-strong: oklch(0.360 0.020 285);

  /* Ink */
  --ink:   oklch(0.965 0.006 285);
  --ink-2: oklch(0.820 0.012 285);
  --ink-3: oklch(0.660 0.014 285);
  --ink-4: oklch(0.530 0.014 285);

  /* State accents */
  --amber:     oklch(0.80 0.135 78);
  --amber-dim: oklch(0.58 0.095 78);
  --red:       oklch(0.66 0.170 22);
  --red-tint:  oklch(0.300 0.055 22);
  --red-line:  oklch(0.420 0.085 22);
  --focus:     oklch(0.78 0.150 296);

  /* A calm positive (verified / available): steel, low chroma. NOT live. */
  --steel:      oklch(0.78 0.045 210);
  --steel-dim:  oklch(0.62 0.040 210);
  --steel-line: oklch(0.45 0.045 210);
  --steel-wash: oklch(0.27 0.035 210);

  /* Operational-health success: a webhook DELIVERED (DESIGN.md scoped extension).
     Flat green, never glows, never a gradient; hue 152 sits clear of the teal live-stop
     so the brand gradient + live-dot still mean ONLY "a site is live". */
  --green:     oklch(0.74 0.130 152);
  --green-dim: oklch(0.52 0.090 152);
  --select-fill: oklch(0.78 0.150 296 / 0.14);

  --radius:    11px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);

  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.006em;
}

/* faint instrument bloom anchored to the top of the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(112% 64% at 12% -6%, oklch(0.33 0.105 296 / 0.55), transparent 60%),
    radial-gradient(74% 46% at 88% -2%, oklch(0.35 0.090 200 / 0.42), transparent 62%),
    radial-gradient(58% 40% at 60% -6%, oklch(0.33 0.080 16 / 0.26), transparent 58%);
}

.wrap { position: relative; z-index: 1; }
.bound { max-width: var(--maxw); margin: 0 auto; padding-inline: 28px; }

a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-feature-settings: normal; letter-spacing: 0; }
.scheme { color: var(--ink-4); }
.soft { color: var(--ink-3); }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 3px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: background .22s var(--ease-quint), border-color .22s var(--ease-quint),
    color .22s var(--ease-quint), transform .22s var(--ease-quint);
}
.btn:active { transform: translateY(0.5px); }
.btn-primary { background: var(--ink); color: oklch(0.16 0.02 285); font-weight: 700; }
.btn-primary:hover { background: oklch(0.99 0.006 285); }
.btn-ghost { background: transparent; color: var(--ink-2); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); border-color: var(--line-strong); }
.btn-lg { height: 46px; padding: 0 22px; font-size: 15px; }

/* ============================================================
   Nav
   ============================================================ */
.site-nav { height: 68px; display: flex; align-items: center; justify-content: space-between; }
.wordmark {
  font-weight: 800; font-size: 19px; letter-spacing: -0.05em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
}
.mark-arc { width: 18px; height: 18px; display: inline-block; flex: none; }
.site-nav-links { display: flex; align-items: center; gap: 4px; }
.navlink {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  padding: 8px 12px; border-radius: 7px;
  transition: color .2s var(--ease-quint), background .2s var(--ease-quint);
}
.navlink:hover { color: var(--ink); background: var(--surface-1); }
.navlink.cta { color: var(--ink); border: 1px solid var(--line); }
.navlink.cta:hover { border-color: var(--line-strong); background: var(--surface-2); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 72px 0 80px; overflow: hidden; }
.hero-arc {
  position: absolute; right: -6%; top: 4%;
  width: min(640px, 60%); height: 480px; pointer-events: none; opacity: 0.9;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-3);
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  background: oklch(0.19 0.02 285 / 0.6);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--live-gradient);
  box-shadow: 0 0 0 3px oklch(0.66 0.205 296 / 0.18);
}
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 70px);
  line-height: 0.98; letter-spacing: -0.038em; font-weight: 800;
  max-width: 17ch; color: var(--ink);
}
.hero h1 .ready-dot {
  display: inline-block; width: 0.165em; height: 0.165em; margin-left: 0.05em;
  border-radius: 50%; background: var(--live-gradient); vertical-align: -0.02em;
  box-shadow: 0 0 0 0.045em oklch(0.66 0.205 296 / 0.20), 0 0 0.5em oklch(0.72 0.180 16 / 0.55);
}
.hero p.sub {
  margin: 26px 0 0; max-width: 60ch;
  font-size: 17.5px; line-height: 1.5; color: var(--ink-2); font-weight: 400;
}
.hero-cta { display: flex; gap: 12px; margin-top: 38px; align-items: center; flex-wrap: wrap; }
.hero-meta { margin-top: 40px; display: flex; gap: 26px; flex-wrap: wrap; font-size: 13px; color: var(--ink-4); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .tick { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-4); }

/* ============================================================
   Running on arcdoq — the two real teams. A quiet, unnumbered
   logo strip under the hero. Logos sit MONOCHROME (grayscale +
   dimmed) at rest and bloom to full color on hover/focus: the
   single place color appears off-"live", gated behind a deliberate
   hover, so THE INVIOLABLE RULE holds. No container/box — the
   logos float on the canvas, anchored only by the muted label.
   ============================================================ */
.partners { padding-top: 52px; text-align: center; }
.partners-label {
  margin: 0 0 28px; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-3);
}
.partner-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 5.5vw, 60px); flex-wrap: wrap;
}
.partner-logo {
  display: block; width: auto;
  filter: grayscale(1); opacity: 0.6;
  transition: filter .32s var(--ease-quint), opacity .32s var(--ease-quint);
}
.partner-logo:hover, .partner-logo:focus-visible { filter: grayscale(0); opacity: 1; }
/* heights tuned to each logo's MARK (not its wordmark), so they differ on purpose */
.partner-logo.nimbarc { height: 30px; }
.partner-logo.orbitalx { height: 27px; }
.partner-divider { flex: none; width: 1px; height: 30px; background: var(--line); }

/* ============================================================
   Section rhythm
   ============================================================ */
.section { padding-top: 92px; }
.section-tag { display: flex; align-items: baseline; gap: 14px; padding-top: 16px; margin-bottom: 22px; }
.section-tag .idx { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); }
.section-tag .lbl {
  font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);
}
.section-tag .rule { flex: 1; height: 1px; background: var(--line-soft); align-self: center; }
.section-head { max-width: 64ch; margin-bottom: 28px; }
.section-head h2 {
  margin: 0; font-size: clamp(26px, 3.4vw, 34px); font-weight: 700;
  letter-spacing: -0.026em; line-height: 1.06; color: var(--ink);
}
.section-head p { margin: 14px 0 0; max-width: 68ch; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.section-head p .mono { color: var(--ink); }

/* ============================================================
   STAR · Describe it, watch it go live (conversational build)
   A chat exchange resolving into a live site row. The single
   reserved gradient moment of this section is the live row.
   ============================================================ */
.convo {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px 52px;
  align-items: center;
}
.convo-copy h2 {
  margin: 0; font-size: clamp(27px, 3.6vw, 37px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.04; color: var(--ink); max-width: 16ch;
}
.convo-copy p { margin: 16px 0 0; max-width: 46ch; font-size: 16.5px; line-height: 1.5; color: var(--ink-2); }
.convo-copy .lede-strong { color: var(--ink); }

/* the chat panel */
.chat {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--canvas-top), var(--surface-1) 80px);
  overflow: hidden;
  box-shadow: 0 1px 0 oklch(0.98 0.01 285 / 0.04) inset, 0 30px 80px -44px oklch(0.05 0.02 285 / 0.9);
}
.chat-bar {
  display: flex; align-items: center; gap: 10px; height: 42px; padding: 0 15px;
  border-bottom: 1px solid var(--line-soft); background: oklch(0.172 0.021 285 / 0.7);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.chat-bar .dotrow { display: flex; gap: 5px; }
.chat-bar .dotrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); display: block; }
.chat-bar .ttl { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); font-weight: 500; }
.chat-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 14px; }

.turn { display: flex; gap: 11px; align-items: flex-start; }
.turn .who {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-2);
  font-family: var(--font-mono);
}
.turn.you .who { color: var(--ink); }
.turn.arc .who { color: var(--ink-2); }
.bubble {
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: var(--surface-1); padding: 11px 13px;
  font-size: 13.5px; line-height: 1.5; color: var(--ink-2); max-width: 42ch;
}
.turn.you .bubble { background: var(--surface-2); color: var(--ink); }
.bubble .em { color: var(--ink); font-weight: 600; }
.bubble .mono { font-size: 12.5px; color: var(--ink); }

/* the resolved live row, inside the chat (the sanctioned live moment) */
.chat-result {
  margin-top: 2px; border-top: 1px solid var(--line-soft);
  background: oklch(0.172 0.021 285 / 0.5);
  padding: 13px 16px;
  display: grid; grid-template-columns: 26px minmax(0, 1fr) auto; align-items: center; gap: 14px;
}
.chat-result .glyph { width: 26px; height: 26px; display: grid; place-items: center; }
.chat-result .r-name { min-width: 0; }
.chat-result .r-slug {
  font-family: var(--font-mono); font-size: 13.5px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em;
}
.chat-result .r-url {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ============================================================
   Status glyphs + tags (shared with the register section)
   ============================================================ */
.glyph { display: grid; place-items: center; }
.live-dot {
  width: 11px; height: 11px; border-radius: 50%; position: relative;
  background: var(--live-gradient);
  box-shadow: 0 0 0 3px oklch(0.66 0.205 296 / 0.16), 0 0 12px 1px oklch(0.66 0.205 296 / 0.42);
}
.live-dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  box-shadow: 0 0 0 1.5px oklch(0.82 0.130 184 / 0.5);
  animation: livePulse 2.8s var(--ease-expo) infinite;
}
@keyframes livePulse {
  0% { transform: scale(0.8); opacity: 0.85; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}
.draft-ring { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--ink-4); background: oklch(0.20 0.02 285); }
.deploy-arc { width: 22px; height: 22px; display: block; }
.deploy-fill { animation: deployFill 2.4s var(--ease-expo) both; }
@keyframes deployFill { from { stroke-dashoffset: 88; } to { stroke-dashoffset: 36; } }
.failed-glyph { width: 16px; height: 16px; color: var(--red); display: grid; place-items: center; }

.status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  height: 24px; padding: 0 10px; border-radius: 6px;
  border: 1px solid var(--line); color: var(--ink-2); background: oklch(0.21 0.02 285); white-space: nowrap;
}
.status.live { color: var(--ink); border-color: oklch(0.42 0.10 290); background: oklch(0.24 0.035 290); }
.status.live .seg { width: 14px; height: 8px; display: inline-block; }
.status.draft { color: var(--ink-3); }
.status.deploying { color: var(--amber); border-color: oklch(0.45 0.10 78); background: oklch(0.27 0.045 78); }
.status.failed { color: oklch(0.86 0.075 22); border-color: var(--red-line); background: oklch(0.30 0.060 22); }
.status.pending { color: var(--amber); border-color: oklch(0.45 0.10 78); background: oklch(0.27 0.045 78); }

/* ============================================================
   SECTION · The register (color = live)
   ============================================================ */
.showcase {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px 52px; align-items: center;
}
.showcase-copy h2 {
  margin: 0; font-size: clamp(26px, 3.4vw, 34px); font-weight: 700;
  letter-spacing: -0.026em; line-height: 1.06; color: var(--ink);
}
.showcase-copy p { margin: 14px 0 0; max-width: 42ch; font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.legend { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px; }
.legend-item { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-3); }
.legend-item .glyph { width: 18px; height: 18px; }

.mini-sites {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--canvas-top), var(--surface-1) 70px);
  box-shadow: 0 1px 0 oklch(0.98 0.01 285 / 0.04) inset, 0 30px 80px -44px oklch(0.05 0.02 285 / 0.9);
}
.mini-bar {
  display: flex; align-items: center; gap: 10px; height: 42px; padding: 0 15px;
  border-bottom: 1px solid var(--line-soft); background: oklch(0.172 0.021 285 / 0.7);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.mini-bar .count { margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); font-weight: 500; }
.mini-row {
  display: grid; grid-template-columns: 26px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  padding: 13px 15px; border-bottom: 1px solid var(--line-soft); transition: background .18s var(--ease-quint);
}
.mini-row:last-child { border-bottom: none; }
.mini-row:hover { background: var(--surface-2); }
.mini-row.failed { background: var(--red-tint); }
.mini-row .glyph { width: 26px; height: 26px; }
.mini-name { min-width: 0; }
.mini-slug {
  font-family: var(--font-mono); font-size: 13.5px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-url {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-url.deploying { color: var(--amber-dim); }
.mini-url.failed { color: oklch(0.66 0.06 22); }

/* ============================================================
   SECTION · Two ways to publish
   ============================================================ */
.ways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.way {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--canvas-top); padding: 22px 22px 24px; display: flex; flex-direction: column;
}
.way-head { display: flex; align-items: center; gap: 11px; margin-bottom: 5px; }
.way-icon {
  width: 30px; height: 30px; flex: none; border-radius: 8px; --icon-hue: 285;
  border: 1px solid oklch(0.42 0.045 var(--icon-hue));
  background: radial-gradient(120% 120% at 50% 0%, oklch(0.44 0.10 var(--icon-hue) / 0.24), transparent 70%), var(--surface-2);
  display: grid; place-items: center; color: oklch(0.86 0.072 var(--icon-hue));
  transition: color .25s var(--ease-quint), border-color .25s var(--ease-quint), background .25s var(--ease-quint), box-shadow .25s var(--ease-quint);
}
.way:nth-child(1) .way-icon { --icon-hue: 195; }
.way:nth-child(2) .way-icon { --icon-hue: 16; }
.way:hover .way-icon {
  color: oklch(0.91 0.105 var(--icon-hue)); border-color: oklch(0.56 0.10 var(--icon-hue));
  background: radial-gradient(120% 120% at 50% 0%, oklch(0.48 0.15 var(--icon-hue) / 0.42), transparent 70%), var(--surface-2);
  box-shadow: 0 8px 22px -12px oklch(0.55 0.14 var(--icon-hue) / 0.6);
}
.way-head h3 { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -0.014em; color: var(--ink); }
.way > p { margin: 0 0 18px; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); max-width: 48ch; }
.way-visual { margin-top: auto; }

.mini-drop {
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius);
  background: radial-gradient(120% 120% at 50% 0%, oklch(0.21 0.025 285 / 0.7), transparent 60%), var(--surface-1);
  padding: 26px 18px; text-align: center;
}
.mini-drop .dz-icon {
  width: 38px; height: 38px; margin: 0 auto 12px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--surface-2); display: grid; place-items: center; color: var(--ink-2);
}
.mini-drop .dz-title { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.mini-drop .dz-title .link { color: oklch(0.80 0.12 290); text-decoration: underline; text-underline-offset: 2px; }
.mini-drop .dz-accept {
  margin-top: 13px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  border: 1px solid var(--line); border-radius: 6px; padding: 3px 9px; background: oklch(0.20 0.02 285);
}
.plan-to-page { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 14px; }
.plan-card { border: 1px solid var(--line); border-radius: 10px; background: var(--surface-1); overflow: hidden; }
.plan-bar {
  display: flex; align-items: center; gap: 7px; height: 28px; padding: 0 10px;
  border-bottom: 1px solid var(--line-soft); background: oklch(0.205 0.02 285);
  font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-4);
}
.plan-bar .dotrow { display: flex; gap: 4px; margin-right: 3px; }
.plan-bar .dotrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong); display: block; }
.plan-lines { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.plan-line { height: 6px; border-radius: 999px; background: var(--line); }
.plan-line.head { height: 7px; width: 64%; background: var(--ink-4); }
.plan-line.w90 { width: 90%; } .plan-line.w72 { width: 72%; } .plan-line.w50 { width: 50%; }
.to-page-arrow { align-self: center; display: grid; place-items: center; width: 28px; color: var(--ink-3); }
.page-card { border: 1px solid var(--line); border-radius: 10px; background: oklch(0.175 0.02 285); padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.page-hero { height: 26px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line-soft); }
.page-title { height: 8px; width: 70%; border-radius: 999px; background: var(--ink-4); }
.page-row { height: 5px; border-radius: 999px; background: var(--line); }
.page-row.w85 { width: 85%; } .page-row.w60 { width: 60%; }
.page-btn { margin-top: 2px; height: 14px; width: 44px; border-radius: 5px; background: var(--ink-3); }
.way-note { margin: 16px 0 0; font-size: 12.5px; color: var(--ink-4); display: flex; align-items: center; gap: 8px; }
.way-note svg { flex: none; color: var(--ink-4); }

/* an edit-by-chat one-line aside under the two ways */
.edit-aside {
  margin-top: 22px; display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: oklch(0.185 0.02 285 / 0.6); font-size: 13.5px; color: var(--ink-3);
}
.edit-aside svg { flex: none; color: var(--ink-3); }
.edit-aside .em { color: var(--ink); font-weight: 600; }

/* ============================================================
   SECTION · Your address -> domain (steel = calm positive)
   ============================================================ */
.address-band {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: radial-gradient(130% 120% at 84% 0%, oklch(0.205 0.026 285 / 0.7), transparent 58%), var(--canvas-top);
  padding: 26px 26px 24px;
}
.addr-track { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 18px; }
.addr-side { min-width: 0; }
.addr-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 10px; }
.addr-tag.before { color: var(--ink-4); }
.addr-tag.after { color: var(--steel); }
.url-card { border: 1px solid var(--line); border-radius: 11px; background: oklch(0.175 0.02 285); padding: 16px 16px 15px; height: 100%; }
.url-card.after {
  border-color: var(--steel-line);
  background: radial-gradient(120% 140% at 0% 0%, oklch(0.24 0.03 210 / 0.5), transparent 62%), oklch(0.185 0.022 285);
}
.url-big { font-family: var(--font-mono); font-size: 14.5px; line-height: 1.5; letter-spacing: -0.012em; word-break: break-all; }
.url-big .scheme { color: var(--ink-4); }
.url-big .dim { color: var(--ink-3); }
.url-big .path { color: var(--ink-2); }
.slug-mark { color: var(--steel); background: var(--steel-wash); border-radius: 5px; padding: 1px 5px; box-shadow: inset 0 0 0 1px var(--steel-line); }
.url-card.before .slug-mark { color: var(--ink); background: oklch(0.26 0.02 285); box-shadow: inset 0 0 0 1px var(--line-strong); }
.url-note { margin-top: 12px; font-size: 12px; color: var(--ink-4); display: flex; align-items: center; gap: 7px; }
.url-card.after .url-note { color: var(--steel-dim); }
.addr-arrow { align-self: center; display: grid; place-items: center; width: 40px; height: 40px; color: var(--ink-3); }
.addr-foot {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-3);
}
.addr-foot .match { display: inline-flex; align-items: center; gap: 9px; max-width: 60ch; }
.addr-foot .match svg { flex: none; color: var(--steel-dim); }
.addr-foot .match .mono { color: var(--steel); }

/* ============================================================
   SECTION · Built for teams
   ============================================================ */
.team-panel { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--canvas-top); overflow: hidden; }
.team-invite {
  display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap;
  padding: 20px 20px 18px; border-bottom: 1px solid var(--line-soft); background: oklch(0.172 0.021 285 / 0.5);
}
.invite-field { flex: 1 1 240px; min-width: 0; }
.invite-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); margin-bottom: 8px; }
.invite-control {
  height: 40px; display: flex; align-items: center; gap: 9px; padding: 0 13px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-1);
  color: var(--ink-4); font-family: var(--font-mono); font-size: 13.5px;
}
.invite-control svg { flex: none; color: var(--ink-4); }
.role-select {
  flex: 0 0 auto; height: 40px; display: inline-flex; align-items: center; gap: 10px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-1);
  color: var(--ink-2); font-size: 13.5px; font-weight: 600;
}
.role-select svg { color: var(--ink-4); }
.team-row {
  display: grid; grid-template-columns: 32px minmax(0, 1.5fr) auto auto; align-items: center; gap: 16px;
  padding: 13px 20px; border-bottom: 1px solid var(--line-soft);
}
.team-row:last-child { border-bottom: none; }
.team-row.pending { background: oklch(0.172 0.021 285 / 0.4); }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-size: 12.5px; font-weight: 700; color: oklch(0.16 0.02 285); border: 1px solid oklch(0.62 0.04 285 / 0.35);
}
.avatar.a1 { background: linear-gradient(150deg, oklch(0.70 0.115 256), oklch(0.60 0.135 300)); }
.avatar.a2 { background: linear-gradient(150deg, oklch(0.74 0.125 158), oklch(0.64 0.110 200)); }
.invite-glyph {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  color: var(--ink-3); border: 1px dashed var(--line); background: oklch(0.20 0.02 285);
}
.team-id { min-width: 0; }
.team-name { font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-email { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.role-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--ink-2);
  height: 26px; padding: 0 11px; border-radius: 7px; border: 1px solid var(--line); background: oklch(0.21 0.02 285); white-space: nowrap;
}
.role-tag .rdot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); flex: none; }
.role-tag.owner { color: var(--ink); }
.role-tag.owner .rdot { background: var(--ink-2); width: 7px; height: 7px; }
.role-tag.member .rdot { background: var(--ink-4); }
.team-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); white-space: nowrap; justify-self: end; }

/* ============================================================
   Closing CTA + footer
   ============================================================ */
.closing {
  position: relative; margin-top: 104px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: radial-gradient(120% 160% at 50% 120%, oklch(0.22 0.045 296 / 0.45), transparent 60%),
    linear-gradient(180deg, var(--canvas-top), var(--canvas) 70%);
  overflow: hidden; padding: 56px 32px 60px; text-align: center;
}
.closing-arc { position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%); width: min(560px, 92%); height: 120px; pointer-events: none; opacity: 0.9; }
.closing h2 {
  position: relative; margin: 0 auto; max-width: 18ch;
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.032em; line-height: 1.02; color: var(--ink);
}
.closing p { position: relative; margin: 18px auto 0; max-width: 56ch; font-size: 16.5px; line-height: 1.5; color: var(--ink-2); }
.closing-cta { position: relative; margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.foot {
  border-top: 1px solid var(--line-soft); margin-top: 60px; padding: 30px 0 56px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.foot .fm { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -0.05em; font-size: 15px; }
.foot .fm .mark-arc { width: 15px; height: 15px; }
.foot small { color: var(--ink-4); font-size: 12.5px; }
.foot .flinks { display: flex; gap: 18px; }
.foot .flinks a { color: var(--ink-4); font-size: 13px; }
.foot .flinks a:hover { color: var(--ink-2); }

/* ============================================================
   Responsive + reduced motion
   ============================================================ */
@media (max-width: 880px) {
  .convo, .showcase { grid-template-columns: 1fr; gap: 28px; }
  .ways { grid-template-columns: 1fr; }
  .addr-track { grid-template-columns: 1fr; }
  .addr-arrow { width: 100%; height: 34px; transform: rotate(90deg); }
  .hero-arc { display: none; }
}
@media (max-width: 620px) {
  .section { padding-top: 68px; }
  .partners { padding-top: 40px; }
  .bound { padding-inline: 18px; }
  .closing { margin-top: 76px; padding: 44px 20px 48px; }
  .hero-meta, .site-nav-links .navlink.hide-sm { display: none; }
  .team-row { grid-template-columns: 32px minmax(0, 1fr) auto; }
  .team-row .team-meta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   Pricing page (/pricing)
   Cards are the right affordance for a tier comparison; the featured
   tier wears the sanctioned --focus accent, NEVER the live gradient.
   ============================================================ */
.pricing-head { padding: 60px 0 4px; }
.pricing-head h1 {
  margin: 0; font-size: clamp(38px, 5.4vw, 58px); line-height: 1.0;
  letter-spacing: -0.034em; font-weight: 800; max-width: 18ch; color: var(--ink);
}
.pricing-head p.sub { margin: 24px 0 0; max-width: 62ch; font-size: 17px; line-height: 1.5; color: var(--ink-2); }

.tiers {
  margin-top: 46px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch;
}
.tier {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--canvas-top); padding: 26px 24px 24px;
}
/* the featured tier (Pro): the sanctioned --focus accent (selection/recommendation), never
   the live gradient. */
.tier.is-featured {
  border-color: var(--focus);
  background: radial-gradient(120% 88% at 50% 0%, oklch(0.27 0.05 296 / 0.30), transparent 60%), var(--canvas-top);
  box-shadow: 0 22px 60px -38px oklch(0.40 0.12 296 / 0.7);
}
.tier-flag {
  position: absolute; top: -11px; left: 24px;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); background: oklch(0.30 0.07 296); border: 1px solid var(--focus);
  border-radius: 999px; padding: 3px 11px;
}
.tier-top { padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.tier-name { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -0.014em; color: var(--ink); }
.tier-price { margin-top: 10px; display: flex; align-items: baseline; gap: 7px; }
.tier-price .num { font-size: 34px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.tier-price .per { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); }
.tier-pitch { margin: 14px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); min-height: 40px; }

.tier-features { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tier-features li { display: flex; align-items: baseline; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
.tier-features li.off { color: var(--ink-4); }
.tier-features .mono { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink); }
.tier-features li.off .mono { color: var(--ink-4); }
.tier-features .ck { flex: none; display: inline-grid; place-items: center; width: 15px; align-self: center; }
.tier-features .ck.yes { color: var(--ink); }
.tier-features .ck.no { color: var(--ink-4); }
.tier-cta { margin-top: 22px; justify-content: center; height: 42px; }

.tiers-note { margin: 18px 0 0; font-size: 13px; color: var(--ink-4); }

.ai-note { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 28px; }
.ai-note-item h3 { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: -0.014em; color: var(--ink); }
.ai-note-item p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); max-width: 38ch; }

@media (max-width: 880px) {
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .ai-note { grid-template-columns: 1fr; gap: 22px; }
  .tier-pitch { min-height: 0; }
}

/* ============================================================
   Nav active state (multi-page: Forms / Pricing)
   ============================================================ */
.navlink[aria-current="page"] { color: var(--ink); background: var(--surface-1); }

/* ============================================================
   Shared instrument-panel shell (forms page) — same elevation
   language as .chat / .mini-sites, reused for the form mock,
   the submissions inbox, the spam boundary, the delivery log.
   ============================================================ */
.form-mock, .subs, .spam, .deliveries {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--canvas-top), var(--surface-1) 72px);
  box-shadow: 0 1px 0 oklch(0.98 0.01 285 / 0.04) inset, 0 30px 80px -44px oklch(0.05 0.02 285 / 0.9);
}

/* ============================================================
   FORMS · the collect loop (a real form -> a real inbox)
   ============================================================ */
.forms-loop {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px; align-items: center;
}
.loop-arrow { display: grid; place-items: center; width: 40px; height: 40px; color: var(--ink-3); }

/* the rendered form */
.fm-bar {
  display: flex; align-items: center; gap: 9px; height: 38px; padding: 0 14px;
  border-bottom: 1px solid var(--line-soft); background: oklch(0.172 0.021 285 / 0.7);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4);
}
.fm-bar .dotrow { display: flex; gap: 5px; }
.fm-bar .dotrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); display: block; }
.fm-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 13px; }
.fm-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.fm-field { display: flex; flex-direction: column; gap: 6px; }
.fm-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); }
.fm-input {
  border: 1px solid var(--line); border-radius: 8px; background: var(--surface-1);
  padding: 9px 11px; font-size: 13px; color: var(--ink-2);
}
.fm-input.area { min-height: 46px; line-height: 1.45; }
.fm-submit {
  margin-top: 3px; align-self: flex-start; height: 38px; display: inline-flex; align-items: center;
  padding: 0 17px; border-radius: var(--radius-sm);
  background: var(--ink); color: oklch(0.16 0.02 285); font-weight: 700; font-size: 13.5px;
}
.fm-foot { margin-top: 4px; display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--steel-dim); }
.fm-foot svg { color: var(--steel); flex: none; }

/* the submissions inbox (register-row vocabulary, submission columns) */
.sub-row {
  display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; align-items: center; gap: 12px;
  padding: 12px 15px; border-bottom: 1px solid var(--line-soft); transition: background .18s var(--ease-quint);
}
.sub-row:hover { background: var(--surface-2); }
.sub-av {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: oklch(0.16 0.02 285); border: 1px solid oklch(0.62 0.04 285 / 0.35);
}
.sub-av.av1 { background: linear-gradient(150deg, oklch(0.70 0.115 256), oklch(0.60 0.135 300)); }
.sub-av.av2 { background: linear-gradient(150deg, oklch(0.74 0.125 158), oklch(0.64 0.110 200)); }
.sub-av.av3 { background: linear-gradient(150deg, oklch(0.80 0.110 70), oklch(0.72 0.120 40)); }
.sub-av.av4 { background: linear-gradient(150deg, oklch(0.74 0.120 330), oklch(0.64 0.130 292)); }
.sub-id { min-width: 0; }
.sub-name { font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sub-email { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sub-time { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-4); white-space: nowrap; justify-self: end; }
.subs-foot {
  display: flex; align-items: center; gap: 8px; padding: 12px 15px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-3); background: oklch(0.172 0.021 285 / 0.5);
}
.subs-foot svg { color: var(--ink-3); flex: none; }

/* ============================================================
   FORMS · form-type chips (a labeled set, not a card grid)
   ============================================================ */
.ftypes { display: flex; flex-wrap: wrap; gap: 10px; }
.ftype {
  display: inline-flex; align-items: center; gap: 9px; height: 40px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface-1);
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  transition: border-color .2s var(--ease-quint), background .2s var(--ease-quint), color .2s var(--ease-quint);
}
.ftype svg { color: var(--ink-3); flex: none; }
.ftype:hover { border-color: var(--line-strong); background: var(--surface-2); color: var(--ink); }

/* ============================================================
   FORMS · spam boundary (steel = accepted human, red = blocked).
   Calm positive + error, NEVER the live gradient.
   ============================================================ */
.spam-bar {
  height: 38px; display: flex; align-items: center; padding: 0 16px;
  border-bottom: 1px solid var(--line-soft); background: oklch(0.172 0.021 285 / 0.7);
  font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-4);
}
.spam-row {
  display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 13px;
  padding: 15px 16px; border-bottom: 1px solid var(--line-soft);
}
.spam-row:last-child { border-bottom: none; }
.spam-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.spam-ic.ok { color: var(--steel); border: 1px solid var(--steel-line); background: var(--steel-wash); }
.spam-ic.bad { color: var(--red); border: 1px solid var(--red-line); background: var(--red-tint); }
.spam-id { min-width: 0; }
.spam-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.spam-row.bad .spam-name { color: var(--ink-2); }
.spam-meta { font-size: 12px; color: var(--ink-4); margin-top: 2px; }
.spam-tag {
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; height: 24px; padding: 0 10px; border-radius: 6px; white-space: nowrap;
}
.spam-tag.ok { color: var(--steel); border: 1px solid var(--steel-line); background: var(--steel-wash); }
.spam-tag.bad { color: oklch(0.86 0.075 22); border: 1px solid var(--red-line); background: oklch(0.30 0.060 22); }

/* ============================================================
   FORMS · webhook delivery log (the sanctioned operational green)
   ============================================================ */
.dlv-health { margin-left: auto; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; color: var(--green-dim); font-weight: 500; }
.dlv-health .spark { display: block; }
.dlv-row {
  display: grid; grid-template-columns: 10px minmax(0, 1fr) auto; align-items: center; gap: 13px;
  padding: 13px 15px; border-bottom: 1px solid var(--line-soft);
}
.dlv-row:last-child { border-bottom: none; }
.dlv-dot { width: 8px; height: 8px; border-radius: 50%; }
.dlv-dot.ok { background: var(--green); }
.dlv-dot.retry { background: var(--amber); }
.dlv-id { min-width: 0; }
.dlv-ep { font-size: 13px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dlv-meta { font-size: 11.5px; color: var(--ink-4); margin-top: 2px; }
.status.delivered { color: var(--green); border-color: oklch(0.42 0.090 152); background: oklch(0.26 0.045 152); }

/* a quiet "this is a paid-tier capability" marker — the --focus accent, never the gradient */
.tier-pill {
  display: inline-flex; align-items: center; margin-top: 20px; height: 26px; padding: 0 12px;
  border-radius: 999px; border: 1px solid var(--focus); background: var(--select-fill);
  color: var(--ink); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}

/* ============================================================
   FORMS · the tier band (between integrations and the closing)
   ============================================================ */
.tier-band {
  margin-top: 88px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px 24px; flex-wrap: wrap; padding: 20px 24px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--canvas-top);
}
.tier-band-txt { font-size: 15px; color: var(--ink-2); }
.tier-band .em { color: var(--ink); font-weight: 600; }

/* ============================================================
   HOME · "Everything you can build" — the capabilities router.
   A featured Forms panel (links to /forms) above a list of
   capabilities as ROWS (not a card grid), house style.
   ============================================================ */
/* the featured Forms block is borderless on the canvas (copy + a single
   submissions card on the right), so no card nests inside a card. */
.cap-feature {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: 40px; align-items: center;
  padding: 6px 0 2px; margin-bottom: 30px;
}
.cap-feature:hover .cap-more { color: var(--ink); }
.cap-feat-eyebrow { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.cap-feature h3 { margin: 12px 0 0; font-size: clamp(22px, 2.6vw, 27px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); max-width: 18ch; }
.cap-feature > div > p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); max-width: 44ch; }
.cap-more { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.cap-more svg { transition: transform .22s var(--ease-quint); }
.cap-feature:hover .cap-more svg { transform: translateX(3px); }
.cap-feat-visual { min-width: 0; }

.cap-list {
  display: grid; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--canvas-top);
}
.cap {
  display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: start; gap: 16px;
  padding: 18px 20px; border-bottom: 1px solid var(--line-soft);
}
.cap:last-child { border-bottom: none; }
.cap-ic {
  width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; flex: none;
  --ic: 285; color: oklch(0.86 0.072 var(--ic));
  border: 1px solid oklch(0.42 0.045 var(--ic));
  background: radial-gradient(120% 120% at 50% 0%, oklch(0.44 0.10 var(--ic) / 0.22), transparent 70%), var(--surface-2);
}
.cap:nth-child(1) .cap-ic { --ic: 196; }
.cap:nth-child(2) .cap-ic { --ic: 256; }
.cap:nth-child(3) .cap-ic { --ic: 296; }
.cap:nth-child(4) .cap-ic { --ic: 210; }
.cap:nth-child(5) .cap-ic { --ic: 152; }
.cap-c { min-width: 0; padding-top: 1px; }
.cap-t { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.012em; }
.cap-d { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin-top: 3px; max-width: 64ch; }

/* ============================================================
   Responsive — forms page + capabilities
   ============================================================ */
@media (max-width: 880px) {
  .forms-loop { grid-template-columns: 1fr; gap: 18px; }
  .forms-loop .loop-arrow { width: 100%; height: 34px; transform: rotate(90deg); }
  .cap-feature { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 620px) {
  .tier-band { margin-top: 64px; }
  .ftype { height: 38px; font-size: 13px; }
}

/* ============================================================
   Waitlist (private beta) — the request-access conversion beat, inside .closing.
   Discipline: the button stays near-white (never the gradient); the eyebrow and
   the submitted glyph use the neutral draft-ring (the product's "exists, not live
   yet" marker), so THE INVIOLABLE RULE holds — nothing here reads as "a site is live".
   ============================================================ */

/* honest one-liner under the hero CTA */
.hero-note { margin-top: 20px; max-width: 48ch; font-size: 13.5px; color: var(--ink-4); }

/* neutral eyebrow for the ask — NO live-dot; the draft-ring is the product's own
   "exists, not live yet" marker, which is exactly the waitlist state. */
.wl-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-3);
  padding: 6px 13px 6px 11px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  background: oklch(0.19 0.02 285 / 0.6);
  margin-bottom: 20px;
}
.wl-eyebrow .draft-ring { width: 8px; height: 8px; }

.waitlist-form {
  position: relative;
  max-width: 468px; margin: 26px auto 0;
  display: grid; gap: 12px; text-align: left;
}
.wf-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 12px; }
.wf-field { display: grid; gap: 7px; }
.wf-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--ink-3);
}
.wf-input {
  height: 46px; padding: 0 14px;
  background: var(--surface-1);
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); font-family: inherit; font-size: 15px;
  transition: border-color 0.15s var(--ease-quint), box-shadow 0.15s var(--ease-quint);
}
.wf-input::placeholder { color: var(--ink-4); }
.wf-input:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px oklch(0.78 0.150 296 / 0.22);
}
.waitlist-form .btn { justify-self: center; padding: 0 32px; margin-top: 8px; }
.waitlist-form .btn[disabled] { opacity: 0.6; cursor: default; }

/* honeypot — off-screen, never shown, out of tab order + hidden from AT */
.wf-hp {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.wf-err { min-height: 1em; margin: 2px 0 0; font-size: 13px; color: var(--red); }

.wf-alt { position: relative; margin-top: 16px; font-size: 13.5px; color: var(--ink-3); }
.wf-alt a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-strong); padding-bottom: 1px;
}
.wf-alt a:hover { border-bottom-color: var(--ink-3); }

/* submitted: calm + neutral, NOT a live moment (draft-ring = queued, not live) */
.wf-done {
  position: relative;
  max-width: 468px; margin: 26px auto 0;
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 18px 20px;
  background: var(--surface-1);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.wf-done .draft-ring { width: 14px; height: 14px; flex: none; }
.wf-done-title { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.wf-done-sub { margin-top: 3px; font-size: 14px; color: var(--ink-2); }

@media (max-width: 520px) {
  .wf-row { grid-template-columns: 1fr; }
}

/* ============================================================
   DOCS (/docs) — "arcdoq for Claude", the MCP connector guide.
   Product register: earned-familiar, rows over cards. read/write
   tags are neutral; "deletes" borrows the red danger accent. The
   live gradient is never used on this page.
   ============================================================ */
.doc-head { padding: 60px 0 4px; }
.doc-kicker {
  display: inline-block; margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink-3);
}
.doc-head h1 {
  margin: 0; font-size: clamp(38px, 5.4vw, 58px); line-height: 1.0;
  letter-spacing: -0.034em; font-weight: 800; max-width: 16ch; color: var(--ink);
}
.doc-head p.sub { margin: 24px 0 0; max-width: 62ch; font-size: 17px; line-height: 1.5; color: var(--ink-2); }
.doc-head-meta { margin-top: 26px; display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--ink-4); }
.doc-head-meta span { display: inline-flex; align-items: center; gap: 8px; }
.doc-head-meta .tick { width: 5px; height: 5px; border-radius: 50%; background: var(--steel-dim); }

.connect-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.connect-method { display: flex; flex-direction: column; }
.cm-title { margin: 0; font-size: 15px; font-weight: 700; letter-spacing: -0.014em; color: var(--ink); }
.cm-note { margin: 7px 0 14px; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }
.code {
  margin-top: auto; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-1);
}
.code-bar {
  display: flex; align-items: center; gap: 10px; height: 34px; padding: 0 13px;
  border-bottom: 1px solid var(--line-soft); background: oklch(0.205 0.02 285);
}
.code-bar .dotrow { display: flex; gap: 5px; }
.code-bar .dotrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-strong); display: block; }
.code-bar .cb-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.02em; color: var(--ink-4); }
.code-body {
  margin: 0; padding: 15px; overflow-x: auto; white-space: pre;
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7; color: var(--ink-2);
}
.code-body code { font: inherit; color: inherit; }
.code-body .prompt { color: var(--ink-4); margin-right: 6px; user-select: none; }

.auth-notes {
  margin-top: 6px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--line-soft);
}
.auth-note { display: flex; flex-direction: column; gap: 8px; padding: 18px 18px 20px; background: var(--canvas-top); }
.an-k { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-3); }
.an-v { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }

.tool-group-label {
  margin: 30px 0 12px; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);
}
.tool-list { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--canvas-top); }
.tool-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px;
  padding: 15px 18px; border-bottom: 1px solid var(--line-soft);
}
.tool-row:last-child { border-bottom: none; }
.tr-main { min-width: 0; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.tr-name { font-family: var(--font-mono); font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.tr-desc { font-size: 13.5px; line-height: 1.45; color: var(--ink-3); }
.tool-tag {
  flex: none; display: inline-flex; align-items: center; height: 22px; padding: 0 9px; border-radius: 6px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  border: 1px solid var(--line); background: oklch(0.21 0.02 285); color: var(--ink-3);
}
.tool-tag.write { color: var(--ink); border-color: var(--line-strong); }
.tool-tag.del { color: oklch(0.86 0.075 22); border-color: var(--red-line); background: oklch(0.30 0.060 22); }

.doc-cta { margin-top: 4px; display: flex; gap: 12px; flex-wrap: wrap; }
.contact-line { margin: 26px 0 0; font-size: 14px; color: var(--ink-3); }
.contact-line a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.contact-line a:hover { border-bottom-color: var(--ink-3); }

@media (max-width: 880px) {
  .connect-grid { grid-template-columns: 1fr; }
  .auth-notes { grid-template-columns: 1fr; }
}

/* ============================================================
   PRIVACY (/privacy) — long-form legal document. Restraint: type
   and space carry it; one steel callout for the residency
   assurance (calm positive, never live); a bordered subprocessor
   table. No gradient anywhere on the page body.
   ============================================================ */
.legal-head { padding: 60px 0 0; }
.legal-head h1 { margin: 0; font-size: clamp(34px, 4.6vw, 50px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; color: var(--ink); }
.updated { margin-top: 16px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); }
.updated .u-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-4); }
.legal-head .lede { margin: 22px 0 0; max-width: 68ch; font-size: 16.5px; line-height: 1.55; color: var(--ink-2); }

.legal-toc { margin: 34px 0 0; padding: 20px 22px 14px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--canvas-top); }
.legal-toc h2 { margin: 0 0 14px; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); }
.legal-toc ol { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 30px; counter-reset: toc; }
.legal-toc li { break-inside: avoid; margin-bottom: 9px; }
.legal-toc a { display: flex; align-items: baseline; gap: 11px; font-size: 13.5px; color: var(--ink-2); transition: color .18s var(--ease-quint); }
.legal-toc a:hover { color: var(--ink); }
.legal-toc a::before { counter-increment: toc; content: counter(toc, decimal-leading-zero); flex: none; font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); }

.legal { margin-top: 4px; max-width: 764px; }
.legal p, .legal ul, .legal h3 { max-width: 64ch; } /* prose keeps a reading measure; the table below runs wider */
.legal section { padding-top: 44px; scroll-margin-top: 24px; }
.legal h2 { margin: 0; display: flex; align-items: baseline; gap: 12px; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.legal h2 .s-idx { flex: none; font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; color: var(--ink-4); }
.legal h3 { margin: 22px 0 0; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.legal p { margin: 13px 0 0; font-size: 15px; line-height: 1.62; color: var(--ink-2); }
.legal p a, .legal li a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 0.5px; transition: border-color .18s var(--ease-quint); }
.legal p a:hover, .legal li a:hover { border-bottom-color: var(--ink-3); }
.legal ul { margin: 13px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal ul li { position: relative; padding-left: 19px; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.legal ul li::before { content: ""; position: absolute; left: 3px; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--ink-4); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .mono { color: var(--ink); }

.callout {
  margin: 20px 0 0; max-width: 620px; padding: 17px 20px 18px;
  border: 1px solid var(--steel-line); border-radius: var(--radius);
  background: radial-gradient(120% 140% at 0% 0%, oklch(0.24 0.03 210 / 0.42), transparent 60%), oklch(0.185 0.022 285);
}
.callout .co-k { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel); }
.callout .co-k svg { flex: none; color: var(--steel); }
.callout p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

.subproc-wrap { margin: 16px 0 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.subproc { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13.5px; }
.subproc thead th { padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); background: oklch(0.172 0.021 285 / 0.7); border-bottom: 1px solid var(--line); }
.subproc td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); vertical-align: top; line-height: 1.5; }
.subproc tbody tr:last-child td { border-bottom: none; }
.subproc .sp-name { color: var(--ink); font-weight: 600; white-space: nowrap; }
.subproc .sp-loc { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); white-space: nowrap; }

@media (max-width: 620px) {
  .legal-toc ol { columns: 1; }
}

/* ============================================================
   DOCS HOME (/docs) index + shared doc-page chrome (breadcrumb,
   prose). Rows over cards; muted "on the way" chips wear the
   dashed neutral (the product's "planned, not live yet" language).
   No gradient on these pages.
   ============================================================ */
.docs-crumb {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 22px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-4);
  transition: color .18s var(--ease-quint);
}
.docs-crumb:hover { color: var(--ink-2); }
.docs-crumb svg { flex: none; }

.di-list { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--canvas-top); }
.di-item {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 16px;
  padding: 17px 20px; border-bottom: 1px solid var(--line-soft);
  transition: background .18s var(--ease-quint);
}
.di-item:last-child { border-bottom: none; }
.di-item:hover { background: var(--surface-2); }
.di-main { min-width: 0; }
.di-t { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; color: var(--ink); }
.di-t .di-note { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--ink-4); }
.di-d { display: block; margin-top: 3px; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); max-width: 62ch; }
.di-arrow { flex: none; color: var(--ink-4); transition: transform .2s var(--ease-quint), color .2s var(--ease-quint); }
.di-item:hover .di-arrow { color: var(--ink-2); transform: translateX(3px); }

.soon-lead { margin: 0 0 16px; font-size: 14px; color: var(--ink-3); }
.soon-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.soon-chip {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px; border-radius: 999px;
  border: 1px dashed var(--line); background: oklch(0.185 0.02 285 / 0.5);
  font-size: 13px; color: var(--ink-4);
}

/* prose for a single doc page (getting-started and future guides) */
.doc-body { max-width: 68ch; }
.doc-body p { margin: 14px 0 0; font-size: 15px; line-height: 1.62; color: var(--ink-2); }
.doc-body p:first-child { margin-top: 0; }
.doc-body p a, .doc-body li a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 0.5px; transition: border-color .18s var(--ease-quint); }
.doc-body p a:hover, .doc-body li a:hover { border-bottom-color: var(--ink-3); }
.doc-body ul { margin: 6px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.doc-body ul li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.doc-body ul li::before { content: ""; position: absolute; left: 3px; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--ink-4); }
.doc-body strong { color: var(--ink); font-weight: 600; }
