/* WebNule — system wizualny: cyfrowe powietrze × dokumentacja techniczna */
:root {
  --navy: #07111f;
  --surface: #0b1828;
  --surface-2: #102238;
  --blue: #1677ff;
  --cyan: #35d6ed;
  --ice: #f5f9fc;
  --muted: #91a4b7;
  --line: rgba(145, 164, 183, 0.18);
  --line-strong: rgba(53, 214, 237, 0.34);
  --font-display: "Familjen Grotesk", "Arial Narrow", sans-serif;
  --font-body: "Onest", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --container: 1240px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--navy);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--cyan);
  color: var(--navy);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 130px 0;
}

.technical-grid {
  background-image:
    linear-gradient(rgba(53, 214, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 214, 237, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.technical-grid::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 35%, transparent 0, var(--navy) 78%);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--ice);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom-color: var(--line);
  background: rgba(7, 17, 31, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-crop {
  position: relative;
  display: block;
  width: 188px;
  height: 42px;
  overflow: hidden;
  isolation: isolate;
}

.brand-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-panel,
.main-nav {
  display: flex;
  align-items: center;
}

.nav-panel {
  gap: 32px;
}

.main-nav {
  gap: clamp(18px, 2.3vw, 34px);
}

.main-nav a {
  position: relative;
  color: #c2cfda;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cyan);
  transition: transform 260ms var(--ease);
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ice);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 220ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 34px rgba(22, 119, 255, 0.24);
}

.button-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.17), transparent);
  transition: transform 620ms var(--ease);
}

.button-primary:hover::before {
  transform: translateX(110%);
}

.button-primary:hover {
  background: #0d6fee;
  box-shadow: 0 18px 40px rgba(22, 119, 255, 0.34);
}

.button-compact {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(245, 249, 252, 0.02);
  color: var(--ice);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(53, 214, 237, 0.05);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--cyan);
}

.eyebrow i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.eyebrow-dark {
  color: #4a6175;
}

.eyebrow-dark span {
  color: #005ed8;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 800px;
  margin-top: 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  max-width: 500px;
  color: var(--muted);
  font-size: 17px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 90px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(53, 214, 237, 0.32), transparent);
}

.hero-aura {
  position: absolute;
  top: 8%;
  right: -14%;
  width: 68vw;
  height: 68vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.15), rgba(53, 214, 237, 0.035) 38%, transparent 68%);
  filter: blur(14px);
}

.airflow {
  position: absolute;
  pointer-events: none;
}

.airflow path,
.stage-flow path {
  fill: none;
  stroke: url(#none);
  stroke: var(--cyan);
  stroke-dasharray: 7 16;
  stroke-linecap: round;
  stroke-width: 1.1;
  opacity: 0.16;
  animation: airflow 26s linear infinite;
}

.airflow path:nth-child(2),
.stage-flow path:nth-child(2) {
  animation-duration: 34s;
  animation-direction: reverse;
  opacity: 0.09;
}

.hero-airflow {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes airflow {
  to { stroke-dashoffset: -460; }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(540px, 1.12fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hero h1 {
  max-width: 690px;
  margin-top: 24px;
  font-size: clamp(54px, 5.9vw, 86px);
  line-height: 0.91;
}

.hero h1 em {
  display: block;
  color: var(--cyan);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin-top: 30px;
  color: #afbfcd;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.cta-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.interface-stage {
  position: relative;
  min-width: 0;
  width: 100%;
  min-height: 640px;
  margin: 0;
  perspective: 1200px;
  transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0);
  transition: transform 320ms var(--ease);
}

.interface-stage figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.axis {
  position: absolute;
  z-index: 0;
  color: rgba(145, 164, 183, 0.48);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.axis::before,
.axis::after {
  position: absolute;
  content: "";
  background: rgba(53, 214, 237, 0.2);
}

.axis-x {
  top: 38px;
  right: 28px;
  left: 18px;
  border-top: 1px solid rgba(53, 214, 237, 0.13);
  text-align: center;
}

.axis-x span {
  position: relative;
  top: -11px;
  padding: 0 8px;
  background: var(--navy);
}

.axis-y {
  top: 72px;
  right: 8px;
  bottom: 45px;
  border-right: 1px solid rgba(53, 214, 237, 0.13);
}

.axis-y span {
  position: absolute;
  top: 50%;
  right: -29px;
  padding: 5px;
  transform: rotate(90deg);
  background: var(--navy);
}

.blueprint-corner {
  position: absolute;
  z-index: 0;
  width: 56px;
  height: 56px;
  border-color: rgba(53, 214, 237, 0.25);
  border-style: solid;
}

.corner-a {
  top: 15px;
  left: -2px;
  border-width: 1px 0 0 1px;
}

.corner-b {
  right: -2px;
  bottom: 14px;
  border-width: 0 1px 1px 0;
}

.hvac-browser {
  position: absolute;
  z-index: 2;
  top: 78px;
  right: 12px;
  width: 91%;
  overflow: hidden;
  border: 1px solid rgba(145, 164, 183, 0.28);
  background: #eaf1f5;
  box-shadow: var(--shadow), 0 0 0 1px rgba(53, 214, 237, 0.05) inset;
  transform: rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 600ms var(--ease);
}

.interface-stage:hover .hvac-browser {
  transform: rotateY(-1deg) rotateX(0deg) translateY(-4px);
}

.browser-top {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid #d4dee5;
  background: #f8fbfd;
  color: #63788a;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.05em;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bac8d1;
}

.browser-top b {
  font-weight: 500;
}

.browser-page {
  min-height: 410px;
  background: #eff4f7;
  color: #101e2a;
}

.demo-nav {
  display: flex;
  height: 49px;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid #d8e2e8;
  font-size: 7px;
}

.demo-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.demo-logo i {
  width: 14px;
  height: 14px;
  border: 4px solid #1677ff;
  border-left-color: #35d6ed;
  border-radius: 50%;
}

.demo-logo span {
  color: #1677ff;
}

.demo-links {
  display: flex;
  gap: 18px;
  color: #607487;
}

.demo-phone {
  padding: 6px 9px;
  background: #0b1a2a;
  color: #fff;
}

.demo-hero {
  display: grid;
  min-height: 292px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  padding: 28px 32px 18px;
}

.demo-hero-copy small {
  color: #1677ff;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.demo-hero-copy strong {
  display: block;
  max-width: 290px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.demo-hero-copy p {
  margin-top: 12px;
  color: #627689;
  font-size: 8px;
  line-height: 1.5;
}

.demo-button {
  display: inline-flex;
  gap: 16px;
  margin-top: 18px;
  padding: 10px 13px;
  background: #1677ff;
  color: #fff;
  font-size: 7px;
  font-weight: 600;
}

.demo-machine {
  position: relative;
  display: flex;
  height: 200px;
  align-items: center;
  justify-content: center;
}

.demo-machine svg {
  position: absolute;
  top: 20px;
  right: -17px;
  width: 110%;
}

.demo-machine svg path {
  fill: none;
  stroke: #35d6ed;
  stroke-dasharray: 3 6;
  stroke-linecap: round;
  stroke-width: 1.2;
  animation: airflow 18s linear infinite;
}

.ac-unit {
  position: relative;
  width: 176px;
  height: 54px;
  border-radius: 5px 5px 10px 10px;
  background: linear-gradient(#fff, #e7eff3);
  box-shadow: 0 16px 30px rgba(19, 50, 69, 0.15);
}

.ac-unit::after {
  position: absolute;
  right: 12px;
  bottom: 8px;
  left: 12px;
  height: 3px;
  content: "";
  border-radius: 20px;
  background: #c3d2da;
}

.ac-unit span {
  position: absolute;
  top: 12px;
  left: 15px;
  width: 20px;
  height: 3px;
  background: #1677ff;
}

.ac-unit i {
  position: absolute;
  top: 14px;
  right: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #35d6ed;
  box-shadow: 0 0 6px #35d6ed;
}

.ac-unit b {
  position: absolute;
  right: 17px;
  bottom: -44px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 50%;
  background: #fff;
  color: #1677ff;
  font-family: var(--font-mono);
  font-size: 10px;
}

.demo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d5e1e8;
  background: #f8fbfc;
}

.demo-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-right: 1px solid #d5e1e8;
  font-size: 7px;
  font-weight: 600;
}

.demo-strip b {
  color: #1677ff;
  font-family: var(--font-mono);
  font-size: 6px;
}

.quote-fragment,
.area-fragment {
  position: absolute;
  z-index: 4;
  background: rgba(10, 26, 43, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.quote-fragment {
  right: -8px;
  bottom: 10px;
  width: 238px;
  padding: 18px;
  border-top: 2px solid var(--blue);
}

.quote-fragment > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.quote-fragment > strong {
  display: block;
  margin: 17px 0 11px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.1;
}

.quote-fragment label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: #c5d1da;
  font-size: 8px;
}

.quote-fragment label i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.quote-fragment button {
  width: 100%;
  margin-top: 13px;
  padding: 9px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-size: 8px;
  text-align: left;
}

.quote-fragment button span {
  float: right;
}

.area-fragment {
  bottom: 44px;
  left: -12px;
  width: 158px;
  padding: 14px;
  border-left: 2px solid var(--cyan);
}

.area-fragment > span,
.area-fragment small {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.07em;
}

.area-fragment > span {
  color: var(--cyan);
}

.area-fragment small {
  display: block;
  color: var(--muted);
  text-align: center;
}

.radar {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 10px auto 6px;
  border: 1px solid rgba(53, 214, 237, 0.22);
  border-radius: 50%;
}

.radar i {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(53, 214, 237, 0.2);
  border-radius: 50%;
}

.radar i + i {
  inset: 26px;
}

.radar b {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.stage-flow {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.air-tag {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(53, 214, 237, 0.26);
  background: rgba(7, 17, 31, 0.85);
  color: #a8bac8;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.07em;
}

.air-tag i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.tag-offer { top: 53px; left: 33%; }
.tag-area { bottom: 120px; left: -2px; }
.tag-quote { right: 2px; bottom: 230px; }

/* Jasna diagnostyka */
.section-light {
  position: relative;
  z-index: 2;
  padding: 104px 0 108px;
  background:
    linear-gradient(rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.045) 1px, transparent 1px),
    var(--ice);
  background-size: 40px 40px;
  color: var(--navy);
}

.diagnosis-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.diagnosis h2 {
  margin-top: 0;
  font-size: clamp(40px, 5.2vw, 70px);
}

.diagnostic-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid #b9c7d2;
  border-bottom: 1px solid #b9c7d2;
}

.diagnostic-line::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 33.333%;
  height: 3px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 18px rgba(22, 119, 255, 0.35);
}

.diagnostic-line article {
  min-height: 240px;
  padding: 30px 34px 32px 0;
}

.diagnostic-line article + article {
  padding-left: 34px;
  border-left: 1px solid #cbd5dc;
}

.diagnostic-code {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #617588;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.diagnostic-code span {
  color: var(--blue);
  font-size: 14px;
}

.diagnostic-code i {
  width: 28px;
  height: 1px;
  background: #91a4b7;
}

.diagnostic-code b {
  font-weight: 500;
}

.diagnostic-line h3 {
  max-width: 310px;
  margin-top: 38px;
  font-size: 25px;
  line-height: 1.05;
}

.diagnostic-line p {
  max-width: 340px;
  margin-top: 14px;
  color: #4b6072;
  font-size: 15px;
}

/* Ścieżka decyzji */
.decision-flow {
  overflow: hidden;
  background: var(--navy);
}

.flow-process {
  position: relative;
  min-height: 310px;
}

.flow-process > svg {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 160px;
  overflow: visible;
}

.flow-process path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.flow-base {
  stroke: rgba(145, 164, 183, 0.17);
  stroke-width: 2;
}

.flow-live {
  stroke: var(--cyan);
  stroke-dasharray: 4 14;
  stroke-linecap: round;
  stroke-width: 1.5;
  animation: airflow 22s linear infinite;
  filter: drop-shadow(0 0 5px rgba(53, 214, 237, 0.35));
}

.flow-process ol {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flow-process li {
  display: grid;
  min-height: 270px;
  grid-template-rows: 40px 72px auto;
  align-content: start;
}

.flow-process li:nth-child(even) {
  padding-top: 64px;
}

.flow-process li > span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 11px;
}

.flow-process li > i {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 7px rgba(53, 214, 237, 0.05);
}

.flow-process li > i::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.flow-process strong {
  max-width: 235px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
}

.flow-process p {
  max-width: 250px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Interaktywny przekrój */
.benefits {
  overflow: clip;
  background-color: #081522;
}

.benefit-system {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(540px, 1.16fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-item {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 38px 1fr;
  gap: 0 13px;
  padding: 17px 8px 17px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ice);
  cursor: pointer;
  text-align: left;
  transition: padding 260ms var(--ease), background 260ms ease;
}

.feature-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  transform: scaleY(0);
  background: var(--cyan);
  transition: transform 260ms var(--ease);
}

.feature-item:hover,
.feature-item.is-active {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(53, 214, 237, 0.07), transparent 70%);
}

.feature-item.is-active::before {
  transform: scaleY(1);
}

.feature-item > span {
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 10px;
}

.feature-item strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.feature-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.site-blueprint {
  position: sticky;
  top: 105px;
  border: 1px solid rgba(53, 214, 237, 0.22);
  background: #07131f;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.blueprint-toolbar,
.blueprint-legend {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #71889a;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.09em;
}

.blueprint-toolbar {
  border-bottom: 1px solid var(--line);
}

.blueprint-toolbar > span {
  display: flex;
  gap: 4px;
}

.blueprint-toolbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #365065;
}

.blueprint-toolbar b,
.blueprint-toolbar em {
  font-style: normal;
  font-weight: 400;
}

.blueprint-screen {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 58px 158px 92px 114px 48px;
  gap: 1px;
  padding: 1px;
  background: rgba(145, 164, 183, 0.14);
}

.bp-zone {
  position: relative;
  overflow: hidden;
  padding: 15px;
  background: #0a1928;
  transition: background 320ms ease, box-shadow 320ms ease, color 320ms ease;
}

.bp-zone::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 320ms ease;
}

.bp-zone.is-highlighted {
  z-index: 2;
  background: rgba(22, 119, 255, 0.16);
  box-shadow: 0 0 34px rgba(22, 119, 255, 0.12) inset;
}

.bp-zone.is-highlighted::after {
  border-color: var(--cyan);
}

.bp-zone small,
.bp-zone > span,
.bp-zone > b {
  color: #668097;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.07em;
}

.bp-zone strong {
  font-family: var(--font-display);
}

.bp-identity {
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: space-between;
}

.bp-identity strong {
  display: block;
  color: var(--ice);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.bp-identity > span {
  padding: 7px 11px;
  background: var(--blue);
  color: #fff;
}

.bp-hero {
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
}

.bp-hero strong {
  display: block;
  max-width: 310px;
  margin-top: 9px;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 0.95;
}

.bp-hero p {
  margin-top: 8px;
  color: #7690a5;
  font-size: 8px;
}

.bp-device {
  position: relative;
  width: 130px;
  height: 42px;
  border-radius: 4px 4px 8px 8px;
  background: linear-gradient(#eff6f8, #afc3ce);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.35);
}

.bp-device i {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 2px;
  background: #6d8493;
}

.bp-device b {
  position: absolute;
  top: -18px;
  right: -13px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-family: var(--font-mono);
  font-size: 7px;
}

.bp-services {
  grid-column: 1 / 3;
}

.bp-services div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.bp-services span {
  padding-top: 11px;
  color: #b8c6d1;
  font-family: var(--font-display);
  font-size: 13px;
}

.bp-area {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
}

.bp-area small {
  grid-column: 1 / 3;
}

.bp-map {
  position: relative;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(53, 214, 237, 0.2);
  border-radius: 50%;
}

.bp-map i {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(53, 214, 237, 0.2);
  border-radius: 50%;
}

.bp-map i + i { inset: 21px; }
.bp-map b { position: absolute; top: 25px; left: 25px; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.bp-area strong { font-size: 13px; }

.bp-proof > div {
  display: grid;
  height: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 8px;
}

.bp-proof i { background: linear-gradient(135deg, #17364c, #0d2537); }

.bp-contact {
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: space-between;
  background: #0d2033;
}

.bp-contact strong { display: block; margin-top: 3px; font-size: 14px; }
.bp-contact > span { padding: 8px 11px; border: 1px solid var(--blue); color: #fff; }

.bp-footer,
.bp-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-footer { grid-column: 1 / 2; }
.bp-support { grid-column: 2 / 3; }
.bp-footer b { color: var(--cyan); }
.bp-support b { color: #b6c6d2; }

.blueprint-legend {
  border-top: 1px solid var(--line);
}

.blueprint-legend > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.blueprint-legend i {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.blueprint-legend b {
  color: var(--cyan);
  font-weight: 500;
}

/* Projekt demonstracyjny */
.demo-section {
  background: #091624;
}

.demo-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.state-switch {
  display: flex;
  border: 1px solid var(--line);
  padding: 4px;
}

.state-switch button {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  transition: background 220ms ease, color 220ms ease;
}

.state-switch button:hover { color: var(--ice); }
.state-switch button.is-active { background: var(--blue); color: #fff; }

.demo-workbench {
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(53, 214, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 214, 237, 0.03) 1px, transparent 1px),
    #07121e;
  background-size: 36px 36px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.workbench-meta {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #6e8497;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.workbench-meta b { color: var(--cyan); font-weight: 500; }

.demo-state {
  display: none;
  min-height: 610px;
  grid-template-columns: minmax(520px, 1fr) 190px 220px;
  gap: 28px;
  align-items: end;
  padding: 50px;
  animation: state-in 420ms var(--ease);
}

.demo-state.is-active { display: grid; }

@keyframes state-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.demo-desktop {
  align-self: center;
  min-height: 460px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.old-site {
  padding: 20px;
  border: 7px solid #c5c5c5;
  background: #f0f0ed;
  color: #333;
  font-family: Arial, sans-serif;
}

.old-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 3px solid #236f9e;
  background: #fff;
}

.old-top b { color: #236f9e; font-size: 21px; }
.old-top span { font-size: 9px; }

.old-banner {
  display: grid;
  min-height: 230px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 26px;
  background: linear-gradient(90deg, #d9e5ea, #eef1f1);
}

.old-banner strong { font-size: 28px; line-height: 1.2; }
.old-banner p { margin-top: 13px; font-size: 12px; }

.old-unit {
  width: 155px;
  height: 52px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.old-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 12px;
}

.old-columns > div { padding: 13px; border: 1px solid #d0d0d0; background: #fff; }
.old-columns b { color: #236f9e; font-size: 13px; }
.old-columns p { min-height: 55px; margin-top: 8px; font-size: 9px; line-height: 1.4; }
.old-columns a { color: #236f9e; font-size: 8px; text-decoration: underline; }

.demo-phone {
  min-height: 400px;
  padding: 16px;
  border: 7px solid #0a1016;
  border-radius: 25px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
}

.old-phone { background: #f1f1ef; color: #333; font-family: Arial, sans-serif; }
.old-phone > b { color: #236f9e; font-size: 15px; }
.old-phone > span { float: right; padding: 3px; border: 1px solid #999; font-size: 6px; }
.old-phone > strong { display: block; margin-top: 70px; font-size: 21px; line-height: 1.15; }
.old-phone > p { margin-top: 13px; font-size: 9px; }
.old-phone > i { display: block; width: 120px; height: 40px; margin: 45px auto 35px; border-radius: 3px; background: white; box-shadow: 0 8px 14px rgba(0,0,0,.15); }
.old-phone > small { display: block; color: #777; font-size: 7px; text-align: center; }

.demo-detail {
  min-height: 360px;
  padding: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.old-detail { background: #fff; color: #333; font-family: Arial, sans-serif; }
.old-detail > span { display: block; margin-bottom: 10px; border-bottom: 1px solid #bbb; color: #236f9e; font-size: 10px; font-weight: 700; }
.old-detail p { margin-bottom: 45px; font-size: 11px; line-height: 2; }
.old-detail div { display: grid; gap: 9px; }
.old-detail div i { height: 27px; border: 1px solid #bbb; }

.new-site {
  border: 1px solid rgba(53, 214, 237, 0.14);
  background: #eaf1f4;
  color: #0a1928;
}

.new-nav {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: #f7fafb;
  font-size: 8px;
}

.new-nav > b { font-size: 13px; }
.new-nav > b span { color: var(--blue); }
.new-nav > div { color: #657889; }
.new-nav > i { padding: 7px 11px; background: #0b1a29; color: #fff; font-style: normal; }

.new-hero {
  display: grid;
  min-height: 264px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 32px 34px;
}

.new-hero small { color: var(--blue); font-family: var(--font-mono); font-size: 6px; letter-spacing: .1em; }
.new-hero strong { display: block; margin-top: 9px; font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 43px); line-height: .9; }
.new-hero p { margin-top: 12px; color: #607588; font-size: 8px; }
.new-hero > div > span { display: inline-block; margin-top: 17px; padding: 9px 12px; background: var(--blue); color: #fff; font-size: 7px; font-weight: 600; }

.new-unit { position: relative; display: flex; height: 170px; align-items: center; justify-content: center; }
.new-unit svg { position: absolute; top: 0; right: -15px; width: 115%; }
.new-unit path { fill: none; stroke: var(--cyan); stroke-dasharray: 3 6; animation: airflow 18s linear infinite; }
.new-unit i { position: relative; width: 150px; height: 45px; border-radius: 4px 4px 9px 9px; background: linear-gradient(#fff,#cfdce2); box-shadow: 0 14px 26px rgba(0,0,0,.15); }

.new-offer { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid #d1dde3; background: #f8fafb; }
.new-offer span { padding: 13px 17px; border-right: 1px solid #d1dde3; font-family: var(--font-display); font-size: 11px; }
.new-offer b { margin-right: 8px; color: var(--blue); font-family: var(--font-mono); font-size: 6px; }

.new-gallery { display: grid; min-height: 115px; grid-template-columns: .8fr .8fr 1.4fr; gap: 1px; background: #d1dde3; }
.new-gallery > div { position: relative; padding: 14px; background: #dbe5e9; }
.new-gallery > div > i { position: absolute; inset: 0; background: linear-gradient(135deg, #9db5c0, #d8e4e9); }
.new-gallery > div > span { position: absolute; bottom: 8px; left: 9px; z-index: 2; padding: 3px 5px; background: rgba(7,17,31,.8); color: #fff; font-size: 6px; }
.new-gallery .new-form { display: flex; flex-direction: column; justify-content: center; padding: 18px; background: #0b1928; color: #fff; }
.new-form small { color: var(--cyan); font-family: var(--font-mono); font-size: 6px; }
.new-form b { margin-top: 6px; font-family: var(--font-display); font-size: 13px; }
.new-form span { margin-top: 8px; color: #a9bdca; font-size: 7px; }

.new-phone { background: #eaf1f4; color: #091725; }
.new-phone > div { display: flex; align-items: center; justify-content: space-between; }
.new-phone > div b { font-size: 12px; }
.new-phone > div b span { color: var(--blue); }
.new-phone > div > i { width: 13px; height: 8px; border-block: 1px solid #0a1928; }
.new-phone > small { display: block; margin-top: 62px; color: var(--blue); font-family: var(--font-mono); font-size: 6px; }
.new-phone > strong { display: block; margin-top: 12px; font-family: var(--font-display); font-size: 27px; line-height: .9; }
.new-phone > p { margin-top: 12px; color: #667d8e; font-size: 9px; }
.new-phone > span { display: block; margin-top: 24px; padding: 10px; background: var(--blue); color: #fff; font-size: 8px; text-align: center; }
.mini-services { display: grid !important; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 47px; background: #c9d5dc; }
.mini-services i { padding: 11px; background: #f7fafb; color: var(--blue); font-family: var(--font-mono); font-size: 7px; font-style: normal; }

.new-detail { border-top: 2px solid var(--cyan); background: #0b1b2b; color: #fff; }
.new-detail > span { color: var(--cyan); font-family: var(--font-mono); font-size: 7px; }
.detail-map { position: relative; width: 88px; height: 88px; margin: 16px auto; border: 1px solid rgba(53,214,237,.25); border-radius: 50%; }
.detail-map i { position: absolute; inset: 17px; border: 1px solid rgba(53,214,237,.23); border-radius: 50%; }
.detail-map b { position: absolute; top: 41px; left: 41px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.new-detail > strong { display: block; margin: 20px 0 8px; font-family: var(--font-display); font-size: 17px; line-height: 1; }
.new-detail label { display: block; margin-top: 7px; padding: 8px; border: 1px solid var(--line); color: #71889a; font-size: 7px; }
.new-detail button { width: 100%; margin-top: 8px; padding: 9px; border: 0; background: var(--blue); color: #fff; font-size: 8px; text-align: left; }

/* Proces */
.process-section { overflow: hidden; background-color: var(--navy); }

.process-plan {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-plan li {
  position: relative;
  min-height: 350px;
  padding: 26px 28px 36px;
}

.process-plan li + li { border-left: 1px solid var(--line); }
.process-plan li > span { color: rgba(53,214,237,.16); font-family: var(--font-display); font-size: 78px; font-weight: 600; line-height: 1; letter-spacing: -.05em; }
.process-plan small { color: var(--cyan); font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; }
.process-plan h3 { margin-top: 12px; font-size: 27px; line-height: 1.02; }
.process-plan p { margin-top: 14px; color: var(--muted); font-size: 14px; }
.process-plan li > i { position: absolute; right: -5px; bottom: -5px; width: 9px; height: 9px; border: 1px solid var(--cyan); background: var(--navy); }

/* Specjalizacja */
.specialization { overflow: hidden; background: #0a1725; }

.specialization-layout {
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(480px, 1.1fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.specialization-visual { position: relative; aspect-ratio: 1; }
.specialization-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.specialization-visual svg path { fill: none; stroke: var(--cyan); stroke-dasharray: 5 13; stroke-linecap: round; stroke-width: 1; opacity: .35; animation: airflow 26s linear infinite; }
.specialization-visual svg path:nth-child(2) { opacity: .22; animation-direction: reverse; }
.specialization-visual svg path:nth-child(3) { opacity: .13; }

.air-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 145px; height: 145px; place-content: center; transform: translate(-50%,-50%); border: 1px solid var(--cyan); border-radius: 50%; background: rgba(7,17,31,.92); box-shadow: 0 0 60px rgba(22,119,255,.17); text-align: center; }
.air-core span { font-family: var(--font-display); font-size: 32px; font-weight: 600; line-height: 1; }
.air-core small { margin-top: 5px; color: var(--cyan); font-family: var(--font-mono); font-size: 7px; letter-spacing: .08em; }
.air-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(53,214,237,.13); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 280px; height: 280px; }
.ring-two { width: 430px; height: 430px; }
.ring-one::before, .ring-two::before { position: absolute; top: 50%; left: -3px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); content: ""; }
.ring-one::before { animation: orbit 12s linear infinite; transform-origin: 143px 0; }
.ring-two::before { animation: orbit 18s linear infinite reverse; transform-origin: 218px 0; }
@keyframes orbit { to { transform: rotate(360deg); } }

.spec-tag { position: absolute; padding: 5px 8px; border: 1px solid var(--line); background: var(--navy); color: var(--muted); font-family: var(--font-mono); font-size: 7px; letter-spacing: .1em; }
.spec-a { top: 15%; left: 10%; }
.spec-b { top: 28%; right: 6%; }
.spec-c { bottom: 14%; left: 20%; }

.specialization-copy h2 { max-width: 670px; }
.specialization-lead { max-width: 650px; margin-top: 26px; color: var(--muted); font-size: 17px; }
.specialization-copy ul { margin-top: 44px; border-top: 1px solid var(--line); }
.specialization-copy li { display: grid; grid-template-columns: 40px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specialization-copy li > span { color: var(--cyan); font-family: var(--font-mono); font-size: 9px; }
.specialization-copy li p { color: #9bafbe; font-size: 14px; }
.specialization-copy li strong { color: var(--ice); font-weight: 600; }

/* FAQ */
.faq-section { background: var(--navy); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(70px, 10vw, 150px); align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq-intro h2 { font-size: clamp(43px, 5vw, 65px); }
.faq-intro > p:last-child { max-width: 420px; margin-top: 25px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 22px; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.15; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.faq-list summary i::before, .faq-list summary i::after { position: absolute; top: 10px; left: 3px; width: 16px; height: 1px; background: var(--cyan); content: ""; transition: transform 240ms ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--cyan); }
.faq-list details > div { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 360ms var(--ease), opacity 280ms ease; }
.faq-list details[open] > div { grid-template-rows: 1fr; opacity: 1; }
.faq-list details > div p { max-width: 650px; overflow: hidden; padding: 0 50px 0 0; color: var(--muted); }
.faq-list details[open] > div p { padding-bottom: 28px; }

/* Kontakt */
.contact-section { overflow: hidden; padding-top: 150px; background-color: #06101d; }
.contact-section::after { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); content: ""; opacity: .35; }
.contact-airflow { z-index: 0; inset: 0; width: 100%; height: 100%; }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(360px, .86fr) minmax(540px, 1.14fr); gap: clamp(60px, 9vw, 120px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { max-width: 630px; font-size: clamp(50px, 6vw, 76px); }
.contact-copy > p:not(.eyebrow):not(.direct-contact) { max-width: 560px; margin-top: 27px; color: #afbfcb; font-size: 17px; }
.contact-spec { display: grid; grid-template-columns: 92px 1fr; margin-top: 42px; border-top: 1px solid var(--line); }
.contact-spec span, .contact-spec p { padding: 11px 0; border-bottom: 1px solid var(--line); }
.contact-spec span { color: var(--cyan); font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.contact-spec p { color: #b6c6d2; font-size: 13px; }
.direct-contact { margin-top: 30px; color: var(--muted); font-size: 13px; }
.direct-contact a { color: var(--ice); text-underline-offset: 5px; }

.form-panel { border: 1px solid rgba(53,214,237,.22); background: rgba(11,24,40,.95); box-shadow: var(--shadow); }
.form-panel-head { display: grid; height: 52px; grid-template-columns: 1fr auto 12px; gap: 18px; align-items: center; padding: 0 24px; border-bottom: 1px solid var(--line); color: #7690a4; font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.form-panel-head b { color: var(--cyan); font-weight: 500; }
.form-panel-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.contact-form { position: relative; padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
.field label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; color: #c4d0d9; font-size: 12px; font-weight: 500; }
.field label span { color: var(--cyan); }
.field label em { color: #71889a; font-family: var(--font-mono); font-size: 7px; font-style: normal; letter-spacing: .05em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(145,164,183,.23); border-radius: 0; outline: 0; background: #081522; color: var(--ice); transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.field input, .field select { height: 49px; padding: 0 13px; }
.field textarea { min-height: 116px; padding: 12px 13px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px; background-repeat: no-repeat; background-size: 5px 5px, 5px 5px; }
.field input::placeholder, .field textarea::placeholder { color: #587085; opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(145,164,183,.4); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); background: #091827; box-shadow: 0 0 0 3px rgba(53,214,237,.08); }
.field [aria-invalid="true"] { border-color: #ff6f76; }
.field > small, .consent-field > small, .field-meta small { display: block; min-height: 16px; margin-top: 4px; color: #ff9298; font-size: 10px; }
.field-meta { display: flex; justify-content: space-between; }
.field-meta > span { margin-top: 5px; color: #637a8e; font-family: var(--font-mono); font-size: 8px; }

.consent-field { display: grid; grid-template-columns: 18px 1fr; gap: 0 10px; margin: 4px 0 22px; }
.consent-field input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--blue); }
.consent-field label { color: #899faf; font-size: 11px; line-height: 1.55; }
.consent-field a { color: #d4e0e8; text-underline-offset: 3px; }
.consent-field small { grid-column: 2; }
.form-submit { width: 100%; }
.form-submit i { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin 700ms linear infinite; }
.form-submit[aria-busy="true"] svg { display: none; }
.form-submit[aria-busy="true"] i { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-footnote { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 13px; color: #647b8e; font-size: 10px; }
.form-footnote span { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }
.form-message { margin-bottom: 20px; padding: 13px 15px; border-left: 2px solid var(--cyan); background: rgba(53,214,237,.07); color: #c6f7fd; font-size: 12px; }
.form-message.is-error { border-left-color: #ff6f76; background: rgba(255,111,118,.08); color: #ffc2c5; }
.form-message.is-success { border-left-color: #49dc9b; background: rgba(73,220,155,.08); color: #bdf5dc; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

/* Stopka */
.site-footer { border-top: 1px solid var(--line); background: #050d17; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 70px; padding: 70px 0; }
.footer-brand p { max-width: 350px; margin-top: 18px; color: var(--muted); font-size: 14px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-nav > span, .footer-contact > span { margin-bottom: 8px; color: var(--cyan); font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; }
.footer-nav a, .footer-contact a { color: #b0bfca; font-size: 13px; text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--ice); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); color: #607588; font-family: var(--font-mono); font-size: 8px; letter-spacing: .08em; }
.footer-bottom b { font-weight: 400; }

.mobile-cta { position: fixed; z-index: 90; right: 12px; bottom: 12px; left: 12px; display: none; min-height: 50px; align-items: center; justify-content: space-between; padding: 0 18px; transform: translateY(140%); background: var(--blue); box-shadow: 0 16px 40px rgba(0,0,0,.35); color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; transition: transform 320ms var(--ease); }
.mobile-cta.is-visible { transform: translateY(0); }
.noscript { position: fixed; z-index: 999; right: 0; bottom: 0; left: 0; padding: 12px; background: #fff3c4; color: #2c2500; font-size: 13px; text-align: center; }

/* Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease) var(--reveal-delay, 0ms), transform 700ms var(--ease) var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Strona polityki prywatności */
.legal-page { min-height: 100vh; background: var(--navy); }
.legal-header { position: static; border-bottom: 1px solid var(--line); }
.legal-main { padding: 75px 0 110px; }
.legal-main article { max-width: 820px; }
.legal-main h1 { margin: 18px 0 24px; font-size: clamp(48px, 7vw, 76px); line-height: .95; }
.legal-main h2 { margin: 45px 0 14px; font-size: 29px; line-height: 1.1; }
.legal-main p, .legal-main li { color: #a9bbc8; }
.legal-main ul { margin: 14px 0; padding-left: 20px; list-style: disc; }
.legal-note { margin: 28px 0; padding: 17px; border-left: 2px solid var(--cyan); background: rgba(53,214,237,.06); }
.legal-back { display: inline-flex; margin-top: 40px; color: var(--cyan); text-underline-offset: 4px; }

@media (max-width: 1180px) {
  .hero-layout { grid-template-columns: .9fr 1.1fr; gap: 25px; }
  .hero h1 { font-size: clamp(52px, 6.2vw, 73px); }
  .interface-stage { min-height: 580px; }
  .hvac-browser { top: 80px; }
  .quote-fragment { right: -4px; }
  .demo-state { grid-template-columns: minmax(460px,1fr) 170px 190px; gap: 20px; padding: 35px; }
  .contact-layout { gap: 65px; }
}

@media (max-width: 1020px) {
  :root { --header-height: 70px; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .section { padding: 105px 0; }
  .menu-toggle { display: block !important; }
  .nav-panel { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 25px; padding: 38px 18px; transform: translateX(105%); background: rgba(7,17,31,.985); transition: transform 320ms var(--ease); }
  .nav-panel.is-open { transform: translateX(0); }
  .main-nav { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 24px; }
  .nav-panel .button { width: 100%; }

  .hero { min-height: auto; padding-top: 135px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 770px; }
  .hero h1 { max-width: 790px; font-size: clamp(56px, 8.2vw, 82px); }
  .interface-stage { width: min(760px, 100%); min-height: 650px; margin: 20px auto 0; }
  .demo-hero-copy strong { font-size: 42px; }

  .diagnosis-heading { grid-template-columns: 1fr; gap: 24px; }
  .diagnosis h2 { max-width: 880px; }
  .split-heading { grid-template-columns: 1fr; gap: 27px; }
  .split-heading > p { max-width: 680px; }

  .benefit-system { grid-template-columns: 1fr; }
  .feature-list { display: grid; grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .site-blueprint { position: relative; top: auto; width: min(720px,100%); margin-inline: auto; }

  .demo-state { min-height: auto; grid-template-columns: minmax(460px,1fr) 175px; }
  .demo-detail { display: none; }
  .demo-desktop { min-height: 440px; }

  .process-plan { grid-template-columns: 1fr 1fr; }
  .process-plan li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-plan li:nth-child(4) { border-top: 1px solid var(--line); }

  .specialization-layout { grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .ring-two { width: 360px; height: 360px; }
  .ring-two::before { transform-origin: 183px 0; }

  .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: relative; top: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { position: relative; top: auto; }
  .form-panel { width: min(760px,100%); }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 84px 0; }
  h2 { font-size: clamp(38px, 12vw, 54px); }
  .brand-crop { transform: scale(.94); transform-origin: left center; }

  .hero { padding: 118px 0 70px; }
  .hero h1 { margin-top: 18px; font-size: clamp(46px, 13.2vw, 68px); }
  .hero-lead { margin-top: 23px; font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .interface-stage { min-height: 505px; margin-top: 18px; }
  .axis, .air-tag { display: none; }
  .hvac-browser { top: 52px; right: 0; width: 100%; transform: none; }
  .browser-page { min-height: 320px; }
  .demo-nav { padding-inline: 15px; }
  .demo-links { display: none; }
  .demo-hero { min-height: 235px; grid-template-columns: 1.2fr .8fr; padding: 20px; }
  .demo-hero-copy strong { font-size: clamp(26px, 7vw, 36px); }
  .demo-machine { height: 160px; }
  .ac-unit { width: 110px; height: 38px; }
  .demo-strip span { padding: 10px; font-size: 6px; }
  .quote-fragment { right: 2px; bottom: 0; width: 196px; padding: 13px; }
  .quote-fragment > strong { margin-block: 11px 7px; font-size: 14px; }
  .area-fragment { bottom: 18px; left: 2px; width: 126px; padding: 10px; }
  .radar { width: 55px; height: 55px; }
  .radar i { inset: 9px; }
  .radar i + i { inset: 19px; }
  .radar b { top: 24px; left: 24px; }

  .section-light { padding: 78px 0; }
  .diagnostic-line { grid-template-columns: 1fr; margin-top: 48px; border-bottom: 0; }
  .diagnostic-line::before { width: 100%; }
  .diagnostic-line article { min-height: auto; padding: 25px 0 30px; border-bottom: 1px solid #cbd5dc; }
  .diagnostic-line article + article { padding-left: 0; border-left: 0; }
  .diagnostic-line h3 { margin-top: 20px; }

  .flow-process { min-height: auto; }
  .flow-process > svg { top: 0; left: 9px; width: 120px; height: 100%; transform: rotate(90deg); transform-origin: top left; opacity: 0; }
  .flow-process ol { grid-template-columns: 1fr; gap: 0; }
  .flow-process li, .flow-process li:nth-child(even) { position: relative; min-height: 0; grid-template-columns: 45px 1fr; grid-template-rows: 30px auto; padding: 0 0 38px; }
  .flow-process li::after { position: absolute; top: 26px; bottom: 4px; left: 9px; width: 1px; background: linear-gradient(var(--cyan), transparent); content: ""; }
  .flow-process li > span { grid-column: 2; }
  .flow-process li > i { grid-row: 1 / span 2; }
  .flow-process li > div { grid-column: 2; }
  .flow-process strong, .flow-process p { grid-column: 2; }

  .feature-list { grid-template-columns: 1fr; }
  .feature-item:nth-child(odd) { border-right: 0; }
  .feature-item small { font-size: 12px; }
  .blueprint-screen { grid-template-rows: 54px 145px 88px 105px 46px; }
  .bp-hero { padding: 18px; }
  .bp-hero strong { font-size: 23px; }
  .bp-device { width: 95px; height: 34px; }
  .bp-contact strong { font-size: 12px; }
  .bp-footer, .bp-support { overflow: hidden; padding: 8px; }

  .demo-heading { display: block; }
  .state-switch { margin-top: 28px; }
  .state-switch button { flex: 1; }
  .demo-state { display: none; grid-template-columns: 1fr; padding: 18px; }
  .demo-state.is-active { display: grid; }
  .demo-desktop { min-height: 385px; }
  .demo-phone { display: none; }
  .workbench-meta { height: auto; min-height: 46px; gap: 15px; padding-block: 10px; }
  .workbench-meta span { max-width: 65%; }
  .old-site { padding: 10px; border-width: 4px; }
  .old-top span { display: none; }
  .old-banner { min-height: 200px; padding: 18px; }
  .old-banner strong { font-size: 22px; }
  .old-unit { width: 95px; height: 36px; }
  .old-columns > div { padding: 9px; }
  .old-columns p { min-height: 73px; font-size: 8px; }
  .new-hero { min-height: 225px; padding: 20px; }
  .new-hero strong { font-size: 30px; }
  .new-unit i { width: 100px; height: 34px; }
  .new-gallery { min-height: 100px; }

  .process-plan { grid-template-columns: 1fr; }
  .process-plan li { min-height: 270px; padding-inline: 20px; }
  .process-plan li + li { border-top: 1px solid var(--line); border-left: 0; }
  .process-plan li > span { font-size: 62px; }

  .specialization-layout { grid-template-columns: 1fr; }
  .specialization-visual { width: min(470px,100%); margin-inline: auto; }
  .ring-two { width: min(78vw,360px); height: min(78vw,360px); }
  .ring-one { width: min(58vw,270px); height: min(58vw,270px); }
  .ring-two::before, .ring-one::before { display: none; }

  .faq-list summary { min-height: 78px; font-size: 19px; }
  .faq-list details > div p { padding-right: 28px; }

  .contact-section { padding-top: 95px; }
  .contact-copy h2 { font-size: clamp(44px, 13vw, 62px); }
  .form-panel-head { padding-inline: 18px; }
  .contact-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding: 55px 0; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-bottom { gap: 20px; }
  .mobile-cta { display: flex; }
}

@media (max-width: 440px) {
  .eyebrow { gap: 7px; font-size: 9px; }
  .eyebrow i { display: none; }
  .hero h1 { max-width: 100%; font-size: clamp(39px, 11vw, 44px); }
  .interface-stage { min-height: 430px; }
  .hvac-browser { top: 35px; }
  .browser-top { height: 27px; }
  .demo-nav { height: 40px; }
  .demo-phone { display: none; }
  .demo-hero { min-height: 192px; padding: 15px; }
  .demo-machine { height: 120px; }
  .demo-machine svg { right: -10px; }
  .ac-unit { width: 80px; height: 29px; }
  .ac-unit b { display: none; }
  .demo-strip span { display: block; padding: 7px; }
  .demo-strip b { display: block; }
  .quote-fragment { width: 172px; }
  .quote-fragment label { padding: 5px 0; }
  .area-fragment { bottom: 4px; width: 108px; }
  .radar { display: none; }
  .area-fragment small { margin-top: 8px; }

  .blueprint-toolbar em { display: none; }
  .blueprint-screen { grid-template-columns: 1fr; grid-template-rows: 52px 132px 85px 90px 88px 50px 45px; }
  .bp-identity, .bp-hero, .bp-services, .bp-contact { grid-column: 1; }
  .bp-area, .bp-proof, .bp-footer, .bp-support { grid-column: 1; }
  .bp-device { display: none; }
  .bp-area { grid-template-columns: 55px 1fr; }
  .bp-map { width: 44px; height: 44px; }
  .bp-map i { inset: 8px; }
  .bp-map i + i { inset: 17px; }
  .bp-map b { top: 19px; left: 19px; }
  .bp-proof > div { height: 45px; }
  .blueprint-legend b { max-width: 48%; text-align: right; }

  .demo-desktop { min-height: 350px; }
  .old-banner { grid-template-columns: 1fr; }
  .old-unit { display: none; }
  .old-columns { gap: 4px; }
  .old-columns > div { padding: 6px; }
  .old-columns b { font-size: 9px; }
  .old-columns p { font-size: 6px; }
  .new-nav div { display: none; }
  .new-hero { min-height: 205px; grid-template-columns: 1.3fr .7fr; padding: 15px; }
  .new-hero strong { font-size: 25px; }
  .new-unit i { width: 74px; height: 25px; }
  .new-offer span { padding: 8px; font-size: 8px; }
  .new-gallery { grid-template-columns: .7fr .7fr 1.6fr; }

  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* ================================================================
   Przebudowane segmenty 1, 3, 4 i 5
   ================================================================ */

/* 01 / Hero — techniczne stanowisko projektowe */
.hero-v2 {
  display: block;
  min-height: 980px;
  padding: calc(var(--header-height) + 52px) 0 86px;
}

.hero-v2-glow {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 62vw;
  height: 62vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.15), rgba(53, 214, 237, 0.035) 40%, transparent 69%);
  filter: blur(18px);
}

.hero-v2-air {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-v2-shell {
  position: relative;
  z-index: 2;
}

.hero-v2-index {
  display: grid;
  height: 44px;
  grid-template-columns: 36px 70px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #70879a;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.hero-v2-index span {
  color: var(--cyan);
  font-size: 11px;
}

.hero-v2-index i {
  height: 1px;
  background: var(--line-strong);
}

.hero-v2-index b,
.hero-v2-index em {
  font-style: normal;
  font-weight: 400;
}

.hero-v2-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(590px, 1.18fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.hero-v2-copy {
  min-width: 0;
}

.hero-v2 h1 {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(58px, 6vw, 86px);
  line-height: 0.9;
}

.hero-v2 h1 em {
  display: block;
  color: var(--cyan);
  font-style: normal;
  font-weight: 500;
}

.hero-v2-lead {
  max-width: 590px;
  margin-top: 28px;
  color: #afbfcd;
  font-size: clamp(16px, 1.35vw, 18px);
}

.hero-v2-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-v2-signals li {
  min-width: 0;
  padding: 14px 12px 16px 0;
}

.hero-v2-signals li + li {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.hero-v2-signals small {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 8px;
}

.hero-v2-signals span {
  color: #95a9b8;
  font-size: 10px;
  line-height: 1.4;
}

.hero-console {
  position: relative;
  min-width: 0;
  min-height: 660px;
  margin: 0;
  transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0);
  transition: transform 350ms var(--ease);
}

.hero-console figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.console-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(53, 214, 237, 0.22);
  background:
    linear-gradient(rgba(53, 214, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 214, 237, 0.03) 1px, transparent 1px),
    rgba(6, 17, 29, 0.8);
  background-size: 32px 32px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.console-frame::before,
.console-frame::after {
  position: absolute;
  z-index: 7;
  width: 42px;
  height: 42px;
  border-style: solid;
  border-color: var(--cyan);
  content: "";
  opacity: 0.45;
}

.console-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.console-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.console-head {
  position: relative;
  z-index: 5;
  display: grid;
  height: 44px;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #6f8699;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.console-head b {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-weight: 400;
}

.console-head b i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.console-head em {
  font-style: normal;
}

.preview-window {
  position: absolute;
  z-index: 2;
  top: 78px;
  right: 26px;
  left: 34px;
  min-height: 442px;
  overflow: hidden;
  border: 1px solid rgba(145, 164, 183, 0.28);
  background: #eef4f6;
  color: #0b1928;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.preview-toolbar {
  display: grid;
  height: 30px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 11px;
  border-bottom: 1px solid #d4dfe5;
  background: #f9fbfc;
  color: #718493;
  font-family: var(--font-mono);
  font-size: 6px;
}

.preview-toolbar > span {
  display: flex;
  gap: 4px;
}

.preview-toolbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #afc0cb;
}

.preview-toolbar b,
.preview-toolbar em {
  font-style: normal;
  font-weight: 400;
}

.preview-toolbar em {
  justify-self: end;
}

.preview-sitebar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #d6e0e5;
  font-size: 7px;
}

.preview-sitebar strong {
  font-size: 12px;
  letter-spacing: 0.03em;
}

.preview-sitebar strong span {
  color: var(--blue);
}

.preview-sitebar p {
  color: #687c8b;
}

.preview-sitebar > i {
  padding: 7px 10px;
  background: #091a29;
  color: #fff;
  font-style: normal;
}

.preview-hero {
  display: grid;
  min-height: 292px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  padding: 30px 30px 22px;
}

.preview-copy small {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.09em;
}

.preview-copy > strong {
  display: block;
  max-width: 300px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 0.91;
}

.preview-copy p {
  max-width: 245px;
  margin-top: 12px;
  color: #627688;
  font-size: 8px;
  line-height: 1.5;
}

.preview-copy > span {
  display: inline-flex;
  gap: 18px;
  margin-top: 17px;
  padding: 9px 11px;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
  font-weight: 600;
}

.preview-device {
  position: relative;
  display: grid;
  height: 205px;
  place-items: center;
}

.preview-device svg {
  position: absolute;
  top: 0;
  right: -20px;
  width: 118%;
}

.preview-device svg path,
.console-air path {
  fill: none;
  stroke: var(--cyan);
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  stroke-width: 1.2;
  animation: airflow 23s linear infinite;
}

.preview-device > div {
  position: relative;
  width: 172px;
  height: 50px;
  border-radius: 5px 5px 10px 10px;
  background: linear-gradient(#fff, #d6e2e7);
  box-shadow: 0 15px 32px rgba(16, 50, 68, 0.18);
}

.preview-device > div::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 3px;
  border-radius: 8px;
  background: #afc2cc;
  content: "";
}

.preview-device > div i {
  position: absolute;
  top: 11px;
  right: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.preview-device > div b {
  position: absolute;
  top: -24px;
  right: -18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 8px;
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d2dee4;
  background: #f9fbfc;
}

.preview-services span {
  padding: 14px 17px;
  border-right: 1px solid #d2dee4;
  font-family: var(--font-display);
  font-size: 10px;
}

.preview-services b {
  margin-right: 9px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 6px;
}

.console-phone {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 10px;
  width: 142px;
  min-height: 250px;
  padding: 15px;
  border: 6px solid #07111f;
  border-radius: 22px;
  background: #edf3f5;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.43);
  color: #0a1a29;
}

.console-phone > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-phone > div b {
  font-size: 8px;
}

.console-phone > div b span {
  color: var(--blue);
}

.console-phone > div i {
  width: 12px;
  height: 7px;
  border-block: 1px solid #0a1a29;
}

.console-phone > small {
  display: block;
  margin-top: 37px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 5px;
}

.console-phone > strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 0.93;
}

.console-phone > p {
  margin-top: 9px;
  color: #667b8b;
  font-size: 7px;
}

.console-phone > span {
  display: block;
  margin-top: 20px;
  padding: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
  text-align: center;
}

.console-brief {
  position: absolute;
  z-index: 4;
  right: 6px;
  bottom: 6px;
  width: 220px;
  padding: 17px;
  border-top: 2px solid var(--cyan);
  background: rgba(8, 25, 42, 0.97);
  box-shadow: 0 25px 58px rgba(0, 0, 0, 0.42);
}

.console-brief > div {
  display: flex;
  justify-content: space-between;
  color: #71899c;
  font-family: var(--font-mono);
  font-size: 6px;
}

.console-brief > strong {
  display: block;
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.05;
}

.console-brief label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: #a9bbc8;
  font-size: 7px;
}

.console-brief label i {
  width: 6px;
  height: 6px;
  border: 1px solid #6e8799;
  border-radius: 50%;
}

.console-brief button {
  width: 100%;
  margin-top: 11px;
  padding: 8px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
  text-align: left;
}

.console-brief button span {
  float: right;
}

.console-rail {
  position: absolute;
  z-index: 3;
  top: 72px;
  right: -25px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: top right;
  color: #5f798c;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.console-rail i {
  width: 20px;
  height: 1px;
  background: var(--line-strong);
}

.console-air {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.console-air path {
  opacity: 0.28;
}

.console-air path + path {
  opacity: 0.14;
  animation-direction: reverse;
}

/* 03 / Pionowy tunel decyzji */
.journey-section {
  background:
    linear-gradient(90deg, rgba(53, 214, 237, 0.025) 1px, transparent 1px),
    #07111f;
  background-size: 25% 100%;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.journey-intro {
  position: sticky;
  top: 118px;
}

.journey-intro h2 {
  margin-top: 20px;
  font-size: clamp(44px, 5vw, 66px);
}

.journey-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 16px;
}

.journey-gauge {
  position: relative;
  width: 170px;
  height: 170px;
  margin-top: 46px;
}

.journey-gauge svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.journey-gauge circle {
  fill: none;
  stroke: rgba(145, 164, 183, 0.14);
  stroke-width: 1;
}

.journey-gauge .journey-gauge-live {
  stroke: var(--cyan);
  stroke-dasharray: 427;
  stroke-dashoffset: calc(427 - (427 * var(--journey-progress, 0.25)));
  stroke-linecap: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(53, 214, 237, 0.5));
  transition: stroke-dashoffset 600ms var(--ease);
}

.journey-gauge > span,
.journey-gauge > small {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
}

.journey-gauge > span {
  left: 48px;
  color: var(--ice);
  font-size: 40px;
}

.journey-gauge > small {
  right: 42px;
  color: #61798c;
  font-size: 9px;
}

.journey-current {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.journey-current span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.journey-current strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
}

.journey-steps {
  position: relative;
  border-top: 1px solid var(--line);
}

.journey-steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 38px;
  width: 1px;
  background: linear-gradient(var(--cyan), rgba(53, 214, 237, 0.08));
  content: "";
}

.journey-step {
  position: relative;
  min-height: 360px;
  padding: 34px 0 42px 88px;
  border-bottom: 1px solid var(--line);
  opacity: 0.44;
  transition: opacity 420ms ease, transform 500ms var(--ease);
}

.journey-step::before {
  position: absolute;
  top: 38px;
  left: 31px;
  width: 15px;
  height: 15px;
  border: 1px solid #537083;
  border-radius: 50%;
  background: var(--navy);
  content: "";
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.journey-step::after {
  position: absolute;
  top: 43px;
  left: 36px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #537083;
  content: "";
  transition: background 300ms ease;
}

.journey-step.is-active,
.journey-step.is-passed {
  opacity: 1;
}

.journey-step.is-active {
  transform: translateX(8px);
}

.journey-step.is-active::before {
  border-color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(53, 214, 237, 0.06), 0 0 18px rgba(53, 214, 237, 0.35);
}

.journey-step.is-active::after,
.journey-step.is-passed::after {
  background: var(--cyan);
}

.journey-step-head {
  display: grid;
  grid-template-columns: 36px 1fr 60px;
  align-items: center;
  color: #6d8598;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.journey-step-head > span {
  color: var(--cyan);
  font-size: 11px;
}

.journey-step-head b {
  font-weight: 400;
}

.journey-step-head i {
  height: 1px;
  background: var(--line-strong);
}

.journey-step-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: end;
  margin-top: 34px;
}

.journey-step-copy h3 {
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 0.96;
}

.journey-step-copy p {
  color: var(--muted);
  font-size: 14px;
}

.journey-micro {
  min-height: 82px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: #091827;
}

.journey-entry {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 80px;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
}

.journey-entry span,
.journey-entry strong {
  font-family: var(--font-display);
}

.journey-entry span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.journey-entry strong {
  font-size: 18px;
  line-height: 1;
}

.journey-entry i {
  height: 24px;
  background: var(--blue);
}

.journey-offer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.journey-offer span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 19px;
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 15px;
}

.journey-offer b {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 8px;
}

.journey-trust {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 18px;
}

.journey-trust > div {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(53, 214, 237, 0.23);
  border-radius: 50%;
}

.journey-trust > div i {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(53, 214, 237, 0.2);
  border-radius: 50%;
}

.journey-trust > div b {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.journey-trust > span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.journey-trust > small {
  color: #71899a;
  font-family: var(--font-mono);
  font-size: 7px;
}

.journey-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-color: rgba(22, 119, 255, 0.45);
  background: rgba(22, 119, 255, 0.09);
}

.journey-action span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.journey-action b {
  padding: 10px 14px;
  background: var(--blue);
  font-size: 9px;
}

/* 04 / Anatomia strony */
.anatomy-section {
  overflow: clip;
  background-color: #081522;
}

.anatomy-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.anatomy-heading .eyebrow,
.anatomy-heading h2 {
  grid-column: 1;
}

.anatomy-heading h2 {
  max-width: 760px;
  margin-top: 4px;
}

.anatomy-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: var(--muted);
  font-size: 16px;
}

.anatomy-system {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(215px, 0.82fr) minmax(480px, 1.36fr) minmax(215px, 0.82fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
}

.anatomy-rail {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 1px;
}

.anatomy-callout {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ice);
  cursor: pointer;
  text-align: left;
  transition: padding 300ms var(--ease), background 260ms ease, opacity 260ms ease;
}

.anatomy-callout > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 9px;
}

.anatomy-callout > span i {
  flex: 1;
  height: 1px;
  background: var(--line);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.anatomy-callout strong {
  margin-top: 11px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.02;
}

.anatomy-callout small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.anatomy-callout:hover,
.anatomy-callout.is-active {
  background: linear-gradient(90deg, rgba(53, 214, 237, 0.06), transparent);
}

.anatomy-rail-left .anatomy-callout:hover,
.anatomy-rail-left .anatomy-callout.is-active {
  padding-left: 13px;
}

.anatomy-rail-right .anatomy-callout {
  text-align: right;
}

.anatomy-rail-right .anatomy-callout > span {
  flex-direction: row-reverse;
}

.anatomy-rail-right .anatomy-callout:hover,
.anatomy-rail-right .anatomy-callout.is-active {
  padding-right: 13px;
  background: linear-gradient(270deg, rgba(53, 214, 237, 0.06), transparent);
}

.anatomy-callout.is-active > span i {
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(53, 214, 237, 0.6);
}

.anatomy-blueprint {
  border: 1px solid rgba(53, 214, 237, 0.24);
  background: #07131f;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.33);
}

.anatomy-toolbar,
.anatomy-status {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: #698196;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.anatomy-toolbar {
  border-bottom: 1px solid var(--line);
}

.anatomy-toolbar > span {
  display: flex;
  gap: 4px;
}

.anatomy-toolbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #395266;
}

.anatomy-toolbar b,
.anatomy-toolbar em {
  font-style: normal;
  font-weight: 400;
}

.anatomy-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 48px 145px 84px 102px 65px 44px;
  gap: 1px;
  padding: 1px;
  background: rgba(145, 164, 183, 0.13);
}

.anatomy-zone {
  position: relative;
  overflow: hidden;
  background: #0a1928;
  opacity: 0.46;
  transition: opacity 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.anatomy-zone::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 300ms ease;
}

.anatomy-zone.is-highlighted {
  z-index: 2;
  background: rgba(22, 119, 255, 0.15);
  box-shadow: inset 0 0 38px rgba(22, 119, 255, 0.09);
  opacity: 1;
}

.anatomy-zone.is-highlighted::after {
  border-color: var(--cyan);
}

.anatomy-zone small,
.anatomy-zone > b,
.anatomy-zone > span {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.06em;
}

.anatomy-identity {
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.anatomy-identity strong {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.anatomy-identity strong span {
  color: var(--blue);
}

.anatomy-identity small {
  color: #71889a;
}

.anatomy-identity > b {
  padding: 7px 9px;
  background: var(--blue);
  color: #fff;
  font-weight: 400;
}

.anatomy-hero {
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
}

.anatomy-hero > div:first-child {
  max-width: 330px;
}

.anatomy-hero small {
  color: var(--blue);
}

.anatomy-hero strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 0.93;
}

.anatomy-hero p {
  margin-top: 6px;
  color: #71889a;
  font-size: 7px;
}

.anatomy-hero > div:first-child > span {
  display: inline-block;
  margin-top: 9px;
  padding: 6px 8px;
  background: var(--blue);
  color: #fff;
  font-size: 6px;
}

.anatomy-unit {
  position: relative;
  width: 116px;
  height: 37px;
  border-radius: 4px 4px 8px 8px;
  background: linear-gradient(#fff, #bacbd4);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.anatomy-unit i {
  position: absolute;
  right: 9px;
  bottom: 6px;
  left: 9px;
  height: 2px;
  background: #758a96;
}

.anatomy-unit b {
  position: absolute;
  top: -17px;
  right: -13px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-family: var(--font-mono);
  font-size: 7px;
}

.anatomy-services {
  grid-column: 1 / 3;
  padding: 11px 15px;
}

.anatomy-services > small {
  color: #668096;
}

.anatomy-services > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.anatomy-services span {
  padding-top: 9px;
  font-family: var(--font-display);
  font-size: 11px;
}

.anatomy-services span b {
  margin-right: 7px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 6px;
}

.anatomy-area {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.anatomy-map {
  position: relative;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border: 1px solid rgba(53, 214, 237, 0.22);
  border-radius: 50%;
}

.anatomy-map i {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(53, 214, 237, 0.2);
  border-radius: 50%;
}

.anatomy-map i + i {
  inset: 24px;
}

.anatomy-map b {
  position: absolute;
  top: 27px;
  left: 27px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.anatomy-area > div:last-child small {
  color: #698197;
}

.anatomy-area > div:last-child strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 13px;
}

.anatomy-proof {
  padding: 13px;
}

.anatomy-proof > small {
  color: #698197;
}

.anatomy-proof > div {
  display: grid;
  height: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 8px;
}

.anatomy-proof i {
  background: linear-gradient(135deg, #17374d, #0e2638);
}

.anatomy-contact {
  display: flex;
  grid-column: 1 / 3;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.anatomy-contact small {
  color: var(--cyan);
}

.anatomy-contact strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 13px;
}

.anatomy-contact > span {
  padding: 8px 10px;
  border: 1px solid var(--blue);
  color: #fff;
}

.anatomy-performance,
.anatomy-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
}

.anatomy-performance small,
.anatomy-support small {
  color: #688196;
}

.anatomy-performance b {
  color: var(--cyan);
}

.anatomy-support b {
  color: #b5c4cf;
}

.anatomy-status {
  border-top: 1px solid var(--line);
}

.anatomy-status > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.anatomy-status i {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.anatomy-status b {
  color: var(--cyan);
  font-weight: 400;
}

/* 05 / Suwak porównawczy */
.comparison-section {
  overflow: clip;
  background: #091624;
}

.comparison-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}

.comparison-controls {
  display: flex;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid var(--line);
}

.comparison-controls button {
  min-height: 43px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 9px;
  transition: background 220ms ease, color 220ms ease;
}

.comparison-controls button:hover {
  color: var(--ice);
}

.comparison-controls button.is-active {
  background: var(--blue);
  color: #fff;
}

.comparison-lab {
  border: 1px solid rgba(53, 214, 237, 0.2);
  background: #07121e;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.34);
}

.comparison-meta {
  display: grid;
  height: 46px;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  color: #688095;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.comparison-meta b {
  color: var(--cyan);
  font-weight: 400;
}

.comparison-meta em {
  font-style: normal;
}

.comparison-figure {
  position: relative;
  height: 650px;
  overflow: hidden;
  background:
    linear-gradient(rgba(53, 214, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 214, 237, 0.035) 1px, transparent 1px),
    #07131f;
  background-size: 34px 34px;
}

.comparison-figure figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.comparison-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison-before {
  z-index: 1;
  background: rgba(194, 195, 190, 0.045);
}

.comparison-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  background: rgba(22, 119, 255, 0.025);
}

.concept-browser {
  position: absolute;
  top: 58px;
  left: 4%;
  width: 72%;
  height: 475px;
  overflow: hidden;
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.38);
}

.concept-bar {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #f7f9fa;
  color: #7b8e9b;
  font-family: var(--font-mono);
  font-size: 6px;
}

.concept-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7c2c8;
}

.concept-bar span {
  margin-left: auto;
  margin-right: auto;
}

.legacy-concept {
  border: 6px solid #b8bbb9;
  background: #efefec;
  color: #34383a;
  font-family: Arial, sans-serif;
}

.legacy-nav {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 3px solid #2c749d;
  background: #fff;
}

.legacy-nav b {
  color: #2c749d;
  font-size: 18px;
}

.legacy-nav span {
  font-size: 8px;
}

.legacy-hero {
  display: grid;
  min-height: 232px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 26px;
  background: linear-gradient(100deg, #d6e2e6, #eef1ef);
}

.legacy-hero strong {
  display: block;
  max-width: 350px;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.15;
}

.legacy-hero p {
  margin-top: 12px;
  font-size: 10px;
}

.legacy-hero a {
  display: inline-block;
  margin-top: 17px;
  color: #2c749d;
  font-size: 9px;
  text-decoration: underline;
}

.legacy-hero > i {
  width: 155px;
  height: 47px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 23px rgba(0, 0, 0, 0.15);
}

.legacy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}

.legacy-columns div {
  min-height: 112px;
  padding: 12px;
  border: 1px solid #c9cdcd;
  background: #fff;
}

.legacy-columns b {
  color: #2c749d;
  font-size: 11px;
}

.legacy-columns p {
  margin-top: 8px;
  font-size: 8px;
  line-height: 1.45;
}

.modern-concept {
  border: 1px solid rgba(53, 214, 237, 0.16);
  background: #eaf1f4;
  color: #091827;
}

.modern-nav {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #f8fbfc;
  font-size: 8px;
}

.modern-nav b {
  font-size: 12px;
}

.modern-nav b span {
  color: var(--blue);
}

.modern-nav p {
  color: #687c8b;
}

.modern-nav > i {
  padding: 7px 9px;
  background: #0b1b2a;
  color: #fff;
  font-style: normal;
}

.modern-hero {
  display: grid;
  min-height: 225px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 26px 29px;
}

.modern-hero small {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 6px;
}

.modern-hero strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 0.89;
}

.modern-hero p {
  margin-top: 10px;
  color: #637789;
  font-size: 8px;
}

.modern-hero > div:first-child > span {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
}

.modern-unit {
  position: relative;
  display: grid;
  height: 150px;
  place-items: center;
}

.modern-unit svg {
  position: absolute;
  top: 5px;
  right: -15px;
  width: 115%;
}

.modern-unit path {
  fill: none;
  stroke: var(--cyan);
  stroke-dasharray: 3 6;
  animation: airflow 20s linear infinite;
}

.modern-unit i {
  position: relative;
  width: 145px;
  height: 43px;
  border-radius: 4px 4px 9px 9px;
  background: linear-gradient(#fff, #cbd9df);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.15);
}

.modern-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #d1dce2;
  background: #f9fbfc;
}

.modern-services span {
  padding: 11px 14px;
  border-right: 1px solid #d1dce2;
  font-family: var(--font-display);
  font-size: 9px;
}

.modern-services b {
  margin-right: 7px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 6px;
}

.modern-proof {
  display: grid;
  min-height: 108px;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 1px;
  background: #cbd8de;
}

.modern-proof > div {
  position: relative;
  padding: 12px;
  background: #d8e3e8;
}

.modern-proof > div > i {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9bb3bf, #d5e2e7);
}

.modern-proof > div > small {
  position: absolute;
  z-index: 2;
  bottom: 6px;
  left: 7px;
  padding: 3px;
  background: rgba(7, 17, 31, 0.8);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 5px;
}

.modern-proof > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0a1928;
  color: #fff;
}

.modern-proof > div:last-child small {
  position: static;
  padding: 0;
  background: none;
  color: var(--cyan);
}

.modern-proof > div:last-child b {
  margin-top: 7px;
  font-size: 8px;
}

.concept-mobile {
  position: absolute;
  z-index: 3;
  top: 95px;
  right: 4%;
  width: 17%;
  min-height: 365px;
  padding: 15px;
  border: 7px solid #08111a;
  border-radius: 25px;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.4);
}

.legacy-mobile {
  background: #efefec;
  color: #363a3c;
  font-family: Arial, sans-serif;
}

.legacy-mobile > div {
  display: flex;
  justify-content: space-between;
}

.legacy-mobile > div b {
  color: #2c749d;
  font-size: 11px;
}

.legacy-mobile > div i {
  padding: 2px 4px;
  border: 1px solid #929899;
  font-size: 5px;
  font-style: normal;
}

.legacy-mobile > strong {
  display: block;
  margin-top: 58px;
  font-size: 20px;
  line-height: 1.12;
}

.legacy-mobile > p {
  margin-top: 11px;
  font-size: 8px;
}

.legacy-mobile > span {
  display: block;
  margin-top: 90px;
  color: #73797b;
  font-size: 7px;
  text-align: center;
}

.modern-mobile {
  background: #eaf1f4;
  color: #091827;
}

.modern-mobile > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modern-mobile > div b {
  font-size: 9px;
}

.modern-mobile > div b span {
  color: var(--blue);
}

.modern-mobile > div i {
  width: 12px;
  height: 7px;
  border-block: 1px solid #091827;
}

.modern-mobile > small {
  display: block;
  margin-top: 52px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 5px;
}

.modern-mobile > strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 0.9;
}

.modern-mobile > p {
  margin-top: 11px;
  color: #617687;
  font-size: 7px;
}

.modern-mobile > span {
  display: block;
  margin-top: 23px;
  padding: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
  text-align: center;
}

.concept-fragment {
  position: absolute;
  z-index: 4;
  right: 1.5%;
  bottom: 25px;
  width: 22%;
  min-height: 205px;
  padding: 16px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.legacy-fragment {
  background: #fff;
  color: #373b3d;
  font-family: Arial, sans-serif;
}

.legacy-fragment small {
  display: block;
  margin-bottom: 6px;
  border-bottom: 1px solid #b8bcbc;
  color: #2c749d;
  font-size: 7px;
  font-weight: 700;
}

.legacy-fragment p {
  margin-bottom: 19px;
  font-size: 8px;
  line-height: 1.7;
}

.legacy-fragment i {
  display: block;
  height: 20px;
  margin-top: 5px;
  border: 1px solid #b9bcbc;
}

.modern-fragment {
  border-top: 2px solid var(--cyan);
  background: #0b1b2b;
  color: #fff;
}

.modern-fragment > small {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 6px;
}

.modern-fragment > div {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 10px auto;
  border: 1px solid rgba(53, 214, 237, 0.24);
  border-radius: 50%;
}

.modern-fragment > div i {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(53, 214, 237, 0.2);
  border-radius: 50%;
}

.modern-fragment > div b {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.modern-fragment > strong {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-size: 13px;
}

.modern-fragment label {
  display: block;
  margin-top: 5px;
  padding: 6px;
  border: 1px solid var(--line);
  color: #71899b;
  font-size: 6px;
}

.modern-fragment > span {
  display: block;
  margin-top: 6px;
  padding: 7px;
  background: var(--blue);
  font-size: 7px;
}

.comparison-divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 1px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(53, 214, 237, 0.7);
  pointer-events: none;
  transform: translateX(-50%);
}

.comparison-divider > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: #071522;
  color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(53, 214, 237, 0.05);
}

.comparison-divider i {
  width: 5px;
  height: 5px;
  border-style: solid;
  border-color: var(--cyan);
  transform: rotate(45deg);
}

.comparison-divider i:first-child {
  border-width: 0 0 1px 1px;
}

.comparison-divider i:last-child {
  border-width: 1px 1px 0 0;
}

.comparison-divider b {
  font-family: var(--font-mono);
  font-size: 5px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.comparison-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-range:focus-visible + * {
  outline: none;
}

.comparison-figure:focus-within {
  box-shadow: inset 0 0 0 2px var(--cyan);
}

.comparison-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.comparison-readout span {
  padding: 16px 20px;
  color: #8fa4b4;
  font-size: 11px;
}

.comparison-readout span + span {
  border-left: 1px solid var(--line);
}

.comparison-readout b {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

@media (max-width: 1180px) {
  .hero-v2-layout {
    grid-template-columns: minmax(350px, 0.82fr) minmax(520px, 1.18fr);
    gap: 30px;
  }

  .hero-console {
    min-height: 610px;
  }

  .journey-layout {
    gap: 70px;
  }

  .anatomy-system {
    grid-template-columns: minmax(190px, 0.75fr) minmax(450px, 1.5fr) minmax(190px, 0.75fr);
    gap: 16px;
  }

  .anatomy-callout strong {
    font-size: 18px;
  }

  .concept-browser {
    width: 70%;
  }
}

@media (max-width: 1020px) {
  .hero-v2 {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-v2-index {
    margin-bottom: 44px;
  }

  .hero-v2-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-v2-copy {
    max-width: 790px;
  }

  .hero-v2 h1 {
    max-width: 790px;
    font-size: clamp(58px, 8.3vw, 82px);
  }

  .hero-console {
    width: min(760px, 100%);
    min-height: 660px;
    margin: 28px auto 0;
  }

  .journey-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .journey-intro {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 180px;
    column-gap: 45px;
  }

  .journey-intro .eyebrow,
  .journey-intro h2,
  .journey-intro > p {
    grid-column: 1;
  }

  .journey-gauge {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
  }

  .journey-current {
    grid-column: 1 / 3;
  }

  .anatomy-system {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .anatomy-blueprint {
    order: -1;
    grid-column: 1 / 3;
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .anatomy-rail-right .anatomy-callout {
    text-align: left;
  }

  .anatomy-rail-right .anatomy-callout > span {
    flex-direction: row;
  }

  .anatomy-rail-right .anatomy-callout:hover,
  .anatomy-rail-right .anatomy-callout.is-active {
    padding-right: 0;
    padding-left: 13px;
    background: linear-gradient(90deg, rgba(53, 214, 237, 0.06), transparent);
  }

  .comparison-figure {
    height: 590px;
  }

  .concept-browser {
    top: 45px;
    width: 74%;
    height: 440px;
  }

  .concept-mobile {
    top: 75px;
    width: 19%;
    min-height: 340px;
  }

  .concept-fragment {
    width: 24%;
  }
}

@media (max-width: 760px) {
  .brand-crop {
    transform: scale(0.88);
  }

  .hero-v2 {
    padding-top: 112px;
  }

  .hero-v2-index {
    grid-template-columns: 28px 32px 1fr;
    margin-bottom: 34px;
  }

  .hero-v2-index em {
    display: none;
  }

  .hero-v2 h1 {
    font-size: clamp(45px, 12.7vw, 65px);
  }

  .hero-v2-lead {
    font-size: 16px;
  }

  .hero-v2-signals {
    grid-template-columns: 1fr;
  }

  .hero-v2-signals li,
  .hero-v2-signals li + li {
    display: grid;
    grid-template-columns: 35px 1fr;
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-v2-signals li:first-child {
    border-top: 0;
  }

  .hero-v2-signals small {
    margin: 0;
  }

  .hero-v2-signals span br {
    display: none;
  }

  .hero-console {
    min-height: 515px;
  }

  .console-head {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .console-head em,
  .console-rail {
    display: none;
  }

  .preview-window {
    top: 65px;
    right: 12px;
    left: 12px;
    min-height: 336px;
  }

  .preview-sitebar {
    height: 40px;
    padding-inline: 14px;
  }

  .preview-sitebar p {
    display: none;
  }

  .preview-hero {
    min-height: 225px;
    padding: 18px;
  }

  .preview-copy > strong {
    font-size: clamp(24px, 7vw, 35px);
  }

  .preview-device {
    height: 140px;
  }

  .preview-device > div {
    width: 105px;
    height: 34px;
  }

  .preview-services span {
    padding: 9px 8px;
    font-size: 7px;
  }

  .console-phone {
    bottom: 4px;
    left: 3px;
    width: 108px;
    min-height: 185px;
    padding: 10px;
    border-width: 4px;
    border-radius: 17px;
  }

  .console-phone > small {
    margin-top: 24px;
  }

  .console-phone > strong {
    font-size: 15px;
  }

  .console-phone > span {
    margin-top: 12px;
    padding: 7px;
    font-size: 5px;
  }

  .console-brief {
    right: 2px;
    bottom: 1px;
    width: 168px;
    padding: 12px;
  }

  .console-brief > strong {
    margin: 9px 0 5px;
    font-size: 13px;
  }

  .console-brief label {
    padding: 5px 0;
  }

  .journey-intro {
    display: block;
  }

  .journey-gauge {
    width: 135px;
    height: 135px;
    margin-top: 32px;
  }

  .journey-gauge > span {
    left: 36px;
    font-size: 34px;
  }

  .journey-gauge > small {
    right: 31px;
  }

  .journey-current {
    grid-template-columns: 90px 1fr;
  }

  .journey-steps::before {
    left: 18px;
  }

  .journey-step {
    min-height: 0;
    padding: 30px 0 35px 52px;
  }

  .journey-step::before {
    top: 33px;
    left: 11px;
  }

  .journey-step::after {
    top: 38px;
    left: 16px;
  }

  .journey-step.is-active {
    transform: none;
  }

  .journey-step-copy {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
  }

  .journey-step-head {
    grid-template-columns: 30px 1fr 30px;
  }

  .journey-micro {
    margin-top: 22px;
  }

  .journey-entry {
    grid-template-columns: 85px 1fr;
  }

  .journey-entry i {
    display: none;
  }

  .journey-offer span {
    display: block;
    padding: 13px 8px;
    font-size: 11px;
  }

  .journey-offer b {
    display: block;
    margin-bottom: 4px;
  }

  .journey-trust {
    grid-template-columns: 50px 1fr;
  }

  .journey-trust > div {
    width: 48px;
    height: 48px;
  }

  .journey-trust > div b {
    top: 21px;
    left: 21px;
  }

  .journey-trust > small {
    display: none;
  }

  .journey-action {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .journey-action b {
    text-align: center;
  }

  .anatomy-heading {
    display: block;
  }

  .anatomy-heading > p:last-child {
    margin-top: 22px;
  }

  .anatomy-system {
    grid-template-columns: minmax(0, 1fr);
  }

  .anatomy-blueprint {
    grid-column: 1;
  }

  .anatomy-rail {
    grid-template-rows: auto;
  }

  .anatomy-callout {
    min-height: 105px;
    padding: 14px 0;
  }

  .anatomy-rail-right .anatomy-callout {
    text-align: left;
  }

  .anatomy-page {
    grid-template-rows: 46px 135px 80px 96px 61px 42px;
  }

  .anatomy-hero {
    padding: 16px;
  }

  .anatomy-hero strong {
    font-size: 23px;
  }

  .anatomy-unit {
    width: 92px;
    height: 31px;
  }

  .comparison-heading {
    display: block;
  }

  .comparison-controls {
    margin-top: 28px;
  }

  .comparison-controls button {
    flex: 1;
  }

  .comparison-meta {
    height: auto;
    min-height: 46px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 9px;
  }

  .comparison-meta em {
    display: none;
  }

  .comparison-figure {
    height: 525px;
  }

  .concept-browser {
    top: 28px;
    left: 3%;
    width: 79%;
    height: 370px;
  }

  .legacy-nav span,
  .modern-nav p {
    display: none;
  }

  .legacy-hero,
  .modern-hero {
    min-height: 190px;
    padding: 17px;
  }

  .legacy-hero strong {
    font-size: 22px;
  }

  .legacy-hero > i,
  .modern-unit i {
    width: 85px;
    height: 30px;
  }

  .modern-hero strong {
    font-size: 27px;
  }

  .legacy-columns div {
    min-height: 85px;
    padding: 7px;
  }

  .legacy-columns b {
    font-size: 8px;
  }

  .legacy-columns p {
    font-size: 6px;
  }

  .modern-proof {
    min-height: 75px;
  }

  .concept-mobile {
    top: 51px;
    right: 2%;
    width: 21%;
    min-height: 290px;
    padding: 9px;
    border-width: 4px;
    border-radius: 18px;
  }

  .modern-mobile > small,
  .legacy-mobile > strong {
    margin-top: 34px;
  }

  .modern-mobile > strong {
    font-size: 17px;
  }

  .legacy-mobile > strong {
    font-size: 14px;
  }

  .concept-fragment {
    right: 3%;
    bottom: 14px;
    width: 44%;
    min-height: 150px;
    padding: 10px;
  }

  .legacy-fragment p {
    margin-bottom: 9px;
    line-height: 1.35;
  }

  .modern-fragment > div {
    display: none;
  }

  .modern-fragment > strong {
    margin-top: 8px;
  }

  .comparison-divider > span {
    width: 56px;
    height: 56px;
  }

  .comparison-readout {
    grid-template-columns: 1fr;
  }

  .comparison-readout span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 440px) {
  .hero-v2 h1 {
    font-size: clamp(40px, 11.2vw, 46px);
  }

  .hero-console {
    min-height: 445px;
  }

  .preview-window {
    min-height: 292px;
  }

  .preview-hero {
    min-height: 184px;
    grid-template-columns: 1.25fr 0.75fr;
    padding: 13px;
  }

  .preview-copy > strong {
    font-size: 22px;
  }

  .preview-copy p {
    display: none;
  }

  .preview-device > div {
    width: 72px;
    height: 25px;
  }

  .console-phone {
    display: none;
  }

  .console-brief {
    bottom: 2px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .console-brief label {
    display: inline-flex;
    width: calc(50% - 3px);
  }

  .anatomy-toolbar em {
    display: none;
  }

  .anatomy-page {
    grid-template-columns: 1fr;
    grid-template-rows: 45px 128px 78px 88px 83px 58px 42px 42px;
  }

  .anatomy-identity,
  .anatomy-hero,
  .anatomy-services,
  .anatomy-contact {
    grid-column: 1;
  }

  .anatomy-unit {
    display: none;
  }

  .anatomy-area {
    padding: 9px;
  }

  .anatomy-proof > div {
    height: 38px;
  }

  .anatomy-status b {
    max-width: 48%;
    text-align: right;
  }

  .comparison-figure {
    height: 470px;
  }

  .concept-browser {
    top: 20px;
    left: 2%;
    width: 96%;
    height: 310px;
  }

  .legacy-concept {
    border-width: 3px;
  }

  .concept-bar {
    height: 22px;
  }

  .legacy-nav,
  .modern-nav {
    height: 39px;
    padding-inline: 10px;
  }

  .legacy-hero,
  .modern-hero {
    min-height: 150px;
    padding: 11px;
  }

  .legacy-hero strong {
    font-size: 18px;
  }

  .modern-hero strong {
    font-size: 21px;
  }

  .legacy-hero > i,
  .modern-unit {
    display: none;
  }

  .legacy-columns {
    gap: 3px;
    padding: 5px;
  }

  .legacy-columns div {
    min-height: 72px;
    padding: 4px;
  }

  .legacy-columns p {
    font-size: 5px;
  }

  .modern-services span {
    padding: 7px 5px;
    font-size: 6px;
  }

  .modern-proof {
    min-height: 64px;
  }

  .concept-mobile {
    top: auto;
    right: auto;
    bottom: 12px;
    left: 3%;
    width: 26%;
    min-height: 125px;
    padding: 6px;
    border-width: 3px;
    border-radius: 12px;
  }

  .concept-mobile > small,
  .concept-mobile > p,
  .concept-mobile > span,
  .legacy-mobile > span {
    display: none;
  }

  .modern-mobile > strong,
  .legacy-mobile > strong {
    margin-top: 22px;
    font-size: 11px;
  }

  .concept-fragment {
    right: 3%;
    bottom: 12px;
    width: 64%;
    min-height: 125px;
  }

  .legacy-fragment p {
    font-size: 6px;
  }

  .legacy-fragment i {
    height: 12px;
  }

  .modern-fragment label {
    padding: 4px;
  }

  .comparison-divider > span {
    width: 48px;
    height: 48px;
  }

  .comparison-divider b {
    display: none;
  }
}

/* Uproszczone segmenty 03 i 04 */
.decision-compact {
  overflow: clip;
  padding-block: 110px;
  background:
    linear-gradient(90deg, rgba(53, 214, 237, 0.025) 1px, transparent 1px),
    #07111f;
  background-size: 25% 100%;
}

.decision-compact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.decision-compact-heading h2 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(48px, 5.7vw, 72px);
}

.decision-compact-heading > p {
  max-width: 460px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
}

.decision-compact-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 68px;
  border-block: 1px solid var(--line);
}

.decision-compact-track > li {
  min-width: 0;
  padding: 28px 25px 34px;
}

.decision-compact-track > li:first-child {
  padding-left: 0;
}

.decision-compact-track > li:last-child {
  padding-right: 0;
}

.decision-compact-track > li + li {
  border-left: 1px solid var(--line);
}

.decision-node {
  display: flex;
  height: 42px;
  align-items: center;
}

.decision-node span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(53, 214, 237, 0.45);
  border-radius: 50%;
  background: #071522;
  color: var(--cyan);
  box-shadow: 0 0 0 7px rgba(53, 214, 237, 0.035);
  font-family: var(--font-mono);
  font-size: 9px;
}

.decision-node i {
  width: calc(100% + 50px);
  height: 1px;
  background: linear-gradient(90deg, rgba(53, 214, 237, 0.65), rgba(53, 214, 237, 0.08));
}

.decision-compact-track > li:last-child .decision-node i {
  background: linear-gradient(90deg, rgba(53, 214, 237, 0.65), transparent);
}

.decision-compact-track small {
  display: block;
  margin-top: 23px;
  color: #6f8799;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.decision-compact-track h3 {
  max-width: 245px;
  margin-top: 12px;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1;
}

.decision-compact-track p {
  max-width: 245px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.benefit-spec-section {
  overflow: clip;
  padding-block: 110px;
  background-color: #081522;
}

.benefit-spec-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(580px, 1.22fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: start;
}

.benefit-spec-intro h2 {
  max-width: 570px;
  margin-top: 20px;
  font-size: clamp(48px, 5.2vw, 68px);
}

.benefit-spec-intro > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
}

.benefit-spec-flow {
  display: flex;
  align-items: center;
  margin-top: 52px;
  padding-block: 16px;
  border-block: 1px solid var(--line);
}

.benefit-spec-flow span {
  color: #8095a6;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.benefit-spec-flow span b {
  display: block;
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 7px;
  font-weight: 400;
}

.benefit-spec-flow > i {
  min-width: 12px;
  height: 1px;
  flex: 1;
  margin-inline: 8px;
  background: linear-gradient(90deg, rgba(53, 214, 237, 0.45), rgba(53, 214, 237, 0.08));
}

.benefit-spec-sheet {
  border: 1px solid rgba(53, 214, 237, 0.22);
  background: rgba(7, 17, 31, 0.6);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.25);
}

.benefit-spec-head,
.benefit-spec-foot {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  color: #698195;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.benefit-spec-head {
  border-bottom: 1px solid var(--line);
}

.benefit-spec-head b,
.benefit-spec-foot b {
  color: var(--cyan);
  font-weight: 400;
}

.benefit-spec-sheet > ol > li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(170px, 0.65fr);
  gap: 22px;
  align-items: center;
  padding: 24px 22px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.benefit-spec-sheet > ol > li:hover {
  background: rgba(53, 214, 237, 0.035);
}

.benefit-spec-sheet > ol > li > span {
  align-self: start;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 19px;
}

.benefit-spec-sheet small {
  color: #648096;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.benefit-spec-sheet h3 {
  margin-top: 7px;
  font-size: 22px;
  line-height: 1.05;
}

.benefit-spec-sheet ul {
  display: grid;
  gap: 9px;
}

.benefit-spec-sheet ul li {
  position: relative;
  padding-left: 15px;
  color: #b4c3cf;
  font-size: 11px;
  line-height: 1.35;
}

.benefit-spec-sheet ul li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

.benefit-spec-foot {
  min-height: 43px;
}

.benefit-spec-foot span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.benefit-spec-foot i {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

@media (max-width: 1020px) {
  .decision-compact-heading,
  .benefit-spec-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }

  .decision-compact-heading > p {
    max-width: 720px;
  }

  .decision-compact-track {
    margin-top: 48px;
  }

  .decision-compact-track > li {
    padding-inline: 18px;
  }

  .decision-compact-track > li:first-child {
    padding-left: 0;
  }

  .decision-compact-track > li:last-child {
    padding-right: 0;
  }

  .benefit-spec-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 45px;
  }

  .benefit-spec-intro .eyebrow,
  .benefit-spec-intro h2 {
    grid-column: 1;
  }

  .benefit-spec-intro > p:not(.eyebrow) {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

  .benefit-spec-flow {
    grid-column: 1 / 3;
  }
}

@media (max-width: 900px) {
  .decision-compact-track {
    grid-template-columns: minmax(0, 1fr);
    border-bottom: 0;
  }

  .decision-compact-track > li,
  .decision-compact-track > li:first-child,
  .decision-compact-track > li:last-child {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 22px 0;
  }

  .decision-compact-track > li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .decision-node {
    grid-row: 1 / span 3;
    height: 100%;
    align-items: center;
    flex-direction: column;
  }

  .decision-node span {
    width: 36px;
    height: 36px;
  }

  .decision-node i {
    width: 1px;
    height: auto;
    min-height: 30px;
    flex: 1;
    background: linear-gradient(rgba(53, 214, 237, 0.55), rgba(53, 214, 237, 0.08));
  }

  .decision-compact-track small,
  .decision-compact-track h3,
  .decision-compact-track p {
    grid-column: 2;
  }

  .decision-compact-track small {
    margin-top: 0;
  }

  .decision-compact-track h3,
  .decision-compact-track p {
    max-width: none;
  }

  .decision-compact-track h3 {
    margin-top: 8px;
  }

  .decision-compact-track p {
    margin-top: 9px;
  }
}

@media (max-width: 760px) {
  .decision-compact,
  .benefit-spec-section {
    padding-block: 90px;
  }

  .decision-compact-heading h2,
  .benefit-spec-intro h2 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .benefit-spec-intro {
    display: block;
  }

  .benefit-spec-intro > p:not(.eyebrow) {
    margin-top: 22px;
  }

  .benefit-spec-flow {
    display: none;
  }

  .benefit-spec-flow span {
    font-size: 5px;
  }

  .benefit-spec-flow > i {
    margin-inline: 5px;
  }

  .benefit-spec-sheet > ol > li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 21px 16px;
  }

  .benefit-spec-sheet > ol > li > ul {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
    margin-top: 4px;
  }

  .benefit-spec-head,
  .benefit-spec-foot {
    padding-inline: 14px;
  }
}

@media (max-width: 440px) {
  .decision-compact,
  .benefit-spec-section {
    padding-block: 80px;
  }

  .decision-compact-heading h2,
  .benefit-spec-intro h2 {
    font-size: clamp(39px, 11.5vw, 47px);
  }

  .benefit-spec-flow span {
    font-size: 0;
  }

  .benefit-spec-flow span b {
    margin: 0;
    font-size: 8px;
  }

  .benefit-spec-sheet > ol > li > ul {
    grid-template-columns: 1fr;
  }

  .benefit-spec-sheet h3 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button, .form-panel, .site-blueprint, .demo-workbench, .anatomy-blueprint, .comparison-lab { border: 1px solid ButtonText; }
  .feature-item::before, .cta-note span, .form-footnote span, .journey-step::after { background: Highlight; }
}
