@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --bg: #050505;
  --ink: #f5f5f5;
  --muted: #b3b3b3;
  --accent: #ff6a2b;
  --glow: 0 20px 70px rgba(255, 106, 43, 0.15);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Trebuchet MS", sans-serif;
  background-color: #070707;
  color: var(--ink);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow-x: hidden;
}

.hero {
  width: min(950px, 100%);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  padding: 24px 20px 32px;
  margin-inline: auto;
  place-items: center;
}

.hero__content {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-top: 0;
  width: min(100%, 720px);
  text-align: center;
  margin-inline: auto;
  padding-inline: 6px;
}

.hero__logo {
  width: min(90vw, 840px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.hero__eyebrow {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1.1;
  max-width: 28ch;
}

.hero__lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 36ch;
}

.hero__contact {
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.hero__contact span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.hero__contact a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.hero__contact a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  body {
    padding: 20px;
  }

  .hero {
    padding: 20px;
  }

  .hero__content {
    margin-top: 0;
  }

  .hero__logo {
    width: min(92vw, 560px);
    max-width: 100%;
  }
}
