/* RUDAIGA standalone export */

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/jost-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/jost-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --background: #0a0a0a;
  --foreground: #f7f7f7;
  --muted: #1a1a1a;
  --muted-foreground: #a0a0a0;
  --accent: #262626;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 9999px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  letter-spacing: 0.02em;
  padding-bottom: 120px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.tracking-brand {
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.text-foreground {
  color: var(--foreground);
}

.text-muted {
  color: var(--muted-foreground);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.logo img {
  height: 2.25rem;
  width: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--foreground);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
}

.social-links a {
  display: flex;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--foreground);
}

@media (max-width: 640px) {
  .nav-links {
    gap: 0.5rem 1rem;
    font-size: 9px;
  }
  .social-links {
    gap: 0.75rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-image {
  width: 100%;
  min-width: 720px;
  max-width: 1536px;
  object-fit: contain;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3), transparent, rgba(10,10,10,1));
}

.hero-tagline {
  position: relative;
  margin-top: -1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.5rem;
  font-size: 11px;
  color: var(--muted-foreground);
}

.hero-tagline .divider {
  width: 2.5rem;
  height: 1px;
  background: var(--border);
}

/* Sections */
.section {
  padding: 6rem 1.25rem;
}

.section-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 768px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.section-title p {
  margin: 0.75rem 0 0;
  font-size: 11px;
  color: var(--muted-foreground);
}

.section-title .divider {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--border);
  margin: 1.25rem auto 0;
}

/* Track list */
.release-note {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}

.release-note h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 300;
}

.release-note p {
  margin: 1.5rem 0 0;
}

.release-note .release-final {
  color: var(--foreground);
}

.track-list {
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.track-list li + li {
  border-top: 1px solid var(--border);
}

.track-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0.5rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  text-align: left;
  transition: background 0.2s;
}

.track-row:hover {
  background: var(--accent);
}

.track-row.active {
  background: rgba(255, 255, 255, 0.04);
}

.track-number {
  width: 1.5rem;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.track-title {
  flex: 1;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.track-cover {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  flex-shrink: 0;
}

.track-icon {
  display: flex;
}

/* Video */
.video-wrapper {
  margin-top: 2.5rem;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--muted);
}

.video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Prose */
.prose {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.prose p {
  margin: 0 0 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose .center {
  text-align: center;
}

.prose .small {
  font-size: 11px;
}

/* Contact */
.contact {
  text-align: center;
}

.contact-name {
  margin-top: 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.contact-buttons {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.contact-button:hover {
  background: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 0.25rem;
}

/* Player */
.player {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.player-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

.player-cover {
  height: 3rem;
  width: 3rem;
  object-fit: cover;
  display: none;
}

.player-track {
  min-width: 0;
  flex: 1;
}

.player-title {
  margin: 0;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  margin: 0.125rem 0 0;
  font-size: 10px;
  color: var(--muted-foreground);
}

.player-controls {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.75rem;
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  flex-shrink: 0;
}

.progress-area {
  display: none;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  color: var(--muted-foreground);
}

.progress-area input[type="range"],
.volume-area input[type="range"] {
  flex: 1;
  height: 4px;
  accent-color: var(--foreground);
  cursor: pointer;
}

.volume-area {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .player-cover {
    display: block;
  }
  .player-track {
    flex: none;
    width: 12rem;
  }
  .progress-area {
    display: flex;
  }
}

@media (min-width: 768px) {
  .volume-area {
    display: flex;
  }
}
