:root {
  --bg: #07050d;
  --bg-2: #0c0815;
  --surface: rgba(16, 10, 29, .82);
  --surface-solid: #100a1d;
  --border: rgba(151, 71, 224, .34);
  --border-soft: rgba(151, 71, 224, .18);
  --purple: #9b3bf0;
  --purple-2: #c26cff;
  --magenta: #ec36dc;
  --cyan: #37e6d0;
  --text: #f7f1ff;
  --text-muted: #b7accd;
  --text-dim: #756a8c;
  --gradient: linear-gradient(115deg, #8e35ee 0%, #ec36dc 100%);
  --gradient-soft: linear-gradient(115deg, rgba(142, 53, 238, .15), rgba(236, 54, 220, .10));
  --max-width: 1240px;
  --radius: 18px;
  --header-height: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(140, 53, 238, .16), transparent 65%),
    radial-gradient(700px 500px at 100% 5%, rgba(236, 54, 220, .11), transparent 65%),
    linear-gradient(180deg, #07050d 0%, #090611 100%);
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

h1, h2, h3, .logo, .price-amount, .stat-num, .status-timer { font-family: Orbitron, Manrope, sans-serif; }

.wrap { width: min(100% - 48px, var(--max-width)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; border-radius: 6px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(7, 5, 13, .78);
  backdrop-filter: blur(16px) saturate(140%);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(201, 82, 255, .25);
}
.nav-links { display: flex; align-items: center; gap: 34px; margin-inline: auto; }
.nav-links a { position: relative; color: var(--text-muted); font-size: 13px; font-weight: 600; transition: color .2s ease; }
.nav-links a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; transform: scaleX(0); background: var(--gradient); transition: transform .2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-current { color: var(--text); }
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0 9px; background: transparent; border: 1px solid var(--border-soft); border-radius: 9px; }
.nav-toggle span { display: block; height: 2px; width: 100%; border-radius: 2px; background: var(--text-muted); transition: transform .2s ease, opacity .2s ease, background .2s ease; }
.nav-toggle:hover span { background: var(--text); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.language-switcher { position: relative; }
.language-trigger { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 8px 4px; color: var(--text-muted); background: transparent; border: 0; font-size: 13px; font-weight: 700; }
.language-trigger svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.language-trigger .chevron { width: 11px; height: 11px; transition: transform .2s ease; }
.language-switcher.is-open .chevron { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 155px; padding: 7px; visibility: hidden; opacity: 0; transform: translateY(-5px); background: rgba(14, 8, 25, .98); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.45); transition: opacity .16s ease, transform .16s ease, visibility .16s ease; }
.language-switcher.is-open .language-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.language-menu button { width: 100%; padding: 10px 11px; color: var(--text-muted); text-align: left; background: transparent; border: 0; border-radius: 8px; font-size: 12px; font-weight: 700; }
.language-menu button:hover, .language-menu button.is-active { color: var(--text); background: rgba(155,59,240,.12); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 11px 22px; border: 1px solid transparent; border-radius: 9px; color: var(--text); font-size: 13.5px; font-weight: 800; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--gradient); box-shadow: 0 8px 30px rgba(180, 51, 230, .18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(210, 50, 238, .36); }
.btn-ghost, .btn-outline { background: rgba(255,255,255,.015); border-color: var(--border); }
.btn-ghost:hover, .btn-outline:hover { border-color: var(--purple-2); background: rgba(155,59,240,.09); }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 8px 16px; font-size: 12px; }
.btn:disabled { cursor: not-allowed; opacity: .45; transform: none !important; box-shadow: none; }

/* Shared sections */
section { position: relative; padding: 88px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 17px; color: var(--purple-2); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow::before, .eyebrow::after { width: 5px; height: 5px; content: ""; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 10px rgba(236,54,220,.8); }
.section-head { margin-bottom: 44px; text-align: center; }
.section-title { font-size: 28px; line-height: 1.2; font-weight: 800; letter-spacing: .04em; }

/* Hero */
.hero { min-height: 590px; padding: 64px 0 42px; }
.hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 30px; }
.hero-copy { position: relative; z-index: 2; padding-left: 4px; }
.hero h1 { max-width: 580px; margin-bottom: 22px; font-size: clamp(42px, 5.1vw, 66px); line-height: 1.01; font-weight: 900; letter-spacing: -.02em; }
.hero h1 br + * { display: inline-block; }
.hero h1 { background: linear-gradient(180deg, #fff 0%, #e7d8ff 58%, #bc69ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 470px; margin-bottom: 28px; color: var(--text-muted); font-size: 15px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 25px; }
.hero-guarantee { display: flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 12px; font-weight: 600; }
.hero-guarantee svg { width: 15px; height: 15px; fill: none; stroke: var(--purple-2); stroke-width: 1.8; }
.hero-visual { position: relative; min-height: 510px; overflow: hidden; isolation: isolate; border: 0; background: radial-gradient(circle at 67% 28%, rgba(205,53,235,.22), transparent 26%), radial-gradient(circle at 40% 80%, rgba(107,43,219,.28), transparent 40%), linear-gradient(180deg, #0c0818 0%, #0d091a 54%, #15091e 100%); }
.hero-visual::before { position: absolute; inset: 0; z-index: 1; content: ""; background: linear-gradient(90deg, #07050d 0%, transparent 25%, transparent 100%), radial-gradient(circle at 70% 40%, transparent 0 22%, rgba(0,0,0,.2) 60%); pointer-events: none; }
.hero-visual::after { position: absolute; right: -20%; bottom: -30%; z-index: 1; width: 80%; height: 65%; content: ""; background: radial-gradient(circle, rgba(234,44,215,.24), transparent 68%); filter: blur(20px); pointer-events: none; }
.city-glow { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(226,49,218,.035) 34px 35px), linear-gradient(180deg, transparent 60%, rgba(233,52,219,.12)); }
.skyline { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .95; }
.figure-wrap picture { display: contents; }
.figure-wrap { padding-top: 15px; position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: flex-end; padding-right: 7%; pointer-events: none; }
.hero-figure { display: block; width: min(62%, 500px); height: auto; max-height: 112%; object-fit: contain; object-position: center bottom; transform: translate(2%, 2%); filter: drop-shadow(0 0 35px rgba(163,55,245,.32)); mix-blend-mode: screen; mask-image: linear-gradient(to bottom, transparent 0%, #000 7%, #000 88%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 7%, #000 88%, transparent 100%); }
.status-card { position: absolute; top: 24%; left: 20%; z-index: 4; width: 190px; padding: 18px 16px 20px; text-align: center; background: rgba(13,8,25,.76); border: 1px solid rgba(161,62,240,.5); border-radius: 13px; box-shadow: 0 0 40px rgba(132,46,222,.2), inset 0 0 30px rgba(154,59,240,.07); backdrop-filter: blur(10px); }
.status-label { margin-bottom: 11px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.status-ring { position: relative; display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 12px; border: 2px solid rgba(55,230,208,.42); border-radius: 50%; box-shadow: 0 0 24px rgba(55,230,208,.2), inset 0 0 16px rgba(55,230,208,.1); }
.status-ring::before { position: absolute; inset: -2px; content: ""; border: 2px solid transparent; border-top-color: var(--cyan); border-radius: 50%; animation: spin 3s linear infinite; }
.status-ring svg { width: 22px; height: 22px; fill: none; stroke: var(--cyan); stroke-width: 2; }
.status-timer { margin-bottom: 4px; font-size: 16px; font-weight: 800; letter-spacing: .04em; }
.status-sub { color: var(--text-dim); font-size: 9px; font-weight: 600; }
.speed-card { position: absolute; right: 8%; bottom: 7%; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 11px 15px; background: rgba(12,8,22,.78); border: 1px solid var(--border); border-radius: 10px; backdrop-filter: blur(8px); }
.speed-label { color: var(--text-dim); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.speed-graph { width: 74px; height: 22px; fill: none; stroke: var(--magenta); stroke-width: 1.6; stroke-linecap: round; }
.speed-value { color: var(--cyan); font-family: Orbitron, monospace; font-size: 18px; font-weight: 800; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Benefits */
.features { padding: 32px 0 82px; border-top: 1px solid rgba(151,71,224,.08); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { display: flex; gap: 14px; min-width: 0; padding: 8px 0; }
.feature-icon { display: grid; flex: 0 0 48px; place-items: center; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 13px; background: var(--gradient-soft); box-shadow: inset 0 0 20px rgba(159,56,237,.04); }
.feature-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--purple-2); stroke-width: 1.8; }
.feature-card h3 { margin-bottom: 6px; font-family: Manrope, sans-serif; font-size: 14px; font-weight: 800; }
.feature-card p { color: var(--text-muted); font-size: 12px; line-height: 1.55; }

/* Pricing */
.pricing { background: linear-gradient(180deg, transparent, rgba(155,59,240,.045) 45%, transparent); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 22px; }
.price-card { position: relative; display: flex; min-height: 310px; flex-direction: column; padding: 30px 26px; background: linear-gradient(180deg, rgba(17,11,31,.9), rgba(12,8,23,.92)); border: 1px solid var(--border); border-radius: 17px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-4px); border-color: rgba(194,108,255,.45); }
.price-card.featured { transform: translateY(-7px); border-color: var(--purple); background: linear-gradient(180deg, rgba(113,38,173,.22), rgba(17,10,29,.96) 55%); box-shadow: 0 0 48px rgba(157,52,239,.25), inset 0 0 32px rgba(155,59,240,.05); }
.price-card.featured:hover { transform: translateY(-11px); }
.badge-pop { position: absolute; top: -14px; left: 50%; padding: 6px 15px; transform: translateX(-50%); color: #fff; background: var(--gradient); border-radius: 999px; box-shadow: 0 8px 25px rgba(220,45,232,.34); font-size: 10px; font-weight: 800; letter-spacing: .06em; white-space: nowrap; }
.plan-name { margin-bottom: 12px; color: var(--text-muted); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; min-height: 48px; }
.price-amount { font-size: 31px; font-weight: 900; }
.price-per, .price-old { color: var(--text-dim); font-size: 12px; font-weight: 600; }
.price-old { text-decoration: line-through; }
.price-discount { padding: 3px 8px; color: var(--magenta); background: rgba(236,54,220,.1); border: 1px solid rgba(236,54,220,.27); border-radius: 6px; font-size: 10px; font-weight: 800; }
.price-feats { display: grid; gap: 10px; margin: 24px 0 25px; flex: 1; list-style: none; }
.price-feats li { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 12px; }
.check { color: var(--cyan); font-weight: 900; }
.pricing-note { margin-top: 24px; color: var(--text-dim); text-align: center; font-size: 11px; }

/* Servers */
.servers { padding-top: 82px; }
.server-top { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.server-top h2 { max-width: 560px; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.18; font-weight: 800; }
.server-live { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 11px; font-weight: 700; }
.server-live span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(55,230,208,.7); }
.map-box { position: relative; overflow: hidden; padding: 22px; border: 1px solid var(--border-soft); border-radius: 20px; background: radial-gradient(ellipse 700px 400px at 50% 45%, rgba(155,59,240,.13), transparent 67%), rgba(14,9,24,.72); }
.map-box svg { width: 100%; height: auto; min-height: 230px; }
.map-tooltip { position: absolute; top: 34%; right: 10%; min-width: 145px; padding: 11px 13px; background: rgba(11,7,20,.92); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 15px 35px rgba(0,0,0,.4); }
.country { margin-bottom: 3px; font-size: 11px; font-weight: 800; }
.ping { color: var(--text-dim); font-size: 10px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 22px; overflow: hidden; border: 1px solid var(--border-soft); border-radius: 16px; background: var(--border-soft); }
.stat-cell { display: flex; align-items: center; gap: 12px; min-height: 84px; padding: 18px; background: rgba(14,9,24,.92); }
.stat-cell svg { width: 25px; height: 25px; flex: 0 0 25px; fill: none; stroke: var(--purple-2); stroke-width: 1.7; }
.stat-num { margin-bottom: 2px; font-size: 19px; font-weight: 900; }
.stat-label { color: var(--text-dim); font-size: 10px; font-weight: 700; }

/* Security */
.security { padding-top: 82px; }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.security-card { padding: 26px; background: rgba(16,10,29,.84); border: 1px solid var(--border); border-radius: 15px; transition: transform .2s ease, border-color .2s ease; }
.security-card:hover { transform: translateY(-3px); border-color: rgba(194,108,255,.45); }
.security-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--gradient-soft); }
.security-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--purple-2); stroke-width: 1.8; }
.security-card h3 { margin-bottom: 8px; font-family: Manrope, sans-serif; font-size: 14px; font-weight: 800; }
.security-card p { color: var(--text-muted); font-size: 12.5px; line-height: 1.65; }

/* FAQ */
.faq { padding-top: 80px; }
.faq-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); gap: 20px; align-items: stretch; }
.faq-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-content: start; min-width: 0; }
.faq-item { align-self: start; overflow: hidden; background: rgba(16,10,29,.78); border: 1px solid var(--border); border-radius: 11px; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 15px; width: 100%; padding: 16px; color: var(--text); text-align: left; background: transparent; border: 0; font-size: 12px; font-weight: 700; }
.plus { display: grid; flex: 0 0 21px; place-items: center; width: 21px; height: 21px; border-radius: 6px; background: rgba(155,59,240,.11); transition: transform .2s ease, background .2s ease; }
.plus svg { width: 11px; height: 11px; fill: none; stroke: var(--purple-2); stroke-width: 2.5; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--gradient); }
.faq-item.open .plus svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 16px 16px; color: var(--text-muted); font-size: 11px; line-height: 1.6; }
.support-card { position: relative; display: flex; min-height: 100%; flex-direction: column; justify-content: center; overflow: hidden; padding: 28px; background: linear-gradient(145deg, rgba(18,11,32,.92), rgba(46,18,69,.78)); border: 1px solid var(--border-soft); border-radius: 14px; box-shadow: inset 0 0 30px rgba(155,59,240,.045); }
.support-card::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(181,101,247,.08), transparent 45%, rgba(232,63,212,.06)); pointer-events: none; }
.support-card::after { position: absolute; top: 18px; right: 18px; width: 7px; height: 7px; content: ""; border-radius: 50%; background: #37e6d0; box-shadow: 0 0 12px rgba(55,230,208,.7); }
.support-card > * { position: relative; z-index: 1; }
.support-card h3 { margin-bottom: 9px; font-size: 17px; letter-spacing: .06em; text-transform: uppercase; }
.support-card p { max-width: 260px; margin-bottom: 18px; color: var(--text-muted); font-size: 12px; line-height: 1.6; }
.support-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; max-width: 320px; }
.support-action { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 10px 12px; color: var(--text); text-decoration: none; background: rgba(12,8,22,.72); border: 1px solid var(--border); border-radius: 9px; font-size: 11px; font-weight: 800; letter-spacing: .03em; transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.support-action:hover { transform: translateY(-2px); border-color: var(--purple-2); background: rgba(155,59,240,.1); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.support-action-icon { display: grid; flex: 0 0 23px; place-items: center; width: 23px; height: 23px; color: var(--purple-2); border: 1px solid rgba(155,59,240,.35); border-radius: 6px; font-family: Orbitron, sans-serif; font-size: 10px; }
.support-action-email .support-action-icon { color: var(--magenta); border-color: rgba(232,63,212,.35); }
.support-email-address { display: inline-block; width: fit-content; margin-top: 10px; color: var(--text-dim); font-size: 10px; text-decoration: none; letter-spacing: .04em; }
.support-email-address:hover { color: var(--text); }
.payment-support-links { display: inline-flex; align-items: center; gap: 8px; margin-top: 5px; }
.payment-support-links a { color: var(--purple-2); text-decoration: none; }
.payment-support-links a:hover { color: var(--magenta); }


/* CTA + footer */
.cta-bar { padding-top: 70px; padding-bottom: 55px; }
.cta-box { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px; overflow: hidden; padding: 30px 34px; background: linear-gradient(115deg, rgba(115,39,183,.16), rgba(234,54,215,.09)); border: 1px solid var(--border-soft); border-radius: 17px; }
.cta-box::after { position: absolute; top: -50%; right: -10%; width: 45%; height: 180%; content: ""; background: radial-gradient(circle, rgba(233,54,216,.2), transparent 65%); pointer-events: none; }
.cta-left { position: relative; z-index: 1; display: flex; align-items: center; gap: 22px; }
.cta-logo { color: var(--purple-2); font-family: Orbitron, sans-serif; font-size: 20px; font-weight: 900; }
.cta-divider { width: 1px; height: 36px; background: var(--border); }
.cta-left h3 { margin-bottom: 4px; font-size: 16px; }
.cta-left p { color: var(--text-muted); font-size: 11px; }
.cta-box > .btn, .cta-actions { position: relative; z-index: 1; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer { padding: 25px 0 38px; color: var(--text-dim); text-align: center; font-size: 10px; }

/* Payment */
.payment-page { padding-top: 70px; }
.payment-head { margin-bottom: 32px; }
.payment-head p { margin-top: 10px; color: var(--text-muted); font-size: 13px; }
.payment-head strong { color: var(--text); }
.payment-card { width: min(100%, 520px); margin: 0 auto; padding: 30px; background: rgba(16,10,29,.9); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 25px 80px rgba(0,0,0,.25); }
.form-field label, .payment-methods legend { display: block; margin-bottom: 8px; color: var(--text); font-size: 12px; font-weight: 700; }
.form-field input[type="email"], .form-field input[type="password"] { width: 100%; min-height: 46px; padding: 11px 14px; color: var(--text); background: rgba(7,5,13,.55); border: 1px solid rgba(151,71,224,.25); border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input[type="email"]:focus, .form-field input[type="password"]:focus { border-color: var(--purple-2); box-shadow: 0 0 0 3px rgba(155,59,240,.09); }
.form-field input[type="email"].is-invalid, .form-field input[type="password"].is-invalid { border-color: #ff5e7a; }
.form-field + .form-field { margin-top: 16px; }
#reset-done p { color: var(--text); font-size: 13px; line-height: 1.6; }
#reset-done .btn { margin-top: 18px; }
.form-help, .payment-help { margin-top: 8px; color: var(--text-dim); font-size: 10px; line-height: 1.6; }
.form-error { margin-top: 6px; color: #ff6b85; font-size: 10px; }
.payment-methods { margin: 23px 0; padding: 0; border: 0; }
.payment-methods label { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; color: var(--text-muted); font-size: 12px; font-weight: 600; }
.payment-methods input { width: 16px; height: 16px; accent-color: var(--purple); }
.payment-help { margin-bottom: 0; text-align: center; }
.payment-help a { color: var(--cyan); font-weight: 700; }
.next-steps { padding-top: 72px; }
.next-steps .section-head { margin-bottom: 26px; }
.next-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.next-step-card { padding: 25px; background: rgba(16,10,29,.8); border: 1px solid var(--border); border-radius: 16px; transition: transform .2s ease, border-color .2s ease; }
.next-step-card:hover { transform: translateY(-3px); border-color: rgba(194,108,255,.45); }
.step-number { margin-bottom: 14px; color: var(--purple-2); font-family: Orbitron, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.step-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 17px; border: 1px solid var(--border); border-radius: 12px; background: var(--gradient-soft); }
.step-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--purple-2); stroke-width: 1.7; }
.next-step-card h2 { margin-bottom: 8px; font-family: Manrope, sans-serif; font-size: 15px; font-weight: 800; }
.next-step-card p { color: var(--text-muted); font-size: 11px; line-height: 1.65; }

/* Downloads */
.downloads-page { padding-top: 70px; }
.downloads-lead { max-width: 620px; margin: 12px auto 0; color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.notice-box { display: flex; align-items: flex-start; gap: 13px; max-width: 780px; margin: 0 auto 34px; padding: 16px 18px; background: rgba(236, 54, 220, .06); border: 1px solid rgba(236, 54, 220, .28); border-radius: 13px; }
.notice-icon { display: grid; flex: 0 0 22px; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--gradient); border-radius: 50%; font-family: Orbitron, sans-serif; font-size: 12px; font-weight: 800; }
.notice-box p { color: var(--text-muted); font-size: 12px; line-height: 1.65; }
.notice-box strong { color: var(--text); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }

.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 20px; }
.dl-card { display: flex; height: 100%; flex-direction: column; padding: 26px; background: linear-gradient(180deg, rgba(17, 11, 31, .9), rgba(12, 8, 23, .92)); border: 1px solid var(--border); border-radius: 17px; transition: transform .2s ease, border-color .2s ease; }
.dl-card:hover { transform: translateY(-3px); border-color: rgba(194, 108, 255, .45); }
.dl-card-featured { grid-row: span 2; border-color: var(--purple); background: linear-gradient(180deg, rgba(113, 38, 173, .22), rgba(17, 10, 29, .96) 55%); box-shadow: 0 0 48px rgba(157, 52, 239, .18), inset 0 0 32px rgba(155, 59, 240, .05); }
.dl-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.dl-icon { display: grid; flex: 0 0 46px; place-items: center; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: var(--gradient-soft); }
.dl-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--purple-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dl-card h2 { margin-bottom: 5px; font-family: Manrope, sans-serif; font-size: 15px; font-weight: 800; }
.dl-badge { display: inline-block; padding: 3px 9px; color: var(--text-dim); background: rgba(255, 255, 255, .03); border: 1px solid var(--border-soft); border-radius: 999px; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dl-badge-own { color: var(--cyan); background: rgba(55, 230, 208, .08); border-color: rgba(55, 230, 208, .3); }
.dl-card > p { margin-bottom: 20px; flex: 1; color: var(--text-muted); font-size: 12px; line-height: 1.65; }
.dl-card-featured > p { flex: 0 0 auto; }
.dl-card .btn svg { width: 15px; height: 15px; }
.dl-alt { margin-top: 12px; color: var(--text-dim); font-size: 10.5px; line-height: 1.6; text-align: center; }
.dl-alt a { color: var(--purple-2); font-weight: 700; }
.dl-alt a:hover { color: var(--magenta); }
.dl-note { margin-top: 20px; padding: 16px; background: rgba(7, 5, 13, .5); border: 1px solid var(--border-soft); border-radius: 12px; }
.dl-note-title { margin-bottom: 11px; color: var(--text); font-size: 11px; font-weight: 800; line-height: 1.5; letter-spacing: .05em; text-transform: uppercase; }
.dl-steps { display: grid; gap: 9px; margin: 0; padding-left: 17px; color: var(--text-muted); font-size: 11.5px; line-height: 1.6; }
.dl-steps li::marker { color: var(--purple-2); font-weight: 800; }
.dl-session-note { margin-top: 24px; color: var(--text-dim); text-align: center; font-size: 11px; }
.downloads-page .next-step-card h2 { margin-bottom: 14px; }

/* Blog */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 20px; color: var(--text-dim); font-size: 11px; font-weight: 700; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span { color: var(--text-dim); }
.blog-page { padding-top: 70px; }
.blog-lead { max-width: 620px; margin: 12px auto 0; color: var(--text-muted); font-size: 13px; line-height: 1.7; text-align: center; }
.blog-list { display: grid; gap: 18px; max-width: 760px; margin: 40px auto 0; }
.blog-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; background: linear-gradient(180deg, rgba(17,11,31,.9), rgba(12,8,23,.92)); border: 1px solid var(--border); border-radius: 17px; transition: transform .2s ease, border-color .2s ease; }
.blog-card:hover { transform: translateY(-3px); border-color: rgba(194,108,255,.45); }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--text-dim); font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.blog-card h2 { font-family: Manrope, sans-serif; font-size: 18px; font-weight: 800; line-height: 1.3; }
.blog-card h2 a { color: var(--text); }
.blog-card h2 a:hover { color: var(--purple-2); }
.blog-card > p { color: var(--text-muted); font-size: 13px; line-height: 1.7; }
.blog-card .btn { align-self: flex-start; margin-top: 6px; }

.article-page { padding-top: 70px; }
.article-head { max-width: 760px; margin: 0 auto 40px; }
.article-head h1 { font-size: clamp(24px, 3.4vw, 34px); line-height: 1.25; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; color: var(--text-dim); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.article-body { max-width: 760px; margin: 0 auto; color: var(--text-muted); font-size: 14.5px; line-height: 1.85; }
.article-body p { margin-bottom: 18px; }
.article-body h2 { margin: 40px 0 14px; color: var(--text); font-family: Manrope, sans-serif; font-size: 19px; font-weight: 800; line-height: 1.35; }
.article-body p:last-child { margin-bottom: 0; }
.article-foot { max-width: 760px; margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--border-soft); }

/* Responsive */
@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 1.1fr; gap: 10px; }
  .status-card { left: 12%; }
  .figure-wrap { padding-right: 1%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
}

@media (max-width: 900px) {
  :root { --header-height: 66px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 6px 24px 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: #0a0713;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  body.nav-open .nav-links { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav-links a { padding: 15px 2px; font-size: 14px; border-bottom: 1px solid var(--border-soft); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .hero { padding-top: 45px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; }
  .hero-visual { min-height: 470px; margin-top: 10px; }
  .status-card { left: 15%; }
  .faq-layout { grid-template-columns: 1fr; }
  .support-card { min-height: 220px; }
  .support-actions { max-width: none; }
  .support-action { min-height: 42px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .next-steps-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-card-featured { grid-row: auto; grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 32px, var(--max-width)); }
  section { padding: 68px 0; }
  .hero { padding-top: 32px; }
  .hero h1 { font-size: 42px; }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 320px; }
  .hero-visual { min-height: 410px; }
  .figure-wrap { padding-right: 0; }
  .hero-figure { width: 88%; max-height: 112%; transform: translate(4%, 2%); }
  .status-card { top: 16%; left: 4%; width: 165px; padding: 15px 12px 17px; }
  .speed-card { right: 3%; bottom: 5%; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured, .price-card.featured:hover { transform: none; order: -1; }
  .server-top { align-items: flex-start; flex-direction: column; }
  .map-tooltip { top: auto; right: 14px; bottom: 14px; }
  .security-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .cta-box { align-items: flex-start; flex-direction: column; padding: 25px; background: linear-gradient(165deg, rgba(115,39,183,.20), rgba(234,54,215,.07) 72%); }
  .cta-box::after { display: none; }
  .cta-left { align-items: flex-start; flex-direction: column; gap: 14px; }
  .cta-divider { width: 36px; height: 1px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 auto; }
  .payment-card { padding: 22px; }
  .blog-card { padding: 20px; }
  .dl-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .dl-card-featured { grid-column: auto; }
  .notice-box { margin-bottom: 26px; }
}

@media (max-width: 460px) {
  .logo { font-size: 20px; }
  .nav-right { gap: 7px; }
  .language-trigger { font-size: 11px; }
  .hero h1 { font-size: 35px; }
  .hero-visual { min-height: 360px; }
  .status-card { top: 13%; left: 3%; width: 145px; }
  .speed-card { padding: 9px 11px; gap: 8px; }
  .speed-graph { width: 58px; }
  .speed-value { font-size: 15px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { min-height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
