﻿:root {
  --bg-0: #04060a;
  --bg-1: #090d13;
  --bg-2: #111723;
  --glass: rgba(128, 144, 166, 0.1);
  --line: rgba(168, 183, 205, 0.2);
  --text: #ecf1fb;
  --muted: #9ca8bd;
  --accent: #5ca8d8;
  --accent-2: #314156;
  --ok: #78d2aa;
  --warn: #e6b35a;
  --danger: #d97e8b;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.54);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.55;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(80, 98, 128, 0.18), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(32, 42, 62, 0.42), transparent 30%),
    linear-gradient(150deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 10px;
  z-index: 100;
  padding: 0.55rem 0.8rem;
  background: #dfe9ff;
  color: #050a12;
  border-radius: 10px;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(circle, #ffffff 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  z-index: -1;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(to right, rgba(160, 172, 193, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(160, 172, 193, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.bg-orb {
  position: fixed;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.12;
  z-index: -3;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-left {
  top: -12vw;
  left: -14vw;
  background: linear-gradient(90deg, #61758f, #334156);
}

.orb-right {
  bottom: -16vw;
  right: -12vw;
  background: linear-gradient(90deg, #2d3a4f, #6f809b);
  animation-duration: 20s;
}

.glass {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glass-sub {
  border: 1px solid var(--line);
  background: rgba(118, 134, 156, 0.12);
  border-radius: 14px;
  padding: 0.85rem;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  width: min(1180px, 94vw);
  margin: 1rem auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
}

.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  color: #090f19;
  background: linear-gradient(140deg, #d6dfea, var(--accent));
}

.brand-text {
  font-family: "Oxanium", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.34rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.52rem 0.88rem;
  transition: all 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(144, 161, 184, 0.16);
}

.cta-mini {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.55rem 0.96rem;
  font-weight: 700;
  color: #081018;
  background: linear-gradient(145deg, #aab8ca, var(--accent));
}

main {
  width: min(1180px, 94vw);
  margin: 0 auto 4rem;
}

.hero {
  min-height: 84vh;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.8rem 0 1.8rem;
}

.kicker {
  font-family: "Oxanium", sans-serif;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Oxanium", sans-serif;
  line-height: 1.1;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 6vw, 4.4rem);
}

h2 {
  max-width: 24ch;
  font-size: clamp(1.5rem, 3.3vw, 2.65rem);
}

.hero-copy,
.section-lead,
.hero-trust-copy,
.step-copy,
.result-small,
.form-note {
  color: var(--muted);
}

.hero-copy,
.section-lead,
.hero-trust-copy {
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  padding: 0.76rem 1.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: #081018;
  background: linear-gradient(145deg, #bac7d8, var(--accent));
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(129, 147, 169, 0.14);
}

.btn:hover,
.product-cta:hover,
.slider-btn:hover,
.option-card:hover {
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 900px;
}

.stat-card,
.metric-card {
  padding: 0.92rem;
  border-radius: var(--radius);
}

.stat-value,
.metric-value,
.result-big {
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
}

.stat-label,
.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-top: 4.5rem;
}

.section-head {
  margin-bottom: 1.1rem;
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.configurator-shell {
  border-radius: calc(var(--radius) + 2px);
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.config-progress-wrap {
  display: grid;
  gap: 0.55rem;
}

.assistant-line {
  font-size: 0.95rem;
  color: var(--text);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(89, 102, 124, 0.24);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6fc2e7, #5ca8d8);
  transition: width 260ms ease;
}

.config-step {
  display: grid;
  gap: 0.7rem;
}

.step-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.option-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(122, 138, 160, 0.14);
  color: var(--text);
  text-align: left;
  padding: 0.9rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.option-card h4 {
  font-size: 1rem;
}

.option-card p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.option-card.selected {
  border-color: rgba(92, 168, 216, 0.65);
  background: rgba(92, 168, 216, 0.18);
}

.lead-gate {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(120, 137, 159, 0.13);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  max-width: 620px;
}

.lead-gate label,
.contact-form label {
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.lead-gate input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(134, 149, 170, 0.12);
  color: var(--text);
  font: inherit;
  padding: 0.64rem 0.74rem;
}

.lead-gate input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(92, 168, 216, 0.62);
  outline-offset: 1px;
}

.result-panel {
  border-radius: var(--radius);
  display: grid;
  gap: 0.9rem;
}

.result-why {
  color: var(--muted);
  max-width: 70ch;
}

.result-grid,
.catalog-grid,
.metrics-grid,
.labs-grid {
  display: grid;
  gap: 0.85rem;
}

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

.result-card ul,
.roadmap ol {
  margin-left: 1.05rem;
  margin-top: 0.45rem;
  color: var(--muted);
  display: grid;
  gap: 0.28rem;
}

.result-social {
  color: var(--text);
  margin-top: 0.35rem;
}

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

.product-card {
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
}

.tag {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(92, 168, 216, 0.5);
  color: var(--accent);
  font-size: 0.74rem;
  padding: 0.28rem 0.62rem;
}

.product-card p,
.benefit-list,
.lab-tile p,
.quote-card p {
  color: var(--muted);
}

.benefit-list {
  margin-left: 1rem;
  display: grid;
  gap: 0.28rem;
  font-size: 0.92rem;
}

.product-meta {
  color: var(--muted);
  font-size: 0.85rem;
  display: grid;
  gap: 0.1rem;
}

.product-meta strong {
  color: var(--ok);
  font-size: 0.93rem;
}

.product-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.product-cta {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(149, 165, 187, 0.18);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0.66rem 0.78rem;
  cursor: pointer;
}

.product-cta.ghost-small {
  background: rgba(86, 102, 124, 0.18);
}

.metrics-grid {
  margin-top: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-shell {
  margin-top: 0.9rem;
  border-radius: var(--radius);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 360ms ease;
}

.quote-card {
  min-width: 100%;
  padding: 0.25rem;
}

.quote-card span {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--text);
  font-size: 0.9rem;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(131, 147, 169, 0.16);
  color: var(--text);
  cursor: pointer;
}

.slider-dots {
  margin-top: 0.74rem;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(140, 156, 178, 0.26);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

.logo-carousel {
  margin-top: 1rem;
  border-radius: var(--radius);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 85px;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 12, 18, 0.96), rgba(8, 12, 18, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 12, 18, 0.96), rgba(8, 12, 18, 0));
}

.logo-track {
  width: max-content;
  display: flex;
  gap: 0.72rem;
  padding: 0.25rem 0.74rem;
  animation: logos-slide 26s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  min-width: 200px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.54rem;
  background: rgba(123, 138, 159, 0.15);
  color: var(--text);
  font-weight: 600;
}

.logo-mark {
  width: 35px;
  aspect-ratio: 1;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  font-family: "Oxanium", sans-serif;
  font-size: 0.83rem;
  color: #d9e8ff;
  background: linear-gradient(145deg, #243042, #3e556e);
}

.labs-grid {
  margin-top: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lab-tile {
  border-radius: var(--radius);
  padding: 1rem;
}

.lab-tile p {
  margin-top: 0.44rem;
}

.final-cta {
  padding-bottom: 1.2rem;
}

.cta-panel {
  border-radius: calc(var(--radius) + 2px);
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.15fr 1fr;
}

.contact-form {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(112, 128, 148, 0.13);
  padding: 0.85rem;
  display: grid;
  gap: 0.7rem;
}

.site-footer {
  width: min(1180px, 94vw);
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

.delay-1 {
  transition-delay: 70ms;
}

.delay-2 {
  transition-delay: 140ms;
}

.delay-3 {
  transition-delay: 210ms;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, -1.4vw, 0) scale(1.13);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-track {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .split-head,
  .cta-panel,
  .result-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .option-grid,
  .catalog-grid,
  .labs-grid,
  .metrics-grid,
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  main {
    margin-top: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.2rem;
  }

  .option-grid,
  .catalog-grid,
  .labs-grid,
  .metrics-grid,
  .hero-stats,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .cta-mini,
  .product-cta {
    width: 100%;
    text-align: center;
  }

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

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

  .slider-btn {
    width: 100%;
    height: 34px;
  }
}
