:root {
  --bg: #08111f;
  --bg-soft: #0f1d34;
  --panel: rgba(9, 18, 32, 0.76);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f7f6f1;
  --muted: #b6c1d4;
  --cyan: #78f3ff;
  --orange: #ff8f3f;
  --lime: #d4ff63;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(120, 243, 255, 0.2), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 143, 63, 0.24), transparent 22%),
    linear-gradient(135deg, #040913 0%, #0d1628 45%, #102446 100%);
  min-height: 100vh;
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 88vh;
  border-radius: 32px;
  padding: 24px;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand,
.headline,
h1,
h2,
h3 {
  font-family: "Archivo Black", sans-serif;
}

.brand {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 96px 8px 48px;
}

.eyebrow,
.section-kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--cyan);
}

h1 {
  margin: 12px 0 8px;
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  line-height: 0.95;
}

.headline {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--orange);
}

.lede,
.about-copy p,
.contact-layout p,
.card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.contact-layout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), #ffb04f);
  color: #101010;
  box-shadow: 0 18px 34px rgba(255, 143, 63, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.hero-art {
  position: absolute;
  inset: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.orb-one {
  width: 380px;
  height: 380px;
  right: -60px;
  top: 70px;
  background: radial-gradient(circle, rgba(120, 243, 255, 0.9), rgba(120, 243, 255, 0.06));
}

.orb-two {
  width: 260px;
  height: 260px;
  right: 180px;
  bottom: 110px;
  background: radial-gradient(circle, rgba(255, 143, 63, 0.78), rgba(255, 143, 63, 0.05));
}

.orb-three {
  width: 160px;
  height: 160px;
  left: 55%;
  top: 22%;
  background: radial-gradient(circle, rgba(212, 255, 99, 0.72), rgba(212, 255, 99, 0.04));
}

.grid {
  position: absolute;
  inset: auto 0 0 auto;
  width: 48%;
  height: 72%;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: perspective(500px) rotateX(62deg);
  transform-origin: bottom;
}

main {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.panel {
  border-radius: 28px;
  padding: 28px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 1.4rem;
}

.card a,
.social-list a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.accent-cyan {
  box-shadow: inset 0 0 0 1px rgba(120, 243, 255, 0.15);
}

.accent-orange {
  box-shadow: inset 0 0 0 1px rgba(255, 143, 63, 0.15);
}

.accent-lime {
  box-shadow: inset 0 0 0 1px rgba(212, 255, 99, 0.15);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-list a {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

@media (max-width: 900px) {
  .about-copy,
  .cards {
    grid-template-columns: 1fr;
  }

  .grid {
    width: 70%;
    height: 50%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 10px;
  }

  .hero {
    min-height: auto;
    border-radius: 24px;
    padding: 18px;
  }

  .panel {
    border-radius: 22px;
    padding: 20px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding-top: 56px;
  }

  .hero-actions,
  .contact-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
