:root {
  color-scheme: dark;
  --bg: #080a0d;
  --surface: #10151a;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(247, 250, 247, 0.14);
  --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;
}

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

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 56px 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.76) 48%, rgba(8, 10, 13, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.08) 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.13), transparent 34%),
    radial-gradient(circle at 56% 58%, rgba(240, 179, 91, 0.09), 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;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0), rgba(16, 21, 26, 0.98) 22%),
    var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.footer-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(46, 230, 166, 0.42);
  border-radius: 8px;
  background: rgba(46, 230, 166, 0.11);
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.footer-brand strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.footer-column {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

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

.footer-column a,
.footer-column p {
  display: flex;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.footer-map {
  background:
    linear-gradient(135deg, rgba(46, 230, 166, 0.12), rgba(240, 179, 91, 0.08)),
    var(--surface-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(247, 250, 247, 0.62);
  font-size: 14px;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 64vh;
  }

  .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");
  }

  .footer-brand,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column {
    min-height: auto;
  }
}
