:root {
  color-scheme: dark;
  --bg: #050914;
  --bg-soft: #081321;
  --surface: rgba(255, 255, 255, 0.072);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --border: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(113, 225, 255, 0.36);
  --text: #f5f8ff;
  --muted: #aab7ca;
  --soft: #d8e7ff;
  --blue: #42a8ff;
  --cyan: #5ee8ff;
  --violet: #9f7cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#main,
section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(66, 168, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(159, 124, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #07111f 0%, var(--bg) 46%, #070b13 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.18), rgba(5, 9, 20, 0.86));
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(94, 232, 255, 0.9);
  outline-offset: 4px;
}

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

p {
  color: var(--muted);
}

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

.site-shell {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--text);
  color: #081321;
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 20, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(94, 232, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 232, 255, 0.22), rgba(159, 124, 255, 0.18)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 34px rgba(66, 168, 255, 0.16);
  color: var(--text);
  font-weight: 800;
}

.brand-name,
.brand-label {
  display: block;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 12px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

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

.section {
  padding: 92px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 84px 0 76px;
}

.hero-glow {
  position: absolute;
  inset: 10% -12% auto auto;
  width: min(760px, 92vw);
  height: 520px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 50%, rgba(94, 232, 255, 0.2), transparent 34%),
    radial-gradient(circle at 64% 44%, rgba(159, 124, 255, 0.23), transparent 42%);
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

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

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow span,
.section-kicker,
.card-label,
.mini-label,
.pill,
.status-dot {
  color: #ccefff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  border: 1px solid rgba(94, 232, 255, 0.25);
  border-radius: 999px;
  background: rgba(94, 232, 255, 0.08);
  padding: 7px 10px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 5.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 34px;
  color: #c4d2e5;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button:hover,
.card:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(94, 232, 255, 0.54);
  background: linear-gradient(135deg, rgba(66, 168, 255, 0.95), rgba(94, 232, 255, 0.84));
  color: #04101e;
  box-shadow: 0 18px 44px rgba(66, 168, 255, 0.25);
}

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

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.workflow-panel,
.card,
.company-panel,
.contact-panel {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.05)),
    rgba(8, 19, 33, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.workflow-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
}

.workflow-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0, transparent 72%);
}

.workflow-panel::after {
  position: absolute;
  inset: auto -20% -20% 10%;
  height: 210px;
  content: "";
  background: radial-gradient(circle, rgba(94, 232, 255, 0.24), transparent 68%);
}

.panel-topline,
.panel-cards,
.node-map {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.status-dot {
  position: relative;
  border: 1px solid rgba(94, 232, 255, 0.26);
  border-radius: 999px;
  background: rgba(94, 232, 255, 0.1);
  padding: 7px 9px 7px 24px;
}

.status-dot::before {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #7dffcf;
  box-shadow: 0 0 18px #7dffcf;
  content: "";
}

.node-map {
  min-height: 245px;
  margin: 30px 0 20px;
}

.node {
  position: absolute;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(94, 232, 255, 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.9), rgba(94, 232, 255, 0.38) 28%, rgba(66, 168, 255, 0.11) 70%),
    rgba(9, 23, 42, 0.86);
  box-shadow: 0 0 42px rgba(94, 232, 255, 0.18);
}

.node-a {
  left: 8%;
  top: 18%;
}

.node-b {
  left: 45%;
  top: 8%;
}

.node-c {
  right: 10%;
  top: 44%;
}

.node-d {
  left: 30%;
  bottom: 8%;
}

.path {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(94, 232, 255, 0.7), rgba(159, 124, 255, 0.2));
}

.path-one {
  left: 19%;
  top: 30%;
  width: 32%;
  transform: rotate(-13deg);
}

.path-two {
  left: 55%;
  top: 26%;
  width: 31%;
  transform: rotate(31deg);
}

.path-three {
  left: 38%;
  bottom: 29%;
  width: 42%;
  transform: rotate(-24deg);
}

.panel-cards {
  display: grid;
  gap: 12px;
}

.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(2, 8, 18, 0.56);
  padding: 15px;
}

.mini-card strong {
  display: block;
  margin-top: 4px;
}

.mini-card.featured {
  border-color: var(--border-strong);
  background: linear-gradient(135deg, rgba(66, 168, 255, 0.16), rgba(159, 124, 255, 0.12));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--cyan);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.25;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.card:hover {
  border-color: rgba(94, 232, 255, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065)),
    rgba(8, 19, 33, 0.7);
}

.product-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
}

.text-link {
  color: #d9f8ff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(94, 232, 255, 0.44);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.pill {
  align-self: flex-start;
  border: 1px solid rgba(159, 124, 255, 0.34);
  border-radius: 999px;
  background: rgba(159, 124, 255, 0.12);
  padding: 8px 11px;
  color: #e3d9ff;
}

.focus-section {
  padding-top: 42px;
}

.focus-card {
  min-height: 255px;
}

.icon-shell {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(94, 232, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.46) 49%, rgba(255, 255, 255, 0.46) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.46) 49%, rgba(255, 255, 255, 0.46) 51%, transparent 52%),
    radial-gradient(circle, rgba(94, 232, 255, 0.28), rgba(66, 168, 255, 0.06));
}

.icon-alt {
  border-color: rgba(159, 124, 255, 0.38);
  background:
    linear-gradient(135deg, transparent 43%, rgba(255, 255, 255, 0.5) 44%, rgba(255, 255, 255, 0.5) 47%, transparent 48%),
    linear-gradient(45deg, transparent 43%, rgba(255, 255, 255, 0.5) 44%, rgba(255, 255, 255, 0.5) 47%, transparent 48%),
    radial-gradient(circle, rgba(159, 124, 255, 0.28), rgba(159, 124, 255, 0.05));
}

.icon-third {
  border-color: rgba(125, 255, 207, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 20%, transparent 21%, transparent 38%, rgba(255, 255, 255, 0.46) 39%, rgba(255, 255, 255, 0.46) 61%, transparent 62%),
    radial-gradient(circle, rgba(125, 255, 207, 0.22), rgba(94, 232, 255, 0.05));
}

.company-panel,
.contact-panel {
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
}

.company-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.company-panel p,
.contact-panel p {
  margin-bottom: 0;
  color: #c9d6e8;
  font-size: 1.08rem;
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-color: rgba(94, 232, 255, 0.24);
  background:
    radial-gradient(circle at 88% 20%, rgba(94, 232, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.052)),
    rgba(8, 19, 33, 0.68);
}

.contact-panel h2 {
  max-width: 640px;
  margin-bottom: 16px;
}

.contact-form {
  display: grid;
  width: min(100%, 330px);
  flex: 0 0 min(38%, 330px);
  gap: 12px;
}

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

.contact-form label span {
  color: #ccefff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form small {
  color: #8fa0b8;
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(2, 8, 18, 0.44);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(94, 232, 255, 0.64);
  outline: 3px solid rgba(94, 232, 255, 0.18);
}

.contact-form input.is-invalid {
  border-color: rgba(255, 147, 147, 0.72);
}

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

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: #c9d6e8;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #9fffd6;
}

.form-status.is-error {
  color: #ffb4b4;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner div {
  display: grid;
  gap: 4px;
}

.footer-inner div:last-child {
  justify-items: end;
}

.footer-inner strong {
  color: var(--text);
}

.footer-inner a {
  color: #d9f8ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-hero {
  min-height: calc(100vh - 78px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.78fr);
  gap: 44px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 112px;
}

.legal-summary h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-summary p {
  max-width: 420px;
}

.legal-document {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.048)),
    rgba(8, 19, 33, 0.66);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 52px);
}

.legal-document h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.legal-document h2:first-of-type {
  margin-top: 28px;
}

.legal-document p,
.legal-document li {
  color: #c9d6e8;
}

.legal-document a {
  color: #d9f8ff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(94, 232, 255, 0.44);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.legal-document ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 8px;
}

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

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .company-panel {
    grid-template-columns: 1fr;
  }

  .workflow-panel {
    min-height: 460px;
  }

  .three-column {
    grid-template-columns: 1fr;
  }

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

  .contact-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner div:last-child {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .legal-summary {
    position: static;
  }
}

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

  .header-inner {
    min-height: 70px;
  }

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

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(5, 9, 20, 0.96);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    margin: 0;
    padding: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.6rem);
  }

  .two-column {
    grid-template-columns: 1fr;
  }

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

  .workflow-panel {
    min-height: 420px;
    padding: 18px;
  }

  .panel-topline {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 460px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-label {
    font-size: 0.7rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .workflow-panel {
    min-height: 390px;
  }

  .node-map {
    min-height: 205px;
    margin-bottom: 14px;
  }

  .node {
    width: 44px;
    height: 44px;
  }
}
