/* ============================================================
   3PS - "The Operations Report" redesign
   Light, editorial, technical-document aesthetic.
   Thesis: the design is the proof - boring IT, beautifully run.
   Newsreader (display serif) · Inter (UI) · IBM Plex Mono (data)
   ============================================================ */

:root {
  /* paper + ink */
  --paper:      #F6F4EE;
  --paper-2:    #FDFCF9;
  --panel:      #FFFFFF;
  --ink:        #1B1D22;
  --ink-soft:   #43485219;
  --soft:       #4A4F5A;
  --mute:       #616772;
  --rule:       rgba(27, 29, 34, 0.16);
  --rule-soft:  rgba(27, 29, 34, 0.09);

  /* brand */
  --navy:       #1E3A6E;
  --navy-deep:  #16294E;
  --signal:     #17613B;   /* operational green - primary action */
  --signal-deep:#0E4A2B;
  --signal-dot: #1F8B50;
  --warn:       #A2630A;
  --danger:     #A33A3A;

  --radius: 3px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 44px);
  --header-h: 64px;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: auto; scroll-padding-top: 96px; overflow-x: hidden; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

/* faint paper grain via layered gradients - static, cheap */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 58, 110, 0.045), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(27,29,34,0.006) 2px 4px);
}

a { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(30,58,110,0.4); transition: color .18s var(--ease), text-decoration-color .18s var(--ease); }
a:hover { color: var(--navy-deep); text-decoration-color: currentColor; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(30, 58, 110, 0.18); }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 2px; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 300; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: var(--radius); font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 12px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.015em; margin: 0; font-feature-settings: 'kern' 1; }
h1 { font-size: clamp(2.7rem, 6.4vw, 4.6rem); font-optical-sizing: auto; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }
h1 em, h2 em { font-style: italic; font-weight: 500; }

.lede { font-size: 1.16rem; color: var(--soft); max-width: 56ch; }

.kicker {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  display: flex; align-items: center; gap: 12px;
}
.kicker .no { color: var(--signal); font-weight: 600; }
.kicker::after { content: ""; flex: 1; height: 1px; background: var(--rule-soft); }
.kicker.bare::after { display: none; }

.mono { font-family: var(--mono); }

/* ---------- top document bar ---------- */
.doc-bar {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mute); border-bottom: 1px solid var(--rule-soft);
  background: var(--paper-2);
}
.doc-bar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 34px; gap: 16px; }
.doc-bar a { color: inherit; text-decoration: none; }
.doc-bar a:hover { color: var(--ink); }
.doc-bar .status { display: inline-flex; align-items: center; gap: 7px; color: var(--signal); font-weight: 500; }
.doc-bar .right { display: flex; gap: 22px; align-items: center; white-space: nowrap; }
@media (max-width: 720px) { .doc-bar .right .phone { display: none; } }
@media (max-width: 600px) {
  .doc-bar .wrap { justify-content: center; }
  .doc-bar .company { display: none; }
}

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal-dot); display: inline-block; flex: none; }
.dot.pulse { animation: breathe 3s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { box-shadow: 0 0 0 0 rgba(31,139,80,0.35); } 50% { box-shadow: 0 0 0 5px rgba(31,139,80,0); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand .word { display: block; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1; }
.brand .ppp { display: block; }
.brand .ppp { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-top: 3px; white-space: nowrap; }
@media (max-width: 480px) { .brand .ppp { display: none; } }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 0.92rem; font-weight: 500; color: var(--soft); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.nav a.current { color: var(--ink); text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav .btn { margin-left: 6px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--rule); border-radius: var(--radius); width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--ink); }
@media (max-width: 920px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
         background: var(--paper-2); border-bottom: 1px solid var(--rule); padding: 10px var(--pad) 18px; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--rule-soft); }
  .nav .btn { margin: 14px 0 0; text-align: center; justify-content: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  padding: 13px 22px; border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn-primary, a.btn-primary, a.btn-primary:hover { background: var(--signal); color: #fff; }
.btn-primary:hover, a.btn-primary:hover { background: var(--signal-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-lg { padding: 16px 26px; font-size: 1rem; }

/* ---------- sections ---------- */
section { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--rule-soft); }
section:first-of-type { border-top: 0; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { margin-top: 22px; }
.section-head p { color: var(--soft); font-size: 1.1rem; margin: 18px 0 0; max-width: 60ch; }

/* ---------- hero ---------- */
.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 26px 0 0; }
.hero .lede { margin: 26px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-compliance { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--rule-soft); }
.hero-compliance .label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 10px; }
.hero-compliance .row { display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--mono); font-size: 0.8rem; color: var(--soft); }
.hero-compliance .row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-compliance .row svg { width: 13px; height: 13px; color: var(--signal); }

/* ---------- figure (schematic) ---------- */
.figure { background: var(--panel); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: 0 1px 0 rgba(27,29,34,0.04), 0 24px 48px -32px rgba(27,29,34,0.25); }
.figure-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 18px; border-bottom: 1px solid var(--rule-soft); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.figure-head .live { color: var(--signal); display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
.figure-body { padding: 10px 10px 6px; }
.figure-caption { padding: 12px 18px 16px; font-family: var(--mono); font-size: 0.74rem; color: var(--mute); border-top: 1px solid var(--rule-soft); line-height: 1.55; }
.figure-caption strong { color: var(--soft); font-weight: 600; }

/* schematic svg text */
.schematic { width: 100%; height: auto; }
.schematic .box { fill: var(--paper-2); stroke: var(--ink); stroke-width: 1.3; }
.schematic .box.accent { fill: #EFF4EE; stroke: var(--signal); }
.schematic .lbl { font-family: var(--mono); font-size: 11.5px; font-weight: 600; fill: var(--ink); letter-spacing: 0.06em; }
.schematic .sub { font-family: var(--mono); font-size: 8.5px; fill: var(--mute); letter-spacing: 0.04em; }
.schematic .tag { font-family: var(--mono); font-size: 8px; fill: var(--signal); font-weight: 600; letter-spacing: 0.06em; }
.schematic .wire { stroke: var(--ink); stroke-width: 1.2; fill: none; }
.schematic .watch { stroke: var(--signal-dot); stroke-width: 1; stroke-dasharray: 3 4; fill: none; opacity: 0.85; }
.schematic .node { fill: var(--signal-dot); }
.schematic .grid-line { stroke: rgba(27,29,34,0.05); stroke-width: 1; }

/* ---------- morning report ---------- */
.report-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 980px) { .report-grid { grid-template-columns: 1fr; } }

.report { background: var(--panel); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: 0 1px 0 rgba(27,29,34,0.04), 0 24px 48px -32px rgba(27,29,34,0.22); }
.report-head { padding: 18px 22px 14px; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.report-head .title { font-family: var(--mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.report-head .stamp { font-family: var(--mono); font-size: 0.68rem; color: var(--mute); letter-spacing: 0.08em; }
.report-rows { padding: 6px 0; }
.report-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 13px 22px; border-bottom: 1px solid var(--rule-soft); }
.report-row:last-child { border-bottom: 0; }
.report-row .k { font-size: 0.92rem; color: var(--soft); display: flex; align-items: center; gap: 10px; min-width: 0; }
.report-row .v { font-family: var(--mono); font-size: 0.84rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.report-row .v.ok { color: var(--signal); }
.report-foot { padding: 13px 22px; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- stats with footnotes ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(44px, 6vw, 64px); border-top: 1px solid var(--rule); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 26px 26px 26px 0; border-right: 1px solid var(--rule-soft); padding-left: 26px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat { padding: 22px 18px; border-bottom: 1px solid var(--rule-soft); }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
}
.stat .big { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; line-height: 1; letter-spacing: -0.02em; white-space: nowrap; }
.stat .big sup { font-family: var(--mono); font-size: 0.85rem; color: var(--signal); font-weight: 600; top: -1.2em; position: relative; margin-left: 2px; }
.stat .cap { font-weight: 600; font-size: 0.95rem; margin-top: 10px; }
.stat .sub { color: var(--mute); font-size: 0.85rem; margin-top: 4px; line-height: 1.5; }

.footnotes { margin-top: clamp(30px, 4vw, 44px); padding-top: 18px; border-top: 1px solid var(--rule-soft); font-family: var(--mono); font-size: 0.72rem; color: var(--mute); line-height: 1.8; max-width: 72ch; }
.footnotes sup { color: var(--signal); font-weight: 600; }

/* ---------- services / disciplines ---------- */
.disciplines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
@media (max-width: 920px) { .disciplines { grid-template-columns: 1fr; } }
.disc { padding: clamp(26px, 3vw, 38px); border-right: 1px solid var(--rule-soft); display: flex; flex-direction: column; gap: 0; background: var(--panel); }
.disc:last-child { border-right: 0; }
@media (max-width: 920px) { .disc { border-right: 0; border-bottom: 1px solid var(--rule-soft); } .disc:last-child { border-bottom: 0; } }
.disc .idx { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--signal); font-weight: 600; }
.disc h3 { margin: 14px 0 0; }
.disc p { color: var(--soft); font-size: 0.95rem; margin: 12px 0 0; }
.disc .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.disc .tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--soft); border: 1px solid var(--rule-soft); border-radius: 2px; padding: 4px 8px; background: var(--paper-2); }
.disc .link { margin-top: auto; padding-top: 20px; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.disc .link svg { width: 14px; height: 14px; transition: transform .18s var(--ease); }
.disc .link:hover svg { transform: translateX(3px); }

/* product callout strip */
.callout { margin-top: clamp(28px, 4vw, 40px); border: 1px solid var(--rule); border-left: 3px solid var(--signal); border-radius: var(--radius); background: var(--panel); padding: 22px clamp(20px, 3vw, 30px); display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.callout .idx { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); font-weight: 600; }
.callout p { margin: 8px 0 0; color: var(--soft); font-size: 0.97rem; max-width: 62ch; }
.callout p strong { color: var(--ink); }
.callout .btn { flex: none; }

/* service index - table of contents style */
.svc-index { margin-top: clamp(36px, 5vw, 52px); }
.svc-index .label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 16px; }
.svc-cols { columns: 2; column-gap: clamp(32px, 5vw, 72px); }
@media (max-width: 720px) { .svc-cols { columns: 1; } }
.svc-row { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--rule-soft); break-inside: avoid; text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 500; }
.svc-row:hover .t { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.svc-row .n { font-family: var(--mono); font-size: 0.7rem; color: var(--mute); flex: none; width: 2em; }
.svc-row .dots { flex: 1; border-bottom: 1px dotted var(--rule); transform: translateY(-4px); }
.svc-row .pg { font-family: var(--mono); font-size: 0.7rem; color: var(--signal); flex: none; }

/* ---------- procedure (how we work) ---------- */
.procedure { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 34px); }
@media (max-width: 980px) { .procedure { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .procedure { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 18px; border-top: 2px solid var(--ink); }
.step .num { font-family: var(--mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; color: var(--signal); }
.step h3 { font-size: 1.18rem; margin: 10px 0 0; }
.step p { color: var(--soft); font-size: 0.92rem; margin: 10px 0 0; }
.step .out { margin-top: 14px; font-family: var(--mono); font-size: 0.74rem; color: var(--ink); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.step .out svg { width: 13px; height: 13px; color: var(--signal); flex: none; margin-top: 2px; }

/* ---------- industries ---------- */
.industries { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 920px) { .industries { grid-template-columns: 1fr; } }
.ind-lead { background: var(--panel); border: 1px solid var(--rule); border-left: 3px solid var(--signal); border-radius: var(--radius); padding: clamp(26px, 3.4vw, 40px); }
.ind-lead .idx { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); font-weight: 600; }
.ind-lead h3 { font-size: 1.6rem; margin: 14px 0 0; }
.ind-lead p { color: var(--soft); margin: 14px 0 0; }
.ind-lead ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.ind-lead li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--soft); }
.ind-lead li svg { width: 14px; height: 14px; color: var(--signal); flex: none; margin-top: 4px; }
.ind-rest .label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 6px; }
.ind-rest a.row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 15px 2px; border-bottom: 1px solid var(--rule-soft); text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.98rem; }
.ind-rest a.row:hover { color: var(--navy); }
.ind-rest a.row svg { width: 14px; height: 14px; color: var(--mute); flex: none; }
.ind-rest a.row:hover svg { color: var(--navy); }

/* ---------- field notes (cases) ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 920px) { .cases { grid-template-columns: 1fr; } }
.case { background: var(--panel); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.case:hover { border-color: var(--ink); box-shadow: 0 16px 32px -24px rgba(27,29,34,0.3); }
.case .no { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); font-weight: 600; display: flex; justify-content: space-between; gap: 10px; }
.case .no .sector { color: var(--mute); }
.case h3 { font-size: 1.22rem; margin: 14px 0 0; }
.case dl { margin: 16px 0 0; display: grid; gap: 12px; }
.case dt { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.case dd { margin: 3px 0 0; font-size: 0.92rem; color: var(--soft); line-height: 1.55; }
.case dd.win { color: var(--signal); font-weight: 600; }
.case .tl { margin-top: auto; padding-top: 18px; font-family: var(--mono); font-size: 0.72rem; color: var(--mute); }

/* ---------- comparison table ---------- */
.cmp-wrap { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--rule-soft); font-size: 0.92rem; vertical-align: top; }
.cmp thead th { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); border-bottom: 1px solid var(--rule); padding-top: 18px; padding-bottom: 14px; }
.cmp thead th.us { color: var(--signal); }
.cmp tbody th { font-weight: 600; color: var(--ink); width: 20%; font-size: 0.88rem; }
.cmp td.us { color: var(--ink); font-weight: 500; width: 40%; }
.cmp td.them { color: var(--mute); width: 40%; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td.us::before { content: "- "; color: var(--signal); font-weight: 700; }
.table-hint { display: none; font-family: var(--mono); font-size: 0.7rem; color: var(--mute); margin-top: 10px; }
@media (max-width: 720px) { .table-hint { display: block; } }

/* ---------- PPP ---------- */
.ppp-quote { font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.25; font-weight: 500; max-width: 21ch; letter-spacing: -0.01em; }
.ppp-quote em { font-style: italic; }
.ppp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); margin-top: clamp(40px, 5vw, 56px); }
@media (max-width: 860px) { .ppp-grid { grid-template-columns: 1fr; } }
.ppp-item { border-top: 2px solid var(--ink); padding-top: 18px; }
.ppp-item .p { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; line-height: 1; color: var(--signal); font-style: italic; }
.ppp-item h3 { font-size: 1.15rem; margin: 12px 0 0; }
.ppp-item p { color: var(--soft); font-size: 0.93rem; margin: 10px 0 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: clamp(44px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(246,244,238,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(246,244,238,0.05) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: radial-gradient(ellipse 70% 90% at 80% 10%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 90% at 80% 10%, #000 20%, transparent 75%); }
.cta-band .kicker { color: rgba(246,244,238,0.55); }
.cta-band .kicker::after { background: rgba(246,244,238,0.15); }
.cta-band h2 { color: var(--paper); margin-top: 20px; max-width: 18ch; }
.cta-band p { color: rgba(246,244,238,0.75); max-width: 56ch; font-size: 1.06rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; position: relative; z-index: 1; }
.cta-band .btn-ghost { color: var(--paper); border-color: rgba(246,244,238,0.3); }
.cta-band .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .contact-line { margin-top: 30px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(246,244,238,0.6); display: flex; flex-wrap: wrap; gap: 8px 28px; }
.cta-band .contact-line a { color: var(--paper); text-decoration-color: rgba(246,244,238,0.4); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--rule); background: var(--paper-2); padding: clamp(44px, 6vw, 64px) 0 28px; margin-top: clamp(64px, 9vw, 120px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 920px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand p { color: var(--mute); font-size: 0.88rem; max-width: 34ch; margin: 14px 0 0; }
.foot-col .h { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--soft); text-decoration: none; font-size: 0.9rem; padding: 5px 0; }
.foot-col a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.colophon { margin-top: clamp(36px, 5vw, 52px); padding-top: 20px; border-top: 1px solid var(--rule-soft); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--mute); }
.colophon a { color: inherit; }

/* ---------- interior pages ---------- */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-top: 24px; max-width: 20ch; }
.page-hero .lede { margin-top: 22px; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags .tag { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--soft); border: 1px solid var(--rule-soft); border-radius: 2px; padding: 4px 8px; background: var(--paper-2); }

.svc-group { margin-top: clamp(44px, 6vw, 72px); scroll-margin-top: 130px; }
.svc-group .group-head { max-width: 720px; margin-bottom: 10px; }
.svc-group .group-head h2 { margin-top: 18px; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.svc-group .group-head p { color: var(--soft); margin: 14px 0 0; }
.svc-entry { display: grid; grid-template-columns: 88px 1fr; gap: 12px 26px; padding: 30px 0; border-top: 1px solid var(--rule-soft); scroll-margin-top: 130px; }
.svc-entry .no { font-family: var(--mono); font-size: 0.74rem; font-weight: 600; color: var(--signal); letter-spacing: 0.1em; padding-top: 7px; }
.svc-entry h3 { font-size: 1.4rem; }
.svc-entry p { color: var(--soft); margin: 10px 0 0; max-width: 64ch; }
.svc-entry .tags { margin-top: 14px; }
.svc-entry ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.svc-entry li { display: flex; gap: 10px; font-size: 0.93rem; color: var(--soft); align-items: flex-start; }
.svc-entry li svg { width: 14px; height: 14px; color: var(--signal); flex: none; margin-top: 4px; }
@media (max-width: 640px) { .svc-entry { grid-template-columns: 1fr; gap: 6px; } }

/* prose (legal & long-form) */
.prose { max-width: 760px; }
.prose .updated { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.prose h2 { font-size: 1.5rem; margin-top: 44px; }
.prose h3 { font-size: 1.05rem; margin-top: 28px; font-family: var(--sans); font-weight: 600; }
.prose p, .prose li { color: var(--soft); font-size: 0.97rem; }
.prose p { margin: 14px 0 0; }
.prose ul { margin: 14px 0 0; padding-left: 20px; }
.prose li { margin-top: 8px; }

/* pricing block */
.price-card { background: var(--panel); border: 1px solid var(--rule); border-left: 3px solid var(--signal); border-radius: var(--radius); padding: clamp(26px, 3.4vw, 40px); }
.price-card .amount { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -0.02em; }
.price-card .per { font-family: var(--mono); font-size: 0.74rem; color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }
.price-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.price-card li { display: flex; gap: 10px; font-size: 0.93rem; color: var(--soft); align-items: flex-start; }
.price-card li svg { width: 14px; height: 14px; color: var(--signal); flex: none; margin-top: 4px; }

/* forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); }
.field input, .field textarea, .field select { font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--panel); border: 1px solid var(--rule); border-radius: var(--radius); padding: 12px 14px; width: 100%; box-sizing: border-box; }
.field textarea { resize: vertical; min-height: 130px; }
.hp { position: absolute; left: -9999px; }
#form-status { font-family: var(--mono); font-size: 0.78rem; color: var(--signal); margin-top: 12px; min-height: 1.2em; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot.pulse { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* print - the site is a report; let it print like one */
@media print {
  .doc-bar, .site-header, .cta-band .actions, .nav-toggle { display: none !important; }
  body { background: #fff; }
  section { border: 0; padding: 28px 0; }
}

/* ============================================================
   3PS escalation homepage
   Scoped to body.escalation-home so older interior pages keep
   the Operations Report styling until they are migrated.
   ============================================================ */

.escalation-home {
  --x-bg: #f3ecdf;
  --x-bg-2: #fffaf0;
  --x-ink: #171411;
  --x-muted: #6f675c;
  --x-line: rgba(23, 20, 17, 0.16);
  --x-line-strong: rgba(23, 20, 17, 0.28);
  --x-lime: #f05a28;
  --x-hot: #c92d16;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(201, 45, 22, 0.08), transparent 28rem),
    radial-gradient(circle at 78% 12%, rgba(240, 90, 40, 0.18), transparent 22rem),
    radial-gradient(circle at 12% 86%, rgba(23, 20, 17, 0.08), transparent 22rem),
    var(--x-bg);
  color: var(--x-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.45;
  overflow-x: hidden;
}

.escalation-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(23, 20, 17, 0.045) 1px, transparent 1px) 0 0 / 96px 96px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 72%);
}

.escalation-home::after {
  content: "";
  position: fixed;
  inset: auto -10% -18rem -10%;
  height: 30rem;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(240, 90, 40, 0.18), rgba(23, 20, 17, 0.08), rgba(255, 250, 240, 0.22));
  filter: blur(80px);
  opacity: 0.75;
}

.escalation-home *,
.escalation-home *::before,
.escalation-home *::after {
  box-sizing: border-box;
}

.escalation-home a {
  color: inherit;
}

.escalation-home img {
  display: block;
  max-width: 100%;
}

.escalation-home h1,
.escalation-home h2,
.escalation-home h3,
.escalation-home p {
  margin: 0;
}

.escalation-home h1,
.escalation-home h2,
.escalation-home h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
}

.sr-only,
.x-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.x-skip:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--x-lime);
  color: #fffaf0;
  text-decoration: none;
  font-weight: 800;
}

.x-header {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  top: 1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
  padding: 0.75rem 0.85rem 0.75rem 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 1.25rem 3.5rem rgba(71, 48, 28, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.x-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--x-ink);
  text-decoration: none;
}

.x-brand strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: 0;
}

.x-brand small {
  display: block;
  margin-top: 0.18rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  line-height: 1.2;
  color: var(--x-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 6px;
  background: var(--x-ink);
  color: var(--x-bg-2);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 0.65rem 1.6rem rgba(23, 20, 17, 0.14);
}

.x-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.35rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.x-nav a {
  color: rgba(23, 20, 17, 0.74);
  text-decoration: none;
}

.x-nav a:hover,
.x-nav a:focus-visible {
  color: var(--x-hot);
}

.x-call {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(240, 90, 40, 0.48);
  border-radius: 6px;
  background: rgba(240, 90, 40, 0.09);
  color: var(--x-lime) !important;
}

.x-nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--x-line-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--x-ink);
  padding: 0.7rem;
}

.x-nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.25rem 0;
  background: currentColor;
}

@media (max-width: 1320px) and (min-width: 921px) {
  .x-header {
    left: 0.75rem;
    right: 0.75rem;
    gap: 0.75rem;
    padding: 0.65rem 0.7rem;
  }

  .x-brand {
    gap: 0.55rem;
  }

  .x-brand small {
    display: none;
  }

  .x-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .x-nav {
    gap: 0.72rem;
    font-size: 0.66rem;
    letter-spacing: 0.055em;
  }

  .x-call {
    padding: 0.62rem 0.72rem;
  }
}

.x-hero {
  position: relative;
  min-height: 68rem;
  padding: 10.5rem 1.25rem 0;
  overflow: hidden;
}

.x-hero::before,
.x-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 4.4rem;
  height: 4.4rem;
  pointer-events: none;
  opacity: 0.44;
}

.x-hero::before {
  left: 1.25rem;
  top: 8.2rem;
  border-top: 1px solid rgba(23, 20, 17, 0.34);
  border-left: 1px solid rgba(23, 20, 17, 0.34);
}

.x-hero::after {
  right: 1.25rem;
  top: 8.2rem;
  border-top: 1px solid rgba(23, 20, 17, 0.34);
  border-right: 1px solid rgba(23, 20, 17, 0.34);
}

.x-map-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 10% 20%, transparent 0 22%, rgba(23, 20, 17, 0.12) 22.25%, transparent 22.6%),
    radial-gradient(ellipse at 84% 12%, transparent 0 18%, rgba(240, 90, 40, 0.18) 18.25%, transparent 18.55%),
    radial-gradient(ellipse at 64% 78%, transparent 0 26%, rgba(201, 45, 22, 0.13) 26.2%, transparent 26.5%);
}

.x-trace-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.68;
  mix-blend-mode: multiply;
}

.x-hero-copy {
  position: relative;
  z-index: 6;
  width: min(55rem, 100%);
  padding-left: max(0rem, calc((100vw - 1250px) / 2));
}

.x-hero h1 {
  max-width: 12ch;
  font-size: 5.25rem;
  color: var(--x-ink);
  text-wrap: balance;
}

.x-hero-copy p {
  width: min(28rem, 92vw);
  margin-top: 1.45rem;
  color: rgba(23, 20, 17, 0.74);
  font-size: 1.28rem;
  font-weight: 600;
}

.x-hero-copy .x-fit-line {
  width: min(38rem, 92vw);
  margin-top: 0.85rem;
  color: rgba(23, 20, 17, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
}

.x-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.x-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(32rem, 100%);
  margin-top: 1.2rem;
}

.x-hero-facts div {
  min-height: 5.2rem;
  padding: 0.75rem;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 1rem 2rem rgba(71, 48, 28, 0.08);
}

.x-hero-facts span {
  display: block;
  color: var(--x-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-hero-facts strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--x-ink);
  font-size: 1.05rem;
  line-height: 1.1;
}

@media (max-width: 1320px) and (min-width: 1101px) {
  .x-hero {
    min-height: 60rem;
    padding-top: 8.75rem;
  }

  .x-hero h1 {
    max-width: 13ch;
    font-size: clamp(3.45rem, 5.4vw, 3.75rem);
  }

  .x-hero-copy p {
    margin-top: 1rem;
    font-size: 1.12rem;
  }

  .x-actions {
    margin-top: 1.2rem;
  }
}

.x-signal-sphere {
  position: absolute;
  z-index: 4;
  right: max(9.5rem, calc((100vw - 1250px) / 2 + 5rem));
  top: 9.2rem;
  width: clamp(17rem, 22vw, 28rem);
  height: clamp(17rem, 22vw, 28rem);
  pointer-events: none;
  color: var(--x-ink);
  transform-style: preserve-3d;
  filter: drop-shadow(0 2rem 3rem rgba(71, 48, 28, 0.18));
}

.x-signal-sphere::before,
.x-signal-sphere::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  pointer-events: none;
}

.x-signal-sphere::before {
  border: 1px solid rgba(23, 20, 17, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 250, 240, 0.72), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(240, 90, 40, 0.18), transparent 68%);
}

.x-signal-sphere::after {
  inset: 3%;
  border: 1px dashed rgba(240, 90, 40, 0.46);
  animation: xSlowSpin 28s linear infinite;
}

.x-sphere-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 6.4rem;
  height: 6.4rem;
  border: 1px solid rgba(23, 20, 17, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: inset 0 0 0 0.55rem rgba(240, 90, 40, 0.08), 0 1rem 2rem rgba(71, 48, 28, 0.12);
  transform: translate(-50%, -50%);
}

.x-sphere-core strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.x-sphere-core span {
  display: block;
  margin-top: 0.15rem;
  color: var(--x-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-sphere-word {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  min-width: max-content;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  color: rgba(23, 20, 17, 0.82);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.x-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.25rem;
  border-radius: 6px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.x-btn:hover,
.x-btn:focus-visible {
  transform: translateY(-2px);
}

.x-btn-primary {
  background: var(--x-lime);
  color: #fffaf0 !important;
  border: 1px solid var(--x-lime);
  box-shadow: 0 1rem 2.2rem rgba(201, 45, 22, 0.18);
}

.x-btn-quiet {
  color: var(--x-ink);
  border: 1px solid var(--x-line-strong);
  background: rgba(23, 20, 17, 0.025);
}

.x-btn-quiet:hover {
  border-color: rgba(23, 20, 17, 0.55);
}

.x-hero-art {
  --x-hero-base-x: 0px;
  --x-hero-base-y: 0px;
  --x-hero-float-x: 0px;
  --x-hero-float-y: 0px;
  position: absolute;
  z-index: 2;
  right: max(1.25rem, calc((100vw - 1380px) / 2));
  top: 8rem;
  width: min(55rem, 50vw);
  min-width: 39rem;
  transform: translate3d(
    calc(var(--x-hero-base-x) + var(--x-hero-float-x)),
    calc(var(--x-hero-base-y) + var(--x-hero-float-y)),
    0
  );
  transform-origin: 58% 48%;
  will-change: transform;
}

.x-hero-art::before {
  content: "";
  position: absolute;
  inset: 9% 6% 11% 4%;
  z-index: -1;
  background: radial-gradient(circle at 56% 48%, rgba(240, 90, 40, 0.2), transparent 30rem);
  filter: blur(42px);
}

.x-hero-art img {
  width: 100%;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 3.5rem 3.8rem rgba(71, 48, 28, 0.24));
  -webkit-mask-image: radial-gradient(ellipse at 55% 46%, #000 0 62%, rgba(0, 0, 0, 0.72) 72%, transparent 88%);
  mask-image: radial-gradient(ellipse at 55% 46%, #000 0 62%, rgba(0, 0, 0, 0.72) 72%, transparent 88%);
}

.x-threat-game {
  position: absolute;
  inset: 1% -1% 9% -2%;
  z-index: 3;
  border-radius: 8px;
  pointer-events: auto;
  perspective: 900px;
  cursor: crosshair;
  transform-style: preserve-3d;
}

.x-threat-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  opacity: 0.98;
  mix-blend-mode: multiply;
  filter: saturate(1.2) contrast(1.05);
}

.x-threat-hud {
  position: absolute;
  top: 3%;
  left: 5%;
  display: grid;
  gap: 0.2rem;
  min-width: 9.5rem;
  padding: 0.62rem 0.74rem;
  border: 1px solid rgba(240, 90, 40, 0.46);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 1rem 2rem rgba(71, 48, 28, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.x-threat-hud span {
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.x-threat-hud strong {
  color: var(--x-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.x-rail {
  position: absolute;
  left: auto;
  right: 6%;
  bottom: 9%;
  display: grid;
  gap: 0.4rem;
  width: min(33rem, calc(100% - 2rem));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0.7rem;
  border: 1px solid rgba(240, 90, 40, 0.36);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 1.5rem 3rem rgba(71, 48, 28, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.x-rail span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 1.9rem;
  padding: 0 0.45rem;
  border-radius: 5px;
  background: rgba(23, 20, 17, 0.055);
  color: var(--x-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.x-rail span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--x-lime);
  box-shadow: 0 0 1rem rgba(240, 90, 40, 0.45);
}

.x-pulse {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--x-hot);
  box-shadow: 0 0 0.8rem var(--x-hot);
  animation: xPulse 2.4s ease-in-out infinite;
}

.x-pulse-a {
  right: 34%;
  top: 16%;
}

.x-pulse-b {
  right: 62%;
  top: 42%;
  animation-delay: 0.8s;
}

.x-case-preview {
  position: absolute;
  z-index: 5;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 -1rem 4rem rgba(71, 48, 28, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.x-case-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--x-muted);
}

.x-case-preview-head a {
  color: var(--x-lime);
  text-decoration: none;
}

.x-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.x-preview-grid article {
  min-height: 9.8rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 20, 17, 0.07), rgba(255, 250, 240, 0.48)),
    rgba(255, 250, 240, 0.72);
}

.x-preview-grid span {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--x-lime);
}

.x-preview-grid h2 {
  margin-top: 1.35rem;
  font-size: 1.4rem;
  line-height: 0.98;
  color: var(--x-ink);
}

.x-strip {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0.45rem;
  padding: 1.15rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-block: 1px solid var(--x-line);
  background: var(--x-lime);
  color: #fffaf0;
  text-align: center;
}

.x-strip p {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.72rem);
  line-height: 1;
  text-transform: uppercase;
}

.x-strip span {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.72rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.x-problem-room {
  position: relative;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 80%, rgba(255, 250, 240, 0.13), transparent 28rem),
    linear-gradient(90deg, rgba(23, 20, 17, 0.98) 0 48%, rgba(23, 20, 17, 0.72)),
    #171411;
  color: #fffaf0;
  isolation: isolate;
}

.x-problem-room::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.42;
}

.x-room-teaser {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  gap: 2.25rem;
  align-items: center;
  min-height: auto;
  padding: 2.35rem max(1.25rem, calc((100vw - 1250px) / 2));
}

.x-room-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: manipulation;
  cursor: crosshair;
}

.x-room-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.86) 0 22%, rgba(23, 20, 17, 0.2) 52%, rgba(23, 20, 17, 0.72) 100%),
    linear-gradient(180deg, rgba(23, 20, 17, 0.1), rgba(23, 20, 17, 0.72));
}

.x-room-copy {
  position: relative;
  z-index: 4;
  width: min(46rem, 100%);
  padding: 0;
}

.x-room-copy h2 {
  font-size: clamp(2.8rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
  color: #fffaf0;
  text-wrap: balance;
}

.x-room-copy p {
  width: min(38rem, 100%);
  margin-top: 0.75rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
}

.x-room-launch,
.x-room-close {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-room-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  margin-top: 1.1rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--x-lime);
  border-radius: 6px;
  background: var(--x-lime);
  color: #fffaf0;
  box-shadow: 0 1.2rem 2.5rem rgba(240, 90, 40, 0.26);
}

.x-room-teaser-panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.14), rgba(255, 250, 240, 0.06)),
    rgba(23, 20, 17, 0.62);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.x-room-teaser-panel span,
.x-room-modal-head span {
  color: rgba(255, 250, 240, 0.58);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-room-teaser-panel strong,
.x-room-modal-head strong {
  color: #fffaf0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.x-room-teaser-panel p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.x-room-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.x-room-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.x-room-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.96);
}

.x-room-modal-window {
  position: absolute;
  inset: clamp(0.55rem, 1.6vw, 1.2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 90, 40, 0.2), transparent 28rem),
    #171411;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.58);
}

.x-room-modal-head {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 6;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.x-room-modal-head div {
  display: grid;
  gap: 0.2rem;
}

.x-room-close {
  min-height: 2.6rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
}

body.x-room-modal-open {
  overflow: hidden;
}

body.x-room-modal-open .x-problem-room {
  z-index: 3000;
}

.x-room-stage {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(22rem, 34rem) minmax(0, 1fr) minmax(22rem, 33rem);
  grid-template-rows: auto minmax(13rem, 1fr) auto auto;
  gap: 0.75rem 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5.3rem max(1.25rem, calc((100vw - 1250px) / 2)) 2rem;
  pointer-events: none;
  scrollbar-width: thin;
}

.x-room-hud,
.x-room-debrief,
.x-room-brief,
.x-room-evidence,
.x-room-lesson,
.x-room-actions,
.x-room-start {
  pointer-events: auto;
}

.x-room-hud {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: auto;
}

.x-room-hud div,
.x-room-debrief,
.x-room-brief,
.x-room-evidence,
.x-room-lesson,
.x-room-actions,
.x-room-start {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.14), rgba(255, 250, 240, 0.06)),
    rgba(23, 20, 17, 0.5);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.x-room-hud div {
  min-height: 4.5rem;
  padding: 0.72rem;
}

.x-room-hud span,
.x-room-debrief > span,
.x-room-brief span,
.x-room-evidence span,
.x-room-lesson span,
.x-room-actions button,
.x-room-start button,
.x-room-start a {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-room-hud span {
  display: block;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.62rem;
}

.x-room-brief span,
.x-room-debrief > span,
.x-room-evidence span,
.x-room-lesson span {
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.62rem;
  line-height: 1.35;
}

.x-room-hud strong {
  display: block;
  margin-top: 0.34rem;
  color: #fffaf0;
  font-size: 1.15rem;
  line-height: 1;
}

.x-room-debrief {
  position: relative;
  grid-column: 3;
  grid-row: 2;
  align-self: start;
  display: grid;
  gap: 0.55rem;
  width: auto;
  max-height: min(24rem, 52vh);
  overflow-y: auto;
  padding: 1rem;
  border-color: rgba(240, 90, 40, 0.34);
  scrollbar-width: thin;
}

.x-room-debrief strong {
  color: #fffaf0;
  font-size: 1rem;
  line-height: 1.35;
}

.x-room-debrief p {
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.x-room-modal.is-failure-point .x-room-debrief,
.x-problem-room.is-failure-point .x-room-debrief {
  max-height: min(30rem, 50vh);
  border-color: rgba(240, 90, 40, 0.9);
  background:
    linear-gradient(135deg, rgba(201, 45, 22, 0.32), rgba(240, 90, 40, 0.12)),
    rgba(23, 20, 17, 0.72);
  box-shadow: 0 1.5rem 4rem rgba(201, 45, 22, 0.34);
}

.x-room-modal.is-failure-point .x-room-stage,
.x-problem-room.is-failure-point .x-room-stage {
  grid-template-rows: auto auto auto auto;
  align-content: start;
}

.x-room-modal.is-failure-point .x-room-debrief > span,
.x-problem-room.is-failure-point .x-room-debrief > span {
  color: rgba(255, 178, 143, 0.92);
}

.x-room-modal.is-failure-point .x-room-gap-list,
.x-problem-room.is-failure-point .x-room-gap-list {
  max-height: none;
  overflow: visible;
}

.x-room-modal.is-failure-point .x-room-start button,
.x-problem-room.is-failure-point .x-room-start button {
  border-color: rgba(255, 250, 240, 0.22);
  background: #c92d16;
}

.x-room-modal.is-failure-point .x-room-actions,
.x-problem-room.is-failure-point .x-room-actions {
  display: none;
}

.x-room-modal.is-failure-point .x-room-start,
.x-problem-room.is-failure-point .x-room-start {
  position: absolute;
  right: max(1.25rem, calc((100vw - 1250px) / 2));
  bottom: 2rem;
  grid-column: auto;
  grid-row: auto;
  width: min(33rem, calc(100% - 2.5rem));
}

.x-room-gap-list {
  display: grid;
  gap: 0.38rem;
  max-height: 11.5rem;
  overflow-y: auto;
  padding-right: 0.12rem;
  scrollbar-width: thin;
}

.x-room-gap-list span {
  display: block;
  padding: 0.48rem 0.55rem;
  border: 1px solid rgba(240, 90, 40, 0.28);
  border-radius: 6px;
  background: rgba(240, 90, 40, 0.12);
  color: rgba(255, 250, 240, 0.74);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.x-room-gap-list span.is-explainer,
.x-room-gap-list span.is-plan,
.x-room-gap-list span.is-prevention,
.x-room-gap-list span.is-brief-line {
  color: rgba(255, 250, 240, 0.84);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.38;
  text-transform: none;
}

.x-room-gap-list span.is-plan {
  border-color: rgba(255, 250, 240, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.18), rgba(240, 90, 40, 0.18)),
    rgba(201, 45, 22, 0.24);
  color: #fffaf0;
}

.x-room-gap-list span.is-prevention {
  border-color: rgba(255, 250, 240, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.13), rgba(240, 90, 40, 0.12)),
    rgba(23, 20, 17, 0.3);
  color: rgba(255, 250, 240, 0.92);
}

.x-room-gap-list span.is-brief-line {
  padding: 0.38rem 0.5rem;
  border-color: rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.08);
  font-size: 0.74rem;
  line-height: 1.24;
}

.x-room-gap-list span.is-brief-strong {
  border-color: rgba(255, 250, 240, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.16), rgba(240, 90, 40, 0.16)),
    rgba(201, 45, 22, 0.2);
  color: #fffaf0;
}

.x-room-brief {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: grid;
  gap: 0.38rem;
  width: auto;
  padding: 1rem;
}

.x-room-brief strong {
  color: #fffaf0;
  font-size: 1rem;
  line-height: 1.35;
}

.x-room-evidence,
.x-room-lesson {
  position: relative;
  grid-column: 1;
  display: grid;
  gap: 0.45rem;
  width: auto;
  padding: 1rem;
}

.x-room-evidence {
  grid-row: 4;
}

.x-room-lesson {
  grid-row: 3;
}

.x-room-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.x-room-evidence .x-room-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: min(15.75rem, 32vh);
  overflow-y: auto;
  padding-right: 0.15rem;
  scrollbar-width: thin;
}

.x-room-lesson .x-room-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.x-room-options button {
  display: grid;
  gap: 0.25rem;
  min-height: 3.2rem;
  padding: 0.58rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.07);
  color: rgba(255, 250, 240, 0.78);
  cursor: pointer;
  text-align: left;
}

.x-room-options button:hover,
.x-room-options button:focus-visible,
.x-room-options button[aria-pressed="true"] {
  border-color: rgba(240, 90, 40, 0.78);
  background: rgba(240, 90, 40, 0.18);
  color: #fffaf0;
}

.x-room-options button strong {
  color: inherit;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.x-room-options button span {
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.25;
}

.x-room-evidence > strong {
  color: #fffaf0;
  font-size: 1rem;
  line-height: 1.35;
}

.x-room-evidence p,
.x-room-lesson p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.x-room-actions {
  position: relative;
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: auto;
  padding: 0.6rem;
}

.x-room-actions button,
.x-room-start button,
.x-room-start a {
  min-height: 3.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.68rem;
  line-height: 1.2;
}

.x-room-actions button {
  display: grid;
  gap: 0.28rem;
  justify-items: start;
  min-height: 4.1rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.82);
  text-align: left;
}

.x-room-actions button:hover,
.x-room-actions button:focus-visible {
  border-color: rgba(240, 90, 40, 0.74);
  color: #fffaf0;
}

.x-room-actions button.is-next {
  border-color: rgba(240, 90, 40, 0.7);
  background: rgba(240, 90, 40, 0.24);
  color: #fffaf0;
}

.x-room-actions button[aria-pressed="true"],
.x-room-actions button.is-selected {
  border-color: rgba(240, 90, 40, 0.78);
  background: rgba(240, 90, 40, 0.24);
  color: #fffaf0;
}

.x-room-actions button.is-missed {
  border-color: rgba(201, 45, 22, 0.68);
  background: rgba(201, 45, 22, 0.2);
  color: #fffaf0;
}

.x-room-actions button.is-done {
  color: rgba(255, 250, 240, 0.44);
  text-decoration: line-through;
}

.x-room-actions button strong,
.x-room-actions button span {
  pointer-events: none;
}

.x-room-actions button strong {
  color: inherit;
  font-size: 0.74rem;
}

.x-room-actions button span {
  color: rgba(255, 250, 240, 0.62);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.x-room-start {
  position: absolute;
  right: max(1.25rem, calc((100vw - 1250px) / 2));
  bottom: 2rem;
  z-index: 7;
  display: flex;
  gap: 0.55rem;
  width: min(33rem, calc(100% - 2.5rem));
  padding: 0.6rem;
}

.x-room-start button,
.x-room-start a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  padding: 0.75rem 0.9rem;
}

.x-room-start button {
  border: 1px solid var(--x-lime);
  background: var(--x-lime);
  color: #fffaf0;
}

.x-room-start a {
  border: 1px solid rgba(255, 250, 240, 0.2);
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
}

.x-section {
  padding: 5.4rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid var(--x-line);
}

.x-parallax-band,
.x-parallax-report {
  background-attachment: scroll;
}

.x-parallax-band {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(240, 90, 40, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(23, 20, 17, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.035) 1px, transparent 1px);
  background-size: auto, 128px 128px, 128px 128px;
}

.x-parallax-report {
  background-image:
    radial-gradient(circle at 80% 20%, rgba(240, 90, 40, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 78%, rgba(23, 20, 17, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(23, 20, 17, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 120px 120px;
}

.x-parallax-dark {
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 90, 40, 0.22), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(255, 250, 240, 0.09), transparent 22rem),
    linear-gradient(90deg, rgba(255, 250, 240, 0.05) 1px, transparent 1px) 0 0 / 112px 112px,
    #171411;
  background-attachment: scroll;
  color: #fffaf0;
}

.x-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.6fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
}

.x-section-head h2 {
  font-size: 4rem;
  line-height: 1.02;
  color: var(--x-ink);
  max-width: 13ch;
}

.x-section-head p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 1.08rem;
  font-weight: 500;
}

.x-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.x-case {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 18.5rem;
  padding: 1.2rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.72)),
    var(--x-bg-2);
  overflow: hidden;
}

.x-case::after {
  content: none;
}

.x-case-hot {
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(239, 229, 214, 0.74)),
    var(--x-bg-2);
}

.x-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.x-case-top span {
  color: var(--x-lime);
}

.x-case-top strong {
  color: var(--x-muted);
}

.x-case h3 {
  margin-top: 1.8rem;
  font-size: 2.05rem;
  line-height: 1.03;
}

.x-case p {
  margin-top: 1.1rem;
  margin-bottom: 1rem;
  color: rgba(23, 20, 17, 0.68);
}

.x-case a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  width: 100%;
  margin-top: auto;
  padding: 0 0.85rem;
  border: 1px solid var(--x-line);
  border-radius: 6px;
  color: var(--x-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.x-case a::after {
  content: ">";
  color: var(--x-lime);
}

.x-method {
  background:
    linear-gradient(180deg, rgba(23, 20, 17, 0.035), transparent),
    #ede2d0;
}

.x-method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--x-line);
  border: 1px solid var(--x-line);
  border-radius: 8px;
  overflow: hidden;
}

.x-method-list li {
  min-height: 16rem;
  padding: 1.15rem;
  background: var(--x-bg-2);
}

.x-method-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--x-lime);
  color: #fffaf0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 900;
}

.x-method-list h3 {
  margin-top: 3rem;
  font-size: 1.75rem;
}

.x-method-list p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.68);
  font-size: 0.96rem;
}

.x-proof-home {
  background: #f6efe2;
  padding-bottom: 3.6rem;
}

.x-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.x-proof-card {
  min-height: 15.5rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.68)),
    var(--x-bg-2);
  box-shadow: 0 1.25rem 3rem rgba(71, 48, 28, 0.08);
}

.x-proof-card-hot {
  border-color: rgba(240, 90, 40, 0.48);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.18), rgba(255, 250, 240, 0.88)),
    var(--x-bg-2);
}

.x-proof-card span,
.x-proof-strip span {
  display: block;
  color: var(--x-hot);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.x-proof-card h3 {
  margin-top: 1.35rem;
  font-size: 1.75rem;
  line-height: 1.04;
}

.x-proof-card p {
  margin-top: 0.9rem;
  color: rgba(23, 20, 17, 0.7);
  font-weight: 650;
}

.x-proof-strip {
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(240, 90, 40, 0.38);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.7);
}

.x-proof-strip div {
  display: grid;
  gap: 0.35rem;
  min-height: 4.8rem;
  padding: 0.7rem;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.46);
}

.x-proof-strip strong {
  color: rgba(23, 20, 17, 0.78);
  font-size: 0.9rem;
  line-height: 1.15;
}

.x-proof-strip small {
  color: rgba(23, 20, 17, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.x-emergency {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  border-top: 0;
}

.x-emergency-copy {
  position: sticky;
  top: 7.5rem;
}

.x-emergency-copy > span,
.x-response-card span {
  display: block;
  color: #ff9b74;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.x-emergency-copy h2 {
  margin-top: 0.75rem;
  max-width: min(16ch, 100%);
  color: #fffaf0;
  font-size: clamp(2.85rem, 4.6vw, 3.55rem);
  line-height: 1.02;
}

.x-emergency-copy p {
  width: min(34rem, 100%);
  margin-top: 1.3rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.1rem;
  font-weight: 600;
}

.x-emergency-copy .x-compliance-line {
  margin-top: 0.85rem;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.96rem;
}

.x-emergency-copy p strong {
  color: #fffaf0;
}

.x-btn-dark {
  color: #fffaf0 !important;
  border-color: rgba(255, 250, 240, 0.38);
  background: rgba(255, 250, 240, 0.07);
}

.x-response-grid {
  display: grid;
  gap: 1rem;
}

.x-response-card {
  min-height: 16rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.1), rgba(240, 90, 40, 0.08)),
    rgba(255, 250, 240, 0.045);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.22);
}

.x-response-hot {
  border-color: rgba(240, 90, 40, 0.7);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.28), rgba(255, 250, 240, 0.08)),
    rgba(255, 250, 240, 0.045);
}

.x-response-card h3 {
  margin-top: 1.45rem;
  color: #fffaf0;
  font-size: 2.3rem;
}

.x-response-card p {
  margin-top: 1rem;
  color: rgba(255, 250, 240, 0.75);
}

.x-response-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.x-response-card li {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.82);
  font-weight: 700;
}

.x-signal {
  padding-top: 4.6rem;
  padding-bottom: 3.4rem;
}

.x-signal-board {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), rgba(23, 20, 17, 0.045)),
    rgba(255, 250, 240, 0.76);
  box-shadow: 0 2rem 6rem rgba(71, 48, 28, 0.14);
}

.x-signal-board > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 20rem;
  padding: 1rem;
}

.x-signal-board h2 {
  font-size: 4.1rem;
  max-width: 8ch;
}

.x-signal-board p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 1.15rem;
  font-weight: 600;
}

.x-signal-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.x-signal-items a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: 13.5rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.88), rgba(239, 229, 214, 0.66)),
    rgba(255, 250, 240, 0.74);
  color: var(--x-ink);
  text-decoration: none;
}

.x-signal-items a::before {
  content: "";
  order: 2;
  display: block;
  height: 3.6rem;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 46%, rgba(240, 90, 40, 0.84) 0 0.22rem, transparent 0.25rem),
    radial-gradient(circle at 52% 34%, rgba(201, 45, 22, 0.62) 0 0.18rem, transparent 0.21rem),
    radial-gradient(circle at 82% 58%, rgba(240, 90, 40, 0.76) 0 0.2rem, transparent 0.23rem),
    linear-gradient(90deg, rgba(23, 20, 17, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.08) 1px, transparent 1px),
    rgba(255, 250, 240, 0.62);
  background-size: auto, auto, auto, 24px 24px, 24px 24px, auto;
}

.x-signal-items a:nth-child(2)::before {
  background:
    linear-gradient(90deg, rgba(240, 90, 40, 0.85) 0 18%, transparent 18% 24%, rgba(23, 20, 17, 0.28) 24% 56%, transparent 56% 62%, rgba(201, 45, 22, 0.7) 62% 100%),
    linear-gradient(0deg, rgba(23, 20, 17, 0.08) 1px, transparent 1px),
    rgba(255, 250, 240, 0.64);
  background-size: 100% 0.55rem, 24px 24px, auto;
  background-position: 0 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
}

.x-signal-items a:nth-child(3)::before {
  background:
    linear-gradient(90deg, rgba(201, 45, 22, 0.78), rgba(240, 90, 40, 0.5), rgba(23, 20, 17, 0.18)),
    repeating-linear-gradient(0deg, transparent 0 0.52rem, rgba(23, 20, 17, 0.12) 0.52rem 0.58rem),
    rgba(255, 250, 240, 0.64);
  background-size: 72% 0.55rem, 100% 100%, auto;
  background-position: 0.75rem 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
}

.x-signal-items a:nth-child(4)::before {
  background:
    radial-gradient(circle at 76% 34%, rgba(240, 90, 40, 0.78) 0 0.28rem, transparent 0.31rem),
    linear-gradient(90deg, rgba(23, 20, 17, 0.2) 0 42%, transparent 42%),
    linear-gradient(0deg, rgba(240, 90, 40, 0.42) 0 0.32rem, transparent 0.32rem),
    rgba(255, 250, 240, 0.64);
  background-size: auto, 100% 0.42rem, 76% 0.32rem, auto;
  background-position: 0 0, 0.75rem 42%, 0.75rem 68%, 0 0;
  background-repeat: no-repeat;
}

.x-signal-items a:nth-child(5)::before {
  background:
    radial-gradient(circle at 22% 50%, rgba(240, 90, 40, 0.86) 0 0.26rem, transparent 0.3rem),
    radial-gradient(circle at 48% 50%, rgba(240, 90, 40, 0.62) 0 0.2rem, transparent 0.24rem),
    radial-gradient(circle at 74% 50%, rgba(23, 20, 17, 0.28) 0 0.18rem, transparent 0.22rem),
    linear-gradient(90deg, rgba(23, 20, 17, 0.1) 1px, transparent 1px),
    rgba(255, 250, 240, 0.64);
  background-size: auto, auto, auto, 28px 100%, auto;
}

.x-signal-items a:nth-child(6)::before {
  background:
    linear-gradient(90deg, rgba(240, 90, 40, 0.82), rgba(240, 90, 40, 0.22) 58%, rgba(23, 20, 17, 0.18)),
    radial-gradient(circle at 82% 42%, rgba(240, 90, 40, 0.84) 0 0.24rem, transparent 0.27rem),
    repeating-linear-gradient(90deg, transparent 0 1rem, rgba(23, 20, 17, 0.1) 1rem 1.05rem),
    rgba(255, 250, 240, 0.64);
  background-size: 70% 0.46rem, auto, auto, auto;
  background-position: 0.75rem 58%, 0 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
}

.x-signal-items a:hover {
  border-color: rgba(240, 90, 40, 0.58);
}

.x-signal-items span {
  order: 1;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--x-lime);
}

.x-signal-items strong {
  order: 3;
  font-size: 1.45rem;
  line-height: 1.05;
}

.x-signal-items small {
  order: 4;
  color: rgba(23, 20, 17, 0.66);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.32;
}

.x-threat-map {
  position: relative;
  overflow: hidden;
  padding: 5rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  background:
    radial-gradient(circle at 76% 24%, rgba(240, 90, 40, 0.22), transparent 27rem),
    radial-gradient(circle at 16% 82%, rgba(255, 250, 240, 0.08), transparent 24rem),
    #171411;
  color: #fffaf0;
}

.x-threat-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.08) 1px, transparent 1px) 0 0 / 104px 104px,
    linear-gradient(0deg, rgba(255, 250, 240, 0.055) 1px, transparent 1px) 0 0 / 104px 104px;
  mask-image: radial-gradient(ellipse at 62% 45%, black, transparent 74%);
}

.x-threat-map::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 90, 40, 0.72), transparent);
}

.x-threat-map-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(24rem, 0.58fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.x-threat-map-copy {
  min-height: 34rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.055);
  box-shadow: inset 0 0 0 1px rgba(240, 90, 40, 0.08);
}

.x-threat-map-copy span,
.x-threat-map-badge span,
.x-threat-map-stats span,
.x-threat-map-feed span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.x-threat-map-copy span,
.x-threat-map-badge span,
.x-threat-map-stats span {
  color: #ff8a5c;
}

.x-threat-map-copy h2 {
  max-width: 10.5ch;
  margin-top: 1.25rem;
  color: #fffaf0;
  font-size: clamp(3rem, 4.2vw, 3.55rem);
  line-height: 1.02;
}

.x-threat-map-copy p {
  max-width: 35rem;
  margin-top: 1.25rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.05rem;
  font-weight: 700;
}

.x-threat-map-copy .x-btn {
  margin-top: 1.65rem;
}

.x-threat-map-panel {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(240, 90, 40, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 52% 48%, rgba(240, 90, 40, 0.16), transparent 36%),
    radial-gradient(ellipse at 52% 48%, rgba(255, 250, 240, 0.08), transparent 54%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.06), rgba(255, 250, 240, 0.02)),
    #120f0d;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.x-threat-map-panel::before,
.x-threat-map-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.x-threat-map-panel::before {
  inset: 12% 17%;
  border: 1px dashed rgba(255, 250, 240, 0.12);
  transform: rotate(-12deg) scaleY(0.58);
}

.x-threat-map-panel::after {
  inset: 21% 30%;
  border: 1px solid rgba(240, 90, 40, 0.2);
  transform: rotate(18deg) scaleY(0.48);
  animation: xMapPulse 4.6s ease-in-out infinite;
}

.x-threat-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.x-threat-map-glow {
  position: absolute;
  inset: 16% 20%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 40, 0.24), transparent 66%);
  filter: blur(30px);
  opacity: 0.8;
  transform: scaleY(0.58);
}

.x-threat-map-badge,
.x-threat-map-stats,
.x-threat-map-feed {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(18, 15, 13, 0.72);
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.x-threat-map-badge {
  top: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.28rem;
  padding: 0.68rem 0.78rem;
}

.x-threat-map-badge strong {
  color: rgba(255, 250, 240, 0.9);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-threat-map-stats {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.55rem;
}

.x-threat-map-stats div {
  min-height: 5.4rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.06);
}

.x-threat-map-stats strong {
  display: block;
  margin-top: 0.45rem;
  color: #fffaf0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.x-threat-map-feed {
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.45rem;
  width: min(23rem, calc(100% - 2rem));
  padding: 0.65rem;
}

.x-threat-map-feed p {
  margin: 0;
  padding: 0.65rem;
  border: 1px solid rgba(255, 250, 240, 0.08);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.045);
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.x-threat-map-feed span {
  display: block;
  margin-bottom: 0.22rem;
  color: #ff8a5c;
}

.x-signal.x-threat-map {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.x-threat-map .x-signal-board {
  grid-template-columns: minmax(22rem, 0.5fr) minmax(0, 1fr);
  padding: 0;
  border-color: rgba(240, 90, 40, 0.26);
  background: transparent;
  box-shadow: none;
}

.x-threat-map .x-threat-map-copy {
  min-height: 42rem;
}

.x-threat-map .x-threat-map-panel {
  min-height: 42rem;
  padding: 5.1rem 1rem 7.2rem;
}

.x-threat-map .x-threat-map-feed {
  inset: 5.1rem 1rem 7.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  width: auto;
  gap: 0.55rem;
  padding: 0.55rem;
}

.x-threat-map .x-signal-items a {
  min-height: auto;
  gap: 0.45rem;
  padding: 0.72rem;
  border-color: rgba(255, 250, 240, 0.1);
  background: rgba(18, 15, 13, 0.76);
  color: #fffaf0;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
}

.x-threat-map .x-signal-items a::before {
  height: 2rem;
  border-color: rgba(255, 250, 240, 0.1);
  opacity: 0.78;
}

.x-threat-map .x-signal-items span {
  color: #ff8a5c;
  font-size: 0.58rem;
}

.x-threat-map .x-signal-items strong {
  color: #fffaf0;
  font-size: 1.02rem;
  line-height: 1.05;
}

.x-threat-map .x-signal-items small {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.72rem;
  line-height: 1.25;
}

.x-not {
  background: var(--x-lime);
  color: #fffaf0;
}

.x-not-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 3rem;
  align-items: end;
}

.x-not h2 {
  font-size: 4.5rem;
  line-height: 1.02;
}

.x-not p {
  margin-bottom: 1.35rem;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.1rem;
  font-weight: 700;
}

.x-not .x-btn-primary {
  background: #171411;
  color: #fffaf0 !important;
  border-color: #171411;
  box-shadow: none;
}

.x-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid var(--x-line);
  background: #171411;
  color: rgba(255, 250, 240, 0.72);
}

.x-footer strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.25rem;
  color: #fffaf0;
}

.x-footer span,
.x-footer nav {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.x-footer a {
  color: inherit;
  text-decoration: none;
}

.x-footer a:hover {
  color: #fffaf0;
}

.x-tools-promo {
  background: rgba(255, 250, 240, 0.42);
}

.x-tool-promo-grid,
.x-price-grid,
.tool-grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.x-tool-promo-grid a,
.x-price-card,
.tool-card,
.tool-lab,
.tool-roadmap,
.tool-hero-panel {
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  box-shadow: 0 1.25rem 3rem rgba(71, 48, 28, 0.08);
}

.x-tool-promo-grid a {
  min-height: 14rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--x-ink);
  text-decoration: none;
}

.x-tool-promo-grid span,
.x-price-card span,
.tool-card span,
.tool-lab-head span,
.tool-hero-panel span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--x-lime);
  text-transform: uppercase;
}

.x-tool-promo-grid strong {
  font-size: 1.55rem;
  line-height: 1.05;
}

.x-roi {
  background: #fff7e8;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.x-roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.58fr);
  gap: 1rem;
  align-items: start;
}

.x-roi .x-section-head {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(22rem, 0.78fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.x-roi .x-section-head h2 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 3.3vw, 3.25rem);
}

.x-roi .x-section-head p {
  max-width: 43rem;
  font-size: 1.02rem;
  font-weight: 650;
}

.x-roi-form,
.x-roi-output {
  border: 1px solid rgba(240, 90, 40, 0.36);
  border-radius: 8px;
  box-shadow: 0 1.6rem 4rem rgba(71, 48, 28, 0.11);
}

.x-roi-form {
  padding: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
}

.x-roi-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.x-roi-form-head span,
.x-roi-output > span,
.x-roi-lines span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.x-roi-form-head span {
  color: var(--x-lime);
}

.x-roi-form-head strong {
  max-width: 16rem;
  text-align: right;
  font-size: 1.35rem;
  line-height: 1.04;
}

.x-roi-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.x-roi-fields label {
  display: grid;
  gap: 0.35rem;
  padding: 0.62rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.x-roi-fields label:last-child {
  grid-column: 1 / -1;
}

.x-roi-fields label span {
  color: rgba(23, 20, 17, 0.62);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.x-roi-fields input {
  width: 100%;
  min-width: 0;
  height: 2.9rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(23, 20, 17, 0.22);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--x-ink);
  font: 900 1.35rem/1 "Inter", system-ui, sans-serif;
}

.x-roi-fields input:focus {
  outline: 3px solid rgba(240, 90, 40, 0.2);
  border-color: rgba(240, 90, 40, 0.7);
}

.x-roi-form .x-fineprint {
  margin-top: 0.8rem;
  color: rgba(23, 20, 17, 0.74);
}

.x-roi-output {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.22), rgba(23, 20, 17, 0.78)),
    #171411;
  color: #fffaf0;
}

.x-roi-output > span,
.x-roi-lines span {
  color: #ffb08c;
}

.x-roi-output > strong {
  display: block;
  margin-top: 0.75rem;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 3.15rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.x-roi-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.x-roi-compare div {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.07);
}

.x-roi-compare span {
  color: #ffb08c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.x-roi-compare strong {
  font-size: 1.1rem;
  line-height: 1.12;
}

.x-roi-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.x-roi-lines div {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
}

.x-roi-lines strong {
  font-size: 1rem;
  line-height: 1.25;
}

.x-roi-output p {
  margin-top: auto;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 700;
}

.x-pricing {
  background: #ede2d0;
  padding-top: 3.6rem;
  padding-bottom: 4.2rem;
}

.x-pricing .x-section-head {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.35rem;
}

.x-pricing .x-section-head h2 {
  max-width: 26ch;
  font-size: 2.78rem;
  line-height: 1;
}

.x-pricing .x-section-head p {
  font-size: 1.02rem;
  line-height: 1.5;
}

.x-price-card {
  min-height: 28rem;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
}

.x-price-featured {
  border-color: rgba(240, 90, 40, 0.48);
  box-shadow: 0 2rem 4rem rgba(201, 45, 22, 0.13);
}

.x-price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.x-price-response {
  border-color: rgba(240, 90, 40, 0.72);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.2), rgba(255, 250, 240, 0.9) 48%),
    var(--x-bg-2);
}

.x-price-card h3 {
  margin-top: 1.8rem;
  font-size: 2.35rem;
}

.x-price-card p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.7);
}

.x-price-card ul {
  display: grid;
  gap: 0.65rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.x-price-card li {
  padding-top: 0.65rem;
  border-top: 1px solid var(--x-line);
  color: rgba(23, 20, 17, 0.76);
  font-weight: 700;
}

.x-price-card li.x-price-hours {
  color: var(--x-hot);
}

.x-price-card li.x-price-annual {
  color: rgba(23, 20, 17, 0.5);
  font-size: 0.92rem;
}

@media (min-width: 1800px) {
  .x-roi,
  .x-pricing {
    padding-left: max(1.5rem, calc((100vw - 1680px) / 2));
    padding-right: max(1.5rem, calc((100vw - 1680px) / 2));
  }

  .x-roi {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }

  .x-pricing {
    padding-top: 3.4rem;
    padding-bottom: 3.8rem;
  }

  .x-roi .x-section-head,
  .x-pricing .x-section-head {
    margin-bottom: 1.25rem;
  }

  .x-price-card {
    min-height: 24rem;
    padding: 1rem;
  }

  .x-price-card h3 {
    margin-top: 1.15rem;
    font-size: 2.15rem;
  }

  .x-price-card p {
    margin-top: 0.75rem;
  }

  .x-price-card ul {
    margin: 1.25rem 0 0;
  }
}

.x-stack-note {
  display: grid;
  grid-template-columns: minmax(13rem, 0.72fr) minmax(0, 2.4fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(240, 90, 40, 0.38);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
}

.x-stack-note strong {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.x-stack-title,
.x-stack-points > div {
  min-width: 0;
  padding: 0.72rem;
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.42);
}

.x-stack-title p,
.x-stack-points p {
  margin-top: 0.45rem;
  color: rgba(23, 20, 17, 0.7);
  font-size: 0.96rem;
  line-height: 1.35;
}

.x-stack-points {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.x-stack-points span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: var(--x-hot);
  text-transform: uppercase;
}

.x-stack-points a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.44fr);
  gap: 2rem;
  align-items: center;
  min-height: 28rem;
  padding: 8rem max(1.25rem, calc((100vw - 1250px) / 2)) 3rem;
  border-bottom: 1px solid var(--x-line);
}

.tool-hero h1 {
  font-size: 6.2rem;
}

.tool-hero p {
  max-width: 48rem;
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.72);
  font-size: 1.25rem;
  font-weight: 650;
}

.tool-hero-panel {
  padding: 1rem;
}

.tool-hero-panel strong {
  display: block;
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 1.15;
}

.tool-lab,
.tool-grid-section,
.tool-roadmap {
  margin: 1rem max(1.25rem, calc((100vw - 1250px) / 2)) 0;
}

.tool-lab {
  padding: 1rem;
}

.tool-lab-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}

.tool-lab-head h2,
.tool-card h2,
.tool-roadmap h2 {
  margin-top: 0.35rem;
  font-size: 2.5rem;
}

.tool-lab-head p,
.tool-card p,
.tool-roadmap p {
  margin-top: 0.7rem;
  color: rgba(23, 20, 17, 0.7);
}

.domain-form label,
.router-form label {
  display: grid;
  gap: 0.4rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--x-muted);
}

.domain-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-top: 0.45rem;
}

.domain-form input,
.tool-card input,
.router-form select {
  width: 100%;
  min-height: 3.3rem;
  border: 1px solid var(--x-line-strong);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.8);
  color: var(--x-ink);
  font: 700 0.92rem "Inter", sans-serif;
  padding: 0.8rem 0.9rem;
}

.tool-results {
  min-height: 12rem;
  border: 1px dashed rgba(23, 20, 17, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.58);
}

.empty-result {
  display: grid;
  place-items: center;
  min-height: 12rem;
  padding: 1rem;
  color: var(--x-muted);
  font-weight: 800;
  text-align: center;
}

.result-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--x-line);
}

.result-summary span,
.result-card span {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--x-muted);
  text-transform: uppercase;
}

.result-summary strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.4rem;
}

.result-summary small {
  display: block;
  margin-top: 0.15rem;
  color: var(--x-muted);
  font-weight: 750;
}

.copy-result {
  min-height: 2.6rem;
  border: 1px solid var(--x-line-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--x-ink);
  font: 800 0.72rem "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 0.8rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
}

.result-card {
  min-height: 10rem;
  padding: 0.85rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
}

.result-card strong {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card.missing strong {
  color: var(--x-hot);
}

.result-card.warn strong {
  color: #9a6413;
}

.result-card.critical strong {
  color: #c92d16;
}

.result-card.info strong {
  color: var(--x-muted);
}

.result-card h3 {
  margin-top: 0.5rem;
  color: var(--x-ink);
  font-size: 1.08rem;
  line-height: 1.12;
}

.result-card p {
  margin-top: 0.75rem;
  color: rgba(23, 20, 17, 0.7);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.result-card small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(23, 20, 17, 0.76);
  font-weight: 800;
  line-height: 1.45;
}

.exposure-lab {
  background:
    linear-gradient(135deg, rgba(23, 20, 17, 0.03), rgba(240, 90, 40, 0.06)),
    rgba(255, 250, 240, 0.6);
}

.breach-live-check .tool-lab-head {
  align-items: start;
}

.breach-form-stack {
  display: grid;
  gap: 1rem;
}

.breach-email-form {
  padding: 0.85rem;
  border: 1px solid rgba(240, 90, 40, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.breach-consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.55rem !important;
  align-items: start;
  margin-top: 0.75rem;
  color: rgba(23, 20, 17, 0.68) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.35;
  text-transform: none !important;
}

.breach-consent input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.1rem;
  padding: 0;
  border-radius: 3px;
  accent-color: var(--x-hot);
}

.breach-results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
}

.breach-results-grid .tool-results {
  min-height: 18rem;
}

.breach-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0 0.75rem 0.75rem;
}

.breach-metrics > div {
  min-height: 5rem;
  padding: 0.75rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.breach-metrics span {
  display: block;
  color: var(--x-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breach-metrics strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--x-hot);
  font-size: 2rem;
  line-height: 1;
}

.exposure-summary {
  align-items: stretch;
}

.exposure-score {
  min-width: 11rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(23, 20, 17, 0.04);
}

.exposure-score strong {
  color: var(--x-hot);
  font-size: 2rem;
  line-height: 1;
}

.exposure-narrative {
  margin: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(240, 90, 40, 0.28);
  border-radius: 8px;
  background: rgba(240, 90, 40, 0.09);
  color: rgba(23, 20, 17, 0.78);
  font-weight: 850;
}

.exposure-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 0.75rem 0.75rem;
}

.exposure-sources span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.65rem;
  border: 1px solid var(--x-line);
  border-radius: 999px;
  color: var(--x-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exposure-sources span.is-on {
  border-color: rgba(240, 90, 40, 0.36);
  color: var(--x-hot);
  background: rgba(240, 90, 40, 0.08);
}

.exposure-finding-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exposure-assets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0 0.75rem 0.75rem;
}

.exposure-assets > div,
.exposure-cta {
  padding: 0.85rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.7);
}

.exposure-assets span {
  display: block;
  color: var(--x-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exposure-assets p {
  margin: 0.45rem 0 0;
  color: rgba(23, 20, 17, 0.74);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.exposure-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  margin: 0 0.75rem 0.75rem;
  border-color: rgba(240, 90, 40, 0.34);
}

.exposure-cta strong {
  color: var(--x-ink);
  font-size: 1.1rem;
}

.exposure-cta span {
  color: rgba(23, 20, 17, 0.72);
  font-weight: 750;
}

.tool-card {
  min-height: 30rem;
  padding: 1rem;
}

.locked-tool {
  opacity: 0.9;
}

.tool-card-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-top: 7rem;
}

.tool-card button:disabled,
.tool-card input:disabled {
  opacity: 0.62;
}

.router-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.router-output {
  margin-top: 1rem;
  min-height: 7rem;
  padding: 0.9rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  color: rgba(23, 20, 17, 0.74);
  font-weight: 700;
}

.tool-roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.tool-roadmap ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-roadmap li {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--x-line);
}

.tool-roadmap li:last-child {
  border-bottom: 0;
}

.tool-roadmap strong {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-roadmap span {
  color: rgba(23, 20, 17, 0.68);
}

.channel-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(240, 90, 40, 0.16), transparent 24rem),
    radial-gradient(circle at 14% 84%, rgba(23, 20, 17, 0.08), transparent 24rem),
    var(--x-bg);
}

.channel-hero {
  min-height: 24rem;
}

.channel-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--x-hot);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.channel-page .tool-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
}

.channel-page .tool-hero-panel strong {
  margin-top: 1.3rem;
}

.channel-page .tool-hero > * {
  min-width: 0;
}

.channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-page .tool-card {
  min-height: auto;
}

.channel-page .tool-card h2 {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}

.channel-roadmap {
  align-items: start;
}

.channel-roadmap .channel-kicker {
  margin-bottom: 0.25rem;
}

.channel-final {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ---------- real report conversion pages ---------- */
.report-conversion-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(240, 90, 40, 0.18), transparent 23rem),
    radial-gradient(circle at 12% 86%, rgba(23, 20, 17, 0.1), transparent 24rem),
    var(--x-bg);
}

.rc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 0.55fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
  min-height: 42rem;
  padding: 9.75rem max(1.25rem, calc((100vw - 1250px) / 2)) 3.25rem;
  overflow: hidden;
  border-bottom: 1px solid var(--x-line);
}

.rc-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 24%, transparent 0 27%, rgba(240, 90, 40, 0.18) 27.2%, transparent 27.55%);
  background-size: 104px 104px, 104px 104px, auto;
  opacity: 0.7;
}

.rc-hero-copy,
.rc-hero-panel,
.rc-section > * {
  position: relative;
  z-index: 2;
}

.rc-hero h1 {
  max-width: 11ch;
  margin-top: 0.7rem;
  font-size: clamp(3.65rem, 7.2vw, 6.4rem);
}

.assessment-report-page .rc-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 6.6vw, 5.7rem);
}

.rc-hero-copy > p {
  max-width: 47rem;
  margin-top: 1.1rem;
  color: rgba(23, 20, 17, 0.74);
  font-size: 1.2rem;
  font-weight: 700;
}

.rc-hero-panel {
  display: grid;
  gap: 1rem;
  min-height: 22rem;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(239, 229, 214, 0.64)),
    var(--x-bg-2);
  box-shadow: 0 1.6rem 3.8rem rgba(71, 48, 28, 0.13);
}

.rc-hero-panel > span,
.rc-panel-lines span,
.rc-card span,
.rc-brief > span,
.rc-brief-lines span,
.rc-intake-grid span {
  display: block;
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rc-hero-panel > strong {
  margin-top: auto;
  color: var(--x-ink);
  font-size: 1.55rem;
  line-height: 1.08;
}

.rc-panel-lines {
  display: grid;
  gap: 0.55rem;
}

.rc-panel-lines div {
  min-height: 4.8rem;
  padding: 0.72rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
}

.rc-panel-lines strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--x-ink);
  font-size: 1rem;
  line-height: 1.18;
}

.rc-section {
  position: relative;
  padding: 7rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid var(--x-line);
}

.rc-section .rx-section-head > * {
  min-width: 0;
}

.rc-report {
  background: #fff7e8;
}

.rc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.rc-card {
  min-height: 24.5rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
}

.rc-card-hot {
  border-color: rgba(240, 90, 40, 0.72);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.22), rgba(255, 250, 240, 0.92) 52%),
    var(--x-bg-2);
}

.rc-card h3 {
  margin-top: 4rem;
  font-size: 1.9rem;
  line-height: 1;
}

.rc-card p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.68);
  font-weight: 650;
}

.rc-dark {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 90, 40, 0.22), transparent 30rem),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px) 0 0 / 112px 112px,
    #171411;
  color: #fffaf0;
}

.rc-section-copy {
  position: sticky;
  top: 7.5rem;
}

.rc-section-copy h2 {
  margin-top: 0.7rem;
  color: #fffaf0;
  font-size: clamp(3rem, 6vw, 5rem);
}

.rc-section-copy p {
  max-width: 37rem;
  margin-top: 1rem;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.08rem;
  font-weight: 650;
}

.rc-brief {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.22), rgba(255, 250, 240, 0.08)),
    rgba(255, 250, 240, 0.045);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.rc-brief > span,
.rc-brief-lines span {
  color: #ffb08c;
}

.rc-brief > strong {
  color: #fffaf0;
  font-size: 2.2rem;
  line-height: 1;
}

.rc-brief-lines {
  display: grid;
  gap: 0.65rem;
}

.rc-brief-lines div {
  padding: 0.75rem;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.07);
}

.rc-brief-lines strong {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1rem;
  line-height: 1.24;
}

.rc-intake {
  background-color: #ede2d0;
}

.rc-intake-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.rc-intake-grid article {
  min-height: 18rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
}

.rc-intake-grid h3 {
  margin-top: 3.2rem;
  font-size: 1.62rem;
  line-height: 1;
}

.rc-intake-grid p {
  margin-top: 0.9rem;
  color: rgba(23, 20, 17, 0.68);
  font-weight: 650;
}

.rc-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.42fr);
  gap: 2rem;
  align-items: end;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), rgba(255, 250, 240, 0.82)),
    rgba(255, 250, 240, 0.72);
  box-shadow: 0 1.5rem 4rem rgba(71, 48, 28, 0.12);
}

.rc-cta-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.rc-cta-card p {
  max-width: 40rem;
  margin-top: 0.8rem;
  color: rgba(23, 20, 17, 0.72);
  font-weight: 650;
}

@media (max-width: 1120px) {
  .rc-hero,
  .rc-dark,
  .rc-cta-card {
    grid-template-columns: 1fr;
  }

  .rc-section-copy {
    position: relative;
    top: auto;
  }

  .rc-card-grid,
  .rc-intake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rc-hero {
    min-height: auto;
    padding: 7.25rem 0.9rem 2.75rem;
  }

  .rc-hero h1,
  .assessment-report-page .rc-hero h1 {
    font-size: 3.45rem;
  }

  .rc-hero-copy > p {
    font-size: 1.05rem;
  }

  .rc-section {
    padding: 4.75rem 0.9rem;
  }

  .rc-section .rx-section-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .rc-section .rx-section-head h2,
  .rc-section .rx-section-head p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .rc-card-grid,
  .rc-intake-grid {
    grid-template-columns: 1fr;
  }

  .rc-card,
  .rc-intake-grid article {
    min-height: auto;
  }

  .rc-card h3,
  .rc-intake-grid h3 {
    margin-top: 2rem;
    font-size: 1.72rem;
  }

  .rc-brief > strong {
    font-size: 1.85rem;
  }

  .rc-cta-card {
    padding: 0.75rem;
  }
}

/* ---------- 3PS Lock stack page ---------- */
.lock-stack-page {
  background:
    radial-gradient(circle at 76% 10%, rgba(240, 90, 40, 0.2), transparent 24rem),
    radial-gradient(circle at 15% 88%, rgba(23, 20, 17, 0.12), transparent 24rem),
    var(--x-bg);
}

.lock-stack-page .rc-hero {
  min-height: 45rem;
  align-items: center;
}

.lock-stack-page .rc-grid-lines {
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 24%, transparent 0 24%, rgba(240, 90, 40, 0.2) 24.2%, transparent 24.55%),
    radial-gradient(ellipse at 16% 76%, transparent 0 18%, rgba(23, 20, 17, 0.08) 18.2%, transparent 18.55%);
  background-size: 104px 104px, 104px 104px, auto, auto;
}

.ls-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.35rem, 7vw, 6.2rem);
}

.ls-hero-panel {
  min-height: 25rem;
  border-color: rgba(240, 90, 40, 0.5);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.18), rgba(255, 250, 240, 0.9) 42%, rgba(23, 20, 17, 0.08)),
    var(--x-bg-2);
}

.ls-hero-panel > strong {
  font-size: 1.75rem;
}

.ls-layer-grid .rc-card h3 {
  margin-top: 3.1rem;
}

.ls-failure .rc-section-copy h2 {
  max-width: 10ch;
}

.ls-failure-brief {
  min-height: 28rem;
}

.ls-pricing {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.52), rgba(237, 226, 208, 0.72)),
    var(--x-bg);
}

.ls-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.ls-price-card {
  display: grid;
  align-content: start;
  min-height: 20.5rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
}

.ls-price-card span {
  display: block;
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ls-price-card h3 {
  margin-top: 2.25rem;
  color: var(--x-ink);
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  line-height: 0.95;
}

.ls-price-card p {
  margin-top: 0.95rem;
  color: rgba(23, 20, 17, 0.68);
  font-weight: 650;
}

.ls-price-card strong {
  display: block;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--x-ink);
  font-size: 1rem;
  line-height: 1.15;
}

.ls-price-anchor {
  border-color: rgba(240, 90, 40, 0.72);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.2), rgba(255, 250, 240, 0.92) 48%),
    var(--x-bg-2);
}

.ls-pricing-note {
  max-width: 67rem;
  margin: 1rem 0 0;
  color: rgba(23, 20, 17, 0.66);
  font-size: 0.94rem;
  font-weight: 700;
}

.ls-rollout-grid article {
  min-height: 19.25rem;
}

.ls-final-card {
  margin-top: 1.2rem;
}

@media (max-width: 1120px) {
  .ls-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lock-stack-page .rc-hero {
    min-height: auto;
  }

  .ls-hero h1 {
    font-size: 3.25rem;
  }

  .ls-hero-panel {
    min-height: auto;
  }

  .ls-price-grid {
    grid-template-columns: 1fr;
  }

  .ls-price-card,
  .ls-rollout-grid article {
    min-height: auto;
  }

  .ls-price-card h3 {
    margin-top: 1.6rem;
    font-size: 2.65rem;
  }
}

/* ---------- proof packets case-study page ---------- */
.proof-packets-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(240, 90, 40, 0.2), transparent 24rem),
    radial-gradient(circle at 14% 86%, rgba(23, 20, 17, 0.11), transparent 24rem),
    var(--x-bg);
}

.proof-packets-page .rc-hero {
  min-height: 43rem;
  align-items: center;
}

.proof-packets-page .rc-section {
  scroll-margin-top: 7.5rem;
}

.proof-packets-page .rc-grid-lines {
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 74% 24%, transparent 0 26%, rgba(240, 90, 40, 0.2) 26.2%, transparent 26.55%),
    radial-gradient(ellipse at 18% 72%, transparent 0 18%, rgba(23, 20, 17, 0.08) 18.2%, transparent 18.55%);
  background-size: 104px 104px, 104px 104px, auto, auto;
}

.pp-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 7.5vw, 6.7rem);
}

.pp-hero-panel {
  min-height: 25rem;
  border-color: rgba(240, 90, 40, 0.5);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.18), rgba(255, 250, 240, 0.92) 48%),
    var(--x-bg-2);
}

.pp-hero-panel > strong {
  font-size: 1.7rem;
}

.pp-packets {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.64), rgba(237, 226, 208, 0.58)),
    #fff7e8;
}

.pp-packet-stack {
  display: grid;
  gap: 1rem;
}

.pp-packet {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.68)),
    var(--x-bg-2);
  box-shadow: 0 1.5rem 4rem rgba(71, 48, 28, 0.09);
  overflow: hidden;
}

.pp-packet::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 12%, transparent 82%);
  opacity: 0.75;
}

.pp-packet > * {
  position: relative;
  z-index: 2;
}

.pp-packet-hot {
  border-color: rgba(240, 90, 40, 0.72);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.2), rgba(255, 250, 240, 0.92) 44%),
    var(--x-bg-2);
}

.pp-packet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(23, 20, 17, 0.64);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pp-packet-top span {
  color: var(--x-lime);
}

.pp-packet-main {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 1fr);
  gap: 2rem;
  align-items: start;
}

.pp-packet-main h3 {
  max-width: 13ch;
  color: var(--x-ink);
  font-size: clamp(2.65rem, 5.2vw, 4.6rem);
  line-height: 0.95;
}

.pp-packet-main p {
  max-width: 39rem;
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.7);
  font-size: 1.03rem;
  font-weight: 700;
}

.pp-packet-main dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.pp-packet-main dl div {
  padding: 0.9rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.7);
}

.pp-packet-main dt,
.pp-metrics span,
.pp-proof-board span {
  display: block;
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pp-packet-main dd {
  margin: 0.42rem 0 0;
  color: rgba(23, 20, 17, 0.78);
  font-weight: 760;
  line-height: 1.35;
}

.pp-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--x-line);
}

.pp-metrics div {
  min-height: 7rem;
  padding: 0.85rem;
  border: 1px solid rgba(240, 90, 40, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
}

.pp-metrics strong {
  display: block;
  margin-top: 0.65rem;
  color: var(--x-ink);
  font-size: 1.12rem;
  line-height: 1.08;
}

.pp-evidence .rc-section-copy h2 {
  max-width: 12ch;
}

.pp-proof-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.pp-proof-board article {
  min-height: 16rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(240, 90, 40, 0.08)),
    rgba(255, 250, 240, 0.045);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.pp-proof-board span {
  color: #ffb08c;
}

.pp-proof-board strong {
  display: block;
  margin-top: 3.4rem;
  color: rgba(255, 250, 240, 0.92);
  font-size: 1.25rem;
  line-height: 1.18;
}

.pp-method-grid article {
  min-height: 19rem;
}

.pp-final-card {
  margin-top: 1.2rem;
}

@media (max-width: 1120px) {
  .pp-packet-main {
    grid-template-columns: 1fr;
  }

  .pp-packet-main h3 {
    max-width: 16ch;
  }
}

@media (max-width: 760px) {
  .proof-packets-page .rc-hero {
    min-height: auto;
  }

  .pp-hero h1 {
    font-size: 3.35rem;
  }

  .pp-hero-panel {
    min-height: auto;
  }

  .pp-packet-main {
    gap: 1.1rem;
  }

  .pp-packet-main h3 {
    font-size: 2.55rem;
  }

  .pp-metrics,
  .pp-proof-board {
    grid-template-columns: 1fr;
  }

  .pp-metrics div,
  .pp-proof-board article,
  .pp-method-grid article {
    min-height: auto;
  }

  .pp-proof-board strong {
    margin-top: 2rem;
  }
}

/* ---------- brand-aligned information pages ---------- */
.brand-info-page {
  background:
    radial-gradient(circle at 76% 12%, rgba(240, 90, 40, 0.18), transparent 24rem),
    radial-gradient(circle at 14% 86%, rgba(23, 20, 17, 0.11), transparent 24rem),
    var(--x-bg);
}

.brand-info-page .rc-hero {
  min-height: 43rem;
  align-items: center;
}

.brand-info-page .rc-section {
  scroll-margin-top: 7.5rem;
}

.brand-info-page .rc-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.35rem, 6.8vw, 6rem);
}

.brand-info-page .rc-hero-panel {
  min-height: 24rem;
  border-color: rgba(240, 90, 40, 0.5);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), rgba(255, 250, 240, 0.92) 50%),
    var(--x-bg-2);
}

.brand-info-page .rc-hero-panel > strong {
  font-size: 1.65rem;
}

.brand-info-page .rc-card h3 {
  margin-top: 2.8rem;
}

.brand-info-page .rc-card,
.brand-info-page .rc-intake-grid article {
  min-height: 20rem;
}

.how-page .rc-card h3,
.about-page .rc-card h3 {
  font-size: 1.78rem;
}

.industries-grid .rc-card {
  min-height: 21.5rem;
}

.industries-grid .rc-card h3 {
  font-size: 1.72rem;
}

.brand-three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1120px) {
  .brand-three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-info-page .rc-hero {
    min-height: auto;
  }

  .brand-info-page .rc-hero h1 {
    font-size: 3.2rem;
  }

  .brand-info-page .rc-hero-panel,
  .brand-info-page .rc-card,
  .brand-info-page .rc-intake-grid article,
  .industries-grid .rc-card {
    min-height: auto;
  }

  .brand-info-page .rc-card h3,
  .industries-grid .rc-card h3 {
    margin-top: 2rem;
    font-size: 1.72rem;
  }

  .brand-three-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- services command menu ---------- */
.services-command-page {
  background:
    radial-gradient(circle at 76% 12%, rgba(240, 90, 40, 0.18), transparent 23rem),
    radial-gradient(circle at 14% 88%, rgba(23, 20, 17, 0.1), transparent 24rem),
    var(--x-bg);
}

.sx-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.46fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
  min-height: 38rem;
  padding: 10rem max(1.25rem, calc((100vw - 1250px) / 2)) 3.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--x-line);
}

.sx-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 20%, transparent 0 25%, rgba(240, 90, 40, 0.18) 25.2%, transparent 25.55%);
  background-size: 104px 104px, 104px 104px, auto;
  opacity: 0.7;
}

.sx-hero-copy,
.sx-hero-panel,
.sx-section > * {
  position: relative;
  z-index: 2;
}

.sx-hero h1 {
  max-width: 8ch;
  margin-top: 0.7rem;
  font-size: clamp(4.5rem, 10vw, 8.4rem);
}

.sx-hero-copy > p {
  max-width: 46rem;
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.74);
  font-size: 1.24rem;
  font-weight: 700;
}

.sx-hero-panel {
  display: grid;
  gap: 0.85rem;
  min-height: 19rem;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(239, 229, 214, 0.64)),
    var(--x-bg-2);
  box-shadow: 0 1.6rem 3.8rem rgba(71, 48, 28, 0.13);
}

.sx-hero-panel span,
.sx-command-card span,
.sx-lane-grid span,
.sx-report-list span,
.sx-prep-grid span {
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sx-hero-panel strong {
  margin-top: auto;
  color: var(--x-ink);
  font-size: 1.55rem;
  line-height: 1.08;
}

.sx-hero-panel p {
  color: rgba(23, 20, 17, 0.7);
  font-weight: 650;
}

.sx-section {
  position: relative;
  padding: 7rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid var(--x-line);
}

.sx-command {
  background: #fff7e8;
}

.sx-command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.sx-command-card {
  display: flex;
  flex-direction: column;
  min-height: 25.5rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  color: var(--x-ink);
  text-decoration: none;
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sx-command-card:hover,
.sx-command-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240, 90, 40, 0.6);
  box-shadow: 0 1.8rem 3.8rem rgba(71, 48, 28, 0.14);
}

.sx-command-card.sx-hot {
  border-color: rgba(240, 90, 40, 0.72);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.22), rgba(255, 250, 240, 0.92) 52%),
    var(--x-bg-2);
}

.sx-command-card h3 {
  margin-top: 3.6rem;
  font-size: 1.85rem;
  line-height: 1;
}

.sx-command-card p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.68);
  font-weight: 650;
}

.sx-command-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--x-line);
  color: var(--x-hot);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sx-command-card strong::after {
  content: ">";
}

.sx-dark {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 90, 40, 0.22), transparent 30rem),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px) 0 0 / 112px 112px,
    #171411;
  color: #fffaf0;
}

.sx-dark .rx-section-copy {
  position: sticky;
  top: 7.5rem;
}

.sx-dark .rx-section-copy h2,
.sx-prep .rx-section-head h2 {
  color: #fffaf0;
}

.sx-dark .rx-section-copy p,
.sx-lane-grid p,
.sx-prep .rx-section-head p,
.sx-prep-grid p {
  color: rgba(255, 250, 240, 0.76);
}

.sx-lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.sx-lane-grid article,
.sx-prep-grid article {
  min-height: 21rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.11), rgba(240, 90, 40, 0.08)),
    rgba(255, 250, 240, 0.045);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.sx-lane-grid span,
.sx-prep-grid span {
  color: #ffb08c;
}

.sx-lane-grid h3,
.sx-prep-grid h3 {
  margin-top: 4rem;
  color: #fffaf0;
  font-size: 2rem;
}

.sx-lane-grid p,
.sx-prep-grid p {
  margin-top: 0.9rem;
  font-weight: 700;
}

.sx-reports {
  background-color: #f3ecdf;
}

.sx-report-board {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), rgba(23, 20, 17, 0.045)),
    rgba(255, 250, 240, 0.78);
  box-shadow: 0 2rem 6rem rgba(71, 48, 28, 0.14);
}

.sx-report-board > div:first-child {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.sx-report-board h2,
.sx-proof-grid h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.85rem, 5.6vw, 4.8rem);
}

.sx-report-board p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 1.08rem;
  font-weight: 650;
}

.sx-report-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sx-report-list a {
  display: flex;
  min-height: 12.5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  color: var(--x-ink);
  text-decoration: none;
}

.sx-report-list a:hover,
.sx-report-list a:focus-visible {
  border-color: rgba(240, 90, 40, 0.58);
}

.sx-report-list strong {
  font-size: 1.28rem;
  line-height: 1.08;
}

.sx-prep {
  color: #fffaf0;
}

.sx-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sx-proof {
  background: #ede2d0;
}

.sx-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.sx-proof-grid ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sx-proof-grid li {
  padding: 0.9rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
  color: rgba(23, 20, 17, 0.76);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.55;
}

.sx-proof-grid strong {
  color: var(--x-ink);
}

.sx-service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.sx-service-links a {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--x-ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.sx-service-links a::after {
  content: ">";
  color: var(--x-hot);
}

.sx-service-links a:hover,
.sx-service-links a:focus-visible {
  border-color: rgba(240, 90, 40, 0.58);
}

/* ---------- service detail pages ---------- */
.service-detail-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(240, 90, 40, 0.18), transparent 23rem),
    radial-gradient(circle at 12% 86%, rgba(23, 20, 17, 0.1), transparent 24rem),
    var(--x-bg);
}

.sd-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(24rem, 0.52fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
  min-height: 41rem;
  padding: 9.5rem max(1.25rem, calc((100vw - 1250px) / 2)) 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--x-line);
}

.sd-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 73% 24%, transparent 0 25%, rgba(240, 90, 40, 0.2) 25.2%, transparent 25.55%);
  background-size: 104px 104px, 104px 104px, auto;
  opacity: 0.68;
}

.sd-hero-copy,
.sd-hero-panel,
.sd-section > *,
.sd-final > * {
  position: relative;
  z-index: 2;
}

.sd-hero h1 {
  max-width: 12ch;
  margin-top: 0.75rem;
  font-size: clamp(3.5rem, 7.8vw, 6.7rem);
}

.sd-hero-copy > p {
  max-width: 45rem;
  margin-top: 1.15rem;
  color: rgba(23, 20, 17, 0.74);
  font-size: 1.21rem;
  font-weight: 700;
}

.sd-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.sd-facts div,
.sd-proof-list div {
  min-height: 5.6rem;
  padding: 0.76rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 1rem 2rem rgba(71, 48, 28, 0.08);
}

.sd-facts span,
.sd-hero-panel span,
.sd-card span,
.sd-action-grid article > span,
.sd-proof-list span,
.sd-prep-grid span {
  display: block;
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sd-facts strong {
  display: block;
  margin-top: 0.38rem;
  color: var(--x-ink);
  font-size: 1rem;
  line-height: 1.12;
}

.sd-hero-panel {
  display: grid;
  gap: 0.85rem;
  align-self: stretch;
  min-height: 27rem;
  padding: 0.9rem;
  border: 1px solid rgba(240, 90, 40, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  box-shadow: 0 1.8rem 4.5rem rgba(71, 48, 28, 0.14);
}

.sd-hero-panel img {
  width: 100%;
  min-height: 11rem;
  max-height: 15rem;
  object-fit: cover;
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 7px;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.02);
}

.sd-hero-panel strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--x-ink);
  font-size: 1.55rem;
  line-height: 1.08;
}

.sd-hero-panel p {
  color: rgba(23, 20, 17, 0.72);
  font-weight: 650;
}

.sd-status-list {
  display: grid;
  gap: 0.52rem;
}

.sd-status-list div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.38fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.72rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.sd-status-list b {
  color: rgba(23, 20, 17, 0.82);
  font-size: 0.96rem;
  line-height: 1.18;
}

.sd-section {
  position: relative;
  padding: 7rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid var(--x-line);
  overflow: hidden;
}

.sd-failure {
  background: #fff7e8;
}

.sd-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.sd-card {
  min-height: 25rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
}

.sd-card h3 {
  margin-top: 4rem;
  font-size: 1.78rem;
  line-height: 1;
}

.sd-card p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.68);
  font-weight: 650;
}

.sd-dark {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 90, 40, 0.22), transparent 30rem),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px) 0 0 / 112px 112px,
    #171411;
  color: #fffaf0;
}

.sd-dark .rx-section-copy {
  position: sticky;
  top: 7.5rem;
}

.sd-dark .rx-section-copy h2,
.sd-prevention .rx-section-head h2 {
  color: #fffaf0;
}

.sd-dark .rx-section-copy p,
.sd-action-grid p,
.sd-prevention .rx-section-head p,
.sd-prep-grid p {
  color: rgba(255, 250, 240, 0.76);
}

.sd-action-grid,
.sd-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.sd-action-grid article,
.sd-prep-grid article {
  min-height: 17.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.11), rgba(240, 90, 40, 0.08)),
    rgba(255, 250, 240, 0.045);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.sd-action-grid article > span,
.sd-prep-grid span {
  color: #ffb08c;
}

.sd-action-grid h3,
.sd-prep-grid h3 {
  margin-top: 2.8rem;
  color: #fffaf0;
  font-size: 1.72rem;
  line-height: 1;
}

.sd-action-grid p,
.sd-prep-grid p {
  margin-top: 0.9rem;
  font-weight: 700;
}

.sd-proof {
  background: #f3ecdf;
}

.sd-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), rgba(23, 20, 17, 0.045)),
    rgba(255, 250, 240, 0.78);
  box-shadow: 0 2rem 6rem rgba(71, 48, 28, 0.14);
}

.sd-proof-grid > div:first-child {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.sd-proof-grid h2 {
  max-width: 10ch;
  margin-top: 0.7rem;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
}

.sd-proof-grid p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 1.08rem;
  font-weight: 650;
}

.sd-proof-list {
  display: grid;
  gap: 0.7rem;
}

.sd-proof-list strong {
  display: block;
  margin-top: 0.34rem;
  color: var(--x-ink);
  font-size: 1.03rem;
  line-height: 1.24;
}

.sd-prevention {
  color: #fffaf0;
}

.sd-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.45fr);
  gap: 2rem;
  align-items: end;
  background: var(--x-lime);
  color: #fffaf0;
}

.sd-final .rx-kicker {
  color: #fffaf0;
}

.sd-final .rx-kicker::before {
  background: #fffaf0;
  box-shadow: 0 0 0 0.38rem rgba(255, 250, 240, 0.16);
}

.sd-final h2 {
  margin-top: 0.68rem;
  font-size: clamp(2.85rem, 6.2vw, 5rem);
  line-height: 0.94;
}

.sd-final p {
  max-width: 43rem;
  margin-top: 1rem;
  color: rgba(255, 250, 240, 0.84);
  font-size: 1.08rem;
  font-weight: 650;
}

.sd-final .rx-final-actions {
  display: grid;
  gap: 0.75rem;
}

.sd-final .x-btn-primary {
  background: #171411;
  border-color: #171411;
  color: #fffaf0 !important;
  box-shadow: none;
}

.sd-final .x-btn-quiet {
  border-color: rgba(255, 250, 240, 0.48);
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
}

@media (max-width: 1120px) {
  .sx-hero,
  .sx-dark,
  .sx-report-board,
  .sx-proof-grid {
    grid-template-columns: 1fr;
  }

  .sx-command-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sx-service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sx-dark .rx-section-copy {
    position: relative;
    top: auto;
  }

  .sd-hero,
  .sd-dark,
  .sd-proof-grid,
  .sd-final {
    grid-template-columns: 1fr;
  }

  .sd-card-grid,
  .sd-action-grid,
  .sd-prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sd-dark .rx-section-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .sx-hero {
    min-height: auto;
    padding: 7.25rem 0.9rem 2.75rem;
  }

  .sx-hero h1 {
    font-size: 4.2rem;
  }

  .sx-hero-copy > p {
    font-size: 1.05rem;
  }

  .sx-section {
    padding: 4.75rem 0.9rem;
  }

  .sx-command-grid,
  .sx-lane-grid,
  .sx-report-list,
  .sx-prep-grid {
    grid-template-columns: 1fr;
  }

  .sx-service-links {
    grid-template-columns: 1fr;
  }

  .sx-command-card,
  .sx-lane-grid article,
  .sx-prep-grid article {
    min-height: auto;
  }

  .sx-command-card h3,
  .sx-lane-grid h3,
  .sx-prep-grid h3 {
    margin-top: 2rem;
    font-size: 1.72rem;
  }

  .sx-report-board {
    padding: 0.75rem;
  }

  .sx-report-board > div:first-child {
    min-height: auto;
    padding: 0.4rem;
  }

  .sd-hero {
    min-height: auto;
    padding: 7.25rem 0.9rem 2.5rem;
  }

  .sd-hero h1 {
    font-size: 3.2rem;
  }

  .sd-hero-copy > p {
    font-size: 1.05rem;
  }

  .sd-facts,
  .sd-card-grid,
  .sd-action-grid,
  .sd-proof-grid,
  .sd-prep-grid,
  .sd-final {
    grid-template-columns: 1fr;
  }

  .sd-hero-panel,
  .sd-card,
  .sd-action-grid article,
  .sd-prep-grid article {
    min-height: auto;
  }

  .sd-section {
    padding: 4.75rem 0.9rem;
  }

  .sd-status-list div {
    grid-template-columns: 1fr;
  }

  .sd-card h3,
  .sd-action-grid h3,
  .sd-prep-grid h3 {
    margin-top: 2rem;
    font-size: 1.72rem;
  }

  .sd-proof-grid {
    padding: 0.75rem;
  }

  .sd-proof-grid > div:first-child {
    min-height: auto;
    padding: 0.4rem;
  }
}

/* ---------- ransomware recovery page ---------- */
.ransomware-page {
  background:
    radial-gradient(circle at 78% 10%, rgba(240, 90, 40, 0.2), transparent 24rem),
    radial-gradient(circle at 10% 82%, rgba(23, 20, 17, 0.1), transparent 24rem),
    var(--x-bg);
}

.rx-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(27rem, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  min-height: 45rem;
  padding: 9.5rem max(1.25rem, calc((100vw - 1250px) / 2)) 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--x-line);
}

.rx-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 20, 17, 0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 26%, transparent 0 26%, rgba(240, 90, 40, 0.2) 26.2%, transparent 26.55%);
  background-size: 104px 104px, 104px 104px, auto;
  opacity: 0.68;
}

.rx-hero-copy,
.rx-hero-panel,
.rx-section > *,
.rx-final > * {
  position: relative;
  z-index: 2;
}

.rx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rx-kicker::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--x-lime);
  box-shadow: 0 0 0 0.38rem rgba(240, 90, 40, 0.12);
}

.rx-hero h1 {
  max-width: 15ch;
  margin-top: 0.7rem;
  font-size: clamp(3.5rem, 5vw, 5rem);
}

.rx-hero-copy > p {
  max-width: 39rem;
  margin-top: 1.35rem;
  color: rgba(23, 20, 17, 0.74);
  font-size: 1.22rem;
  font-weight: 700;
}

.rx-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.rx-hero-facts div {
  min-height: 5.7rem;
  padding: 0.74rem;
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 1rem 2rem rgba(71, 48, 28, 0.09);
}

.rx-hero-facts span,
.rx-status-board span,
.rx-alert span,
.rx-action-grid article > span,
.rx-failure-grid article > span,
.rx-proof-list span,
.rx-prep-grid article > span {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rx-hero-facts span {
  color: var(--x-muted);
}

.rx-hero-facts strong {
  display: block;
  margin-top: 0.36rem;
  color: var(--x-ink);
  font-size: 0.98rem;
  line-height: 1.12;
}

.rx-hero-panel {
  display: grid;
  gap: 0.9rem;
  align-self: stretch;
  min-height: 31rem;
}

.rx-art {
  position: relative;
  min-height: 26rem;
  border: 1px solid rgba(240, 90, 40, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 45%, rgba(240, 90, 40, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(239, 229, 214, 0.58));
  box-shadow: 0 2rem 5rem rgba(71, 48, 28, 0.16);
  overflow: hidden;
}

.rx-art::before,
.rx-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.rx-art::before {
  inset: 12%;
  border: 1px dashed rgba(201, 45, 22, 0.28);
}

.rx-art::after {
  right: 7%;
  top: 10%;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--x-hot);
  box-shadow: 0 0 0 0.85rem rgba(201, 45, 22, 0.12), 0 0 2rem rgba(201, 45, 22, 0.45);
}

.rx-art img {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(46rem, 118%);
  max-width: none;
  transform: translate(-50%, -50%) rotate(-1deg);
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.03) drop-shadow(0 2.6rem 3rem rgba(71, 48, 28, 0.22));
}

.rx-alert {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  width: min(14rem, calc(100% - 2rem));
  padding: 0.72rem;
  border: 1px solid rgba(240, 90, 40, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 1.2rem 2.4rem rgba(71, 48, 28, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rx-alert-a {
  left: 1rem;
  top: 1rem;
}

.rx-alert-b {
  right: 1rem;
  bottom: 1rem;
}

.rx-alert span {
  color: var(--x-lime);
}

.rx-alert strong {
  font-size: 1rem;
  line-height: 1.12;
}

.rx-status-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.rx-status-board div {
  min-height: 7.1rem;
  padding: 0.78rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
}

.rx-status-board span {
  color: var(--x-lime);
}

.rx-status-board strong {
  display: block;
  margin-top: 0.68rem;
  font-size: 1.05rem;
  line-height: 1.12;
}

.rx-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem max(1.25rem, calc((100vw - 1250px) / 2));
  background: #171411;
  color: #fffaf0;
}

.rx-strip p {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.18rem, 2.6vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.rx-strip span {
  flex: 0 0 auto;
  color: #ffb08c;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rx-section {
  position: relative;
  padding: 7rem max(1.25rem, calc((100vw - 1250px) / 2));
  border-top: 1px solid var(--x-line);
  overflow: hidden;
}

.rx-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.62fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.rx-section-head h2,
.rx-section-copy h2,
.rx-proof-grid h2,
.rx-final h2 {
  margin-top: 0.68rem;
  font-size: clamp(2.85rem, 6.2vw, 5rem);
  line-height: 0.94;
}

.rx-section-head p,
.rx-section-copy p,
.rx-proof-grid p,
.rx-final p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 1.08rem;
  font-weight: 650;
}

.rx-section-head p {
  max-width: 35rem;
}

.rx-packages {
  background: #ede2d0;
}

.rx-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rx-package-grid article {
  display: flex;
  flex-direction: column;
  min-height: 31rem;
  padding: 1.1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(239, 229, 214, 0.66)),
    var(--x-bg-2);
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
}

.rx-package-grid .rx-package-hot {
  border-color: rgba(240, 90, 40, 0.58);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.22), rgba(255, 250, 240, 0.92) 52%),
    var(--x-bg-2);
}

.rx-package-grid span {
  color: var(--x-lime);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rx-package-grid h3 {
  margin-top: 3rem;
  font-size: 2.25rem;
  line-height: 0.98;
}

.rx-package-grid p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.7);
  font-weight: 650;
}

.rx-package-grid ul {
  display: grid;
  gap: 0.65rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.rx-package-grid li {
  padding-top: 0.65rem;
  border-top: 1px solid var(--x-line);
  color: rgba(23, 20, 17, 0.76);
  font-weight: 750;
}

.rx-dark {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 90, 40, 0.22), transparent 30rem),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px) 0 0 / 112px 112px,
    #171411;
  color: #fffaf0;
}

.rx-dark .rx-section-copy {
  position: sticky;
  top: 7.5rem;
}

.rx-dark .rx-section-copy p,
.rx-section-head-dark p,
.rx-prep-grid p {
  color: rgba(255, 250, 240, 0.76);
}

.rx-dark .rx-section-copy h2,
.rx-section-head-dark h2 {
  color: #fffaf0;
}

.rx-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.rx-action-grid article,
.rx-prep-grid article {
  min-height: 18rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.11), rgba(240, 90, 40, 0.08)),
    rgba(255, 250, 240, 0.045);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.rx-action-grid article > span,
.rx-prep-grid article > span {
  color: #ffb08c;
}

.rx-action-grid h3,
.rx-prep-grid h3 {
  margin-top: 3.2rem;
  color: #fffaf0;
  font-size: 2rem;
}

.rx-action-grid p,
.rx-prep-grid p {
  margin-top: 0.9rem;
  font-weight: 700;
}

.rx-failures {
  background-color: #fff7e8;
}

.rx-failure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.rx-failure-grid article {
  min-height: 28rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(239, 229, 214, 0.68)),
    var(--x-bg-2);
  box-shadow: 0 1.3rem 3rem rgba(71, 48, 28, 0.08);
}

.rx-failure-grid article > span {
  color: var(--x-lime);
}

.rx-failure-grid h3 {
  margin-top: 4.2rem;
  font-size: 1.72rem;
  line-height: 1;
}

.rx-failure-grid p {
  margin-top: 1rem;
  color: rgba(23, 20, 17, 0.68);
  font-weight: 650;
}

.rx-proof {
  background-color: #f3ecdf;
}

.rx-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(240, 90, 40, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.16), rgba(23, 20, 17, 0.045)),
    rgba(255, 250, 240, 0.78);
  box-shadow: 0 2rem 6rem rgba(71, 48, 28, 0.14);
}

.rx-proof-grid > div:first-child {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.rx-proof-grid h2 {
  max-width: 9ch;
}

.rx-proof-list {
  display: grid;
  gap: 0.7rem;
}

.rx-proof-list div {
  display: grid;
  gap: 0.45rem;
  min-height: 5.1rem;
  padding: 0.82rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
}

.rx-proof-list span {
  color: var(--x-lime);
}

.rx-proof-list strong {
  color: var(--x-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.rx-preparedness {
  color: #fffaf0;
}

.rx-prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rx-prep-grid article {
  min-height: 25rem;
}

.rx-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.45fr);
  gap: 2rem;
  align-items: end;
  background: var(--x-lime);
  color: #fffaf0;
}

.rx-final .rx-kicker {
  color: #fffaf0;
}

.rx-final .rx-kicker::before {
  background: #fffaf0;
  box-shadow: 0 0 0 0.38rem rgba(255, 250, 240, 0.16);
}

.rx-final p {
  max-width: 43rem;
  margin-top: 1rem;
  color: rgba(255, 250, 240, 0.84);
}

.rx-final-actions {
  display: grid;
  gap: 0.75rem;
}

.rx-final .x-btn-primary {
  background: #171411;
  border-color: #171411;
  color: #fffaf0 !important;
  box-shadow: none;
}

.rx-final .x-btn-quiet {
  border-color: rgba(255, 250, 240, 0.48);
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
}

@media (max-width: 1120px) {
  .rx-hero,
  .rx-dark,
  .rx-proof-grid,
  .rx-final {
    grid-template-columns: 1fr;
  }

  .rx-hero {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .rx-hero-panel {
    min-height: auto;
  }

  .rx-dark .rx-section-copy {
    position: relative;
    top: auto;
  }

  .rx-failure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rx-prep-grid {
    grid-template-columns: 1fr;
  }

  .rx-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .rx-hero {
    padding: 7.25rem 0.9rem 2rem;
  }

  .rx-hero h1 {
    font-size: 2.75rem;
  }

  .rx-hero-copy > p {
    font-size: 1.05rem;
  }

  .rx-hero-facts,
  .rx-status-board,
  .rx-section-head,
  .rx-action-grid,
  .rx-failure-grid,
  .rx-proof-grid,
  .rx-prep-grid,
  .rx-final {
    grid-template-columns: 1fr;
  }

  .rx-art {
    min-height: 22rem;
  }

  .rx-alert {
    width: min(12rem, calc(100% - 1.4rem));
  }

  .rx-alert-a {
    left: 0.7rem;
    top: 0.7rem;
  }

  .rx-alert-b {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .rx-strip {
    display: block;
    padding: 1.15rem 0.9rem;
  }

  .rx-strip span {
    display: block;
    margin-top: 0.7rem;
  }

  .rx-section {
    padding: 4.75rem 0.9rem;
  }

  .rx-section-head {
    gap: 1.1rem;
  }

  .rx-action-grid article,
  .rx-package-grid article,
  .rx-failure-grid article,
  .rx-prep-grid article {
    min-height: auto;
  }

  .rx-action-grid h3,
  .rx-package-grid h3,
  .rx-failure-grid h3,
  .rx-prep-grid h3 {
    margin-top: 2rem;
    font-size: 1.72rem;
  }

  .rx-proof-grid {
    padding: 0.75rem;
  }

  .rx-proof-grid > div:first-child {
    min-height: auto;
    padding: 0.4rem;
  }
}

@keyframes xPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 45, 22, 0.55);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 0 1rem rgba(201, 45, 22, 0);
  }
}

@keyframes xSlowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes xMapPulse {
  0%, 100% {
    opacity: 0.42;
    box-shadow: 0 0 0 0 rgba(240, 90, 40, 0.18);
  }
  50% {
    opacity: 0.86;
    box-shadow: 0 0 0 1.35rem rgba(240, 90, 40, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .x-pulse {
    animation: none;
  }

  .x-trace-canvas {
    display: none;
  }

  .x-signal-sphere::after {
    animation: none;
  }

  .x-threat-map-panel::after {
    animation: none;
  }

  .x-btn,
  .x-nav a,
  .x-signal-items a {
    transition: none;
  }

  .x-parallax-band,
  .x-parallax-report,
  .x-parallax-dark {
    background-attachment: scroll;
  }
}

@media (max-width: 1180px) {
  .x-hero h1 {
    font-size: 4.35rem;
  }

  .x-hero-art {
    right: 1rem;
    width: min(42rem, 54vw);
    min-width: 0;
    opacity: 0.88;
  }

  .x-signal-sphere {
    right: 6rem;
    top: 10rem;
    width: 19rem;
    height: 19rem;
    opacity: 0.84;
  }

  .x-section-head h2,
  .x-signal-board h2 {
    font-size: 3.35rem;
  }

  .x-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .x-threat-map-grid {
    grid-template-columns: 1fr;
  }

  .x-threat-map .x-signal-board {
    grid-template-columns: 1fr;
  }

  .x-threat-map-copy {
    min-height: auto;
  }

  .x-threat-map .x-threat-map-copy {
    min-height: auto;
  }

  .x-not h2 {
    font-size: 3.6rem;
  }
}

@media (min-width: 1500px) {
  .x-hero-copy p {
    width: min(36rem, 92vw);
  }

  .x-hero-facts {
    width: min(43rem, 100%);
  }
}

@media (max-width: 1100px) {
  .x-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.82fr);
    column-gap: 1.25rem;
    row-gap: 1.25rem;
    align-items: start;
    min-height: auto;
    padding: 8.4rem 1.25rem 1.25rem;
  }

  .x-hero-copy {
    grid-column: 1;
    width: 100%;
    padding-left: 0;
  }

  .x-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 7.2vw, 4.05rem);
  }

  .x-hero-copy p {
    width: min(30rem, 100%);
  }

  .x-hero-facts {
    width: 100%;
  }

  .x-signal-sphere {
    display: none;
  }

  .x-hero-art {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    inset: auto;
    width: 100%;
    min-width: 0;
    margin: 0.3rem 0 0;
    opacity: 0.96;
  }

  .x-case-preview {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    border-bottom: 1px solid var(--x-line);
    border-radius: 8px;
  }

  .x-preview-grid h2 {
    font-size: 1.12rem;
    line-height: 1;
  }
}

@media (max-width: 920px) {
  .x-header {
    left: 0.8rem;
    right: 0.8rem;
  }

  .x-nav-toggle {
    display: block;
  }

  .x-nav {
    position: absolute;
    inset: calc(100% + 0.5rem) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--x-line);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 1.5rem 3rem rgba(71, 48, 28, 0.2);
  }

  .x-nav.open {
    display: grid;
  }

  .x-nav a {
    padding: 0.85rem;
    border-radius: 6px;
  }

  .x-call {
    margin-top: 0.35rem;
  }

  .x-hero {
    min-height: auto;
    padding-top: 8.5rem;
    grid-template-columns: 1fr;
  }

  .x-hero-copy {
    padding-left: 0;
  }

  .x-threat-map {
    padding: 3.4rem 0.8rem;
  }

  .x-threat-map-copy h2 {
    max-width: 10ch;
    font-size: 3rem;
  }

  .x-threat-map-panel {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 7rem 0.75rem 0.75rem;
  }

  .x-threat-map-panel::before,
  .x-threat-map-panel::after {
    display: none;
  }

  .x-threat-map-feed,
  .x-threat-map-stats,
  .x-threat-map .x-threat-map-feed,
  .x-threat-map .x-threat-map-stats {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .x-threat-map .x-threat-map-feed {
    grid-template-columns: 1fr;
    padding: 0.55rem;
  }

  .x-threat-map-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .x-hero h1 {
    font-size: 3.45rem;
  }

  .x-signal-sphere {
    position: relative;
    right: auto;
    top: auto;
    width: min(27rem, 100%);
    height: 22rem;
    margin: 1.75rem auto 0;
    opacity: 1;
  }

  .x-hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    margin: 1.5rem auto 0;
  }

  .x-rail {
    left: 1rem;
    bottom: 1rem;
  }

  .x-case-preview {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    border-bottom: 1px solid var(--x-line);
    border-radius: 8px;
  }

  .x-preview-grid,
  .x-case-grid,
  .x-emergency,
  .x-method-list,
  .x-proof-grid,
  .x-proof-strip,
  .x-signal-board,
  .x-roi-grid,
  .x-tool-promo-grid,
  .x-price-grid,
  .x-stack-note,
  .tool-hero,
  .tool-lab-head,
  .tool-grid-section,
  .tool-roadmap,
  .x-not-grid,
  .x-section-head {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .x-stack-points {
    grid-template-columns: 1fr;
  }

  .x-parallax-band,
  .x-parallax-report,
  .x-parallax-dark {
    background-attachment: scroll;
  }

  .x-emergency-copy {
    position: relative;
    top: auto;
  }

  .x-emergency-copy h2 {
    max-width: 100%;
    font-size: clamp(2.6rem, 8vw, 3.2rem);
  }

  .x-method-list li {
    min-height: 16rem;
  }

  .x-method-list h3 {
    margin-top: 3.5rem;
  }

  .x-proof-card {
    min-height: auto;
  }

  .x-proof-card h3 {
    margin-top: 1.25rem;
  }

  .x-proof-strip div {
    min-height: auto;
  }

  .x-signal-board > div:first-child {
    min-height: 16rem;
  }

  .x-roi-output {
    min-height: auto;
  }

  .x-strip {
    display: block;
  }

  .x-strip span {
    display: block;
    margin-top: 0.7rem;
    text-align: center;
    white-space: normal;
  }

  .x-problem-room {
    min-height: auto;
  }

  .x-room-shade {
    background:
      linear-gradient(180deg, rgba(23, 20, 17, 0.86) 0 24%, rgba(23, 20, 17, 0.12) 44%, rgba(23, 20, 17, 0.86) 100%);
  }

  .x-room-teaser {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.35rem;
    padding: 3rem 0.8rem;
  }

  .x-room-copy {
    width: calc(100% - 1.6rem);
    padding: 0;
  }

  .x-room-modal-window {
    inset: 0;
    border-radius: 0;
  }

  .x-room-modal-head {
    top: 0.75rem;
    left: 0.8rem;
    right: 0.8rem;
    align-items: flex-start;
  }

  .x-room-modal-head strong {
    font-size: 0.95rem;
  }

  .x-room-close {
    flex: 0 0 auto;
  }

  .x-room-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    align-content: start;
    gap: 0.58rem;
    overflow-y: auto;
    padding: 6.6rem 0.8rem 1rem;
    pointer-events: auto;
  }

  .x-room-hud,
  .x-room-debrief,
  .x-room-brief,
  .x-room-evidence,
  .x-room-lesson,
  .x-room-actions,
  .x-room-start {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    inset: auto;
    width: auto;
  }

  .x-room-debrief {
    margin-top: 0;
    max-height: none;
    overflow: visible;
  }

  .x-room-lesson {
    order: 4;
  }

  .x-room-evidence {
    order: 5;
  }

  .x-room-actions {
    order: 6;
  }

  .x-room-start {
    order: 7;
  }

  .x-room-modal.is-failure-point .x-room-debrief,
  .x-problem-room.is-failure-point .x-room-debrief {
    order: 1;
    max-height: none;
    overflow: visible;
  }

  .x-room-modal.is-failure-point .x-room-start,
  .x-problem-room.is-failure-point .x-room-start {
    position: relative;
    right: auto;
    bottom: auto;
    inset: auto;
    grid-column: auto;
    grid-row: auto;
    order: 2;
    width: auto;
  }

  .tool-hero {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .tool-hero h1 {
    font-size: 4rem;
  }

	  .tool-card-action,
	  .domain-form > div,
	  .result-grid,
	  .breach-results-grid,
	  .breach-metrics,
	  .exposure-assets,
	  .exposure-cta,
	  .tool-roadmap li {
	    grid-template-columns: 1fr;
	  }
}

@media (max-width: 620px) {
  .escalation-home::after {
    left: 0;
    right: 0;
  }

  .x-header {
    min-height: 4rem;
    top: 0.7rem;
  }

  .x-brand small {
    display: none;
  }

  .x-hero {
    padding: 7.25rem 0.8rem 0;
  }

  .x-hero::before,
  .x-hero::after {
    display: none;
  }

  .x-hero h1 {
    max-width: 9.5ch;
    font-size: 2.36rem;
    line-height: 1.03;
  }

  .x-hero-copy p {
    font-size: 1.05rem;
  }

  .x-actions {
    display: grid;
  }

  .x-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .x-hero-facts div {
    min-height: 6.05rem;
    padding: 0.58rem 0.5rem;
  }

  .x-hero-facts span {
    font-size: 0.54rem;
  }

  .x-hero-facts strong {
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .x-signal-sphere {
    height: 17rem;
    margin-top: 1.25rem;
    overflow: hidden;
    border-radius: 50%;
  }

  .x-sphere-core {
    width: 5rem;
    height: 5rem;
  }

  .x-sphere-core strong {
    font-size: 1.28rem;
  }

  .x-sphere-word {
    display: none;
  }

  .x-hero-art {
    width: 100%;
    margin-left: 0;
  }

  .x-threat-game {
    inset: 0 0 24% 0;
    border-radius: 6px;
  }

  .x-threat-hud {
    min-width: 8.4rem;
    padding: 0.5rem 0.58rem;
  }

  .x-threat-hud span {
    font-size: 0.54rem;
  }

  .x-threat-hud strong {
    font-size: 0.68rem;
  }

  .x-rail {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 1.6rem);
    margin: -1.5rem auto 0;
  }

  .x-pulse {
    display: none;
  }

  .x-case-preview {
    padding: 0.75rem;
  }

  .x-preview-grid h2 {
    font-size: 1.15rem;
  }

  .x-section {
    padding: 4.75rem 0.9rem;
  }

  .x-section-head {
    gap: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .x-section-head h2,
  .x-signal-board h2 {
    font-size: 2.45rem;
  }

  .x-case h3 {
    margin-top: 1.6rem;
    font-size: 1.55rem;
  }

  .x-case {
    min-height: auto;
  }

  .x-signal-items {
    grid-template-columns: 1fr;
  }

  .x-roi-fields {
    grid-template-columns: 1fr;
  }

  .x-roi .x-section-head {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .x-roi .x-section-head h2 {
    max-width: 100%;
    font-size: 2.1rem;
  }

  .x-roi .x-section-head p {
    font-size: 0.98rem;
  }

  .x-roi-compare {
    grid-template-columns: 1fr;
  }

  .x-roi-form-head {
    display: grid;
  }

  .x-roi-form-head strong {
    max-width: none;
    text-align: left;
  }

  .x-roi-output > strong {
    font-size: 2.45rem;
  }

  .x-price-card,
  .tool-card {
    min-height: auto;
  }

  .x-price-card h3 {
    margin-top: 1.6rem;
    font-size: 1.95rem;
  }

  .x-price-card ul {
    margin-top: 2rem;
  }

  .x-emergency-copy h2 {
    font-size: 2.35rem;
  }

  .x-response-card h3 {
    margin-top: 2rem;
    font-size: 1.95rem;
  }

  .tool-hero {
    padding: 7.25rem 0.9rem 2.75rem;
  }

  .tool-hero h1 {
    font-size: 3rem;
  }

  .tool-hero p {
    font-size: 1.05rem;
  }

  .tool-lab,
  .tool-grid-section,
  .tool-roadmap {
    margin-left: 0.9rem;
    margin-right: 0.9rem;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .channel-page .x-actions {
    width: 100%;
  }

  .channel-page .x-actions .x-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .tool-lab-head h2,
  .tool-card h2,
  .tool-roadmap h2 {
    font-size: 2rem;
  }

  .x-not h2 {
    font-size: 2.45rem;
  }

  .x-footer {
    display: block;
    padding: 1.5rem 0.9rem;
  }

  .x-footer nav {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .x-problem-room {
    min-height: auto;
  }

  .x-room-copy {
    width: 100%;
  }

  .x-room-copy h2 {
    font-size: 2.85rem;
  }

  .x-room-copy p {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .x-room-hud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .x-room-hud div {
    min-height: 4rem;
    padding: 0.58rem 0.46rem;
  }

  .x-room-hud span {
    font-size: 0.52rem;
  }

  .x-room-hud strong {
    font-size: 0.9rem;
  }

  .x-room-stage {
    padding-top: 7.2rem;
  }

  .x-room-gap-list {
    gap: 0.3rem;
  }

  .x-room-gap-list span.is-prevention,
  .x-room-gap-list span.is-brief-line {
    padding: 0.38rem 0.48rem;
    font-size: 0.7rem;
    line-height: 1.22;
  }

  .x-room-actions {
    grid-template-columns: 1fr;
  }

  .x-room-options,
  .x-room-evidence .x-room-options,
  .x-room-lesson .x-room-options {
    grid-template-columns: 1fr;
  }

  .x-room-actions button,
  .x-room-start button,
  .x-room-start a {
    min-height: 2.75rem;
    font-size: 0.62rem;
  }

  .x-room-start {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .x-hero-facts {
    grid-template-columns: 1fr;
  }

  .x-hero-facts div {
    min-height: 4.35rem;
  }
}

/* ---------- fine print (index + contact) ---------- */
.x-fineprint {
  margin-top: 1.4rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--x-muted);
  max-width: 62rem;
}

/* ---------- contact page ---------- */
.contact-page .tool-hero-panel .x-contact-call {
  margin-top: 1.1rem;
}

.x-contact-lines {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--x-line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.6);
}
.x-contact-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.x-contact-lines span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--x-muted);
}
.x-contact-lines a,
.x-contact-lines strong {
  color: var(--x-ink);
  font-weight: 800;
  text-decoration: none;
}
.x-contact-lines a:hover { color: var(--x-hot); }

.x-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 1rem;
  max-width: 62rem;
}
.x-field { display: grid; gap: 0.4rem; }
.x-field-full { grid-column: 1 / -1; }
.x-field label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--x-muted);
}
.x-field input,
.x-field select,
.x-field textarea {
  width: 100%;
  min-height: 3.3rem;
  border: 1px solid var(--x-line-strong);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.8);
  color: var(--x-ink);
  font: 700 0.95rem "Inter", sans-serif;
  padding: 0.8rem 0.9rem;
}
.x-field textarea { min-height: 8rem; resize: vertical; line-height: 1.55; }
.x-field input:focus-visible,
.x-field select:focus-visible,
.x-field textarea:focus-visible {
  outline: 2px solid var(--x-lime);
  outline-offset: 2px;
  border-color: var(--x-lime);
}
.x-field-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.x-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.x-contact-form .x-fineprint { grid-column: 1 / -1; margin-top: 0.4rem; }
#form-status { font-weight: 700; color: var(--x-muted); }

@media (max-width: 640px) {
  .x-contact-form { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .x-signal-board h2 {
    max-width: 100%;
    font-size: 2.62rem;
  }

  .x-threat-map-copy h2 {
    max-width: 100%;
    font-size: 2.55rem;
  }
}

/* ---------- legal / prose pages ---------- */
.x-legal-head {
  padding: 10rem max(1.25rem, calc((100vw - 1250px) / 2)) 1.6rem;
  border-bottom: 1px solid var(--x-line);
}
.x-legal-head span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--x-hot);
}
.x-legal-head h1 {
  margin-top: 0.6rem;
  font-size: 4rem;
  color: var(--x-ink);
}
.x-legal {
  max-width: 62rem;
  margin: 0 max(1.25rem, calc((100vw - 1250px) / 2)) 4.5rem;
  padding-top: 1.6rem;
}
.x-legal .x-updated {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--x-muted);
}
.x-legal h2 {
  margin-top: 2.4rem;
  font-size: 1.65rem;
  color: var(--x-ink);
}
.x-legal p,
.x-legal li {
  color: rgba(23, 20, 17, 0.8);
  font-size: 1.02rem;
  line-height: 1.72;
}
.x-legal p { margin-top: 1rem; max-width: 48rem; }
.x-legal ul { margin-top: 1rem; padding-left: 1.15rem; max-width: 48rem; }
.x-legal li { margin-top: 0.55rem; }
.x-legal strong { color: var(--x-ink); }
.x-legal a { color: var(--x-hot); font-weight: 700; text-decoration: underline; }
.x-legal a:hover { color: var(--x-ink); }

@media (max-width: 720px) {
  .x-legal-head h1 { font-size: 2.9rem; }
}

/* ---------- hardened homepage hero layout ---------- */
@media (min-width: 921px) {
  .x-hero {
    display: grid;
    grid-template-columns: minmax(21rem, 0.76fr) minmax(29rem, 1.24fr);
    gap: 1.25rem clamp(0.9rem, 2vw, 2rem);
    align-items: center;
    min-height: auto;
    padding: 8.25rem max(1.25rem, calc((100vw - 1250px) / 2)) 2.2rem;
    overflow: hidden;
  }

  .x-hero-copy {
    grid-column: 1;
    width: 100%;
    padding-left: 0;
  }

  .x-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.65rem, 7vw, 5.25rem);
  }

  .x-hero-copy p {
    width: min(34rem, 100%);
  }

  .x-hero-facts {
    width: 100%;
  }

  .x-signal-sphere {
    display: block;
    z-index: 2;
    right: max(1.4rem, calc((100vw - 1250px) / 2 + 2rem));
    top: 7.4rem;
    width: clamp(21rem, 29vw, 35rem);
    height: clamp(21rem, 29vw, 35rem);
    opacity: 0.24;
    mix-blend-mode: multiply;
  }

  .x-hero-art {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    inset: auto;
    width: min(61rem, 112%);
    min-width: 0;
    margin: 0 0 1.2rem;
    opacity: 1;
    --x-hero-base-x: clamp(0.4rem, 1.8vw, 1.6rem);
  }

  .x-rail {
    right: 4%;
    bottom: 8%;
    width: min(33rem, calc(100% - 2rem));
  }

  .x-case-preview {
    position: relative;
    z-index: 5;
    grid-column: 1 / -1;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    border-bottom: 1px solid var(--x-line);
    border-radius: 8px;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .x-hero {
    padding-top: 8rem;
  }

  .x-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.45rem, 5.4vw, 3.75rem);
  }

  .x-hero-copy p {
    margin-top: 1rem;
    font-size: 1.12rem;
  }

  .x-actions {
    margin-top: 1.2rem;
  }
}

@media (min-width: 921px) and (max-width: 1120px) {
  .x-hero {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(26rem, 1.22fr);
    gap: 1.25rem 1rem;
  }

  .x-hero h1 {
    font-size: clamp(3.1rem, 6.1vw, 4.1rem);
  }

  .x-hero-copy p {
    width: min(31rem, 100%);
  }

  .x-hero-art {
    width: min(56rem, 108%);
    --x-hero-base-x: 0.4rem;
  }

  .x-signal-sphere {
    display: none;
  }

  .x-preview-grid h2 {
    font-size: 1.08rem;
  }
}

@media (max-width: 920px) {
  .x-pricing .x-section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .x-pricing .x-section-head h2 {
    max-width: 12ch;
    font-size: 2.55rem;
  }

  .x-pricing .x-section-head p {
    font-size: 1rem;
  }
}

@media (max-width: 920px) {
  .x-hero {
    display: block;
  }

  .x-signal-sphere {
    display: none;
  }

  .x-threat-game {
    inset: 2% 0 18% 0;
  }

  .x-threat-hud {
    left: 4%;
    top: 2%;
  }
}

.home-page .x-header {
  position: absolute;
}
