:root {
  --bg: #00171f;
  --bg-deep: #00171f;
  --bg-ink: #00171f;
  --panel: rgba(1, 16, 18, 0.74);
  --panel-strong: rgba(5, 14, 15, 0.92);
  --line: rgba(123, 224, 218, 0.14);
  --line-strong: rgba(43, 214, 177, 0.35);
  --text: #f5f8f8;
  --muted: rgba(245, 248, 248, 0.72);
  --subtle: rgba(245, 248, 248, 0.48);
  --green: #009472;
  --green-soft: #009472;
  --blue: #0876d7;
  --cyan: #58e7dc;
  --amber: #ffc857;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --header-height: 74px;
  color-scheme: dark;
  font-family:
    Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
  background: var(--bg);
}

.site-shell::before {
  content: "";
  display: none;
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 10px max(28px, calc((100vw - 1080px) / 2 + 28px));
  border: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  backdrop-filter: none;
  background: transparent;
  box-shadow: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  border-bottom: 0;
  background: transparent;
}

.is-scrolled .site-header,
.menu-open .site-header {
  border-bottom: 1px solid rgba(122, 238, 219, 0.1);
  background: #00171f;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.is-scrolled .site-header::before,
.menu-open .site-header::before {
  background: #00171f;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 196px;
  height: auto;
  filter: drop-shadow(0 1px 14px rgba(0, 0, 0, 0.34));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.42);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green-soft);
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 24, 28, 0.58);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 112px 24px;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-inner.compact {
  width: min(1040px, 100%);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 80px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 14% 8% 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 112, 205, 0.22), rgba(8, 60, 104, 0.12) 34%, transparent 64%),
    radial-gradient(ellipse at 50% 58%, rgba(103, 151, 198, 0.14), transparent 52%);
  filter: blur(46px);
  opacity: 0.62;
  transform: translate3d(0, 0, 0);
  animation: light-drift 11s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, #00171f 96%);
}

.stars {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.7px),
    radial-gradient(circle at 31% 34%, rgba(255, 255, 255, 0.36) 0 1px, transparent 1.5px),
    radial-gradient(circle at 54% 9%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 29%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 91% 18%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 8% 66%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.5px),
    radial-gradient(circle at 65% 72%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 88%, rgba(255, 255, 255, 0.36) 0 1px, transparent 1.5px);
  background-size: 530px 470px;
  opacity: 0.62;
  animation: star-drift 22s linear infinite;
}

.hero-mountains {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  user-select: none;
  background: url("assets/hero-mountains.svg") center / cover no-repeat;
}

.radial-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: calc(50% + 34px);
  width: min(620px, 52vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.84;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 183, 255, 0.2) 0 6%, rgba(32, 108, 204, 0.1) 22%, transparent 48%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 145, 230, 0.11), transparent 54%);
  filter: drop-shadow(0 0 28px rgba(36, 124, 220, 0.22));
  animation: radial-core-breathe 6.8s ease-in-out infinite;
}

.radial-core::before,
.radial-core::after,
.radial-core span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.radial-core::before {
  top: 50%;
  left: 50%;
  width: 78%;
  height: 78%;
  background:
    conic-gradient(from -18deg, transparent 0 222deg, rgba(98, 176, 255, 0.08) 232deg, rgba(151, 212, 255, 0.58) 259deg, rgba(50, 129, 224, 0.28) 288deg, transparent 314deg 360deg);
  filter: blur(10px);
  transform-origin: 50% 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 50%, #000 56% 66%, transparent 73%);
  mask: radial-gradient(circle, transparent 0 50%, #000 56% 66%, transparent 73%);
  animation: orb-ring-clockwise 15s linear infinite;
}

.radial-core::after {
  inset: 34%;
  background:
    radial-gradient(circle at 50% 50%, rgba(137, 202, 255, 0.26), rgba(42, 119, 210, 0.13) 44%, transparent 72%);
  filter: blur(10px);
  animation: radial-core-pulse 5.8s ease-in-out infinite;
}

.radial-core span {
  top: 50%;
  left: 50%;
  width: 68%;
  height: 68%;
  background:
    conic-gradient(from 148deg, transparent 0 210deg, rgba(35, 122, 224, 0.1) 220deg, rgba(101, 185, 255, 0.46) 249deg, rgba(17, 92, 185, 0.28) 280deg, transparent 310deg 360deg);
  filter: blur(8px);
  transform-origin: 50% 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 48%, #000 55% 67%, transparent 74%);
  mask: radial-gradient(circle, transparent 0 48%, #000 55% 67%, transparent 74%);
  animation: orb-ring-counter 18s linear infinite;
}

.radial-core span:nth-child(2) {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100vw - 48px));
  margin: 150px auto 0;
  text-align: center;
  transform: none;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(900px, 92vw);
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(0, 21, 28, 0.24), rgba(0, 22, 30, 0.08) 48%, transparent 74%);
  filter: blur(8px);
}

.eyebrow,
.section-label,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #f3fffc;
  box-shadow: none;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero .eyebrow {
  background: rgba(0, 36, 40, 0.62);
  color: var(--cyan);
  box-shadow: none;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--green-soft);
  font-size: clamp(50px, 4.1vw, 66px);
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: break-word;
  white-space: normal;
  text-shadow: none;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .button {
  min-height: 38px;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 15px;
}

.hero-actions .button svg {
  width: 16px;
  height: 16px;
}

.button {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 12px 19px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button.primary,
.button.submit {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #0b8df5, #0569c8);
  border-color: rgba(93, 183, 255, 0.58);
  box-shadow:
    0 16px 42px rgba(0, 119, 215, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(0, 18, 22, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-signals span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.68);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 650;
}

.hero-signals span:nth-child(2) {
  border-color: rgba(255, 200, 87, 0.18);
  color: rgba(255, 230, 174, 0.78);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(3px);
}

.tech-strip {
  padding-top: 64px;
  padding-bottom: 104px;
}

.tech-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.section-label {
  display: flex;
  width: max-content;
  margin: 0 auto 42px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: transparent;
  box-shadow: none;
}

.logo-rail {
  --logo-gap: clamp(64px, 7vw, 122px);
  --logo-height: clamp(80px, 5.8vw, 100px);
  width: min(1340px, 100%);
  margin-inline: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: var(--logo-gap);
  animation: logo-marquee 46s linear infinite;
  will-change: transform;
}

.logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--logo-gap);
}

.logo-rail span {
  min-width: clamp(184px, 15vw, 268px);
  min-height: 128px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.86;
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.logo-card img {
  display: block;
  width: auto;
  height: var(--logo-height);
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.logo-card-wide img {
  height: calc(var(--logo-height) * 0.86);
}

.logo-card-influx img {
  height: calc(var(--logo-height) * 0.64);
}

.logo-card-mark img {
  height: var(--logo-height);
}

.logo-card-grafana img {
  height: calc(var(--logo-height) * 1.16);
}

.logo-card-neo4j img {
  height: var(--logo-height);
  transform: translateY(3px);
}

.logo-card-n8n img {
  height: var(--logo-height);
  transform: translateY(2px);
  filter: brightness(0) invert(1);
}

.logo-rail span:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.section-heading {
  margin-bottom: 78px;
}

.section-heading.centered {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading .pill {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(38px, 3.35vw, 56px);
  line-height: 1.05;
  font-weight: 460;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.45;
}

.solutions {
  padding-top: 96px;
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 88px;
  margin-bottom: 116px;
}

.solution-row.reverse .visual-panel {
  order: 2;
}

.solution-row.reverse .solution-copy {
  order: 1;
}

.visual-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(122, 238, 219, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    linear-gradient(180deg, rgba(0, 31, 37, 0.76), rgba(0, 14, 16, 0.82)),
    linear-gradient(120deg, rgba(0, 185, 144, 0.08), rgba(0, 118, 215, 0.11));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 6px;
  pointer-events: none;
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: auto -15% -24% 5%;
  height: 44%;
  background: linear-gradient(90deg, transparent, rgba(0, 118, 215, 0.45), transparent);
  filter: blur(24px);
  opacity: 0.85;
}

.automation-panel {
  display: grid;
  grid-template-columns: 174px 210px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 332px;
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(0, 24, 29, 0.18);
  box-shadow: none;
  padding: 28px 34px;
}

.automation-panel::before,
.automation-panel::after {
  display: none;
}

.radar {
  position: relative;
  width: 158px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 32px),
    radial-gradient(circle at center, rgba(0, 118, 215, 0.2), transparent 58%);
  box-shadow: inset 0 0 36px rgba(0, 118, 215, 0.18);
}

.radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    conic-gradient(from -16deg, transparent 0 336deg, rgba(76, 173, 255, 0.04) 338deg, rgba(86, 174, 255, 0.82) 352deg, transparent 360deg);
  filter: blur(0.4px);
  animation: radar-sweep 5.4s linear infinite;
}

.radar span {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: pulse 2.7s ease-in-out infinite;
}

.checklist {
  display: grid;
  gap: 8px;
}

.checklist span {
  min-height: 31px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.74);
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.25;
}

.automation-panel p {
  position: absolute;
  left: calc(50% - 201px);
  top: calc(50% + 90px);
  bottom: auto;
  width: 170px;
  margin: 0;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.assistant-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(460px, 100%);
  min-height: 310px;
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(0, 24, 29, 0.18);
  box-shadow: none;
  padding: 28px 34px;
}

.assistant-panel::before,
.assistant-panel::after {
  display: none;
}

.assistant-card {
  width: min(360px, 100%);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: center;
}

.assistant-orb {
  position: relative;
  flex: 0 0 auto;
  width: 74px;
  aspect-ratio: 1;
  margin: 0 auto 8px;
  border-radius: 50%;
  opacity: 0.9;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 183, 255, 0.24) 0 7%, rgba(32, 108, 204, 0.12) 23%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(70, 145, 230, 0.13), transparent 56%);
  filter: drop-shadow(0 0 13px rgba(36, 124, 220, 0.24));
  transform-origin: 50% 50%;
  animation: assistant-orb-breathe 5.6s ease-in-out infinite;
}

.assistant-orb::before,
.assistant-orb::after,
.assistant-orb span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.assistant-orb::before {
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background:
    conic-gradient(from -18deg, transparent 0 222deg, rgba(98, 176, 255, 0.08) 232deg, rgba(151, 212, 255, 0.62) 259deg, rgba(50, 129, 224, 0.32) 288deg, transparent 314deg 360deg);
  filter: blur(2.8px);
  transform-origin: 50% 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 49%, #000 56% 68%, transparent 75%);
  mask: radial-gradient(circle, transparent 0 49%, #000 56% 68%, transparent 75%);
  animation: orb-ring-clockwise 9.8s linear infinite;
}

.assistant-orb::after {
  inset: 33%;
  background:
    radial-gradient(circle at 50% 50%, rgba(137, 202, 255, 0.28), rgba(42, 119, 210, 0.14) 44%, transparent 72%);
  filter: blur(3px);
  animation: radial-core-pulse 5.8s ease-in-out infinite;
}

.assistant-orb span {
  top: 50%;
  left: 50%;
  width: 76%;
  height: 76%;
  background:
    conic-gradient(from 148deg, transparent 0 210deg, rgba(35, 122, 224, 0.1) 220deg, rgba(101, 185, 255, 0.5) 249deg, rgba(17, 92, 185, 0.3) 280deg, transparent 310deg 360deg);
  filter: blur(2.4px);
  transform-origin: 50% 50%;
  -webkit-mask: radial-gradient(circle, transparent 0 47%, #000 55% 68%, transparent 75%);
  mask: radial-gradient(circle, transparent 0 47%, #000 55% 68%, transparent 75%);
  animation: orb-ring-counter 12.4s linear infinite;
}

.assistant-orb span:nth-child(2) {
  display: none;
}

.assistant-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
}

.assistant-card > span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.35;
}

.assistant-input {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 4px;
  background: rgba(0, 21, 26, 0.5);
  padding: 0 46px 0 16px;
  color: rgba(0, 148, 114, 0.72);
  text-align: left;
  animation: none;
}

.assistant-typed {
  min-width: 0;
  overflow: hidden;
  color: rgba(214, 239, 243, 0.76);
  font-size: 14px;
  line-height: 1;
  text-overflow: clip;
  white-space: nowrap;
}

.assistant-caret {
  width: 1px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: 2px;
  background: rgba(0, 148, 114, 0.78);
  box-shadow: 0 0 10px rgba(0, 148, 114, 0.32);
  animation: blink 1s steps(1) infinite;
}

.assistant-input::after {
  content: ">";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(8, 118, 215, 0.35);
  border-radius: 4px;
  color: rgba(8, 118, 215, 0.72);
  font-size: 14px;
  line-height: 1;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.assistant-actions span,
.tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(8, 7, 8, 0.78);
  color: #ffffff;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 700;
}

.assistant-actions span {
  min-height: 28px;
  border-color: rgba(0, 118, 215, 0.16);
  border-radius: 999px;
  background: rgba(0, 27, 32, 0.45);
  color: rgba(255, 255, 255, 0.52);
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 650;
}

.graph-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(0, 24, 29, 0.18);
  box-shadow: none;
  padding: 44px;
}

.graph-panel::before,
.graph-panel::after {
  display: none;
}

.node {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 20, 25, 0.64);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  box-shadow:
    inset 0 0 28px rgba(8, 118, 215, 0.1),
    0 16px 36px rgba(0, 0, 0, 0.14);
}

.solution-orb {
  width: 54px;
  margin: 0 auto 11px;
  opacity: 0.9;
}

.node-label {
  color: rgba(255, 255, 255, 0.58);
}

.connector {
  position: relative;
  width: 150px;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent, rgba(88, 231, 220, 0.58), transparent) center / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(8, 118, 215, 0.18), transparent) 50% calc(50% - 11px) / 96% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(8, 118, 215, 0.18), transparent) 50% calc(50% + 11px) / 96% 1px no-repeat;
  box-shadow: 0 0 18px rgba(88, 231, 220, 0.14);
}

.connector span {
  position: absolute;
  left: -12px;
  top: calc(50% - 2px);
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(90, 187, 255, 0.9), transparent);
  filter: blur(0.2px);
  animation: packet-flow 2.9s linear infinite;
}

.connector span:nth-child(2) {
  top: calc(50% - 13px);
  animation-delay: -0.9s;
  opacity: 0.7;
}

.connector span:nth-child(3) {
  top: calc(50% + 9px);
  animation-delay: -1.8s;
  opacity: 0.55;
}

.stack-mark {
  width: 56px;
  display: grid;
  grid-template-columns: repeat(3, 14px);
  grid-auto-rows: 14px;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.stack-mark span {
  border-radius: 5px;
  background: rgba(36, 132, 206, 0.86);
  box-shadow: 0 0 14px rgba(36, 132, 206, 0.22);
  animation: stack-pulse 3.8s ease-in-out infinite;
}

.stack-mark span:nth-child(2),
.stack-mark span:nth-child(4),
.stack-mark span:nth-child(6),
.stack-mark span:nth-child(8) {
  background: rgba(67, 166, 232, 0.86);
}

.stack-mark span:nth-child(3n) {
  animation-delay: -0.7s;
}

.stack-mark span:nth-child(2n) {
  animation-delay: -1.4s;
}

.code-panel {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  height: 390px;
  border-color: rgba(255, 255, 255, 0.075);
  background: rgba(0, 24, 29, 0.18);
  box-shadow: none;
  padding: 0;
}

.code-panel::before,
.code-panel::after {
  display: none;
}

.code-window {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: rgba(0, 15, 19, 0.76);
  box-shadow: inset 0 0 36px rgba(8, 118, 215, 0.1);
}

.code-toolbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.035);
}

.code-arrow {
  width: 7px;
  height: 7px;
  border-left: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  opacity: 0.75;
  transform: rotate(45deg);
}

.code-arrow:nth-child(2) {
  transform: rotate(225deg);
}

.code-tab {
  width: 122px;
  height: 9px;
  margin-left: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.code-control {
  width: 10px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 2px;
}

.code-control:first-of-type {
  margin-left: auto;
}

.code-body {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  overflow: hidden;
}

.code-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding-top: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.code-sidebar span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  opacity: 0.76;
}

.code-sidebar span:nth-child(2) {
  border-radius: 50%;
}

.code-sidebar span:nth-child(3) {
  border-color: rgba(44, 156, 255, 0.72);
  border-radius: 4px;
}

.code-stream {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(238, 247, 248, 0.74);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.58;
  white-space: pre;
}

.code-stream code {
  display: block;
  padding: 18px 18px 28px;
  animation: code-float 20s linear infinite;
}

.code-key {
  color: #0876d7;
}

.code-type {
  color: rgba(74, 170, 255, 0.98);
}

.code-string {
  color: rgba(255, 255, 255, 0.62);
}

.solution-copy h3 {
  margin: 24px 0 14px;
  font-size: clamp(30px, 2.25vw, 38px);
  line-height: 1.08;
  font-weight: 460;
  letter-spacing: 0;
}

.solution-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tags span {
  min-height: 34px;
  padding: 7px 13px;
}

.benefits {
  padding-top: 74px;
}

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

.benefit-card {
  --icon-glow: rgba(72, 198, 225, 0.2);
  --icon-glow-deep: rgba(8, 118, 215, 0.58);
  min-height: 292px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 238, 219, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%),
    linear-gradient(180deg, rgba(0, 23, 31, 0.96), rgba(0, 20, 27, 0.96));
  padding: 32px;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -34%;
  height: 60%;
  background:
    radial-gradient(ellipse at 50% 100%, var(--icon-glow-deep) 0%, rgba(8, 118, 215, 0.34) 26%, var(--icon-glow) 50%, transparent 74%),
    linear-gradient(90deg, transparent, rgba(72, 198, 225, 0.11), rgba(8, 118, 215, 0.2), transparent);
  filter: blur(20px);
  opacity: 0.86;
}

.benefit-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: -5px 0 24px -6px;
}

.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 2;
}

.benefit-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 720;
  letter-spacing: 0;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contacts {
  padding-top: 104px;
  padding-bottom: 128px;
}

.contacts .section-heading {
  margin-bottom: 72px;
}

.contacts .section-heading .pill {
  margin-bottom: 30px;
}

.contacts .section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 760;
}

.contacts .section-heading p {
  max-width: 620px;
  font-size: 21px;
  line-height: 1.42;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: min(980px, 100%);
  margin: 0 auto;
}

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

.contact-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 238, 219, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 46%),
    linear-gradient(180deg, rgba(7, 13, 14, 0.92), rgba(5, 12, 13, 0.94));
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.contact-card::after,
.contact-form::after {
  content: "";
  position: absolute;
  left: 18%;
  right: -8%;
  bottom: -48%;
  height: 88%;
  background:
    radial-gradient(ellipse at 72% 100%, rgba(8, 118, 215, 0.68) 0%, rgba(8, 118, 215, 0.36) 34%, rgba(72, 198, 225, 0.13) 58%, transparent 76%);
  filter: blur(22px);
  opacity: 0.84;
  pointer-events: none;
}

.contact-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 16px;
  padding: 30px 32px 28px;
  color: #ffffff;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(72, 198, 225, 0.32);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-card svg {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  fill: none;
  stroke: #f7fbfb;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card span {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-card strong,
.contact-card em {
  display: block;
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 13px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 760;
}

.contact-card em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  padding: 34px 28px 28px;
}

.contact-form label,
.contact-form .full,
.contact-form button,
.form-status {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form label span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  outline: none;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  padding: 16px 16px;
  font-size: 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(72, 198, 225, 0.54);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 3px rgba(8, 118, 215, 0.12);
}

.button.submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  text-transform: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(180deg, #0876d7, #0568bf);
  box-shadow:
    0 16px 34px rgba(8, 118, 215, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--green-soft);
}

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

.footer-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(160px, 0.6fr) minmax(260px, 0.9fr);
  gap: 42px;
  padding: 76px 0;
}

.footer-logo img {
  width: min(390px, 100%);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 740;
  letter-spacing: 0;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 9px;
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.66);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

.benefit-card[data-reveal]:nth-child(2),
.solution-row[data-reveal]:nth-of-type(2) {
  transition-delay: 80ms;
}

.benefit-card[data-reveal]:nth-child(3),
.solution-row[data-reveal]:nth-of-type(3) {
  transition-delay: 140ms;
}

.benefit-card[data-reveal]:nth-child(4) {
  transition-delay: 40ms;
}

.benefit-card[data-reveal]:nth-child(5) {
  transition-delay: 110ms;
}

.benefit-card[data-reveal]:nth-child(6) {
  transition-delay: 170ms;
}

.benefit-card[data-reveal],
.benefit-card[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.logo-rail[data-reveal],
.logo-rail[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.benefit-card[data-reveal]:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

@keyframes light-drift {
  from {
    transform: translate3d(-2%, -1%, 0) skewY(-2deg);
  }
  to {
    transform: translate3d(2%, 2%, 0) skewY(2deg);
  }
}

@keyframes star-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 470px;
  }
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - var(--logo-gap) / 2), 0, 0);
  }
}

@keyframes orb-ring-clockwise {
  0% {
    opacity: 0.56;
    transform: translate(-50%, -50%) rotate(0deg) scale(0.98);
  }
  50% {
    opacity: 0.86;
    transform: translate(-50%, -50%) rotate(180deg) scale(1.04);
  }
  100% {
    opacity: 0.56;
    transform: translate(-50%, -50%) rotate(360deg) scale(0.98);
  }
}

@keyframes orb-ring-counter {
  0% {
    opacity: 0.46;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
  }
  50% {
    opacity: 0.76;
    transform: translate(-50%, -50%) rotate(-180deg) scale(0.96);
  }
  100% {
    opacity: 0.46;
    transform: translate(-50%, -50%) rotate(-360deg) scale(1.02);
  }
}

@keyframes radial-core-pulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.04);
  }
}

@keyframes radial-core-breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.985);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.025);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.985);
  }
}

@keyframes assistant-orb-breathe {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.84;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.98;
  }
}

@keyframes packet-flow {
  0% {
    opacity: 0;
    transform: translateX(0) scaleX(0.4);
  }
  18% {
    opacity: 0.9;
  }
  78% {
    opacity: 0.76;
  }
  100% {
    opacity: 0;
    transform: translateX(152px) scaleX(1);
  }
}

@keyframes stack-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes code-float {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.92;
  }
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0.15;
  }
}

@media (max-width: 1040px) {
  .site-header {
    padding-inline: 22px;
  }

  .brand img {
    width: 180px;
  }

  .nav-links {
    gap: 22px;
  }

  .solution-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .solution-row,
  .solution-row.reverse {
    gap: 34px;
  }

  .solution-row.reverse .visual-panel,
  .solution-row.reverse .solution-copy {
    order: initial;
  }

  .solution-copy {
    max-width: 720px;
  }

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

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

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    width: 100%;
    padding: 10px 16px;
  }

  .brand img {
    width: 176px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    transform: translateY(-120%);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    padding: 18px 16px 22px;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 240ms ease,
      opacity 240ms ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .section-band {
    padding-inline: 16px;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
    padding-top: calc(var(--header-height) + 74px);
    padding-bottom: 56px;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    text-align: left;
    transform: none;
  }

  h1,
  .hero-copy {
    max-width: min(100%, 360px);
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.15;
    white-space: normal;
  }

  .hero-copy,
  .section-heading p,
  .solution-copy p {
    font-size: 16px;
  }

  .hero-copy {
    margin-right: 0;
    margin-left: 0;
  }

  .hero-actions {
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .radial-core {
    top: 43%;
    left: 60%;
    width: 430px;
    opacity: 0.44;
  }

  .hero-mountains {
    background-position: 54% top;
  }

  .tech-strip {
    padding-top: 36px;
    padding-bottom: 74px;
  }

  .section-label {
    margin-left: 0;
  }

  .logo-rail {
    --logo-gap: 42px;
    --logo-height: 68px;
    width: 100vw;
    max-width: none;
    margin-inline: -16px;
  }

  .logo-rail span {
    min-width: 178px;
    min-height: 96px;
    justify-content: center;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .section-heading p {
    margin-left: 0;
  }

  .solutions {
    padding-top: 74px;
  }

  .solution-row {
    margin-bottom: 72px;
  }

  .visual-panel {
    min-height: 320px;
  }

  .automation-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .radar {
    width: 152px;
  }

  .automation-panel p {
    position: static;
    width: auto;
    grid-row: 2;
    text-align: left;
  }

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

  .graph-panel {
    min-height: 260px;
    padding: 26px;
  }

  .code-panel {
    height: 320px;
    padding: 0;
  }

  .code-window {
    height: 100%;
  }

  .code-stream {
    font-size: 12px;
  }

  .node {
    width: 104px;
    height: 108px;
  }

  .connector {
    width: 68px;
  }

  .solution-orb {
    width: 46px;
  }

  .stack-mark {
    width: 48px;
    grid-template-columns: repeat(3, 12px);
    grid-auto-rows: 12px;
    gap: 4px;
  }

  .benefit-grid,
  .contact-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 232px;
    padding: 26px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .footer-inner {
    width: min(100% - 36px, 1120px);
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .footer-logo img {
    width: min(320px, 100%);
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 150px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

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

  .assistant-card {
    width: 100%;
  }

  .assistant-panel {
    padding: 30px 22px;
  }

  .code-panel {
    height: 320px;
    padding: 0;
  }

  .code-window {
    height: 100%;
  }

  .code-body {
    grid-template-columns: 34px 1fr;
  }

  .code-stream code {
    padding: 16px 12px 24px;
  }

  .assistant-orb {
    width: 66px;
  }

  .assistant-actions span,
  .tags span {
    font-size: 13px;
  }

  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    width: min(100% - 36px, 1120px);
    flex-direction: column;
    gap: 6px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
