:root {
  color-scheme: dark;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  --bg: #020308;
  --bg-soft: #070d17;
  --surface: rgba(7, 14, 24, 0.68);
  --surface-strong: rgba(10, 18, 30, 0.86);
  --text: #f7fbff;
  --text-muted: #b6c4d4;
  --text-soft: #8798aa;
  --line: rgba(205, 242, 255, 0.14);
  --line-strong: rgba(205, 242, 255, 0.22);
  --accent: #00aeef;
  --accent-2: #55d9ff;
  --accent-3: #0077ad;
  --accent-soft: rgba(0, 174, 239, 0.1);
  --accent-line: rgba(0, 174, 239, 0.44);
  --charcoal: #f7fbff;
  --charcoal-2: #c8d8e8;
  --white: #ffffff;
  --shadow-soft: 0 30px 140px rgba(0, 0, 0, 0.48);
  --shadow-card: 0 26px 90px rgba(0, 0, 0, 0.34);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --container: 1184px;
  --nav-height: 72px;
  --header-height: var(--nav-height);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #020308;
    --bg-soft: #070d17;
    --surface: rgba(7, 14, 24, 0.68);
    --surface-strong: rgba(10, 18, 30, 0.86);
    --text: #f7fbff;
    --text-muted: #b6c4d4;
    --text-soft: #8798aa;
    --line: rgba(205, 242, 255, 0.14);
    --line-strong: rgba(205, 242, 255, 0.22);
    --accent-soft: rgba(0, 174, 239, 0.1);
    --accent-line: rgba(0, 174, 239, 0.44);
    --shadow-soft: 0 30px 140px rgba(0, 0, 0, 0.48);
    --shadow-card: 0 26px 90px rgba(0, 0, 0, 0.34);
  }
}

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

html {
  background-color: #06101b;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  position: relative;
  isolation: isolate;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 174, 239, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(0, 119, 173, 0.11), transparent 28rem),
    radial-gradient(circle at 55% 78%, rgba(85, 217, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #020308 0%, #050913 46%, #020308 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.68;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

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

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

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

::selection {
  background: rgba(0, 174, 239, 0.2);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid rgba(0, 174, 239, 0.36);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-200vw, -200vh, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus-visible {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px));
  left: 16px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
  color: var(--text);
  padding: 10px 14px;
  white-space: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section-pad {
  padding-block: 96px;
}

.section-pad + .section-pad {
  padding-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

@supports (padding: max(0px)) {
  .site-header {
    top: calc(-1 * env(safe-area-inset-top, 0px));
  }

  .nav {
    min-height: var(--nav-height);
  }
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 174, 239, 0.18);
  background: rgba(2, 3, 8, 0.62);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@supports (padding: max(0px)) {
  .nav {
    min-height: var(--nav-height);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.brand-logo {
  width: 38px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 174, 239, 0.28));
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.18), rgba(85, 217, 255, 0.08)),
    var(--accent-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 24px rgba(0, 174, 239, 0.12);
}

@media (prefers-color-scheme: dark) {
  .brand-mark {
    background:
      linear-gradient(145deg, rgba(0, 174, 239, 0.18), rgba(85, 217, 255, 0.08)),
      var(--accent-soft);
  }
}

.brand-mark span {
  width: 12px;
  height: 12px;
  position: relative;
  border: 2px solid var(--accent);
  border-radius: 4px;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 2px;
  top: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.brand-mark span::before {
  right: 100%;
}

.brand-mark span::after {
  left: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 560;
}

.nav-menu a {
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu a:hover {
  background: rgba(0, 174, 239, 0.07);
  color: var(--text);
}

@media (prefers-color-scheme: dark) {
  .nav-menu a:hover {
    background: rgba(0, 174, 239, 0.07);
  }
}

.nav-menu .nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(0, 174, 239, 0.32);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02070a;
  box-shadow: 0 16px 52px rgba(0, 174, 239, 0.18);
}

.nav-menu .nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #02070a;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 2px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.language-switch a {
  flex: 0 0 auto;
  min-width: 31px;
  padding: 6px 7px;
  border-radius: 6px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.language-switch a:hover {
  background: rgba(0, 174, 239, 0.08);
  color: var(--text);
}

.language-switch a[aria-current="page"] {
  background: rgba(0, 174, 239, 0.14);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-block: 82px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(205, 242, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 242, 255, 0.052) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

@media (prefers-color-scheme: dark) {
  .hero::before {
    background-image:
      linear-gradient(rgba(205, 242, 255, 0.052) 1px, transparent 1px),
      linear-gradient(90deg, rgba(205, 242, 255, 0.052) 1px, transparent 1px);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.84fr);
  gap: 64px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 700px;
  font-size: 64px;
  font-weight: 840;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  font-weight: 760;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 720;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.62;
}

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

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 690;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: translateX(-130%);
  transition: transform 620ms ease, opacity 180ms ease;
}

.button:hover::before {
  opacity: 1;
  transform: translateX(130%);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid rgba(0, 174, 239, 0.24);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02070a;
  box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.12), 0 24px 90px rgba(0, 174, 239, 0.18);
}

.button-primary:hover {
  border-color: rgba(85, 217, 255, 0.46);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 590px;
  margin: 36px 0 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(7, 14, 24, 0.56);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

@media (prefers-color-scheme: dark) {
  .trust-strip {
    background: rgba(7, 14, 24, 0.56);
  }
}

.trust-strip div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

@media (prefers-color-scheme: dark) {
  .trust-strip div {
    background: rgba(255, 255, 255, 0.045);
  }
}

.trust-strip dt {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 21px;
  font-weight: 760;
  line-height: 1.1;
}

.trust-strip dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% -10% -8% 12%;
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.13), rgba(0, 119, 173, 0.08));
  transform: rotate(-4deg);
  filter: blur(0.2px);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.15), transparent 34%),
    linear-gradient(315deg, rgba(0, 119, 173, 0.1), transparent 42%),
    var(--surface-strong);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.dashboard-shell:hover {
  border-color: rgba(85, 217, 255, 0.48);
  box-shadow: 0 36px 150px rgba(0, 0, 0, 0.58), 0 0 62px rgba(0, 174, 239, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(205, 242, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 242, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.72;
  pointer-events: none;
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.036) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 12px;
}

.window-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8ddda;
}

.dashboard-topbar .window-dot:nth-child(1) {
  background: #ff5470;
}

.dashboard-topbar .window-dot:nth-child(2) {
  background: #ffd166;
}

.dashboard-topbar .window-dot:nth-child(3) {
  background: #55d9ff;
}

.snake-trigger {
  appearance: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 0 rgba(85, 217, 255, 0.34), 0 0 18px rgba(85, 217, 255, 0.38);
  animation: snakeHint 8s ease-in-out 3s infinite;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.snake-trigger::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(85, 217, 255, 0.28);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}

.snake-trigger:hover,
.snake-trigger:focus-visible {
  transform: scale(1.28);
  box-shadow: 0 0 0 5px rgba(85, 217, 255, 0.13), 0 0 24px rgba(85, 217, 255, 0.62);
  animation-play-state: paused;
}

.snake-trigger:hover::after,
.snake-trigger:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

@keyframes snakeHint {
  0%,
  68%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 217, 255, 0.34), 0 0 18px rgba(85, 217, 255, 0.38);
  }

  74% {
    transform: scale(1.34);
    box-shadow: 0 0 0 7px rgba(85, 217, 255, 0.1), 0 0 28px rgba(85, 217, 255, 0.68);
  }

  82% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 217, 255, 0.24), 0 0 18px rgba(85, 217, 255, 0.42);
  }
}

.dashboard-topbar p {
  margin: 0 0 0 10px;
}

.dashboard-body {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.status-panel {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(85, 217, 255, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.045);
}

.panel-label {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.status-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.pulse-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(85, 217, 255, 0.12), 0 0 34px rgba(85, 217, 255, 0.62);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.82);
    opacity: 0.72;
  }
}

body.snake-open {
  overflow: hidden;
}

.snake-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 3, 8, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.snake-modal[hidden] {
  display: none;
}

.snake-dialog {
  width: min(100%, 450px);
  max-height: min(820px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.1), transparent 42%),
    rgba(5, 10, 18, 0.96);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(85, 217, 255, 0.06) inset;
}

.snake-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.snake-title {
  margin: 0;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 820;
}

.snake-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.snake-close::before,
.snake-close::after {
  content: "";
  grid-area: 1 / 1;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.snake-close::before {
  transform: rotate(45deg);
}

.snake-close::after {
  transform: rotate(-45deg);
}

.snake-close:hover {
  border-color: var(--accent-line);
  background: rgba(0, 174, 239, 0.1);
  transform: translateY(-1px);
}

.snake-content {
  min-height: 0;
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow: auto;
}

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

.snake-stat {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.snake-stat span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.snake-stat strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1;
}

.snake-board-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(85, 217, 255, 0.28);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(rgba(85, 217, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 217, 255, 0.045) 1px, transparent 1px),
    #06101b;
  background-size: 20px 20px;
  box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.06) inset, 0 22px 60px rgba(0, 0, 0, 0.24);
  touch-action: none;
}

.snake-board {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  touch-action: none;
}

.snake-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 3, 8, 0.46);
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
  text-align: center;
}

.snake-message[hidden] {
  display: none;
}

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

.snake-button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.snake-button:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.snake-button-primary {
  border-color: rgba(0, 174, 239, 0.28);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02070a;
}

.snake-button-primary:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #02070a;
}

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

.metric-card,
.terminal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.046);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-card {
  min-height: 138px;
  padding: 17px;
}

.metric-card.wide {
  grid-column: 1 / -1;
  min-height: 112px;
}

.metric-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.sparkline {
  height: 46px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 20px;
}

.sparkline i {
  width: 100%;
  min-width: 8px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, var(--accent), rgba(0, 174, 239, 0.18));
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.22);
}

.sparkline i:nth-child(1) {
  height: 28%;
}

.sparkline i:nth-child(2) {
  height: 52%;
}

.sparkline i:nth-child(3) {
  height: 38%;
}

.sparkline i:nth-child(4) {
  height: 74%;
}

.sparkline i:nth-child(5) {
  height: 46%;
}

.sparkline i:nth-child(6) {
  height: 64%;
}

.sparkline i:nth-child(7) {
  height: 86%;
}

.ring {
  width: 66px;
  height: 66px;
  margin-top: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--surface-strong) 0 52%, transparent 54%),
    conic-gradient(var(--accent-2) 0 31%, rgba(255, 255, 255, 0.1) 31% 100%);
  box-shadow: 0 0 30px rgba(85, 217, 255, 0.13);
}

.deploy-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.deploy-steps b {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.deploy-steps b:nth-child(4) {
  background: linear-gradient(90deg, var(--accent) 48%, rgba(255, 255, 255, 0.1) 48%);
}

.terminal-card {
  margin-top: 12px;
  padding: 18px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
}

.terminal-card p {
  margin: 0;
}

.terminal-card span {
  color: var(--accent);
}

.terminal-card .ok {
  color: var(--accent);
}

.terminal-card .muted {
  color: var(--text-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.68;
}

.service-grid,
.audience-grid,
.problem-grid,
.pricing-grid,
.result-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}

.service-grid,
.audience-grid,
.result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-card,
.audience-card,
.problem-card,
.benefit-card,
.testimonial-card,
.pricing-card,
.result-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.055), transparent 42%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.audience-card:hover,
.problem-card:hover,
.benefit-card:hover,
.testimonial-card:hover,
.pricing-card:hover,
.result-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-line);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 174, 239, 0.08);
}

.service-card {
  min-height: 236px;
  padding: 24px;
}

.audience {
  background: transparent;
}

.audience-card {
  min-height: 224px;
  padding: 24px;
}

.audience-card span,
.problem-card span,
.result-label {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 217, 255, 0.3);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.16), rgba(85, 217, 255, 0.05)),
    rgba(255, 255, 255, 0.035);
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0, 174, 239, 0.07);
}

.audience-card span,
.problem-card span {
  margin-bottom: 24px;
  padding: 0 10px;
}

.service-tag {
  min-width: 52px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.16), rgba(85, 217, 255, 0.05)),
    rgba(255, 255, 255, 0.035);
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 0 24px rgba(0, 174, 239, 0.07);
}

.problem-card {
  min-height: 202px;
  position: relative;
  padding: 26px;
}

.service-card p,
.audience-card p,
.problem-card p,
.benefit-card p,
.testimonial-card blockquote,
.timeline-item p,
.result-card p,
.faq-item p {
  color: var(--text-muted);
}

.service-card p,
.audience-card p,
.problem-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

.pricing {
  background: transparent;
}

.pricing-note {
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pricing-note p {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin: 0;
  border: 1px solid rgba(205, 242, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  padding: 13px 16px;
  text-align: center;
}

.pricing-note strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
}

.pricing-note span {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.pricing-card {
  min-height: 560px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(0, 174, 239, 0.32);
  background:
    linear-gradient(135deg, rgba(85, 217, 255, 0.14), transparent 58%),
    linear-gradient(315deg, rgba(0, 174, 239, 0.08), transparent 48%),
    var(--surface);
}

.pricing-head {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.pricing-label {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.2;
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin: 0;
  color: var(--text-muted);
}

.price strong {
  color: var(--accent-2);
  font-size: 36px;
  line-height: 1;
}

.price span {
  font-size: 15px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.icon {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.18), rgba(85, 217, 255, 0.05)),
    var(--accent-soft);
  box-shadow: 0 0 28px rgba(0, 174, 239, 0.08);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-color: var(--accent);
}

.icon-server::before {
  width: 19px;
  height: 14px;
  left: 9px;
  top: 8px;
  border: 2px solid var(--accent);
  border-radius: 3px;
}

.icon-server::after {
  width: 19px;
  height: 2px;
  left: 9px;
  top: 26px;
  border-radius: 999px;
  background: var(--accent);
}

.icon-monitor::before {
  width: 19px;
  height: 19px;
  left: 9px;
  top: 9px;
  border: 2px solid var(--accent);
  border-radius: 999px;
}

.icon-monitor::after {
  width: 8px;
  height: 2px;
  left: 24px;
  top: 25px;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(45deg);
  transform-origin: left center;
}

.icon-deploy::before {
  width: 18px;
  height: 18px;
  left: 10px;
  top: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.icon-deploy::after {
  width: 18px;
  height: 2px;
  left: 8px;
  top: 18px;
  border-radius: 999px;
  background: var(--accent);
}

.icon-shield::before {
  width: 18px;
  height: 21px;
  left: 10px;
  top: 8px;
  border: 2px solid var(--accent);
  border-radius: 10px 10px 12px 12px;
  clip-path: polygon(50% 0, 100% 16%, 88% 74%, 50% 100%, 12% 74%, 0 16%);
}

.icon-shield::after {
  width: 8px;
  height: 4px;
  left: 15px;
  top: 17px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.icon-backup::before {
  width: 20px;
  height: 20px;
  left: 9px;
  top: 9px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  border-right-color: transparent;
}

.icon-backup::after {
  width: 7px;
  height: 7px;
  right: 8px;
  top: 8px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(20deg);
}

.icon-performance::before {
  width: 22px;
  height: 12px;
  left: 8px;
  top: 16px;
  border: 2px solid var(--accent);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
}

.icon-performance::after {
  width: 10px;
  height: 2px;
  left: 17px;
  top: 20px;
  border-radius: 999px;
  background: var(--accent);
  transform: rotate(-38deg);
  transform-origin: left center;
}

.icon-maintenance::before {
  width: 19px;
  height: 19px;
  left: 9px;
  top: 9px;
  border: 2px solid var(--accent);
  border-radius: 999px;
}

.icon-maintenance::after {
  width: 8px;
  height: 8px;
  left: 15px;
  top: 15px;
  border-radius: 2px;
  background: var(--accent);
}

.icon-automation::before {
  width: 7px;
  height: 7px;
  left: 8px;
  top: 8px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  box-shadow: 15px 0 0 -2px var(--surface-strong), 15px 0 0 0 var(--accent), 7px 15px 0 -2px var(--surface-strong), 7px 15px 0 0 var(--accent);
}

.icon-automation::after {
  width: 18px;
  height: 18px;
  left: 10px;
  top: 10px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  opacity: 0.7;
}

.process {
  background: transparent;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--line-strong);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.055), transparent 44%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 24px;
}

.timeline-item span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 760;
}

.timeline-item p {
  margin-bottom: 0;
}

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

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

.benefit-card.primary {
  background:
    linear-gradient(135deg, rgba(85, 217, 255, 0.15), transparent 62%),
    linear-gradient(315deg, rgba(0, 174, 239, 0.09), transparent 48%),
    var(--surface);
}

.stat {
  min-width: 88px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.16), rgba(85, 217, 255, 0.05)),
    rgba(255, 255, 255, 0.035);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0, 174, 239, 0.07);
}

.benefit-card .stat {
  color: var(--accent);
}

.benefit-card p:last-child {
  margin-bottom: 0;
}

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

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 282px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  padding: 28px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 86px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 22px rgba(0, 174, 239, 0.28);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
}

.testimonial-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.68;
}

.testimonial-card h3 {
  margin: 0 0 14px;
}

.result-label {
  margin: 0 0 30px;
  padding: 0 11px;
}

.result-card .result-label {
  color: var(--accent-2);
}

.results {
  background: transparent;
}

.result-card {
  min-height: 252px;
  padding: 26px;
}

.result-card h3 {
  margin-bottom: 12px;
}

.result-card p:last-child {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

.faq {
  padding-top: 0;
}

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

.faq-item {
  min-height: 0;
  padding: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-item summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 740;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  margin: -2px 0 0;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.68;
}

.testimonial-card figcaption {
  margin-top: 36px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--text);
  font-size: 15px;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 14px;
}

.cta-section {
  padding-block: 0 112px;
}

.legal-page {
  padding-block: 112px;
}

.legal-content {
  max-width: 880px;
  display: grid;
  gap: 22px;
}

.legal-content h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: 56px;
}

.legal-content h2 {
  margin: 18px 0 0;
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-section {
  padding: 0 0 96px;
}

.newsletter-panel {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: 48px;
  align-items: start;
  border: 1px solid rgba(205, 242, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.035);
  padding: 56px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.newsletter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.newsletter-panel > * {
  position: relative;
  z-index: 1;
}

.newsletter-copy h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 34px;
}

.newsletter-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.newsletter-form {
  align-self: stretch;
  align-content: start;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.newsletter-form .form-honeypot,
.newsletter-form .form-privacy,
.newsletter-form .form-status {
  grid-column: 1 / -1;
}

.newsletter-form button {
  width: auto;
  min-width: 168px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: 48px;
  align-items: start;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.19), transparent 42%),
    linear-gradient(315deg, rgba(0, 119, 173, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(9, 17, 29, 0.94), rgba(4, 8, 15, 0.96));
  color: #ffffff;
  padding: 56px;
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .eyebrow {
  color: var(--accent-2);
}

.cta-panel h2 {
  max-width: 780px;
  color: #ffffff;
}

.cta-panel p:not(.eyebrow):not(.form-privacy):not(.form-status) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.cta-panel .response-note {
  max-width: 700px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  font-family: var(--mono);
}

.response-note-item {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(85, 217, 255, 0.22);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.11), rgba(85, 217, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.response-note-item strong {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.department-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 660px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(205, 242, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.042);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.department-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "status links"
    "title links"
    "copy links";
  align-items: center;
  column-gap: 24px;
  row-gap: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 18px 20px;
  box-shadow: none;
}

.department-card + .department-card {
  border-top: 1px solid rgba(205, 242, 255, 0.12);
}

.department-status {
  grid-area: status;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff5470;
  box-shadow: 0 0 0 5px rgba(255, 84, 112, 0.12), 0 0 18px rgba(255, 84, 112, 0.48);
}

.department-card.is-available .status-dot {
  background: #35e985;
  box-shadow: 0 0 0 5px rgba(53, 233, 133, 0.12), 0 0 18px rgba(53, 233, 133, 0.48);
}

.department-card h3 {
  grid-area: title;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.16;
}

.cta-panel .department-card p,
.cta-panel .department-card p:not(.eyebrow):not(.form-privacy) {
  grid-area: copy;
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.38;
}

.department-links {
  grid-area: links;
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.department-card a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  transition: color 180ms ease;
}

.department-card a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(205, 242, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 720;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(205, 242, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(2, 7, 10, 0.42);
  color: #ffffff;
  padding: 11px 12px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  height: 50px;
  line-height: 1.2;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 174, 239, 0.52);
  background: rgba(2, 7, 10, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.form-privacy {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.45;
}

.cta-panel .contact-form .form-privacy {
  max-width: none;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.45;
}

.form-privacy a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.form-privacy a:hover {
  color: #ffffff;
}

.form-status {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success,
.form-status[data-state="success"] {
  border-color: rgba(53, 233, 133, 0.46);
  background:
    linear-gradient(135deg, rgba(53, 233, 133, 0.15), rgba(53, 233, 133, 0.05)),
    rgba(3, 18, 12, 0.76);
  color: #9dffc7;
  box-shadow: 0 0 0 4px rgba(53, 233, 133, 0.08);
}

.form-status.is-error,
.form-status[data-state="error"] {
  border-color: rgba(255, 84, 112, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 84, 112, 0.16), rgba(255, 84, 112, 0.05)),
    rgba(24, 5, 10, 0.78);
  color: #ff9aaa;
  box-shadow: 0 0 0 4px rgba(255, 84, 112, 0.08);
}

.form-status.is-highlight {
  animation: formStatusSettle 760ms ease both;
}

@keyframes formStatusSettle {
  0% {
    transform: translateY(6px);
    box-shadow: 0 0 0 0 rgba(53, 233, 133, 0.2);
  }

  45% {
    transform: translateY(0);
    box-shadow: 0 0 0 6px rgba(53, 233, 133, 0.11);
  }

  100% {
    transform: translateY(0);
  }
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.button-primary.light {
  border-color: rgba(0, 174, 239, 0.24);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02070a;
  box-shadow: 0 24px 90px rgba(0, 174, 239, 0.18);
}

.button-primary.light:hover {
  border-color: rgba(85, 217, 255, 0.46);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.button-secondary.dark:hover {
  border-color: rgba(120, 232, 195, 0.52);
  background: rgba(120, 232, 195, 0.12);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-nav,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-nav {
  justify-content: center;
}

.footer-nav a,
.footer-meta a {
  transition: color 180ms ease;
}

.footer-nav .footer-status-link {
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #02070a;
  padding: 8px 11px;
  font-weight: 720;
  box-shadow: 0 12px 34px rgba(0, 174, 239, 0.12);
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--text);
}

.footer-nav .footer-status-link:hover {
  border-color: rgba(85, 217, 255, 0.46);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #02070a;
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-content: end;
  justify-items: end;
  white-space: nowrap;
}

.footer-identity {
  display: grid;
  gap: 2px;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.45;
  text-align: right;
}

.footer-identity strong {
  color: var(--text);
  font-size: 14px;
}

.footer-identity span {
  color: var(--text-soft);
}

.footer-meta p {
  margin: 0;
  color: var(--text-soft);
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.16), rgba(85, 217, 255, 0.08)),
    rgba(7, 14, 24, 0.78);
  box-shadow: var(--shadow-card), 0 0 28px rgba(0, 174, 239, 0.1);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(85, 217, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(85, 217, 255, 0.2), rgba(0, 174, 239, 0.12)),
    rgba(7, 14, 24, 0.88);
}

.back-to-top span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@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;
  }

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

  .form-status.is-highlight {
    animation: none;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

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

  .hero-visual {
    max-width: 720px;
  }

  .service-grid,
  .audience-grid,
  .result-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-pad {
    padding-block: 84px;
  }

  .section-pad + .section-pad {
    padding-top: 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(4, 9, 15, 0.96);
    box-shadow: var(--shadow-card);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-menu a {
    padding: 13px 14px;
  }

  .nav-menu .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .nav-menu .language-switch {
    width: 100%;
    margin: 6px 0 0;
  }

  .nav-menu .language-switch a {
    flex: 1;
    padding: 12px 14px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 72px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .legal-content h1 {
    font-size: 42px;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .cta-panel p:not(.eyebrow):not(.form-privacy):not(.form-status) {
    font-size: 17px;
  }

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

  .cta-panel .response-note {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sticky-copy {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }

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

  .footer-nav,
  .footer-meta {
    flex-wrap: wrap;
    justify-content: start;
    white-space: normal;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-identity {
    text-align: left;
    white-space: normal;
  }

  .footer-meta p {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding-block: 72px;
  }

  .section-pad + .section-pad {
    padding-top: 0;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .legal-content h1 {
    font-size: 34px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .dashboard-body {
    padding: 14px;
  }

  .status-panel {
    min-height: auto;
    align-items: start;
    padding: 18px;
  }

  .status-panel strong {
    font-size: 20px;
  }

  .metric-grid,
  .service-grid,
  .audience-grid,
  .problem-grid,
  .pricing-grid,
  .result-grid,
  .faq-grid,
  .pricing-note,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .metric-card.wide {
    min-height: auto;
  }

  .terminal-card {
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .newsletter-section {
    padding-bottom: 72px;
  }

  .newsletter-panel {
    gap: 24px;
    padding: 24px;
  }

  .newsletter-copy h2 {
    font-size: 28px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }

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

  .department-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "status"
      "title"
      "copy"
      "links";
    align-items: start;
    row-gap: 6px;
  }

  .department-links {
    justify-items: start;
    margin-top: 8px;
    text-align: left;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .service-card,
  .audience-card,
  .problem-card,
  .benefit-card,
  .pricing-card,
  .result-card {
    min-height: auto;
  }

  .pricing-card {
    padding: 24px;
  }

  .price strong {
    font-size: 36px;
  }

  .stat {
    margin-bottom: 34px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 28px;
  }

  .brand {
    font-size: 16px;
  }

  .trust-strip div {
    min-height: 78px;
  }

  .dashboard-topbar p {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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