:root {
  color-scheme: light;
  --bg: #0d1b1e;
  --bg-alt: #12262b;
  --accent: #ff8a1f;
  --text: #f2f6f7;
  --muted: #a9bbc0;
  --card: rgba(15, 32, 35, 0.75);
  --border: rgba(246, 201, 69, 0.2);
  --shadow: 0 24px 60px rgba(8, 15, 16, 0.55);
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-display: "Chakra Petch", "Trebuchet MS", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top right, #233c3f 0%, transparent 45%),
    radial-gradient(circle at 10% 30%, #1b2a33 0%, transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #0f262a 60%, #152b2e 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

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

.background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  filter: blur(90px);
  opacity: 0.45;
  background: radial-gradient(circle, rgba(246, 201, 69, 0.7) 0%, transparent 60%);
  animation: drift 16s ease-in-out infinite alternate;
}

.glow--north {
  top: -20vw;
  right: -10vw;
}

.glow--south {
  bottom: -20vw;
  left: -10vw;
  animation-delay: 2s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(40px, -30px, 0);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 0;
}

.logo {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav__cta {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  transition: border 0.2s ease, color 0.2s ease;
}

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

.hero {
  padding: 32px 6vw 80px;
}

.hero__content {
  max-width: 720px;
  padding: 56px 0 0;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(8, 15, 16, 0.45);
}

.hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 16px 0;
}

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

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section {
  padding: 64px 6vw;
  background: var(--card);
  margin: 24px 6vw;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 12px 0 16px;
}

.section p {
  color: var(--muted);
  max-width: 720px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button--primary {
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(246, 201, 69, 0.25);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(246, 201, 69, 0.4);
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .section {
    margin: 16px 4vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
