/* ─────────────────────────────────────────────
   Kyon Agents — landing page styles
   Visual language: deep navy, electric blue,
   radial glows, technical mono accents.
   ───────────────────────────────────────────── */

:root {
  /* surfaces */
  --bg-deep:      #03050d;
  --bg-base:      #05081a;
  --bg-card:      #0a1228;
  --bg-card-2:    #0d1733;
  --bg-elev:      #11214a;

  /* lines */
  --line:         rgba(120, 150, 230, 0.10);
  --line-mid:     rgba(120, 150, 230, 0.18);
  --line-strong:  rgba(120, 150, 230, 0.32);

  /* brand */
  --blue:         #2E5BFF;
  --blue-bright:  #4F6BFF;
  --blue-soft:    #6E8AFF;
  --blue-ice:     #B8CBFF;
  --blue-glow:    rgba(78, 110, 255, 0.55);
  --cyan:         #6FE3FF;
  --violet:       #8B5CF6;

  /* text */
  --text:         #F4F6FF;
  --text-dim:     #B6BEDB;
  --text-mute:    #7884A8;
  --text-faint:   #4D5778;

  /* fonts — Inter only: 600 (semibold) for titles, 400 (regular) for everything else */
  --f-sans:       'Inter', system-ui, sans-serif;
  --f-display:    'Inter', system-ui, sans-serif;
  --f-mono:       'Inter', system-ui, sans-serif;

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* maxes */
  --max:          1240px;
  --max-narrow:   980px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ───── selection ───── */
::selection { background: var(--blue); color: #fff; }

/* ───── inline SVG icons ───── */
.ico {
  width: 14px;
  height: 14px;
  flex: none;
  stroke-width: 1.6;
  vertical-align: -2px;
}
.ico--lg {
  width: 26px;
  height: 26px;
  stroke-width: 1.4;
}
.ico--md {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* ───── shared atoms ───── */

.hl {
  background: linear-gradient(180deg, #ffffff 0%, #c8d5ff 60%, #6E8AFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.strike {
  position: relative;
  color: var(--text-mute);
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
  transform: rotate(-2deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue-ice);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(46, 91, 255, 0.14), rgba(46, 91, 255, 0.05));
  border: 1px solid rgba(120,146,220,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 1px 12px -4px rgba(46,91,255,0.5);
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow--blue {
  color: var(--blue-soft);
  border-color: rgba(78, 110, 255, 0.4);
}
.eyebrow__dot {
  width: 15px; height: 15px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9db4ff;
}
.eyebrow__dot svg { width: 100%; height: 100%; }
.eyebrow__dot--keep {
  width: 15px; height: 15px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9db4ff;
}

/* ───── buttons ───── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  user-select: none;
  white-space: nowrap;
}
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  position: relative;
  overflow: hidden;
  background: #2E5BFF;
  color: #fff;
  border-color: transparent;
  box-shadow: none;
}
.btn--primary > * { position: relative; z-index: 2; }
.btn--primary::before, .btn--primary::after { display: none; }
.btn--primary:hover { background: #1F4DF0; }
.btn--primary:active { background: #1A45D8; }
.btn--outline {
  background: rgba(255,255,255,0.02);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--blue-soft); background: rgba(78,110,255,0.08); }
.btn--ghost {
  background: transparent;
  color: var(--text-dim);
}
.btn--ghost:hover { color: var(--text); }

.btn--lg {
  padding: 15px 22px;
  font-size: 15px;
  border-radius: 12px;
}
.btn--block { width: 100%; }
.btn__play {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  background: radial-gradient(circle at 50% 30%, #6E8AFF, var(--blue) 75%);
  color: #fff;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 2px 10px -2px rgba(46,91,255,0.7);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn__play svg { width: 9px; height: 9px; margin-left: 1px; }
.btn--outline:hover .btn__play {
  transform: scale(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 3px 14px -2px rgba(46,91,255,0.85);
}

/* ───── NAV ───── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(3, 5, 13, 0.7);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
}
.nav__logo img { height: 24px; width: auto; }
.nav__links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav__links a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
  transition: color .2s;
  position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__cta { display: flex; gap: 8px; align-items: center; }

/* ───── FLOATING GLASS HEADER ───── */
.topbar {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}
.topbar__pill {
  position: relative; z-index: 2;
  pointer-events: auto;
  display: flex; align-items: center; gap: 14px;
  width: min(1200px, 100%);
  padding: 9px 10px 9px 20px;
  border-radius: 999px;
  background: rgba(20,28,56,0.33);
  -webkit-backdrop-filter: blur(10px) saturate(150%) brightness(0.92);
  backdrop-filter: url(#liquid-glass) blur(10px) saturate(150%) brightness(0.92);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 1.6px 1.6px 4px rgba(255,255,255,0.4),
    inset -2px -2px 6px rgba(0,0,0,0.28);
}
@supports not (backdrop-filter: url(#liquid-glass)) {
  .topbar__pill { background: rgba(255,255,255,0.16); }
}
.topbar__logo { flex: none; display: inline-flex; align-items: center; }
.topbar__logo img { height: 24px; width: auto; max-width: none; display: block; }
.topbar__nav { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.topbar__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 11px; border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 14.5px; font-weight: 500; color: #ffffff;
  background: transparent; border: none; cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.topbar__link:hover { background: transparent; color: #fff; }
.topbar__chev { width: 15px; height: 15px; transition: transform .25s ease; }
.topbar.is-open .topbar__chev { transform: rotate(180deg); }
.topbar__cta { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.topbar__login {
  padding: 9px 16px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: #14213f;
  border: 1.5px solid rgba(20,33,63,0.4);
  white-space: nowrap; transition: background .15s, border-color .15s;
}
.topbar__login:hover { background: rgba(20,33,63,0.08); border-color: var(--blue); }
.topbar__cta .btn { padding: 11px 18px; border-radius: 999px; }

/* full-page mega menu (Sobre) */
.megamenu {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.megamenu::before {
  content: ""; position: absolute; inset: 0;
  background: transparent;
}
.megamenu__panel {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 104px 0 48px;
  background: rgba(10,14,30,0.66);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
  border-bottom: 1px solid rgba(150,170,255,0.14);
  box-shadow: none;
  transform: translateY(-16px);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.topbar.is-open .megamenu { opacity: 1; visibility: visible; pointer-events: auto; }
.topbar.is-open .megamenu__panel { transform: translateY(0); }
/* dim the rest of the page while the megamenu is open */
#top, .foot { transition: opacity .28s ease; }
.topbar.is-open ~ #top, .topbar.is-open ~ .foot { opacity: 0.55; }
.megamenu__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.megamenu__intro {
  max-width: 560px; margin: 0 0 36px;
  font-size: 18px; line-height: 1.5; color: var(--text-dim);
  text-wrap: pretty;
}
.megamenu__cols {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 72px; max-width: 940px;
}
.megamenu__link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 0; border-bottom: none;
  transition: padding-left .2s ease, border-color .2s ease;
}
.megamenu__link:hover { padding-left: 8px; border-color: var(--line-strong); }
.megamenu__link:nth-child(3) { border-top: 1px solid var(--line); }
.megamenu__link b {
  font-size: 23px; font-weight: 600; color: var(--text); letter-spacing: -0.01em;
}
.megamenu__link:hover b { color: var(--blue-soft); }
.megamenu__link span { font-size: 14px; color: var(--text-mute); }

@media (max-width: 880px) {
  .topbar__nav, .topbar__login { display: none; }
  .topbar__pill { gap: 12px; padding: 8px 8px 8px 18px; }
}
@media (max-width: 720px) {
  .megamenu__cols { grid-template-columns: 1fr; }
}

/* ───── HERO ───── */

.hero {
  position: relative;
  padding: 110px 32px 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* fade the glow into the page's navy as you scroll down */
    linear-gradient(180deg, transparent 0%, transparent 48%, rgba(3,5,13,0.6) 74%, var(--bg-deep) 100%),
    /* the supplied glow + noise plate */
    url("assets/hero-glow.jpg") top center / 100% auto no-repeat,
    var(--bg-deep);
}
/* technical grid + node dots (dark KyonMed) */
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(120,150,230,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120,150,230,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 95% 78% at 50% 16%, #000 36%, transparent 86%);
  mask-image: radial-gradient(ellipse 95% 78% at 50% 16%, #000 36%, transparent 86%);
}
.hero__nodes {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(150,170,255,0.55) 1.4px, transparent 2px);
  background-size: 80px 80px;
  background-position: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 82% 60% at 50% 14%, #000 22%, transparent 78%);
  mask-image: radial-gradient(ellipse 82% 60% at 50% 14%, #000 22%, transparent 78%);
  opacity: 0.7;
}
/* beam glow rising from bottom-center behind the dashboard */
.hero__beam {
  position: absolute;
  left: 50%; bottom: -120px; transform: translateX(-50%);
  width: min(1180px, 124vw); height: 900px;
  background:
    radial-gradient(ellipse 36% 52% at 50% 100%, rgba(91,118,255,0.62), transparent 62%),
    radial-gradient(ellipse 60% 66% at 50% 100%, rgba(124,92,246,0.30), transparent 72%);
  filter: blur(26px);
}

.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
}

/* badge pill */
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px;
  border-radius: 999px;
  background: rgba(6,10,28,0.55);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  font-size: 13px; color: var(--text);
  margin-bottom: 30px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero__badge:hover { border-color: var(--line-strong); background: rgba(6,10,28,0.72); transform: translateY(-1px); }
.hero__badge-tag {
  font-family: var(--f-mono);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  background: linear-gradient(180deg, #3CDA8A, #1FAE69);
  color: #04140c;
}
.hero__badge-arrow { color: var(--blue-ice); transition: transform .2s ease; }
.hero__badge:hover .hero__badge-arrow { transform: translateX(3px); }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 0 30px;
  text-wrap: pretty;
}

/* inline email capture */
.hero__capture {
  display: flex; align-items: center; gap: 8px;
  width: min(500px, 100%);
  background: rgba(8,12,30,0.65);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  padding: 8px;
  box-shadow:
    0 24px 60px -30px rgba(46,91,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero__capture input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: var(--text); font: inherit; font-size: 15px;
  padding: 0 14px;
}
.hero__capture input::placeholder { color: var(--text-faint); }
.hero__capture .btn { white-space: nowrap; }
.hero__note {
  font-family: var(--f-mono);
  font-size: 12px; color: var(--text-mute);
  margin: 16px 0 0; letter-spacing: 0.02em;
}

/* dashboard showcase */
.hero__showcase {
  position: relative;
  width: 100%; max-width: 1080px;
  margin: 72px auto 0;
}
.window--showcase { position: relative; z-index: 1; }
.console.console--showcase {
  display: grid;
  grid-template-columns: 190px 1fr 232px;
  min-height: 358px;
}
.console__aside {
  border-left: 1px solid var(--line);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(0,0,0,0.15);
}
.console__aside > small {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mute);
}
.donut {
  position: relative;
  width: 150px; height: 150px;
  margin: 6px auto 6px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-bright) 0 87%, rgba(255,255,255,0.07) 87% 100%);
}
.donut::after {
  content: ""; position: absolute; inset: 20px;
  border-radius: 50%; background: var(--bg-card-2);
}
.donut__center {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center;
}
.donut__center b { font-family: var(--f-display); font-size: 30px; font-weight: 600; line-height: 1; }
.donut__center span { font-size: 11px; color: var(--text-mute); font-family: var(--f-mono); margin-top: 3px; }
.donut__legend {
  list-style: none; padding: 0; margin: 2px 0 0;
  display: flex; flex-direction: column; gap: 9px;
}
.donut__legend li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-dim); }
.donut__legend i { width: 9px; height: 9px; border-radius: 3px; flex: none; }
.donut__legend b { margin-left: auto; font-family: var(--f-mono); color: var(--text); font-size: 12px; }

/* showcase KPI pair */
.kpis2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kpi2 {
  padding: 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
}
.kpi2 small { font-size: 11px; color: var(--text-mute); font-family: var(--f-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi2 b { display: block; font-family: var(--f-display); font-size: 30px; font-weight: 600; margin-top: 8px; letter-spacing: -0.02em; }
.kpis2 .trend { position: static; top: auto; right: auto; display: inline-block; margin-top: 8px; }

@media (max-width: 980px) {
  .hero__showcase { margin-top: 56px; }
  .console.console--showcase { grid-template-columns: 1fr; }
  .console.console--showcase .console__aside { border-left: none; border-top: 1px solid var(--line); }
}

/* ───── STACK BAR ───── */

.stack {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 32px 44px;
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.stack__label {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  color: #7a84a5;
}
.stack__logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 0;
  margin: 0;
}
.stack__logos li {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-mute);
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity .2s, color .2s;
}
.stack__logos li:hover { opacity: 1; color: var(--text-dim); }

/* infinite logo carousel */
.logo-marquee {
  overflow: hidden;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: running; }
.logo-marquee__item {
  flex: 0 0 auto;
  width: 100px;
  height: 26px;
  margin-right: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-marquee__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity .25s;
}
.logo-marquee__item:hover img { opacity: 0.55; }
@keyframes logo-marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
}

/* ───── DEMO FORM SECTION ───── */

.demo {
  padding: 80px 32px 100px;
  position: relative;
}
.demo__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.demo__copy h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}
.demo__copy p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.demo__checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo__checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.demo__checks li::before {
  content: "";
  width: 22px; height: 22px;
  flex: none;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(78,110,255,0.4), rgba(46,91,255,0.2)),
    var(--bg-card);
  border: 1px solid rgba(78,110,255,0.4);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.demo__form {
  background:
    linear-gradient(180deg, rgba(20,30,70,0.45), rgba(8,12,30,0.55)),
    var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 30px 80px -30px rgba(46,91,255,0.4),
    0 0 60px -20px rgba(78,110,255,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.demo__form-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot--g { background: #3CDA8A; }
.dot--y { background: #F2C744; }
.dot--r { background: #F26B5C; }
.demo__form-title {
  margin-left: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-mute);
}
.demo__form > .field,
.demo__form > button,
.demo__form > .demo__legal {
  margin: 0 24px;
}
.demo__form > .field:first-of-type { margin-top: 24px; }
.demo__form > button { margin-top: 8px; margin-bottom: 14px; }
.demo__form > .demo__legal { margin-bottom: 24px; }

.field {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-weight: 600;
}
.field input,
.field select {
  appearance: none;
  background: rgba(3,5,13,0.6);
  border: 1px solid var(--line-mid);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  transition: border-color .15s, background .15s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-soft);
  background: rgba(46,91,255,0.06);
}
.field input::placeholder { color: var(--text-faint); }
.field--row {
  flex-direction: row;
  gap: 14px;
  margin-bottom: 14px;
}
.field--row > .field { flex: 1; margin-bottom: 0; }

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(3,5,13,0.6);
  border: 1px solid var(--line-mid);
  color: var(--text-dim);
  font-size: 13px;
  transition: all .15s;
}
.chips input:checked + span {
  background: rgba(46,91,255,0.18);
  border-color: var(--blue-soft);
  color: var(--text);
}

.is-done {
  background: linear-gradient(180deg, #3CDA8A 0%, #1FAE69 100%) !important;
}

.demo__legal {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 4px;
}

/* ───── POSITIONING SECTION ───── */

.position {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.position__bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}
.position__orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,91,255,0.13) 0%, transparent 55%);
  filter: blur(20px);
}
.position__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.position__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 28px;
  text-wrap: balance;
}
.position__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ─────────────────────────────────────────────
   PILLAR SECTIONS (4 product features)
   ───────────────────────────────────────────── */

.pillar {
  position: relative;
  padding: 120px 32px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.pillar--flush { border-top: none; }
.pillar--alt {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,91,255,0.08), transparent 70%),
    var(--bg-deep);
}
.pillar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.pillar__inner--flip {
  grid-template-columns: 1.1fr 1fr;
}
.pillar__inner--flip .pillar__copy { order: 2; }
.pillar__inner--flip .mock { order: 1; }

.pillar__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 24px;
  text-wrap: balance;
}
.pillar__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar__list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.pillar__list li:last-child { border-bottom: none; padding-bottom: 0; }
.pillar__list strong {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.pillar__list span {
  color: var(--text-mute);
  font-size: 14px;
}
.pillar__list em { font-style: normal; color: var(--blue-soft); }

.pillar__list--compact li { grid-template-columns: 1fr; gap: 4px; padding-bottom: 14px; }
.pillar__list--compact li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pli__ico {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  color: var(--blue-ice);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(46,91,255,0.18), rgba(46,91,255,0.06));
  border: 1px solid rgba(120,146,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.pli__ico svg { width: 20px; height: 20px; }
.pli__txt { display: flex; flex-direction: column; gap: 2px; }

.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.vertical-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(46,91,255,0.08);
  border: 1px solid var(--line-mid);
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--f-mono);
}

/* ─────────────────────────────────────────────
   MOCKUPS
   ───────────────────────────────────────────── */

.mock {
  position: relative;
}
.mock__glow {
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(78,110,255,0.35), transparent 65%);
  filter: blur(40px);
}

/* generic window chrome */
.window {
  background:
    linear-gradient(180deg, rgba(20,30,70,0.45), rgba(8,12,30,0.55)),
    var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 60px -20px rgba(46,91,255,0.4);
}
.window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.window__addr {
  margin-left: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-mute);
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 6px;
  flex: 1;
  max-width: 360px;
}
.window__addr b { color: var(--blue-soft); font-weight: 600; }

/* ─── WHITE-LABEL CONSOLE ─── */
.console {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}
.console__side {
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(0,0,0,0.15);
}
.console__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  font-size: 14px;
}
.console__logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FF7A5C, #A872FF);
}
.console__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.console__nav a {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--text-mute);
}
.console__nav a.is-active {
  color: var(--text);
  background: rgba(78,110,255,0.15);
}
.console__profile {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
}
.console__profile b { font-size: 13px; display: block; }
.console__profile small { font-size: 11px; color: var(--text-mute); }
.avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F6BFF, #6FE3FF);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.console__main {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.console__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.console__head small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.console__head h3 {
  margin: 4px 0 0;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
}
.pill {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(60,218,138,0.12);
  border: 1px solid rgba(60,218,138,0.35);
  color: #6CE9A5;
  font-size: 11px;
  font-family: var(--f-mono);
}
.pill--ghost {
  background: rgba(78,110,255,0.10);
  border-color: var(--line-mid);
  color: var(--blue-soft);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.kpi {
  padding: 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  position: relative;
}
.kpi small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-family: var(--f-mono);
}
.kpi b {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin-top: 6px;
}
.trend {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--f-mono);
}
.trend.up { background: rgba(60,218,138,0.18); color: #6CE9A5; }
.trend.down { background: rgba(111,227,255,0.18); color: #6FE3FF; }

.chartbox {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: rgba(0,0,0,0.25);
}
.chartbox__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.chartbox__head small { color: var(--text-mute); font-size: 12px; }
.chart {
  width: 100%;
  height: 100px;
  display: block;
}

/* ─── TENANTS TABLE ─── */
.tenants {
  background:
    linear-gradient(180deg, rgba(20,30,70,0.45), rgba(8,12,30,0.55)),
    var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 60px -20px rgba(46,91,255,0.4);
}
.tenants__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.tenants__head small {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}
.tenants__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tenants__table th {
  text-align: left;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.tenants__table td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.tenants__table tr.is-highlight td {
  background: rgba(78,110,255,0.08);
}
.tenants__table tr:last-child td { border-bottom: none; }
.tenant {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.tenant__sw {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: inline-block;
}
.status {
  font-family: var(--f-mono);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}
.status--ok { color: #6CE9A5; }
.status--warn { color: #F2C744; }
.status--new { color: #6FE3FF; }

.tenants__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tenants__foot small {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
}

/* ─── CHAT MOCK ─── */
.chat {
  background:
    linear-gradient(180deg, rgba(20,30,70,0.45), rgba(8,12,30,0.55)),
    var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 60px -20px rgba(46,91,255,0.4);
}
.chat__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.chat__agent {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat__av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #6E8AFF, #2E5BFF 60%, #0a1228);
  box-shadow: 0 0 16px rgba(78,110,255,0.5);
}
.chat__agent b { font-size: 14px; display: block; }
.chat__agent small { font-size: 11px; color: var(--text-mute); font-family: var(--f-mono); }

.chat__body {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.msg p { margin: 0; }
.msg small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 4px;
}
.msg--user {
  align-self: flex-end;
  background: rgba(78,110,255,0.15);
  border: 1px solid rgba(78,110,255,0.3);
  border-bottom-right-radius: 4px;
  color: var(--text);
}
.msg--ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-mid);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.msg--card {
  background: rgba(46,91,255,0.10);
  border-color: rgba(78,110,255,0.4);
}
.msg__row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.msg__chip {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.3);
  color: var(--blue-ice);
  border: 1px solid var(--line);
}

.chat__bar {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
}
.chat__bar input {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-mid);
  border-radius: 8px;
  padding: 10px 14px;
  font: inherit;
  color: var(--text);
  font-size: 13px;
}
.chat__bar input::placeholder { color: var(--text-faint); }
.chat__bar .btn { padding: 8px 14px; font-size: 13px; }

/* ─── OBSERVABILITY MOCK ─── */
.obs {
  background:
    linear-gradient(180deg, rgba(20,30,70,0.45), rgba(8,12,30,0.55)),
    var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 60px -20px rgba(46,91,255,0.4);
}
.obs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.obs__card {
  padding: 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  position: relative;
}
.obs__card small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.obs__card b {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  margin-top: 6px;
}
.obs__card b span { font-size: 14px; color: var(--text-mute); margin-left: 2px; }
.obs__card .trend { position: absolute; top: 14px; right: 14px; }

.obs__trace {
  padding: 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
}
.obs__trace-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.obs__trace-head small {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-dim);
}
.trace-bar {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0,0,0,0.4);
  margin-bottom: 10px;
}
.trace-bar span {
  height: 100%;
}
.trace-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-mute);
}
.trace-legend i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

.obs__events {
  padding: 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
}
.ev {
  display: grid;
  grid-template-columns: 70px 60px 1fr;
  gap: 10px;
  padding: 6px 4px;
  align-items: center;
}
.ev--hi { background: rgba(78,110,255,0.10); border-radius: 4px; }
.ev__time { color: var(--text-mute); font-size: 11px; }
.ev__tag {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ev__tag--info { background: rgba(78,110,255,0.18); color: var(--blue-soft); }
.ev__tag--ok { background: rgba(60,218,138,0.18); color: #6CE9A5; }
.ev code {
  font-family: var(--f-mono);
  color: var(--blue-ice);
  font-size: 11px;
}
.ev span:last-child { color: var(--text-dim); font-size: 11px; }

/* ─────────────────────────────────────────────
   BUILD vs OPERATE
   ───────────────────────────────────────────── */
.versus {
  padding: 120px 32px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(46,91,255,0.10), transparent 70%),
    var(--bg-deep);
}
.versus__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.versus__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}
.versus__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 740px;
  margin: 0 auto 56px;
  text-wrap: pretty;
}
.versus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}
.vs {
  position: relative;
  padding: 34px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--line-mid);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vs--bad {
  background:
    linear-gradient(180deg, rgba(255,122,92,0.05), transparent 55%),
    var(--bg-card);
  border-color: rgba(255,122,92,0.20);
  opacity: 0.92;
}
.vs--bad:hover { opacity: 1; transform: translateY(-2px); }
.vs--good {
  background:
    linear-gradient(180deg, rgba(78,110,255,0.12), transparent 60%),
    var(--bg-card-2);
  border-color: rgba(78,110,255,0.40);
  box-shadow:
    0 30px 80px -40px rgba(46,91,255,0.45),
    0 0 60px -20px rgba(78,110,255,0.25);
}
.vs--good:hover {
  transform: translateY(-4px);
  border-color: rgba(120,146,255,0.6);
  box-shadow:
    0 40px 90px -38px rgba(46,91,255,0.6),
    0 0 70px -18px rgba(78,110,255,0.35);
}
.vs__ribbon {
  position: absolute;
  top: -1px; right: 20px;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4F6BFF, #2E5BFF);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46,91,255,0.6);
}
.vs__tag {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,122,92,0.85);
}
.vs__tag--good { color: var(--blue-soft); }
.vs h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  margin: 6px 0 0;
  letter-spacing: -0.02em;
}
.vs header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-mid);
}
.vs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.vs li {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  min-height: 22px;
  display: flex;
  align-items: center;
}
.vs--bad li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(255,122,92,0.12);
  border: 1px solid rgba(255,122,92,0.28);
  background-image:
    linear-gradient(45deg, transparent 44%, rgba(255,140,110,0.95) 44%, rgba(255,140,110,0.95) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, rgba(255,140,110,0.95) 44%, rgba(255,140,110,0.95) 56%, transparent 56%);
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.vs--good li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(78,110,255,0.28), rgba(78,110,255,0.12));
  border: 1px solid rgba(120,146,255,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.vs--good li::after {
  content: "";
  position: absolute;
  left: 6px; top: 7px;
  width: 8px; height: 5px;
  border-left: 2px solid #cdd6ff;
  border-bottom: 2px solid #cdd6ff;
  transform: rotate(-45deg);
}
.vs footer { margin-top: auto; padding-top: 8px; }
.vs--bad footer small {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--text-faint);
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────── */
.how {
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}
.how__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.how__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 56px;
  max-width: 720px;
  text-wrap: balance;
}
.how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.how__steps li {
  background: var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.how__steps li:hover {
  border-color: rgba(78,110,255,0.4);
  transform: translateY(-2px);
}
.how__num {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 600;
  background: linear-gradient(180deg, #6E8AFF, #2E5BFF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
}
.how__steps h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
}
.how__steps p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.how__when {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   VERTICALS / CASES
   ───────────────────────────────────────────── */
.cases {
  padding: 120px 32px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(78,110,255,0.06), transparent 70%),
    var(--bg-deep);
}
.cases__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.cases__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 56px;
  max-width: 720px;
  text-wrap: balance;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case {
  background: var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.case:hover {
  border-color: rgba(78,110,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -20px rgba(46,91,255,0.4);
}
.case__icon {
  font-size: 28px;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(78,110,255,0.18), rgba(78,110,255,0.04));
  border: 1px solid rgba(78,110,255,0.3);
}
.case h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}
.case > p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.case ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case li {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(78,110,255,0.08);
  border: 1px solid var(--line);
  color: var(--blue-ice);
}
.case--blank {
  background:
    linear-gradient(180deg, rgba(78,110,255,0.08), transparent),
    var(--bg-card);
  border-style: dashed;
  border-color: rgba(78,110,255,0.3);
}
.case__link {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* ─────────────────────────────────────────────
   SECURITY
   ───────────────────────────────────────────── */
.sec {
  padding: 120px 32px;
  border-top: 1px solid var(--line);
}
.sec__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.sec__copy h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.sec__copy p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}
.badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.badges li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 55%),
    var(--bg-card);
  border: 1px solid var(--line-mid);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.badges li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(120,146,255,0.45), rgba(120,146,255,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.badges li:hover {
  transform: translateY(-3px);
  border-color: rgba(120,146,255,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 14px 34px -18px rgba(46,91,255,0.7);
}
.badges li:hover::before { opacity: 1; }
.badges__ico {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--blue-ice);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(46,91,255,0.18), rgba(46,91,255,0.06));
  border: 1px solid rgba(120,146,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.badges__ico svg {
  width: 21px; height: 21px;
  stroke-width: 1.6;
}
.badges b {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.badges small {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 3px;
  line-height: 1.35;
}

/* ─────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────── */
.pricing {
  padding: 120px 32px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(46,91,255,0.08), transparent 70%),
    var(--bg-deep);
  text-align: center;
}
.pricing__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.pricing__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.pricing__lead {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-mid);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan--featured {
  background:
    linear-gradient(180deg, rgba(78,110,255,0.12), transparent 50%),
    var(--bg-card-2);
  border-color: rgba(78,110,255,0.45);
  box-shadow:
    0 30px 80px -40px rgba(46,91,255,0.45),
    0 0 60px -20px rgba(78,110,255,0.25);
  transform: translateY(-8px);
}
.plan__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4F6BFF, #2E5BFF);
  color: #fff;
  box-shadow: 0 4px 14px rgba(46,91,255,0.6);
  white-space: nowrap;
}
.plan header small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.plan header h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  margin: 4px 0 8px;
  letter-spacing: -0.02em;
}
.plan header p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
.plan__price {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__price span {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}
.plan__price b {
  display: block;
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.plan__price b small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mute);
  margin-left: 2px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-soft);
}

/* ─────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────── */
.finalcta {
  position: relative;
  padding: 140px 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.finalcta__bg {
  position: absolute; inset: 0; z-index: -1;
}
.finalcta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,91,255,0.30) 0%, rgba(124,92,246,0.16) 38%, transparent 62%);
  filter: blur(40px);
}
.finalcta__inner {
  max-width: 820px;
  margin: 0 auto;
}
.finalcta h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.finalcta p {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 auto 40px;
  max-width: 620px;
  line-height: 1.6;
  text-wrap: pretty;
}
.finalcta__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.faq {
  padding: 120px 32px;
}
.faq__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq__intro h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.faq__intro p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  border: 1px solid var(--line-mid);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[data-open] {
  border-color: rgba(78,110,255,0.35);
  background: var(--bg-card-2);
}
.faq__item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq__chev {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(78,110,255,0.1);
  border: 1px solid var(--line-mid);
  color: var(--blue-soft);
  font-size: 16px;
  font-weight: 400;
  transition: transform .25s ease;
  flex: none;
}
.faq__item[data-open] .faq__chev {
  transform: rotate(45deg);
  background: rgba(78,110,255,0.25);
}
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq__item[data-open] .faq__body {
  grid-template-rows: 1fr;
}
.faq__body-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__body p {
  margin: 0;
  padding: 4px 24px 24px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.foot {
  padding: 80px 32px 24px;
  border-top: 1px solid var(--line);
  background: #02030a;
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.foot__brand img {
  height: 26px;
  width: auto;
  margin-bottom: 18px;
}
.foot__brand p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.6;
  max-width: 360px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.foot__cols h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 600;
  margin: 0 0 16px;
}
.foot__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__cols a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color .15s;
}
.foot__cols a:hover { color: var(--text); }

.foot__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot__bar small {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-faint);
}

/* ════════════════════════════════════════════════════════════
   SWISS / INTERNATIONAL TYPOGRAPHIC STYLE LAYER (dark)
   Vignelli Canon + Müller-Brockmann grid discipline.
   Scope: BODY sections only (.position .pillar .versus .sec .pricing .faq .finalcta).
   Hero (first section), header (.topbar), trust bar (.stack) and footer (.foot) untouched.
   ════════════════════════════════════════════════════════════ */
:root {
  --swiss-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sw-ink: #F4F6FF;
  --sw-ink-soft: #aeb7d8;
  --sw-rule: rgba(150,170,255,0.22);
  --sw-hair: rgba(150,170,255,0.14);
  --sw-accent: #4F6BFF;
  --sw-mgn: clamp(20px, 5vw, 72px);
}
main#top { counter-reset: sw; }

/* —— section shell: flat dark paper, full-width top ruler —— */
.position, .pillar, .versus, .sec, .pricing, .faq, .finalcta {
  counter-increment: sw;
  background: var(--bg-deep) !important;
  border-top: 1px solid var(--sw-rule);
  padding: 88px var(--sw-mgn) 96px !important;
}
.position::before, .versus::before, .pillar::before { display: none; }
.position__bg, .position__orb, .versus::after, .finalcta__bg, .finalcta__glow { display: none !important; }

/* —— inner containers: flush-left, wider —— */
.position__inner, .versus__inner, .pricing__inner, .faq__inner, .finalcta__inner, .sec__inner, .pillar__inner {
  max-width: 1296px !important; margin: 0 auto !important; text-align: left !important;
}

/* —— eyebrows → flat Swiss kicker labels —— */
.position .eyebrow, .pillar .eyebrow, .versus .eyebrow, .sec .eyebrow, .pricing .eyebrow, .faq .eyebrow {
  background: none !important; border: none !important; box-shadow: none !important;
  padding: 0 !important; border-radius: 0 !important; margin: 0 0 16px !important;
  font: 600 13px/1 var(--swiss-sans) !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  color: var(--sw-ink-soft) !important;
}
.eyebrow__dot, .eyebrow svg { display: none !important; }

/* —— titles: grotesque, huge, flush-left, numbered —— */
.position__title, .pillar__title, .versus__title, .sec__copy h2, .faq__intro h2, .finalcta h2 {
  font-family: var(--swiss-sans) !important;
  font-size: clamp(34px, 5.2vw, 62px) !important;
  font-weight: 700 !important; line-height: 0.98 !important;
  letter-spacing: -0.02em !important; color: var(--sw-ink) !important;
  text-align: left !important; max-width: 18ch;
}
.position__title::before, .pillar__title::before, .versus__title::before,
.sec__copy h2::before, .faq__intro h2::before, .finalcta h2::before {
  content: counter(sw, decimal-leading-zero);
  display: block; font: 600 14px/1 var(--swiss-sans);
  letter-spacing: 0.04em; color: var(--sw-accent); margin-bottom: 20px;
}
.position__sub, .pillar__lead, .versus__sub, .sec__copy p, .faq__intro p {
  font-family: var(--swiss-sans) !important; color: var(--sw-ink-soft) !important;
  font-size: 17px !important; line-height: 1.5 !important; text-align: left !important;
  max-width: 56ch; margin-left: 0 !important; margin-right: 0 !important;
}

/* —— pillar layout: keep two-up but flush, ink-correct —— */
.pillar__copy { text-align: left; }

/* —— versus: flush-left, flat hairline columns —— */
.versus__inner > .eyebrow { margin: 0 0 16px !important; }
.versus__grid { margin-top: 48px !important; gap: 0 !important; border-top: 1px solid var(--sw-hair); border-left: 1px solid var(--sw-hair); }
.vs {
  background: var(--bg-deep) !important; border: none !important;
  border-right: 1px solid var(--sw-hair) !important; border-bottom: 1px solid var(--sw-hair) !important;
  border-radius: 0 !important; box-shadow: none !important; padding: 32px !important;
}
.vs--good, .vs--bad { background: var(--bg-deep) !important; }
.vs__ribbon { border-radius: 0 !important; }
.vs h3 { font-family: var(--swiss-sans) !important; color: var(--sw-ink) !important; }

/* —— pricing: flat plans on a hairline field —— */
.plans { gap: 0 !important; border-top: 1px solid var(--sw-hair); border-left: 1px solid var(--sw-hair); margin-top: 48px; }
.plan {
  background: var(--bg-deep) !important; border: none !important;
  border-right: 1px solid var(--sw-hair) !important; border-bottom: 1px solid var(--sw-hair) !important;
  border-radius: 0 !important; box-shadow: none !important; transform: none !important;
}
.plan--featured { background: rgba(79,107,255,0.06) !important; }
.plan__ribbon { border-radius: 0 !important; }
.plan h3, .plan .plan__price { font-family: var(--swiss-sans) !important; color: var(--sw-ink) !important; }

/* —— faq: flat hairline list —— */
.faq__item {
  background: none !important; border: none !important; border-radius: 0 !important;
  border-bottom: 1px solid var(--sw-hair) !important; box-shadow: none !important;
}
.faq__q { font-family: var(--swiss-sans) !important; color: var(--sw-ink) !important; }
.faq__chev { border-radius: 0 !important; background: none !important; border: 1px solid var(--sw-hair) !important; }

/* —— security badges: flat —— */
.badge, .badges__item {
  background: none !important; border-radius: 0 !important;
  border: 1px solid var(--sw-hair) !important; box-shadow: none !important;
}

/* —— final CTA: solid accent plane, flush-left, square —— */
.finalcta__inner { text-align: left !important; }
.finalcta {
  background: var(--sw-accent) !important;
}
.finalcta h2 { color: #fff !important; }
.finalcta h2::before { color: rgba(255,255,255,0.7); }
.finalcta p { color: rgba(255,255,255,0.86) !important; text-align: left !important; margin-left: 0 !important; }

@media (max-width: 860px) {
  .position__title, .pillar__title, .versus__title, .sec__copy h2, .faq__intro h2, .finalcta h2 {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1100px) {
  .pillar__inner,
  .pillar__inner--flip,
  .sec__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pillar__inner--flip .pillar__copy { order: unset; }
  .pillar__inner--flip .mock { order: unset; }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .plan--featured { transform: none; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__inner { padding: 14px 20px; gap: 16px; grid-template-columns: auto 1fr; }
  .nav__links { display: none; }
  .demo__inner { grid-template-columns: 1fr; gap: 40px; }
  .field--row { flex-direction: column; }
  .hero { padding: 80px 20px 60px; }
  .hero__bullets { gap: 16px; }
  .demo, .position, .pillar, .versus, .how, .cases, .sec, .pricing, .finalcta, .faq {
    padding-left: 20px; padding-right: 20px;
    padding-top: 80px; padding-bottom: 80px;
  }
  .versus__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .pillar__list li { grid-template-columns: 1fr; gap: 4px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .console { grid-template-columns: 1fr; }
  .console__side { border-right: none; border-bottom: 1px solid var(--line); }
}
