:root {
  --bg: #050505;
  --panel: #101010;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --orange: #ff8a1c;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  background: radial-gradient(circle at 50% 0%, rgba(255,138,28,.18), transparent 30%), var(--bg);
  color: var(--text);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  backdrop-filter: blur(14px);
  background: rgba(5,5,5,.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  letter-spacing: .04em;
}

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

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

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 7%;
  position: relative;
  overflow: hidden;
}

.hero > * { max-width: 900px; }

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: .96;
  margin: 18px 0;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin: 14px 0;
}

h3 { margin-bottom: 8px; }

.subtitle, .section p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
}

.section {
  padding: 90px 7%;
  max-width: 1180px;
  margin: auto;
}

.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards, .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.grid { grid-template-columns: repeat(4, 1fr); }

.card, .grid > div {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 130px;
}

.contact {
  text-align: center;
  border-top: 1px solid var(--line);
}

.email {
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
}

.page { min-height: 70vh; }

footer {
  padding: 34px 7%;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .nav nav {
    flex-wrap: wrap;
    gap: 14px;
  }

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

  footer {
    flex-direction: column;
  }
}
