:root {
    --bg: #020617;
    --surface: rgba(15, 23, 42, 0.92);
    --surface-strong: #0f172a;
    --text: #f8fafc;
    --muted: #94a3b8;
    --primary: #38bdf8;
    --primary-dark: #0ea5e9;
    --border: rgba(148, 163, 184, 0.18);
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}
/* redeploy test */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.08), transparent 30%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

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

.section {
    padding: 90px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-tag,
.tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(2, 6, 23, 0.72);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--muted);
    transition: 0.25s ease;
}

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

.menu-toggle {
    display: none;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
}

.hero {
    padding: 110px 0 90px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 40px;
    align-items: center;
}

.hero-text {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    margin: 0 auto 20px;
    max-width: 750px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: bold;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #00111b;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
}

.hero-card {
    position: relative;
}

.card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 60%);
    filter: blur(20px);
    z-index: 0;
}

.hero-box {
    position: relative;
    z-index: 1;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
}

.hero-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-box p {
    color: var(--muted);
    margin-bottom: 16px;
}

.hero-box ul {
    list-style: none;
}

.hero-box li {
    padding: 10px 0;
    border-top: 1px solid var(--border);
    color: var(--text);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.feature-card,
.contact-card,
.contact-form,
.about-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 360px;
    padding: 28px;
    border-radius: 24px;
    text-align: center;
    justify-items: center;
    background: linear-gradient(180deg,
            rgba(10, 18, 50, 0.96),
            rgba(5, 10, 30, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.product-copy {
    display: grid;
    grid-template-rows: 28px 64px 56px 36px 52px;
    align-content: start;
    flex-grow: 1;
}

.feature-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.feature-card .price {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.feature-card .desc {
    font-size: 0.95rem;
    opacity: 0.95;
}

.plan-note {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.45;
}

.feature-card .popular {
    font-size: 0.95rem;
    font-weight: 700;
    color: transparent;
    user-select: none;
}

.popular-note {
    color: #00ffaa;
    font-weight: 700;
}

.buy-plan-btn {
    width: 100%;
    margin-top: 24px;
    min-height: 54px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
}

.popular-card {
    position: relative;
    z-index: 2;
    transform: translateY(-10px);
    padding-top: 28px;
    background: linear-gradient(180deg,
            rgba(8, 24, 40, 0.98),
            rgba(5, 10, 30, 0.98));
    border: 1px solid rgba(0, 255, 170, 0.28);
    border-radius: 24px;
    box-shadow:
        0 0 0 1px rgba(0, 255, 170, 0.08),
        0 18px 45px rgba(0, 255, 170, 0.12);
    overflow: visible;
}

.popular-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(90deg,
            #14f195,
            #4de3c3,
            #9945ff,
            #14f195);
    background-size: 220% 220%;
    animation: popularBorderPulse 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.95;
}

.popular-card::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #14f195, #00ffaa);
    color: #00140d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow:
        0 10px 24px rgba(0, 255, 170, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    white-space: nowrap;
    z-index: 3;
}

@keyframes popularBorderPulse {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 6px rgba(20, 241, 149, 0.22));
    }

    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 14px rgba(153, 69, 255, 0.28));
    }

    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 6px rgba(20, 241, 149, 0.22));
    }
}

.license-result {
    min-height: 24px;
    margin-top: 12px;
    font-size: 14px;
    color: white;
    word-break: break-word;
    line-height: 1.5;
}

.license-result.success {
    color: #d1fae5;
}

.license-result.error {
    color: #fecaca;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.about-grid p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about-box {
    padding: 30px;
    display: grid;
    gap: 18px;
}

.stat {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--muted);
}

.about-section-wrap {
    text-align: center;
}

.about-heading {
    margin-bottom: 40px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-media {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}

.about-media .hero-card,
.about-media .about-gif {
    flex: 1 1 320px;
    max-width: 460px;
}

.about-gif {
    display: flex;
}

.about-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: var(--shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.contact-card,
.contact-form {
    padding: 28px;
}

.contact-card h3 {
    margin-bottom: 14px;
}

.contact-card p {
    color: var(--muted);
    margin-bottom: 10px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea,
.checkout-field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.checkout-field input::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.checkout-field input:focus {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-message {
    min-height: 24px;
    color: var(--primary);
    font-weight: bold;
}

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal.is-open {
    display: flex;
}

.checkout-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
}

.checkout-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    padding: 28px;
}

.checkout-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10000;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-modal__close:hover {
    background: rgba(255, 255, 255, 0.14);
}

.checkout-modal__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.checkout-modal__tag {
    display: inline-block;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.checkout-modal__content h3 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.checkout-modal__text {
    color: var(--muted);
}

.checkout-plan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.checkout-plan__label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}

.checkout-plan__price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
}

.checkout-field {
    display: grid;
    gap: 8px;
}

.checkout-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.checkout-field small {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.checkout-field input.input-error {
    border-color: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
    animation: errorPulse 0.4s ease;
}

@keyframes errorPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.checkout-message {
    min-height: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.checkout-message.success {
    color: #d1fae5;
}

.checkout-message.error {
    color: #fecaca;
}

.checkout-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.checkout-solana-wrap,
.checkout-paypal-wrap {
    width: 100%;
}

.checkout-paypal-wrap {
    min-height: 52px;
}

.checkout-paypal-wrap>div {
    width: 100%;
}

.solana-pay-btn {
    width: 100%;
    min-height: 55px;
    border: none;
    border-radius: 12px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #14f195 0%, #9945ff 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 10px 24px rgba(153, 69, 255, 0.28);
}

.solana-pay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(153, 69, 255, 0.34);
}

.solana-pay-btn:active {
    transform: translateY(0);
}

.solana-pay-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 10px 24px rgba(153, 69, 255, 0.18);
}

.solana-pay-btn__icon {
    font-size: 18px;
    line-height: 1;
}

.solana-pay-btn__text {
    line-height: 1;
}

.checkout-solana-wrap small {
    display: block;
    margin-top: 8px;
    text-align: center;
    color: #8b8b95;
    font-size: 13px;
}

.checkout-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #8b8b95;
    font-size: 13px;
}

.checkout-divider::before,
.checkout-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

#paypal-modal-button {
    width: 100%;
}

#paypal-modal-button>div {
    width: 100% !important;
}

.solana-pay-btn__logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.solana-pay-btn:hover .solana-pay-btn__logo {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.solana-pay-subtext {
    margin-top: 8px;
    font-size: 13px;
    color: #a1a1aa;
    text-align: center;
    line-height: 1.4;
}

.contact-header-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.discord-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.discord-cta-card {
    width: min(720px, 100%);
    padding: 36px 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(88, 101, 242, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(8, 12, 24, 0.98));
    border: 1px solid rgba(88, 101, 242, 0.28);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-cta-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.55), rgba(56, 189, 248, 0.25));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
}

.discord-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.14);
    color: #c7d2fe;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.discord-cta-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 14px;
    color: #ffffff;
}

.discord-cta-text {
    max-width: 620px;
    margin: 0 auto 22px;
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.7;
}

.discord-cta-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0 auto 28px;
    padding: 0;
    max-width: 460px;
    text-align: left;
}

.discord-cta-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #e2e8f0;
    position: relative;
    padding-left: 42px;
}

.discord-cta-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
    font-size: 0.78rem;
    font-weight: 800;
}

.discord-cta-btn {
    min-width: 240px;
    min-height: 56px;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(88, 101, 242, 0.35);
}

.discord-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(88, 101, 242, 0.42);
}

.discord-cta-note {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 0.92rem;
}

.about-discord-note {
    margin-top: 18px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 600;
}

.trust-strip {
    padding: 0 0 24px;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.trust-pill {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: #cbd5e1;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-feature-list {
    color: #cbd5e1;
}

.about-clean {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.about-clean__content,
.about-clean__stats {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-clean__content {
    padding: 32px;
}

.about-clean__content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.about-clean__text {
    color: var(--muted);
    max-width: 680px;
    line-height: 1.7;
}

.about-clean__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 18px;
}

.about-clean__benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #dbe4f0;
    font-size: 0.92rem;
    font-weight: 600;
}

.about-clean__note {
    margin-top: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.about-clean__stats {
    padding: 22px;
    display: grid;
    gap: 16px;
}

.about-clean__stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.about-clean__stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.about-clean__stat span {
    color: var(--muted);
}

@media (max-width: 1000px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .hero-content,
    .about-grid,
    .contact-grid,
    .about-clean {
        grid-template-columns: 1fr;
    }

    .about-media {
        max-width: 640px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        right: 4%;
        width: min(260px, 92vw);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid var(--border);
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
        flex-direction: column;
        gap: 14px;
    }

    .main-nav.show {
        display: flex;
    }

    .hero {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .section {
        padding: 70px 0;
    }

    .popular-card {
        transform: translateY(0);
    }

    .hero-proof {
        gap: 8px;
    }

    .hero-proof span {
        font-size: 0.85rem;
    }

    .about-media {
        gap: 16px;
    }

    .discord-cta-card {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .discord-cta-list {
        max-width: 100%;
    }

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

@media (max-width: 640px) {

    .about-clean__content,
    .about-clean__stats {
        padding: 22px;
        border-radius: 20px;
    }

    .about-clean__benefits {
        gap: 10px;
    }

    .about-clean__benefits span {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .checkout-modal__dialog {
        padding: 22px 18px;
    }

    .checkout-plan {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-plan__price {
        font-size: 1.2rem;
    }

    .product-copy {
        grid-template-rows: 28px auto auto auto auto;
    }

    .feature-card h3 {
        min-height: auto;
    }

    .popular-card::before {
        font-size: 10px;
        padding: 7px 12px;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 18px;
    }

    .about-heading {
        margin-bottom: 28px;
    }
}
.hero-text {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.75;
}

.hero-benefits {
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 24px;
    padding: 0;
}

.hero-benefits li {
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: #e2e8f0;
    font-weight: 600;
}

.hero-subtext {
    color: #cbd5e1;
    margin: 0 auto 28px;
    max-width: 560px;
    line-height: 1.7;
}
.discord-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.discord-cta-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}
.hero-benefits li {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(56, 189, 248, 0.15);
    color: #e2e8f0;
    font-weight: 600;

    transition: all 0.25s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* glow effect */
.hero-benefits li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(56, 189, 248, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* hover */
.hero-benefits li:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
}

.hero-benefits li:hover::before {
    opacity: 1;
}
.hero-benefits li {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(56, 189, 248, 0.15);

    cursor: pointer;
    transition: all 0.25s ease;
}

.benefit-title {
    font-weight: 600;
}

.benefit-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: all 0.3s ease;
    color: #94a3b8;
    margin-top: 8px;
    line-height: 1.5;
}

/* ACTIVE STATE */
.hero-benefits li.active {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

.hero-benefits li.active .benefit-content {
    max-height: 120px;
    opacity: 1;
}
.download-box {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.download-box input {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
}

.download-box input:focus {
    border-color: var(--primary);
}
.license-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.license-modal.is-open {
    display: flex;
}

.license-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
}

.license-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(500px, 100%);
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    padding: 28px;
}

.license-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-modal__close:hover {
    background: rgba(255, 255, 255, 0.14);
}

.license-modal__content {
    display: grid;
    gap: 16px;
}

.license-modal__tag {
    display: inline-block;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.license-modal__content h3 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.license-modal__text {
    color: var(--muted);
}

.license-field {
    display: grid;
    gap: 8px;
}

.license-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.license-field small {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.license-field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.license-field input:focus {
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.license-field input.input-error {
    border-color: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
}

.license-message {
    min-height: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.license-message.success {
    color: #d1fae5;
}

.license-message.error {
    color: #fecaca;
}

.license-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}
.install-info {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
}

.install-card {
    max-width: 700px;
    width: 100%;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.install-card h3 {
    margin-bottom: 14px;
}

.install-list {
    margin: 0;
    padding-left: 18px;
}

.install-list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
}
.btn-discord {
    min-width: 140px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: bold;
    transition: 0.25s ease;
    cursor: pointer;

    color: #ffffff;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(88, 101, 242, 0.42);
}
.price-per-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.22);
    color: #bae6fd;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}
.premium-card {
    position: relative;
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.08),
        0 18px 45px rgba(168, 85, 247, 0.18);
}

/* animated border glow */
.premium-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(90deg,
            #a855f7,
            #c084fc,
            #9333ea,
            #a855f7);
    background-size: 220% 220%;
    animation: premiumGlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    opacity: 0.95;
}

/* soft outer glow */
.premium-card::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

/* keep content above glow */
.premium-card>* {
    position: relative;
    z-index: 1;
}

@keyframes premiumGlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.25));
    }

    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 14px rgba(192, 132, 252, 0.35));
    }

    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.25));
    }
}