/* ==============================================
   K41ru Entertainment — Refined Design v6.0
   2026年3月 — World-Class Music Label Style
   ============================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
    /* Core Palette */
    --bg:            #09090F;
    --bg-elevated:   #0F0F18;
    --bg-subtle:     #161622;
    --border:        #1E1E2E;
    --border-soft:   #28283A;

    /* Text */
    --text:          #F0EFE8;
    --text-soft:     #8A8A9A;
    --text-muted:    #4A4A5A;

    /* Accent — Warm Gold */
    --accent:        #C4974A;
    --accent-light:  #E0B878;
    --accent-dim:    rgba(196, 151, 74, 0.15);

    /* AI Atmosphere — Violet (hero only) */
    --violet:        rgba(123, 110, 246, 0.12);
    --violet-bright: rgba(123, 110, 246, 0.5);
    --violet-line:   rgba(196, 168, 255, 0.5);

    /* Typography */
    --font-display:  'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    --font-body:     'Noto Sans JP', 'Montserrat', system-ui, sans-serif;
    --font-label:    'Montserrat', 'Noto Sans JP', system-ui, sans-serif;

    /* Spacing */
    --sp-1:   0.25rem;
    --sp-2:   0.5rem;
    --sp-3:   0.75rem;
    --sp-4:   1rem;
    --sp-6:   1.5rem;
    --sp-8:   2rem;
    --sp-12:  3rem;
    --sp-16:  4rem;
    --sp-24:  6rem;
    --sp-32:  8rem;

    /* Layout */
    --section-py:    clamp(4rem, 8vw, 7rem);
    --section-px:    clamp(1.25rem, 4vw, 3rem);
    --hero-px:       clamp(1.5rem, 5vw, 4rem);
    --content-max:   1200px;

    /* Animation */
    --ease:          0.3s ease;
    --ease-reveal:   0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Legacy overrides */
    --primary:        var(--accent);
    --primary-light:  var(--accent-light);
    --primary-dark:   var(--accent);
    --accent-soft:    var(--accent-light);
    --text-dark:      var(--text);
    --text-medium:    var(--text-soft);
    --text-light:     var(--text-muted);
    --bg-white:       var(--bg);
    --bg-light:       var(--bg-elevated);
    --bg-soft:        var(--bg-subtle);
    --bg-gradient:    var(--bg);
    --glass-bg:       var(--bg-elevated);
    --glass-border:   var(--border);
    --glass-blur:     none;
    --shadow-xs: none; --shadow-sm: none; --shadow-md: none;
    --shadow-lg: none; --shadow-xl: none; --shadow-2xl: none;
    --shadow-glow: none;
    --transition-fast: var(--ease); --transition-normal: var(--ease);
    --transition-slow: 0.6s ease; --transition-bounce: 0.6s ease;
    --radius-sm: 0; --radius-md: 0; --radius-lg: 0;
    --radius-xl: 0; --radius-xxl: 0; --radius-full: 2px;
    --spacing-xs: var(--sp-2); --spacing-sm: var(--sp-4);
    --spacing-md: var(--sp-6); --spacing-lg: var(--sp-8);
    --spacing-xl: var(--sp-12); --spacing-xxl: var(--sp-16);
    --spacing-xxxl: var(--sp-24);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Section Label ── */
.section-label {
    display: block;
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: var(--sp-3);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: var(--sp-6) var(--hero-px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--ease);
}

.header.scrolled {
    background: rgba(9, 9, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    padding: var(--sp-4) var(--hero-px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--content-max);
    padding: 0;
}

/* Logo */
.logo-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
    padding: 0; border-radius: 0; overflow: visible;
    transition: opacity var(--ease);
}
.logo-link:hover { opacity: 0.7; transform: none; background: none; }
.logo-link::before { display: none; }
.logo-link:hover::before { display: none; }
.logo-link:hover .logo-image { transform: none; filter: brightness(0) invert(1); }

.logo-image {
    height: 30px; width: auto;
    filter: brightness(0) invert(1);
    transition: opacity var(--ease);
}

.logo-text-wrapper { display: flex; flex-direction: column; align-items: flex-start; }

.logo-text {
    font-family: var(--font-label);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text);
    line-height: 1;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}
.logo-link:hover .logo-text { letter-spacing: 0.06em; color: var(--text); }

.logo-subtitle {
    font-family: var(--font-label);
    font-size: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px;
}
.logo-link:hover .logo-subtitle { color: var(--text-muted); letter-spacing: 0.22em; }

/* Nav */
.nav { display: flex; gap: var(--sp-8); }
.nav a {
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 0; border-radius: 0;
    transition: color var(--ease);
    position: relative;
}
.nav a::after { display: none; }
.nav a:hover { color: var(--text); background: none; }

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: var(--sp-2);
}
.mobile-menu-toggle span {
    display: block; width: 22px; height: 1px;
    background: var(--text); transition: all var(--ease);
}

/* ============================================================
   HERO SECTION — Cinematic, Bottom-Left
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 640px;
    background-color: var(--bg);
    overflow: hidden;

    /* KEY CHANGE: content anchors to bottom-left (cinematic standard) */
    display: flex;
    align-items: flex-end;
}

/* Particle canvas — sits behind everything */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Subtle grid (depth layer) */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 1;
    /* Fade grid at edges */
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
}

/* Radial glow — asymmetric, upper-right — AI aura */
.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 55% at 75% 25%,
            rgba(123, 110, 246, 0.09) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 45% 45% at 20% 70%,
            rgba(196, 151, 74, 0.05) 0%,
            transparent 60%
        );
    pointer-events: none;
    z-index: 1;
}

/* Film grain texture — premium warmth */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    pointer-events: none;
    z-index: 2;
}

/* Bottom gradient — text legibility */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(9, 9, 15, 0.97) 0%,
        rgba(9, 9, 15, 0.82) 20%,
        rgba(9, 9, 15, 0.45) 45%,
        rgba(9, 9, 15, 0.12) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}

/* Thin gold accent line at very top */
.hero-topline {
    position: absolute;
    top: 0;
    left: var(--hero-px);
    right: var(--hero-px);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(196, 151, 74, 0.5) 20%,
        rgba(196, 151, 74, 0.5) 80%,
        transparent 100%
    );
    z-index: 10;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* ── Hero Content — pinned bottom-left ── */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 860px;
    padding: 0 var(--hero-px) 100px; /* 100px bottom = space for stats bar */
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp var(--ease-reveal) 0.5s forwards;
}

.hero-eyebrow-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: pulseDot 3s ease-in-out 2s infinite;
}

.hero-eyebrow-text {
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.025em;
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 1.25rem;
    text-shadow: none;
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp var(--ease-reveal) 0.65s forwards;
}

/* "AI" accent — gold highlight */
.hero-title .accent-word {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title .accent-word::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-label);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 1.25rem;
    text-shadow: none;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp var(--ease-reveal) 0.8s forwards;
}

/* Hero Description */
.hero-description {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-soft);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 2.5rem;
    text-shadow: none;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp var(--ease-reveal) 0.95s forwards;
}

/* Hero CTAs — outlined ghost + text link */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp var(--ease-reveal) 1.1s forwards;
}

/* Remove old stat-mini from hero flow */
.hero-stats-mini { display: none; }

/* Ghost primary button */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(240, 239, 232, 0.28);
    background: transparent;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 151, 74, 0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-primary:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.hero-btn-primary:hover::before {
    transform: translateX(0);
}

.hero-btn-arrow {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(4px);
}

/* Text link secondary */
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.hero-btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 1px;
    background: var(--text-muted);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.hero-btn-secondary:hover {
    color: var(--text);
}

.hero-btn-secondary:hover::after {
    transform: scaleX(1);
    background: var(--text-soft);
}

/* ── Stats Bar — pinned at very bottom of hero ── */
.hero-statsbar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 15;
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(30, 30, 46, 0.9);
    background: rgba(9, 9, 15, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    animation: fadeInBar 0.7s ease 1.5s forwards;
}

.hero-stat {
    flex: 1;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid var(--border);
    transition: background 0.25s ease;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(196, 151, 74, 0.04); }

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--accent);
    line-height: 1;
    white-space: nowrap;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-stat-info { display: flex; flex-direction: column; gap: 2px; }

.hero-stat-label {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.02em;
    display: block;
}

.hero-stat-desc {
    font-family: var(--font-label);
    font-size: 0.5625rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

/* ── Scroll Indicator — right side ── */
.hero-scroll {
    position: absolute;
    right: var(--hero-px);
    bottom: 80px; /* above stats bar */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInBar 0.6s ease 1.8s forwards;
}

.hero-scroll-text {
    font-family: var(--font-label);
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    line-height: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 50%;
    background: var(--accent);
    animation: scrollDrop 1.8s ease-in-out 2.2s infinite;
}

/* ── Hero: hide old elements ── */
.hero-visual { display: none !important; }

/* ============================================================
   BUTTONS (non-hero)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-label);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: var(--sp-4) var(--sp-8);
    border: 1px solid transparent;
    border-radius: 0;
    transition: all var(--ease);
    cursor: pointer;
    position: relative; overflow: hidden;
}
.btn::before { display: none; }
.btn:hover::before { display: none; }

.btn-primary {
    background: var(--accent); color: var(--bg); border-color: var(--accent);
    box-shadow: none;
}
.btn-primary:hover {
    background: var(--accent-light); border-color: var(--accent-light);
    color: var(--bg); transform: none; box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-soft);
    border-color: var(--border-soft);
    box-shadow: none;
}
.btn-secondary:hover {
    background: var(--bg-subtle); color: var(--text);
    border-color: var(--text-muted); transform: none; box-shadow: none;
}

.btn-small { padding: var(--sp-2) var(--sp-6); font-size: 0.625rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: var(--section-py) 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: transparent;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    text-align: center;
    margin-bottom: var(--sp-16);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.section-title::after { display: none; }

.section-description {
    font-size: 0.9375rem;
    color: var(--text-soft);
    text-align: center;
    max-width: 520px;
    margin: -var(--sp-8) auto var(--sp-12);
    line-height: 1.85;
    font-weight: 300;
}

.section-footer {
    text-align: center;
    margin-top: var(--sp-12);
    padding-top: var(--sp-12);
    border-top: 1px solid var(--border);
}

/* ============================================================
   FEATURED VIDEOS
   ============================================================ */
.featured-videos { background: var(--bg-elevated); }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: var(--sp-12);
}

.video-card {
    background: var(--bg-elevated);
    padding: 0; border-radius: 0; border: none;
    box-shadow: none; overflow: hidden; transition: background var(--ease);
}
.video-card:hover { transform: none; }

.video-wrapper {
    position: relative; padding-top: 56.25%; background: #000; overflow: hidden;
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: none; display: block;
}

.video-info {
    padding: var(--sp-6) var(--sp-8);
    border-top: 1px solid var(--border);
}
.video-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem; font-weight: 400; font-style: italic;
    color: var(--text); margin-bottom: var(--sp-2); line-height: 1.3;
}
.video-artist {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); margin-bottom: var(--sp-1);
}
.video-description {
    font-size: 0.8125rem; color: var(--text-muted); margin-bottom: var(--sp-6);
}
.featured-videos-footer { text-align: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }

.about-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--sp-24); align-items: start;
}
.about-text h3 {
    font-family: var(--font-display); font-size: 1.75rem;
    font-weight: 300; font-style: italic; color: var(--text);
    margin-bottom: var(--sp-6); line-height: 1.3;
}
.about-text p {
    font-size: 0.9375rem; color: var(--text-soft);
    line-height: 1.9; margin-bottom: var(--sp-6); font-weight: 300;
}
.about-text strong { color: var(--accent); font-weight: 500; }

.feature-list { list-style: none; border-top: 1px solid var(--border); margin-top: var(--sp-6); }
.feature-list li {
    padding: var(--sp-4) 0; padding-left: var(--sp-6);
    position: relative; color: var(--text-soft);
    font-size: 0.875rem; border-bottom: 1px solid var(--border); font-weight: 300;
}
.feature-list li::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 3px; height: 3px;
    background: var(--accent); border-radius: 50%;
}

.about-stats {
    display: flex; flex-direction: column; gap: 1px;
    background: var(--border); border: 1px solid var(--border);
}
.stat-item {
    background: var(--bg-elevated); padding: var(--sp-8);
    display: flex; align-items: center; gap: var(--sp-6);
    border-radius: 0; border: none; box-shadow: none;
    transition: background var(--ease); text-align: left;
}
.stat-item:hover { background: var(--bg-subtle); transform: none; box-shadow: none; }
.stat-number {
    font-family: var(--font-display); font-size: 2.75rem; font-weight: 300;
    font-style: italic; color: var(--accent); line-height: 1;
    background: none; -webkit-background-clip: unset;
    -webkit-text-fill-color: unset; background-clip: unset; min-width: 90px; display: block;
}
.stat-info { flex: 1; }
.stat-label {
    display: block; font-family: var(--font-label); font-size: 0.8125rem;
    font-weight: 500; color: var(--text); margin-bottom: var(--sp-1);
}
.stat-detail {
    display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 300;
}

/* ============================================================
   ARTISTS
   ============================================================ */
.artists { background: var(--bg-elevated); }

.artists-category-label {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
    padding: var(--sp-3) 0; border-bottom: 1px solid var(--border);
    margin-bottom: var(--sp-6); margin-top: var(--sp-12);
}

.artists-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px; background: var(--border); border: 1px solid var(--border);
}

.artist-card.coming-soon { display: none !important; }

.artist-card {
    background: var(--bg-elevated); padding: var(--sp-8);
    border-radius: 0; border: none; box-shadow: none;
    transition: background var(--ease); text-align: left;
    position: relative; overflow: hidden;
}
.artist-card::before { display: none; }
.artist-card:hover { background: var(--bg-subtle); transform: none; box-shadow: none; }

.artist-badge {
    display: inline-block; font-family: var(--font-label); font-size: 0.5625rem;
    font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); border: 1px solid var(--accent);
    padding: 2px 8px; border-radius: 0; margin-bottom: var(--sp-4);
}
.indie-badge { color: var(--text-muted); border-color: var(--border-soft); }

.artist-image { margin-bottom: var(--sp-6); }
.artist-placeholder {
    width: 72px; height: 72px; background: var(--bg-subtle);
    border: 1px solid var(--border-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-label); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; color: var(--text-soft); border-radius: 0; transition: none;
}
.artist-placeholder.hdk, .artist-placeholder.tas, .artist-placeholder.neo,
.artist-placeholder.mws, .artist-placeholder.prs, .artist-placeholder.orb {
    background: var(--bg-subtle); border-color: rgba(196, 151, 74, 0.35);
    color: var(--accent);
}
.artist-card:hover .artist-placeholder { transform: none; box-shadow: none; }

.artist-card h3 {
    font-family: var(--font-display); font-size: 1.375rem; font-weight: 400;
    font-style: italic; color: var(--text); margin-bottom: var(--sp-1);
}
.artist-genre {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
    margin-bottom: var(--sp-4);
}
.artist-description {
    font-size: 0.875rem; color: var(--text-soft); line-height: 1.75;
    margin-bottom: var(--sp-6); font-weight: 300;
}
.artist-link {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none;
    border-bottom: 1px solid var(--border-soft); padding-bottom: 2px;
    transition: all var(--ease);
}
.artist-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.artist-stats-mini { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.artist-stats-mini span {
    font-family: var(--font-label); font-size: 0.5625rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); border: 1px solid var(--border); padding: 2px 6px;
}

/* ============================================================
   MUSIC
   ============================================================ */
.music { background: var(--bg); }

.music-filter {
    display: flex; justify-content: center;
    gap: 1px; background: var(--border); border: 1px solid var(--border);
    margin-bottom: var(--sp-12); width: fit-content;
    margin-left: auto; margin-right: auto;
}
.filter-btn {
    background: var(--bg); color: var(--text-soft); border: none;
    padding: var(--sp-3) var(--sp-8);
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: all var(--ease); border-radius: 0;
}
.filter-btn:hover { background: var(--bg-subtle); color: var(--text); }
.filter-btn.active { background: var(--accent); color: var(--bg); }

.music-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.music-card {
    background: var(--bg-elevated); padding: var(--sp-6);
    border-radius: 0; border: none; box-shadow: none;
    transition: background var(--ease); overflow: hidden;
}
.music-card:hover { background: var(--bg-subtle); transform: none; box-shadow: none; }

.music-cover {
    width: 100%; aspect-ratio: 1; margin-bottom: var(--sp-4);
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 0;
}
.hdk-gradient, .tas-gradient, .neo-gradient { background: var(--bg-subtle); }
.music-card[data-artist="hdk"] .music-cover { border-color: rgba(196, 151, 74, 0.3); }
.music-card[data-artist="tas"] .music-cover { border-color: rgba(100, 200, 130, 0.25); }
.music-card[data-artist="neo"] .music-cover { border-color: rgba(200, 100, 180, 0.25); }

.music-icon { font-size: 1.75rem; opacity: 0.35; }

.music-info h3 {
    font-family: var(--font-display); font-size: 1.125rem; font-weight: 400;
    font-style: italic; color: var(--text); margin-bottom: var(--sp-1); line-height: 1.35;
}
.music-artist {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    margin-bottom: var(--sp-1);
}
.music-date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: var(--sp-3); }
.music-tags { display: flex; flex-wrap: wrap; gap: var(--sp-1); }
.tag {
    font-family: var(--font-label); font-size: 0.5625rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); border: 1px solid var(--border);
    padding: 1px 5px; border-radius: 0;
}

/* ============================================================
   NEWS
   ============================================================ */
.news { background: var(--bg-elevated); }

.news-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.news-card {
    background: var(--bg-elevated); padding: var(--sp-8);
    border-radius: 0; border: none; box-shadow: none; transition: background var(--ease);
}
.news-card:hover { background: var(--bg-subtle); transform: none; box-shadow: none; }
.news-date {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: var(--sp-4);
}
.news-card h3 {
    font-family: var(--font-display); font-size: 1.375rem; font-weight: 400;
    font-style: italic; color: var(--text); margin-bottom: var(--sp-4); line-height: 1.3;
}
.news-card p {
    font-size: 0.875rem; color: var(--text-soft); line-height: 1.8;
    margin-bottom: var(--sp-6); font-weight: 300;
}
.news-link {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.1em; color: var(--text-muted); text-decoration: none;
    border-bottom: 1px solid var(--border-soft); padding-bottom: 2px; transition: all var(--ease);
}
.news-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============================================================
   VISION
   ============================================================ */
.vision { background: var(--bg); }
.vision-content {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.vision-item {
    background: var(--bg-elevated); padding: var(--sp-8);
    border-radius: 0; border: none; box-shadow: none; transition: background var(--ease);
}
.vision-item:hover { background: var(--bg-subtle); transform: none; }
.vision-icon { font-size: 1rem; margin-bottom: var(--sp-4); opacity: 0.25; line-height: 1; }
.vision-item h3 {
    font-family: var(--font-label); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
    margin-bottom: var(--sp-3);
}
.vision-item p {
    font-size: 0.875rem; color: var(--text-soft); line-height: 1.85; font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-elevated); }
.contact-content { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-content > p {
    font-size: 1rem; color: var(--text-soft); line-height: 1.9;
    margin-bottom: var(--sp-12); font-weight: 300;
}
.contact-info {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border); border: 1px solid var(--border);
    margin-bottom: var(--sp-12); text-align: left;
}
.contact-item {
    background: var(--bg-elevated); padding: var(--sp-6); transition: background var(--ease);
}
.contact-item:hover { background: var(--bg-subtle); }
.contact-icon { font-size: 0.875rem; opacity: 0.3; margin-bottom: var(--sp-3); }
.contact-item strong {
    display: block; font-family: var(--font-label); font-size: 0.625rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
    margin-bottom: var(--sp-2);
}
.contact-item p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; font-weight: 300; }

.social-links {
    display: flex; justify-content: center;
    gap: 1px; background: var(--border); border: 1px solid var(--border);
    width: fit-content; margin: 0 auto;
}
.social-link {
    background: var(--bg-elevated); padding: var(--sp-4) var(--sp-8);
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-soft); text-decoration: none; transition: all var(--ease);
}
.social-link:hover { background: var(--bg-subtle); color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg); border-top: 1px solid var(--border);
    padding: var(--sp-16) 0 var(--sp-8);
}
.footer-content {
    display: flex; flex-direction: column; align-items: center; gap: var(--sp-6);
    margin-bottom: var(--sp-8); padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--border);
}
.footer-logo-image {
    height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.45;
}
.footer-tagline {
    font-family: var(--font-display); font-size: 1.125rem;
    font-weight: 300; font-style: italic; color: var(--text-soft);
}
.footer-nav { display: flex; gap: var(--sp-8); flex-wrap: wrap; justify-content: center; }
.footer-nav a {
    font-family: var(--font-label); font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-muted); transition: color var(--ease);
}
.footer-nav a:hover { color: var(--text-soft); }
.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; gap: var(--sp-4); flex-wrap: wrap;
}
.footer-bottom p, .footer-copyright {
    font-size: 0.6875rem; color: var(--text-muted); font-weight: 300;
}
.footer-tech {
    font-family: var(--font-label); font-size: 0.625rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 40px; height: 40px; background: var(--bg-elevated);
    border: 1px solid var(--border-soft); color: var(--text-soft);
    cursor: pointer; opacity: 0; visibility: hidden; transition: all var(--ease);
    font-size: 0.875rem; display: flex; align-items: center; justify-content: center;
    z-index: 100; border-radius: 0;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: var(--bg-subtle); color: var(--text); border-color: var(--text-muted); }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(var(--ty, 18px)); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBar {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lineExpand {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.65); }
}

@keyframes scrollDrop {
    0%   { top: -100%; opacity: 1; }
    80%  { opacity: 0.6; }
    100% { top: 120%; opacity: 0; }
}

.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   DISABLE LEGACY ADVANCED/ULTRA FEATURES
   ============================================================ */
.dark-mode-toggle   { display: none !important; }
.particle-canvas    { display: none !important; }
.artist-modal       { display: none !important; }
.progress-bar       { display: none !important; }

/* Hero canvas is a different element, not .particle-canvas */
.hero-canvas { display: block !important; }

/* Dark mode: keep our theme */
body.dark-mode { --bg: #09090F; --bg-light: #0F0F18; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-title, .hero-subtitle, .hero-description,
    .hero-buttons, .hero-eyebrow, .hero-statsbar, .hero-scroll {
        opacity: 1; transform: none; animation: none;
    }
    .hero-topline { transform: scaleX(1); animation: none; }
    .hero-title .accent-word::after { transform: scaleX(1); animation: none; }
    .hero-eyebrow-dot { animation: none; }
    .hero-scroll-line::after { animation: none; }
    .hero-canvas { display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero-scroll { display: none; }
    .hero-stat-desc { display: none; }
}

@media (max-width: 768px) {
    :root { --section-py: 4rem; --section-px: 1.25rem; --hero-px: 1.5rem; }
    .header { padding: var(--sp-4) var(--hero-px); }
    .nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero { min-height: 100svh; }
    .hero-content { padding: 0 var(--hero-px) 90px; }
    .hero-stat { padding: 14px 16px; gap: 0.75rem; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.6875rem; }
    .about-content { grid-template-columns: 1fr; gap: var(--sp-12); }
    .contact-info { grid-template-columns: 1fr; }
    .artists-grid, .music-grid, .videos-grid, .news-grid, .vision-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .music-filter { flex-wrap: wrap; }
    .filter-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .hero-statsbar { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
}
