:root {
  color-scheme: dark;
  --bg: #080a0d;
  --text: #f7faf7;
  --muted: #c0c9c2;
  --accent: #2ee6a6;
  --accent-warm: #f0b35b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(8, 10, 13, 0.96) 0%, rgba(8, 10, 13, 0.78) 48%, rgba(8, 10, 13, 0.3) 100%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.06) 0%, #080a0d 100%),
    url("assets/actallion-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 52%, rgba(46, 230, 166, 0.14), transparent 34%),
    radial-gradient(circle at 56% 58%, rgba(240, 179, 91, 0.1), transparent 30%);
}

.hero__content {
  width: min(820px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}

.description {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.55;
}

.email {
  display: inline-flex;
  margin-top: 34px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent-warm);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

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

@media (max-width: 640px) {
  .hero__media {
    background-image:
      linear-gradient(180deg, rgba(8, 10, 13, 0.9) 0%, rgba(8, 10, 13, 0.8) 55%, #080a0d 100%),
      url("assets/actallion-hero.png");
  }
}
