/* ========================================
   MAX1MILLIONS - Futuristic Dark Theme
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111114;
    --bg-tertiary: #18181c;
    --bg-card: #1a1a1f;
    
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    
    --accent-primary: #00f0ff;
    --accent-secondary: #7b61ff;
    --accent-gradient: linear-gradient(135deg, #00f0ff 0%, #7b61ff 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-padding: clamp(1.5rem, 5vw, 3rem);
    --container-max: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   Navigation
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--container-padding);
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.logo img {
    height: 35px;
    width: auto;
    display: block;
}

.logo:hover {
    opacity: 0.8;
}

.logo .accent,
.accent {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-socials {
    display: flex;
    gap: 1rem;
}

.nav-socials a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-socials a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ========================================
   Home Page - Video Background
   ======================================== */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-primary);
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0.4) 0%,
        rgba(10, 10, 11, 0.6) 50%,
        rgba(10, 10, 11, 0.95) 100%
    );
}

/* Blur overlays for mobile letterboxing */
.video-blur-top,
.video-blur-bottom {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem var(--container-padding);
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title .line-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    white-space: nowrap;
}

.hero-title .line-2 {
    display: block;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.one {
    font-family: 'Outfit', var(--font-display);
    font-weight: 800;
    margin: 0;
    padding: 0;
    line-height: inherit;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn svg {
    transition: var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.text-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.home-page .stats-section {
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* ========================================
   About Preview Section
   ======================================== */
.about-preview {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}

.image-frame {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
    border: 1px solid var(--accent-primary);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
}

.about-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-content .quote {
    font-style: italic;
    color: var(--text-primary);
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-primary);
    margin: 2rem 0;
}

.about-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* ========================================
   Page Headers
   ======================================== */
.page-header {
    padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 1rem;
}

.page-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
}

/* Waveform Animation */
.header-visual {
    position: absolute;
    right: 5%;
    bottom: 20%;
    opacity: 0.2;
}

.waveform {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 100px;
}

.waveform span {
    width: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 20%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.waveform span:nth-child(8) { height: 40%; animation-delay: 0.7s; }
.waveform span:nth-child(9) { height: 20%; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 40%; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 60%; animation-delay: 1s; }
.waveform span:nth-child(12) { height: 80%; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 100%; animation-delay: 1.2s; }
.waveform span:nth-child(14) { height: 80%; animation-delay: 1.3s; }
.waveform span:nth-child(15) { height: 60%; animation-delay: 1.4s; }
.waveform span:nth-child(16) { height: 40%; animation-delay: 1.5s; }
.waveform span:nth-child(17) { height: 20%; animation-delay: 1.6s; }
.waveform span:nth-child(18) { height: 40%; animation-delay: 1.7s; }
.waveform span:nth-child(19) { height: 60%; animation-delay: 1.8s; }
.waveform span:nth-child(20) { height: 80%; animation-delay: 1.9s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* Tech Visual - Circuit Lines */
.tech-visual .circuit-lines {
    position: relative;
    width: 200px;
    height: 200px;
}

.circuit-lines .line {
    position: absolute;
    background: var(--accent-primary);
    opacity: 0.3;
}

.circuit-lines .line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 50%;
}

.circuit-lines .line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
}

.circuit-lines .line:nth-child(3) {
    width: 70%;
    height: 1px;
    top: 30%;
    left: 30%;
}

.circuit-lines .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.circuit-lines .node:nth-child(4) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circuit-lines .node:nth-child(5) {
    top: 30%;
    left: 30%;
    animation-delay: 0.5s;
}

.circuit-lines .node:nth-child(6) {
    top: 30%;
    right: 0;
    animation-delay: 1s;
}

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

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ========================================
   Timeline (Music Page)
   ======================================== */
.journey-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-primary) 0%, var(--border-color) 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 2rem;
    padding: 3rem 0;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 3rem;
    width: 9px;
    height: 9px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.timeline-marker {
    text-align: right;
    padding-right: 2rem;
}

.timeline-marker .year {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent-primary);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.timeline-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    transition: var(--transition-fast);
}

.timeline-link:hover {
    text-decoration: underline;
}

.timeline-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 2px;
    /* filter: grayscale(50%); */
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-image img {
    filter: grayscale(0%);
}

/* ========================================
   Collaborations Section
   ======================================== */
.collabs-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.collabs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collab-item {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.collab-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.collab-item.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
}

.collab-name {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.collab-type {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.collab-item.more {
    border-style: dashed;
    opacity: 0.7;
}

/* ========================================
   Genres Section
   ======================================== */
.genres-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.genres-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.genres-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.genre-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.genre-tag:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-primary);
}

.genres-text {
    color: var(--text-secondary);
}

/* ========================================
   Listen Section
   ======================================== */
.listen-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.listen-content {
    text-align: center;
}

.listen-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.listen-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.listen-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    min-width: 150px;
    transition: var(--transition-smooth);
}

.listen-link:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.listen-link span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ========================================
   Vision Section (Tech Page)
   ======================================== */
.vision-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-quote blockquote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    position: relative;
}

.vision-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -0.5em;
    left: -0.5em;
    font-size: 4em;
    color: var(--accent-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.vision-quote cite {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
}

.vision-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ========================================
   Rightstune Section
   ======================================== */
.rightstune-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.rightstune-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.company-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.company-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.rightstune-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-list span {
    color: var(--text-secondary);
}

.visual-card {
    padding: 3rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    text-align: center;
}

.card-icon {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.card-icon svg {
    margin: 0 auto;
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--text-secondary);
}

/* ========================================
   Pillars Section
   ======================================== */
.pillars-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pillar-card {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.pillar-number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ========================================
   Philosophy Section
   ======================================== */
.philosophy-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.philosophy-text .highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(30%);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.gallery-grid.single-item {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   Connect Section
   ======================================== */
.connect-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.connect-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.connect-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.connect-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.connect-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

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

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-grid,
    .vision-content,
    .rightstune-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collabs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
    }
    
    .timeline-image {
        grid-column: 2;
        margin-top: 1rem;
    }
    
    .timeline-image img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .nav-socials {
        order: 2;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .collabs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .listen-links {
        flex-direction: column;
        align-items: center;
    }
    
    .listen-link {
        width: 100%;
        max-width: 250px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 3rem;
    }
    
    .timeline-item::before {
        left: 11px;
    }
    
    .timeline-marker {
        text-align: left;
        padding-right: 0;
    }
    
    .header-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .about-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Mobile-Specific Hero Optimizations
   ======================================== */
@media (max-width: 768px) {
    /* Video container - show full width with cover on mobile to avoid gaps */
    .video-container {
        display: block;
    }
    
    #bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }
    
    /* Hide blur overlays as they are not needed with cover */
    .video-blur-top,
    .video-blur-bottom {
        display: none;
    }
    
    .video-blur-top {
        top: 0;
        background: linear-gradient(
            to bottom,
            var(--bg-primary) 0%,
            rgba(10, 10, 11, 0.95) 30%,
            rgba(10, 10, 11, 0.7) 60%,
            transparent 100%
        );
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
    
    .video-blur-bottom {
        bottom: 0;
        background: linear-gradient(
            to top,
            var(--bg-primary) 0%,
            rgba(10, 10, 11, 0.95) 30%,
            rgba(10, 10, 11, 0.7) 60%,
            transparent 100%
        );
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
    
    /* Adjust video overlay for mobile */
    .video-overlay {
        z-index: 2;
    }
    
    /* Hero section */
    .hero {
        padding: 5rem 1rem 3rem;
        min-height: 100svh; /* Use small viewport height for mobile */
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-tag {
        font-size: 0.625rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 10vw, 3rem);
        margin-bottom: 1rem;
        line-height: 1.1;
        letter-spacing: -0.03em;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-title .line-1 {
        max-width: 90vw;
        font-size: clamp(1.5rem, 7.5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.5;
        margin: 0 auto 1.5rem;
        max-width: 90%;
    }
    
    .hero-cta {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .scroll-indicator span {
        font-size: 0.5rem;
    }
    
    .scroll-line {
        height: 25px;
    }
    
    /* Navigation adjustments */
    .main-nav {
        padding: 1rem;
    }
    
    .logo img {
        height: 28px;
    }
    
    .nav-links a {
        font-size: 0.65rem;
    }
    
    .nav-socials a svg {
        width: 18px;
        height: 18px;
    }
    
    /* About Preview - Full screen on mobile */
    .about-preview {
        min-height: 100svh;
        display: flex;
        align-items: center;
        padding: 3rem 0;
    }
    
    .about-preview .container {
        width: 100%;
    }
    
    .about-grid {
        gap: 1.5rem;
    }
    
    .about-image img {
        aspect-ratio: 4/3;
        max-height: 35vh;
        width: 100%;
        object-fit: cover;
    }
    
    .about-image .image-frame {
        display: none;
    }
    
    .about-content .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-content p {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .about-content .quote {
        font-size: 0.875rem;
        padding-left: 1rem;
        margin: 1rem 0;
    }
    
    .about-links {
        margin-top: 1.25rem;
        gap: 1.5rem;
    }
    
    .text-link {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    /* Small mobile devices */
    .hero {
        padding: 4.5rem 1rem 2.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.35rem, 9.5vw, 2.5rem);
    }
    
    .hero-title .line-1 {
        max-width: 90vw;
        font-size: clamp(1.35rem, 7vw, 2.5rem);
    }
}

@media (max-width: 390px) {
    /* Extra small devices */
    .hero {
        padding: 4.5rem 0.75rem 2.5rem;
    }
    
    .hero-tag {
        font-size: 0.5625rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 9vw, 2.25rem);
        letter-spacing: -0.04em;
    }
    
    .hero-title .line-1 {
        max-width: 90vw;
        font-size: clamp(1.25rem, 6.5vw, 2.25rem);
    }
    
    .hero-subtitle {
        font-size: 0.8125rem;
        max-width: 95%;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .logo img {
        height: 24px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.6rem;
    }
    
    /* About Preview - Extra small */
    .about-preview {
        padding: 2rem 0;
    }
    
    .about-image img {
        max-height: 30vh;
    }
    
    .about-content .section-title {
        font-size: 1.35rem;
    }
    
    .about-content .lead {
        font-size: 0.9375rem;
    }
    
    .about-content p,
    .about-content .quote {
        font-size: 0.8125rem;
    }
}

