
:root {
    --bg: #09070d;
    --bg-soft: #100b16;
    --panel: rgba(21, 14, 29, .72);
    --panel-strong: rgba(27, 17, 37, .94);
    --line: rgba(255, 255, 255, .09);
    --text: #f8f3fb;
    --muted: #b9afc3;
    --pink: #ff4fb8;
    --pink-light: #ff8fd5;
    --violet: #9f5cff;
    --green: #63f5bd;
    --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 5%, rgba(255, 79, 184, .11), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(159, 92, 255, .11), transparent 34%),
        linear-gradient(180deg, #09070d 0%, #0d0912 50%, #08060b 100%);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }
.page-glow {
    position: fixed;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .11;
    pointer-events: none;
    z-index: -1;
}
.page-glow--one { background: var(--pink); top: -120px; left: -140px; }
.page-glow--two { background: var(--violet); right: -180px; top: 38%; }
.stars {
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: .25;
    pointer-events: none;
    background-image:
        radial-gradient(circle, #fff 0 1px, transparent 1.3px),
        radial-gradient(circle, #ff8fd5 0 1px, transparent 1.3px);
    background-size: 68px 68px, 107px 107px;
    background-position: 0 0, 32px 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(9, 7, 13, .72);
    backdrop-filter: blur(22px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 42px; height: 42px; display: grid; place-items: center;
    font-family: "Orbitron", sans-serif; font-weight: 700;
    background: linear-gradient(145deg, var(--pink), var(--violet));
    clip-path: polygon(50% 0, 92% 22%, 92% 76%, 50% 100%, 8% 76%, 8% 22%);
    box-shadow: 0 0 28px rgba(255,79,184,.36);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Orbitron", sans-serif; letter-spacing: .18em; font-size: 17px; }
.brand-copy small { color: #9d91a8; font-size: 8px; letter-spacing: .16em; margin-top: 6px; }
.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.main-nav a { color: #cfc5d7; font-size: 14px; transition: .25s ease; }
.main-nav a:hover { color: #fff; text-shadow: 0 0 16px rgba(255,79,184,.7); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.03); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; transition: .25s; }

.button {
    min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 13px; border: 1px solid transparent; font-size: 14px; font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 43px; padding: 0 19px; }
.button--primary {
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 12px 30px rgba(255,79,184,.25), inset 0 1px rgba(255,255,255,.35);
}
.button--primary:hover { box-shadow: 0 16px 36px rgba(255,79,184,.38); }
.button--ghost, .button--glass { border-color: var(--line); background: rgba(255,255,255,.035); backdrop-filter: blur(10px); }
.button--ghost:hover, .button--glass:hover { border-color: rgba(255,79,184,.45); box-shadow: 0 10px 30px rgba(255,79,184,.12); }

.hero { padding: 105px 0 90px; min-height: calc(100vh - 78px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--pink-light); display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; background: linear-gradient(90deg, var(--pink), transparent); }
.hero h1, .section-heading h2, .download-banner h2 {
    margin: 22px 0 22px; font-family: "Orbitron", sans-serif; line-height: 1.1; letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(46px, 6.1vw, 78px); }
.hero h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, #fff, var(--pink-light), #bd8fff); background-clip: text; }
.hero-copy > p { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--line); }
.trust-row div { display: grid; gap: 5px; }
.trust-row strong { font-family: "Orbitron", sans-serif; font-size: 18px; }
.trust-row span { color: #978b9f; font-size: 12px; }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.orbital { width: min(480px, 92vw); aspect-ratio: 1; position: relative; display: grid; place-items: center; }
.orbital::before {
    content: ""; position: absolute; inset: 14%; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,79,184,.15), rgba(159,92,255,.05) 45%, transparent 72%);
    filter: blur(8px);
}
.orbital-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.orbital-ring--one { inset: 5%; animation: spin 24s linear infinite; border-top-color: var(--pink); }
.orbital-ring--two { inset: 17%; animation: spinReverse 18s linear infinite; border-right-color: var(--violet); }
.orbital-ring--three { inset: 29%; border-color: rgba(255,79,184,.22); box-shadow: 0 0 45px rgba(255,79,184,.1); }
.shield {
    width: 175px; height: 205px; padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,.7), var(--pink), var(--violet));
    clip-path: polygon(50% 0, 92% 18%, 88% 72%, 50% 100%, 12% 72%, 8% 18%);
    filter: drop-shadow(0 22px 46px rgba(255,79,184,.28));
    z-index: 2;
}
.shield-inner {
    width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(180deg, #24152e, #110b17);
    clip-path: inherit;
}
.shield-lock { color: var(--pink-light); font-size: 34px; text-shadow: 0 0 20px rgba(255,79,184,.8); }
.shield strong { font-family: "Orbitron"; letter-spacing: .22em; margin-top: 15px; }
.shield small { color: #8f8298; letter-spacing: .18em; font-size: 8px; margin-top: 8px; }
.node { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 18px 6px rgba(255,79,184,.65); }
.node--1 { top: 10%; left: 48%; } .node--2 { top: 48%; right: 5%; } .node--3 { bottom: 14%; left: 20%; } .node--4 { top: 30%; left: 9%; }
.glass-card { border: 1px solid rgba(255,255,255,.11); background: rgba(19,12,27,.74); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.connection-card {
    position: absolute; right: 0; bottom: 62px; display: flex; align-items: center; gap: 13px;
    padding: 16px 18px; border-radius: 16px; min-width: 285px;
}
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(99,245,189,.8); }
.connection-card div:nth-child(2) { display: grid; gap: 4px; }
.connection-card small { color: #998da2; font-size: 10px; }
.connection-card strong { font-size: 13px; }
.connection-ping { margin-left: auto; color: var(--green); font-size: 11px; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .download-banner h2 { font-size: clamp(34px, 4vw, 52px); }
.section-heading p, .download-banner p { color: var(--muted); line-height: 1.75; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--split { max-width: none; display: flex; justify-content: space-between; align-items: end; }
.section-heading--split h2 { margin-bottom: 0; }
.live-badge { border: 1px solid rgba(99,245,189,.2); background: rgba(99,245,189,.05); color: #b6f7dd; padding: 11px 15px; border-radius: 999px; font-size: 12px; }
.live-badge span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 7px; box-shadow: 0 0 12px rgba(99,245,189,.8); }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
    padding: 30px 26px; min-height: 270px; border: 1px solid var(--line); border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(255,79,184,.36); box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.feature-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(255,79,184,.17), rgba(159,92,255,.12)); border: 1px solid rgba(255,79,184,.24); color: var(--pink-light); font-size: 24px; }
.feature-card h3 { margin: 25px 0 13px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.section--servers { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.servers-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(13,9,18,.76); box-shadow: var(--shadow); }
.server-map { height: 330px; position: relative; overflow: hidden; background: radial-gradient(circle at center, rgba(255,79,184,.12), transparent 56%), #0d0912; border-bottom: 1px solid var(--line); }
.map-grid {
    position: absolute; inset: -30%; transform: perspective(550px) rotateX(62deg) translateY(12%);
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 42px 42px;
}
.map-glow { position: absolute; width: 420px; height: 180px; border-radius: 50%; left: 50%; top: 52%; transform: translate(-50%,-50%); background: rgba(255,79,184,.16); filter: blur(65px); }
.map-title { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; z-index: 2; }
.map-title small { color: #a99eb1; }
.map-title strong { font-family: Orbitron; font-size: 30px; margin-top: 12px; }
.map-point { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--pink-light); box-shadow: 0 0 20px 8px rgba(255,79,184,.38); animation: pulse 2s ease-in-out infinite; }
.p1 { left: 27%; top: 40%; } .p2 { left: 43%; top: 32%; animation-delay: .3s; } .p3 { left: 55%; top: 48%; animation-delay: .7s; } .p4 { left: 71%; top: 35%; animation-delay: .5s; } .p5 { left: 80%; top: 58%; animation-delay: .9s; } .p6 { left: 36%; top: 66%; animation-delay: 1.2s; }
.server-list { display: grid; grid-template-columns: repeat(2, 1fr); }
.server-row { padding: 19px 24px; display: grid; grid-template-columns: 1fr 140px 70px; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.server-row:nth-child(odd) { border-right: 1px solid var(--line); }
.server-country { display: flex; align-items: center; gap: 13px; }
.flag { font-size: 25px; }
.server-country div { display: grid; gap: 4px; }
.server-country strong { font-size: 13px; }
.server-country small, .server-load span { color: #8f8498; font-size: 10px; }
.server-load { display: grid; gap: 7px; }
.load-bar { height: 4px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,.06); }
.load-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--violet), var(--pink)); border-radius: inherit; }
.server-ping { color: var(--green); font-size: 11px; text-align: right; }

.billing-toggle { width: max-content; margin: 0 auto 38px; padding: 5px; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: 14px; }
.billing-toggle button { border: 0; background: transparent; padding: 11px 19px; border-radius: 10px; color: #a99eb1; cursor: pointer; }
.billing-toggle button.active { color: #fff; background: linear-gradient(135deg, rgba(255,79,184,.2), rgba(159,92,255,.22)); }
.billing-toggle button span { color: var(--green); font-size: 10px; margin-left: 4px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; gap: 20px; }
.pricing-empty { grid-column: 1 / -1; padding: 50px 24px; border: 1px dashed var(--line); border-radius: 22px; color: var(--muted); text-align: center; }
.price-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.018)); }
.price-card--popular { border-color: rgba(255,79,184,.48); transform: translateY(-10px); box-shadow: 0 25px 80px rgba(255,79,184,.14); }
.popular-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 7px 14px; border-radius: 999px; background: linear-gradient(90deg, var(--pink), var(--violet)); font-size: 10px; font-weight: 800; white-space: nowrap; }
.price-card-top h3 { font-family: Orbitron; margin: 0 0 10px; font-size: 21px; }
.price-card-top p { color: var(--muted); font-size: 13px; min-height: 38px; }
.price { display: flex; align-items: flex-end; margin: 28px 0; }
.price .currency { font-size: 22px; margin: 0 5px 8px 0; color: var(--pink-light); }
.price strong { font-family: Orbitron; font-size: 46px; line-height: 1; }
.price small { color: #8e8397; margin: 0 0 7px 7px; font-size: 11px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.price-card li { color: #d9d1df; font-size: 13px; }
.price-card li span { color: var(--pink-light); margin-right: 10px; }
.price-card .button { width: 100%; }

.download-banner { padding: 48px 52px; border: 1px solid rgba(255,79,184,.22); border-radius: 28px; background: radial-gradient(circle at 85% 20%, rgba(255,79,184,.15), transparent 32%), linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); display: flex; align-items: center; justify-content: space-between; gap: 50px; overflow: hidden; }
.download-banner > div:first-child { max-width: 650px; }
.download-banner h2 { margin: 18px 0 14px; }
.platforms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; min-width: 310px; }
.platforms button { border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.035); padding: 14px 16px; cursor: pointer; transition: .25s; }
.platforms button:hover { border-color: rgba(255,79,184,.42); background: rgba(255,79,184,.08); }

.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 120px; }
.accordion { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); overflow: hidden; }
.faq-item button { width: 100%; border: 0; background: transparent; padding: 21px 23px; display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: pointer; font-weight: 700; }
.faq-item button span { color: var(--pink-light); font-size: 23px; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { margin: 0; padding: 0 23px 23px; color: var(--muted); line-height: 1.7; font-size: 13px; }
.faq-item.open button span { transform: rotate(45deg); }

.footer { border-top: 1px solid var(--line); padding: 70px 0 30px; background: rgba(5,4,7,.65); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-top p { color: var(--muted); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; padding: 42px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid h4 { margin: 0 0 8px; font-size: 13px; }
.footer-grid a { color: #978c9f; font-size: 12px; transition: .2s; }
.footer-grid a:hover { color: var(--pink-light); }
.footer-social div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-social div a { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: #706676; font-size: 11px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-status i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: 7px; box-shadow: 0 0 10px rgba(99,245,189,.8); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes pulse { 0%,100% { transform: scale(.8); opacity: .55; } 50% { transform: scale(1.25); opacity: 1; } }

@media (max-width: 1180px) {
    .header-action { display: none; }
    .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
    .main-nav {
        position: fixed; top: 79px; left: 20px; right: 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0;
        padding: 14px; background: rgba(14,9,19,.97); border: 1px solid var(--line); border-radius: 18px;
        transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .25s; box-shadow: var(--shadow);
    }
    .main-nav a { padding: 15px 14px; border-bottom: 1px solid var(--line); }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav.open { transform: none; opacity: 1; visibility: visible; }
}
.header-menu-compact .header-action { display: none; }
.header-menu-compact .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
.header-menu-compact .main-nav {
    position: fixed; top: 79px; left: 20px; right: 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px; background: rgba(14,9,19,.97); border: 1px solid var(--line); border-radius: 18px;
    transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .25s; box-shadow: var(--shadow);
}
.header-menu-compact .main-nav a { padding: 15px 14px; border-bottom: 1px solid var(--line); }
.header-menu-compact .main-nav a:last-child { border-bottom: 0; }
.header-menu-compact .main-nav.open { transform: none; opacity: 1; visibility: visible; }

@media (max-width: 980px) {
    .header-action { display: none; }
    .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
    .main-nav {
        position: fixed; top: 79px; left: 20px; right: 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0;
        padding: 14px; background: rgba(14,9,19,.97); border: 1px solid var(--line); border-radius: 18px;
        transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .25s; box-shadow: var(--shadow);
    }
    .main-nav a { padding: 15px 14px; border-bottom: 1px solid var(--line); }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav.open { transform: none; opacity: 1; visibility: visible; }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero-copy > p { margin-inline: auto; }
    .hero-actions, .trust-row { justify-content: center; }
    .hero-visual { min-height: 500px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .server-list { grid-template-columns: 1fr; }
    .server-row:nth-child(odd) { border-right: 0; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
    .price-card--popular { transform: none; }
    .download-banner { flex-direction: column; align-items: flex-start; }
    .platforms { width: 100%; min-width: 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 20px; }
    .faq-grid .section-heading { position: static; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 26px, 1180px); }
    .section { padding: 78px 0; }
    .hero { padding: 70px 0 40px; min-height: auto; }
    .hero h1 { font-size: 42px; }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .trust-row { gap: 22px; justify-content: space-between; }
    .hero-visual { min-height: 390px; }
    .orbital { width: 360px; }
    .shield { width: 125px; height: 150px; }
    .connection-card { left: 50%; right: auto; bottom: 16px; transform: translateX(-50%); min-width: min(300px, 92vw); }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .section-heading--split { display: block; }
    .live-badge { width: max-content; margin-top: 22px; }
    .server-map { height: 260px; }
    .map-title strong { font-size: 21px; text-align: center; }
    .server-row { grid-template-columns: 1fr 65px; padding: 16px; }
    .server-load { display: none; }
    .price-card { padding: 28px 23px; }
    .download-banner { padding: 34px 23px; }
    .platforms { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; }
}


/* Pricing page */
.nav-active { color: #fff !important; text-shadow: 0 0 16px rgba(255,79,184,.75); }
.pricing-hero { padding: 115px 0 68px; text-align: center; position: relative; overflow: hidden; }
.pricing-hero::before { content: ""; position: absolute; width: 760px; height: 330px; left: 50%; top: 20px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(255,79,184,.18), transparent 68%); filter: blur(15px); pointer-events: none; }
.pricing-hero-inner { position: relative; max-width: 920px; }
.pricing-hero .eyebrow { justify-content: center; }
.pricing-hero h1 { margin: 24px 0 22px; font-family: "Orbitron", sans-serif; font-size: clamp(43px, 6vw, 72px); line-height: 1.12; letter-spacing: -.04em; }
.pricing-hero h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, #fff, var(--pink-light), #c39aff); background-clip: text; }
.pricing-hero p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.75; }
.pricing-trust { margin-top: 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.pricing-trust span { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: #cec4d5; font-size: 12px; }
.pricing-page-section { padding-top: 45px; }
.pricing-billing { margin-bottom: 48px; }
.pricing-grid--page { gap: 24px; }
.price-card--detailed { padding: 38px 34px 34px; overflow: hidden; }
.price-card--detailed::before { content: ""; position: absolute; width: 220px; height: 220px; right: -110px; top: -110px; border-radius: 50%; background: rgba(255,79,184,.09); filter: blur(12px); }
.plan-badge { position: relative; width: max-content; margin-bottom: 25px; padding: 7px 11px; border-radius: 999px; border: 1px solid rgba(255,79,184,.22); background: rgba(255,79,184,.07); color: var(--pink-light); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.price-card--popular .plan-badge { background: linear-gradient(90deg, var(--pink), var(--violet)); color: #fff; border-color: transparent; }
.year-total { margin: -16px 0 22px; min-height: 18px; color: #918697; font-size: 11px; }
.device-pill { display: inline-flex; padding: 9px 13px; margin-bottom: 24px; border-radius: 10px; background: rgba(159,92,255,.09); border: 1px solid rgba(159,92,255,.16); color: #d8c6f5; font-size: 12px; font-weight: 700; }
.comparison-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 25px; background: rgba(13,9,18,.76); box-shadow: var(--shadow); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 19px 22px; border-bottom: 1px solid var(--line); text-align: center; font-size: 13px; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; width: 38%; }
.comparison-table thead th { padding-top: 25px; padding-bottom: 25px; font-family: "Orbitron", sans-serif; font-size: 14px; }
.comparison-table thead th small { display: block; margin-top: 8px; color: #94899d; font-family: "Manrope", sans-serif; font-size: 10px; }
.comparison-table tbody td:first-child { color: #d8d0dd; font-weight: 600; }
.comparison-table .compare-highlight { background: rgba(255,79,184,.055); border-left: 1px solid rgba(255,79,184,.15); border-right: 1px solid rgba(255,79,184,.15); }
.compare-yes { display: inline-grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(99,245,189,.1); color: var(--green); font-weight: 800; }
.compare-no { color: #5f5664; font-size: 18px; }
.comparison-table tfoot td { border-bottom: 0; padding-top: 25px; padding-bottom: 25px; }
.comparison-table tfoot .button { width: 100%; min-height: 43px; padding-inline: 12px; }
.benefit-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.025); overflow: hidden; }
.benefit-strip article { padding: 28px 24px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--line); }
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip article > span { font-family: "Orbitron"; color: var(--pink-light); font-size: 24px; }
.benefit-strip article div { display: grid; gap: 5px; }
.benefit-strip strong { font-size: 13px; }
.benefit-strip small { color: #8f8498; font-size: 10px; line-height: 1.5; }
.pricing-cta { padding: 52px; border: 1px solid rgba(255,79,184,.25); border-radius: 28px; background: radial-gradient(circle at 82% 10%, rgba(255,79,184,.19), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.pricing-cta h2 { margin: 17px 0 12px; font-family: "Orbitron"; font-size: clamp(30px, 4vw, 48px); }
.pricing-cta p { margin: 0; color: var(--muted); }
.pricing-cta .button { min-width: 180px; }
@media (max-width: 980px) {
    .benefit-strip { grid-template-columns: repeat(2, 1fr); }
    .benefit-strip article:nth-child(2) { border-right: 0; }
    .benefit-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
    .pricing-hero { padding: 80px 0 45px; }
    .pricing-hero h1 { font-size: 40px; }
    .pricing-hero p { font-size: 14px; }
    .pricing-billing { width: 100%; display: grid; grid-template-columns: 1fr; }
    .pricing-billing button { width: 100%; }
    .benefit-strip { grid-template-columns: 1fr; }
    .benefit-strip article { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .benefit-strip article:last-child { border-bottom: 0; }
    .pricing-cta { padding: 34px 24px; flex-direction: column; align-items: flex-start; }
    .pricing-cta .button { width: 100%; }
}

/* Documents page */
.documents-hero { padding: 110px 0 68px; position: relative; overflow: hidden; text-align: center; }
.documents-hero::before { content: ""; width: 760px; height: 320px; position: absolute; left: 50%; top: 5px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(255,79,184,.16), transparent 68%); filter: blur(16px); pointer-events: none; }
.documents-hero-inner { max-width: 850px; position: relative; }
.documents-hero .eyebrow { justify-content: center; }
.documents-hero h1 { margin: 22px 0 17px; font-family: "Orbitron"; font-size: clamp(48px, 7vw, 78px); }
.documents-hero p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.75; }
.documents-list-section { padding-top: 48px; }
.documents-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 18px; }
.document-card { min-height: 180px; padding: 27px; display: grid; grid-template-columns: 46px 1fr 24px; align-items: start; gap: 17px; border: 1px solid var(--line); border-radius: 21px; background: linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.015)); transition: transform .2s, border-color .2s, background .2s; }
.document-card:hover { transform: translateY(-3px); border-color: rgba(255,79,184,.34); background: linear-gradient(145deg, rgba(255,79,184,.065), rgba(255,255,255,.018)); }
.document-card-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,79,184,.25); border-radius: 13px; color: var(--pink-light); background: rgba(255,79,184,.07); font-family: "Orbitron"; font-size: 18px; }
.document-card h2 { margin: 2px 0 11px; font-size: 17px; }
.document-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.document-card > i { margin-top: 12px; color: var(--pink-light); font-style: normal; font-size: 18px; }
.document-detail-section { padding: 74px 0 105px; }
.document-back-link { display: inline-flex; margin-bottom: 22px; color: #a99fae; font-size: 11px; }
.document-back-link:hover { color: var(--pink-light); }
.document-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; align-items: start; gap: 22px; }
.document-article, .document-sidebar { border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(155deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.document-article { overflow: hidden; }
.document-article > header { padding: 45px 48px 38px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 90% 5%, rgba(255,79,184,.11), transparent 35%); }
.document-article h1 { margin: 19px 0 14px; font-family: "Orbitron"; font-size: clamp(30px, 4vw, 48px); line-height: 1.2; }
.document-article header > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.document-article header > small { display: block; margin-top: 18px; color: #756b7a; font-size: 9px; }
.document-content { padding: 42px 48px 55px; color: #cfc6d4; }
.document-content h2 { margin: 40px 0 15px; color: #f3edf6; font-family: "Orbitron"; font-size: 20px; line-height: 1.4; }
.document-content h2:first-child { margin-top: 0; }
.document-content h3 { margin: 30px 0 13px; color: #ebe3ef; font-size: 17px; }
.document-content p { margin: 0 0 19px; font-size: 14px; line-height: 1.9; }
.document-content ul { margin: 0 0 23px; padding-left: 22px; display: grid; gap: 10px; }
.document-content li { padding-left: 5px; font-size: 14px; line-height: 1.7; }
.document-content li::marker { color: var(--pink-light); }
.document-sidebar { padding: 24px; position: sticky; top: 98px; }
.document-sidebar > span { display: block; margin-bottom: 14px; color: #716778; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.document-sidebar nav { margin-bottom: 20px; display: grid; gap: 5px; }
.document-sidebar nav a { padding: 11px 12px; border: 1px solid transparent; border-radius: 10px; color: #aaa0b0; font-size: 11px; line-height: 1.45; }
.document-sidebar nav a:hover, .document-sidebar nav a.active { color: #fff; border-color: rgba(255,79,184,.17); background: rgba(255,79,184,.075); }
.document-sidebar .button { width: 100%; }
@media (max-width: 900px) {
    .document-detail-layout { grid-template-columns: 1fr; }
    .document-sidebar { position: static; }
}
@media (max-width: 640px) {
    .documents-hero { padding: 78px 0 45px; }
    .documents-hero h1 { font-size: 43px; }
    .documents-hero p { font-size: 15px; }
    .document-detail-section { padding-top: 45px; }
    .document-article > header, .document-content { padding: 30px 23px; }
    .document-content { padding-bottom: 40px; }
}

/* What is VPN page */
.vpn-hero { padding: 105px 0 90px; min-height: calc(100vh - 78px); display: flex; align-items: center; overflow: hidden; }
.vpn-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.vpn-hero-copy h1 { margin: 22px 0; font-family: "Orbitron", sans-serif; font-size: clamp(54px, 7vw, 88px); line-height: 1.05; letter-spacing: -.045em; }
.vpn-hero-copy h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, #fff, var(--pink-light), #bd8fff); background-clip: text; }
.vpn-hero-copy > p { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.vpn-quick-facts { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 33px; color: #cec4d5; font-size: 12px; }
.vpn-quick-facts span { display: inline-flex; align-items: center; gap: 7px; }
.vpn-quick-facts i { color: var(--green); font-style: normal; }
.vpn-hero-visual { min-height: 530px; display: grid; place-items: center; position: relative; }
.vpn-hero-visual::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: rgba(255,79,184,.13); filter: blur(90px); }
.vpn-visual-card { width: min(610px, 100%); padding: 45px 34px 24px; position: relative; border: 1px solid rgba(255,255,255,.11); border-radius: 28px; background: linear-gradient(145deg, rgba(29,18,39,.86), rgba(12,8,17,.9)); box-shadow: var(--shadow); overflow: hidden; }
.vpn-visual-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, #000, transparent 90%); pointer-events: none; }
.vpn-flow { min-height: 310px; position: relative; display: grid; grid-template-columns: 138px 1fr 138px; align-items: center; gap: 18px; }
.vpn-endpoint { min-height: 138px; padding: 19px 12px; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--line); border-radius: 20px; background: rgba(10,7,14,.87); }
.vpn-endpoint--server { border-color: rgba(255,79,184,.34); box-shadow: 0 0 36px rgba(255,79,184,.12); }
.vpn-endpoint-icon { width: 45px; height: 45px; margin-bottom: 13px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(145deg, rgba(255,79,184,.2), rgba(159,92,255,.15)); border: 1px solid rgba(255,79,184,.24); color: var(--pink-light); font-family: "Orbitron"; font-size: 18px; }
.vpn-endpoint strong { font-size: 12px; }
.vpn-endpoint small { margin-top: 6px; color: #8f8498; font-size: 9px; }
.vpn-tunnel { min-height: 135px; position: relative; display: grid; place-items: center; }
.vpn-tunnel::before { content: ""; position: absolute; left: -12px; right: -12px; height: 84px; border: 1px solid rgba(255,79,184,.22); border-radius: 999px; background: linear-gradient(90deg, rgba(159,92,255,.055), rgba(255,79,184,.14), rgba(159,92,255,.055)); box-shadow: inset 0 0 35px rgba(255,79,184,.08), 0 0 30px rgba(255,79,184,.06); }
.vpn-tunnel-line { position: absolute; left: -5px; right: -5px; top: 50%; height: 2px; background: linear-gradient(90deg, var(--violet), var(--pink-light), var(--violet)); box-shadow: 0 0 12px rgba(255,79,184,.65); }
.vpn-lock { width: 64px; height: 64px; position: relative; z-index: 2; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--pink), var(--violet)); box-shadow: 0 0 30px rgba(255,79,184,.45); font-size: 25px; font-weight: 800; }
.vpn-lock small { position: absolute; bottom: 9px; font-size: 7px; letter-spacing: .16em; }
.vpn-tunnel-label { position: absolute; top: calc(50% + 54px); color: #9c90a5; font-size: 9px; white-space: nowrap; }
.vpn-packet { position: absolute; top: calc(50% - 4px); z-index: 3; color: #fff; font-size: 8px; filter: drop-shadow(0 0 7px var(--pink)); animation: vpnPacket 2.6s linear infinite; }
.vpn-packet--two { animation-delay: -1.3s; }
.vpn-visual-status { min-height: 47px; position: relative; display: flex; align-items: center; justify-content: center; gap: 9px; border-top: 1px solid var(--line); color: #b6f7dd; font-size: 11px; }
.vpn-visual-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(99,245,189,.8); }
.vpn-explainer { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.vpn-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vpn-step { min-height: 310px; padding: 31px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.016)); }
.vpn-step::after { content: ""; position: absolute; width: 170px; height: 170px; right: -90px; bottom: -90px; border-radius: 50%; background: rgba(255,79,184,.07); filter: blur(8px); }
.vpn-step-number { position: absolute; top: 23px; right: 25px; color: rgba(255,255,255,.1); font-family: "Orbitron"; font-size: 30px; }
.vpn-step h3 { margin: 25px 0 13px; font-size: 19px; }
.vpn-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.vpn-benefits-section { background: radial-gradient(circle at 5% 50%, rgba(159,92,255,.09), transparent 28%); }
.vpn-benefits-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.vpn-benefits-grid > .section-heading { position: sticky; top: 120px; margin-bottom: 0; }
.vpn-benefits-grid > .section-heading .button { margin-top: 16px; }
.vpn-benefit-list { display: grid; }
.vpn-benefit { padding: 28px 0; display: grid; grid-template-columns: 56px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.vpn-benefit:first-child { padding-top: 0; }
.vpn-benefit:last-child { border-bottom: 0; }
.vpn-benefit > span { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(255,79,184,.23); border-radius: 13px; background: rgba(255,79,184,.07); color: var(--pink-light); font-family: "Orbitron"; font-size: 11px; }
.vpn-benefit h3 { margin: 1px 0 9px; font-size: 18px; }
.vpn-benefit p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.vpn-reality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vpn-reality-card { padding: 36px; border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.016)); }
.vpn-reality-card:first-child { border-color: rgba(99,245,189,.18); }
.vpn-card-state { display: inline-flex; padding: 7px 11px; border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.vpn-card-state--yes { color: var(--green); border: 1px solid rgba(99,245,189,.2); background: rgba(99,245,189,.06); }
.vpn-card-state--note { color: var(--pink-light); border: 1px solid rgba(255,79,184,.22); background: rgba(255,79,184,.07); }
.vpn-reality-card h3 { margin: 22px 0; font-size: 20px; }
.vpn-reality-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.vpn-reality-card li { color: #d9d1df; font-size: 13px; line-height: 1.6; }
.vpn-reality-card li span { display: inline-block; width: 23px; color: var(--pink-light); }
.vpn-reality-card:first-child li span { color: var(--green); }
.vpn-final-section { padding-top: 35px; }
@keyframes vpnPacket { 0% { left: 4%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 92%; opacity: 0; } }
@media (max-width: 980px) {
    .vpn-hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .vpn-hero-copy { text-align: center; }
    .vpn-hero-copy .eyebrow, .vpn-quick-facts, .vpn-hero-copy .hero-actions { justify-content: center; }
    .vpn-hero-copy > p { margin-inline: auto; }
    .vpn-hero-visual { min-height: 430px; }
    .vpn-benefits-grid { grid-template-columns: 1fr; gap: 35px; }
    .vpn-benefits-grid > .section-heading { position: static; }
}
@media (max-width: 640px) {
    .vpn-hero { padding: 75px 0 45px; min-height: auto; }
    .vpn-hero-copy h1 { font-size: 48px; }
    .vpn-hero-copy > p { font-size: 15px; }
    .vpn-quick-facts { justify-content: flex-start; padding-left: 5px; }
    .vpn-hero-visual { min-height: 390px; }
    .vpn-visual-card { padding: 28px 16px 18px; }
    .vpn-flow { min-height: 285px; grid-template-columns: 96px 1fr 96px; gap: 8px; }
    .vpn-endpoint { min-height: 118px; padding-inline: 6px; }
    .vpn-endpoint-icon { width: 38px; height: 38px; }
    .vpn-endpoint strong { font-size: 10px; }
    .vpn-endpoint small { font-size: 8px; }
    .vpn-tunnel::before { left: -5px; right: -5px; height: 67px; }
    .vpn-lock { width: 49px; height: 49px; font-size: 20px; }
    .vpn-lock small { bottom: 6px; }
    .vpn-tunnel-label { top: calc(50% + 42px); font-size: 7px; }
    .vpn-steps, .vpn-reality-grid { grid-template-columns: 1fr; }
    .vpn-step { min-height: auto; }
    .vpn-benefit { grid-template-columns: 48px 1fr; gap: 14px; }
    .vpn-reality-card { padding: 28px 23px; }
}

/* Support page */
.support-hero { padding: 105px 0 68px; position: relative; overflow: hidden; text-align: center; }
.support-hero::before { content: ""; position: absolute; width: 780px; height: 340px; left: 50%; top: 10px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(255,79,184,.17), transparent 68%); filter: blur(15px); pointer-events: none; }
.support-hero-inner { max-width: 900px; position: relative; }
.support-hero .eyebrow { justify-content: center; }
.support-hero h1 { margin: 23px 0 20px; font-family: "Orbitron", sans-serif; font-size: clamp(48px, 6.5vw, 78px); line-height: 1.08; letter-spacing: -.045em; }
.support-hero h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, #fff, var(--pink-light), #bc8fff); background-clip: text; }
.support-hero p { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.75; }
.support-main-section { padding-top: 55px; }
.support-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); gap: 24px; align-items: start; }
.support-form-card, .support-side-card, .public-ticket { border: 1px solid var(--line); border-radius: 25px; background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.017)); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.support-form-card { padding: 37px; }
.support-card-heading { margin-bottom: 29px; }
.support-card-heading h2 { margin: 16px 0 10px; font-family: "Orbitron"; font-size: 31px; }
.support-card-heading p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.support-form { display: grid; gap: 19px; }
.support-fields { display: grid; gap: 16px; }
.support-fields--two { grid-template-columns: repeat(2, 1fr); }
.support-fields--two > label, .support-fields--two > .support-field { grid-template-rows: 18px 50px; align-content: start; }
.support-field { display: grid; gap: 8px; color: #d5ccd9; font-size: 11px; font-weight: 700; }
.support-form label, .ticket-lookup-form label, .ticket-access-grid label { display: grid; gap: 8px; color: #d5ccd9; font-size: 11px; font-weight: 700; }
.support-label-text { min-height: 18px; display: flex; align-items: center; gap: 4px; color: #d5ccd9; }
.support-label-text i { color: var(--pink-light); font-style: normal; }
.support-form input, .support-form select, .support-form textarea, .ticket-lookup-form input, .ticket-access-grid input { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--text); background: rgba(255,255,255,.032); font: inherit; transition: border-color .2s, box-shadow .2s; }
.support-form input, .support-form select, .ticket-lookup-form input, .ticket-access-grid input { height: 50px; padding: 0 14px; }
.support-form textarea { min-height: 170px; padding: 14px; resize: vertical; line-height: 1.7; }
.support-form input::placeholder, .support-form textarea::placeholder, .ticket-lookup-form input::placeholder { color: #6f6575; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus, .ticket-lookup-form input:focus { border-color: rgba(255,79,184,.48); box-shadow: 0 0 0 3px rgba(255,79,184,.07); }
.support-form select { appearance: none; color-scheme: dark; background-color: #15101d; background-image: linear-gradient(45deg, transparent 50%, #95899d 50%), linear-gradient(135deg, #95899d 50%, transparent 50%); background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
.support-form select option { color: #f8f3fb; background: #15101d; }
.support-custom-select { height: 50px; position: relative; z-index: 12; }
.support-select-trigger { width: 100%; height: 50px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--text); background: #15101d; text-align: left; cursor: pointer; transition: border-color .2s, box-shadow .2s, background .2s; }
.support-select-trigger:hover, .support-select-trigger:focus, .support-custom-select.open .support-select-trigger { border-color: rgba(255,79,184,.55); background: #19111f; box-shadow: 0 0 0 3px rgba(255,79,184,.07); }
.support-select-trigger > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.support-select-trigger > i { width: 8px; height: 8px; flex: 0 0 auto; border-right: 1px solid #b9afc3; border-bottom: 1px solid #b9afc3; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.support-custom-select.open .support-select-trigger > i { transform: rotate(225deg) translate(-2px, -2px); }
.support-select-options { position: absolute; top: calc(100% + 7px); left: 0; right: 0; z-index: 100; padding: 7px; max-height: 265px; overflow-y: auto; border: 1px solid rgba(255,79,184,.35); border-radius: 13px; background: #120d17; box-shadow: 0 22px 55px rgba(0,0,0,.62), 0 0 30px rgba(255,79,184,.08); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-7px); transition: opacity .18s, visibility .18s, transform .18s; }
.support-custom-select.open .support-select-options { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.support-select-options button { width: 100%; min-height: 42px; padding: 10px 12px; display: flex; align-items: center; border: 0; border-radius: 9px; color: #cfc6d5; background: transparent; font-size: 11px; font-weight: 600; text-align: left; cursor: pointer; transition: color .18s, background .18s; }
.support-select-options button:hover, .support-select-options button:focus { outline: 0; color: #fff; background: rgba(255,79,184,.11); }
.support-select-options button.selected { color: #fff; background: linear-gradient(90deg, rgba(255,79,184,.2), rgba(159,92,255,.11)); }
.support-select-options button.selected::after { content: "✓"; margin-left: auto; color: var(--pink-light); font-weight: 800; }
.support-form-bottom { padding-top: 7px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.support-form-bottom p { max-width: 390px; margin: 0; color: #8f8498; font-size: 10px; line-height: 1.6; }
.support-form-bottom .button { min-width: 205px; }
.support-form .button:disabled { opacity: .45; pointer-events: none; }
.support-honeypot { width: 1px !important; height: 1px !important; position: absolute !important; left: -10000px !important; overflow: hidden !important; }
.support-sidebar { display: grid; gap: 18px; }
.support-side-card { padding: 28px; }
.support-side-card h3 { margin: 21px 0 9px; font-size: 19px; }
.support-side-card > p { margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.ticket-lookup-form { display: grid; gap: 14px; }
.ticket-lookup-form .button { width: 100%; margin-top: 4px; }
.support-side-card--accent { border-color: rgba(255,79,184,.24); background: radial-gradient(circle at 100% 0, rgba(255,79,184,.15), transparent 42%), rgba(255,255,255,.025); }
.support-side-card--accent h3 { margin-top: 19px; }
.support-side-card--accent ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 12px; }
.support-side-card--accent li { padding-left: 18px; position: relative; color: #bdb3c4; font-size: 11px; line-height: 1.6; }
.support-side-card--accent li::before { content: "◆"; position: absolute; left: 0; top: 1px; color: var(--pink-light); font-size: 7px; }
.support-online { color: #b6f7dd; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.support-online i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 11px rgba(99,245,189,.8); }
.support-alert { margin: 20px 0; padding: 16px 18px; border-radius: 13px; font-size: 12px; line-height: 1.65; }
.support-alert strong { color: inherit; }
.support-alert ul { margin: 7px 0 0; padding-left: 18px; }
.support-alert--error { border: 1px solid rgba(255,111,145,.22); background: rgba(255,111,145,.07); color: #ffc2d0; }
.support-alert--success { border: 1px solid rgba(99,245,189,.2); background: rgba(99,245,189,.065); color: #bdf9df; }
.support-inline-error { margin: -8px 0 15px; padding: 10px 12px; border-radius: 9px; background: rgba(255,111,145,.07); color: #ffb8c9; font-size: 10px; line-height: 1.55; }
.support-ticket-section { padding: 35px 0 20px; }
.public-ticket { padding: 37px; }
.public-ticket-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.public-ticket-head h2 { margin: 15px 0 9px; font-family: "Orbitron"; font-size: clamp(25px, 4vw, 38px); }
.public-ticket-head p { margin: 0; color: #8f8498; font-size: 10px; }
.ticket-status { display: inline-flex; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 800; white-space: nowrap; }
.ticket-status--new { color: var(--pink-light); border-color: rgba(255,79,184,.22); background: rgba(255,79,184,.07); }
.ticket-status--in_progress { color: #ffd095; border-color: rgba(255,180,95,.22); background: rgba(255,180,95,.07); }
.ticket-status--answered { color: var(--green); border-color: rgba(99,245,189,.2); background: rgba(99,245,189,.065); }
.ticket-status--closed { color: #9a909f; }
.ticket-access-grid { margin: 29px 0; padding: 20px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 14px; border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,.12); }
.ticket-access-grid input { height: 44px; color: #a99eb1; font-family: monospace; font-size: 11px; }
.ticket-thread { display: grid; gap: 14px; }
.ticket-message { max-width: 88%; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); }
.ticket-message--support { margin-left: auto; border-color: rgba(255,79,184,.23); background: rgba(255,79,184,.05); }
.ticket-message > div { display: flex; justify-content: space-between; gap: 20px; }
.ticket-message strong { font-size: 11px; }
.ticket-message span { color: #796f7e; font-size: 9px; }
.ticket-message p { margin: 13px 0 0; color: #cbc2d0; font-size: 13px; line-height: 1.75; overflow-wrap: anywhere; }
.ticket-waiting { padding: 16px; display: flex; align-items: center; justify-content: center; gap: 9px; border: 1px dashed var(--line); border-radius: 13px; color: #8f8498; font-size: 11px; }
.ticket-waiting span { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px rgba(255,79,184,.65); animation: pulse 2s ease-in-out infinite; }
@media (max-width: 900px) {
    .support-layout { grid-template-columns: 1fr; }
    .support-sidebar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .support-hero { padding: 75px 0 42px; }
    .support-hero h1 { font-size: 44px; }
    .support-hero p { font-size: 14px; }
    .support-form-card, .public-ticket { padding: 27px 20px; }
    .support-fields--two, .support-sidebar, .ticket-access-grid { grid-template-columns: 1fr; }
    .support-form-bottom { align-items: stretch; flex-direction: column; }
    .support-form-bottom .button { width: 100%; }
    .public-ticket-head { flex-direction: column; }
    .ticket-message { max-width: 100%; }
}
