/* Agent Platform — shared styles.
   Brand: dark, cinematic, matching uncleronmedia.com.
   Near-black canvas, huge white Figtree display type, orange #ff8c00 used sparsely,
   hairline borders, generous space. Fonts self-hosted, no CDNs. */

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/assets/fonts/figtree-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: #111111;
  --ink: #ffffff;
  --muted: #b8b8b8;
  --dim: #948e86;
  --dimmer: #837c74;
  --orange: #ff8c00;
  --line: #222222;
  --line-2: #333333;
  --radius: 14px;
  --radius-sm: 10px;
  --display: "Figtree", "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --font-particle: "Figtree", "Arial Narrow", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Starfield canvas (index page only) */
#starfield { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* Header */
.site-header { padding-top: 26px; } /* top only — side padding comes from .wrap */
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.wordmark {
  font-family: var(--display); font-weight: 800; letter-spacing: .14em; text-decoration: none;
  color: var(--ink); font-size: 14px; text-transform: uppercase;
}
.wordmark .dot { color: var(--orange); }
.crumb {
  font-size: 12px; text-decoration: none; border: 1px solid var(--line-2); background: transparent;
  color: var(--muted); padding: 8px 16px; border-radius: 999px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; transition: color .15s ease, border-color .15s ease;
}
.crumb:hover { color: var(--ink); border-color: var(--dim); }

/* Hero — cinematic, centered, flagship-style */
.hero { min-height: 86vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 72px 0 48px; position: relative; }

/* Kinetic particle canvas — full-bleed backdrop behind the hero copy.
   Only shown when JS activates it (.js-particles); otherwise the clean
   static Figtree hero renders as-is (graceful fallback). */
#hero-particles {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw; height: 100%;
  z-index: 0; pointer-events: none; display: none;
}
.hero.js-particles { min-height: 96vh; display: grid; padding: 0;
  grid-template-rows: 20vh 1fr auto auto; align-items: center; justify-items: center; }
.hero.js-particles #hero-particles { display: block; }
.hero.js-particles > * { position: relative; z-index: 1; }
.hero.js-particles .kicker-line { grid-row: 1; align-self: start; margin-top: 3vh; margin-bottom: 0; }
/* Headline is drawn by the particles; keep the element for a11y + fallback,
   but make it invisible and out of the way in particle mode. */
.hero.js-particles h1 { grid-row: 2; opacity: 0; margin: 0; pointer-events: none; align-self: center; }
.hero.js-particles .sub { grid-row: 3; margin-top: 0; }
.hero.js-particles .badge-row { grid-row: 4; margin-top: 22px; }
@media (max-width: 700px) {
  .hero.js-particles { grid-template-rows: 15vh 1fr auto auto; min-height: 92vh; }
}
.hero .kicker-line {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 34px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 8.2vw, 124px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 13ch;
  text-wrap: balance;
  margin: 0 auto;
}
.hero h1 .dot { color: var(--orange); }
.hero .sub {
  margin-top: 30px; font-size: clamp(15px, 1.2vw, 17px); color: var(--dim);
  max-width: 54ch; font-weight: 400;
}
.hero .sub strong { color: var(--muted); font-weight: 500; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 38px; justify-content: center; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 9px 18px;
  background: transparent; color: var(--muted);
}
.badge.orange { color: var(--orange); border-color: rgba(255, 140, 0, .45); }
.scroll-cue {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--dimmer); text-align: center;
}
.scroll-cue::after {
  content: ""; display: block; width: 10px; height: 10px; margin: 10px auto 0;
  border-right: 1px solid var(--dimmer); border-bottom: 1px solid var(--dimmer);
  transform: rotate(45deg);
}

/* Hero chat preview (static mini version of the real widget) */
.preview-section { display: flex; justify-content: center; padding: 8px 0 24px; }
.chat-preview {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  overflow: hidden; max-width: 460px; width: 100%;
}
.chat-preview .cp-head {
  display: flex; align-items: center; gap: 10px; padding: 13px 18px;
  background: var(--panel-2); color: var(--ink); border-bottom: 1px solid var(--line);
}
.chat-preview .cp-head .cp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }
.chat-preview .cp-head .cp-title { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.chat-preview .cp-head .cp-status { margin-left: auto; font-family: var(--mono); font-size: 10.5px; color: var(--orange); letter-spacing: .04em; }
.chat-preview .cp-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); }
.chat-preview .msg {
  max-width: 86%; border: 1px solid var(--line); border-radius: 10px; padding: 9px 13px;
  font-size: 13.5px; line-height: 1.5; background: var(--panel-2); color: #e6e6e6;
}
.chat-preview .msg.user { align-self: flex-end; background: rgba(255, 140, 0, .07); border-color: rgba(255, 140, 0, .28); }
.chat-preview .msg .who { display: block; font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); margin-bottom: 3px; }
.chat-preview .cp-foot { display: flex; gap: 12px; align-items: center; padding: 13px 18px; border-top: 1px solid var(--line); background: var(--panel); }
.chat-preview .cp-foot .cp-cta {
  display: inline-block; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 13px;
  color: #000; border-radius: 999px; padding: 9px 18px; background: var(--orange);
  white-space: nowrap; transition: filter .15s ease;
}
.chat-preview .cp-foot .cp-cta:hover { filter: brightness(1.12); }
.chat-preview .cp-foot .cp-note { font-size: 12px; color: var(--dim); }

/* Section headings */
.section { padding: 72px 0 8px; }
.section h2 {
  font-family: var(--display); font-size: clamp(30px, 3.4vw, 48px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.05; color: var(--ink);
}
.section h2::after { content: "."; color: var(--orange); }
.section .note { color: var(--dim); font-size: 15px; margin-top: 10px; }

/* Activity strip — terminal style */
.activity {
  margin-top: 26px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #080808; color: #d9d9d9; overflow: hidden;
}
.activity-head {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--line);
  background: var(--panel); font-family: var(--display); font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .16em; color: var(--muted);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.6s ease-in-out infinite; flex: 0 0 auto; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }
.activity-rows { max-height: 280px; overflow-y: auto; font-family: var(--mono); }
.activity-row { display: flex; gap: 12px; padding: 10px 18px; border-bottom: 1px solid #161616; font-size: 12.5px; align-items: baseline; }
.activity-row:last-child { border-bottom: 0; }
.activity-row .t { color: var(--dimmer); font-size: 11px; white-space: nowrap; }
.activity-row .agent-tag { font-weight: 700; text-transform: uppercase; font-size: 10.5px; letter-spacing: .06em; color: var(--orange); white-space: nowrap; }
.activity-row .what { flex: 1; min-width: 0; color: #d9d9d9; }
.activity-row .what span { color: var(--dim) !important; }
.activity-row .ok { color: #4ec06a; font-weight: 700; font-size: 11px; }
.activity-empty { padding: 18px; color: var(--dim); font-size: 13.5px; font-family: var(--mono); }

/* Cards grid */
.grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 34px; }
@media (min-width: 700px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: #3d3d3d; transform: translateY(-2px); }
.card .num { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .22em; }
.card h3 { font-family: var(--display); font-size: 22px; font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; color: var(--ink); }
.card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.card .price { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-top: auto; padding-top: 10px; color: var(--dim); }
.card .price .mo { color: var(--orange); }
.card .internal {
  align-self: flex-start; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  border: 1px solid var(--line-2); color: var(--dim); border-radius: 999px; padding: 4px 11px;
}
.card .links { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 8px; margin-top: 0; }

/* Featured card — Agent 01 spans the full row */
.card.featured { grid-column: 1 / -1; position: relative; background: linear-gradient(180deg, #101010, var(--panel)); }
@media (min-width: 700px) {
  .card.featured { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 10px 48px; align-items: start; padding: 30px 32px; }
  .card.featured .num { grid-column: 1 / -1; }
  .card.featured h3 { font-size: 30px; grid-column: 1; }
  .card.featured p { grid-column: 1; font-size: 15px; }
  .card.featured .price { grid-column: 1; margin-top: 6px; padding-top: 0; }
  .card.featured .links { grid-column: 2; grid-row: 2 / span 3; align-self: center; justify-self: end; width: 100%; max-width: 300px; flex-direction: column; align-items: stretch; }
  .card.featured .links .btn { text-align: center; }
}
.card.featured::after {
  content: "Flagship"; position: absolute; top: -1px; right: 26px;
  border: 1px solid rgba(255, 140, 0, .45); border-top: 0; border-radius: 0 0 8px 8px;
  color: var(--orange); background: var(--bg);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; padding: 4px 12px;
}

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer; text-align: center;
  font-family: var(--display); font-size: 13.5px; font-weight: 700; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 10px 20px; background: transparent;
  letter-spacing: .01em; transition: border-color .15s ease, color .15s ease, filter .15s ease;
}
.btn:hover { border-color: var(--orange); }
.btn.primary { background: var(--orange); border-color: var(--orange); color: #000; }
.btn.primary:hover { filter: brightness(1.12); }
.btn.ghost { border-color: transparent; color: var(--dim); }
.btn.ghost:hover { color: var(--ink); border-color: var(--line-2); }
.btn.big { font-size: 16px; padding: 16px 28px; width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* Demo pages — document-width column, centered */
.demo-head, main.wrap > .panel, main.wrap > .result { max-width: 860px; margin-left: auto; margin-right: auto; }
.demo-head { padding: 64px 0 6px; }
.demo-head .kicker { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .3em; color: var(--orange); }
.demo-head h1 {
  font-family: var(--display); font-size: clamp(34px, 5.4vw, 64px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.04; margin-top: 14px; color: var(--ink);
}
.demo-head h1::after { content: "."; color: var(--orange); }
.demo-head .sub { color: var(--dim); margin-top: 16px; max-width: 62ch; font-size: 15.5px; }
.demo-head .sub strong { color: var(--muted); font-weight: 500; }
.panel {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  padding: 28px; margin-top: 24px;
}
.panel h2 { font-family: var(--display); font-size: 19px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; color: var(--ink); }
.panel .step-tag {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--orange); border: 1px solid rgba(255, 140, 0, .35);
  border-radius: 999px; padding: 4px 12px; margin-bottom: 14px;
}
.panel .explain { font-size: 14px; color: var(--dim); margin-bottom: 14px; }
.panel ul { color: var(--muted); }

/* Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 7px; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font-family: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 12px 14px; background: #0a0a0a;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%), linear-gradient(135deg, var(--dim) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #4d4a45; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 140, 0, .15); }
.field .locked {
  display: flex; align-items: center; gap: 8px; border: 1px dashed var(--line-2); border-radius: var(--radius-sm);
  padding: 12px 14px; background: rgba(255, 140, 0, .05); font-size: 14px; font-weight: 500; color: var(--muted);
}
.field .hint { font-size: 12.5px; color: var(--dim); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

/* Status / result states */
.result { display: none; margin-top: 16px; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 20px; background: var(--panel); }
.result.show { display: block; }
.result.ok { border-color: rgba(78, 192, 106, .4); background: rgba(78, 192, 106, .06); }
.result.err { border-color: rgba(224, 82, 82, .4); background: rgba(224, 82, 82, .06); }
.result h3 { font-family: var(--display); font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.result p { font-size: 14px; color: var(--muted); }
.result .chain { margin: 10px 0 0; padding-left: 0; list-style: none; counter-reset: chain; }
.result .chain li { counter-increment: chain; display: flex; gap: 10px; padding: 7px 0; font-size: 14px; align-items: baseline; color: var(--muted); }
.result .chain li::before {
  content: counter(chain); flex: 0 0 auto; width: 22px; height: 22px; border: 1px solid rgba(255, 140, 0, .5);
  color: var(--orange); border-radius: 6px; font-size: 11.5px; font-weight: 700; font-family: var(--mono);
  display: inline-flex; align-items: center; justify-content: center;
}
.spinner { display: none; margin-top: 14px; font-size: 13.5px; font-weight: 500; color: var(--dim); }
.spinner.show { display: block; }
.spinner::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 9px; background: var(--orange); border-radius: 50%; animation: pulse 1s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .spinner::before { animation: none; } }

/* Code / embed snippet */
.snippet {
  background: #080808; color: #c9c9c9; border-radius: var(--radius-sm); border: 1px solid var(--line);
  padding: 15px 17px; font-family: var(--mono);
  font-size: 12.5px; overflow-x: auto; white-space: pre; margin-top: 8px;
}
.snippet .o { color: var(--orange); }

/* Footer */
.site-footer { margin-top: 96px; border-top: 1px solid var(--line); background: transparent; padding: 30px 0 40px; position: relative; z-index: 1; }
.site-footer .inner { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: var(--dim); }
.site-footer strong { color: var(--ink); font-family: var(--display); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.site-footer a { color: var(--muted); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255, 140, 0, .5); }
.site-footer a:hover { color: var(--ink); }

/* One-pager pages — dark on screen, ink-on-white in print */
.onepager { max-width: 780px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.onepager .op-head { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 30px 32px; }
.onepager .op-head .kicker { font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .28em; color: var(--orange); }
.onepager h1 { font-family: var(--display); font-size: clamp(30px, 5vw, 46px); font-weight: 800; line-height: 1.06; margin-top: 10px; letter-spacing: -0.02em; color: var(--ink); }
.onepager h1::after { content: "."; color: var(--orange); }
.onepager .tagline { font-size: 16.5px; font-weight: 500; margin-top: 12px; color: var(--muted); }
.onepager section { margin-top: 30px; }
.onepager h2 {
  font-family: var(--display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em;
  border-bottom: 1px solid var(--line); padding-bottom: 7px; margin-bottom: 12px; color: var(--ink);
}
.onepager h2 span { background: none; padding: 0; }
.onepager p { font-size: 15px; margin-bottom: 8px; color: var(--muted); }
.onepager ul { padding-left: 20px; font-size: 15px; color: var(--muted); }
.onepager li { margin-bottom: 6px; }
.onepager .pricing {
  margin-top: 32px; border: 1px solid rgba(255, 140, 0, .45); border-radius: var(--radius); background: rgba(255, 140, 0, .06);
  padding: 18px 24px; display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--display); font-weight: 700; font-size: 15.5px; color: var(--ink);
}
.onepager .sig { margin-top: 22px; font-size: 13px; color: var(--dim); }

/* Agents index */
.op-index { max-width: 780px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.op-index .list { display: grid; gap: 12px; margin-top: 26px; }
.op-index .list a {
  display: flex; align-items: baseline; gap: 16px; text-decoration: none; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  padding: 18px 20px; font-family: var(--display); font-weight: 700; font-size: 16px;
  transition: border-color .15s ease, transform .15s ease;
}
.op-index .list a:hover { border-color: #3d3d3d; transform: translateY(-1px); }
.op-index .list a .n { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: .1em; }

/* Print — one-pagers go back to clean ink-on-white; they get handed to people */
@media print {
  :root { --ink: #111111; }
  html, body { background: #ffffff !important; color: #111111 !important; font-size: 12px; }
  #starfield, .no-print, .site-header, .site-footer, .scroll-cue { display: none !important; }
  .onepager { max-width: none; padding: 0; }
  .onepager .op-head { margin-top: 0; border: 2px solid #111; border-radius: 10px; background: #fff; padding: 14px 18px; }
  .onepager .op-head .kicker { color: #b06000; }
  .onepager h1 { color: #111; font-size: 24px; }
  .onepager h1::after { color: #ff8c00; }
  .onepager .tagline { color: #333; font-size: 13px; margin-top: 6px; }
  .onepager section { margin-top: 12px; }
  .onepager h2 { color: #111; border-bottom: 2px solid #111; font-size: 11px; margin-bottom: 4px; padding-bottom: 2px; }
  .onepager p, .onepager ul { color: #222; font-size: 11.5px; }
  .onepager li { margin-bottom: 2px; }
  .onepager .pricing { border: 2px solid #111; background: #fff; color: #111; padding: 10px 16px; font-size: 13px; margin-top: 12px; border-radius: 10px; }
  .onepager .sig { color: #555; }
  @page { margin: 14mm; }
}

/* Mobile: activity feed rows wrap — detail gets its own full-width line */
@media (max-width: 600px) {
  .activity-row { flex-wrap: wrap; }
  .activity-row .what { flex: 1 1 100%; order: 4; }
}

/* ============================================================
   Hero legibility over the particle/smoke backdrop.
   Every line of hero copy must read crisply against the moving
   plasma + orange particles WITHOUT killing the effect: the copy
   gets a soft radial scrim (a dark cloud that fades to nothing,
   not a hard panel) plus a dark text-shadow halo. The headline
   itself is drawn by the particles and stays untouched.
   ============================================================ */
.hero.js-particles .kicker-line {
  color: #ece9e4;
  text-shadow: 0 1px 3px rgba(0,0,0,.96), 0 0 16px rgba(0,0,0,.85);
  padding: 7px 20px;
  background: radial-gradient(ellipse at center,
      rgba(4,4,4,.70) 0%, rgba(4,4,4,.44) 55%, rgba(4,4,4,0) 84%);
  border-radius: 999px;
}
.hero.js-particles .sub {
  color: #eeece8;
  text-shadow: 0 1px 3px rgba(0,0,0,.96), 0 0 18px rgba(0,0,0,.92);
  padding: 16px 30px;
  background: radial-gradient(ellipse at center,
      rgba(4,4,4,.78) 0%, rgba(4,4,4,.55) 48%, rgba(4,4,4,0) 82%);
  border-radius: 22px;
}
.hero.js-particles .sub strong { color: #ffffff; font-weight: 600; }
/* Badges float over particles too — give them a solid dark chip backing. */
.hero.js-particles .badge {
  background: rgba(6,6,6,.72);
  border-color: var(--line-2);
  color: #e8e8e8;
}
.hero.js-particles .badge.orange {
  color: var(--orange);
  border-color: rgba(255,140,0,.55);
}
