/* =================
   BASIC RESET
   ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050608;
  color: #f5f5f5;
  line-height: 1.6;
}

/* =================
   THEME VARIABLES
   ================= */
:root {
  --bg-main: #050608;
  --bg-section: #0b0d10;
  --bg-card: #14161b;
  --bg-card-soft: #191b22;

  --accent-orange: #ff5a00;
  --accent-yellow: #beff00;
  --accent-green: #36ff8d;

  --text-main: #f7f7f7;
  --text-muted: #9ca3af;

  --border-subtle: #262935;

  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.45);
  --radius-card: 18px;

  --nav-height: 76px;
}

/* =================
   UTILITIES
   ================= */

.section {
  position: relative;
  padding: 5rem 1.5rem;
  background-color: var(--bg-section);
  overflow: hidden;
}

.section:nth-of-type(even) {
  background-color: #080a0d;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-inner--wide {
  max-width: 1320px;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* =================
   NAV + HEADER
   ================= */

.site-header {
  position: relative;
  min-height: 100vh;
  color: var(--text-main);
  background-color: #02030a;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-waves.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 10;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-logo img {
  height: 46px;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.7));
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-yellow));
  transition: width 0.2s ease-out;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =================
   HERO
   ================= */

.hero {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
}

.hero-inner {
  text-align: center;
  max-width: 720px;
}

.hero-logo {
  width: min(420px, 80vw);
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.95));
}

.hero-tagline {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.75rem;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.scroll-indicator {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-green));
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 40%;
  background: #ffffff;
  border-radius: 999px;
  animation: scrollPulse 1.4s infinite ease-in-out;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(20%);
    opacity: 1;
  }
  100% {
    transform: translateY(140%);
    opacity: 0;
  }
}

/* =================
   BUTTONS & LINKS
   ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, background 0.14s ease-out, color 0.14s ease-out;
}

.btn-primary {
  background: radial-gradient(circle at 0% 0%, var(--accent-yellow), var(--accent-orange));
  color: #050505;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.7);
}

.btn-secondary {
  background: #181b22;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
  background: #1f232b;
  transform: translateY(-1px) scale(1.01);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-yellow);
  font-size: 0.9rem;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent-green);
}

/* =================
   CARDS / GRIDS
   ================= */

.card {
  background: radial-gradient(circle at 0% 0%, rgba(255, 90, 0, 0.06), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(190, 255, 0, 0.05), transparent 60%),
              var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.7fr);
  gap: 2rem;
  align-items: stretch;
}

.music-copy h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.music-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bullet-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  color: #d1d5db;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
}

/* =================
   SAMPLE CARDS
   ================= */

.section-samples {
  background-image:
    linear-gradient(135deg, rgba(255, 90, 0, 0.05), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(190, 255, 0, 0.06), transparent 55%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.card-body {
  flex: 1;
}

.card-body h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag-list li {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e7eb;
}

.center-text {
  text-align: center;
  margin-top: 2.5rem;
}

.coming-soon-note {
  color: var(--text-muted);
}

/* =================
   ABOUT
   ================= */

.section-about {
  position: relative;
  background-color: #070810;
}

.section-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-waves.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  mix-blend-mode: screen;
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.about-text p {
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.about-media {
  display: grid;
  gap: 1rem;
}

.about-image img,
.about-bg img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* =================
   VIBE SECTION
   ================= */

.section-vibe {
  position: relative;
  padding: 6rem 1.5rem;
  background-color: #020309;
  color: white;
  overflow: hidden;
}

.section-vibe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-mist.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: saturate(1.2);
}

.vibe-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 90, 0, 0.5), transparent 45%),
              radial-gradient(circle at 100% 100%, rgba(0, 238, 170, 0.45), transparent 45%);
  mix-blend-mode: soft-light;
  opacity: 0.85;
}

.vibe-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.vibe-content h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.vibe-content p {
  color: #f9fafb;
}

/* =================
   FOOTER
   ================= */

.site-footer {
  position: relative;
  background-color: #050608;
  padding: 3rem 1.5rem 2rem;
  color: var(--text-muted);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/bg-waves.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand img {
  height: 46px;
  margin-bottom: 0.4rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.footer-actions .btn-primary {
  font-size: 0.78rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-decoration: none;
}

.social-links a:hover {
  color: #ffffff;
}

.footer-meta {
  font-size: 0.75rem;
}

/* =================
   GLITCH TEXT (subtle)
   ================= */

.glitch-text {
  position: relative;
  display: inline-block;
  text-shadow:
    -1px 0 var(--accent-green),
    1px 0 var(--accent-orange);
  animation: glitchShift 2.1s infinite linear alternate-reverse;
}

@keyframes glitchShift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-0.5px, 0.4px);
  }
  40% {
    transform: translate(0.6px, -0.3px);
  }
  60% {
    transform: translate(-0.4px, -0.5px);
  }
  80% {
    transform: translate(0.4px, 0.3px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* =================
   RESPONSIVE
   ================= */

@media (max-width: 960px) {
  .music-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .section {
    padding: 3.75rem 1.25rem;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
  }
}
