:root {
    --bg-color: #0A0A0A;
    --surface-color: #141414;
    --surface-elevated: #1C1C1C;
    --border-color: #2A2A2A;
    --text-primary: #F5F5F5;
    --text-muted: #A3A3A3;
    --accent-color: #8B5CF6;
    --accent-bright: #A855F7;
    --accent-glow: rgba(139, 92, 246, 0.35);
    --success-color: #34D399;
    --error-color: #F87171;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow-x: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: min(600px, 100vw);
    max-width: 100%;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: -100px;
    right: 0;
}

.bg-glow-2 {
    background: radial-gradient(circle, var(--accent-bright) 0%, transparent 70%);
    bottom: 10%;
    left: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    min-height: 44px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--text-primary);
}

.navbar-actions,
.navbar-discord,
.menu-toggle {
    display: none;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 17px;
    cursor: pointer;
    touch-action: manipulation;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4A4A4A;
}

.logo-link:focus-visible,
.nav-link:focus-visible,
.navbar-discord:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid #C084FC;
    outline-offset: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-bright) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

.btn-discord {
    background: #5865F2;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    transform: translateY(-2px);
    background: #4752C4;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.discord-cta {
    min-width: 260px;
    padding: 14px 22px;
    margin-bottom: 20px;
}


/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(360px, 410px);
    justify-content: space-between;
    gap: 56px;
    align-items: center;
}

.hero-container > * {
    min-width: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #C084FC;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(46px, 4.1vw, 58px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #C084FC 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

/* Trust Pill Row */
.trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-pill i {
    color: var(--accent-bright);
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.product-proof {
    position: relative;
    width: min(410px, 100%);
    isolation: isolate;
}

.product-proof::before {
    content: "";
    position: absolute;
    inset: 11% -14% 2%;
    background: radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.28), rgba(37, 99, 235, 0.16) 42%, transparent 68%);
    filter: blur(4px);
    z-index: -2;
}

.proof-device {
    width: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 20, 0.98), rgba(9, 9, 11, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(139, 92, 246, 0.12);
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.proof-device::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%);
    pointer-events: none;
}

.proof-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    padding: 0 4px 10px;
    color: rgba(255, 255, 255, 0.8);
}

.proof-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 18px rgba(168, 85, 247, 0.75);
}

.proof-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.2px;
    color: #FFFFFF;
}

.proof-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.92) contrast(1.04);
}

.proof-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.58) 100%);
    pointer-events: none;
}

.proof-score {
    position: absolute;
    right: 14px;
    bottom: 14px;
    min-width: 118px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(7, 7, 9, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    column-gap: 3px;
    z-index: 2;
}

.proof-score-label {
    grid-column: 1 / -1;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    text-transform: uppercase;
    letter-spacing: 0;
}

.proof-score strong {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 0.92;
    color: var(--accent-bright);
}

.proof-score span:last-child {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
    padding-bottom: 4px;
}

.proof-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.9), transparent);
    z-index: 2;
    opacity: 0.75;
}

.proof-line-one {
    top: 31%;
}

.proof-line-two {
    top: 70%;
    opacity: 0.48;
}

.proof-result {
    margin-top: 12px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 14px;
}

.proof-kicker {
    display: block;
    color: var(--accent-bright);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.proof-result h3 {
    font-size: 22px;
    line-height: 1.05;
    margin: 0;
}

.proof-fix {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.4;
}

.proof-fix i {
    color: var(--accent-bright);
}

/* Section Header Styling */
.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.0px;
    margin-top: 12px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Simulator Section */
.simulator-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.simulator-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.simulator-layout > *,
.simulator-cards,
.sim-card,
.verdict-container {
    min-width: 0;
}

.simulator-cards {
    display: flex;
    gap: 24px;
}

.sim-card {
    flex: 1;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.sim-card-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    background-color: var(--surface-elevated);
}

.sim-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.sim-option-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

.sim-card-info {
    padding: 20px;
}

.sim-card-info h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.sim-card-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.sim-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.sim-card.active {
    border-color: var(--accent-bright);
    box-shadow: 0 0 25px var(--accent-glow);
}

.sim-card.active .sim-card-img {
    transform: scale(1.03);
}

/* Verdict Container (Glassmorphic) */
.verdict-container {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.verdict-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.verdict-kicker {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-bright);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.winner-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FBBF24;
    color: #0A0A0A;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

.animated-pulse {
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.verdict-scores {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 28px;
}

.verdict-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.score-num {
    font-size: 26px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.score-num.muted {
    color: var(--text-muted);
    font-weight: 600;
}

.verdict-score-divider {
    font-size: 14px;
    color: #444;
    font-weight: 700;
}

.verdict-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.verdict-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.verdict-improvements {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.imp-title {
    font-size: 12px;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.verdict-improvements ul {
    list-style: none;
}

.verdict-improvements li {
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.verdict-improvements li::before {
    content: "\f058"; /* FontAwesome Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-size: 13px;
    top: 2px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 36px;
    transition: all var(--transition-speed);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(30, 10, 45, 0.6) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 40px;
    padding: 64px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 50px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.5;
}

.cta-footer-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Footer Section */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--text-muted);
    font-size: 18px;
    transition: color var(--transition-speed);
}

.social-link:hover {
    color: var(--accent-bright);
}

.footer-copy {
    font-size: 12px;
    color: #555;
}

/* Responsive Queries */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-row {
        justify-content: center;
    }
    
    .simulator-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: max(12px, env(safe-area-inset-top)) 0 12px;
    }

    .navbar-container {
        flex-direction: row;
        gap: 12px;
    }

    .logo-link {
        gap: 8px;
        min-width: 0;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 0;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .navbar-discord {
        display: inline-flex;
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        gap: 4px;
        padding: 8px;
        background: rgba(20, 20, 20, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 6px;
        color: var(--text-primary);
        font-size: 16px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-discord-link {
        display: none;
    }

    .hero-section {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .simulator-cards {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 112px;
    }

    .discord-cta {
        width: 100%;
        min-width: 0;
    }

    .simulator-layout {
        gap: 28px;
    }

    .verdict-container {
        padding: 24px 20px;
        border-radius: 24px;
    }
    
    .product-proof {
        width: min(360px, 100%);
    }

}

@media (max-width: 360px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-discord {
        width: 44px;
        padding: 0;
    }

    .navbar-discord span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-links,
    .menu-toggle {
        transition: none;
    }
}
