:root {
    --bg-color: #0b0c0a; /* Deepened the black for better contrast */
    --text-primary: #ededed;
    --text-secondary: #888888;
    --accent: #e5f616; /* Pure brutalist yellow/lime */
    --border-color: #2b2b2b;
    
    --font-sans: 'Inter', Helvetica, sans-serif;
    --font-mono: 'Space Mono', Courier, monospace;
}

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

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

/* Animations Core */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* NOISE BACKGROUND */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.25;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Backdrop Giant Text */
.huge-background-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
    position: relative;
    z-index: 1; 
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 8px solid var(--border-color);
    margin-bottom: 6rem;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.lang-switch { display: flex; gap: 0.5rem; }

.lang-btn {
    background: none; border: 1px solid transparent; color: var(--text-secondary);
    font-family: var(--font-mono); font-size: 0.8rem; cursor: pointer;
    padding: 0.2rem 0.6rem; transition: all 0.2s;
}

.lang-btn:hover { color: var(--text-primary); border-color: var(--border-color); }
.lang-btn.active { color: var(--bg-color); background-color: var(--accent); font-weight: bold; }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 0.3rem 0.8rem;
    text-transform: uppercase;
    display: inline-block;
}

.tagline {
    font-size: 0.85rem; text-align: right; color: var(--text-secondary); text-transform: uppercase;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 10rem;
}

.hero-text { flex: 1; }

.hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

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

.description {
    max-width: 600px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-graphic-img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 40px rgba(229, 246, 22, 0.15)) contrast(110%);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-graphic-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* MARQUEE */
.marquee-section {
    width: 100vw; margin-left: calc(-50vw + 50%);
    background-color: var(--accent); color: var(--bg-color);
    padding: 1.2rem 0; margin-bottom: 8rem;
    overflow: hidden; position: relative;
}

.marquee { display: flex; white-space: nowrap; }

.marquee-content {
    font-family: var(--font-sans); font-weight: 900; font-size: 1.8rem;
    animation: marquee-scroll 25s linear infinite; padding-right: 2rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* METRICS */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 10rem;
    text-align: center;
}

.metric-number {
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--text-primary);
}

.metric-number.highlight { color: var(--accent); }

.metric-label { font-size: 1.1rem; color: var(--text-secondary); margin-top: 0.5rem; letter-spacing: 1px;}

/* FEATURES WITH BACKGROUND */
.features-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 8rem 5%;
    margin-bottom: 10rem;
}

.features-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/artist_silhouette.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

/* Gradient overlay to blend top and bottom edges */
.features-wrapper::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
    z-index: 0;
}

.features-wrapper::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 0;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    margin-bottom: 4rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 1rem;
    display: inline-block;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: var(--font-sans);
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    padding: 3rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10, 10, 10, 0.85); /* Dark semi-transparent */
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-family: var(--font-sans);
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* NEW SECTIONS CSS */

/* Partner Strip */
.partner-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    margin-bottom: 8rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partner-label {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.partner-logos {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 700;
}

/* Pro Features List */
.pro-features {
    margin-bottom: 10rem;
}

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

.pro-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: padding-left 0.3s ease;
}

.pro-item:hover {
    padding-left: 2rem;
    border-bottom-color: var(--accent);
}

.pro-item h3 {
    font-family: var(--font-sans);
    font-size: 2rem;
    color: var(--text-primary);
}

.pro-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    text-align: right;
}

/* Featured Roster */
.featured-roster {
    margin-bottom: 10rem;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.roster-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.roster-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    border: 1px solid var(--border-color);
}

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

.roster-artist {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: #000;
    padding: 5px 10px;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials {
    margin-bottom: 10rem;
    background-color: var(--accent);
    color: var(--bg-color);
    padding: 5rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.testimonials .section-title h2 {
    color: var(--bg-color);
    border-bottom-color: var(--bg-color);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-card p {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.testi-card footer {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--bg-color);
    border: none;
    padding: 0;
}

/* HOW IT WORKS */
.how-it-works { margin-bottom: 10rem; }

.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4rem;
}

.step {
    padding-bottom: 2rem; border-bottom: 8px solid var(--border-color);
}

.step h3 {
    font-family: var(--font-mono); font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem;
}

/* FORM SECTION */
.form-section {
    display: flex; gap: 4rem; position: relative; margin-bottom: 10rem;
}

.form-wrapper {
    flex: 1; background-color: rgba(20,20,20,0.8); border: 1px solid var(--border-color); padding: 5rem 4rem; position: relative;
}

.form-wrapper::before {
    content: ''; position: absolute; top: -10px; left: 20px; width: 60px; height: 20px;
    background-color: var(--accent); transform: rotate(-3deg); opacity: 0.9;
}

.form-header {
    display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--border-color); padding-bottom: 1rem; margin-bottom: 3rem;
}

.form-header h2 { font-size: 1.2rem; font-weight: 700; letter-spacing: 2px; }

.status-indicator { font-size: 0.8rem; color: var(--accent); animation: blink 2s infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.form-group { margin-bottom: 3rem; }

label { display: block; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--accent); }

input[type="text"], input[type="email"], input[type="url"], textarea, select {
    width: 100%; background: transparent; border: none; border-bottom: 2px solid var(--border-color);
    color: var(--text-primary); font-family: var(--font-mono); font-size: 1.1rem; padding: 1rem 0;
    transition: all 0.3s ease; border-radius: 0; -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
    outline: none; border-bottom-color: var(--accent); background: rgba(255, 255, 255, 0.02);
}

input::placeholder, textarea::placeholder { color: #555; }
textarea { resize: vertical; min-height: 120px; }

.custom-select { position: relative; }
.custom-select select { cursor: pointer; }
.custom-select .arrow { position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--accent); pointer-events: none; }
.custom-select select option { background-color: var(--bg-color); color: var(--text-primary); }

.submit-btn {
    display: inline-block; width: 100%; background-color: var(--accent); color: #000; border: none;
    padding: 1.5rem; font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
    cursor: pointer; text-transform: uppercase; transition: all 0.2s; margin-top: 1rem;
}

.submit-btn:hover { background-color: var(--text-primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.submit-btn:active { transform: translateY(0); }

/* SIDE GRAPHICS */
.side-graphics { display: none; width: 300px; position: relative; }

@media (min-width: 1024px) {
    .side-graphics { display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-end; }
}

.tape-graphic {
    width: 100%; height: 180px; background-color: var(--border-color); margin-bottom: 2rem;
    position: relative; clip-path: polygon(0 0, 100% 0, 100% 80%, 20% 100%, 0 100%);
    background-image: radial-gradient(circle at 30% 50%, var(--bg-color) 20px, transparent 21px), radial-gradient(circle at 70% 50%, var(--bg-color) 20px, transparent 21px);
}

.tape-graphic::after {
    content: ''; position: absolute; top: 50%; left: 30%; right: 30%; height: 2px;
    background: var(--bg-color); transform: translateY(-50%);
}

.text-vertical {
    writing-mode: vertical-rl; transform: rotate(180deg); font-size: 6rem; font-family: var(--font-sans);
    font-weight: 900; color: transparent; -webkit-text-stroke: 1px var(--border-color); margin-top: 2rem; letter-spacing: -2px;
}

/* FAQ */
.faq-section { margin-bottom: 10rem; max-width: 900px; }

.faq-list { display: flex; flex-direction: column; gap: 3rem; margin-top: 4rem;}

.faq-item { padding-bottom: 2rem; border-bottom: 1px dashed var(--border-color); }

.faq-q { font-family: var(--font-sans); font-size: 1.6rem; color: var(--text-primary); margin-bottom: 1rem; }

.faq-a { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;}

/* FOOTER */
footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem; padding-bottom: 3rem; font-size: 1rem; color: var(--text-secondary);
    flex-wrap: wrap; gap: 2rem;
}

.footer-col.center { display: flex; flex-direction: column; align-items: center; gap: 1rem; flex: 1; }
.footer-col.right { text-align: right; }

.footer-social { display: flex; gap: 1.5rem; }
.footer-social a, .footer-links a { color: var(--text-secondary); text-decoration: none; font-family: var(--font-sans); font-weight: 700; transition: color 0.3s; }
.footer-social a:hover, .footer-links a:hover { color: var(--accent); }

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

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero .description { margin: 0 auto; }
    .form-wrapper { padding: 3rem 1.5rem; }
    header { flex-direction: column; gap: 1.5rem; }
    .tagline { text-align: left; }
    .features-wrapper { padding: 4rem 5%; }
    
    footer { flex-direction: column; align-items: center; text-align: center; }
    .footer-col.right { text-align: center; }
}
