:root {
  --bg: #05070d;
  --bg-alt: #0b1020;
  --text: #e8edf7;
  --muted: #99a4bb;
  --brand: #4f7cff;
  --brand-2: #7de2d1;
  --line: rgba(149, 167, 207, 0.22);
  --card: rgba(12, 18, 34, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 700px at 75% -10%, #1d3f7a 0%, transparent 55%), var(--bg);
  color: var(--text);
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  opacity: 0.25;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(120, 140, 180, 0.16);
  background: rgba(5, 7, 13, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 18px rgba(79, 124, 255, 0.95);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.16s ease, box-shadow 0.2s ease;
}

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

.btn-sm {
  padding: 0.54rem 0.86rem;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  padding: 6.2rem 0 4.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 2.1rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand-2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

h1 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  line-height: 1.07;
  max-width: 14ch;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
  line-height: 1.6;
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.78rem 1.05rem;
  background: linear-gradient(130deg, var(--brand), #5f8bff 45%, #6a95ff);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(79, 124, 255, 0.3);
}

.btn-ghost {
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--line);
  color: var(--text);
}

.subtext {
  margin-top: 0.9rem;
  color: #7f8ca7;
  font-size: 0.92rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  background: var(--card);
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.42);
}

.hero-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-bottom: 1px solid rgba(149, 167, 207, 0.12);
  padding-bottom: 0.5rem;
}

.hero-card strong {
  color: #dce7ff;
  font-size: 0.95rem;
}

.pulse-line {
  margin: 1rem 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--brand-2), transparent);
  animation: pulse 2.5s linear infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-20%);
    opacity: 0.3;
  }
  50% {
    transform: translateX(10%);
    opacity: 1;
  }
  100% {
    transform: translateX(35%);
    opacity: 0.35;
  }
}

.mini {
  color: #8f9ab3;
  font-size: 0.84rem;
}

.logos {
  margin-bottom: 2.2rem;
}

.logos-label {
  color: #7b879f;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.logo-row span {
  border: 1px solid var(--line);
  background: rgba(14, 20, 38, 0.65);
  color: #c6d0e7;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.section {
  padding: 3.2rem 0;
}

.section-head h2 {
  margin: 0.4rem 0 1.2rem;
  font-size: clamp(1.5rem, 3.3vw, 2.3rem);
}

.cards {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 16, 32, 0.76);
  padding: 1.05rem;
}

.card h3 {
  margin: 0 0 0.6rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.74rem 0.8rem;
  background: rgba(12, 18, 34, 0.68);
}

.step span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(79, 124, 255, 0.17);
  color: #a7bcff;
}

.step p {
  margin: 0;
  color: #cdd8ed;
}

.stat .big {
  margin-top: 0.45rem;
  color: #dce7ff;
  font-size: 2.1rem;
  font-weight: 800;
}

.contact-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.68), rgba(8, 12, 24, 0.85));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #cdd8ed;
  font-size: 0.88rem;
}

input,
select {
  width: 100%;
  border: 1px solid rgba(153, 170, 205, 0.35);
  border-radius: 9px;
  background: rgba(8, 11, 22, 0.86);
  color: var(--text);
  padding: 0.66rem 0.72rem;
}

.form-note {
  margin: 0;
  min-height: 1.1rem;
  color: var(--brand-2);
  font-size: 0.84rem;
}

.site-footer {
  border-top: 1px solid rgba(149, 167, 207, 0.16);
  margin-top: 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2.2rem;
  color: #8391ad;
  font-size: 0.84rem;
}

@media (max-width: 920px) {
  nav a:not(.btn) {
    display: none;
  }

  .hero-grid,
  .contact-wrap,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .footer-row {
    flex-direction: column;
  }
}
