:root {
    --bg-color: #030305;
    --bg-darker: #010102;
    --bg-card: #0a0a0e;
    --primary: #00e5ff;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --primary-dark: #0088cc;
    --secondary: #7000ff;
    --text: #ffffff;
    --text-muted: #8892b0;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 229, 255, 0.3);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 1px;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--primary-glow);
}

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

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

/* CSS Only Mobile Menu */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.glow-bg {
    position: absolute;
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(112, 0, 255, 0.05) 40%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.glow-bg-small {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.top-right { top: -200px; right: -200px; }
.bottom-left { bottom: -200px; left: -200px; }
.relative { position: relative; overflow: hidden; }

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.sub-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.2);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.trust-item {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.trust-icon {
    color: var(--primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 120px 20px;
}

.bg-darker {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-left { text-align: left; }

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* About Layout - New Modern Flex Style */
.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.about-text-content {
    flex: 1;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 10px var(--primary-glow);
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.about-feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.visual-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
}

.visual-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.v-stat {
    display: flex;
    flex-direction: column;
}

.v-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.v-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-bar-container {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 20px;
}

.visual-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.visual-footer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.visual-card-sub {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 3;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* Services List (Non-grid style) */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: default;
}

.service-row:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    background: linear-gradient(90deg, var(--bg-card), rgba(0, 229, 255, 0.03));
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    min-width: 40px;
}

.icon-small {
    font-size: 1.5rem;
}

.service-header h3 {
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.service-row p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-left: 60px;
}

/* Results Layout */
.results-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.03) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(0, 229, 255, 0.4);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.08) 0%, rgba(0,0,0,0) 100%);
}

.stat-box h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-box span {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Featured Result Card (Roblox Link) */
.featured-result-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(145deg, var(--bg-card), rgba(112, 0, 255, 0.05));
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-result-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0, 229, 255, 0.1);
}

.featured-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: #000;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.featured-result-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.featured-result-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.featured-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-action .arrow {
    transition: transform 0.3s ease;
}

.featured-result-card:hover .arrow {
    transform: translateX(8px);
}

.featured-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(112, 0, 255, 0.1) 40%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.6s ease;
}

.featured-result-card:hover .featured-glow {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Contact / CTA */
.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--bg-card), rgba(0, 229, 255, 0.05));
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 25px 40px;
    border-radius: 8px;
    min-width: 250px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-method h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.method-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-glow);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    font-size: 0.9rem;
    color: #aaa;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.95rem;
    background: var(--bg-darker);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    opacity: 0.8;
}

.footer-logo span {
    color: var(--primary);
}

/* Animations without JS (using CSS @keyframes for initial load) */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
}

@supports not (animation-timeline: view()) {
    .slide-up {
        animation: slideUpFallback 1s forwards;
    }
}

.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes fadeIn {
    from { opacity: 0; filter: blur(5px); }
    to { opacity: 1; filter: blur(0); }
}

@keyframes slideUpFallback {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Nav Toggle Logic */
.nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    .about-flex { flex-direction: column; gap: 50px; }
    .about-text-content { order: 2; }
    .about-visual { order: 1; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .service-row p { margin-left: 0; }
    .service-row:hover { transform: translateY(-5px); }
    .featured-result-card { padding: 30px 20px; }
}

@media (max-width: 768px) {
    .navbar { padding: 15px 5%; }
    .hamburger { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 3, 5, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px 5%;
        border-bottom: 1px solid var(--border);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .contact-card { padding: 40px 20px; }
    .contact-method { min-width: 100%; }
}
