/* DIRD — Delegate Institutional Routing Division
   Command-deck design system: deep warm black, amber signal, mono accents.
   The Financial, Telephonic & Digital Operating System for the Incarcerated. */

:root {
  --bg: #131109;
  --bg-raise: #1B1810;
  --surface: #211D13;
  --surface-2: #2A251A;
  --border: #3B3423;
  --border-strong: #55492E;
  --text: #EFE7D4;
  --text-muted: #A89C82;
  --text-dim: #7D7460;
  --amber: #E8AC3F;
  --amber-strong: #F5C566;
  --amber-deep: #B5822A;
  --amber-tint: rgba(232, 172, 63, 0.10);
  --green: #7FB069;
  --green-tint: rgba(127, 176, 105, 0.12);
  --blue: #6FA8C7;
  --red: #D97B5C;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --radius: 4px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--amber-strong); text-decoration-color: rgba(232,172,63,.4); }
a:hover { color: var(--amber); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--amber); color: #131109; padding: 10px 16px;
  font-family: var(--mono); font-size: 13px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- header ---------- */
.site-head {
  border-bottom: 1px solid var(--border);
  background: rgba(19, 17, 9, 0.92);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-top: 13px; padding-bottom: 13px;
}
.brand { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.brand .mark {
  font-family: var(--mono); font-weight: 700; font-size: 20px;
  letter-spacing: 0.08em; color: var(--amber);
}
.brand .full {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
}
@media (max-width: 900px) { .brand .full { display: none; } }
.site-head nav { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.site-head nav a {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.03em;
  color: var(--text-muted); text-decoration: none;
  padding: 6px 10px; border-radius: var(--radius); white-space: nowrap;
}
.site-head nav a:hover { color: var(--text); background: var(--surface-2); }
.site-head nav a.active { color: var(--text); }
.site-head nav a.cta {
  color: var(--amber); border: 1px solid var(--border-strong);
  margin-left: 8px; padding: 7px 12px;
}
.site-head nav a.cta:hover { background: var(--amber-tint); }
.site-head nav a.cta-solid {
  color: #17130a; background: var(--amber); font-weight: 700;
  border: 1px solid var(--amber); margin-left: 8px; padding: 7px 14px;
}
.site-head nav a.cta-solid:hover { background: var(--amber-strong); color: #17130a; }
@media (max-width: 680px) {
  .site-head nav a.navlink { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--mono); font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em; text-decoration: none;
  padding: 13px 22px; border-radius: var(--radius); cursor: pointer;
  border: 1px solid var(--amber); color: #17130a; background: var(--amber);
  transition: background .12s ease;
}
.btn:hover { background: var(--amber-strong); color: #17130a; }
.btn.ghost { background: transparent; color: var(--amber); }
.btn.ghost:hover { background: var(--amber-tint); color: var(--amber-strong); }
.btn.lg { font-size: 15px; padding: 15px 28px; }
.btn.block { display: block; width: 100%; text-align: center; border: none; }

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  padding: 3px 8px; border-radius: 100px; white-space: nowrap;
}
.badge.live { color: var(--green); background: var(--green-tint); border: 1px solid rgba(127,176,105,.35); }
.badge.live::before { content: "●"; font-size: 8px; }
.badge.soon { color: var(--amber); background: var(--amber-tint); border: 1px solid var(--border-strong); }
.badge.soon::before { content: "◔"; font-size: 10px; }

/* ---------- hero ---------- */
.hero {
  padding: 88px 0 68px; border-bottom: 1px solid var(--border);
  background:
    radial-gradient(1100px 460px at 82% -12%, rgba(232,172,63,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-raise), var(--bg));
}
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); margin: 0 0 18px;
}
.eyebrow .sep { color: var(--text-dim); }
h1 {
  font-size: clamp(36px, 5.6vw, 58px);
  line-height: 1.06; letter-spacing: -0.018em;
  font-weight: 800; margin: 0 0 20px; max-width: 18ch;
  text-wrap: balance;
}
h1 em { color: var(--amber); font-style: normal; }
.hero .sub {
  font-size: 19px; color: var(--text-muted); max-width: 58ch; margin: 0 0 34px;
}
.hero .sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .tel {
  font-family: var(--mono); font-size: 14px; color: var(--text-muted);
}
.hero-actions .tel b { color: var(--amber-strong); font-size: 16px; }

.callbox {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 18px 26px;
}
.callbox .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px;
}
.callbox .number {
  font-family: var(--mono); font-size: clamp(22px, 4vw, 30px);
  font-weight: 700; letter-spacing: 0.02em;
}
.callbox .number a { color: var(--amber-strong); text-decoration: none; }
.callbox .hint { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ---------- sections ---------- */
section { padding: 66px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 68px; }
section.alt { background: var(--bg-raise); }
section:last-of-type { border-bottom: none; }
.sec-tag {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin: 0 0 10px;
}
.sec-tag .idx { color: var(--amber); margin-right: 8px; }
.sec-title {
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.015em;
  margin: 0 0 16px; max-width: 22ch; line-height: 1.15; text-wrap: balance;
}
.sec-lede {
  font-size: clamp(19px, 2.4vw, 22px); font-weight: 600; color: var(--text);
  margin: 0 0 16px; max-width: 40ch; line-height: 1.3; text-wrap: balance;
}
p { max-width: 68ch; }
.muted { color: var(--text-muted); }
.lead { font-size: 18.5px; color: var(--text-muted); }

/* thesis / dignity block */
.thesis { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .thesis { grid-template-columns: 1fr; gap: 26px; } }
.thesis p { font-size: 18px; color: var(--text-muted); }
.thesis p strong { color: var(--text); }
.pullquote {
  border-left: 3px solid var(--amber); padding: 4px 0 4px 22px;
  font-size: 20px; line-height: 1.4; color: var(--text); font-weight: 500;
  text-wrap: balance;
}
.pullquote .src { display: block; margin-top: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 6px; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.stat .big { font-family: var(--mono); font-size: 30px; font-weight: 700; color: var(--amber); line-height: 1.1; }
.stat .cap { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 22px 24px;
}
.step .n {
  font-family: var(--mono); font-size: 24px; font-weight: 700;
  color: var(--amber); margin-bottom: 10px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; font-size: 15px; color: var(--text-muted); }

/* ---------- service cards ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 820px) { .services { grid-template-columns: 1fr; } }
.svc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 24px 22px; position: relative;
  display: flex; flex-direction: column;
}
.svc.feature { border-color: var(--border-strong); border-left: 3px solid var(--amber); }
.svc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.svc-ico {
  width: 40px; height: 40px; flex: none; border-radius: var(--radius);
  background: var(--amber-tint); border: 1px solid var(--border-strong);
  display: grid; place-items: center; font-size: 20px;
}
.svc h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.01em; }
.svc p { margin: 0 0 12px; font-size: 15px; color: var(--text-muted); }
.svc .price {
  font-family: var(--mono); font-size: 13px; color: var(--amber-strong);
  margin-top: auto; padding-top: 6px;
}
.svc .price span { color: var(--text-dim); }

/* ---------- economy narrative ---------- */
.economy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-top: 8px; }
@media (max-width: 860px) { .economy { grid-template-columns: 1fr; } }
.flowcard {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 8px 4px; font-family: var(--mono);
}
.flowrow { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px dashed var(--border); }
.flowrow:last-child { border-bottom: none; }
.flowrow .who { flex: none; width: 128px; color: var(--amber-strong); font-size: 13px; }
.flowrow .arrow { color: var(--text-dim); flex: none; }
.flowrow .act { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.flowrow .amt { margin-left: auto; color: var(--green); font-size: 13px; flex: none; }

.story h3 { font-size: 20px; margin: 0 0 12px; }
.story p { color: var(--text-muted); font-size: 16px; }
.story p strong { color: var(--text); }

/* pricing table */
.ptable { margin-top: 30px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.prow { display: grid; grid-template-columns: 1.5fr auto; gap: 14px; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border); background: var(--surface); }
.prow:last-child { border-bottom: none; }
.prow:nth-child(even) { background: var(--bg-raise); }
.prow .svc-name { font-weight: 600; }
.prow .svc-name small { display: block; font-weight: 400; color: var(--text-dim); font-size: 13px; font-family: var(--sans); }
.prow .rate { font-family: var(--mono); color: var(--amber-strong); font-size: 14px; text-align: right; }
.prow .rate .soon { color: var(--text-dim); }

/* feature list */
.canlist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 28px 0 0; padding: 0; list-style: none; }
@media (max-width: 680px) { .canlist { grid-template-columns: 1fr; } }
.canlist li {
  padding: 12px 14px 12px 38px; position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15.5px;
}
.canlist li::before {
  content: "▸"; position: absolute; left: 15px; top: 11px;
  color: var(--amber); font-family: var(--mono);
}
.canlist li strong { display: block; font-size: 15.5px; }
.canlist li span { color: var(--text-muted); font-size: 14px; }

/* family / trust panel */
.trust-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: start; margin-top: 30px; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }
.assure {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 22px 24px;
}
.assure h3 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin: 0 0 14px;
}
.assure ul { margin: 0; padding: 0; list-style: none; }
.assure li {
  padding: 9px 0 9px 28px; position: relative; font-size: 15px;
  border-bottom: 1px dashed var(--border);
}
.assure li:last-child { border-bottom: none; }
.assure li::before {
  content: "✓"; position: absolute; left: 2px; top: 9px;
  color: var(--green); font-weight: 700;
}
.assure li.never::before { content: "✕"; color: var(--red); }
.assure li strong { color: var(--text); }

/* FAQ */
.faq { max-width: 820px; margin-top: 26px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 16.5px;
  list-style: none; position: relative; padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 20px; color: var(--amber);
}
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 20px 18px; color: var(--text-muted); font-size: 15.5px; }
.faq .a p { margin: 0 0 10px; }
.faq .a p:last-child { margin-bottom: 0; }
.faq .a strong { color: var(--text); }

/* support */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
@media (max-width: 680px) { .support-grid { grid-template-columns: 1fr; } }
.support-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.support-card .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.support-card .v { font-size: 16px; }
.support-card .v a { font-family: var(--mono); font-size: 15.5px; }
.support-card p { font-size: 14px; color: var(--text-muted); margin: 8px 0 0; }

/* CTA band */
.band { background: var(--bg-raise); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.band .wrap { padding: 56px 24px; text-align: center; }
.band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.015em; margin: 0 auto 14px; max-width: 20ch; text-wrap: balance; }
.band p { margin: 0 auto 26px; color: var(--text-muted); max-width: 52ch; }
.band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- figures / diagrams ---------- */
.figure { margin: 34px 0 4px; }
.svgwrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-raise), var(--surface)); padding: 26px 20px; }
.svgwrap svg { display: block; margin: 0 auto; max-width: 100%; height: auto; }
.figcap { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--text-dim); text-align: center; margin-top: 12px; text-transform: uppercase; }
/* SVG shared tokens */
.d-box { fill: var(--surface); stroke: var(--border-strong); }
.d-box-amber { fill: var(--amber-tint); stroke: var(--amber-deep); }
.d-line { stroke: var(--border-strong); stroke-width: 1.6; fill: none; }
.d-line-amber { stroke: var(--amber-deep); stroke-width: 1.6; fill: none; }
.d-t { fill: var(--text); font-family: var(--sans); font-weight: 600; }
.d-tm { fill: var(--text-muted); font-family: var(--mono); }
.d-amber { fill: var(--amber); font-family: var(--mono); font-weight: 700; }
.d-node { fill: var(--amber); }

/* ---------- portal / manage-online teaser ---------- */
.portal-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center; margin-top: 30px; }
@media (max-width: 860px) { .portal-hero { grid-template-columns: 1fr; } }
.portal-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.portal-list li { padding-left: 26px; position: relative; color: var(--text-muted); font-size: 15.5px; }
.portal-list li::before { content: "▸"; position: absolute; left: 4px; color: var(--amber); font-family: var(--mono); }
.portal-card { background: var(--surface); border: 1px solid var(--border-strong); border-left: 3px solid var(--amber); border-radius: var(--radius); padding: 26px; }
.portal-card .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.portal-card .row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; color: var(--text-muted); }
.portal-card .row:last-child { border-bottom: none; }
.portal-card .row .em { color: var(--amber); font-family: var(--mono); flex: none; }

/* ---------- fund page ---------- */
.fund-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; margin-top: 34px; }
@media (max-width: 860px) { .fund-grid { grid-template-columns: 1fr; } }
.fundcard {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 28px;
}
.fundcard h3 { margin: 0 0 6px; font-size: 20px; }
.fundcard .sub { color: var(--text-muted); font-size: 14.5px; margin: 0 0 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.field input[type=text] {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--radius); color: var(--text); font-family: var(--mono);
  font-size: 18px; padding: 13px 15px; letter-spacing: .04em;
}
.field input::placeholder { color: var(--text-dim); letter-spacing: .02em; }
.field .help { font-size: 12.5px; color: var(--text-dim); margin-top: 7px; }
.amt-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.amt-chips label {
  flex: 1; min-width: 72px; text-transform: none; letter-spacing: 0; margin: 0;
  position: relative;
}
.amt-chips input { position: absolute; opacity: 0; pointer-events: none; }
.amt-chips .chip {
  display: block; text-align: center; cursor: pointer;
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 12px 8px; font-family: var(--mono);
  font-size: 16px; color: var(--text); transition: all .1s ease;
}
.amt-chips input:checked + .chip { background: var(--amber-tint); border-color: var(--amber); color: var(--amber-strong); }
.amt-chips .chip:hover { border-color: var(--amber-deep); }
.custom-amt { margin-top: 12px; }
.custom-amt input {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--radius); color: var(--text); font-family: var(--mono);
  font-size: 16px; padding: 11px 15px;
}
.securenote { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 12.5px; color: var(--text-dim); font-family: var(--mono); }
.stripe-line { margin-top: 14px; text-align: center; font-size: 12px; color: var(--text-dim); }

/* accepted payment methods strip */
.paymethods { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 18px; }
.pm-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-right: 3px; }
.pm { font-size: 11px; font-weight: 700; letter-spacing: .01em; padding: 5px 9px; border-radius: 5px; line-height: 1; white-space: nowrap; background: #fff; color: #1a1a1a; border: 1px solid rgba(255,255,255,.14); }
.pm-visa { background: #1434CB; color: #fff; }
.pm-mc { background: #201d1a; color: #fff; }
.pm-amex { background: #016FD0; color: #fff; }
.pm-apple { background: #000; color: #fff; }
.pm-google { background: #fff; color: #3c4043; }
.pm-link { background: #00D66F; color: #05240f; }
.pm-cash { background: #00D632; color: #04210d; }
.pm-amazon { background: #232F3E; color: #FF9900; }
.pm-klarna { background: #FFB3C7; color: #17120f; }
.pm-bank { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }

/* ---------- footer ---------- */
.site-foot {
  border-top: 1px solid var(--border);
  padding: 40px 0 52px;
  font-size: 14px; color: var(--text-dim);
}
.site-foot .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-foot .fbrand { font-family: var(--mono); color: var(--text-muted); font-size: 12.5px; letter-spacing: 0.06em; }
.site-foot nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-foot a { color: var(--text-muted); text-decoration: none; font-size: 13.5px; }
.site-foot a:hover { color: var(--amber); }
.site-foot .addr { margin-top: 14px; font-size: 13px; line-height: 1.7; max-width: 60ch; }
.site-foot .disclaimer { margin-top: 18px; font-size: 12px; color: var(--text-dim); max-width: 82ch; line-height: 1.6; }

/* ---------- legal pages ---------- */
.legal { padding: 56px 0 90px; }
.legal .doc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 44px; max-width: 820px;
}
@media (max-width: 640px) { .legal .doc { padding: 26px 20px; } }
.legal h1 { font-size: clamp(26px, 4vw, 34px); max-width: none; }
.legal .effective {
  font-family: var(--mono); font-size: 12.5px; color: var(--text-dim);
  margin-bottom: 28px;
}
.legal h2 {
  font-family: var(--sans); font-size: 19px; font-weight: 700;
  text-transform: none; letter-spacing: -0.005em; color: var(--text);
  margin: 30px 0 8px;
}
.legal p { color: var(--text-muted); font-size: 15.5px; }
.legal p strong { color: var(--text); }

/* ---------- Phase 1: Service Credits / Concierge Retainer ---------- */
.badge.phase2 {
  color: var(--blue); background: rgba(111, 168, 199, 0.12);
  border: 1px solid rgba(111, 168, 199, 0.35);
}
.badge.phase2::before { content: "◇"; font-size: 9px; }

.notice {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-left: 3px solid var(--amber); border-radius: var(--radius);
  padding: 20px 24px; margin: 28px 0;
}
.notice h3 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin: 0 0 10px;
}
.notice p { font-size: 15px; margin: 0 0 10px; }
.notice p:last-child { margin-bottom: 0; }
.notice strong { color: var(--text); }

.buckets { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
@media (max-width: 820px) { .buckets { grid-template-columns: 1fr; } }
.bucket {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 26px;
}
.bucket .btag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
}
.bucket h3 { margin: 10px 0 10px; font-size: 20px; }
.bucket > p { font-size: 15px; color: var(--text-muted); margin: 0; }
.bucket ul { margin: 14px 0 0; padding: 0; list-style: none; }
.bucket li {
  padding: 8px 0 8px 24px; position: relative; font-size: 14.5px;
  color: var(--text-muted); border-bottom: 1px dashed var(--border);
}
.bucket li:last-child { border-bottom: none; }
.bucket li::before {
  content: "→"; position: absolute; left: 0; top: 8px;
  color: var(--amber-deep); font-weight: 700;
}
.bucket li.no::before { content: "✕"; color: var(--red); }
.bucket li strong { color: var(--text); }

/* ───────────────────────────────────────────────────────────────────────────
   SERVICE NETWORK MAP  (#services)
   An establishing visual: the facility, with each service as a node you can
   open. Adapted from the standalone at lcl.onl/5 into this design system.

   Two deliberate changes from that original:
     1. Every node carries a status badge. The original showed Legal AI and
        Voice-Assisted Commerce with no marker, which reads as "available now"
        for services that are not built yet.
     2. It collapses below 900px. The original positions fixed-width (220px)
        boxes at percentage offsets with no media query, so on a phone the
        nodes overlap into an unreadable stack. Here the overlay is hidden on
        small screens and the service cards below carry the same information.
   ─────────────────────────────────────────────────────────────────────────── */

.netmap {
  position: relative;
  margin: 34px 0 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0B0A06;
}
.netmap > img {
  width: 100%;
  display: block;
  filter: brightness(.62) saturate(.9);
}

.netmap-cap {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 10px 0 0;
}

.node {
  position: absolute;
  width: 232px;
  z-index: 10;
  text-align: left;
  padding: 11px 13px;
  background: rgba(19, 17, 9, .93);
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--amber);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: width .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.node:hover { background: rgba(19,17,9,.99); box-shadow: 0 0 0 1px var(--amber-deep), 0 8px 26px rgba(0,0,0,.6); }
.node[aria-expanded="true"] {
  width: 330px; z-index: 50;
  background: rgba(11,10,6,.99);
  box-shadow: 0 0 0 1px var(--amber), 0 14px 40px rgba(0,0,0,.75);
}

/* Two rows: icon+title, then the status badge. A single flex row let the badge
   compete with the title for width, wrapping "Keep Your Own Number" onto four lines. */
.node-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "ico title" "badge badge";
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 8px;
}
.node-ico { grid-area: ico; }
.node-title { grid-area: title; }
.node .badge { grid-area: badge; justify-self: start; }
.node-ico { font-size: 15px; line-height: 1; align-self: start; margin-top: 1px; }
.node-title {
  font-size: 14.5px; line-height: 1.25; font-weight: 600;
  letter-spacing: -.01em; color: var(--amber-strong);
}
.node .badge { transform: scale(.86); transform-origin: left center; }
.node .short { display: block; font-size: 13px; line-height: 1.45; color: var(--text-muted); }

.node .more {
  display: none; margin-top: 10px; padding-top: 9px;
  border-top: 1px solid var(--border);
  font-size: 13px; line-height: 1.55; color: var(--text-muted);
}
.node[aria-expanded="true"] .more { display: block; }
.node .more .para { display: block; margin: 0 0 8px; }
.node .more .para:last-child { margin-bottom: 0; }
.node .more .para.dim { color: var(--text-dim); }
.node .more .caveat {
  display: block; margin-top: 9px; padding-left: 9px;
  border-left: 2px solid var(--amber-deep);
  color: var(--text-dim); font-size: 12.5px; font-style: italic;
}

.node .hint {
  display: block; margin-top: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--amber-deep);
}
.node[aria-expanded="true"] .hint { display: none; }

/* Node placement */
.n1 { top:  9%; left:  4%; }
.n2 { top:  5%; left: 37%; }
.n3 { top: 11%; right: 4%; }
.n4 { top: 38%; left:  2%; }
.n5 { top: 43%; left: 35%; }
.n6 { top: 36%; right: 3%; }
.n7 { top: 72%; left: 16%; }
.n8 { top: 69%; right: 12%; }

/* Beacons on the ground + the line up to each node */
.beacon {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-strong); z-index: 5;
  box-shadow: 0 0 8px var(--amber), 0 0 18px rgba(232,172,63,.55);
  animation: beacon-pulse 3.2s ease-in-out infinite;
}
.b1 { top:24%; left:13%; animation-delay:0s }
.b2 { top:20%; left:44%; animation-delay:.4s }
.b3 { top:27%; left:79%; animation-delay:.8s }
.b4 { top:54%; left:11%; animation-delay:1.2s }
.b5 { top:59%; left:42%; animation-delay:1.6s }
.b6 { top:53%; left:82%; animation-delay:2.0s }
.b7 { top:86%; left:24%; animation-delay:2.4s }
.b8 { top:83%; left:74%; animation-delay:2.8s }

@keyframes beacon-pulse { 0%,100% { opacity:.45; transform:scale(.85) } 50% { opacity:1; transform:scale(1.15) } }

.link { position: absolute; border-left: 1px dashed rgba(232,172,63,.45); z-index: 4; }
.l1 { top: 9%; left:13%; height:15% }
.l2 { top: 5%; left:44%; height:15% }
.l3 { top:11%; left:79%; height:16% }
.l4 { top:38%; left:11%; height:16% }
.l5 { top:43%; left:42%; height:16% }
.l6 { top:36%; left:82%; height:17% }
.l7 { top:72%; left:24%; height:14% }
.l8 { top:69%; left:74%; height:14% }

@media (prefers-reduced-motion: reduce) {
  .beacon { animation: none; opacity: .8; }
  .node { transition: none; }
}

/* Below 900px the overlay cannot lay out honestly — hide it and let the
   service cards carry the content. */
@media (max-width: 900px) {
  .netmap { display: none; }
  .netmap-cap { display: none; }
}
