/* =====================================================
 * page-device-intelligence - page-scoped styles
 * Extracted from device-intelligence
 * ===================================================== */

/* ============ HERO ============ */
  .di-hero {
    padding: clamp(80px, 14vh, 140px) 0 0;
    position: relative;
    overflow: hidden;
  }
  .di-hero .glow {
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 1100px; height: 640px;
    background: radial-gradient(ellipse at center, rgba(74,158,255,0.14), transparent 60%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
  }
  .di-hero h1 {
    font-size: clamp(56px, 9vw, 110px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 500;
  }
  .di-hero h1 .em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
  }
  .di-hero .lead {
    margin-top: 32px;
    max-width: 58ch;
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--g11);
  }
  .di-hero .row { margin-top: 36px; }

  .di-hero .stats {
    margin-top: 80px;
    padding-top: 32px;
    border-top: var(--border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 720px) { .di-hero .stats { grid-template-columns: repeat(2, 1fr); } }
  .di-hero .stats .num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .di-hero .stats .lbl {
    font-size: 12px;
    color: var(--g10);
    margin-top: 10px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ============ VERDICT DEMO ============ */
  .verdict-shell {
    margin: 96px auto 0;
    border-radius: 24px;
    border: var(--border);
    background: linear-gradient(180deg, var(--panel-bg-from), var(--panel-bg-to));
    overflow: hidden;
    max-width: 1080px;
  }
  .verdict-head {
    padding: 18px 28px;
    border-bottom: var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--g10);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .verdict-head .live {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent);
  }

  .verdict-body {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: 540px;
  }
  @media (max-width: 880px) {
    .verdict-body { grid-template-columns: 1fr; }
  }

  /* Left - verdict card */
  .verdict-card-pane {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: var(--border);
    background:
      radial-gradient(circle at 30% 20%, rgba(74,158,255,0.06), transparent 50%);
  }
  @media (max-width: 880px) {
    .verdict-card-pane { border-right: 0; border-bottom: var(--border); }
  }

  .session-tabs {
    display: flex;
    gap: 6px;
    padding: 4px;
    border: var(--border);
    border-radius: 10px;
    background: var(--g1);
    width: fit-content;
  }
  .session-tab {
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--g10);
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
  }
  .session-tab .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--g8);
  }
  .session-tab.active {
    background: var(--g3);
    color: var(--text-strong);
  }
  .session-tab.active.clean .dot { background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); }
  .session-tab.active.suspicious .dot { background: var(--amber); box-shadow: 0 0 6px rgba(255,176,32,0.5); }
  .session-tab.active.blocked .dot { background: var(--red); box-shadow: 0 0 6px rgba(255,84,84,0.5); }

  .verdict-card {
    border: var(--border-strong);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--panel-bg-from), var(--panel-bg-to));
    padding: 24px;
    position: relative;
    overflow: hidden;
  }
  .verdict-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
    transition: background 0.4s;
  }
  .verdict-card[data-state="suspicious"]::before {
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
  }
  .verdict-card[data-state="blocked"]::before {
    background: linear-gradient(90deg, transparent, var(--red), transparent);
  }

  .vc-row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
  }
  .vc-session {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--g10);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .vc-session .ts {
    color: var(--g8);
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
    display: block;
  }

  .vc-verdict {
    text-align: right;
  }
  .vc-verdict .label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--g10);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
  }
  .vc-verdict .word {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--accent);
  }
  .verdict-card[data-state="suspicious"] .vc-verdict .word { color: var(--amber); }
  .verdict-card[data-state="blocked"] .vc-verdict .word { color: var(--red); }

  .vc-score {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
  }
  .vc-score .num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-strong);
  }
  .vc-score .max {
    font-size: 14px;
    color: var(--g8);
    font-family: var(--font-mono);
  }
  .vc-score .delta {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--g10);
    margin-left: auto;
    padding: 4px 8px;
    background: var(--g2);
    border-radius: 6px;
  }

  .vc-bar {
    height: 4px;
    background: var(--g3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .vc-bar-fill {
    height: 100%;
    width: 18%;
    background: var(--accent);
    transition: all 0.6s cubic-bezier(.4,0,.2,1);
    border-radius: 2px;
  }
  .verdict-card[data-state="suspicious"] .vc-bar-fill { width: 64%; background: var(--amber); }
  .verdict-card[data-state="blocked"] .vc-bar-fill { width: 91%; background: var(--red); }

  .vc-section-label {
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--g9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .signals {
    display: grid;
    gap: 10px;
  }
  .signal {
    display: grid;
    grid-template-columns: 16px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
  }
  .signal:first-child { border-top: 0; padding-top: 0; }
  .signal .ico {
    width: 16px; height: 16px;
    color: var(--g10);
  }
  .signal .ico svg { width: 100%; height: 100%; }
  .signal .name { color: var(--g11); }
  .signal .val {
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 5px;
    background: var(--g2);
    color: var(--g11);
  }
  .signal.ok .val { background: var(--panel-glow); color: var(--accent); }
  .signal.warn .val { background: rgba(255,176,32,0.1); color: var(--amber); }
  .signal.bad .val { background: rgba(255,84,84,0.12); color: var(--red); }
  .signal.ok .ico { color: var(--accent); }
  .signal.warn .ico { color: var(--amber); }
  .signal.bad .ico { color: var(--red); }

  .vc-action {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--panel-glow);
    border: 1px solid rgba(0,229,143,0.18);
    font-size: 13px;
    color: var(--g12);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .verdict-card[data-state="suspicious"] .vc-action {
    background: rgba(255,176,32,0.06);
    border-color: rgba(255,176,32,0.2);
  }
  .verdict-card[data-state="blocked"] .vc-action {
    background: rgba(255,84,84,0.06);
    border-color: rgba(255,84,84,0.2);
  }
  .vc-action b { color: var(--text-strong); font-weight: 500; }

  /* Right - pane */
  .verdict-side {
    padding: 40px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
  }
  .verdict-side .eyebrow { margin-bottom: 18px; }
  .verdict-side h3 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin: 0 0 12px;
  }
  .verdict-side .desc {
    color: var(--g10);
    font-size: 14px;
    margin: 0 0 24px;
    max-width: 36ch;
  }

  .api-block {
    border: var(--border);
    border-radius: 12px;
    background: var(--g1);
    overflow: hidden;
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 12px;
  }
  .api-block .head {
    padding: 10px 14px;
    border-bottom: var(--border);
    color: var(--g10);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: space-between;
  }
  .api-block .body {
    padding: 14px;
    line-height: 1.7;
    color: var(--g11);
  }
  .api-block .k { color: var(--g10); }
  .api-block .v-str { color: var(--accent); }
  .api-block .v-num { color: #6cb8ff; }
  .api-block .v-bool { color: var(--amber); }
  .api-block .v-action { color: var(--text-strong); }
  .api-block .indent { padding-left: 16px; }

  /* ============ SIGNAL GRID ============ */
  .sig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: var(--border);
    border-bottom: var(--border);
  }
  @media (max-width: 1080px) { .sig-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .sig-grid { grid-template-columns: 1fr; } }
  .sig-cell {
    padding: 32px 28px;
    border-right: var(--border);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    transition: background 0.2s;
  }
  .sig-cell:last-child { border-right: 0; }
  /* In a 4-col grid: every 4th cell drops its right border */
  @media (min-width: 1081px) {
    .sig-cell:nth-child(4n) { border-right: 0; }
    .sig-cell:nth-child(n+5) { border-top: var(--border); }
  }
  /* In 2-col: every 2nd cell drops right border, rows after first get top border */
  @media (min-width: 601px) and (max-width: 1080px) {
    .sig-cell:nth-child(2n) { border-right: 0; }
    .sig-cell:nth-child(n+3) { border-top: var(--border); }
  }
  @media (max-width: 600px) {
    .sig-cell { border-right: 0; }
    .sig-cell:not(:first-child) { border-top: var(--border); }
  }
  .sig-cell:hover { background: var(--g1); }
  .sig-cell .ico {
    width: 24px; height: 24px;
    color: var(--g11);
    margin-bottom: 18px;
  }
  .sig-cell .ico svg { width: 100%; height: 100%; }
  .sig-cell h4 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: var(--text-strong);
  }
  .sig-cell p {
    font-size: 13px;
    color: var(--g10);
    line-height: 1.55;
    margin: 0;
    flex: 1;
  }
  .sig-cell .more {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--g11);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .sig-cell .more span {
    padding: 3px 7px;
    background: var(--g2);
    border-radius: 4px;
    color: var(--g10);
  }

  /* ============ DECISION FUNNEL ============ */
  .funnel {
    border: var(--border);
    border-radius: 20px;
    background: var(--g1);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 880px) { .funnel { grid-template-columns: 1fr; gap: 40px; padding: 32px; } }

  /* ---- Decision stream (live diagram) ---- */
  .ds {
    background: var(--bg);
    border: var(--border);
    border-radius: 14px;
    padding: 16px;
    height: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--g11);
    overflow: hidden;
  }
  .ds-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g8);
    border-bottom: 1px dashed var(--g3);
    padding-bottom: 10px;
  }
  .ds-sid b { color: var(--text-strong); font-weight: 500; letter-spacing: 0.04em; margin-left: 6px; }
  .ds-status { display: inline-flex; align-items: center; gap: 6px; color: var(--g10); transition: color 0.3s; }
  .ds-status .d {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--g8);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .ds-status.is-eval { color: var(--accent); }
  .ds-status.is-eval .d { background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: ds-pulse 1.2s infinite; }
  .ds-status.is-allow { color: var(--accent); }
  .ds-status.is-allow .d { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
  .ds-status.is-stepup { color: var(--amber); }
  .ds-status.is-stepup .d { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
  .ds-status.is-block { color: var(--red); }
  .ds-status.is-block .d { background: var(--red); box-shadow: 0 0 6px var(--red); }
  @keyframes ds-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
  }

  .ds-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 92px;
    gap: 18px;
    min-height: 0;
  }
  .ds-col { display: flex; flex-direction: column; min-height: 0; }
  .ds-col-h {
    font-size: 9px;
    letter-spacing: 0.14em;
    color: var(--g7);
    margin-bottom: 10px;
  }

  /* Signal log */
  .ds-signals { gap: 0; }
  .ds-log {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
    overflow: hidden;
  }
  .ds-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 5px 9px;
    background: var(--g1);
    border: 1px solid var(--g2);
    border-radius: 5px;
    font-size: 10.5px;
    color: var(--g10);
    opacity: 0;
    transform: translateX(-8px);
    animation: ds-row-in 0.35s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .ds-row .k { color: var(--g11); }
  .ds-row .w {
    font-variant-numeric: tabular-nums;
    color: var(--text-strong);
    min-width: 32px;
    text-align: right;
  }
  .ds-row .a {
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }
  .ds-row.up { border-color: rgba(255,84,84,0.22); background: rgba(255,84,84,0.04); }
  .ds-row.up .w { color: var(--red); }
  .ds-row.up .a { border-bottom: 5px solid var(--red); }
  .ds-row.dn { border-color: rgba(0,229,143,0.22); background: rgba(0,229,143,0.04); }
  .ds-row.dn .w { color: var(--accent); }
  .ds-row.dn .a { border-top: 5px solid var(--accent); }
  .ds-row.zr .a { border-bottom: 5px solid var(--g7); }
  @keyframes ds-row-in {
    to { opacity: 1; transform: translateX(0); }
  }

  .ds-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--g3);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--g7);
  }
  .ds-total-v {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    color: var(--text-strong);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
    transition: color 0.4s;
  }
  .ds-total-v.is-allow { color: var(--accent); }
  .ds-total-v.is-stepup { color: var(--amber); }
  .ds-total-v.is-block { color: var(--red); }

  /* Risk meter */
  .ds-meter { align-items: stretch; }
  .ds-gauge {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 22px;
    gap: 8px;
    min-height: 0;
  }
  .ds-track {
    position: relative;
    background: var(--g1);
    border: 1px solid var(--g2);
    border-radius: 6px;
    overflow: hidden;
  }
  .ds-band {
    position: absolute; left: 0; right: 0;
  }
  /* 100 (top) → 0 (bottom). block 70-100, step 25-70, allow 0-25 */
  .ds-band-block { top: 0; height: 30%; background: linear-gradient(180deg, rgba(255,84,84,0.14), rgba(255,84,84,0.04)); border-bottom: 1px dashed rgba(255,84,84,0.18); }
  .ds-band-step  { top: 30%; height: 45%; background: linear-gradient(180deg, rgba(255,176,32,0.07), rgba(255,176,32,0.03)); border-bottom: 1px dashed rgba(255,176,32,0.18); }
  .ds-band-allow { top: 75%; height: 25%; background: linear-gradient(180deg, rgba(0,229,143,0.05), rgba(0,229,143,0.12)); }

  /* Threshold labels (70 at 30%, 25 at 75%) */
  .ds-thresh {
    position: absolute; right: 4px;
    font-size: 8px; letter-spacing: 0.1em;
    color: var(--g8);
    transform: translateY(-50%);
    pointer-events: none;
  }
  .ds-thresh-70 { top: 30%; }
  .ds-thresh-25 { top: 75%; }

  /* Fill rises from bottom to current score */
  .ds-fill {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 0%;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    transition: height 0.55s cubic-bezier(.4,.0,.2,1), background 0.4s;
    pointer-events: none;
  }
  .ds-fill.is-allow  { background: linear-gradient(180deg, var(--panel-glow), rgba(0,229,143,0.22)); }
  .ds-fill.is-stepup { background: linear-gradient(180deg, rgba(255,176,32,0.10), rgba(255,176,32,0.22)); }
  .ds-fill.is-block  { background: linear-gradient(180deg, rgba(255,84,84,0.16), rgba(255,84,84,0.28)); }

  /* Needle line at score level */
  .ds-needle {
    position: absolute; left: -4px; right: -4px;
    bottom: 0%;
    height: 0;
    border-top: 1px solid var(--white);
    transition: bottom 0.55s cubic-bezier(.4,.0,.2,1), border-color 0.4s;
    pointer-events: none;
  }
  .ds-needle::before {
    content: ""; position: absolute; left: -2px; top: -3px;
    width: 6px; height: 6px; background: var(--white); border-radius: 50%;
  }
  .ds-needle-v {
    position: absolute; left: -38px; top: -10px;
    font-family: var(--font-display); font-style: italic;
    font-size: 18px; line-height: 1;
    color: var(--text-strong);
    font-variant-numeric: tabular-nums;
    transition: color 0.4s;
  }
  .ds-needle.is-allow  { border-color: var(--accent); }
  .ds-needle.is-allow::before { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
  .ds-needle.is-allow .ds-needle-v { color: var(--accent); }
  .ds-needle.is-stepup { border-color: var(--amber); }
  .ds-needle.is-stepup::before { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
  .ds-needle.is-stepup .ds-needle-v { color: var(--amber); }
  .ds-needle.is-block  { border-color: var(--red); }
  .ds-needle.is-block::before { background: var(--red); box-shadow: 0 0 8px var(--red); }
  .ds-needle.is-block .ds-needle-v { color: var(--red); }

  .ds-axis {
    display: flex; flex-direction: column; justify-content: space-between;
    font-size: 8.5px; color: var(--g7); letter-spacing: 0.1em;
    padding: 1px 0;
  }

  /* Funnel rule highlight when matched */
  .funnel-rule { transition: background 0.3s, border-color 0.3s, transform 0.3s; }
  .funnel-rule.is-active {
    transform: translateX(2px);
  }
  .funnel-rule.allow.is-active    { background: var(--panel-glow); border-color: rgba(0,229,143,0.35); }
  .funnel-rule.allow.is-active .pip    { box-shadow: 0 0 8px var(--accent); }
  .funnel-rule.step-up.is-active  { background: rgba(255,176,32,0.06); border-color: rgba(255,176,32,0.35); }
  .funnel-rule.step-up.is-active .pip  { box-shadow: 0 0 8px var(--amber); }
  .funnel-rule.block.is-active    { background: rgba(255,84,84,0.06); border-color: rgba(255,84,84,0.35); }
  .funnel-rule.block.is-active .pip    { box-shadow: 0 0 8px var(--red); }

  @media (max-width: 880px) {
    .ds { height: 420px; }
    .ds-body { grid-template-columns: 1fr 80px; }
  }

  .funnel-text h3 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    font-weight: 500;
  }
  .funnel-text h3 .em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
  }
  .funnel-text p {
    color: var(--g10);
    font-size: 15px;
    margin-bottom: 22px;
    max-width: 42ch;
  }
  .funnel-rules {
    display: grid;
    gap: 8px;
  }
  .funnel-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: var(--border);
    border-radius: 8px;
    background: var(--bg);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--g11);
    white-space: nowrap;
  }
  .funnel-rule .arrow { margin: 0 4px; }
  .funnel-rule .pip {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--g7);
    flex-shrink: 0;
  }
  .funnel-rule.allow .pip { background: var(--accent); }
  .funnel-rule.step-up .pip { background: var(--amber); }
  .funnel-rule.block .pip { background: var(--red); }
  .funnel-rule .arrow {
    color: var(--g8);
  }
  .funnel-rule .out {
    color: var(--text-strong);
    margin-left: auto;
  }

  /* ============ USE CASES ============ */
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 760px) { .uc-grid { grid-template-columns: 1fr; } }
  .uc-card {
    border: var(--border);
    border-radius: 16px;
    padding: 32px;
    background: var(--g1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
  }
  .uc-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 80px; height: 1px;
    background: var(--accent);
  }
  .uc-card .ix {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--g9);
    letter-spacing: 0.08em;
  }
  .uc-card h4 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    font-weight: 500;
  }
  .uc-card h4 .em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
  }
  .uc-card .desc {
    color: var(--g10);
    font-size: 14px;
    line-height: 1.6;
  }
  .uc-card .signals-used {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .uc-card .signals-used span {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 4px 8px;
    background: var(--g3);
    color: var(--g10);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* ============ STAT BANNER ============ */
  .stat-band {
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 64px 0;
    background: linear-gradient(180deg, transparent, rgba(74,158,255,0.03), transparent);
  }
  .stat-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .stat-band-grid { grid-template-columns: repeat(2, 1fr); } }
  .stat-band-cell {
    text-align: center;
  }
  .stat-band-cell .num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--gradient-text-from), var(--gradient-text-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .stat-band-cell .lbl {
    font-size: 13px;
    color: var(--g10);
    margin-top: 14px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
  }

  /* ============ TESTIMONIAL ============ */
  .pull {
    border: var(--border);
    border-radius: 20px;
    padding: 56px;
    background: linear-gradient(180deg, var(--g1), var(--bg));
    text-align: left;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (max-width: 760px) { .pull { padding: 32px; } }
  .pull .quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-strong);
    margin: 0;
  }
  .pull .quote::before { content: "\""; color: var(--accent); }
  .pull .quote::after { content: "\""; color: var(--accent); }
  .pull .attr {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--g10);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .pull .attr .who { color: var(--text-strong); }

  /* ============ FAQ ============ */
  .faq-list { border-top: var(--border); }
  .faq-item {
    border-bottom: var(--border);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-strong);
    letter-spacing: -0.01em;
  }
  .faq-q .plus {
    width: 24px; height: 24px;
    flex-shrink: 0;
    position: relative;
    color: var(--g10);
  }
  .faq-q .plus::before, .faq-q .plus::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: transform 0.2s;
  }
  .faq-q .plus::before {
    top: 50%; left: 4px; right: 4px; height: 1px;
  }
  .faq-q .plus::after {
    left: 50%; top: 4px; bottom: 4px; width: 1px;
  }
  .faq-item.open .faq-q .plus::after { transform: scaleY(0); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    color: var(--g10);
    font-size: 15px;
    line-height: 1.65;
    transition: max-height 0.25s, margin-top 0.25s;
    max-width: 70ch;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    margin-top: 14px;
  }

  /* ============ CTA ============ */
  .cta-block {
    border-top: var(--border);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-block .glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, var(--panel-glow), transparent 60%);
    filter: blur(40px);
  }
  .cta-block h2 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
    font-weight: 500;
    position: relative;
  }
  .cta-block h2 .em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
  }
  .cta-block .row { justify-content: center; position: relative; }
