@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Orbitron:wght@400;500;600;700;800;900&display=swap');


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --border:     rgba(255,255,255,0.07);
  --border-h:   rgba(255,255,255,0.15);
  --fg:         #ffffff;
  --fg2:        rgba(255,255,255,0.45);
  --fg3:        rgba(255,255,255,0.2);
  --dc:         #5865F2;
  --dc-h:       #4752c4;
  --green:      #22c55e;
  --r-sm:       10px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-pill:     100px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


#loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s, visibility 0.6s;
}
#loader.out { opacity: 0; visibility: hidden; }
.loader-wrap {
  position: relative; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.loader-wrap img { width: 36px; height: 36px; border-radius: 9px; position: relative; z-index: 2; }
.loader-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.4);
  animation: spin 0.9s linear infinite;
}
.loader-ring-2 {
  inset: 10px; border-top-color: rgba(255,255,255,0.15);
  animation-duration: 1.4s; animation-direction: reverse;
}
.loader-dot {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.5); top: 50%; left: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--a)) translateX(34px) translateY(-2px);
  animation: dot-pulse 1.8s ease-in-out infinite;
}
.loader-dot:nth-child(4) { animation-delay: 0s; }
.loader-dot:nth-child(5) { animation-delay: 0.6s; }
.loader-dot:nth-child(6) { animation-delay: 1.2s; }
@keyframes dot-pulse {
  0%,100% { opacity:.2; transform:rotate(var(--a)) translateX(34px) translateY(-2px) scale(1); }
  50%      { opacity:1;  transform:rotate(var(--a)) translateX(34px) translateY(-2px) scale(1.5); }
}

@keyframes spin { to { transform: rotate(360deg); } }


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: transparent;
  border-bottom: none;
}

.nav-in {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: rgba(12,12,14,0.82);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 0 8px 0 18px;
  height: 52px;
  overflow: visible;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.nav-logo img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-links a {
  padding: 6px 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  transition: color 0.18s, background 0.18s;
  border-radius: 100px;
  white-space: nowrap;
}

.nav-links a:hover { color: rgba(255,255,255,0.75); }

.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.09);
}

.nav-dc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-dc:hover {
  background: rgba(88,101,242,0.25) !important;
  border-color: rgba(88,101,242,0.5) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(88,101,242,0.2);
}

.nav-dc svg { flex-shrink: 0; }


.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 56px 2rem 0;
  text-align: center;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: saturate(0) blur(2px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 60%, #0a0a0a 100%);
}


.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  width: 100%;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 2rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--fg3);
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green), 0 0 16px rgba(34,197,94,0.4);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}


.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}

.hl-white { color: #fff; display: block; }
.hl-dim {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}


.hero-sub {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.2rem;
}


.hero-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-1px);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--fg3);
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}


.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}


.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  opacity: 0.25;
  animation: fadeUp 1s 1.5s both;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg3);
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


section { padding: 5rem 2rem; }

.sec {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--fg3);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 0.6rem;
  color: #fff;
}

.sec-sub {
  color: var(--fg2);
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.sec-divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 1.2rem;
}


.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover::after { opacity: 1; }

.feat-card.vis {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), background 0.25s, border-color 0.25s;
}

.feat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}

.feat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px;
}

.feat-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.35);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.25s;
}

.feat-card:hover .feat-icon { background: rgba(255,255,255,0.08); }
.feat-card:hover .feat-icon svg { stroke: rgba(255,255,255,0.75); }

.feat-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.3px;
}

.feat-card p {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  line-height: 1.7;
}


[data-tip] { position: relative; }

[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #161616;
  border: 1px solid var(--border);
  color: var(--fg2);
  font-size: 11px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 99;
}

[data-tip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


.showcase {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg2);
}

.showcase video {
  width: 100%;
  display: block;
}


.marquee-wrap {
  overflow: hidden;
  padding: 0.5rem 0 2rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.rev-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 24px 22px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.rev-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
  transform: translateY(-4px);
}

.rev-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rev-stars {
  color: #f5c518;
  font-size: 13px;
  letter-spacing: 1px;
}

.rev-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.rev-user {
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
  color: #fff;
}

.page-sub {
  color: var(--fg2);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}


.ui-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.f-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.f-item:hover {
  border-color: var(--border-h);
  background: rgba(255,255,255,0.04);
}

.f-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.f-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-name svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.25);
  fill: none;
  stroke-width: 1.5;
}

.f-chev {
  transition: transform 0.3s;
  color: var(--fg3);
  display: flex;
}

.f-chev svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.f-item.open .f-chev { transform: rotate(90deg); }

.f-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.65;
  padding: 0 16px;
}

.f-item.open .f-body {
  max-height: 140px;
  padding: 0 16px 14px;
}


.fb-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.fb-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.2s;
}

.fb-card.vis {
  opacity: 1;
  transform: translateY(0);
}

.fb-card:hover { border-color: var(--border-h); }

.fb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.fb-user {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.fb-stars {
  color: #f5c518;
  font-size: 11px;
  letter-spacing: 2px;
}

.fb-text {
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.65;
}


.terms {
  max-width: 660px;
  margin: 0 auto;
}

.t-sec {
  margin-bottom: 0;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .2s;
}

.t-sec:first-of-type { padding-top: 0; }
.t-sec:last-child { border-bottom: none; }

.t-sec h2 {
  font-family: 'Syne', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.1px;
}

.t-sec p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 620px;
}


.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--spring);
}

.overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--fg3);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
  font-size: 13px;
}

.modal-x:hover {
  color: #fff;
  border-color: var(--border-h);
}

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.3px;
}

.modal-sub {
  color: var(--fg2);
  font-size: 13px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.step { display: none; }
.step.on { display: block; animation: fadeUp 0.3s ease forwards; }

.pay-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 7px;
  cursor: pointer;
  font-size: 13px;
  color: var(--fg2);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.pay-opt:hover {
  border-color: var(--border-h);
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateX(3px);
}

.pay-opt svg {
  width: 14px;
  height: 14px;
  stroke: var(--fg3);
  fill: none;
  stroke-width: 1.5;
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--dc);
  color: #fff;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
}

.dc-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.35);
}

.act-btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.act-btn {
  padding: 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--fg2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}

.act-btn:hover {
  border-color: var(--border-h);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.act-btn.dim { color: var(--fg3); }

.act-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.tick {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: popIn 0.5s var(--spring) forwards;
}

.tick svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.order {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  margin-bottom: 1.5rem;
  font-size: 13px;
}

.order p {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.order p:last-child { border-bottom: none; }
.order p span:first-child { color: var(--fg2); }
.order p span:last-child  { color: rgba(255,255,255,0.75); font-weight: 500; }

.prob {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  margin-top: 1rem;
  font-size: 13px;
  color: var(--fg2);
  animation: fadeUp 0.3s ease forwards;
}

.prob h4 {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.prob li {
  margin-bottom: 7px;
  list-style: none;
  padding-left: 14px;
  position: relative;
  font-size: 12px;
}

.prob li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg3);
}

.ticket-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--dc);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.2px;
}

.ticket-cta:hover {
  background: var(--dc-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(88,101,242,0.4);
}


footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(20px);
}

.foot-new {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 2rem;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.foot-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.foot-logo img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}

.foot-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
}

.foot-dc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 100px;
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.foot-dc:hover {
  background: rgba(88,101,242,0.22);
  border-color: rgba(88,101,242,0.45);
  color: #fff;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.foot-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.4rem;
}

.foot-col a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.foot-col a:hover { color: rgba(255,255,255,0.8); }

.foot-founder-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
  margin-top: 4px;
  color: inherit;
}
.foot-founder-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-2px);
  color: inherit;
}
.foot-founder-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.foot-founder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.foot-founder-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.foot-founder-role {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.foot-founder-card svg {
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  transition: color .2s;
}
.foot-founder-card:hover svg { color: rgba(255,255,255,.6); }

.foot-dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(255,255,255,.6);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  width: fit-content;
}
.foot-dash-btn:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-2px);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.foot-bottom-right {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}


@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .foot-top { grid-template-columns: 1fr; }
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.06); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.fu {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.44s; }
.d5 { animation-delay: 0.56s; }


::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: transparent; }
::-webkit-scrollbar-thumb  { background: #1e1e1e; border-radius: 4px; }


@media (max-width: 900px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero-stats { flex-direction: column; border-radius: var(--r-md); }
  .hero-stat  { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .feat-grid  { grid-template-columns: 1fr; }
  .feat2-grid { grid-template-columns: 1fr; }
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.team-card:hover::before { opacity: 1; }

.team-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
  display: block;
}

.team-dc-icon {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 18px; height: 18px;
  background: #5865F2;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0a0a0a;
  color: #fff;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-role {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.team-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.team-card:hover .team-arrow {
  color: rgba(255,255,255,0.6);
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}


.page-banner-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 1200px;
}

.page-banner-bg img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  opacity: 0.13;
  filter: saturate(0.15) blur(1px);
  transform: scale(1.1) translate(0px, 0px) rotateX(0deg) rotateY(0deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  margin: -15%;
  will-change: transform;
  display: block;
}

.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.7) 70%),
    linear-gradient(to bottom, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.9) 100%);
}

body > *:not(.page-banner-bg):not(nav):not(.preview-win) {
  position: relative;
  z-index: 1;
}

nav {
  position: fixed !important;
  z-index: 1000 !important;
}


.hero-bg {
  display: none;
}


.feat2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feat2-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}


.feat2-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left .6s ease;
  pointer-events: none;
}

.feat2-card:hover::before { left: 150%; }

.feat2-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feat2-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.18);
}

.feat2-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 1.4rem;
}

.feat2-icon svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.4);
  transition: stroke .25s;
}

.feat2-card:hover .feat2-icon svg { stroke: rgba(255,255,255,0.8); }

.feat2-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px; letter-spacing: -.3px;
}

.feat2-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}


.bypass-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin: 2rem auto 0;
}

.bypass-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}

.bypass-row:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateX(6px);
  box-shadow: -4px 0 0 rgba(34,197,94,0.3);
}

.bypass-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.bypass-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  color: #22c55e;
}

.bypass-badge svg { stroke: #22c55e; }


.status-uptime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 1.5rem auto 2rem;
  display: flex;
  width: fit-content;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}

.status-row:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
  transform: translateX(5px);
  box-shadow: -3px 0 0 rgba(34,197,94,0.25);
}

.status-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.status-badges { display: flex; gap: 10px; align-items: center; }

.status-dot-badge {
  font-size: 12px; font-weight: 600;
}

.status-dot-badge.online { color: #22c55e; }
.status-dot-badge.undetected { color: #22c55e; }


.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  gap: 1.5rem;
  letter-spacing: -0.2px;
}

.faq-q:hover { color: #fff; }

.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.25);
  transition: transform 0.35s var(--ease), stroke 0.2s;
}

.faq-item.open .faq-q { color: #fff; }
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
  stroke: rgba(255,255,255,0.5);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  transition: max-height 0.4s var(--ease), padding 0.4s;
  padding: 0 4px;
}

.faq-item.open .faq-a {
  max-height: 160px;
  padding: 0 4px 20px;
}

@media (max-width: 768px) {
  .faq-list { max-width: 100%; }
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }


.why-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  flex-wrap: wrap;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  min-width: 120px;
  padding: 0 1.5rem;
}

.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}

.why-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.why-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}


.team-dc-icon {
  animation: dc-pulse 3s ease-in-out infinite;
}

@keyframes dc-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88,101,242,0); }
  50%       { box-shadow: 0 0 0 4px rgba(88,101,242,0.2); }
}

@media (max-width: 600px) {
  .why-strip { gap: 1rem; }
  .why-divider { display: none; }
}


body.preview-blur > *:not(.preview-win) {
  filter: blur(8px) brightness(0.7);
  transition: filter .35s;
  pointer-events: none;
}


.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
  flex-shrink: 0;
}

.nav-burger:hover { background: rgba(255,255,255,.1); }

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  margin: 0 1rem;
  background: rgba(12,12,14,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 0.75rem;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

.nav-mobile-menu.open {
  display: flex;
  animation: menuDrop .25s var(--ease) forwards;
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-mobile-menu a {
  padding: 11px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  border-radius: 10px;
  transition: background .18s, color .18s;
  font-family: 'Syne', sans-serif;
  display: block;
}

.nav-mobile-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-mobile-menu a.active { color: #fff; background: rgba(255,255,255,.08); }

.nav-mobile-dc {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(88,101,242,.9) !important;
  border-radius: 10px;
  transition: background .18s, color .18s;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  pointer-events: all;
}
.nav-mobile-dc svg { pointer-events: none; }
.nav-mobile-dc:hover { background: rgba(88,101,242,.1); color: #fff !important; }

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-burger { display: flex; }
  .nav-right .nav-dc { display: none !important; }
  .nav-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 0 14px;
    overflow: visible;
  }
  .nav-right { gap: 6px; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .fb-photo-grid { grid-template-columns: 1fr !important; }
  .fb-category-title { white-space: normal !important; }
}

.nav-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 4px 0;
}
