:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #00ff88;
    --secondary-accent: #5d45f9;
    --card-bg: #141414;
    --font-main: 'Space Grotesk', sans-serif;
    --font-display: 'Syne', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links a {
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 70%);
    z-index: -2;
}

.scrolling-text-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 100%;
    white-space: nowrap;
    opacity: 0.1;
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 800;
    z-index: -1;
    display: flex;
}

.scrolling-text {
    animation: scroll 20s linear infinite;
    padding-right: 50px;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem; /* Larger tagline */
    letter-spacing: 0.1rem;
    font-weight: 300;
    color: #e0e0e0;
    text-transform: uppercase;
}

.scroll-indicator {
    margin-top: 3rem;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* About Section Revamped */
.about {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 30vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.about-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.card-label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--secondary-accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.about-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
}

.audience-card {
    margin-top: 6rem; /* Asymmetrical layout */
}


/* Tech */
.tech {
    padding: 8rem 0;
    background: var(--card-bg);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.tech h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.tech-card {
    background: #0a0a0a;
    padding: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

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

.tech-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Services Bento Grid */
.services {
    padding: 10rem 0;
}

.services h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
    text-align: right;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s;
}

.bento-item:hover {
    background: #1a1a1a;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.box-1 { grid-column: 1 / 3; }
.box-2 { grid-column: 3 / 5; }
.box-3 { grid-column: 1 / 2; }
.box-4 { grid-column: 2 / 4; }
.box-5 { grid-column: 4 / 5; }

/* Mission Vision */
.mission-vision {
    padding: 5rem 0;
    overflow: hidden;
}

.marquee-reverse {
    display: flex;
    white-space: nowrap;
    margin-bottom: 4rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: #222;
}

.marquee-reverse span {
    animation: scroll-reverse 30s linear infinite;
    padding-left: 50px;
}

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

.mv-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.mv-block {
    max-width: 400px;
}

.mv-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Regulation */
.regulation {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #111);
}

.reg-status {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.status-badge {
    background: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
    color: #aaa;
}

.timeline {
    border-left: 2px solid #333;
    margin-left: 50%;
    transform: translateX(-1px);
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--text-color);
    border-radius: 50%;
}

.timeline-item.highlight::before {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-item .date {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.timeline-item .event {
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: 8rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}

.question {
    padding: 1.5rem 0;
    font-size: 1.2rem;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .question::after {
    transform: rotate(45deg);
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 0;
    color: #aaa;
}

.faq-item.active .answer {
    max-height: 200px; /* Approximate height */
    padding-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #222;
}

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

.footer-contact a {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--accent-color);
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .scrolling-text { font-size: 5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .audience-card { margin-top: 0; }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .box-1, .box-2, .box-3, .box-4, .box-5 { grid-column: auto; }
    .timeline { margin-left: 1rem; }
}
