/* ═══════════════════════════════════════════════════════════════
   Industries v3 — homepage parity, light, animated.
   Loads AFTER responsive.css + homepage.css and reuses their
   components. Sections are plain parchment like the homepage; the
   blueprint grid lives only INSIDE drawing plates, exactly like the
   homepage's hero-stage-plate / plate-slot treatment.
   ═══════════════════════════════════════════════════════════════ */
.ind-body { margin: 0; background: var(--parchment); color: var(--ink); font-family: var(--sans); }
.ind-body * { box-sizing: border-box; }
.ind-body img { max-width: 100%; }

/* ── section shells (homepage rhythm) ───────────────────────── */
.isx { padding: var(--space-24, 96px) 48px; border-top: 1px solid var(--border); background: var(--parchment); }
.isx-inner { max-width: 1280px; margin: 0 auto; }
.isx .kicker { margin-bottom: var(--space-8, 32px); }

/* hero */
.ihero { padding-top: 44px; padding-bottom: var(--space-24, 96px); border-top: 0; }
.crumbs { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gravel); margin-bottom: 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs a { color: inherit; text-decoration: none; border-bottom: 0; }
.crumbs a:hover { color: var(--ink); }
.ind-display { font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.03; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 var(--space-8, 32px);
  max-width: 940px; text-wrap: balance; }
.ind-display em { font-style: italic; }
.ihero .sxn-lede { margin-bottom: var(--space-12, 48px); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--space-8, 32px); }
.btn-row-center { justify-content: center; }
.track-box { display: inline-flex; flex-wrap: wrap; border: 1px solid var(--border); margin-top: 26px; background: var(--chalk); }
.track-box span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  padding: 10px 14px; border-right: 1px solid var(--border); color: var(--graphite); }
.track-box span:last-child { border-right: 0; }
.track-box .track-label { background: var(--stone); color: var(--ink); }

/* ── drawing plates (homepage hero-stage-plate treatment) ───── */
.bp-plate { position: relative; background: var(--chalk); border: 1px solid rgba(16,25,43,0.1);
  border-radius: 3px; padding: 28px 24px 20px;
  box-shadow: 0 1px 0 rgba(16,25,43,0.04), 0 20px 60px -20px rgba(16,25,43,0.10);
  background-image: linear-gradient(rgba(16,25,43,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,25,43,0.045) 1px, transparent 1px);
  background-size: 48px 48px; overflow: hidden; margin-bottom: var(--space-8, 32px); }
.bp-plate::before, .bp-plate::after { content: ""; position: absolute; width: 22px; height: 22px;
  border: 1px solid rgba(16,25,43,0.28); pointer-events: none; }
.bp-plate::before { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.bp-plate::after { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.plate-tag { position: absolute; top: 10px; left: 14px; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gravel); }
.bp-svg { width: 100%; height: auto; display: block; }
.uc-card .bp-plate { margin-bottom: 18px; padding: 14px 10px 8px; background-size: 32px 32px; }
.uc-card .bp-plate::before, .uc-card .bp-plate::after { width: 14px; height: 14px; }

/* ── pattern panels ─────────────────────────────────────────── */
.pat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); }
.pat-grid > .pat-panel:nth-child(4n+1):last-child,
.pat-grid > .reveal:nth-child(4n+1):last-child > .pat-panel { grid-column: 1 / -1; }
@media (max-width: 1000px) {
  .pat-grid { grid-template-columns: 1fr 1fr; }
  .pat-grid > .pat-panel:nth-child(odd):last-child,
  .pat-grid > .reveal:nth-child(odd):last-child > .pat-panel { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .pat-grid { grid-template-columns: 1fr; }
}
.pat-grid .reveal { display: contents; }
.pat-panel { background: var(--chalk); padding: 30px 28px; }
.pat-panel h3 { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.25; margin: 0 0 10px; color: var(--ink); }
.pat-panel p { font-size: 14px; line-height: 1.6; color: var(--graphite); margin: 0; }

/* ── likely stack ───────────────────────────────────────────── */
.stack-rows { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.stack-row { display: flex; gap: 18px; align-items: flex-start; }
.stack-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gravel); padding-top: 8px; min-width: 82px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ichip { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft);
  border: 1px solid var(--border); padding: 7px 12px; background: var(--chalk); text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.chip-link:hover { border-color: var(--blueprint); color: var(--blueprint); transform: translateY(-1px); }
.stack-note { font-family: var(--serif); font-size: 15.5px; color: var(--graphite); max-width: 780px; }

/* ── process + rollout captions ─────────────────────────────── */
.arc-feet { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 1120px; }
.arc-foot { font-family: var(--serif); font-size: 16px; color: var(--ink); }
.phase-lines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.phase-line .ph-num { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--rust); }
.phase-line p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 8px 0 0; }

/* ── use cases ──────────────────────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.uc-grid .reveal { display: contents; }
.uc-card { border: 1px solid var(--border); background: var(--chalk); padding: 26px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.uc-card:hover { border-color: rgba(16,25,43,0.3); transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(16,25,43,0.04), 0 20px 40px -28px rgba(16,25,43,0.16); }
.uc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--rust); text-transform: uppercase; }
.uc-title { font-family: var(--serif); font-size: 21px; font-weight: 400; margin: 10px 0 16px; line-height: 1.25; color: var(--ink); }
.uc-title em { font-style: italic; }
.uc-rows { display: flex; flex-direction: column; gap: 10px; }
.uc-row { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-items: start; }
.uc-lab { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; padding-top: 4px; }
.lab-today { color: var(--gravel); }
.lab-instead { color: var(--blueprint); }
.uc-row p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ── quote / agents / reference / proof / trust ─────────────── */
.quote-strip { background: var(--stone); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 44px 48px; text-align: center; }
.quote-strip p { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 26px); color: var(--ink); margin: 0 auto; max-width: 840px; }
.quote-strip em { font-style: italic; }
.agents-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.agents-grid .reveal { display: contents; }
.agent-card { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); background: var(--chalk);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; padding: 14px 16px; color: var(--ink-soft);
  transition: border-color 0.2s ease, transform 0.2s ease; }
.agent-card:hover { border-color: var(--blueprint); transform: translateY(-1px); }
.ag-dot { width: 7px; height: 7px; border: 1.4px solid var(--blueprint); border-radius: 50%; flex: 0 0 auto; }
.ref-band { background: var(--chalk); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 52px 48px; }
.ref-band > div { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; text-align: center; }
.ref-logo { height: 54px; width: auto; }
.ref-sentence { font-family: var(--serif); font-size: 17.5px; color: var(--ink); margin: 0; max-width: 480px; }
.ref-cta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--rust); border: 1px solid var(--rust);
  padding: 11px 18px; text-decoration: none; transition: all var(--ease, 0.2s ease); }
.ref-cta:hover { background: var(--rust); color: var(--chalk); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stats .reveal { display: contents; }
.stat-card { background: var(--chalk); padding: 32px 26px; }
.stat-big { font-family: var(--serif); font-size: 27px; display: block; margin-bottom: 10px; color: var(--ink); }
.stat-cap { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--gravel); line-height: 1.7; }
.trust-strip { background: var(--parchment); border-top: 1px solid var(--border); padding: 22px 48px; text-align: center; }
.trust-strip p { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--gravel); margin: 0; }

/* ── pilot / faq / closing / crosslinks ─────────────────────── */
.pilot-timeline { display: flex; flex-wrap: wrap; border: 1px solid var(--border); margin: 4px 0 8px; width: fit-content; max-width: 100%; background: var(--chalk); }
.pt-step { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; padding: 11px 16px;
  border-right: 1px solid var(--border); color: var(--ink-soft); }
.pt-step:last-child { border-right: 0; background: var(--stone); }
.faqs { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { font-family: var(--serif); font-size: 17.5px; color: var(--ink); padding: 21px 30px 21px 2px;
  cursor: pointer; list-style: none; position: relative; transition: color 0.2s ease; }
.faq-item summary:hover { color: var(--blueprint); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; font-family: var(--mono); color: var(--gravel); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { font-size: 14px; line-height: 1.62; color: var(--graphite); margin: 0 0 22px; max-width: 720px; }
.closing { text-align: center; padding-top: var(--space-24, 96px); padding-bottom: var(--space-24, 96px); }
.closing-line { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15;
  margin: 0 auto 8px; max-width: 860px; text-wrap: balance; color: var(--ink); }
.closing-line em { font-style: italic; }
.xlinks { padding-top: 44px; padding-bottom: 64px; }
.xl-row { display: flex; flex-wrap: wrap; gap: 10px; }
.xl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; border: 1px solid var(--border);
  background: var(--chalk); color: var(--ink-soft); padding: 11px 16px; text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.xl:hover { border-color: var(--blueprint); color: var(--blueprint); transform: translateY(-1px); }
.xl .arr { font-size: 11px; opacity: 0.7; }

/* ── hub / industry grids ───────────────────────────────────── */
.hub-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.hub-grid .reveal { display: contents; }
.hub-panel { border: 1px solid var(--border); background: var(--chalk); padding: 34px 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.hub-panel:hover { border-color: rgba(16,25,43,0.3); box-shadow: 0 20px 40px -30px rgba(16,25,43,0.16); }
.hub-head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.ind-icon { width: 46px; height: 46px; flex: 0 0 auto; }
.hub-panel h2 { font-family: var(--serif); font-size: 25px; font-weight: 400; margin: 0; }
.hub-panel h2 a { color: var(--ink); text-decoration: none; border-bottom: 0; transition: color 0.2s ease; }
.hub-panel h2 a:hover { color: var(--blueprint); }
.hub-panel > p { font-size: 14px; color: var(--graphite); margin: 0 0 16px; max-width: 640px; }
.vp-cta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--rust);
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; text-decoration: none; border-bottom: 0; }
.vp-cta .arr { transition: transform 0.2s ease; }
.hub-panel:hover .vp-cta .arr, .vert-panel:hover .vp-cta .arr { transform: translateX(3px); }
.vert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }
.vert-grid .reveal { display: contents; }
.vert-panel { border: 1px solid var(--border); background: var(--chalk); padding: 28px 26px; display: block;
  text-decoration: none; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.vert-panel:hover { border-color: rgba(16,25,43,0.3); transform: translateY(-2px);
  box-shadow: 0 20px 40px -30px rgba(16,25,43,0.16); }
.vert-panel .ind-icon { width: 38px; height: 38px; margin-bottom: 12px; }
.vert-panel h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin: 0 0 12px; color: var(--ink); }
.vert-panel ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.7; color: var(--graphite); }

/* ── footer ─────────────────────────────────────────────────── */
.ind-footer { background: var(--parchment); border-top: 1px solid var(--border); color: var(--ink); padding: 64px 48px 30px; }
.ind-footer a { text-decoration: none; border-bottom: 0; }
.ind-footer-cols { display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 34px; max-width: 1280px; margin: 0 auto 44px; }
.ind-footer-cols > div { display: flex; flex-direction: column; gap: 9px; }
.f-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gravel); margin-bottom: 6px; text-transform: uppercase; }
.ind-footer-cols a { font-size: 13px; color: var(--ink-soft); transition: color 0.2s ease; }
.ind-footer-cols a:hover { color: var(--blueprint); }
.ind-footer-line { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; color: var(--gravel);
  text-align: center; border-top: 1px solid var(--border); padding-top: 24px; max-width: 1280px; margin: 0 auto; }

/* mobile industries rows in the homepage mobile menu */
.mobile-menu-item.mm-sub { padding: 13px 4px 13px 36px !important; font-size: 17px !important; opacity: 0.9; }

/* ── responsive ─────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .uc-grid { grid-template-columns: 1fr; }
  .phase-lines, .arc-feet { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  .isx { padding: var(--space-16, 64px) 24px; }
  .quote-strip, .trust-strip, .ref-band { padding-left: 24px; padding-right: 24px; }
  .ind-footer { padding: 48px 24px 24px; }
  .ind-footer-cols { grid-template-columns: 1fr; }
  .uc-row { grid-template-columns: 64px 1fr; gap: 10px; }
  .bp-plate { padding: 18px 12px 12px; background-size: 32px 32px; }
  .trust-strip p { letter-spacing: 0.1em; }
}
@media (prefers-reduced-motion: reduce) {
  .uc-card, .agent-card, .vert-panel, .hub-panel, .xl, .ichip, .vp-cta .arr { transition: none !important; transform: none !important; }
  .bp-svg .d { stroke-dashoffset: 0 !important; }
  .bp-svg .op { opacity: 1 !important; }
}

/* custom agents card (#10) */
.agent-custom { border-color: rgba(154,58,31,0.45); color: var(--ink); }
.agent-custom:hover { border-color: var(--rust); }
.ag-dot-rust { border-color: var(--rust); background: var(--rust); }

/* use-case overflow accordion (keeps pages calm) */
.uc-more-label { font-family: var(--serif); font-size: 16px; color: var(--graphite); margin: 34px 0 14px; }
.uc-acc-list { border-top: 1px solid var(--border); }
.uc-acc { border-bottom: 1px solid var(--border); }
.uc-acc summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 18px;
  padding: 18px 34px 18px 2px; position: relative; transition: background 0.2s ease; }
.uc-acc summary::-webkit-details-marker { display: none; }
.uc-acc summary::after { content: "+"; position: absolute; right: 8px; top: 18px; font-family: var(--mono); color: var(--gravel); }
.uc-acc[open] summary::after { content: "–"; }
.uc-acc summary:hover { background: rgba(16,25,43,0.02); }
.uc-acc summary .uc-tag { flex: 0 0 190px; }
.uc-acc-title { font-family: var(--serif); font-size: 18px; color: var(--ink); line-height: 1.3; }
.uc-acc-title em { font-style: italic; }
.uc-acc-body { padding: 6px 2px 26px; max-width: 860px; }
@media (max-width: 768px) {
  .uc-acc summary { flex-direction: column; gap: 6px; }
  .uc-acc summary .uc-tag { flex: none; }
}

/* hero photo (homepage photo-plate treatment) */
.ihero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; margin-bottom: var(--space-8, 32px); }
.hero-photo { margin: 0; position: relative; border: 1px solid rgba(16,25,43,0.12); border-radius: 3px;
  background: var(--chalk); padding: 10px 10px 0; box-shadow: 0 1px 0 rgba(16,25,43,0.04), 0 20px 60px -20px rgba(16,25,43,0.14); }
.hero-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }
.hero-photo figcaption { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; color: var(--gravel);
  padding: 10px 2px; text-transform: uppercase; }
@media (max-width: 900px) {
  .ihero-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── centered hero (homepage mast + photo tiles) ────────────── */
.ihero-c { position: relative; padding: 56px 48px 96px; border-top: 0; overflow: hidden; }
.hero-mast { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; text-align: center; }
.hero-mast .kicker { justify-content: center; }
.hero-mast .ind-display { margin-left: auto; margin-right: auto; }
.hero-mast .sxn-lede { margin-left: auto; margin-right: auto; }
.hero-mast .crumbs { justify-content: center; margin-bottom: 26px; }
.hero-tiles { position: absolute; top: 90px; bottom: 40px; width: 250px; z-index: 1; display: flex;
  flex-direction: column; justify-content: space-between; pointer-events: none; }
.tiles-left { left: 40px; align-items: flex-start; }
.tiles-right { right: 40px; align-items: flex-end; }
.hero-tiles .ht { object-fit: cover; border-radius: 2px;
  border: 1px solid rgba(16,25,43,0.12); box-shadow: 0 14px 40px -18px rgba(16,25,43,0.22); display: block; }
.hero-tiles .ht-0 { width: 240px; aspect-ratio: 4 / 3; }
.hero-tiles .ht-1 { width: 185px; aspect-ratio: 3 / 4; }
.tiles-left .ht-1 { margin-left: 30px; }
.tiles-right .ht-1 { margin-right: 30px; }
.hero-strip { display: none; }
@media (max-width: 1250px) {
  .hero-tiles { display: none; }
}
/* client strip directly after hero */
.ref-band { padding: 34px 48px; }

/* boxed phase cards (each phase its own box) */
.phases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.phases-grid .reveal { display: contents; }
.iphase { background: var(--chalk); border: 1px solid var(--border); border-radius: 3px; padding: 26px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.iphase:hover { border-color: rgba(16,25,43,0.25); transform: translateY(-2px);
  box-shadow: 0 8px 22px -18px rgba(16,25,43,0.22); }
.iphase .ph-num { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--rust); }
.iphase h3 { font-family: var(--serif); font-size: 17.5px; font-weight: 400; margin: 12px 0 10px; color: var(--ink); }
.iphase p { font-size: 13.5px; line-height: 1.58; color: var(--graphite); margin: 0; }
@media (max-width: 1020px) { .phases-grid { grid-template-columns: 1fr; } }
/* module-card plates: tighter fit inside bp-card */
.bp-card .bp-plate { margin: 10px 0 0; padding: 12px 8px 6px; background-size: 28px 28px; }
.bp-card .bp-plate::before, .bp-card .bp-plate::after { width: 12px; height: 12px; }
.bp-card .bp-title em { font-style: italic; }
.bp-desc strong { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--gravel); font-weight: 500; }

/* mobile menu: industry group labels (not links) */
.mobile-menu-item.mm-label { pointer-events: none; opacity: 0.55; font-size: 13px !important;
  letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--mono); padding-top: 18px; }

/* use-case browser: homepage modules.css drives layout/crossfade.
   Only italic support + sticky stage + mobile stacking added here. */
.uc-browser .mod-idx-title em, .uc-browser .mod-slide-title em { font-style: italic; }
.uc-browser .mod-stage { position: sticky; top: 96px; }
.uc-browser .mod-slide-desc strong { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rust); font-weight: 500; display: block; margin-bottom: 2px; }
.uc-mobile-nav { display: none; }
@media (max-width: 980px) {
  .uc-browser { display: block; }
  .uc-browser .mod-idx { display: none; }
  .uc-browser .mod-stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 56px 20px 96px !important;
  }
  .uc-browser .mod-slide-body { margin-bottom: 18px; }
  /* The homepage mobile theatre (responsive.css) forces .mod-slide to
     absolute+flex with !important; reassert normal flow for the
     industries use-case browser so slides size the card and never
     overlay surrounding text. */
  .uc-browser .mod-slide {
    position: static !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    inset: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .uc-browser .mod-slide.is-active {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  .uc-mobile-nav { display: flex; position: absolute; left: 0; right: 0; bottom: 16px;
    align-items: center; justify-content: center; gap: 22px; }
  .ucm-btn { font-family: var(--mono); font-size: 15px; width: 42px; height: 42px; border-radius: 999px;
    border: 1px solid rgba(16,25,43,0.25); background: var(--chalk); color: var(--ink); cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
  .ucm-btn:active { transform: scale(0.94); }
  .ucm-btn:hover { border-color: var(--ink); background: var(--parchment); }
  .ucm-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--graphite); }
}
/* phase cards with their own plates */
.iphase .bp-plate { margin: 0 0 16px; padding: 12px 8px 6px; background-size: 28px 28px; }
.iphase .bp-plate::before, .iphase .bp-plate::after { width: 12px; height: 12px; }



/* centered pilot */
.pilot-center { text-align: center; }
.pilot-center .kicker { justify-content: center; }
.pilot-center .sxn-display, .pilot-center .sxn-lede { margin-left: auto; margin-right: auto; }
.pilot-center .pilot-timeline { margin-left: auto; margin-right: auto; }

/* FAQ micro-animations (questions, answered) */
.faq-item summary::after { transition: transform 0.3s cubic-bezier(.2,.7,.2,1), color 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(180deg); color: var(--blueprint); }
.faq-item summary { transition: color 0.2s ease, padding-left 0.3s cubic-bezier(.2,.7,.2,1); }
.faq-item summary:hover { padding-left: 6px; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.faq-item[open] p { animation: faqReveal 0.32s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: reduce) {
  .faq-item summary, .faq-item summary::after { transition: none !important; }
  .faq-item[open] p { animation: none !important; }
}

/* index rows: consistent flush-left titles */
.uc-browser .mod-idx-title, .uc-browser .mod-idx-sub { text-align: right; justify-self: end; }

/* hero photo tiles: interactive like the homepage plates */
.hero-tiles { pointer-events: auto; }
.hero-tiles .ht { transition: transform 0.25s ease-out, box-shadow 0.45s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.hero-tiles .ht:hover { box-shadow: 0 24px 55px -20px rgba(16,25,43,0.32); }
@media (prefers-reduced-motion: reduce) { .hero-tiles .ht { transition: none; } }

/* index rows: explicit grid so every title/sub starts on the same line */
.uc-browser .mod-idx-item { grid-template-columns: 34px minmax(0,1fr) 18px !important; }
.uc-browser .mod-idx-num { grid-column: 1; grid-row: 1 / span 2; }
.uc-browser .mod-idx-title { grid-column: 2; grid-row: 1; justify-self: end; text-align: right; width: 100%; }
.uc-browser .mod-idx-sub { grid-column: 2; grid-row: 2; justify-self: end; text-align: right; width: 100%; }
.uc-browser .mod-idx-arrow { grid-column: 3; grid-row: 1 / span 2; }

/* tablet spacing (769-1020) */
@media (min-width: 769px) and (max-width: 1020px) {
  .isx { padding: 72px 32px; }
  .ihero-c { padding: 40px 32px 72px; }
  .quote-strip, .trust-strip, .ref-band { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 1100px) and (min-width: 981px) {
  .uc-browser { grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); gap: 28px; }
}

/* phase plates: red PHASE tag, top-left inside the box */
.iphase .plate-tag { color: var(--rust); font-weight: 500; }

/* family landing pages */
.chips-lg .ichip { font-size: 12px; padding: 10px 16px; }
.seg-line { font-size: 13px; color: var(--graphite); margin: 0 0 4px; line-height: 1.5; }
.story-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.story-cell img { height: 44px; width: auto; display: block; }
.story-name { font-family: var(--serif); font-size: 19px; color: var(--ink); }

/* pilot timeline: clean 3-column grid on small screens */
@media (max-width: 700px) {
  .pilot-timeline { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%;
    gap: 1px; background: var(--border); border: 1px solid var(--border); }
  .pt-step { border-right: 0; text-align: center; padding: 12px 6px; font-size: 9px; letter-spacing: 0.1em;
    background: var(--chalk); }
  .pt-step:last-child { background: var(--chalk); }
}

/* stage label: our own counter, not the homepage's hardcoded /09 */
.uc-browser .mod-stage::before { content: "MODULE " attr(data-current) !important;
  position: absolute; top: 16px; left: 20px; right: auto;
  font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(16,25,43,0.6); z-index: 4; pointer-events: none; }

/* homepage hero buttons, reused on family + vertical heroes */
.ind-stage-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.stage-cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 50px;
  padding: 0 24px; border-radius: 999px; font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; text-decoration: none; line-height: 1; border: 1px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease; }
.stage-cta .arr { font-size: 13px; opacity: 0.85; transition: transform 0.25s ease; }
.stage-cta:active { transform: translateY(1px); }
.stage-cta-pri { background: var(--ink); color: var(--chalk); border-color: var(--ink);
  box-shadow: 0 10px 24px -14px rgba(16,25,43,0.55); }
.stage-cta-pri:hover { background: var(--deep); transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(16,25,43,0.65); }
.stage-cta-pri:hover .arr { transform: translateX(3px); }
.stage-cta-sec { background: transparent; color: var(--ink); border-color: rgba(16,25,43,0.26); }
.stage-cta-sec:hover { background: rgba(16,25,43,0.05); border-color: var(--ink); transform: translateY(-1px); }

/* process visuals: wide plate on desktop, two stacked plates on mobile */
.arc-mobile { display: none; }
@media (max-width: 768px) {
  .arc-desktop { display: none; }
  .arc-mobile { display: block; }
  .arc-mobile .bp-plate { margin-bottom: 18px; }
}
