
:root {
  --background: #080c17;
  --surface: rgba(18, 25, 44, .72);
  --border: rgba(255, 255, 255, .10);
  --text: #f5f7ff;
  --muted: #a8b0c3;
  --accent: #d38cff;
  --accent-two: #ffb36a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, #182345 0, transparent 38%),
    var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.ambient {
  position: fixed;
  width: 420px;
  height: 420px;
  pointer-events: none;
  filter: blur(120px);
  opacity: .15;
  border-radius: 50%;
}

.ambient-one {
  top: 10%;
  left: -180px;
  background: var(--accent);
}

.ambient-two {
  right: -180px;
  bottom: 5%;
  background: var(--accent-two);
}

.header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.logo-mark {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 60%, transparent);
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 920px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent-two);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .98;
  letter-spacing: -.065em;
}

.lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
}

.primary {
  color: #080c17;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
}

.secondary {
  background: rgba(255, 255, 255, .035);
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64e5a5;
  box-shadow: 0 0 16px #64e5a5;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 0 110px;
}

.services article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.services article > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.services h2 {
  margin: 70px 0 14px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.services p,
.approach p,
footer p {
  color: var(--muted);
  line-height: 1.65;
}

.approach {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.approach h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.approach p {
  margin: 0;
  font-size: 18px;
}

footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

@media (max-width: 760px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .services,
  .approach {
    grid-template-columns: 1fr;
  }

  .approach {
    gap: 35px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 45px 0;
  }
}
