:root {
    --bg-dark: #0B1026;
    --bg-card: #151C38;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --accent-green: #4ADE80;
    --accent-blue: #60A5FA;
    --accent-purple: #8B5CF6;
    --gradient-aurora: linear-gradient(135deg, #4ADE80 0%, #60A5FA 50%, #8B5CF6 100%);

    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}


.btn-primary {
    background: var(--gradient-aurora);
    color: #000;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(74, 222, 128, 0.5);
}

.btn-outline {
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(74, 222, 128, 0.1);
}

.btn-text {
    font-weight: 600;
    margin-right: 15px;
}

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


.top-strip {
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.site-header {
    background: rgba(11, 16, 38, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-size: 0.95rem;
    color: var(--text-main);
}

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

.header-actions {
    display: flex;
    align-items: center;
}

.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}


.mobile-drawer {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-dark);
    transition: 0.3s;
    z-index: 999;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.hero-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    color: var(--accent-green);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 1rem 0;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-disclaimer-list {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.aurora-box {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 50%, #1a2c4e 0%, #0b1026 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(74, 222, 128, 0.1);
}

.aurora-glow {
    position: absolute;
    width: 150%;
    height: 100%;
    background: linear-gradient(60deg, rgba(74, 222, 128, 0.2), rgba(139, 92, 246, 0.3), transparent);
    filter: blur(40px);
    animation: drift 10s infinite alternate;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes drift {
    0% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(10%);
    }
}


.modes-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.mode-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mode-card.popular {
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.pop-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-purple);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

.tier-badge {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

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

.btn-text-arrow {
    color: var(--accent-green);
    font-weight: 600;
}


.steps-section {
    padding: 4rem 0;
}

.steps-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.step-item {
    flex: 1;
    padding: 1.5rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.logic-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.logic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.logic-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
}

.logic-card ul li {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
}

.check {
    color: var(--accent-green);
}


.rp-section {
    padding: 4rem 0;
    text-align: center;
}

.rp-intro {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--text-muted);
}

.rp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rp-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(21, 28, 56, 0) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rp-links a {
    color: var(--accent-blue);
    margin: 0 10px;
    font-size: 0.9rem;
    text-decoration: underline;
}


.contact-section {
    padding: 4rem 0;
    background: #080c1f;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}



@media (max-width: 768px) {

    .header-actions,
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-grid,
    .contact-wrapper,
    .logic-grid,
    .steps-container {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section {
    padding: 6rem 0;
    background: #080c1f;
    position: relative;
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}


.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}


.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}


.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}


.contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}


@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
    }
}

.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {

    .row {
        grid-template-columns: 2.1fr 1fr 1.55fr 1.55fr;
    }
}


.col-lg-4,
.col-lg-3,
.col-lg-2 {
    width: auto;
}


.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: .5rem;
}

.justify-content-center {
    justify-content: center;
}

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

.mt-5 {
    margin-top: 3rem;
}


@media (min-width: 992px) {
    .justify-content-lg-start {
        justify-content: flex-start;
    }
}

.site-footer {
    background: #0b111a;
    color: #a0b1c1;
    padding: 72px 0 34px;
}

.site-footer a {
    text-decoration: none;
}

.site-footer p {
    color: #a0b1c1;
    line-height: 1.75;
    margin: 0 0 18px;
    font-size: 16px;
}

.site-footer p:last-child {
    margin-bottom: 0;
}


.site-footer .footer-logo {
    color: #41d374;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: .2px;
    margin-bottom: 18px;
    text-shadow:
        0 0 18px rgba(65, 211, 116, .45),
        0 0 40px rgba(65, 211, 116, .18);
}


.site-footer .footer-heading {
    color: #b8c6d6;
    font-weight: 700;
    font-size: 24px;
    margin: 6px 0 18px;
}

.site-footer .footer-heading-blue {
    color: #58baf2;
    text-shadow:
        0 0 16px rgba(88, 186, 242, .45),
        0 0 34px rgba(88, 186, 242, .18);
}

.site-footer .footer-heading-green {
    color: #41d374;
    text-shadow:
        0 0 16px rgba(65, 211, 116, .40),
        0 0 34px rgba(65, 211, 116, .16);
}


.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin: 0 0 12px;
}

.site-footer .footer-links a {
    color: #0f70e5;
    font-weight: 500;
    font-size: 16px;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.site-footer .footer-links a:hover {
    color: #4aa0ff;
    transform: translateX(2px);
}


.site-footer .col-lg-3 .d-flex.flex-wrap {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 18px !important;
    align-items: flex-start;
    justify-content: flex-start;
}


.site-footer .footer-img {
    width: 150px;
    max-width: 150px;
    opacity: .95;
    transition: transform .2s ease, opacity .2s ease;
}

.site-footer .footer-img:hover {
    transform: translateY(-1px);
    opacity: 1;
}

.site-footer .footer-img-invert {
    filter: invert(1) brightness(1.15) contrast(1.05);
}


.site-footer .footer-bottom {
    margin-top: 60px;
    padding-top: 26px;
    border-top: 1px solid #1a4131;
    color: #8ea2b6;
    font-size: 15px;
}


@media (max-width: 991.98px) {
    .site-footer {
        padding: 56px 0 28px;
    }

    .site-footer .footer-logo {
        font-size: 32px;
    }

    .site-footer .footer-heading {
        font-size: 22px;
    }


    .site-footer .col-lg-3 .d-flex.flex-wrap {
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 44px 0 22px;
    }

    .site-footer .footer-logo {
        font-size: 28px;
    }

    .site-footer .footer-heading {
        font-size: 20px;
    }

    .site-footer p {
        font-size: 15px;
    }

    .site-footer .footer-bottom {
        font-size: 14px;
    }
}

.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #1a2c4e 0%, #0b1026 100%);
    padding: 2rem 0;
}

.auth-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.auth-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.forgot-pass {
    color: var(--accent-blue);
}

.full-width {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
}

.auth-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.auth-footer a {
    color: var(--accent-green);
    font-weight: 600;
}

.auth-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem;
    border-radius: 8px;
}

.legal-page-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page-content h1 {
    margin-bottom: 0.5rem;
    color: var(--accent-green);
    font-size: 2.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-blue);
    padding-left: 15px;
}

.legal-page-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

.legal-page-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.legal-page-content li {
    margin-bottom: 0.5rem;
    padding-left: 5px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box strong {
    color: #fff;
}

.legal-page-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page-content h1 {
    margin-bottom: 0.5rem;
    color: var(--accent-green);
    font-size: 2.5rem;
}

.effective-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-purple);
    padding-left: 15px;
}

.legal-page-content h3 {
    margin-top: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.legal-page-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

.legal-page-content ul,
.legal-page-content ol {
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.legal-page-content li {
    margin-bottom: 0.5rem;
    padding-left: 5px;
}

.warning-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.warning-box strong {
    color: #f87171;
}

.legal-page-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page-content h1 {
    margin-bottom: 0.5rem;
    color: var(--accent-green);
    font-size: 2.5rem;
}

.effective-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-page-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-green);
    padding-left: 15px;
}

.legal-page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.legal-page-content p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

.legal-page-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.legal-page-content li {
    margin-bottom: 0.5rem;
    padding-left: 5px;
}


.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-table th,
.cookie-table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-green);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.info-box {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box {
    background: rgba(74, 222, 128, 0.05);
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.myth-fact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.myth {
    color: #f87171;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.fact {
    color: var(--accent-green);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}


.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.resource-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.resource-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.resource-card a {
    color: var(--accent-green);
    text-decoration: underline;
    font-weight: 600;
}