/* ---------------------------------------------
   Luxthos — brand palette pulled from his real
   Twitch logo/chat color (#03FC9C) + black/white.
--------------------------------------------- */
:root {
  --bg: #0a0a0c;
  --bg-alt: #111214;
  --surface: #17191b;
  --surface-border: #262b28;

  --text: #f5f7f6;
  --text-dim: #9aa3a0;

  --green: #03fc9c;
  --green-dim: rgba(3, 252, 156, 0.18);
  --white: #ffffff;

  --radius: 18px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: -20% -20% auto -20%;
  height: 60vh;
  background:
    radial-gradient(35% 55% at 25% 0%, var(--green-dim), transparent),
    radial-gradient(35% 55% at 75% 10%, rgba(255, 255, 255, 0.06), transparent);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
}

/* ---- Nav ---- */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 3.5rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-mark {
  width: 36px;
  height: 36px;
}
.brand-mark.small { width: 28px; height: 28px; }

.brand-word { font-size: 1.1rem; }
.brand-x { color: var(--green); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--green); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: #04140d;
  box-shadow: 0 8px 24px -8px rgba(3, 252, 156, 0.5);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--surface-border);
  color: var(--text);
}
.btn-ghost {
  background: transparent;
  border-color: var(--surface-border);
  color: var(--text);
}
.btn-big { font-size: 1.05rem; padding: 0.9rem 1.8rem; }

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3.5rem) 2rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.08;
}

.highlight { color: var(--green); }

.hero-sub {
  color: var(--text-dim);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 640px;
  margin: 1rem auto 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Pitch / bobblehead figure ---- */
.pitch {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 480px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  margin: 2rem auto;
  padding: 2rem clamp(1.25rem, 5vw, 3.5rem);
}

.pitch-figure {
  display: flex;
  justify-content: center;
}

.bobblehead {
  width: min(100%, 320px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

.head-group {
  transform-origin: 160px 240px;
  animation: bobble 2.6s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .head-group { animation: none; }
}

.shadow { fill: rgba(0,0,0,0.45); }
.base { fill: var(--surface); stroke: var(--surface-border); stroke-width: 2; }
.base-label {
  fill: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.body { fill: #1c1e20; stroke: var(--surface-border); stroke-width: 2; }
.body-trim {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  opacity: 0.6;
  filter: drop-shadow(0 0 4px var(--green));
}
.blade { fill: #2a2c2e; stroke: var(--surface-border); stroke-width: 1; }
.blade-glow {
  fill: var(--green);
  filter: drop-shadow(0 0 6px var(--green));
}
.head { fill: #d9a066; stroke: #b87f4c; stroke-width: 2; }
.ear { fill: #d9a066; stroke: #b87f4c; stroke-width: 2; }
.bald-shine { fill: #ffffff; opacity: 0.18; }
.eyebrow { fill: none; stroke: #3b2a1e; stroke-width: 5; stroke-linecap: round; }
.lens {
  fill: var(--green-dim);
  stroke: #101112;
  stroke-width: 6;
}
.bridge, .temple {
  fill: none;
  stroke: #101112;
  stroke-width: 5;
  stroke-linecap: round;
}
.glare { fill: #ffffff; opacity: 0.55; }
.shade { fill: #b87f4c; opacity: 0.5; }
.beard { fill: #2b1f18; }
.mouth-gap { fill: #c98f57; }
.smile { fill: none; stroke: #23180f; stroke-width: 3.5; stroke-linecap: round; }

.pitch-copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.pitch-copy p { color: var(--text-dim); }

.pitch-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.75rem;
}
.pitch-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
}
.pitch-list li span { font-size: 1.1rem; }

.pitch-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  opacity: 0.8;
  font-style: italic;
}

/* ---- Vibe / cards ---- */
.vibe {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 2rem auto;
  padding: 2rem clamp(1.25rem, 5vw, 3.5rem);
  text-align: center;
}

.vibe h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }

/* ---- Hype meter ---- */
.hype {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 2rem auto 5rem;
  padding: 2rem clamp(1.25rem, 5vw, 3.5rem);
  text-align: center;
}

.hype-sub { color: var(--text-dim); margin-bottom: 1.5rem; }

.hype-box {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hype-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  overflow: hidden;
  border: 1px solid var(--surface-border);
}

.hype-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  transition: width 0.25s ease;
}

.hype-readout {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--surface-border);
  padding: 2rem clamp(1.25rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.footer-note { flex: 1 1 260px; text-align: center; }

.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--green); }

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .pitch {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pitch-list li { justify-content: center; }
  .nav-links { display: none; }
}
