:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --primary: #f2c94c; /* Gold from 6figureofm */
    --text: #ffffff;
    --text-dim: #777777;
    --border: #222222;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Premium Effects */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/black-linen.png");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.glow-sphere {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 201, 76, 0.05) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-logo {
    height: 35px;
    width: auto;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo-text span { color: var(--primary); }
.logo-text small { font-size: 0.5rem; color: var(--text-dim); display: block; margin-top: -5px; letter-spacing: 3px; }

.scroller img {
    height: 300px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(0.2);
}

.scroller img:hover {
    transform: scale(1.05) translateY(-10px);
    filter: grayscale(0);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 10;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.cta-nav {
    background: var(--primary);
    color: black !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

/* Hero */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: flash 1s infinite;
}

@keyframes flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-stats-top {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-dim);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 2rem;
    letter-spacing: -2px;
}

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

.hero p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Inter';
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: #111;
    border-color: white;
}

.center-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Stats Grid */
.stats-grid-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Scroller / Testimonials */
.testimonials {
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.scroller {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller-inner {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll linear infinite;
}

.scroller[data-direction="left"] .scroller-inner {
    animation-duration: 40s;
}

.scroller[data-direction="right"] .scroller-inner {
    animation-duration: 45s;
    animation-direction: reverse;
}

@keyframes scroll {
    to { transform: translateX(calc(-50% - 1rem)); }
}

.scroller img {
    height: 300px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Curriculum */
.curriculum {
    padding: 10rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 800;
    background: #111;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--primary);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

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

.c-card {
    padding: 3rem;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
}

.c-card:hover {
    border-color: var(--primary);
}

.c-num {
    font-family: 'Orbitron';
    font-size: 0.8rem;
    color: var(--primary);
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.c-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.c-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Banner Text */
.banner-text {
    padding: 8rem 0;
    text-align: center;
    background: white;
    color: black;
}

.banner-text h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

/* Roadmap */
.roadmap {
    padding: 10rem 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 5rem;
}

.r-item {
    padding: 3rem 2rem;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.r-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(242, 201, 76, 0.1);
}

.r-day {
    display: inline-block;
    font-family: 'Orbitron';
    font-size: 0.7rem;
    color: var(--primary);
    background: #111;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.r-item h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.r-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
}

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

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    padding: 10rem 0;
    text-align: center;
    background: var(--surface);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 5rem 3rem;
    border-radius: 12px;
    position: relative;
}

.p-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: black;
    padding: 0.5rem 1rem;
    font-weight: 900;
    font-size: 0.7rem;
    border-radius: 4px;
}

.pricing-card h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; }
.pricing-card p { color: var(--text-dim); margin-bottom: 3rem; }

.price-box {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.5rem;
}

.price-box .old {
    font-size: 2rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.price-box .new {
    font-size: 5rem;
    font-weight: 900;
    color: white;
}

.benefits {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 4rem;
}

.benefits li {
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits li::before {
    content: "→";
    color: var(--primary);
}

.btn-full { width: 100%; }

/* Guarantee */
.guarantee-box {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    border-radius: 12px;
    text-align: center;
}

.g-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guarantee-box h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.guarantee-box p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.g-note {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background: #111;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* Footer */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
}

footer p { font-size: 0.7rem; color: #444; }

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
}

@media (max-width: 900px) {
    .navbar { padding: 1.5rem 0; }
    .nav-links { display: flex; gap: 1rem; }
    .nav-links a:not(.cta-nav) { display: none; }
    .cta-nav { padding: 0.5rem 1rem; font-size: 0.7rem; }
    
    .hero { padding: 6rem 0; }
    .hero h1 { letter-spacing: -1px; }
    .hero-stats-top { flex-wrap: wrap; gap: 1rem; }
    
    .grid-wrap { grid-template-columns: 1fr; gap: 1rem; }
    .stat-card { padding: 1.5rem; border-bottom: 1px solid var(--border); }
    
    .curriculum-grid, .roadmap-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .c-card { padding: 2rem; }
    
    .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .banner-text h2 { font-size: 2rem; }
    
    .scroller img { height: 180px; }
}

@media (max-width: 600px) {
    .container { padding: 0 1.5rem; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    
    .pricing-card { padding: 3rem 1.5rem; }
    .price-box .new { font-size: 3.5rem; }
    .price-box .old { font-size: 1.5rem; }
    
    .banner-text { padding: 5rem 0; }
    .section-title { font-size: 2.2rem; }
    
    .footer-inner { flex-direction: column; gap: 2rem; }
}

/* Fix for scroller horizontal overflow on some devices */
.testimonials {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Smooth active area for pricing features on mobile */
.benefits {
    width: 100%;
    padding: 0 1rem;
}