/* ===========================
   FALLEN ANGEL — Base Styles
   =========================== */

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

:root {
    --bg: #0a0a0b;
    --bg-elevated: #111113;
    --bg-card: #16161a;
    --surface: #1c1c21;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #e8e6e1;
    --text-secondary: #8a8880;
    --text-muted: #5a5850;
    --accent: #c4a882;
    --accent-dim: rgba(196, 168, 130, 0.15);
    --white: #f5f3ee;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

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

/* Grain Overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===========================
   Navigation
   =========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 64px);
    height: 72px;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s var(--ease), background 0.3s;
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 8px 20px;
    border: 1px solid var(--border-hover);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.03em;
}

.nav-btn:hover {
    background: var(--white);
    color: var(--bg);
    border-color: var(--white);
}

.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    padding: 4px 0;
}

.nav-menu-toggle span {
    display: block;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
}

.nav-menu-toggle span:first-child {
    width: 24px;
}

.nav-menu-toggle span:last-child {
    width: 16px;
}

.nav-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}

.nav-menu-toggle.active span:last-child {
    width: 24px;
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-link:hover,
.mobile-link.accent {
    color: var(--accent);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px clamp(24px, 4vw, 64px) 80px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 680px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.tag-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.35s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.italic {
    font-style: italic;
    color: var(--accent);
}

.dot {
    color: var(--accent);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--white);
    color: var(--bg);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
    border-color: var(--text-secondary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid var(--border);
    position: relative;
    opacity: 0;
    animation: scaleIn 1.2s var(--ease) 0.4s forwards;
}

.hero-circle::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    animation: spin 30s linear infinite;
}

.hero-circle::after {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-suffix {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===========================
   Marquee
   =========================== */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.marquee-content .sep {
    font-size: 0.5rem;
    color: var(--accent);
    opacity: 0.5;
}

/* ===========================
   Section Styles
   =========================== */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 48px;
}

.section-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-top: -32px;
    margin-bottom: 48px;
}

/* ===========================
   Distribution Section
   =========================== */
.section-dist {
    padding: 120px clamp(24px, 4vw, 64px);
}

.dist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.dist-card {
    background: var(--bg);
    padding: 40px 32px;
    position: relative;
    transition: background 0.4s var(--ease);
}

.dist-card:hover {
    background: var(--bg-elevated);
}

.dist-card-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.dist-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.dist-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.dist-card-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 28px;
    height: 28px;
    color: var(--accent);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.dist-card:hover .dist-card-icon {
    opacity: 1;
}

/* ===========================
   Artists Section
   =========================== */
.section-artists {
    padding: 120px clamp(24px, 4vw, 64px);
    background: var(--bg-elevated);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.artist-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.artist-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.artist-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-initials {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.artist-info h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2px;
}

.artist-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ===========================
   Releases Section
   =========================== */
.section-releases {
    padding: 120px clamp(24px, 4vw, 64px);
}

.releases-list {
    display: flex;
    flex-direction: column;
}

.release-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.release-item:first-child {
    border-top: 1px solid var(--border);
}

.release-item:hover {
    padding-left: 12px;
}

.release-cover {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.release-play {
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.release-item:hover .release-play {
    opacity: 1;
}

.release-info {
    flex: 1;
}

.release-info h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2px;
}

.release-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.release-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.release-type {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 10px;
    border: 1px solid var(--accent-dim);
    border-radius: 2px;
}

.release-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===========================
   About Section
   =========================== */
.section-about {
    padding: 120px clamp(24px, 4vw, 64px);
    background: var(--bg-elevated);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 24px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
}

.about-feature {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.about-feature:first-child {
    border-top: 1px solid var(--border);
}

.about-feature-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.about-feature-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ===========================
   CTA Section
   =========================== */
.section-cta {
    padding: 120px clamp(24px, 4vw, 64px);
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-title em {
    font-style: italic;
    color: var(--accent);
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 64px clamp(24px, 4vw, 64px) 32px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 48px;
}

.footer-brand .logo-text {
    margin-bottom: 8px;
    display: block;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--accent);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-desc {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 64px;
    }

    .hero-circle {
        width: 240px;
        height: 240px;
    }

    .dist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .nav-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-circle {
        width: 200px;
        height: 200px;
    }

    .hero-stats {
        gap: 32px;
    }

    .dist-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .release-meta {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .section-dist,
    .section-artists,
    .section-releases,
    .section-about,
    .section-cta {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-ghost {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}
