:root {
  --bg: #06060c;
  --bg-soft: #101021;
  --text: #f4f6ff;
  --muted: #b6b8cc;
  --line: rgba(255, 255, 255, 0.14);
  --grad: linear-gradient(125deg, #2a6cff 0%, #8a2eff 50%, #ff2ebf 100%);
  --shadow: 0 14px 40px rgba(42, 108, 255, 0.22), 0 8px 24px rgba(255, 46, 191, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 10%, #121230 0%, var(--bg) 45%, #030306 100%);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 12, 0.7);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 18px #8a2eff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.badge,
.section-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  color: #d0cfff;
}

.section-head h2,
.hero h1 {
  margin: 0;
  line-height: 1.15;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 78vh;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
}

.hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  max-width: 62ch;
}

.hero__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__logo {
  width: min(500px, 94%);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 22px rgba(138, 46, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.btn--small {
  padding: 0.45rem 0.8rem;
  font-size: 0.92rem;
}

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

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

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 46, 255, 0.55);
}

.card--project {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: linear-gradient(140deg, rgba(42, 108, 255, 0.15), rgba(255, 46, 191, 0.09));
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  color: #dad2ff;
  font-style: normal;
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 0.9rem;
}

details summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.contact-info a {
  color: #ddd6ff;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  color: var(--text);
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.72rem 0.78rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(138, 46, 255, 0.42);
  border-color: transparent;
}

.form__msg {
  min-height: 1.3rem;
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.footer {
  padding: 2rem 0 2.8rem;
  color: #9fa4bf;
  font-size: 0.9rem;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.bg-glow--one {
  width: 280px;
  height: 280px;
  background: #2a6cff;
  left: -80px;
  top: 20%;
}

.bg-glow--two {
  width: 300px;
  height: 300px;
  background: #ff2ebf;
  right: -90px;
  top: 45%;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 920px) {
  .hero,
  .contact-wrap,
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

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

  .hero__logo {
    max-width: 420px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 74px;
    right: 4vw;
    width: min(280px, 92vw);
    background: rgba(10, 10, 18, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav__links.open {
    display: flex;
  }
}
