:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #DC143C;
    /* Crimson for 'Volt' energy */
    --highlight-color: #FFD700;
    /* Gold for 'Vox' warmth */
    --font-heading: 'Anton', sans-serif;
    --font-subheading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 120px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

/* Typography Helpers */
h1,
h2,
h3 {
    text-transform: uppercase;
    font-weight: 700;
}

.highlight {
    color: var(--highlight-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-color);
    opacity: 0.4;
    z-index: -1;
    transform: skewX(-15deg);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dim the video */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: -2px;
    color: #fff;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 81px, 0);
        transform: skew(0.55deg);
    }

    5% {
        clip: rect(51px, 9999px, 32px, 0);
        transform: skew(0.24deg);
    }

    10% {
        clip: rect(89px, 9999px, 6px, 0);
        transform: skew(0.79deg);
    }

    15% {
        clip: rect(74px, 9999px, 20px, 0);
        transform: skew(0.06deg);
    }

    20% {
        clip: rect(32px, 9999px, 86px, 0);
        transform: skew(0.64deg);
    }

    25% {
        clip: rect(14px, 9999px, 62px, 0);
        transform: skew(0.18deg);
    }

    30% {
        clip: rect(48px, 9999px, 95px, 0);
        transform: skew(0.85deg);
    }

    35% {
        clip: rect(3px, 9999px, 55px, 0);
        transform: skew(0.35deg);
    }

    40% {
        clip: rect(66px, 9999px, 49px, 0);
        transform: skew(0.53deg);
    }

    45% {
        clip: rect(9px, 9999px, 21px, 0);
        transform: skew(0.96deg);
    }

    50% {
        clip: rect(59px, 9999px, 73px, 0);
        transform: skew(0.04deg);
    }

    55% {
        clip: rect(81px, 9999px, 16px, 0);
        transform: skew(0.66deg);
    }

    60% {
        clip: rect(33px, 9999px, 42px, 0);
        transform: skew(0.18deg);
    }

    65% {
        clip: rect(92px, 9999px, 63px, 0);
        transform: skew(0.89deg);
    }

    70% {
        clip: rect(2px, 9999px, 21px, 0);
        transform: skew(0.51deg);
    }

    75% {
        clip: rect(61px, 9999px, 60px, 0);
        transform: skew(0.19deg);
    }

    80% {
        clip: rect(27px, 9999px, 5px, 0);
        transform: skew(0.79deg);
    }

    85% {
        clip: rect(96px, 9999px, 93px, 0);
        transform: skew(0.68deg);
    }

    90% {
        clip: rect(40px, 9999px, 31px, 0);
        transform: skew(0.99deg);
    }

    95% {
        clip: rect(68px, 9999px, 18px, 0);
        transform: skew(0.05deg);
    }

    100% {
        clip: rect(17px, 9999px, 47px, 0);
        transform: skew(0.83deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(26px, 9999px, 7px, 0);
        transform: skew(0.24deg);
    }

    5% {
        clip: rect(86px, 9999px, 73px, 0);
        transform: skew(0.61deg);
    }

    10% {
        clip: rect(14px, 9999px, 33px, 0);
        transform: skew(0.14deg);
    }

    15% {
        clip: rect(21px, 9999px, 96px, 0);
        transform: skew(0.78deg);
    }

    20% {
        clip: rect(72px, 9999px, 95px, 0);
        transform: skew(0.12deg);
    }

    25% {
        clip: rect(73px, 9999px, 50px, 0);
        transform: skew(0.97deg);
    }

    30% {
        clip: rect(11px, 9999px, 86px, 0);
        transform: skew(0.72deg);
    }

    35% {
        clip: rect(44px, 9999px, 27px, 0);
        transform: skew(0.27deg);
    }

    40% {
        clip: rect(31px, 9999px, 57px, 0);
        transform: skew(0.03deg);
    }

    45% {
        clip: rect(63px, 9999px, 24px, 0);
        transform: skew(0.39deg);
    }

    50% {
        clip: rect(98px, 9999px, 77px, 0);
        transform: skew(0.28deg);
    }

    55% {
        clip: rect(88px, 9999px, 51px, 0);
        transform: skew(0.75deg);
    }

    60% {
        clip: rect(9px, 9999px, 2px, 0);
        transform: skew(0.65deg);
    }

    65% {
        clip: rect(42px, 9999px, 20px, 0);
        transform: skew(0.12deg);
    }

    70% {
        clip: rect(40px, 9999px, 26px, 0);
        transform: skew(0.83deg);
    }

    75% {
        clip: rect(96px, 9999px, 32px, 0);
        transform: skew(0.53deg);
    }

    80% {
        clip: rect(80px, 9999px, 5px, 0);
        transform: skew(0.96deg);
    }

    85% {
        clip: rect(16px, 9999px, 79px, 0);
        transform: skew(0.69deg);
    }

    90% {
        clip: rect(17px, 9999px, 66px, 0);
        transform: skew(0.21deg);
    }

    95% {
        clip: rect(94px, 9999px, 78px, 0);
        transform: skew(0.48deg);
    }

    100% {
        clip: rect(8px, 9999px, 90px, 0);
        transform: skew(0.05deg);
    }
}

.tagline {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    letter-spacing: 4px;
    opacity: 0.7;
}

.scroll-indicator .line {
    width: 2px;
    height: 60px;
    background: #fff;
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }

    50% {
        transform-origin: top;
        transform: scaleY(1);
    }

    51% {
        transform-origin: bottom;
        transform: scaleY(1);
    }

    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

/* Sections General */
section {
    padding: var(--spacing-container) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    line-height: 1;
}

/* Intro Section */
.intro {
    background-color: #0F0F0F;
}

.intro .lead {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.intro p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #aaa;
}

.intro .emphasis {
    color: var(--text-color);
    font-size: 1.4rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    text-align: left;
    margin-top: 40px;
}

/* Duo Section */
.duo {
    background-color: #0a0a0a;
}

.duo .subtitle {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    margin-bottom: 60px;
    color: #888;
}

.duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.member-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.member-desc p {
    margin-bottom: 1rem;
    color: #bbb;
}

/* Philosophy Section */
.philosophy {
    background: url(assets/images/texture.jpg) no-repeat, linear-gradient(#000000b5, #1a0505);
    background-blend-mode: overlay;
    position: relative;
    color: #fff;
    text-align: right;
}

.philosophy .section-title {
    text-align: right;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.philosophy .text-columns {
    max-width: 600px;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-right: 4px solid var(--highlight-color);
}

/* Quote Section */
.quote {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #0F0F0F;
}

blockquote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 10rem;
    color: var(--text-color);
    font-family: serif;
}

/* Contact Section */
.contact {
    padding-bottom: 80px;
    background: linear-gradient(to top, #000, #0a0a0a);
    text-align: center;
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid #333;
}

.contact .actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 5px 10px;
    cursor: pointer;
    font-family: var(--font-subheading);
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--bg-color);
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-family: var(--font-subheading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn.primary:hover {
    background: var(--highlight-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #111;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-container: 60px;
    }

    .hero {
        height: 70vh;
    }

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

    .philosophy .section-title {
        text-align: left;
    }

    .philosophy .text-columns {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        border-right: none;
        border-left: 4px solid var(--highlight-color);
    }

    .contact .actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 0.9rem;
        padding: 15px 10px;
    }

    blockquote::before {
        font-size: 6rem;
        top: -30px;
        left: -20px;
    }
}