@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
    --neon-green: #00FF88;
    --electric-cyan: #2EE7FF;
    --carbon-black: #0C0F11;
    --dark-graphite: #171A1D;
    --soft-gray: #A5B2C3;
    --glass: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: radial-gradient(circle at 20% 20%, #101417, var(--carbon-black));
    color: var(--soft-gray);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--neon-green);
    color: var(--carbon-black);
}

main {
    position: relative;
    z-index: 2;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
    padding: 4rem 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(12, 15, 17, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

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

.logo-mark {
    display: block;
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: var(--soft-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--neon-green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(120deg, var(--neon-green), var(--electric-cyan));
    color: var(--carbon-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 30px rgba(46, 231, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn:hover::after {
    opacity: 1;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.hero {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulse 12s infinite alternate;
}

.hero::after {
    background: radial-gradient(circle, rgba(46, 231, 255, 0.4), transparent 70%);
    top: 10%;
    right: -10%;
}

.hero::before {
    bottom: -20%;
    left: -10%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

.hero p {
    font-size: 1.2rem;
    color: var(--soft-gray);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero .cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    list-style: none;
    margin: 2rem auto 0;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.hero-stats li {
    color: var(--soft-gray);
}

.hero-stats strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.glass-panel {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

.section-title span {
    display: inline-block;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
}

.section-title h2 {
    color: white;
    font-size: 2.2rem;
}

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

.feature-card {
    padding: 1.75rem;
    border-radius: 20px;
    background: rgba(15, 18, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.25);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

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

.pricing-card {
    background: rgba(15, 18, 21, 0.95);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background: linear-gradient(120deg, rgba(0,255,136,0.5), rgba(46,231,255,0.5));
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card .badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--neon-green);
}

.pricing-card h3,
.pricing-card h4 {
    color: white;
}

.pricing-price {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--neon-green);
}

.pricing-details {
    list-style: none;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: 18px;
    background: rgba(14, 17, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    color: white;
    border: none;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 1.2rem;
}

.cta-bar {
    width: min(1100px, 92%);
    margin: 0 auto 4rem;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(0, 255, 136, 0.15), rgba(46, 231, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 1.5rem;
    backdrop-filter: blur(12px);
}

.cta-bar h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.cta-bar-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(13, 16, 19, 0.9);
    border-radius: 20px;
    overflow: hidden;
}

thead {
    background: rgba(0, 0, 0, 0.4);
}

td, th {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

tr:hover {
    background: rgba(0, 255, 136, 0.08);
}

.highlight {
    background: rgba(0, 255, 136, 0.15);
}

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

input,
textarea,
select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 15px rgba(46, 231, 255, 0.3);
}

textarea {
    min-height: 150px;
}

.form-status {
    margin-top: 1rem;
    min-height: 1.25rem;
    color: var(--soft-gray);
    font-size: 0.95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

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

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.6rem;
}

.contact-list span {
    color: var(--electric-cyan);
    font-weight: 500;
}

.contact-list a {
    color: white;
    text-decoration: none;
}

.custom-plan-info {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.custom-plan-info p {
    color: var(--soft-gray);
    margin-top: 0.6rem;
}

.ticket-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 15, 17, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.ticket-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.ticket-modal-content {
    background: rgba(15, 18, 22, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.2rem;
    text-align: center;
    max-width: 360px;
    width: min(90%, 360px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.ticket-modal-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.ticket-modal-content p {
    margin-bottom: 1.2rem;
}

.ticket-modal .btn {
    width: 100%;
}

footer {
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
}

.footer-links a {
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 0.95rem;
}

.discord-link {
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 600;
}

.section {
    margin-top: 4rem;
}

.glow-border {
    border: 1px solid rgba(0,255,136,0.4);
    box-shadow: 0 0 25px rgba(0,255,136,0.3);
}

.wave {
    position: absolute;
    width: 120%;
    height: 200px;
    background: linear-gradient(120deg, rgba(0,255,136,0.3), rgba(46,231,255,0.25));
    top: 20%;
    left: -10%;
    filter: blur(60px);
    opacity: 0.5;
    animation: wave 15s infinite alternate;
    z-index: 1;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1.05);
    }
}

@keyframes wave {
    from { transform: translateY(-30px); }
    to { transform: translateY(30px); }
}

@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}
