:root {
  --bg: #08080a;
  --bg-elev: #131316;
  --bg-elev-2: #1b1b1f;
  --text: #f5f4f0;
  --muted: #9b9ba1;
  --muted-soft: #6f6f75;
  --accent: #cda45e;
  --accent-soft: rgba(205, 164, 94, 0.14);
  --accent-line: rgba(205, 164, 94, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --maxw: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.glow-1 {
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(205, 164, 94, 0.22), transparent 70%);
}

.glow-2 {
  bottom: -10%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(120, 90, 200, 0.12), transparent 70%);
}

main {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* Hero */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 28px 40px;
}

.hero__wordmark {
  width: min(70vw, 340px);
  margin: 0 auto 26px;
  animation: rise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__tag {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  animation: rise 900ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.hero__sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
  animation: rise 900ms cubic-bezier(0.16, 1, 0.3, 1) 320ms both;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent-line));
  animation: pulse-line 2.2s ease-in-out infinite;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Section shell */
section {
  padding: 64px 0;
}

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

h2 {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 5vw, 30px);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bio */
.bio p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  max-width: 560px;
}

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* Player embed */
.player {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}

.player iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Link buttons */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  border-radius: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.link-btn:hover {
  border-color: var(--accent-line);
  background: var(--bg-elev-2);
  transform: translateY(-2px);
}

.link-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.link-btn__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.link-btn__label {
  font-weight: 600;
  font-size: 15px;
}

.link-btn__sub {
  font-size: 12.5px;
  color: var(--muted-soft);
}

.link-btn__arrow {
  color: var(--muted-soft);
  transition: transform 220ms ease, color 220ms ease;
}

.link-btn:hover .link-btn__arrow {
  transform: translate(3px, -3px);
  color: var(--accent);
}

/* Footer */
footer {
  padding: 40px 0 48px;
  text-align: center;
}

.footer__logo {
  width: 30px;
  margin: 0 auto 14px;
  opacity: 0.7;
}

footer p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
}

footer .credit {
  margin-top: 6px;
}

@media (min-width: 560px) {
  .links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
