/* NamitoOS Landing Page */
/* Typography: Cormorant Garamond + Jost */

:root {
  --bg: #09090F;
  --bg-alt: #0E0E1A;
  --fg: #F0EBE1;
  --fg-muted: #8A8377;
  --accent: #E8930A;
  --accent-dim: #B8740A;
  --gold: #C4A882;
  --border: rgba(196, 168, 130, 0.12);
  --section-pad: 120px 0;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.geo-ring-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.geo-ring-2 { width: 400px; height: 400px; top: -50px; right: 50px; border-color: rgba(232,147,10,0.08); }
.geo-ring-3 { width: 250px; height: 250px; top: 50px; right: 120px; border-color: rgba(232,147,10,0.05); }
.geo-ring-4 { width: 120px; height: 120px; top: 120px; right: 180px; border-color: rgba(196,168,130,0.08); }

.amber-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,147,10,0.08) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 40px;
}

.hero-tag {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-visual {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-sphere {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a2e, #09090F);
  border: 1px solid rgba(232,147,10,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 80px rgba(232,147,10,0.05),
    inset 0 0 60px rgba(0,0,0,0.5);
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.vinyl-inner {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(196,168,130,0.1);
  background: repeating-radial-gradient(
    circle at center,
    transparent 0px,
    transparent 8px,
    rgba(196,168,130,0.04) 8px,
    rgba(196,168,130,0.04) 9px
  );
}

.vinyl-label {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(232,147,10,0.3);
}
.vinyl-label-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: #09090F;
  line-height: 1;
}

/* === SOUND SECTION === */
.sound { padding: var(--section-pad); background: var(--bg-alt); }
.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.sound-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.sound-quote blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 16px;
}
.sound-quote cite {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.tag-group { margin-bottom: 16px; }
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 2px;
}
.tag-accent {
  color: var(--accent);
  border-color: rgba(232,147,10,0.3);
}

.sound-wave { width: 100%; }
.sound-wave svg { width: 100%; height: 80px; }

/* === CATALOG SECTION === */
.catalog { padding: var(--section-pad); background: var(--bg); }

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 64px;
  color: var(--fg);
}

.release-list { margin-bottom: 48px; }
.release {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  gap: 32px;
}
.release-featured { border-top: 1px solid rgba(232,147,10,0.2); border-bottom: 1px solid rgba(232,147,10,0.2); padding-top: 32px; padding-bottom: 32px; margin-top: 8px; }

.release-meta { display: flex; flex-direction: column; gap: 4px; }
.release-year { font-size: 12px; letter-spacing: 0.1em; color: var(--fg-muted); }
.release-type { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }

.release-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--fg);
}
.release-subtitle { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.release-info { display: flex; flex-direction: column; }

.release-platforms { display: flex; gap: 12px; }
.release-platforms span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.catalog-cta { display: flex; gap: 16px; }
.catalog-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 28px;
  transition: border-color 0.3s, color 0.3s;
}
.catalog-link:hover { border-color: var(--accent); color: var(--accent); }

/* === TOUR SECTION === */
.tour { padding: var(--section-pad); background: var(--bg-alt); }
.tour-grid { display: flex; gap: 60px; margin-bottom: 80px; flex-wrap: wrap; }

.tour-city { display: flex; flex-direction: column; gap: 8px; }
.city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--fg);
}
.city-venue { font-size: 13px; color: var(--fg-muted); }
.city-date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.tour-world { position: relative; }
.world-dots {
  position: relative;
  height: 120px;
  margin-bottom: 24px;
  background: linear-gradient(to right, rgba(232,147,10,0.05) 0%, rgba(232,147,10,0.02) 50%, rgba(232,147,10,0.05) 100%);
  border-radius: 60px;
  overflow: hidden;
}
.world-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196,168,130,0.2);
  transform: translate(-50%, -50%);
}
.dot-active { background: var(--accent); box-shadow: 0 0 10px rgba(232,147,10,0.4); }

.world-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.closing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 500px;
  font-weight: 700;
  color: rgba(232,147,10,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.closing-headline {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  position: relative;
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto 64px;
}

.closing-credentials {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 600px;
  margin: 0 auto;
}
.credential { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cred-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg); }
.cred-year { font-size: 11px; color: var(--fg-muted); }
.credential-divider { width: 1px; height: 36px; background: var(--border); }

/* === FOOTER === */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 32px; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-brand { text-align: center; }

.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

.footer-meta { display: flex; gap: 24px; font-size: 11px; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .sound-grid { grid-template-columns: 1fr; gap: 40px; }
  .release { grid-template-columns: 1fr; gap: 8px; }
  .release-platforms { display: none; }
  .closing-credentials { flex-direction: column; gap: 24px; }
  .credential-divider { width: 40px; height: 1px; }
  .footer-meta { flex-direction: column; align-items: center; gap: 8px; }
}
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .tour-grid { flex-direction: column; gap: 40px; }
  .catalog-cta { flex-direction: column; }
  .catalog-link { text-align: center; }
}
