:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --bg: #f8fafc;
  --fg: #0f172a;
  --muted: #475569;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-2: rgba(255, 255, 255, 0.8);
  --border: rgba(148, 163, 184, 0.28);
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

html.dark {
  --bg: #0b1220;
  --fg: #e2e8f0;
  --muted: #94a3b8;
  --surface: rgba(15, 23, 42, 0.78);
  --surface-2: rgba(15, 23, 42, 0.66);
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--fg);
  background: radial-gradient(1200px 520px at 18% 20%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(1100px 540px at 82% 30%, rgba(96, 165, 250, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg));
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  min-height: 100%;
  padding: 0 24px 24px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.topbar-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  padding: 16px 24px 10px;
  color: #fff;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  text-decoration: none;
}

.logo {
  display: block;
  width: 44px;
  height: 44px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}

.top-nav-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.top-nav-link.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.top-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.top-download-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
  border-color: rgba(37, 99, 235, 0.58);
}

.lang-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(15, 23, 42, 0.25);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(15, 23, 42, 0.4);
}

@media (max-width: 1080px) {
  .topbar-left {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-nav {
    width: 100%;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 12px 14px 10px;
  }

  .top-nav {
    gap: 6px;
  }

  .top-nav-link {
    padding: 7px 8px;
    font-size: 12px;
  }

  .top-download-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.subpage .topbar-wrap {
  position: sticky;
  top: 0;
}

.subpage .topbar {
  color: var(--fg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.subpage .brand-name {
  color: var(--fg);
}

.subpage .top-nav-link {
  color: var(--muted);
}

.subpage .top-nav-link:hover {
  color: var(--brand);
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.1);
}

.subpage .top-nav-link.is-active {
  color: var(--brand);
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.12);
}

.subpage .lang-btn {
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--fg);
}

.subpage .lang-btn:hover {
  border-color: rgba(37, 99, 235, 0.32);
  background: rgba(37, 99, 235, 0.1);
}

.banner {
  width: 100%;
  border: 1px solid rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  border-radius: 0;
  padding: 10px 24px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 14px 42px rgba(220, 38, 38, 0.18);
}

html.dark .banner {
  background: rgba(220, 38, 38, 0.88);
}

.section {
  margin-top: 18px;
}

@media (min-width: 768px) {
  .section {
    margin-top: 26px;
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.guard-section {
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.pad {
  padding: 18px;
}

@media (min-width: 768px) {
  .pad {
    padding: 22px;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.center {
  text-align: center;
}

.mt-12 {
  margin-top: 12px;
}

.mt-14 {
  margin-top: 14px;
}

.gap-0 {
  gap: 0;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.kicker {
  color: var(--brand);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

h2 {
  margin: 8px 0 0 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.muted {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.hero {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 100vh;
  padding: 160px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #0b1220 55%, #000);
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.35);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: #fde68a;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-kicker {
  color: rgba(147, 197, 253, 0.95);
  font-weight: 900;
  font-size: 13px;
}

.hero-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  font-weight: 900;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

.hero-cta.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.26);
}

.hero-cta.primary:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.32);
}

.hero-cta.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.hero-cta.secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-cta .icon {
  width: 18px;
  height: 18px;
}

.hero-cta .icon-lg {
  width: 20px;
  height: 20px;
}

.hero-cta .icon-sm {
  width: 16px;
  height: 16px;
}

@media (min-width: 960px) {
  .hero {
    padding: 200px 32px 90px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}

.highlight-title {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.4;
}

.highlight-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.two-col {
  display: grid;
  gap: 12px;
}

@media (min-width: 960px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 18px;
  }
}

.h-320 {
  height: 320px;
}

.media-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  display: grid;
  gap: 10px;
}

.list-item {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.65;
}

.refund-media {
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.9);
}

html.dark .refund-media {
  background: rgba(15, 23, 42, 0.28);
}

.refund-media img {
  height: 260px;
  width: auto;
}

.speed-media {
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: #000;
}

.speed-media video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 959px) {
  .refund-media,
  .speed-media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

.speed-badge {
  display: inline-flex;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.22);
}

.speed-title {
  margin: 12px 0 0 0;
  font-size: 18px;
  font-weight: 900;
}

.plan {
  overflow: hidden;
}

.plan-video {
  background: #000;
}

.plan-video video {
  display: block;
  width: 100%;
  height: auto;
}

.plan-video,
.speed-media {
  line-height: 0;
}

.plan-body {
  padding: 16px;
}

.plan-title-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.plan-name {
  font-weight: 900;
  font-size: 16px;
}

.pill {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: rgb(6, 95, 70);
  background: rgba(16, 185, 129, 0.14);
}

html.dark .pill {
  color: rgb(209, 250, 229);
  border-color: rgba(16, 185, 129, 0.18);
  background: rgba(16, 185, 129, 0.16);
}

.plan-price {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
}

.plan-gift {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 900;
  color: rgb(225, 29, 72);
}

html.dark .plan-gift {
  color: rgb(251, 113, 133);
}

.plan-desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.plan-extra {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
}

.plan-perks {
  margin-top: 12px;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.65;
}

.note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.cta-block {
  border-radius: 26px;
  padding: 22px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.26);
}

.cta-title {
  margin: 0;
}

.cta-block p {
  margin: 10px 0 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.subpage-container {
  width: min(1120px, 100%);
}

.subpage-main {
  margin-top: 26px;
  padding-bottom: 24px;
}

.page-title {
  margin: 6px 0 0 0;
  font-size: 30px;
  line-height: 1.24;
  letter-spacing: -0.28px;
  font-weight: 900;
}

.subcard-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.34);
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease;
}

.mail-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.fraud-card {
  border-color: rgba(225, 29, 72, 0.3);
  background: rgba(225, 29, 72, 0.08);
}

html.dark .fraud-card {
  border-color: rgba(251, 113, 133, 0.28);
  background: rgba(225, 29, 72, 0.14);
}

.fraud-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.policy-updated {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.policy-content {
  color: var(--fg);
  font-size: 14px;
  line-height: 1.72;
  white-space: pre-line;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }
}

.site-footer {
  margin-top: 28px;
}

.footer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.footer-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.footer-tagline {
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-email {
  display: inline-flex;
  margin-top: 12px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-email:hover {
  color: var(--brand);
}

.footer-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--brand);
}

.footer-link-grid {
  margin-top: 10px;
  display: grid;
  gap: 8px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-grid a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-link-grid a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer,
.footer-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.use-now {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.use-now-btn:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.34);
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
