:root {
  --blue-black: #111923;
  --anthracite: #1B2530;
  --steel: #7D8792;
  --light: #EEF1F4;
  --warm-white: #FAFAF8;
  --cool-accent: #9AA7B5;
  --line: rgba(17, 25, 35, 0.12);
  --line-dark: rgba(238, 241, 244, 0.16);
  --soft-panel: rgba(238, 241, 244, 0.58);
  --max-width: 1180px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--blue-black);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--warm-white);
  color: var(--blue-black);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 14px max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(250, 250, 248, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 250, 248, 0.94);
  box-shadow: 0 8px 30px rgba(17, 25, 35, 0.06);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-mark,
.footer-brand {
  position: relative;
  display: inline-block;
  width: var(--logo-box-width, 148px);
  height: var(--logo-box-height, 32px);
  overflow: hidden;
}

.footer-brand {
  --logo-box-width: 138px;
  --logo-box-height: 30px;
  --logo-source-width: 193px;
  --logo-shift-x: -27px;
  --logo-shift-y: -56px;
  min-width: 138px;
}

.brand img,
.footer-brand img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--logo-source-width, 207px);
  max-width: none;
  height: auto;
  transform: translate(var(--logo-shift-x, -29px), var(--logo-shift-y, -60px));
}

.brand-fallback {
  display: none;
  color: var(--blue-black);
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-missing img {
  display: none;
}

.logo-missing .brand-fallback {
  display: inline-flex;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--anthracite);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--blue-black);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--blue-black);
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  color: var(--warm-white);
  background: var(--blue-black);
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--blue-black);
  color: var(--warm-white);
  box-shadow: 0 16px 36px rgba(17, 25, 35, 0.15);
}

.btn-secondary {
  background: rgba(250, 250, 248, 0.66);
  color: var(--blue-black);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: var(--light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--warm-white);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--blue-black);
  transition: transform 180ms ease;
}

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

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

.section,
.hero,
.final-cta {
  position: relative;
  overflow: hidden;
}

.section {
  padding: 112px 0;
}

.section-muted {
  background: var(--light);
}

#omega {
  padding: 92px 0;
}

.technical-grid::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(17, 25, 35, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 25, 35, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
  content: "";
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 0;
  padding: 54px 0 46px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 56px;
}

.hero-copy {
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  color: var(--blue-black);
  font-size: 4.5rem;
  line-height: 0.96;
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  color: var(--blue-black);
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 740;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-black);
  font-size: 1.12rem;
  line-height: 1.22;
}

.hero-lead,
.section-heading p,
.section-copy p {
  color: var(--anthracite);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 840px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hero-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
  max-width: 980px;
}

.hero-product-strip a {
  display: grid;
  gap: 4px;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.72);
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-product-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 25, 35, 0.22);
  background: rgba(250, 250, 248, 0.95);
  box-shadow: 0 18px 42px rgba(17, 25, 35, 0.08);
}

.hero-product-strip span,
.section-kicker,
.portfolio-number {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-product-strip strong {
  color: var(--blue-black);
  font-size: 1.05rem;
}

.hero-product-strip small {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.secure-panel {
  position: relative;
  height: clamp(360px, 28vw, 460px);
  min-height: 0;
  border: 1px solid rgba(238, 241, 244, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(to bottom, rgba(27, 37, 48, 0.92), rgba(17, 25, 35, 1)),
    var(--blue-black);
  color: var(--warm-white);
  box-shadow: 0 28px 70px rgba(17, 25, 35, 0.28);
  overflow: hidden;
}

.secure-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(238, 241, 244, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(238, 241, 244, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.secure-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(238, 241, 244, 0.08);
  content: "";
  pointer-events: none;
}

.local-map {
  position: absolute;
  inset: 24px 34px;
  color: var(--warm-white);
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.map-boundary {
  fill: none;
  stroke: rgba(238, 241, 244, 0.22);
  stroke-dasharray: 8 10;
  stroke-width: 1.2;
  animation: boundaryDrift 12s linear infinite;
}

.map-line {
  fill: none;
  stroke-linecap: round;
}

.local-line {
  stroke: rgba(100, 190, 116, 0.22);
  stroke-width: 1.5;
}

.local-flow {
  stroke: #6ad078;
  stroke-dasharray: 14 190;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 9px rgba(106, 208, 120, 0.5));
  animation: localFlow 3.2s linear infinite;
}

.flow-out {
  animation-delay: 1.1s;
}

.blocked-line {
  stroke: rgba(222, 83, 58, 0.42);
  stroke-dasharray: 6 9;
  stroke-width: 1.2;
  animation: blockedFlow 2.8s linear infinite;
}

.map-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16%;
  z-index: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(238, 241, 244, 0.18), transparent);
  opacity: 0;
  animation: mapScan 8s ease-in-out infinite;
}

.data-packet,
.blocked-packet {
  position: absolute;
  z-index: 2;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  pointer-events: none;
}

.data-packet {
  top: calc(50% - 3px);
  background: #6ad078;
  box-shadow: 0 0 18px rgba(106, 208, 120, 0.82);
}

.packet-in {
  animation: packetIn 3.2s linear infinite;
}

.packet-out {
  animation: packetOut 3.2s linear infinite;
}

.blocked-packet {
  left: 50%;
  background: #de533a;
  box-shadow: 0 0 18px rgba(222, 83, 58, 0.74);
  transform: translateX(-50%);
}

.packet-cloud {
  animation: packetCloud 4.8s ease-in-out infinite;
}

.packet-api {
  animation: packetApi 5.2s ease-in-out infinite 0.7s;
}

.boundary-label {
  position: absolute;
  top: 25.5%;
  left: 6%;
  z-index: 1;
  color: rgba(238, 241, 244, 0.5);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.map-box,
.omega-box,
.external-box,
.block-mark {
  position: absolute;
  z-index: 1;
}

.map-box,
.external-box,
.omega-box {
  border: 1px solid rgba(238, 241, 244, 0.2);
  border-radius: 4px;
  background: rgba(17, 25, 35, 0.58);
  box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.06), 0 18px 38px rgba(0, 0, 0, 0.14);
}

.map-box,
.external-box {
  display: grid;
  align-content: center;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.map-box span {
  display: block;
  margin-bottom: 10px;
  color: rgba(238, 241, 244, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-box strong,
.external-box strong {
  color: var(--warm-white);
  font-size: 1.02rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-box small {
  display: block;
  margin-top: 10px;
  color: #6ad078;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.source-box {
  top: 50%;
  left: 8%;
  width: 250px;
  min-height: 92px;
  transform: translateY(-50%);
  animation: nodeGlow 5.2s ease-in-out infinite;
}

.response-box {
  top: 50%;
  right: 8%;
  width: 250px;
  min-height: 92px;
  transform: translateY(-50%);
  animation: nodeGlow 5.2s ease-in-out infinite 1.6s;
}

.omega-box {
  top: 50%;
  left: 50%;
  width: 270px;
  min-height: 118px;
  padding: 26px 28px 24px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(17, 25, 35, 0.76);
  animation: omegaGlow 5.2s ease-in-out infinite 0.7s;
}

.omega-box strong {
  display: block;
  color: var(--warm-white);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 2.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.omega-box > span {
  display: block;
  margin-top: 12px;
  color: #6ad078;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.external-box {
  left: 50%;
  width: 230px;
  min-height: 58px;
  color: rgba(238, 241, 244, 0.32);
  transform: translateX(-50%);
}

.external-box strong {
  color: rgba(238, 241, 244, 0.36);
  font-size: 0.8rem;
}

.cloud-box {
  top: 5%;
}

.api-box {
  bottom: 5%;
}

.block-mark {
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translateX(-50%) rotate(45deg);
  animation: blockPulse 3.4s ease-in-out infinite;
}

.block-mark::before,
.block-mark::after {
  position: absolute;
  background: #de533a;
  content: "";
}

.block-mark::before {
  top: 12px;
  left: 0;
  width: 28px;
  height: 3px;
}

.block-mark::after {
  top: 0;
  left: 12px;
  width: 3px;
  height: 28px;
}

.block-top {
  top: 30%;
}

.block-bottom {
  bottom: 29%;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--blue-black);
  color: var(--light);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--light);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cool-accent);
  content: "";
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.narrow {
  max-width: 780px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.section-copy {
  color: var(--anthracite);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-black);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.micro-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.micro-labels span {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(250, 250, 248, 0.66);
  color: var(--anthracite);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.use-section {
  padding: 86px 0;
}

.use-section .section-heading {
  max-width: 960px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.use-card,
.product-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.76);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.use-card:hover,
.product-block:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 25, 35, 0.25);
  box-shadow: 0 20px 42px rgba(17, 25, 35, 0.08);
}

.product-block p {
  margin-bottom: 0;
  color: var(--steel);
}

.use-card {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 20px 22px;
}

.use-card h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.portfolio-section {
  padding: 104px 0 96px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.portfolio-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(250, 250, 248, 0.94), rgba(238, 241, 244, 0.58)),
    var(--warm-white);
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 25, 35, 0.22);
  box-shadow: 0 28px 64px rgba(17, 25, 35, 0.1);
}

.portfolio-card h3 {
  margin-top: 44px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.portfolio-card p {
  color: var(--anthracite);
}

.portfolio-card a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: var(--blue-black);
  font-weight: 850;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.journey-step {
  position: relative;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.78);
  padding: 22px;
}

.journey-step::after {
  position: absolute;
  top: 50%;
  right: -7px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-top: 1px solid var(--blue-black);
  border-right: 1px solid var(--blue-black);
  background: var(--light);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.journey-step:last-child::after {
  content: none;
}

.journey-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-step strong {
  display: block;
  color: var(--blue-black);
  font-size: 1.25rem;
  line-height: 1.16;
}

.product-line-section {
  padding: 96px 0;
}

.product-line-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.product-line-layout.reversed {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.line-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.8);
  box-shadow: 0 24px 70px rgba(17, 25, 35, 0.08);
  padding: 18px;
}

.capability-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.capability-list li {
  position: relative;
  background: rgba(250, 250, 248, 0.88);
  padding: 18px 18px 18px 46px;
  color: var(--anthracite);
  font-weight: 720;
}

.capability-list li::before {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue-black);
  border-radius: 50%;
  content: "";
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.training-grid span {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.82);
  color: var(--blue-black);
  padding: 18px;
  font-weight: 800;
}

.savings-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 25, 35, 0.98), rgba(27, 37, 48, 0.96)),
    var(--blue-black);
  color: var(--warm-white);
  padding: 108px 0;
}

.savings-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(238, 241, 244, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(238, 241, 244, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(95, 190, 220, 0.12), transparent 42%, rgba(154, 167, 181, 0.08));
  background-size: 58px 58px, 58px 58px, auto;
  content: "";
}

.savings-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.savings-heading h2 {
  max-width: 880px;
  color: var(--warm-white);
}

.savings-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(238, 241, 244, 0.74);
  font-size: 1.08rem;
}

.savings-kicker,
.dashboard-topline,
.savings-dashboard-cta span {
  color: rgba(151, 221, 236, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.savings-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}

.savings-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 24px;
  align-items: stretch;
}

.savings-form,
.savings-dashboard {
  border: 1px solid rgba(238, 241, 244, 0.14);
  border-radius: 8px;
  background: rgba(238, 241, 244, 0.06);
  box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.08), 0 32px 90px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.savings-form {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.savings-control {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.savings-control label,
.savings-control legend,
.control-topline {
  color: rgba(238, 241, 244, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.control-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.control-topline output {
  color: var(--warm-white);
  font-size: 1rem;
}

.employee-field {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  border: 1px solid rgba(238, 241, 244, 0.12);
  border-radius: 10px;
  background: rgba(17, 25, 35, 0.62);
  box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.04);
  padding: 10px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.employee-field:focus-within {
  border-color: rgba(151, 221, 236, 0.58);
  background: rgba(17, 25, 35, 0.82);
  box-shadow: 0 0 0 3px rgba(151, 221, 236, 0.1), inset 0 1px 0 rgba(250, 250, 248, 0.06);
}

.employee-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--warm-white);
  font: inherit;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 850;
}

.employee-field input::-webkit-outer-spin-button,
.employee-field input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.employee-field input[type="number"] {
  appearance: textfield;
}

.employee-field span {
  flex: 0 0 auto;
  color: rgba(238, 241, 244, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.select-wrap {
  position: relative;
  margin-top: 10px;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(238, 241, 244, 0.74);
  border-bottom: 1px solid rgba(238, 241, 244, 0.74);
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.select-wrap select {
  width: 100%;
  min-height: 48px;
  appearance: none;
  border: 1px solid rgba(238, 241, 244, 0.16);
  border-radius: 8px;
  background: rgba(17, 25, 35, 0.68);
  color: var(--warm-white);
  font: inherit;
  padding: 0 44px 0 14px;
}

.horizon-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.horizon-selector input {
  position: absolute;
  opacity: 0;
}

.horizon-selector span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(238, 241, 244, 0.16);
  border-radius: 8px;
  background: rgba(17, 25, 35, 0.56);
  color: rgba(238, 241, 244, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.horizon-selector input:checked + span {
  border-color: rgba(151, 221, 236, 0.5);
  background: rgba(151, 221, 236, 0.14);
  color: var(--warm-white);
  box-shadow: 0 0 28px rgba(151, 221, 236, 0.12);
}

.savings-dashboard {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  letter-spacing: 0.12em;
}

.dashboard-topline strong {
  color: var(--warm-white);
  font-size: 0.78rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kpi-card {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(238, 241, 244, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(250, 250, 248, 0.08), rgba(250, 250, 248, 0.035));
  padding: 16px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.kpi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(151, 221, 236, 0.34);
  background: linear-gradient(180deg, rgba(151, 221, 236, 0.11), rgba(250, 250, 248, 0.04));
}

.kpi-card span,
.kpi-card small {
  display: block;
  color: rgba(238, 241, 244, 0.62);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.35;
}

.kpi-card span {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.kpi-card strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--warm-white);
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  line-height: 1;
}

.kpi-card-primary {
  border-color: rgba(151, 221, 236, 0.3);
  background:
    radial-gradient(circle at 20% 0%, rgba(151, 221, 236, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(151, 221, 236, 0.1), rgba(250, 250, 248, 0.035));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(250, 250, 248, 0.06);
}

.kpi-card-primary span {
  color: rgba(151, 221, 236, 0.9);
}

.savings-disclaimer {
  margin: -2px 0 0;
  border: 1px solid rgba(238, 241, 244, 0.1);
  border-radius: 8px;
  background: rgba(17, 25, 35, 0.34);
  color: rgba(238, 241, 244, 0.58);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 14px 16px;
}

.savings-disclaimer span {
  display: block;
  margin-bottom: 4px;
  color: rgba(151, 221, 236, 0.84);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.savings-disclaimer strong {
  color: var(--warm-white);
}

.savings-dashboard-cta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(151, 221, 236, 0.18);
  border-radius: 8px;
  background: rgba(151, 221, 236, 0.08);
  padding: 18px;
}

.savings-dashboard-cta strong,
.savings-dashboard-cta span {
  display: block;
}

.savings-dashboard-cta strong {
  color: var(--warm-white);
  font-size: 1rem;
}

.savings-dashboard-cta span {
  margin-top: 4px;
  color: rgba(238, 241, 244, 0.62);
  font-size: 0.84rem;
}

.savings-dashboard-cta .btn {
  flex: 0 0 auto;
  background: var(--warm-white);
  color: var(--blue-black);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  grid-template-areas:
    "copy demo"
    "features features";
  gap: 34px 56px;
  align-items: center;
}

#omega .section-heading {
  grid-area: copy;
}

.product-stack {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.product-block {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 20px 22px 20px 68px;
}

.product-block::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46px;
  width: 1px;
  background: var(--line);
  content: "";
}

.product-block span {
  position: absolute;
  top: 22px;
  left: 18px;
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
}

.omega-demo {
  grid-area: demo;
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.omega-demo-input {
  border: 1px solid rgba(17, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.86);
  box-shadow: 0 28px 70px rgba(17, 25, 35, 0.1);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.omega-demo-input:hover {
  border-color: rgba(17, 25, 35, 0.18);
  box-shadow: 0 32px 82px rgba(17, 25, 35, 0.12);
  transform: translateY(-2px);
}

.omega-demo-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 32px 20px;
}

.omega-demo-icon {
  width: 24px;
  height: 24px;
  color: var(--steel);
  flex: 0 0 auto;
}

.omega-demo-icon circle,
.omega-demo-icon line,
.omega-demo-file line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.omega-demo-top input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--anthracite);
  font: inherit;
  font-size: 1.25rem;
}

.omega-demo-top input::placeholder {
  color: var(--steel);
  opacity: 0.92;
}

.omega-demo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px 28px 32px;
}

.omega-demo-file,
.omega-demo-send {
  border: 0;
  background: transparent;
  color: var(--steel);
  font: inherit;
  cursor: pointer;
}

.omega-demo-file {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 650;
}

.omega-demo-file svg {
  width: 19px;
  height: 19px;
}

.omega-demo-send {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-black);
  transition: transform 180ms ease, color 180ms ease;
}

.omega-demo-send:hover {
  color: var(--anthracite);
  transform: translateY(-1px);
}

.omega-demo-send svg {
  width: 40px;
  height: 40px;
}

.omega-demo-send circle {
  fill: currentColor;
}

.omega-demo-send path {
  fill: none;
  stroke: var(--warm-white);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-section {
  background: var(--light);
}

.omega-flow {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 56px minmax(110px, 0.8fr) 56px minmax(180px, 1.15fr) 56px minmax(160px, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 54px;
}

.flow-step {
  position: relative;
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.82);
  text-align: center;
  padding: 20px;
}

.flow-core {
  background: var(--blue-black);
  color: var(--warm-white);
}

.flow-core strong {
  color: var(--warm-white);
}

.step-dot {
  width: 8px;
  height: 8px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.66;
  animation: softBlink 2.8s ease-in-out infinite;
}

.flow-arrow {
  height: 1px;
  background: var(--blue-black);
  transform-origin: left;
  animation: arrowFlow 2.8s ease-in-out infinite;
}

.flow-arrow::after {
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -4px;
  margin-left: auto;
  border-top: 1px solid var(--blue-black);
  border-right: 1px solid var(--blue-black);
  content: "";
  transform: rotate(45deg);
}

.micro-labels {
  justify-content: center;
}

.section-dark {
  background: var(--blue-black);
  color: var(--warm-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--warm-white);
}

.section-dark p {
  color: var(--cool-accent);
}

.terminal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 60px;
  align-items: center;
}

.terminal-panel {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #0d131a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border-bottom: 1px solid var(--line-dark);
  padding: 0 16px;
  color: var(--cool-accent);
  font-size: 0.8rem;
}

.terminal-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cool-accent);
  opacity: 0.75;
}

.terminal-top strong {
  margin-left: 8px;
  font-weight: 650;
}

.terminal-body {
  min-height: 300px;
  padding: 24px;
  color: var(--light);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.94rem;
  line-height: 1.9;
}

.terminal-line {
  min-height: 1.8em;
  color: var(--light);
}

.terminal-line::after {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 3px;
  background: var(--light);
  content: "";
  vertical-align: -2px;
  animation: cursorBlink 1s steps(2, start) infinite;
}

.terminal-line.is-complete::after {
  content: none;
}

.security-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-panel);
}

.security-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.security-list li {
  position: relative;
  min-height: 92px;
  background: rgba(250, 250, 248, 0.78);
  padding: 22px 22px 22px 48px;
  color: var(--anthracite);
}

.security-list li::before {
  position: absolute;
  top: 28px;
  left: 22px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--blue-black);
  border-radius: 50%;
  content: "";
}

.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-card {
  min-height: 86px;
  padding: 20px 22px;
}

.final-cta {
  padding: 112px 0;
  background: var(--light);
}

.final-cta-inner {
  max-width: 780px;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--anthracite);
  font-size: 1.1rem;
}

.legal-page {
  background: var(--warm-white);
}

.legal-main {
  background:
    linear-gradient(rgba(17, 25, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 25, 35, 0.035) 1px, transparent 1px),
    var(--warm-white);
  background-size: 80px 80px;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  padding: 112px 0 72px;
}

.legal-hero .section-inner {
  max-width: 960px;
}

.legal-kicker,
.legal-updated {
  color: var(--steel);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--anthracite);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.legal-updated {
  display: inline-flex;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 250, 248, 0.78);
  padding: 8px 12px;
}

.legal-content {
  padding-top: 72px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-summary,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.9);
  box-shadow: 0 18px 60px rgba(17, 25, 35, 0.06);
}

.legal-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 22px;
}

.legal-summary strong {
  display: block;
  color: var(--blue-black);
  font-size: 1rem;
}

.legal-summary p {
  margin: 10px 0 18px;
  color: var(--steel);
}

.legal-summary a,
.legal-card a {
  color: var(--blue-black);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-copy {
  display: grid;
  gap: 14px;
}

.legal-card {
  padding: clamp(22px, 3vw, 34px);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.legal-card p {
  margin: 0;
  color: var(--anthracite);
}

.legal-card p + p {
  margin-top: 12px;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--anthracite);
}

.legal-card li + li {
  margin-top: 10px;
}

.legal-warning {
  border-color: rgba(151, 221, 236, 0.32);
  background:
    linear-gradient(180deg, rgba(151, 221, 236, 0.1), rgba(250, 250, 248, 0.92));
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--anthracite);
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 34%;
  color: var(--blue-black);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-link-grid a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.82);
  padding: 18px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.legal-link-grid a:hover {
  border-color: rgba(17, 25, 35, 0.28);
  transform: translateY(-2px);
}

.legal-link-grid strong,
.legal-link-grid span {
  display: block;
}

.legal-link-grid strong {
  color: var(--blue-black);
}

.legal-link-grid span {
  margin-top: 4px;
  color: var(--steel);
  font-weight: 500;
}

.product-page {
  background: var(--warm-white);
}

.product-hero-page {
  position: relative;
  overflow: hidden;
  padding: 104px 0 86px;
  background: var(--blue-black);
  color: var(--warm-white);
}

.product-hero-page::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(238, 241, 244, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(238, 241, 244, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
}

.product-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.product-hero-page h1 {
  color: var(--warm-white);
}

.product-hero-page p {
  color: rgba(238, 241, 244, 0.74);
}

.product-hero-copy .hero-actions {
  margin-top: 30px;
}

.product-hero-page .btn-secondary {
  border-color: rgba(238, 241, 244, 0.5);
  background: transparent;
  color: var(--warm-white);
}

.product-hero-page .btn-primary {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--blue-black);
}

.product-hero-panel {
  border: 1px solid rgba(238, 241, 244, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 241, 244, 0.08), rgba(238, 241, 244, 0.03)),
    rgba(17, 25, 35, 0.72);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.22);
  padding: 24px;
}

.product-proof-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(238, 241, 244, 0.12);
  border-radius: 6px;
  background: rgba(238, 241, 244, 0.12);
}

.product-proof-list li {
  background: rgba(17, 25, 35, 0.58);
  color: rgba(238, 241, 244, 0.84);
  padding: 16px 18px;
  font-weight: 760;
}

.product-proof-list span {
  display: block;
  margin-bottom: 4px;
  color: rgba(154, 167, 181, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.detail-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.82);
  box-shadow: 0 18px 52px rgba(17, 25, 35, 0.06);
  padding: 26px;
}

.detail-card h3,
.process-card h3 {
  margin-bottom: 14px;
}

.detail-card p,
.process-card p {
  color: var(--anthracite);
}

.detail-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--anthracite);
}

.detail-card li + li {
  margin-top: 8px;
}

.academy-courses-section {
  background:
    linear-gradient(rgba(17, 25, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 25, 35, 0.03) 1px, transparent 1px),
    var(--light);
  background-size: 72px 72px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.course-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.9);
  box-shadow: 0 18px 52px rgba(17, 25, 35, 0.06);
  padding: 26px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 25, 35, 0.22);
  box-shadow: 0 26px 72px rgba(17, 25, 35, 0.1);
}

.course-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-topline small {
  color: var(--anthracite);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.course-card h3 {
  max-width: 14rem;
  margin-bottom: 14px;
}

.course-card p {
  color: var(--anthracite);
}

.course-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
  color: var(--steel);
}

.course-card li {
  position: relative;
  padding-left: 18px;
}

.course-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.course-card > strong {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--deep);
  font-size: 0.95rem;
  line-height: 1.45;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.process-card {
  min-height: 190px;
}

.echo-visual-section {
  padding: 94px 0;
  background:
    linear-gradient(rgba(17, 25, 35, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 25, 35, 0.026) 1px, transparent 1px),
    var(--warm-white);
  background-size: 72px 72px;
}

.echo-before-after {
  margin: 38px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.86);
  box-shadow: 0 28px 80px rgba(17, 25, 35, 0.12);
  overflow: hidden;
}

.echo-before-after img {
  width: 100%;
  height: auto;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-dark .process-card {
  border-color: var(--line-dark);
  background: rgba(238, 241, 244, 0.06);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.section-dark .process-card h3 {
  color: var(--warm-white);
}

.section-dark .process-card p {
  color: var(--cool-accent);
}

.product-cta {
  background: var(--light);
}

.product-cta .final-cta-inner {
  max-width: 860px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--warm-white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
  color: var(--steel);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  max-width: 620px;
  color: var(--anthracite);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes localFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -204;
  }
}

@keyframes boundaryDrift {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes blockedFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -30;
  }
}

@keyframes mapScan {
  0%,
  12% {
    left: 14%;
    opacity: 0;
  }
  22%,
  64% {
    opacity: 0.65;
  }
  76%,
  100% {
    left: 86%;
    opacity: 0;
  }
}

@keyframes packetIn {
  0%,
  14% {
    left: 18%;
    opacity: 0;
  }
  20%,
  46% {
    opacity: 1;
  }
  52%,
  100% {
    left: 42%;
    opacity: 0;
  }
}

@keyframes packetOut {
  0%,
  45% {
    left: 58%;
    opacity: 0;
  }
  54%,
  82% {
    opacity: 1;
  }
  92%,
  100% {
    left: 82%;
    opacity: 0;
  }
}

@keyframes packetCloud {
  0%,
  18% {
    top: 17%;
    opacity: 0;
  }
  30%,
  42% {
    opacity: 1;
  }
  58%,
  100% {
    top: 31%;
    opacity: 0;
  }
}

@keyframes packetApi {
  0%,
  20% {
    bottom: 17%;
    opacity: 0;
  }
  32%,
  46% {
    opacity: 1;
  }
  62%,
  100% {
    bottom: 30%;
    opacity: 0;
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    border-color: rgba(238, 241, 244, 0.2);
    box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.06), 0 18px 38px rgba(0, 0, 0, 0.14);
  }
  42% {
    border-color: rgba(106, 208, 120, 0.42);
    box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.08), 0 0 0 1px rgba(106, 208, 120, 0.08), 0 22px 50px rgba(0, 0, 0, 0.18);
  }
}

@keyframes omegaGlow {
  0%,
  100% {
    border-color: rgba(238, 241, 244, 0.2);
    box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.06), 0 18px 38px rgba(0, 0, 0, 0.14);
  }
  48% {
    border-color: rgba(106, 208, 120, 0.52);
    box-shadow: inset 0 1px 0 rgba(250, 250, 248, 0.08), 0 0 0 1px rgba(106, 208, 120, 0.14), 0 0 42px rgba(106, 208, 120, 0.12), 0 24px 56px rgba(0, 0, 0, 0.2);
  }
}

@keyframes blockPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) rotate(45deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) scale(1.12);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 241, 244, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(238, 241, 244, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 241, 244, 0);
  }
}

@keyframes softBlink {
  0%,
  100% {
    opacity: 0.36;
  }
  50% {
    opacity: 1;
  }
}

@keyframes arrowFlow {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 250, 248, 0.98);
    padding: 12px 24px 24px;
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
    font-size: 1rem;
  }

  .hero-layout,
  .product-layout,
  .product-hero-layout,
  .terminal-layout,
  .two-column,
  .product-line-layout,
  .product-line-layout.reversed {
    grid-template-columns: 1fr;
  }

  .product-line-layout.reversed .section-heading {
    order: -1;
  }

  .hero {
    min-height: 0;
  }

  .hero-layout {
    gap: 44px;
  }

  .product-layout {
    grid-template-areas:
      "copy"
      "demo"
      "features";
    gap: 34px;
  }

  .savings-heading,
  .savings-grid {
    grid-template-columns: 1fr;
  }

  .savings-heading {
    align-items: start;
  }

  .kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .omega-demo {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .secure-panel {
    height: 420px;
    min-height: 0;
  }

  .source-box,
  .response-box {
    width: 200px;
    min-height: 88px;
  }

  .omega-box {
    width: 240px;
    min-height: 108px;
    padding: 24px 24px 22px;
  }

  .omega-box strong {
    font-size: 2.05rem;
  }

  .external-box {
    width: 210px;
  }

  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .journey-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-step::after {
    top: auto;
    right: auto;
    bottom: -7px;
    left: 28px;
    transform: rotate(135deg);
  }

  .omega-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-arrow {
    width: 1px;
    height: 34px;
    justify-self: center;
    transform-origin: top;
  }

  .flow-arrow::after {
    margin-top: auto;
    margin-left: -4px;
    transform: rotate(135deg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-inner nav {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 980px) {
  .secure-panel {
    height: auto;
    min-height: 0;
    padding-bottom: 18px;
  }

  .local-map {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 18px 14px 0;
  }

  .map-lines,
  .boundary-label,
  .block-mark,
  .map-scan,
  .data-packet,
  .blocked-packet {
    display: none;
  }

  .map-box,
  .external-box,
  .omega-box {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: auto;
    min-height: 74px;
    transform: none;
    padding: 14px;
  }

  .cloud-box {
    order: 1;
  }

  .source-box {
    order: 2;
  }

  .omega-box {
    order: 3;
  }

  .response-box {
    order: 4;
  }

  .api-box {
    order: 5;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .section-inner {
    width: min(100% - 36px, var(--max-width));
  }

  .hero {
    padding: 54px 0 42px;
  }

  .section,
  .final-cta {
    padding: 76px 0;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero-lead,
  .section-heading p,
  .section-copy p,
  .final-cta p {
    font-size: 1rem;
  }

  .hero-product-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .portfolio-section,
  .product-line-section,
  .echo-visual-section,
  .product-hero-page {
    padding: 72px 0;
  }

  .echo-before-after {
    margin-top: 28px;
    border-radius: 6px;
  }

  .product-hero-panel {
    padding: 18px;
  }

  .portfolio-card {
    min-height: auto;
    padding: 24px;
  }

  .portfolio-card h3 {
    margin-top: 28px;
  }

  .journey-step {
    min-height: auto;
  }

  .line-panel {
    padding: 12px;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    min-height: auto;
    padding: 22px;
  }

  .course-topline {
    margin-bottom: 26px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .process-card span {
    margin-bottom: 22px;
  }

  .secure-panel {
    height: auto;
    min-height: 0;
    padding-bottom: 18px;
  }

  .local-map {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 18px 14px 0;
  }

  .map-lines,
  .boundary-label,
  .block-mark,
  .map-scan,
  .data-packet,
  .blocked-packet {
    display: none;
  }

  .map-box,
  .external-box,
  .omega-box {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: auto;
    min-height: 74px;
    transform: none;
    padding: 14px;
  }

  .cloud-box {
    order: 1;
  }

  .source-box {
    order: 2;
  }

  .omega-box {
    order: 3;
  }

  .response-box {
    order: 4;
  }

  .api-box {
    order: 5;
  }

  .omega-box strong {
    font-size: 1.5rem;
  }

  .omega-box > span,
  .map-box strong,
  .external-box strong {
    font-size: 0.74rem;
  }

  .map-box span {
    margin-bottom: 6px;
  }

  .map-box small {
    margin-top: 7px;
  }

  .local-map {
    gap: 14px;
    padding: 16px;
  }

  .cloud-box,
  .api-box {
    display: none;
  }

  .map-box,
  .omega-box {
    align-content: center;
    justify-items: start;
    min-height: auto;
    border-color: rgba(238, 241, 244, 0.24);
    background: rgba(17, 25, 35, 0.68);
    padding: 18px;
    text-align: left;
  }

  .source-box,
  .omega-box {
    position: relative;
  }

  .source-box::after,
  .omega-box::after {
    position: absolute;
    bottom: -15px;
    left: 24px;
    width: 1px;
    height: 14px;
    background: linear-gradient(to bottom, rgba(106, 208, 120, 0.9), rgba(106, 208, 120, 0.2));
    box-shadow: 0 0 12px rgba(106, 208, 120, 0.34);
    content: "";
  }

  .omega-box {
    border-color: rgba(106, 208, 120, 0.34);
  }

  .omega-box strong {
    font-size: 2rem;
  }

  .map-box strong {
    font-size: 0.96rem;
  }

  .map-box small,
  .omega-box > span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .use-grid,
  .security-list ul {
    grid-template-columns: 1fr;
  }

  .product-block {
    padding: 24px 22px 24px 70px;
  }

  .product-block::before {
    left: 50px;
  }

  .product-block span {
    left: 20px;
  }

  .terminal-body {
    min-height: 280px;
    padding: 18px;
    font-size: 0.82rem;
  }

  #omega {
    padding: 72px 0;
  }

  .savings-section {
    padding: 76px 0;
  }

  .savings-heading {
    gap: 18px;
    margin-bottom: 30px;
  }

  .savings-form,
  .savings-dashboard {
    padding: 18px;
  }

  .legal-hero {
    padding: 82px 0 54px;
  }

  .legal-content {
    padding-top: 46px;
  }

  .legal-summary,
  .legal-card {
    box-shadow: 0 14px 42px rgba(17, 25, 35, 0.05);
  }

  .legal-link-grid {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .kpi-card {
    min-height: auto;
  }

  .savings-dashboard-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .savings-dashboard-cta .btn {
    justify-content: center;
    width: 100%;
  }

  .horizon-selector {
    grid-template-columns: 1fr;
  }

  .product-stack {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-block {
    min-height: auto;
    padding: 20px 18px 20px 58px;
  }

  .product-block::before {
    left: 40px;
  }

  .product-block span {
    top: 22px;
    left: 18px;
  }

  .omega-demo {
    margin-top: 0;
  }

  .omega-demo-top {
    padding: 18px 18px 10px;
  }

  .omega-demo-bottom {
    padding: 9px 16px 16px 18px;
  }

  .omega-demo-top input {
    font-size: 0.95rem;
  }

  .omega-demo-file {
    font-size: 0.92rem;
  }

  .omega-demo-send {
    width: 36px;
    height: 36px;
  }

  .omega-demo-send svg {
    width: 34px;
    height: 34px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
