/* Modern Reset & Variables */
:root {
    --primary: #00f2ff;
    --primary-dim: #0099a3;
    --primary-glow: rgba(0, 242, 255, 0.4);
    --bg-dark: #000000;
    --bg-panel: #050505;
    --bg-card: rgba(10, 10, 10, 0.8);
    --bg-card-hover: rgba(15, 15, 15, 1);
    --text-main: #ffffff;
    --text-muted: #8899a6;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 242, 255, 0.3);
    --font-main: 'Roboto', sans-serif;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dim) var(--bg-dark);
}

body {
    font-family: var(--font-main);
    background-color: #000000;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

/* Add grid lines and dynamic cyan edge glow */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 0% 50%, rgba(0, 242, 255, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(0, 242, 255, 0.18) 0%, transparent 50%);
    background-color: #000000;
    background-size: 100% 100%, 100% 100%;
}

@keyframes bgFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(3%, 5%) scale(1.1) rotate(5deg);
    }

    66% {
        transform: translate(-2%, 8%) scale(0.95) rotate(-5deg);
    }

    100% {
        transform: translate(-3%, 2%) scale(1.05) rotate(0deg);
    }
}

/* Typography & Utility */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 60ch;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--transition);
}

.text-gradient {
    color: var(--primary);
    display: inline-block;
}

.container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: #000000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary);
}

.btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--text-main);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-center {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .status-badge {
    margin: 0;
}

.hero-content h1 {
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}



.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}



/* Hero Footer / Social Proof */
.hero-footer-row {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.pro-verified-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: var(--radius);
}

.pro-icon {
    color: var(--primary);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--primary));
}

.pro-info {
    display: flex;
    flex-direction: column;
}

.pro-info .label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.pro-info .sub {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

.v-divider {
    height: 40px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.rating-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-group .stars {
    margin: 0;
    font-size: 0.8rem;
    color: var(--primary);
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Features Grid */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    background: transparent;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
}

/* Benchmarks */
.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benchmark-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-container {
    margin-bottom: 1.5rem;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bar-bg {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: rgba(0, 242, 255, 0.15);
    /* cyan grey */
    border-radius: var(--radius);
    transition: width 1s ease-out;
}

.bar-fill.optimized {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.gain-badge {
    text-align: right;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 2rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.review-header h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.verified {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stars {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* CTA Box */
.final-cta {
    padding: 6rem 0;
}

.cta-box {
    background: #000000;
    border: 1px solid var(--border);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 5rem 0;
    background: #000000;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-muted);
}

.social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- Why Choose Us Section --- */

.why-choose-us-section {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-box {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: #0a0a0c;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* --- CSS Animated Dial --- */
.css-dial {
    position: relative;
    width: 65%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #1a1a1c 0%, #111 100%);
    box-shadow:
        0 0 0 6px #080808,
        0 0 0 24px #1c1c1e,
        inset 0 0 30px rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.dial-ring {
    position: absolute;
    width: 90%;
    height: 90%;
    background: repeating-conic-gradient(transparent 0deg 3deg,
            rgba(255, 255, 255, 0.8) 3deg 12deg);
    border-radius: 50%;
    -webkit-mask: radial-gradient(transparent 62%, black 63%);
    mask: radial-gradient(transparent 62%, black 63%);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.dial-core {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dial-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16%;
    height: 16%;
    background: #111;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.05);
    border: 3px solid #1a1a1a;
}

.dial-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: var(--primary);
    border-radius: var(--radius);
    z-index: 5;
    box-shadow: 0 0 12px var(--primary);
}

.hand-main {
    width: 6px;
    height: 38%;
    margin-left: -3px;
    /* Centering */
    animation: sweepSpeed 4s cubic-bezier(0.8, 0, 0.2, 1) infinite alternate;
}

.hand-sub {
    width: 6px;
    height: 25%;
    margin-left: -3px;
    opacity: 0.6;
    animation: sweepSlow 12s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes sweepSpeed {
    0% {
        transform: rotate(-110deg);
    }

    20% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-40deg);
    }

    60% {
        transform: rotate(80deg);
    }

    80% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(110deg);
    }
}

@keyframes sweepSlow {
    0% {
        transform: rotate(-50deg);
    }

    100% {
        transform: rotate(60deg);
    }
}

.services-content {
    display: flex;
    flex-direction: column;
}

.theme-subtitle {
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-main-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.theme-highlight-title {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.services-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 100%;
}

.services-description strong {
    color: #ffffff;
    font-weight: 600;
}

.service-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-horizontal-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition) all 0.3s;
}

.service-horizontal-card:hover {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(0, 242, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon.theme-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-horizontal-card:hover .card-icon.theme-icon {
    background: var(--primary);
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.card-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
    color: #fff;
    font-weight: 700;
}

.card-text p {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */

/* Responsive Adjustments */
@media (max-width: 968px) {
    .hero-center {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content a.btn {
        width: auto;
    }

    .hero-content .status-badge {
        margin: 0 auto;
    }

    .hero-visual {
        /* On mobile, we might want to hide it or stack it nicely. 
           The reference has it prominently. Let's keep it but scale it down. */
        transform: rotate(0deg);
        margin-top: 2rem;
    }

    .collage-wrapper {
        max-width: 100%;
        transform: rotate(5deg);
        /* Slight tilt on mobile */
    }

    .collage-item:nth-child(n) {
        transform: none;
        /* Reset offsets on mobile */
    }

    .features-container,
    .reviews-grid,
    .benchmark-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-content,
    .services-visual {
        text-align: left;
    }

    .services-visual {
        margin-bottom: 2rem;
    }


    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .nav-links {
        display: none;
    }
}