/* Bridge tokens — legacy class names from site.css, colors/spacing from globals */
:root {
  --ink: var(--text);
  --muted: var(--text-muted);
  --line: var(--border);
  --divider: #DEE4F3;
  --line-dark: var(--border-on-dark);
  --bg-cell: #FFFFFF;
  --hover: var(--bg-subtle);
  --section-y: var(--space-section-desktop);
  --section-y-m: 56px;
  --pad-x: 48px;
  --pad-x-m: 24px;
  --on-dark: var(--text-on-dark);
  --on-dark-muted: var(--text-on-dark-muted);
  --success: #1D9E75;
  --clay: #B5603C;
  --good: #1D9E75;
  --warn: #C99A2E;
  --bad: #B5462F;
}
main > section:not(.hero):not(.il):not(.il-root):not(.closing) { padding-top: var(--space-section-desktop); padding-bottom: var(--space-section-desktop); }
@media (max-width: 768px) {
  main > section:not(.hero):not(.il):not(.il-root):not(.closing) {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }
}
.section-header { max-width: 880px; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 16px; }

/* Company hero — stacked intro (inherits .hero__sub type) */
.hero__intro {
  max-width: 720px;
  margin-bottom: 24px;
}
.hero__intro .hero__sub {
  max-width: none;
  margin: 0 0 1.2em;
}
.hero__intro .hero__sub:last-child {
  margin-bottom: 0;
}

/* Company only (.hero__intro): avoid hero bottom + full section-top stacking */
main:has(.hero__intro) .hero {
  padding-bottom: 56px;
}
main:has(.hero__intro) > section:not(.hero):not(.il):not(.il-root):not(.closing) {
  padding-top: 40px;
  padding-bottom: 48px;
}
main:has(.hero__intro) .closing {
  padding-top: 40px;
  padding-bottom: 64px;
}
main:has(.hero__intro) .closing .closing__divider {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  main:has(.hero__intro) .hero {
    padding-bottom: 48px;
  }
  main:has(.hero__intro) > section:not(.hero):not(.il):not(.il-root):not(.closing) {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  main:has(.hero__intro) .closing {
    padding-top: 32px;
    padding-bottom: 56px;
  }
  main:has(.hero__intro) .closing .closing__divider {
    margin-bottom: 24px;
  }
}
.btn--secondary:hover { background: var(--btn-secondary-bg-hover); border-color: var(--btn-secondary-bg-hover); color: var(--text); }
.footer-social a svg { width: 14px; height: 14px; }

/* Closing: links in optional muted line (company) */
.closing .muted a {
  color: var(--accent);
  text-decoration: none;
}
.closing .muted a:hover {
  color: var(--accent-hover);
}

/* Homepage il-root: consumers under pipeline — top spacing aligned with .il-header bottom margin */
.il-root .il-consumers {
  margin-top: 40px;
}
@media (min-width: 980px) {
  .il-root .il-consumers {
    margin-top: 56px;
  }
}
.modal{
  position:fixed; inset:0; z-index:80;
  display:none; align-items:center; justify-content:center;
  padding:24px;
}
.modal.is-open{ display:flex; }
.modal__overlay{
  position:absolute; inset:0;
  background:rgba(17,19,26,0.45);
}
.modal__card{
  position:relative; width:100%; max-width:480px;
  background:#FFFFFF; border-radius:var(--radius);
  border:1px solid var(--line);
  padding:36px 32px 32px;
}
.modal__close{
  position:absolute; top:14px; right:14px;
  width:32px; height:32px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line); border-radius:var(--radius);
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:13px; color:var(--ink);
  transition:border-color .12s ease, color .12s ease;
}
.modal__close:hover{ border-color:var(--accent); color:var(--accent); }
.modal__title{
  font-family:'Newsreader', Georgia, serif;
  font-weight:450; font-size:24px; line-height:1.2;
  letter-spacing:-0.01em;
  margin:0 0 24px; color:var(--ink);
}
.field{ margin-bottom:18px; }
.field__label{
  display:block;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:10px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--muted); margin-bottom:8px;
  transition:color .12s ease;
}
.field__input, .field__select, .field__textarea{
  width:100%; background:#FFFFFF;
  border:1px solid var(--line); border-radius:var(--radius);
  padding:11px 12px;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:14px; color:var(--ink); line-height:1.4;
  transition:border-color .12s ease;
}
.field__textarea{ resize:vertical; min-height:84px; }
.field__input:focus, .field__select:focus, .field__textarea:focus{
  outline:none; border-color:var(--accent);
}
.field:focus-within .field__label{ color:var(--accent); }
.field__select{
  appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%2316140F' stroke-width='1'/></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:34px;
}
.modal__btn-primary{
  width:100%; background:var(--accent); color:#FFFFFF;
  font-size:14px; font-weight:500; padding:13px 18px;
  border-radius:var(--radius);
  transition:background-color .12s ease;
}
.modal__btn-primary:hover{ background:var(--accent-hover); }
.modal__btn-primary:disabled{
  opacity:0.65;
  cursor:not-allowed;
}
.modal__btn-primary:disabled:hover{ background:var(--accent); }
.modal__honey{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}
.modal__error{
  display:none;
  margin:0 0 16px;
  font-size:14px;
  line-height:1.45;
  color:var(--clay);
}
.modal__error.is-visible{ display:block; }
.modal__btn-ghost{
  width:100%; background:#FFFFFF; color:var(--ink);
  font-size:14px; font-weight:500; padding:13px 18px;
  border:1px solid var(--line); border-radius:var(--radius);
  transition:border-color .12s ease, color .12s ease;
}
.modal__btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

.modal__success{ text-align:center; padding:8px 0 4px; }
.success-check{
  width:64px; height:64px; border-radius:50%;
  background:var(--success);
  display:inline-flex; align-items:center; justify-content:center;
  margin:8px auto 22px;
}
.success-check svg{ width:28px; height:28px; color:#FFFFFF; }
.success__h3{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-weight:500; font-size:18px;
  margin:0 0 8px; color:var(--ink);
}
.success__line{ font-size:14px; color:var(--muted); margin:0 0 24px; }

.modal[data-state="form"] .modal__success{ display:none; }
.modal[data-state="success"] .modal__form{ display:none; }

/* Closing CTA — light strip before footer (matches mirror .closing-cta) */
.closing {
  background: var(--bg);
  color: var(--text);
  padding: 72px 0;
}
.closing__divider {
  margin-bottom: 48px;
}
.closing__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.closing__copy {
  flex: 1 1 280px;
  min-width: 0;
}
.closing h2 {
  color: var(--text);
  margin: 0 0 16px;
  max-width: 720px;
}
.closing__line {
  color: var(--text-muted);
  font-size: var(--fs-bodyL);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}
.closing .btn {
  flex-shrink: 0;
}
.closing .muted {
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .closing {
    padding: 56px 0;
  }
  .closing__divider {
    margin-bottom: 36px;
  }
}
@media (max-width: 1024px) {
  .closing__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* product card grid (homepage products section) */
.prodgrid{
  display:grid; grid-template-columns:repeat(2, 1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.prodcard{
  padding:32px 32px 36px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--bg-cell);
  transition:background-color .12s ease;
  display:flex; flex-direction:column; gap:14px;
  min-height:200px;
}
.prodcard:hover{ background:var(--hover); }
.prodcard__kicker{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
  font-weight:600;
}
.prodcard__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:24px; font-weight:500; color:var(--ink);
  line-height:1.25;
  display:block;
  /* Same title band per row so descriptions line up when one title wraps */
  min-height:calc(2 * 1.25 * 1em);
}
.prodcard__line{ color:var(--muted); font-size:15px; line-height:1.55; }
.prodcard__more{
  margin-top:auto;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:12px; color:var(--accent); letter-spacing:0.04em;
}
@media (max-width:768px){
  .prodgrid{ grid-template-columns:1fr; }
  .prodcard__title{ min-height:0; }
}

/* offices grid (used on company page) */
.offices{
  display:grid; grid-template-columns:repeat(3, 1fr);
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
.office{
  padding:28px 28px 32px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg-cell);
}
.office__city{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em;
  color:var(--accent); margin:0 0 14px;
}
.office__addr{ font-size:15px; color:var(--ink); line-height:1.55; margin:0; }
.office__addr span{ display:block; color:var(--muted); }
.office__addr a{
  color:inherit;
  text-decoration:none;
}
.office__addr a:hover{ color:var(--accent); }
.office__addr a span{ color:var(--muted); }
@media (max-width:900px){ .offices{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .offices{ grid-template-columns:1fr; } }

/* =====================================================================
   HERO (homepage — NETWORK INTELLIGENCE PLATFORM)
===================================================================== */
.hero-section {
  background: #FFFFFF;
}

/* =====================================================================
   VALUE CHAIN (homepage)
===================================================================== */
.vchain-section {
  background: #F3F5FB;
}
.vchain{
  display:grid; grid-template-columns:repeat(5, 1fr);
  /* stretch (default): one row height so vertical borders align */
  align-items:stretch;
  border-top:1px solid var(--divider); border-left:1px solid var(--divider);
}
.vchain__step{
  padding:22px 20px 24px;
  border-right:1px solid var(--divider); border-bottom:1px solid var(--divider);
  background:#FFFFFF;
  display:flex; flex-direction:column; gap:8px;
  min-height:100%;
}
.vchain__num{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
}
.vchain__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:22px; font-weight:600; color:var(--ink); line-height:1.25;
  margin:0;
  letter-spacing:-0.02em;
  /* Reserve two lines so body lists start on one horizontal band */
  min-height:calc(2 * 1.25 * 1em);
}
.vchain__items{
  font-size:13.5px; color:var(--muted); line-height:1.55;
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:0;
  text-align:left;
}
.vchain__items-row{
  display:block;
}
@media (max-width:1024px){ .vchain{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){
  .vchain{ grid-template-columns:1fr; }
  .vchain__title{ min-height:0; }
}

/* =====================================================================
   INTELLIGENCE LAYER (homepage, LIGHT version — no bullets, no notes)
===================================================================== */
.il{
  background:#E9EEF2;
  padding:var(--section-y) 0;
}
.il__panel{
  background:#FFFFFF;
  border:1px solid #D7DEE5;
  border-radius:var(--radius);
}
.il__grid{
  display:grid; grid-template-columns:1fr 1fr 64px 1fr 1fr;
  min-height:240px;
}
.il__node{
  padding:26px 22px 26px;
  display:flex; flex-direction:column; gap:14px;
  border-right:1px solid #D7DEE5;
}
.il__node:last-child{ border-right:0; }
.il__kicker{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:10px; letter-spacing:0.14em; color:#2747C0;
}
.il__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:21px; font-weight:400; color:#16140F; line-height:1.2;
}
.il__tag{
  margin-top:auto;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.06em; color:#5C584F;
}
.il__membrane{
  position:relative;
  border-right:1px solid #D7DEE5;
  background:#FBFBFD;
  display:flex; align-items:center; justify-content:center;
  padding:18px 0;
}
.il__membrane::before{
  content:""; position:absolute; top:18px; bottom:18px;
  left:50%; width:0;
  border-left:1px dashed #9DB0C4;
}
.il__membrane-inner{
  position:relative;
  display:flex; flex-direction:column; align-items:center;
  gap:8px; z-index:1; width:60px; overflow:hidden;
}
.il__token{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:9.5px;
  white-space:nowrap;
}
.il__token--block{ color:var(--clay); text-decoration:line-through; }
.il__token--pass{ color:#2747C0; }
.il__membrane-label{
  position:absolute; bottom:18px; left:50%;
  transform:translateX(-50%) rotate(-90deg);
  transform-origin:center;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:9px; letter-spacing:0.22em; color:#5C584F;
  white-space:nowrap;
}
.il__consumers{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:28px;
}
.il__chip{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em;
  padding:8px 12px;
  border:1px solid #D7DEE5;
  border-radius:var(--radius);
  background:#FBFBFD;
  color:#16140F;
}
@media (max-width:980px){
  .il__grid{
    grid-template-columns:1fr;
    grid-template-areas:"n1" "n2" "mem" "n3" "n4";
  }
  .il__node{ border-right:0; border-bottom:1px solid #D7DEE5; }
  .il__node:nth-child(1){ grid-area:n1; }
  .il__node:nth-child(2){ grid-area:n2; }
  .il__membrane{
    grid-area:mem;
    border-right:0; border-bottom:1px solid #D7DEE5;
    padding:14px 22px;
    flex-direction:row; gap:18px;
    min-height:auto;
  }
  .il__membrane::before{
    top:50%; left:18px; right:18px; bottom:auto;
    width:auto; height:0;
    border-left:0; border-top:1px dashed #9DB0C4;
  }
  .il__membrane-inner{
    flex-direction:row; gap:14px; width:auto;
  }
  .il__membrane-label{
    position:static; transform:none; padding-right:8px;
  }
  .il__node:nth-child(4){ grid-area:n3; }
  .il__node:nth-child(5){ grid-area:n4; border-bottom:0; }
}

/* =====================================================================
   ARCHITECTURE (homepage anchor) — five layer stack
===================================================================== */
.arch{
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
.arch__row{
  display:grid; grid-template-columns:88px 200px 1fr 100px;
  align-items:start;
  padding:22px 24px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--bg-cell);
  gap:24px;
}
.arch__num{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
  padding-top:4px;
}
.arch__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:19px; font-weight:400; color:var(--ink); line-height:1.3;
}
.arch__line{ color:var(--muted); font-size:15px; line-height:1.55; }
.arch__tag{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:10px; letter-spacing:0.14em; color:var(--accent);
  text-align:right;
}
.arch__row--core{
  background:var(--bg-dark);
}
.arch__row--core .arch__num{ color:#9DB0C4; }
.arch__row--core .arch__title{ color:var(--on-dark); }
.arch__row--core .arch__line{ color:var(--on-dark-muted); }
.arch__row--core .arch__tag{ color:#9DB0C4; }
@media (max-width:768px){
  .arch__row{ grid-template-columns:60px 1fr; row-gap:6px; }
  .arch__title{ grid-column:2; }
  .arch__line{ grid-column:2; }
  .arch__tag{ grid-column:2; text-align:left; }
}

/* compliance statement */
.compliance{
  background:var(--bg-subtle);
}
.compliance__line{
  font-family:'Newsreader', Georgia, serif;
  font-size:clamp(22px, 2.4vw, 28px);
  font-weight:400; line-height:1.4;
  max-width:70ch;
  color:var(--ink);
}

/* =====================================================================
   CORE PAGE — delivery modes
===================================================================== */
.modes{
  background:var(--bg-subtle);
}
.modes__grid,
.modes__kicker,
.modes__title,
.modes__line {
  font-family: 'Newsreader', Georgia, serif;
}
.modes__grid{
  display:grid; grid-template-columns:1fr 1fr;
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
.modes__card{
  padding:32px 32px 36px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  background:#FFFFFF;
  display:flex; flex-direction:column; gap:14px;
}
.modes__kicker{
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
}
.modes__title{
  font-size:20px; font-weight:600; color:var(--ink);
}
.modes__line{ color:var(--muted); font-size:15px; line-height:1.55; }
@media (max-width:768px){ .modes__grid{ grid-template-columns:1fr; } }

/* CORE — classification catalog */
.catalog,
.catalog__label,
.catalog__name,
.catalog__desc {
  font-family: 'Newsreader', Georgia, serif;
}
.catalog{
  border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden;
}
.catalog__grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
}
.catalog__cell{
  padding:22px 24px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--bg-cell);
  display:flex; flex-direction:column; gap:6px;
  transition:background-color .12s ease;
}
.catalog__cell:hover{ background:var(--hover); }
.catalog__label{
  font-size:11px; letter-spacing:0.14em;
  color:var(--accent);
}
.catalog__name{
  font-weight:600; font-size:17px; color:var(--ink);
}
.catalog__desc{ font-size:13.5px; color:var(--muted); line-height:1.5; }

/* 3-col: cells 9 & 10 form last full row (3rd row 7-8-9, 4th row 10-11-empty). Trailing blank no border. */
.catalog__grid > .catalog__cell:nth-child(3n){ border-right:0; }
.catalog__grid > .catalog__cell:nth-last-child(-n+2){ /* tweak below per breakpoint */ }
.catalog__grid > .catalog__cell:last-child{ /* placeholder */ }
@media (min-width:901px){
  /* 3 columns, 11 cells -> row1:1,2,3 / row2:4,5,6 / row3:7,8,9 / row4:10,11,blank */
  .catalog__grid > .catalog__cell:nth-child(10),
  .catalog__grid > .catalog__cell:nth-child(11){ border-bottom:0; }
  .catalog__grid > .catalog__cell:nth-child(11){ border-right:0; }
}
@media (max-width:900px) and (min-width:601px){
  .catalog__grid{ grid-template-columns:repeat(2,1fr); }
  .catalog__grid > .catalog__cell{ border-right:1px solid var(--line); }
  .catalog__grid > .catalog__cell:nth-child(2n){ border-right:0; }
  /* 2 cols, 11 cells -> last row: cell 11 alone */
  .catalog__grid > .catalog__cell:nth-child(11){ border-right:0; border-bottom:0; }
  .catalog__grid > .catalog__cell:nth-child(10){ border-bottom:0; }
}
@media (max-width:600px){
  .catalog__grid{ grid-template-columns:1fr; }
  .catalog__grid > .catalog__cell{ border-right:0; }
  .catalog__grid > .catalog__cell:last-child{ border-bottom:0; }
}

/* Built on core — rows */
.useon{
  border-top:1px solid var(--line);
}
.useon__row{
  padding:22px 0;
  border-bottom:1px solid var(--line);
  display:grid; grid-template-columns:60px 1fr;
  gap:24px; align-items:baseline;
}
.useon__num{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
}
.useon__line{
  font-family:'Newsreader', Georgia, serif;
  font-weight:400; font-size:20px; color:var(--ink); line-height:1.35;
}

/* =====================================================================
   PLATFORM PAGE — dashboard mock + monetization tracks
===================================================================== */
.dash{
  background:var(--bg-subtle);
}
.dash__frame{
  max-width:880px; margin:0 auto;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.dash__tabs{
  display:flex; flex-wrap:wrap; gap:18px;
  padding:18px 22px; border-bottom:1px solid var(--line);
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--muted);
}
.dash__tabs__label{ color:var(--muted); margin-right:8px; }
.dash__tab{ color:var(--muted); }
.dash__tab.is-active{ color:var(--ink); }
.dash__sep{ color:var(--line); }

.dash__panels{
  display:grid; grid-template-columns:1fr 1fr;
  border-bottom:1px solid var(--line);
}
.dash__panel{
  padding:24px 22px;
}
.dash__panel + .dash__panel{ border-left:1px solid var(--line); }
.dash__panel__title{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
  margin:0 0 18px;
}
.dash__donut{
  width:120px; height:120px;
  border:14px solid var(--line);
  border-top-color:var(--ink);
  border-right-color:var(--muted);
  border-bottom-color:#9B978E;
  border-radius:50%;
  margin:6px auto 18px;
}
.dash__legend{
  display:grid; grid-template-columns:1fr; gap:8px;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:12px; color:var(--ink);
}
.dash__legend__row{
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 0; border-bottom:1px solid var(--line);
}
.dash__legend__row:last-child{ border-bottom:0; }
.dash__legend__sw{
  display:inline-block; width:10px; height:10px;
  margin-right:8px;
  background:var(--ink);
  vertical-align:middle;
}
.dash__legend__sw--2{ background:var(--muted); }
.dash__legend__sw--3{ background:#9B978E; }
.dash__legend__sw--4{ background:var(--line); }

.dash__list{
  list-style:none; margin:0; padding:0;
  font-family:Roboto, 'Helvetica Neue', sans-serif; font-size:12px;
}
.dash__list li{
  display:flex; justify-content:space-between;
  padding:8px 0; border-bottom:1px solid var(--line); color:var(--ink);
}
.dash__list li:last-child{ border-bottom:0; }
.dash__list .bar{
  display:inline-block; height:6px; background:var(--ink);
  vertical-align:middle; margin-left:8px;
}

.dash__agent{
  padding:22px;
  display:flex; flex-direction:column; gap:14px;
}
.dash__agent__row{
  display:flex; gap:14px; align-items:flex-start;
}
.dash__agent__prefix{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:10px; letter-spacing:0.14em; color:var(--accent);
  min-width:120px; padding-top:3px;
  flex-shrink:0;
}
.dash__agent__prefix--result{ color:var(--muted); }
.dash__agent__text{
  font-family:Roboto, 'Helvetica Neue', sans-serif; font-size:14px; color:var(--ink);
  line-height:1.5;
}
.dash__agent__buttons{
  display:flex; gap:10px; flex-wrap:wrap;
  padding-top:6px;
}
.dash__agent__btn{
  font-family:Roboto, 'Helvetica Neue', sans-serif; font-size:13px; font-weight:500;
  padding:9px 14px; border-radius:var(--radius);
}
.dash__agent__btn--primary{ background:var(--accent); color:#FFFFFF; }
.dash__agent__btn--ghost{ background:#FFFFFF; border:1px solid var(--line); color:var(--ink); }
.dash__caption{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em;
  color:var(--muted); margin:24px auto 0; text-align:center; max-width:880px;
}
@media (max-width:768px){
  .dash__panels{ grid-template-columns:1fr; }
  .dash__panel + .dash__panel{ border-left:0; border-top:1px solid var(--line); }
  .dash__agent__row{ flex-direction:column; gap:6px; }
  .dash__agent__prefix{ min-width:0; }
}

/* Platform page — three SVG cards (replaces mock dashboard frame) */
.platform-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.platform-visuals__card {
  margin: 0;
  padding: clamp(16px, 2.5vw, 28px);
  background: #ffffff;
  border: 1px solid #dee4f3;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.platform-visuals__card img {
  width: 100%;
  height: auto;
  max-height: min(520px, 58vh);
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .platform-visuals {
    grid-template-columns: 1fr;
  }
}

/* Monetization tracks (Platform) */
.tracks{
  display:grid; grid-template-columns:repeat(3, 1fr);
  border-top:1px solid var(--line);
}
.tracks__col{
  padding:28px 28px 32px;
  border-left:1px solid var(--line);
  background:var(--bg);
}
.tracks__col:first-child{ border-left:0; }
.tracks__kicker{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.14em; color:var(--accent);
  margin:0 0 10px;
}
.tracks__desc{ color:var(--muted); font-size:14px; line-height:1.55; margin:0 0 18px; }
.tracks__col hr{ border:0; border-top:1px solid var(--line); margin:0 0 18px; }
.tracks__list{ list-style:none; padding:0; margin:0; }
.tracks__item{
  padding:14px 0; border-bottom:1px solid var(--line);
  display:grid; grid-template-columns:32px 1fr; gap:14px;
}
.tracks__item:last-child{ border-bottom:0; }
.tracks__num{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; letter-spacing:0.06em; color:var(--accent); padding-top:3px;
}
.tracks__name{
  font-family:Roboto, 'Helvetica Neue', sans-serif; font-weight:600; font-size:15.5px;
  color:var(--ink); display:block; margin-bottom:4px;
}
.tracks__line{ color:var(--muted); font-size:13.5px; line-height:1.55; }
@media (max-width:900px){
  .tracks{ grid-template-columns:1fr; }
  .tracks__col{ border-left:0; border-top:1px solid var(--line); padding:24px 0; }
  .tracks__col:first-child{ border-top:0; }
}

/* =====================================================================
   SYNERGY PAGE — what synergy delivers + why it holds
===================================================================== */
.deliver{ background:var(--bg-subtle); }
.deliver__grid,
.deliver__title,
.deliver__line {
  font-family: 'Newsreader', Georgia, serif;
}
.deliver__grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
.deliver__card{
  padding:32px 28px 36px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg-cell);
  display:flex; flex-direction:column; gap:14px;
}
.deliver__title{
  font-size:26px; font-weight:400; color:var(--ink);
}
.deliver__line{ color:var(--muted); font-size:15px; line-height:1.55; }
@media (max-width:900px){ .deliver__grid{ grid-template-columns:1fr; } }

.why__grid,
.why__title,
.why__line {
  font-family: 'Newsreader', Georgia, serif;
}
.why__grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--line); border-left:1px solid var(--line);
}
.why__card{
  padding:28px 28px 32px;
  border-right:1px solid var(--line); border-bottom:1px solid var(--line);
  background:var(--bg-cell);
  display:flex; flex-direction:column; gap:10px;
}
.why__title{
  font-weight:600; font-size:17px; color:var(--ink);
}
.why__line{ color:var(--muted); font-size:14.5px; line-height:1.55; }
@media (max-width:768px){ .why__grid{ grid-template-columns:1fr; } }

/* =====================================================================
   QoS PAGE
===================================================================== */
.ott-era{ background:var(--bg-subtle); }
.ott-era__prose{
  max-width:720px;
  font-size:17px; color:var(--ink);
  line-height:1.7; margin:0;
}

.exp__grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  align-items:stretch;
  border-top:1px solid var(--divider); border-left:1px solid var(--divider);
}
.exp__card{
  padding:32px 28px 36px;
  border-right:1px solid var(--divider); border-bottom:1px solid var(--divider);
  background:var(--bg-cell);
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
}
.exp__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:22px; font-weight:450; color:var(--ink);
  margin:0;
  flex-shrink:0;
}
.exp__line{
  flex:1 1 auto;
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
}
.exp__mono{
  flex-shrink:0;
  margin:0;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px; font-weight:500; letter-spacing:0.12em; color:var(--accent);
  padding-top:14px;
  border-top:1px solid var(--divider);
  text-transform:uppercase;
}
@media (max-width:900px){
  .exp__grid{ grid-template-columns:1fr; }
  .exp__line{ flex:none; }
}

.stats-section{
  background:#FFFFFF;
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:stretch;
  border-top:1px solid var(--divider);
  border-left:1px solid var(--divider);
}
.stats__col{
  padding:32px 28px 36px;
  border-right:1px solid var(--divider);
  border-bottom:1px solid var(--divider);
  background:var(--bg-cell);
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
}
.stats__num{
  font-family:'Newsreader', Georgia, serif;
  font-weight:450;
  font-size:clamp(40px,5vw,52px);
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--ink);
  margin:0;
  flex-shrink:0;
}
.stats__label{
  flex:1 1 auto;
  margin:0;
  font-size:15px;
  color:#8192AB;
  line-height:1.55;
  max-width:24ch;
}
.stats__source{
  margin-top:auto;
  padding-top:18px;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:11px;
  font-weight:500;
  letter-spacing:0.12em;
  color:var(--muted);
  text-transform:uppercase;
}
@media (max-width:900px){
  .stats{ grid-template-columns:1fr; }
  .stats__label{ flex:none; }
}

.cmap{
  margin:0;
  aspect-ratio:16/9;
  width:100%;
  background:var(--bg-cell);
  border:1px solid var(--divider);
  border-radius:var(--radius);
  overflow:hidden;
}
.cmap img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}
.cmap-legend{
  margin-top:22px;
  display:flex; flex-wrap:wrap; gap:24px;
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:12px; font-weight:500; letter-spacing:0.1em; color:var(--muted);
  text-transform:uppercase;
}
.cmap-legend__item{ display:inline-flex; align-items:center; gap:8px; }
.cmap-legend__dot{
  width:9px; height:9px; border-radius:50%; display:inline-block;
}
.cmap-legend__dot--good{ background:var(--good); }
.cmap-legend__dot--warn{ background:var(--warn); }
.cmap-legend__dot--bad{  background:var(--bad);  }

.gran__grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--divider); border-left:1px solid var(--divider);
}
.gran__card{
  padding:28px 28px 32px;
  border-right:1px solid var(--divider); border-bottom:1px solid var(--divider);
  background:var(--bg-cell);
  display:flex; flex-direction:column; gap:12px;
}
.gran__title{
  font-family:'Newsreader', Georgia, serif;
  font-size:20px; font-weight:450; color:var(--ink);
}
.gran__line{ color:var(--muted); font-size:14.5px; line-height:1.55; }
@media (max-width:900px){ .gran__grid{ grid-template-columns:1fr; } }

.netplan__prose{
  max-width:720px;
  font-size:17px; color:var(--ink);
  line-height:1.7; margin:0;
}

.stnd{ background:var(--bg-subtle); }
.stnd__prose{
  max-width:720px;
  font-size:17px; color:var(--ink);
  line-height:1.65; margin:0 0 28px;
}
.stnd__chips{
  display:flex; flex-wrap:wrap; gap:10px;
}
.stnd__chip{
  font-family:Roboto, 'Helvetica Neue', sans-serif;
  font-size:12px; font-weight:500; letter-spacing:0.12em;
  padding:9px 14px;
  border:1px solid var(--divider);
  border-radius:var(--radius);
  background:var(--bg-cell);
  color:var(--ink);
  text-transform:uppercase;
}
