/* Grizzy Time — product landing */

:root {
  --bg: #1f0a0e;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text: #f4f0ec;
  --text-soft: rgba(244, 240, 236, 0.72);
  --gold: #e8c547;
  --gold-dim: rgba(232, 197, 71, 0.35);
  --burgundy: #5c0f1a;
  --line: rgba(232, 197, 71, 0.18);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shell: min(1080px, 90vw);
  --radius: 16px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #f5e6a8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

/* ambient */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(92, 15, 26, 0.7), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(232, 197, 71, 0.08), transparent 50%),
    var(--bg);
}

/* header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-dim);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.header-nav a:not(.header-cta) {
  color: var(--text-soft);
  text-decoration: none;
}

.header-nav a:not(.header-cta):hover {
  color: var(--text);
}

.header-cta {
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--bg) !important;
  border-radius: 999px;
  font-weight: 600;
}

.header-cta:hover {
  filter: brightness(1.08);
  color: var(--bg) !important;
}

/* hero */
.hero {
  max-width: 40rem;
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-text {
  margin: 0 0 2rem;
  color: var(--text-soft);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 197, 71, 0.3);
  color: var(--bg);
}

.btn-line {
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

/* sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
}

/* steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 197, 71, 0.35);
  transform: translateY(-4px);
}

.step-icon {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* arenas */
.section-arenas {
  padding-top: 0;
}

.arena-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.arena {
  padding: 1.35rem 1.15rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}

.arena:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.arena-emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.65rem;
}

.arena h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.arena p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.45;
}

/* features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
}

.feature h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* download */
.download-panel {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
  background: linear-gradient(160deg, rgba(92, 15, 26, 0.5), rgba(31, 10, 14, 0.9));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.download-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.download-copy p {
  margin: 0 auto 1.75rem;
  max-width: 40ch;
  color: var(--text-soft);
}

.download-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-soft);
  opacity: 0.7;
}

/* footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--text-soft);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

.footer-meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-meta a {
  color: var(--text-soft);
}

.footer-meta a:hover {
  color: var(--gold);
}

/* responsive */
@media (max-width: 900px) {
  .hero {
    text-align: center;
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .arena-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arena:nth-child(5) {
    grid-column: span 2;
    max-width: 50%;
    margin-inline: auto;
  }

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

@media (max-width: 560px) {
  .header-nav a:not(.header-cta) {
    display: none;
  }

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

  .arena:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
