:root{
  color-scheme: dark;
  /* color */
  --bg:            #050b13;
  --bg-soft:       #081020;
  --surface:       #0c1826;
  --surface-2:     #10202f;
  --border:        rgba(150,184,209,0.14);
  --border-strong: rgba(150,184,209,0.30);
  --text:          #eaf2f8;
  --text-muted:    #93a9bd;
  --text-dim:      #5c7186;
  --accent:        #02bdfb;
  --accent-deep:   #01759c;
  --accent-blue:   #4c86ff;
  --danger:        #ff5d73;
  --success:       #34d399;
  --warning:       #f4b740;

  --accent-rgb: 2,189,251;
  --grid-line: rgba(150,184,209,0.05);
  --bg-glow-cyan: rgba(2,189,251,0.10);
  --bg-glow-blue: rgba(76,134,255,0.08);
  --nav-bg: rgba(5,11,19,0.68);
  --nav-bg-solid: rgba(5,11,19,0.92);
  --hover-bg: rgba(255,255,255,0.04);
  --button-ghost-bg: rgba(255,255,255,0.02);
  --button-primary-text: #04141a;
  --card-gradient-end: rgba(12,24,38,0.5);
  --radar-line: #96b8d1;

  /* type */
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'SFMono-Regular', monospace;

  /* layout */
  --container: 1200px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --nav-h: 76px;
}

html[data-theme="light"]{
  color-scheme: light;
  --bg: #f5f9fc;
  --bg-soft: #edf4f8;
  --surface: #ffffff;
  --surface-2: #f3f7fa;
  --border: rgba(18,58,84,0.14);
  --border-strong: rgba(18,58,84,0.28);
  --text: #10283a;
  --text-muted: #526b7c;
  --text-dim: #7890a0;
  --accent: #0780a8;
  --accent-deep: #055f7d;
  --accent-blue: #2d66d3;
  --danger: #c83f57;
  --success: #087d59;
  --warning: #99650b;
  --accent-rgb: 7,128,168;
  --grid-line: rgba(37,83,111,0.08);
  --bg-glow-cyan: rgba(8,166,196,0.12);
  --bg-glow-blue: rgba(76,134,255,0.10);
  --nav-bg: rgba(245,249,252,0.78);
  --nav-bg-solid: rgba(245,249,252,0.96);
  --hover-bg: rgba(18,58,84,0.06);
  --button-ghost-bg: rgba(255,255,255,0.72);
  --button-primary-text: #ffffff;
  --card-gradient-end: rgba(243,247,250,0.92);
  --radar-line: #8caabd;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html, body{ margin:0; padding:0; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle ambient background: soft directional wash + glow, fixed */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 560px at 82% -8%, var(--bg-glow-cyan), transparent 60%),
    radial-gradient(900px 500px at 10% 8%, var(--bg-glow-blue), transparent 60%),
    linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 50%, var(--bg) 100%);
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 4.4vw, 3.9rem); }
h2{ font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3{ font-size: 1.28rem; }
h4{ font-size: 1.05rem; }

p{ margin: 0; color: var(--text-muted); }

a{ color: inherit; text-decoration: none; }

img, svg{ max-width: 100%; display:block; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px){
  .container{ padding: 0 20px; }
}

section{ position: relative; }

.section-pad{ padding: 108px 0; }
@media (max-width: 900px){ .section-pad{ padding: 76px 0; } }

.section-head{
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px 2px rgba(var(--accent-rgb),0.7);
}

.section-head h2{ margin-bottom: 16px; }
.section-head p{ font-size: 1.06rem; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent);
  color: var(--button-primary-text);
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0.5);
}
.btn-primary:hover{
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px rgba(var(--accent-rgb),0.55);
}
.btn-ghost{
  background: var(--button-ghost-bg);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover{
  border-color: var(--accent);
  color: var(--accent);
}
.btn-sm{ padding: 10px 18px; font-size: 0.86rem; }

/* ---------- nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}
.nav.scrolled{
  background: var(--nav-bg-solid);
  border-bottom-color: var(--border-strong);
}

.nav-inner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-img{
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand .logo-img{ height: 24px; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  white-space: nowrap;
  color: var(--text-muted);
  transition: color .16s ease, background .16s ease;
}
.nav-links a:hover{ color: var(--text); background: var(--hover-bg); }
.nav-links a.active{ color: var(--accent); background: rgba(var(--accent-rgb),0.10); }

.nav-cta{ display:flex; align-items:center; gap:14px; }

.theme-toggle{
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--button-ghost-bg);
  color: var(--text);
  cursor: pointer;
  transition: color .16s ease, background .16s ease, border-color .16s ease, transform .16s ease;
}
.theme-toggle:hover{
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb),0.08);
}
.theme-toggle:active{ transform: scale(.96); }
.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
a:focus-visible,
.persona-filter button:focus-visible{
  outline: 3px solid rgba(var(--accent-rgb),0.35);
  outline-offset: 3px;
}
.theme-toggle svg{ width: 17px; height: 17px; }
.theme-icon-moon{ display: none; }
html[data-theme="light"] .theme-icon-sun{ display: none; }
html[data-theme="light"] .theme-icon-moon{ display: block; }
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 480px){
  .logo-img{ height: 28px; }
  .theme-toggle{ width: 34px; height: 34px; flex-basis: 34px; }

  .nav-inner{ gap: 10px; }
  .nav-cta{ gap: 8px; }
  .nav-cta .btn-sm{ padding: 9px 14px; font-size: 0.8rem; }
}

@media (max-width: 390px){
  .nav-cta .btn-primary{ display: none; }
  .nav-inner{ gap: 6px; }
}

@media (max-width: 960px){
  .nav-links{
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 10px 20px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links.open{ opacity:1; transform: translateY(0); pointer-events: auto; }
  .nav-links a{ padding: 13px 10px; border-radius: 8px; }
  .nav-toggle{ display: inline-flex; }
  .nav-cta .btn-ghost{ display: none; }
}

/* ---------- hero network graph ---------- */
.network-graph-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-inline: auto;
}
.network-graph{
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}
.network-graph-legend{
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.network-graph-legend span{ display: inline-flex; align-items: center; gap: 7px; }
.graph-legend-dot{
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), .65);
}
.graph-legend-dot.topology{ background: var(--text-dim); box-shadow: none; }
.network-graph-grid circle,
.network-graph-grid line{
  stroke: var(--grid-line);
  stroke-width: 1;
}
.network-graph-links path{
  fill: none;
  stroke: var(--border-strong);
  stroke-width: 1.1;
  stroke-dasharray: 2 7;
  opacity: .72;
}
.network-path-active,
.network-path-blocked{
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.network-path-active{
  stroke: url(#networkActivePath);
  stroke-width: 2.6;
  stroke-dasharray: 8 10;
  animation: network-flow 2.8s linear infinite;
  filter: url(#networkGlow);
}
.network-path-blocked{
  stroke: var(--danger);
  stroke-width: 1.8;
  stroke-dasharray: 4 8;
  stroke-opacity: .8;
}
.network-path-pulse{
  transform-box: fill-box;
  transform-origin: center;
  fill: var(--accent);
  filter: url(#networkGlow);
  animation: network-pulse 2.4s ease-in-out infinite;
}
.network-path-pulse.blocked-pulse{ fill: var(--danger); animation-delay: .7s; }
.network-device-halo{ fill: var(--accent); opacity: .12; }
.network-router .network-device-node{
  fill: var(--surface);
  stroke: var(--accent);
  stroke-width: 1.7;
}
.network-switch .network-device-halo{ fill: var(--accent-blue); }
.network-switch .network-device-node{
  fill: var(--surface-2);
  stroke: var(--accent-blue);
  stroke-width: 1.7;
}
.network-device-icon{
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.network-switch .network-device-icon{ stroke: var(--accent-blue); }
.switch-port{ fill: var(--success); }
.network-device-name{
  fill: var(--text);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .02em;
}
.network-device-type{
  fill: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
}
.network-firewall-halo{ fill: var(--accent); opacity: .14; }
.network-firewall-box{
  fill: var(--surface);
  stroke: var(--accent);
  stroke-width: 1.7;
}
.network-firewall-icon{
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
}
.network-firewall-label{
  fill: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
}
.network-firewall-id{
  fill: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 8px;
}
.network-callout rect{
  fill: var(--surface);
  stroke: var(--border-strong);
  stroke-width: 1;
}
.network-callout circle{ fill: var(--success); }
.network-callout text{
  fill: var(--success);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .05em;
}

@keyframes network-flow{ to{ stroke-dashoffset: -36; } }
@keyframes network-pulse{
  0%, 100%{ opacity: .55; transform: scale(.82); }
  50%{ opacity: 1; transform: scale(1.18); }
}

@media (max-width: 560px){
  .network-graph-legend{ gap: 9px; font-size: .55rem; }
}

@media (prefers-reduced-motion: reduce){
  .network-path-active{ animation: none; stroke-dasharray: none; }
  .network-path-pulse{ animation: none; }
  html{ scroll-behavior: auto; }
}

/* ---------- hero ---------- */
.hero{
  padding: calc(var(--nav-h) + 92px) 0 96px;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
  .hero-copy{
    grid-column: 1;
    grid-row: 1;
  }
  .hero-grid > .network-graph-wrap{
    grid-column: 1;
    grid-row: 2;
    max-width: 380px;
    margin: 0 auto;
  }
  .hero-grid > .chip-row{
    grid-column: 1;
    grid-row: 3;
    margin-top: 4px;
  }
}
@media (max-width: 560px){
  .hero{
    padding-top: calc(var(--nav-h) + 52px);
    padding-bottom: 72px;
  }
  .hero .lead{
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  .hero-cta{ gap: 10px; margin-bottom: 0; }
  .chip-row{ gap: 7px; }
  .chip{
    font-size: .68rem;
    padding: 6px 10px;
  }
  .network-graph-wrap{ max-width: 320px; }
}
.hero h1{ margin-bottom: 22px; }
.hero .lead{
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-cta{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.chip-row{ display: flex; flex-wrap: wrap; gap: 10px; }
.chip{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--button-ghost-bg);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---------- cards ---------- */
.grid{ display: grid; gap: 22px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: linear-gradient(180deg, var(--surface), var(--card-gradient-end));
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.card:hover{
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.card .icon{
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--accent-rgb),0.10);
  color: var(--accent);
  margin-bottom: 18px;
}
.card .icon svg{ width: 22px; height: 22px; }
.card h3{ margin-bottom: 10px; }
.card p{ font-size: 0.95rem; }

.card.danger .icon{ background: rgba(255,93,115,0.12); color: var(--danger); }
.card.warn .icon{ background: rgba(244,183,64,0.12); color: var(--warning); }

/* partner benefits icons */
.partner-benefits .card .icon{
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 22px;
}
.partner-benefits .card .icon svg{
  width: 38px;
  height: 38px;
}
@media (max-width: 650px){
  .partner-benefits .card .icon{
    width: 60px;
    height: 60px;
  }
  .partner-benefits .card .icon svg{
    width: 32px;
    height: 32px;
  }
}

/* platform foundation icons */
.platform-foundation .card .icon{
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 22px;
}
.platform-foundation .card .icon svg{
  width: 38px;
  height: 38px;
}
@media (max-width: 650px){
  .platform-foundation .card .icon{
    width: 60px;
    height: 60px;
  }
  .platform-foundation .card .icon svg{
    width: 32px;
    height: 32px;
  }
}

/* problem section icons */
.problem-section .card .icon{
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 22px;
}
.problem-section .card .icon svg{
  width: 38px;
  height: 38px;
}
@media (max-width: 650px){
  .problem-section .card .icon{
    width: 60px;
    height: 60px;
  }
  .problem-section .card .icon svg{
    width: 32px;
    height: 32px;
  }
}

/* numbered pillar card */
.pillar{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  background: var(--surface);
  position: relative;
}
.pillar .num{
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 20px;
}
.pillar h3{ margin-bottom: 10px; }
.pillar p{ font-size: 0.95rem; }

/* stat card */
.stat{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px 26px;
  background: var(--surface);
}
.stat .num{
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stat p{ font-size: 0.9rem; color: var(--text-muted); }

/* before / after table */
.compare{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--surface);
}
.compare-head{
  display: grid; grid-template-columns: 1fr 1fr;
}
.compare-head div{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
}
.compare-head .before{ color: var(--text-dim); border-right: 1px solid var(--border); }
.compare-head .after{ color: var(--accent); }
.compare-row{
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.compare-row .before, .compare-row .after{
  padding: 18px 24px;
  font-size: 0.94rem;
}
.compare-row .before{ color: var(--text-dim); border-right: 1px solid var(--border); }
.compare-row .after{ color: var(--text); }

/* pill tag list */
.tag-list{ display:flex; flex-wrap: wrap; gap: 10px; }
.tag{
  font-size: 0.85rem;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tag.ok{ color: var(--success); border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.06); }

/* vendor chip grid (used on platform page) */
.vendor-grid{
  display: flex; flex-wrap: wrap; gap: 10px;
}
.vendor-chip{
  font-family: var(--font-mono);
  font-size: 0.86rem;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--surface);
  color: var(--text);
}

/* module / capability section (alternating) */
.module{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.module:first-of-type{ border-top: none; }
.module.rev .module-visual{ order: 2; }
.module.rev .module-text{ order: 1; }
@media (max-width: 940px){
  .module{ grid-template-columns: 1fr; gap: 32px; padding: 52px 0; }
  .module.rev .module-visual{ order: 1; }
  .module.rev .module-text{ order: 2; }
}
.module-text .num{
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  display:block;
  margin-bottom: 16px;
}
.module-text .module-tag{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.module-text h3{ font-size: 1.7rem; margin-bottom: 14px; }
.module-text > p.lead{ font-size: 1rem; margin-bottom: 24px; }
.feat-list{ list-style: none; margin:0; padding:0; display:grid; gap: 14px; }
.feat-list li{
  display:flex; gap: 12px; align-items:flex-start;
  font-size: 0.93rem; color: var(--text-muted);
}
.feat-list li b{ color: var(--text); font-weight: 600; }
.feat-list svg{ flex:none; width:17px; height:17px; margin-top: 3px; color: var(--accent); }

.module-visual{
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  background: linear-gradient(155deg, var(--surface), var(--bg-soft));
  padding: 26px;
  min-height: 300px;
  display:flex; align-items:center; justify-content:center;
  position: relative;
  overflow: hidden;
}
.module-visual::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
}

/* config diff mock */
.diff-box{
  position:relative; z-index:1;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.83rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  overflow: hidden;
}
.diff-box .diff-title{
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}
.diff-box .line{ padding: 7px 16px; white-space: pre; }
.diff-box .line.add{ background: rgba(52,211,153,0.09); color: #7de8bf; }
.diff-box .line.rem{ background: rgba(255,93,115,0.09); color: #ff97a6; text-decoration: line-through; text-decoration-color: rgba(255,93,115,0.5); }
.diff-box .line.ctx{ color: var(--text-dim); }
html[data-theme="light"] .diff-box .line.add{ color: #087d59; }
html[data-theme="light"] .diff-box .line.rem{ color: #b52f4c; }

/* matrix mock (access compliance) */
.matrix{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  width: 100%;
}
.matrix .cell{
  aspect-ratio: 1;
  border-radius: 4px;
}
.matrix .cell.ok{ background: rgba(52,211,153,0.55); }
.matrix .cell.warn{ background: rgba(244,183,64,0.55); }
.matrix .cell.bad{ background: rgba(255,93,115,0.55); }
.matrix .cell.dim{ background: rgba(150,184,209,0.1); }

/* map mock (topology) */
.map-mock{ position:relative; z-index:1; width:100%; height: 100%; }

/* pipeline (change management steps) */
.pipeline{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  counter-reset: step;
}
@media (max-width: 900px){ .pipeline{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pipeline{ grid-template-columns: 1fr; } }
.pipeline .step{
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 22px 18px;
  background: var(--surface);
}
.pipeline .step .n{
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.78rem;
  display:block;
  margin-bottom: 12px;
}
.pipeline .step h4{ margin-bottom: 8px; font-size: 0.98rem; }
.pipeline .step p{ font-size: 0.85rem; }

/* scenario cards */
.persona-filter{
  display:flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.persona-filter button{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .16s ease;
}
.persona-filter button:hover{ border-color: var(--border-strong); color: var(--text); }
.persona-filter button.active{
  background: rgba(var(--accent-rgb),0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.scenario-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scenario-card .persona-tag{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.scenario-card h3{ font-size: 1.18rem; }
.scenario-card .situation{ font-size: 0.92rem; }
.scenario-card .divider{ height:1px; background: var(--border); margin: 2px 0; }
.scenario-card .how{ font-size: 0.92rem; }
.scenario-card .how b{ color: var(--text); }
.scenario-card .outcome{
  margin-top: auto;
  display:flex; align-items:center; gap: 10px;
  font-size: 0.85rem;
  color: var(--success);
  font-family: var(--font-mono);
}

/* company / about */
.principle-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 28px;
  background: var(--surface);
}
.legal-box{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: 30px 32px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.9;
}
.legal-box b{ color: var(--text); font-family: var(--font-body); }

/* partners */
.partner-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: 26px;
  display:flex; flex-direction:column; gap:14px;
  transition: border-color .18s ease, transform .18s ease;
}
.partner-card:hover{ border-color: var(--border-strong); transform: translateY(-2px); }
.partner-card .logo-slot{
  width: 100%; height: 64px;
  border-radius: var(--radius-s);
  background: #fff;
  display:flex; align-items:center; justify-content:center;
  padding: 12px 18px;
}
.partner-card .logo-slot.on-dark{
  background: #0d1826;
  border: 1px solid var(--border);
}
.partner-card .logo-slot img{
  max-height: 40px; max-width: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.partner-card .logo-slot .wordmark{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #0b1420;
  text-align: center;
  line-height: 1.25;
}
.partner-card .tags{ display:flex; flex-wrap:wrap; gap:6px; }
.partner-card .tags span{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 999px;
}

/* placeholder variant (used when no real logo/content yet) */
.partner-card.placeholder{ border-style: dashed; border-color: var(--border-strong); }
.partner-card.placeholder .logo-slot{
  background: transparent;
  border: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* cta band */
.cta-band{
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 64px 56px;
  background: radial-gradient(900px 300px at 100% 0%, rgba(var(--accent-rgb),0.12), transparent 60%), var(--surface);
  display:flex; align-items:center; justify-content:space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2{ font-size: 1.9rem; margin-bottom: 10px; }
.cta-band p{ font-size: 1rem; max-width: 460px; }
.cta-band-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

/* footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 64px 0 34px;
  margin-top: 60px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 820px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-top{ grid-template-columns: 1fr; }
}
.footer-brand p{ font-size: 0.9rem; margin: 16px 0 20px; max-width: 280px; }
.footer-col h4{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap: 12px; }
.footer-col a{ color: var(--text-muted); font-size: 0.92rem; transition: color .15s ease; }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-dim);
  flex-wrap: wrap; gap: 12px;
}
.social-row{ display:flex; gap:12px; }
.social-row a{
  width: 36px; height:36px; border-radius:50%;
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-muted);
  transition: all .15s ease;
}
.social-row a:hover{ color: var(--accent); border-color: var(--accent); }

/* page hero (inner pages, smaller) */
.page-hero{
  padding: calc(var(--nav-h) + 74px) 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow{ margin-bottom: 20px; }
.page-hero p.lead{ font-size: 1.08rem; max-width: 640px; margin-top: 18px; }

/* reveal on scroll */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}


/* ---------- news section ---------- */
.news-hero h1{ max-width: 820px; }
.news-hero .lead{ max-width: 720px; }
.news-section{
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.news-filters{ display:flex; gap:8px; flex-wrap:wrap; }
.news-filter{
  border:1px solid var(--border);
  border-radius:999px;
  background:transparent;
  color:var(--text-muted);
  font-family:var(--font-mono);
  font-size:.76rem;
  letter-spacing:.03em;
  padding:9px 15px;
  cursor:pointer;
  transition:color .16s ease, border-color .16s ease, background .16s ease;
}
.news-filter:hover{ color:var(--text); border-color:var(--border-strong); }
.news-filter.active{ color:var(--accent); border-color:var(--accent); background:rgba(var(--accent-rgb),.11); }
.news-search{
  position:relative;
  display:flex;
  align-items:center;
  width:min(100%, 270px);
  color:var(--text-dim);
}
.news-search svg{ position:absolute; left:14px; width:18px; height:18px; pointer-events:none; }
.news-search input{
  width:100%;
  min-height:40px;
  padding:9px 14px 9px 42px;
  border:1px solid var(--border);
  border-radius:999px;
  outline:none;
  background:var(--surface);
  color:var(--text);
  font:inherit;
  font-size:.88rem;
  transition:border-color .16s ease, box-shadow .16s ease;
}
.news-search input::placeholder{ color:var(--text-dim); }
.news-search input:focus{ border-color:var(--accent); box-shadow:0 0 0 3px rgba(var(--accent-rgb),.12); }
.news-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:38px; }
.news-card{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius-m);
  background:linear-gradient(180deg,var(--surface),var(--card-gradient-end));
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.news-card:hover{ transform:translateY(-3px); border-color:var(--border-strong); }
.news-card[hidden], .news-empty[hidden]{ display:none !important; }
.news-card.featured{ grid-column:1 / -1; display:grid; grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr); }
.news-card-visual{
  position:relative;
  aspect-ratio: 16 / 9;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:16px;
  color:var(--accent);
  background:linear-gradient(135deg,rgba(2,189,251,.14),var(--surface-2));
}
.news-card.featured .news-card-visual{ aspect-ratio: 4 / 3; }
.news-card-visual::after{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 70% 35%,rgba(var(--accent-rgb),.18),transparent 42%); pointer-events:none; }
.news-card-visual-grid{
  position:absolute;
  inset:0;
  opacity:.34;
  background-image:linear-gradient(var(--grid-line) 1px,transparent 1px),linear-gradient(90deg,var(--grid-line) 1px,transparent 1px);
  background-size:26px 26px;
}
.news-card-visual-label{
  position:relative;
  z-index:2;
  display:inline-flex;
  font-family:var(--font-mono);
  font-size:.68rem;
  letter-spacing:.12em;
  color:var(--text-muted);
}
.news-card-visual svg{ position:absolute; z-index:1; top:26px; right:26px; width:58px; height:58px; color:var(--accent); }
.news-card-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  z-index:0;
}
.news-card-visual.has-photo{ background:#04070d; }
.news-card-visual.has-photo::after{
  background:linear-gradient(180deg,rgba(4,10,18,0) 60%,rgba(4,10,18,.85) 100%);
}
.news-card-visual.has-photo .news-card-visual-grid,
.news-card-visual.has-photo svg{
  display:none;
}
.news-card-visual.has-photo .news-card-visual-label{
  color:#fff;
  background:rgba(4,10,18,.55);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  padding:6px 11px;
  border-radius:7px;
}
.news-card-body{ padding:26px 28px 28px; }
.news-card-meta{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; color:var(--accent); font-family:var(--font-mono); font-size:.68rem; letter-spacing:.05em; text-transform:uppercase; }
.news-card-meta time{ color:var(--text-dim); white-space:nowrap; }
.news-card h2{ font-size:1.28rem; line-height:1.18; margin:0 0 12px; }
.news-card.featured h2{ font-size:1.7rem; max-width:740px; }
.news-card p{ margin:0; color:var(--text-muted); font-size:.94rem; }
.news-card-link{ display:inline-flex; align-items:center; gap:8px; margin-top:22px; color:var(--accent); font-size:.86rem; font-weight:600; }
.news-card-link svg{ width:17px; height:17px; transition:transform .16s ease; }
.news-card-link:hover svg{ transform:translateX(3px); }
.news-empty{ padding:64px 20px; text-align:center; border:1px dashed var(--border-strong); border-radius:var(--radius-m); margin-top:38px; }
.news-empty h3{ margin-bottom:8px; }
.news-empty p{ margin:0; color:var(--text-muted); }
.news-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:44px;
}
.news-pagination[hidden]{ display:none !important; }
.news-pagination button{
  min-width:38px;
  height:38px;
  padding:0 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:transparent;
  color:var(--text-muted);
  font-family:var(--font-mono);
  font-size:.82rem;
  cursor:pointer;
  transition:color .16s ease, border-color .16s ease, background .16s ease;
}
.news-pagination button:hover:not(:disabled){ color:var(--text); border-color:var(--border-strong); }
.news-pagination button.active{ color:var(--accent); border-color:var(--accent); background:rgba(var(--accent-rgb),.11); }
.news-pagination button:disabled{ opacity:.35; cursor:not-allowed; }
.news-pagination .news-pagination-ellipsis{
  color:var(--text-dim);
  font-family:var(--font-mono);
  font-size:.82rem;
  padding:0 4px;
}
.news-cta-section{ background:var(--bg); }

/* ---------- news article ---------- */
.article-hero{ padding:calc(var(--nav-h) + 70px) 0 70px; border-bottom:1px solid var(--border); }
.article-container{ max-width:900px; }
.article-back{ display:inline-flex; color:var(--text-muted); font-family:var(--font-mono); font-size:.78rem; margin-bottom:34px; }
.article-back:hover{ color:var(--accent); }
.article-meta{ display:flex; gap:14px; align-items:center; margin-bottom:18px; color:var(--accent); font-family:var(--font-mono); font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; }
.article-meta time{ color:var(--text-dim); }
.article-hero h1{ max-width:880px; font-size:clamp(2.15rem,5vw,4rem); line-height:1.04; margin-bottom:22px; }
.article-lead{ max-width:760px; margin:0; color:var(--text-muted); font-size:1.12rem; }
.article-section{ background:var(--bg-soft); border-top:1px solid var(--border); }
.article-layout{ display:grid; grid-template-columns:minmax(0,1fr) 270px; gap:60px; align-items:start; }
.article-content{ min-width:0; max-width:780px; font-size:1.03rem; color:var(--text-muted); }
.article-content h2{ color:var(--text); font-size:1.7rem; line-height:1.18; margin:34px 0 14px; }
.article-content h2:first-child{ margin-top:0; }
.article-content h3{ color:var(--text); font-size:1.18rem; margin:26px 0 10px; }
.article-content p{ margin:0 0 18px; }
.article-content ul{ margin:0 0 22px; padding-left:22px; }
.article-content li{ margin:8px 0; }
.article-content strong{ color:var(--text); }
.article-content blockquote{ margin:28px 0; padding:20px 22px; border-left:3px solid var(--accent); background:var(--surface); color:var(--text); border-radius:0 var(--radius-s) var(--radius-s) 0; }
.article-inline-link{ color:var(--accent); font-weight:600; }
.article-source{ display:grid; gap:8px; margin-top:44px; padding-top:18px; border-top:1px solid var(--border); font-family:var(--font-mono); font-size:.76rem; }
.article-source span{ color:var(--text-dim); text-transform:uppercase; letter-spacing:.08em; }
.article-source a{ color:var(--accent); overflow-wrap:anywhere; }
.article-aside{ position:sticky; top:calc(var(--nav-h) + 24px); }
.article-aside-card{ padding:22px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--surface); }
.article-aside-card h3{ margin:12px 0 8px; font-size:1.15rem; }
.article-aside-card p{ color:var(--text-muted); font-size:.9rem; margin-bottom:18px; }
.article-fact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:28px 0; }
.article-fact-grid > div{ padding:16px; border:1px solid var(--border); border-radius:var(--radius-s); background:var(--surface); }
.article-fact-grid strong{ display:block; color:var(--accent); font-family:var(--font-display); font-size:1.7rem; }
.article-fact-grid span{ display:block; color:var(--text-dim); font-size:.76rem; line-height:1.35; }

@media (max-width: 820px){
  .news-card.featured{ grid-template-columns:1fr; }
  .news-card.featured .news-card-visual{ aspect-ratio: 16 / 9; }
  .article-layout{ grid-template-columns:1fr; gap:34px; }
  .article-aside{ position:static; max-width:420px; }
}
@media (max-width: 620px){
  .news-toolbar{ align-items:stretch; }
  .news-search{ width:100%; }
  .news-grid{ grid-template-columns:1fr; }
  .news-card.featured{ grid-column:auto; }
  .news-card-body{ padding:22px; }
  .news-card h2, .news-card.featured h2{ font-size:1.2rem; }
  .news-card-meta{ align-items:flex-start; flex-direction:column; gap:5px; }
  .article-hero{ padding-top:calc(var(--nav-h) + 52px); padding-bottom:52px; }
  .article-hero h1{ font-size:2.15rem; }
  .article-content{ font-size:.97rem; }
  .article-fact-grid{ grid-template-columns:1fr; }
}


/* ---------- license agreement ---------- */
.legal-hero h1{ max-width:900px; }
.legal-container{ max-width:920px; }
.license-content{ max-width:900px; font-size:.96rem; }
.license-content h2{ margin-top:44px; padding-top:10px; border-top:1px solid var(--border); font-size:1.55rem; }
.license-content h3{ font-size:1.08rem; margin-top:28px; }
.license-content p{ text-align:left; }
.license-content .license-item{ padding-left:18px; }
.license-notice{
  margin:0 0 30px;
  padding:20px 22px;
  border:1px solid rgba(var(--accent-rgb),.34);
  border-left:3px solid var(--accent);
  border-radius:0 var(--radius-s) var(--radius-s) 0;
  background:rgba(var(--accent-rgb),.08);
  color:var(--text);
  font-weight:600;
}
.license-content a{ color:var(--accent); overflow-wrap:anywhere; }
.license-copyright{ margin-top:42px; padding-top:20px; border-top:1px solid var(--border); color:var(--text-dim); font-family:var(--font-mono); font-size:.8rem; }
@media (max-width:620px){
  .license-content{ font-size:.92rem; }
  .license-content h2{ font-size:1.35rem; }
  .license-notice{ padding:16px; }
}


/* ---------- licensing page ---------- */
.licensing-container{ max-width:1080px; }
.licensing-content{ max-width:none; }
.licensing-summary-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-bottom:46px; }
.licensing-summary-card{ padding:22px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--surface); }
.licensing-summary-card h3{ margin:12px 0 8px; font-size:1.16rem; }
.licensing-summary-card p{ margin:0; color:var(--text-muted); font-size:.9rem; }
.licensing-content h2{ margin-top:46px; }
.licensing-factor-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin:24px 0 10px; }
.licensing-factor-card{ padding:22px; border:1px solid var(--border); border-radius:var(--radius-m); background:linear-gradient(145deg,var(--surface),var(--card-gradient-end)); }
.licensing-factor-card svg{ width:34px; height:34px; color:var(--accent); margin-bottom:18px; }
.licensing-factor-card h3{ margin:0 0 8px; font-size:1.08rem; }
.licensing-factor-card p{ margin:0; color:var(--text-muted); font-size:.9rem; }
.licensing-modules{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin:24px 0; }
.licensing-module{ padding:22px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--surface); }
.licensing-module-code{ display:block; color:var(--accent); font-family:var(--font-mono); font-size:.68rem; letter-spacing:.1em; margin-bottom:12px; }
.licensing-module h3{ margin:0 0 8px; font-size:1.12rem; }
.licensing-module p{ margin:0; color:var(--text-muted); font-size:.9rem; }
.licensing-price-card{ display:flex; align-items:center; justify-content:space-between; gap:30px; margin:34px 0 18px; padding:28px; border:1px solid rgba(var(--accent-rgb),.38); border-radius:var(--radius-m); background:linear-gradient(135deg,rgba(var(--accent-rgb),.1),var(--surface)); }
.licensing-price{ margin-top:9px; color:var(--accent); font-family:var(--font-display); font-size:clamp(2rem,4vw,3.2rem); font-weight:700; line-height:1; }
.licensing-price span{ font-family:var(--font-body); font-size:1rem; font-weight:500; }
.licensing-price-note{ max-width:330px; }
.licensing-price-note strong{ color:var(--text); }
.licensing-price-note p{ margin:5px 0 0; color:var(--text-muted); font-size:.84rem; }
.licensing-contact{ display:flex; align-items:center; justify-content:space-between; gap:28px; margin-top:32px; padding:24px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--surface); }
.licensing-contact h3{ margin:9px 0 5px; font-size:1.18rem; }
.licensing-contact p{ margin:0; color:var(--text-muted); font-size:.9rem; }
.licensing-contact .btn{ flex:none; }
@media (max-width:800px){
  .licensing-summary-grid, .licensing-factor-grid{ grid-template-columns:1fr; }
  .licensing-price-card, .licensing-contact{ align-items:flex-start; flex-direction:column; }
}
@media (max-width:620px){
  .licensing-modules{ grid-template-columns:1fr; }
  .licensing-summary-card, .licensing-factor-card, .licensing-module, .licensing-price-card, .licensing-contact{ padding:18px; }
  .licensing-price{ font-size:2.35rem; }
}


/* technical support */
.support-page-hero{ padding-bottom:72px; }
.support-page-hero h1{ max-width:820px; }
.support-hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.support-hero-actions .btn span, .cta-band-actions .btn span{ margin-left:5px; }
.support-access-note{ display:flex; align-items:center; gap:9px; margin:20px 0 0; color:var(--text-dim); font-size:.86rem; }
.support-status-dot{ width:8px; height:8px; flex:0 0 auto; border-radius:50%; background:var(--success); box-shadow:0 0 0 5px rgba(52,211,153,.1); }
.support-entry-section{ background:var(--bg-soft); border-bottom:1px solid var(--border); }
.support-entry-grid{ margin-top:36px; }
.support-entry-card{ display:block; color:inherit; text-decoration:none; }
a.support-entry-card:hover{ color:inherit; }
.support-entry-card .icon{ width:60px; height:60px; border-radius:16px; margin-bottom:20px; }
.support-entry-card .icon svg{ width:32px; height:32px; }
.support-entry-label{ display:block; margin-bottom:11px; color:var(--accent); font-family:var(--font-mono); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; }
.support-entry-card h3{ margin-bottom:9px; }
.support-entry-card p{ margin-bottom:0; }
.support-lifecycle-section{ border-bottom:1px solid var(--border); }
.support-table-wrap{ overflow-x:auto; margin-top:38px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--surface); }
.support-table{ width:100%; min-width:720px; border-collapse:collapse; text-align:left; }
.support-table th, .support-table td{ padding:18px 20px; border-bottom:1px solid var(--border); vertical-align:middle; }
.support-table thead th{ color:var(--text-dim); font-family:var(--font-mono); font-size:.68rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase; background:var(--surface-2); }
.support-table tbody tr:last-child th, .support-table tbody tr:last-child td{ border-bottom:0; }
.support-table tbody th{ min-width:170px; color:var(--text); font-family:var(--font-display); font-size:1rem; font-weight:600; }
.support-table tbody td{ color:var(--text-muted); font-size:.9rem; }
.support-status{ display:inline-flex; align-items:center; gap:7px; white-space:nowrap; font-size:.78rem; font-weight:600; }
.support-status::before{ content:""; width:7px; height:7px; border-radius:50%; background:currentColor; }
.support-status-active{ color:var(--success); }
.support-status-planned{ color:var(--warning); }
.support-status-ended{ color:var(--danger); }
.support-table-note{ margin:16px 0 0; color:var(--text-dim); font-size:.84rem; }
.support-table-note a{ color:var(--accent); }
.support-scope-section{ background:var(--bg-soft); border-bottom:1px solid var(--border); }
.support-scope-grid{ margin-top:38px; }
.support-scope-card{ padding:30px; border:1px solid var(--border); border-radius:var(--radius-m); background:var(--surface); }
.support-scope-in{ border-color:rgba(52,211,153,.28); }
.support-scope-out{ border-color:rgba(255,93,115,.28); }
.support-scope-heading{ display:flex; align-items:center; gap:13px; margin-bottom:22px; }
.support-scope-heading h3{ margin:0; }
.support-scope-icon{ display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:9px; font-size:1.15rem; font-weight:600; }
.support-scope-in .support-scope-icon{ color:var(--success); background:rgba(52,211,153,.12); }
.support-scope-out .support-scope-icon{ color:var(--danger); background:rgba(255,93,115,.12); }
.support-list{ display:grid; gap:14px; margin:0; padding:0; list-style:none; }
.support-list li{ position:relative; padding-left:22px; color:var(--text-muted); font-size:.94rem; }
.support-list li::before{ content:""; position:absolute; top:.7em; left:0; width:6px; height:6px; border-radius:50%; background:var(--accent); }
.support-scope-note{ margin:22px 0 0; padding-top:18px; border-top:1px solid var(--border); color:var(--text-dim); font-size:.86rem; }
.support-contact-section{ background:var(--bg); }
@media (max-width:800px){
  .support-table-wrap{ margin-top:28px; }
  .support-scope-grid{ grid-template-columns:1fr; }
}
@media (max-width:620px){
  .support-page-hero{ padding-bottom:54px; }
  .support-hero-actions{ align-items:stretch; flex-direction:column; }
  .support-hero-actions .btn{ justify-content:center; }
  .support-access-note{ align-items:flex-start; }
  .support-entry-card .icon{ width:56px; height:56px; }
  .support-entry-card .icon svg{ width:30px; height:30px; }
  .support-scope-card{ padding:22px; }
  .support-scope-heading{ align-items:flex-start; }
  .support-scope-heading h3{ font-size:1.15rem; }
}


/* licensing factor icons: explicit sizing for mobile Safari */
.licensing-factor-card > svg.licensing-factor-icon{
  display:block;
  flex:0 0 34px;
  width:34px !important;
  height:34px !important;
  max-width:34px !important;
  max-height:34px !important;
  margin-bottom:18px;
}
@media (max-width:620px){
  .licensing-factor-card > svg.licensing-factor-icon{
    width:34px !important;
    height:34px !important;
    max-width:34px !important;
    max-height:34px !important;
  }
}


/* company mark in footer */
.footer-brand .footer-company-logo{
  width:60px;
  height:60px;
  object-fit:contain;
}
@media (max-width:480px){
  .footer-brand .footer-company-logo{
    width:52px;
    height:52px;
  }
}


/* local news article covers */
.article-cover{
  margin:30px 0 0;
  border:1px solid var(--border);
  border-radius:var(--radius-m);
  overflow:hidden;
  background:var(--surface);
}
.article-cover img{
  display:block;
  width:100%;
  height:auto;
  max-height:520px;
  object-fit:cover;
}

/* about principles icons — same visual language as platform and home cards */
.principle-card .icon{
  width:72px;
  height:72px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(var(--accent-rgb),0.10);
  color:var(--accent);
  margin-bottom:22px;
}
.principle-card .icon svg{
  width:38px;
  height:38px;
}
@media (max-width:650px){
  .principle-card .icon{
    width:60px;
    height:60px;
    border-radius:16px;
  }
  .principle-card .icon svg{
    width:32px;
    height:32px;
  }
}


/* ---------- unified card and icon interactions ---------- */
:is(.card, .principle-card, .partner-card, .scenario-card, .news-card, .article-aside-card, .licensing-summary-card, .licensing-factor-card, .licensing-module, .licensing-price-card, .licensing-contact, .support-scope-card){
  transition:
    transform .22s cubic-bezier(.22,.61,.36,1),
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine){
  :is(.card, .principle-card, .partner-card, .scenario-card, .news-card, .article-aside-card, .licensing-summary-card, .licensing-factor-card, .licensing-module, .licensing-price-card, .licensing-contact, .support-scope-card):hover{
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), .44);
    box-shadow: 0 14px 32px rgba(0,0,0,.14);
  }

  :is(.card, .principle-card, .support-entry-card) .icon,
  .support-scope-icon,
  .licensing-factor-card > svg.licensing-factor-icon{
    transition: transform .22s cubic-bezier(.22,.61,.36,1), background .22s ease, color .22s ease, box-shadow .22s ease;
  }

  :is(.card, .principle-card, .support-entry-card):hover .icon,
  .support-scope-card:hover .support-scope-icon,
  .licensing-factor-card:hover > svg.licensing-factor-icon{
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 18px rgba(var(--accent-rgb), .18);
  }

  .news-card-photo{
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
  }

  .news-card:hover .news-card-photo{
    transform: scale(1.04);
  }

  :is(.card, .principle-card, .partner-card, .scenario-card, .news-card, .article-aside-card, .licensing-summary-card, .licensing-factor-card, .licensing-module, .licensing-price-card, .licensing-contact, .support-scope-card):focus-visible{
    outline: 2px solid var(--accent);
    outline-offset: 4px;
  }
}

@media (prefers-reduced-motion: reduce){
  :is(.card, .principle-card, .partner-card, .scenario-card, .news-card, .article-aside-card, .licensing-summary-card, .licensing-factor-card, .licensing-module, .licensing-price-card, .licensing-contact, .support-scope-card),
  :is(.card, .principle-card, .support-entry-card) .icon,
  .support-scope-icon,
  .licensing-factor-card > svg.licensing-factor-icon,
  .news-card-photo{
    transition: none !important;
    animation: none !important;
  }

  :is(.card, .principle-card, .partner-card, .scenario-card, .news-card, .article-aside-card, .licensing-summary-card, .licensing-factor-card, .licensing-module, .licensing-price-card, .licensing-contact, .support-scope-card):hover,
  :is(.card, .principle-card, .support-entry-card):hover .icon,
  .support-scope-card:hover .support-scope-icon,
  .licensing-factor-card:hover > svg.licensing-factor-icon,
  .news-card:hover .news-card-photo{
    transform: none !important;
    box-shadow: none !important;
  }
}


/* ---------- press kit ---------- */
.press-kit-hero h1{ max-width:920px; }
.press-kit-hero .lead{ max-width:760px; }
.press-kit-hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.press-kit-logo-section{ background:var(--bg); }
.press-kit-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:38px; }
.press-kit-card{ display:flex; flex-direction:column; gap:22px; }
.press-kit-card-heading{ display:flex; align-items:flex-start; justify-content:space-between; gap:18px; }
.press-kit-card-heading h2{ margin:5px 0 0; font-size:1.45rem; }
.press-kit-label{ color:var(--accent); font-family:var(--font-mono); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; }
.press-kit-format{ color:var(--text-dim); font-family:var(--font-mono); font-size:.68rem; white-space:nowrap; }
.press-kit-preview-grid{ display:grid; gap:12px; }
.press-kit-preview-grid-product{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.press-kit-preview-grid-company{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.press-kit-preview{ position:relative; min-height:174px; overflow:hidden; display:flex; align-items:center; justify-content:center; padding:28px 18px 18px; border-radius:var(--radius-s); }
.press-kit-preview-light{ background:#f7fbfd; border:1px solid rgba(18,58,84,.14); }
.press-kit-preview-dark{ background:#07121d; border:1px solid rgba(140,190,220,.2); }
.press-kit-preview-label{ position:absolute; top:11px; left:14px; color:var(--text-dim); font-family:var(--font-mono); font-size:.62rem; letter-spacing:.07em; text-transform:uppercase; }
.press-kit-preview-dark .press-kit-preview-label{ color:#91b4c8; }
.press-kit-preview img{ display:block; width:100%; max-width:100%; max-height:108px; object-fit:contain; }
.press-kit-preview-grid-company .press-kit-preview{ min-height:190px; }
.press-kit-preview-grid-company .press-kit-preview img{ width:auto; max-width:100%; max-height:142px; }
.press-kit-downloads{ display:grid; gap:10px; padding-top:18px; border-top:1px solid var(--border); }
.press-kit-downloads-title{ color:var(--text-muted); font-size:.82rem; font-weight:600; }
.press-kit-download-row{ display:grid; grid-template-columns:48px repeat(2,minmax(0,1fr)); gap:8px; align-items:center; }
.press-kit-download-row-company{ grid-template-columns:48px repeat(3,minmax(0,1fr)); }
.press-kit-download-row > span{ color:var(--text-dim); font-family:var(--font-mono); font-size:.68rem; letter-spacing:.08em; }
.press-kit-download-row a{ display:flex; align-items:center; justify-content:center; gap:5px; min-height:32px; padding:7px 9px; border:1px solid var(--border); border-radius:var(--radius-s); color:var(--text-muted); font-size:.72rem; text-align:center; text-decoration:none; transition:border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease; }
.press-kit-download-row a:hover{ border-color:var(--accent); color:var(--accent); background:rgba(var(--accent-rgb),.07); transform:translateY(-1px); }
.press-kit-download-row a span{ color:var(--accent); font-size:.85rem; }
.press-kit-guidelines-section{ background:var(--bg-soft); border-top:1px solid var(--border); }
.press-kit-guideline-card .icon{ width:72px; height:72px; border-radius:18px; margin-bottom:4px; }
.press-kit-guideline-card .icon svg{ width:38px; height:38px; }
.press-kit-guideline-card h3{ margin-bottom:9px; }
.press-kit-guideline-card p{ margin-bottom:0; }
.press-kit-note{ margin-top:28px; padding:18px 20px; border:1px solid rgba(var(--accent-rgb),.3); border-left:3px solid var(--accent); border-radius:0 var(--radius-s) var(--radius-s) 0; background:rgba(var(--accent-rgb),.07); color:var(--text-muted); font-size:.9rem; }
.press-kit-note strong{ color:var(--text); }
.press-kit-note a{ color:var(--accent); font-weight:600; }
@media (max-width:900px){
  .press-kit-grid{ grid-template-columns:1fr; }
}
@media (max-width:700px){
  .press-kit-preview-grid-company{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .press-kit-preview-grid-company .press-kit-preview:last-child{ grid-column:1 / -1; }
}
@media (max-width:620px){
  .press-kit-hero-actions{ align-items:stretch; flex-direction:column; }
  .press-kit-hero-actions .btn{ justify-content:center; }
  .press-kit-card{ padding:22px; }
  .press-kit-card-heading{ flex-direction:column; gap:8px; }
  .press-kit-preview-grid-product, .press-kit-preview-grid-company{ grid-template-columns:1fr; }
  .press-kit-preview-grid-company .press-kit-preview:last-child{ grid-column:auto; }
  .press-kit-preview{ min-height:160px; }
  .press-kit-preview-grid-company .press-kit-preview{ min-height:180px; }
  .press-kit-download-row, .press-kit-download-row-company{ grid-template-columns:1fr 1fr; }
  .press-kit-download-row > span{ grid-column:1 / -1; }
  .press-kit-guideline-card .icon{ width:60px; height:60px; border-radius:16px; }
  .press-kit-guideline-card .icon svg{ width:32px; height:32px; }
}

/* ================= HERO PRODUCT SHOWCASE ================= */
.showcase-tabs{
  flex-wrap:nowrap;
  overflow-x:auto;
  scrollbar-width:none;
  padding-bottom:5px;
  margin-top:18px;
  margin-bottom:0;
}
.showcase-tabs::-webkit-scrollbar{display:none;}
.showcase-tab{
  flex:0 0 auto;
  border:1px solid var(--border);
  color:var(--text-muted);
  background:var(--surface);
  font:500 .78rem/1.2 var(--font-mono);
  letter-spacing:.02em;
  white-space:nowrap;
  cursor:pointer;
  transition:color .22s cubic-bezier(.23,1,.32,1), border-color .22s cubic-bezier(.23,1,.32,1), background .22s cubic-bezier(.23,1,.32,1), transform .22s cubic-bezier(.23,1,.32,1);
}
.showcase-tab:hover,
.showcase-tab.active{
  color:var(--text);
  border-color:var(--accent);
  background:rgba(var(--accent-rgb),.10);
}
.showcase-tab:active{transform:scale(.98);}
.showcase-tab:focus-visible{outline:2px solid var(--accent);outline-offset:3px;}
.hero-showcase{
  display:grid;
  grid-template-columns:minmax(230px,.68fr) minmax(0,1.32fr);
  gap:30px;
  align-items:center;
  margin-top:26px;
  padding:22px;
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(135deg,rgba(var(--accent-rgb),.07),var(--surface) 45%,rgba(var(--accent-rgb),.03));
  box-shadow:0 18px 55px rgba(0,0,0,.14);
}
.hero-showcase-copy{min-width:0;}
.hero-showcase-copy h2{margin:9px 0 12px;font-size:clamp(1.6rem,2.6vw,2.5rem);line-height:1.06;letter-spacing:-.045em;}
.hero-showcase-copy p{max-width:34rem;margin:0;color:var(--text-muted);line-height:1.7;}
.hero-showcase-points{display:flex;flex-wrap:wrap;gap:8px;margin:22px 0 26px;}
.hero-showcase-points span{padding:7px 10px;border:1px solid var(--border);border-radius:999px;color:var(--text-muted);font:500 .67rem/1.15 var(--font-mono);}
.hero-showcase-figure{min-width:0;margin:0;}
.product-shot-frame{padding:9px;border:1px solid var(--border-strong);border-radius:18px;background:#eef3f6;box-shadow:0 16px 40px rgba(0,0,0,.18);}
html[data-theme="dark"] .product-shot-frame{background:#07121f;}
.product-shot-frame img{display:block;width:100%;height:auto;max-height:520px;object-fit:contain;border-radius:10px;}
.hero-showcase-figure figcaption{display:flex;justify-content:space-between;gap:16px;margin-top:11px;color:var(--text-muted);font:500 .67rem/1.4 var(--font-mono);}
.hero-showcase-figure figcaption a{color:var(--accent);white-space:nowrap;}
@media (max-width:900px){
  .hero-showcase{grid-template-columns:1fr;gap:22px;}
  .hero-showcase-copy p{max-width:48rem;}
}
@media (max-width:640px){
  .hero-showcase{margin-top:20px;padding:14px;border-radius:20px;}
  .hero-showcase-copy h2{font-size:1.7rem;}
  .hero-showcase-figure{overflow-x:auto;padding-bottom:3px;}
  .product-shot-frame{min-width:620px;}
  .hero-showcase-figure figcaption{align-items:flex-start;flex-direction:column;gap:5px;}
}
@media (prefers-reduced-motion: reduce){
  .showcase-tab{transition:none;}
}

.showcase-tabs,
.hero-showcase{grid-column:1 / -1;}

/* ================= PLATFORM TASK: ASSET INVENTORY ================= */
.back-link{display:inline-flex;align-items:center;gap:8px;margin-bottom:28px;color:var(--text-muted);font:500 .78rem/1.2 var(--font-mono);transition:color .18s ease,transform .18s ease;}
.back-link:hover{color:var(--accent);transform:translateX(-2px);}
.asset-task-hero{padding-top:142px;padding-bottom:92px;background:radial-gradient(700px 420px at 88% 18%,rgba(var(--accent-rgb),.12),transparent 65%);}
.asset-task-hero h1{max-width:820px;letter-spacing:-.045em;}
.asset-task-hero .lead{max-width:760px;margin-top:24px;font-size:1.15rem;line-height:1.7;}
.asset-task-hero .hero-cta{margin-top:30px;}
.asset-task-intro{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.asset-task-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,.78fr);gap:72px;align-items:start;}
.asset-task-layout .section-head{margin-bottom:0;}
.asset-task-facts{display:grid;gap:12px;}
.asset-task-fact{padding:20px 22px;border:1px solid var(--border);border-radius:var(--radius-m);background:var(--surface);transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;}
.asset-task-fact:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:0 14px 34px rgba(0,0,0,.12);}
.asset-task-fact .num{display:block;margin-bottom:8px;color:var(--accent);font:500 .72rem/1 var(--font-mono);letter-spacing:.12em;}
.asset-task-fact strong{display:block;margin-bottom:4px;font-family:var(--font-display);font-size:1.08rem;}
.asset-task-fact p{font-size:.9rem;line-height:1.55;}
.asset-task-flow-section{background:var(--bg);}
.asset-task-flow{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.asset-flow-step{position:relative;min-height:310px;padding:24px;border:1px solid var(--border);border-radius:var(--radius-m);background:var(--surface);transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;}
.asset-flow-step:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:0 16px 38px rgba(0,0,0,.14);}
.asset-flow-index{display:block;margin-bottom:30px;color:var(--accent);font:500 .72rem/1 var(--font-mono);letter-spacing:.12em;}
.asset-flow-step .icon{width:72px;height:72px;margin-bottom:24px;}
.asset-flow-step .icon svg{width:38px;height:38px;}
.asset-flow-step h3{margin-bottom:10px;}
.asset-flow-step p{font-size:.9rem;line-height:1.6;}
.asset-interface-section{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.asset-interface-grid{display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:64px;align-items:center;}
.asset-interface-copy .eyebrow{margin-bottom:14px;}
.asset-interface-copy h2{margin-bottom:16px;}
.asset-interface-copy>p{font-size:1.02rem;line-height:1.7;}
.asset-feature-list{margin-top:26px;}
.asset-feature-list li{margin-bottom:14px;}
.asset-interface-figure{min-width:0;margin:0;}
.asset-interface-figure .product-shot-frame{padding:9px;}
.asset-interface-figure img{width:100%;height:auto;border-radius:10px;}
.asset-interface-figure figcaption{display:flex;justify-content:space-between;gap:16px;margin-top:11px;color:var(--text-muted);font:500 .67rem/1.4 var(--font-mono);}
.asset-interface-figure figcaption a{color:var(--accent);white-space:nowrap;}
.asset-task-outcome-section{background:var(--bg-soft);border-top:1px solid var(--border);}
.asset-outcome-grid{margin-top:12px;}
.asset-outcome-grid .card{min-height:100%;}
@media (max-width:1000px){
  .asset-task-flow{grid-template-columns:repeat(2,minmax(0,1fr));}
  .asset-interface-grid{grid-template-columns:1fr;gap:42px;}
  .asset-interface-copy{max-width:760px;}
}
@media (max-width:760px){
  .asset-task-hero{padding-top:118px;padding-bottom:72px;}
  .asset-task-hero .lead{font-size:1rem;}
  .asset-task-layout{grid-template-columns:1fr;gap:38px;}
  .asset-task-flow{grid-template-columns:1fr;}
  .asset-flow-step{min-height:0;}
  .asset-interface-figure{overflow-x:auto;padding-bottom:4px;}
  .asset-interface-figure .product-shot-frame{min-width:680px;}
  .asset-interface-figure figcaption{align-items:flex-start;flex-direction:column;gap:5px;}
}
@media (prefers-reduced-motion: reduce){
  .back-link,.asset-task-fact,.asset-flow-step{transition:none;}
}

.asset-compare-section{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.asset-compare-grid{display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);gap:64px;align-items:center;}
.asset-compare-copy h2{margin-bottom:16px;}
.asset-compare-copy>p{font-size:1.02rem;line-height:1.7;}
.asset-compare-points{display:grid;gap:14px;margin-top:28px;}
.asset-compare-points>div{padding-top:14px;border-top:1px solid var(--border);}
.asset-compare-points .num{display:block;margin-bottom:6px;color:var(--accent);font:500 .7rem/1 var(--font-mono);letter-spacing:.12em;}
.asset-compare-points strong{display:block;margin-bottom:3px;font-family:var(--font-display);}
.asset-compare-points p{font-size:.88rem;line-height:1.5;}
.asset-compare-figure{min-width:0;margin:0;}
.asset-compare-figure img{width:100%;height:auto;border-radius:10px;}
.asset-compare-figure figcaption{display:flex;justify-content:space-between;gap:16px;margin-top:11px;color:var(--text-muted);font:500 .67rem/1.4 var(--font-mono);}
.asset-compare-figure figcaption a{color:var(--accent);white-space:nowrap;}
@media (max-width:1000px){
  .asset-compare-grid{grid-template-columns:1fr;gap:42px;}
  .asset-compare-copy{max-width:760px;}
}
@media (max-width:760px){
  .asset-compare-figure{overflow-x:auto;padding-bottom:4px;}
  .asset-compare-figure .product-shot-frame{min-width:680px;}
  .asset-compare-figure figcaption{align-items:flex-start;flex-direction:column;gap:5px;}
}

/* ================= PLATFORM MODULE PRODUCT SCREENSHOT ================= */
.module-heading-row{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:14px;}
.module-heading-row h3{margin-bottom:0;}
.module-detail-link{flex:0 0 auto;display:inline-flex;align-items:center;gap:7px;margin-top:3px;padding:8px 13px;border:1px solid var(--border-strong);border-radius:999px;color:var(--text-muted);font:500 .72rem/1.2 var(--font-mono);white-space:nowrap;transition:color .18s ease,border-color .18s ease,background .18s ease,transform .18s ease;}
.module-detail-link:hover{color:var(--accent);border-color:var(--accent);background:rgba(var(--accent-rgb),.08);transform:translateY(-1px);}
.module-product-shot{display:block;min-height:0;padding:9px;}
.module-product-shot::before{display:none;}
.module-product-frame{position:relative;z-index:1;overflow:hidden;border:1px solid var(--border-strong);border-radius:calc(var(--radius-l) - 8px);background:#fff;box-shadow:0 14px 34px rgba(0,0,0,.16);}
.module-product-frame img{display:block;width:100%;height:auto;}
.module-product-shot figcaption{display:flex;justify-content:space-between;gap:12px;margin-top:10px;color:var(--text-muted);font:500 .66rem/1.35 var(--font-mono);}
.module-product-shot figcaption a{color:var(--accent);white-space:nowrap;}

/* Four-step task flow: one compact outline icon system */
.asset-flow-step .icon{width:56px;height:56px;margin-bottom:28px;border:0;background:transparent;color:var(--text);box-shadow:none;border-radius:0;}
.asset-flow-step .icon svg{width:40px;height:40px;}
@media (max-width:940px){
  .module-product-shot{order:1;}
  .module-text{order:2;}
}
@media (max-width:620px){
  .module-heading-row{align-items:flex-start;flex-direction:column;gap:10px;}
  .module-detail-link{margin-top:0;}
  .module-product-shot figcaption{align-items:flex-start;flex-direction:column;gap:5px;}
  .module-product-shot{padding:7px;}
}

/* ================= ASSET INVENTORY INFOGRAPHIC ================= */
.module-asset-infographic{padding:18px;min-height:300px;}
.module-asset-infographic::before{display:none;}
.asset-inventory-mock{position:relative;z-index:1;width:100%;height:auto;max-width:520px;overflow:visible;}
.asset-ui-panel{fill:var(--surface);stroke:var(--border-strong);stroke-width:1;}
.asset-ui-kicker,.asset-graph-caption{fill:var(--text-dim);font-family:var(--font-mono);font-size:7px;letter-spacing:.12em;}
.asset-ui-count{fill:var(--accent);font-family:var(--font-mono);font-size:18px;font-weight:500;}
.asset-ui-muted{fill:var(--text-dim);font-family:var(--font-mono);font-size:7px;}
.asset-ui-label{fill:var(--text);font-family:var(--font-mono);font-size:7px;}
.asset-ui-value{fill:var(--text);font-family:var(--font-mono);font-size:7px;}
.asset-ui-divider{stroke:var(--border);stroke-width:1;}
.asset-ui-search{fill:var(--hover-bg);stroke:var(--border);stroke-width:1;}
.asset-ui-status{fill:rgba(52,211,153,.10);stroke:var(--success);stroke-width:1;}
.asset-ui-status-text{fill:var(--success);font-family:var(--font-mono);font-size:6px;letter-spacing:.04em;}
.green-text{fill:var(--success);}
.asset-ui-dot{stroke:none;}
.asset-ui-dot.accent,.asset-graph-node.accent{fill:var(--accent);}
.asset-ui-dot.blue,.asset-graph-node.blue{fill:var(--accent-blue);}
.asset-ui-dot.green,.asset-graph-node.green{fill:var(--success);}
.asset-ui-dot.amber,.asset-graph-node.amber{fill:var(--warning);}
.asset-graph-links path{fill:none;stroke:var(--border-strong);stroke-width:1.2;stroke-dasharray:3 5;}
.asset-graph-core{fill:var(--accent);stroke:var(--surface);stroke-width:4;}
.asset-graph-label{fill:var(--surface);stroke:var(--accent);stroke-width:1;}
.asset-graph-label-text{fill:var(--accent);font-family:var(--font-mono);font-size:8px;}
@media (max-width:620px){
  .module-asset-infographic{padding:12px;}
}

/* ================= IMPLEMENTATION RESULTS ================= */
.results-section{background:var(--bg);}
.results-section .section-head p{max-width:760px;margin-left:0;margin-right:0;}
.results-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.result-card{position:relative;display:flex;flex-direction:column;min-height:440px;padding:28px;border:1px solid var(--border);border-radius:var(--radius-l);background:linear-gradient(145deg,var(--surface),var(--card-gradient-end));box-shadow:0 18px 52px rgba(0,0,0,.16);overflow:hidden;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;}
.result-card::before{content:"";position:absolute;inset:0 0 auto;height:2px;background:linear-gradient(90deg,transparent,var(--accent),transparent);opacity:.78;}
.result-card:hover{transform:translateY(-5px);border-color:rgba(var(--accent-rgb),.58);box-shadow:0 28px 64px rgba(0,0,0,.22);}
.result-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:42px;}
.result-index{font:500 .72rem var(--font-mono);color:var(--accent);letter-spacing:.12em;}
.result-tag{display:inline-flex;align-items:center;min-height:32px;max-width:190px;padding:8px 12px;border:1px solid rgba(var(--accent-rgb),.42);border-radius:999px;background:rgba(var(--accent-rgb),.09);color:var(--accent);font:500 .62rem/1.15 var(--font-mono);letter-spacing:.06em;text-transform:uppercase;text-align:right;}
.result-metric{font:600 clamp(3rem,5vw,4.5rem)/.95 var(--font-display);letter-spacing:-.06em;color:var(--text);margin-bottom:10px;}
.result-metric span{font-size:.42em;letter-spacing:-.02em;color:var(--accent);}
.result-metric-label{font:500 .68rem var(--font-mono);letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);}
.results-section .result-line{margin:36px 0 18px;padding-top:18px;border-top:1px solid var(--border);font:600 1.18rem/1.18 var(--font-display);letter-spacing:-.025em;color:var(--text);}
.results-section .result-line strong{color:var(--accent);}
.result-description{font-size:.92rem;line-height:1.6;color:var(--text-muted);margin:0;}
.result-card-foot{display:flex;align-items:center;gap:9px;margin-top:auto;padding-top:32px;color:var(--text);font-size:.75rem;}
.result-status-dot{width:8px;height:8px;flex:0 0 8px;border-radius:50%;background:var(--success);box-shadow:0 0 14px var(--success);}

/* ================= RESULT / ROI ================= */
.roi-section{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.roi-section .section-head p{max-width:760px;margin-left:0;margin-right:0;}
.roi-stats{margin:42px 0 56px;}
.roi-tags{margin-top:40px;gap:10px;flex-wrap:wrap;}
@media (max-width:980px){
  .results-grid{grid-template-columns:1fr;}
  .result-card{min-height:unset;}
  .result-card-foot{margin-top:28px;}
}
@media (max-width:760px){
  .result-card{padding:23px;}
  .result-card-head{margin-bottom:30px;}
  .result-tag{max-width:190px;padding:7px 10px;font-size:.58rem;}
  .roi-stats{margin-top:30px;margin-bottom:40px;}
  .roi-tags{justify-content:flex-start !important;}
}


/* ================= NETWORK VISIBILITY INFOGRAPHIC ================= */
.network-visibility-mock{position:relative;z-index:1;width:100%;height:auto;overflow:visible;}
.network-visibility-panel{fill:var(--bg);stroke:var(--border-strong);stroke-width:1;}
.network-visibility-kicker{fill:var(--accent);font-family:var(--font-mono);font-size:8px;letter-spacing:.11em;}
.network-visibility-muted{fill:var(--text-dim);font-family:var(--font-mono);font-size:7px;letter-spacing:.035em;}
.network-visibility-grid{fill:none;stroke:var(--border);stroke-width:1;opacity:.7;}
.network-visibility-links{fill:none;stroke:rgba(var(--accent-rgb),.38);stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;}
.network-visibility-node{fill:var(--surface);stroke:var(--accent);stroke-width:1.5;}
.network-visibility-node.dim{stroke:var(--border-strong);}
.network-visibility-node.fire{fill:rgba(244,183,64,.12);stroke:var(--warning);}
.network-visibility-selected{fill:rgba(var(--accent-rgb),.08);stroke:rgba(var(--accent-rgb),.5);stroke-width:1;}
.network-visibility-label{fill:var(--text);font-family:var(--font-mono);font-size:7px;letter-spacing:.03em;}
.network-visibility-dot{fill:var(--accent);}
.network-visibility-service{fill:rgba(var(--accent-rgb),.1);stroke:rgba(var(--accent-rgb),.45);stroke-width:1;}
.network-visibility-service-text{fill:var(--accent);font-family:var(--font-mono);font-size:7px;letter-spacing:.03em;}
.network-visibility-route{fill:none;stroke:var(--accent);stroke-width:1.4;stroke-linecap:round;stroke-dasharray:3 4;}
.network-visibility-route-node{fill:var(--surface);stroke:var(--accent);stroke-width:1.4;}
.network-visibility-route-node.fire{fill:rgba(244,183,64,.15);stroke:var(--warning);}
.network-visibility-route-label{fill:var(--text-muted);font-family:var(--font-mono);font-size:7px;letter-spacing:.02em;}


/* Yandex Forms demo modal */
body.modal-open{ overflow:hidden; }
.demo-modal{
  position:fixed;
  inset:0;
  z-index:1200;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(2,8,14,.78);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .2s ease, visibility .2s ease;
}
html[data-theme="light"] .demo-modal{ background:rgba(16,40,58,.38); }
.demo-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.demo-modal-dialog{
  position:relative;
  display:flex;
  flex-direction:column;
  width:min(760px,100%);
  max-height:min(92vh,900px);
  overflow:hidden;
  border:1px solid var(--border-strong);
  border-radius:var(--radius-l);
  background:var(--surface);
  box-shadow:0 32px 100px rgba(0,0,0,.44);
  transform:translateY(12px) scale(.98);
  transition:transform .2s cubic-bezier(.23,1,.32,1);
}
.demo-modal.is-open .demo-modal-dialog{ transform:translateY(0) scale(1); }
.demo-modal-header{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:58px;
  padding:12px 16px 12px 20px;
  border-bottom:1px solid var(--border);
  background:var(--surface-2);
}
.demo-modal-title{ margin:0; color:var(--text); font-family:var(--font-display); font-size:clamp(.92rem,2vw,1.08rem); font-weight:600; line-height:1.25; }
.demo-modal-close{
  display:grid;
  width:38px;
  height:38px;
  flex:0 0 38px;
  place-items:center;
  padding:0;
  border:0;
  border-radius:10px;
  color:var(--text-muted);
  background:transparent;
  line-height:0;
  cursor:pointer;
  transition:color .18s ease,background .18s ease,transform .18s ease;
}
.demo-modal-close svg{ display:block; width:23px; height:23px; }
.demo-modal-close:hover{ color:var(--accent); background:var(--hover-bg); }
.demo-modal-close:active{ transform:scale(.97); }
.demo-modal-close:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.demo-modal-body{
  flex:1 1 auto;
  min-height:0;
  overflow-x:hidden;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  touch-action:pan-y;
}
/* Native demo request form (replaces the old Yandex Forms iframe) */
.demo-form{ display:flex; flex-direction:column; gap:16px; padding:20px 24px 24px; }
.demo-form-intro{ margin:0 0 4px; color:var(--text-muted); font-size:.92rem; line-height:1.5; }
.demo-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.demo-field{ display:flex; flex-direction:column; gap:6px; }
.demo-field-label{ font-size:.82rem; color:var(--text-muted); }
.demo-field-input{
  width:100%;
  padding:10px 12px;
  border-radius:var(--radius-s);
  border:1px solid var(--border-strong);
  background:var(--bg-soft);
  color:var(--text);
  font:inherit;
  font-size:.92rem;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.demo-field-input::placeholder{ color:var(--text-dim); }
.demo-field-input:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(var(--accent-rgb),0.18);
}
.demo-field-textarea{ resize:vertical; min-height:88px; }
.demo-field-honeypot{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.demo-field-consent{
  display:flex;
  align-items:flex-start;
  gap:9px;
  font-size:.84rem;
  color:var(--text-muted);
  line-height:1.4;
  cursor:pointer;
}
.demo-field-consent input{ margin-top:3px; accent-color:var(--accent); flex-shrink:0; }
.demo-field-consent a{ color:var(--accent); }
.demo-form-status{ font-size:.88rem; min-height:1.2em; }
.demo-form-status.is-success{ color:var(--accent); }
.demo-form-status.is-error{ color:#ff6b6b; }
.demo-form-actions{ display:flex; justify-content:flex-end; margin-top:4px; }
.demo-form-actions .btn{ min-width:180px; }
.demo-form-actions .btn[disabled]{ opacity:.6; cursor:not-allowed; }
@media (max-width:720px){
  .demo-modal{ padding:8px; }
  .demo-modal-dialog{ width:100%; max-height:calc(100dvh - 16px); border-radius:var(--radius-m); }
  .demo-modal-header{ min-height:56px; padding:10px 12px 10px 16px; }
  .demo-modal-body{ max-height:calc(100dvh - 72px); }
  .demo-form{ padding:16px 16px 20px; }
  .demo-form-row{ grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce){
  .demo-modal,.demo-modal-dialog,.demo-modal-close{ transition:none; }
}


/* ================= ACCESS COMPLIANCE PROTOTYPE ================= */
.access-compliance-frame{padding:18px;background:var(--bg);}
.access-compliance-infographic{position:relative;z-index:1;display:block;width:100%;height:auto;overflow:visible;}
.access-compliance-infographic .acc-panel{fill:var(--surface);stroke:var(--border-strong);stroke-width:1;}
.access-compliance-infographic .acc-header{fill:var(--bg-soft);stroke:var(--border);stroke-width:1;}
.access-compliance-infographic .acc-kicker{fill:var(--accent);font:500 10px var(--font-mono);letter-spacing:.14em;}
.access-compliance-infographic .acc-title{fill:var(--text);font:600 13px var(--font-display);}
.access-compliance-infographic .acc-muted{fill:var(--text-dim);font:500 8px var(--font-mono);letter-spacing:.04em;}
.access-compliance-infographic .acc-label{fill:var(--text);font:500 9px var(--font-mono);}
.access-compliance-infographic .acc-value{fill:var(--accent);font:600 9px var(--font-mono);}
.access-compliance-infographic .acc-line{fill:none;stroke:var(--border-strong);stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.access-compliance-infographic .acc-line-active{fill:none;stroke:var(--accent);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:4 4;}
.access-compliance-infographic .acc-node{fill:var(--surface);stroke:var(--accent);stroke-width:1.4;}
.access-compliance-infographic .acc-node-warn{fill:rgba(244,183,64,.14);stroke:var(--warning);stroke-width:1.4;}
.access-compliance-infographic .acc-pill{fill:rgba(var(--accent-rgb),.1);stroke:rgba(var(--accent-rgb),.5);stroke-width:1;}
.access-compliance-infographic .acc-pill-warn{fill:rgba(244,183,64,.11);stroke:rgba(244,183,64,.55);stroke-width:1;}
.access-compliance-infographic .acc-pill-text{fill:var(--accent);font:500 8px var(--font-mono);letter-spacing:.03em;}
.access-compliance-infographic .acc-pill-text-warn{fill:var(--warning);font:500 8px var(--font-mono);letter-spacing:.03em;}
.access-compliance-infographic .acc-check{fill:var(--success);}
.access-compliance-infographic .acc-divider{stroke:var(--border);stroke-width:1;}
.access-mode-grid{margin-top:12px;align-items:stretch;}
.access-mode-card{display:flex;flex-direction:column;min-height:100%;}
.access-mode-card .mode-code{display:block;margin-bottom:18px;color:var(--accent);font:500 .72rem/1 var(--font-mono);letter-spacing:.12em;}
.access-mode-card .icon{width:56px;height:56px;margin-bottom:22px;border:0;background:transparent;color:var(--text);box-shadow:none;border-radius:0;}
.access-mode-card .icon svg{width:40px;height:40px;}
.access-mode-card h3{margin-bottom:10px;}
.access-mode-card p{font-size:.92rem;line-height:1.6;}
.access-mode-card ul{display:grid;gap:9px;margin:18px 0 0;padding:0;list-style:none;}
.access-mode-card li{position:relative;padding-left:17px;color:var(--text-muted);font-size:.86rem;line-height:1.5;}
.access-mode-card li::before{content:"";position:absolute;left:0;top:.62em;width:6px;height:6px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 3px rgba(var(--accent-rgb),.1);}
.access-mode-card .mode-status{display:inline-flex;align-items:center;gap:7px;margin-top:auto;padding-top:22px;color:var(--text-dim);font:500 .67rem/1.3 var(--font-mono);letter-spacing:.06em;text-transform:uppercase;}
.access-mode-card .mode-status::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--success);box-shadow:0 0 0 3px rgba(52,211,153,.12);}
@media (max-width:620px){
  .access-compliance-frame{padding:10px;}
  .access-mode-card{min-height:0;}
}


/* ================= CONFIGURATION CONTROL INFOGRAPHIC ================= */
.configuration-compliance-mock{position:relative;z-index:1;display:block;width:100%;height:auto;overflow:visible;}
.configuration-compliance-mock .cc-panel{fill:var(--bg);stroke:var(--border-strong);stroke-width:1;}
.configuration-compliance-mock .cc-panel-soft{fill:var(--surface);stroke:var(--border);stroke-width:1;}
.configuration-compliance-mock .cc-kicker{fill:var(--accent);font-family:var(--font-mono);font-size:8px;letter-spacing:.12em;}
.configuration-compliance-mock .cc-title{fill:var(--text);font-family:var(--font-display);font-size:13px;font-weight:600;}
.configuration-compliance-mock .cc-muted{fill:var(--text-dim);font-family:var(--font-mono);font-size:7px;letter-spacing:.03em;}
.configuration-compliance-mock .cc-label{fill:var(--text-muted);font-family:var(--font-mono);font-size:7px;letter-spacing:.02em;}
.configuration-compliance-mock .cc-value{fill:var(--text);font-family:var(--font-mono);font-size:8px;}
.configuration-compliance-mock .cc-line{fill:none;stroke:var(--border-strong);stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.configuration-compliance-mock .cc-line-active{fill:none;stroke:var(--accent);stroke-width:1.4;stroke-linecap:round;stroke-dasharray:3 4;}
.configuration-compliance-mock .cc-dot{fill:var(--surface);stroke:var(--accent);stroke-width:1.4;}
.configuration-compliance-mock .cc-dot-ok{fill:var(--success);stroke:var(--surface);stroke-width:2;}
.configuration-compliance-mock .cc-dot-warn{fill:var(--warning);stroke:var(--surface);stroke-width:2;}
.configuration-compliance-mock .cc-chip{fill:rgba(var(--accent-rgb),.10);stroke:rgba(var(--accent-rgb),.5);stroke-width:1;}
.configuration-compliance-mock .cc-chip-warn{fill:rgba(244,183,64,.10);stroke:rgba(244,183,64,.5);stroke-width:1;}
.configuration-compliance-mock .cc-chip-text{fill:var(--accent);font-family:var(--font-mono);font-size:7px;letter-spacing:.03em;}
.configuration-compliance-mock .cc-chip-text-warn{fill:var(--warning);font-family:var(--font-mono);font-size:7px;letter-spacing:.03em;}
.configuration-compliance-mock .cc-bar{fill:var(--hover-bg);}
.configuration-compliance-mock .cc-bar-fill{fill:var(--accent);}
.configuration-compliance-mock .cc-bar-warn{fill:var(--warning);}
.configuration-compliance-mock .cc-divider{stroke:var(--border);stroke-width:1;}
.configuration-compliance-mock .cc-status{fill:var(--success);font-family:var(--font-mono);font-size:7px;letter-spacing:.04em;}
@media (max-width:620px){.configuration-compliance-mock{min-width:420px;transform-origin:left center;}}


.platform-access-compliance-mock{width:100%;height:auto;display:block;}
@media (max-width:620px){.platform-access-compliance-mock{min-width:0!important;transform:none!important;}}


.analysis-groups{align-items:stretch;}
.analysis-group{display:flex;flex-direction:column;align-items:flex-start;}
.analysis-direction{display:grid;grid-template-columns:30px 1fr;gap:12px;width:100%;padding:15px 0;border-top:1px solid var(--border);}
.analysis-direction:first-of-type{margin-top:8px;}
.analysis-index{font-family:var(--font-mono);font-size:12px;color:var(--accent);padding-top:2px;}
.analysis-direction strong{display:block;font-size:14px;color:var(--text);margin-bottom:5px;}
.analysis-direction p{margin:0;color:var(--text-muted);font-size:13px;line-height:1.55;}
.analysis-group .mode-status{margin-top:auto;}
@media (max-width:780px){.analysis-groups{grid-template-columns:1fr;}.analysis-direction p{max-width:60ch;}}


.analysis-group-block + .analysis-group-block{margin-top:52px;}
.analysis-group-heading{display:block;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid var(--border);}
.analysis-group-heading .mode-code{display:block;margin-bottom:10px;color:var(--accent);}
.analysis-group-heading h3{margin:0 0 7px;font-family:var(--font-display);font-size:26px;line-height:1.12;color:var(--text);}
.analysis-group-heading p{margin:0;max-width:68ch;color:var(--text-muted);font-size:14px;line-height:1.6;}
.analysis-direction-cards{align-items:stretch;margin-top:0;}
.analysis-direction-card{position:relative;display:flex;flex-direction:column;align-items:flex-start;min-height:245px;}
.analysis-direction-card .analysis-card-index{position:absolute;top:22px;right:24px;font-family:var(--font-mono);font-size:12px;color:var(--accent);}
.analysis-direction-card .icon{margin-bottom:18px;}
.analysis-direction-card h3{max-width:20ch;margin-bottom:10px;}
.analysis-direction-card p{margin:0;color:var(--text-muted);font-size:14px;line-height:1.6;}
.analysis-note{margin-top:16px!important;padding-top:12px;border-top:1px solid var(--border);font-family:var(--font-mono);font-size:11px!important;line-height:1.45!important;color:var(--accent)!important;}
@media (max-width:780px){.analysis-group-block + .analysis-group-block{margin-top:40px;}.analysis-group-heading{margin-bottom:16px;padding-bottom:13px;}.analysis-group-heading .mode-code{margin-bottom:10px;}.analysis-group-heading h3{font-size:22px;margin-bottom:8px;}.analysis-direction-card{min-height:0;}.analysis-direction-cards{grid-template-columns:1fr;}}
