:root {
  --bg: #06090f;
  --bg-soft: #0d1220;
  --text: #f5f7fa;
  --muted: #93a1b7;
  --line: #1a2332;
  --line-bright: #2c3950;
  --accent: #ffffff;
  --accent-soft: #ffffff;
  --accent-cyan: #38cfff;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  --mx: 72%;
  --my: 12%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("assets/6379163.jpg") center / cover fixed no-repeat,
    #06090f !important;
}

.bg-grid,
.bg-glow {
  display: none;
}

.bg-grid {
  z-index: -2;
  opacity: 0.24;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  animation: gridDrift 18s linear infinite;
}

.bg-glow {
  z-index: -1;
  opacity: 0.32;
  background:
    radial-gradient(660px 320px at var(--mx) var(--my), rgba(255, 255, 255, 0.22), transparent 68%),
    radial-gradient(900px 450px at 18% 8%, rgba(56, 207, 255, 0.11), transparent 74%);
  filter: blur(4px);
  animation: glowPulse 9s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid transparent;
  background: rgba(6, 9, 15, 0.72);
  backdrop-filter: blur(12px);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: border-color 0.26s ease, background-color 0.26s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(56, 207, 255, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 9, 15, 0.9);
}

.site-header.scrolled::after {
  opacity: 0.9;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.74rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  border: 1px solid var(--line-bright);
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 0 24px rgba(255, 255, 255, 0.18);
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: inline-flex;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.24rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.8rem 0;
}

.panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem clamp(1rem, 2vw, 2.1rem);
  background: linear-gradient(165deg, rgba(5, 13, 30, 0.7), rgba(4, 10, 24, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130px;
  z-index: -1;
  opacity: 0.32;
  filter: blur(20px);
}

.panel-amber::before {
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.36), transparent);
}

.panel-cyan::before {
  background: radial-gradient(closest-side, rgba(56, 207, 255, 0.27), transparent);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58%);
  transform: translateX(-180%);
  opacity: 0;
}

.panel:hover::after {
  opacity: 0.26;
  animation: cardSweep 1.1s ease;
}

.hero {
  position: relative;
  padding-top: 7rem;
  padding-right: clamp(1rem, 2.4vw, 2.4rem);
  padding-bottom: 6.3rem;
  padding-left: clamp(1.25rem, 3vw, 2.75rem);
  isolation: isolate;
  border: 1px solid rgba(56, 207, 255, 0.28);
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(5, 13, 30, 0.7), rgba(4, 10, 24, 0.84)), url("assets/6379163.jpg") center / cover no-repeat;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-bg-image {
  display: none;
}

.hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 15, 0.96) 0%, rgba(6, 9, 15, 0.72) 34%, rgba(6, 9, 15, 0.18) 68%, rgba(6, 9, 15, 0.1) 100%);
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(56, 207, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero::before,
.hero::after {
  display: none;
}

.hero::before {
  width: 118px;
  height: 118px;
  right: 5%;
  top: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.14);
  transform: rotate(17deg);
}

.hero::after {
  width: 68px;
  height: 68px;
  right: 17%;
  top: 8.7rem;
  border: 1px solid rgba(56, 207, 255, 0.42);
  box-shadow: 0 0 30px rgba(56, 207, 255, 0.16);
  transform: rotate(-22deg);
  animation-delay: 0.8s;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent-cyan);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #9fd8ef;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35e06f;
  box-shadow: 0 0 16px rgba(53, 224, 111, 0.9);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.01;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  letter-spacing: -0.035em;
  max-width: 13ch;
}

.title-accent {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-soft) 37%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-accent-solid {
  color: var(--accent-cyan);
}

.hero-scan {
  margin: 1.3rem 0 0.9rem;
  width: min(760px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), rgba(56, 207, 255, 0.8), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scan::before {
  content: "";
  position: absolute;
  left: -35%;
  top: -3px;
  width: 35%;
  height: 7px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.82), transparent 66%);
  animation: scan 3.8s ease-in-out infinite;
}

.hero-copy {
  max-width: 65ch;
  color: var(--muted);
  margin: 1.1rem 0 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  color: var(--accent-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  border: 1px solid var(--line-bright);
  background: linear-gradient(120deg, rgba(56, 207, 255, 0.1), rgba(255, 255, 255, 0.06));
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.83rem;
  color: #b6c2d1;
}

.hero-bullets li a {
  color: inherit;
  text-decoration: none;
}

.hero-bullets li.discord-pill {
  border-color: rgba(179, 94, 255, 0.72);
  background: linear-gradient(120deg, rgba(126, 40, 227, 0.9), rgba(179, 94, 255, 0.82));
  color: #ffffff;
  text-transform: uppercase;
}

.hero-bullets li.discord-pill:hover {
  border-color: rgba(205, 142, 255, 0.95);
  background: linear-gradient(120deg, rgba(141, 54, 244, 0.94), rgba(195, 118, 255, 0.9));
}

.section-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-head p {
  color: var(--muted);
  margin: 0.68rem 0 0;
}

.window-tabs {
  margin-top: 1.5rem;
  display: inline-flex;
  gap: 0.42rem;
  padding: 0.3rem;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.window-tab {
  border: none;
  border-radius: 999px;
  padding: 0.48rem 0.92rem;
  background: transparent;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.window-tab.active {
  background: linear-gradient(110deg, var(--accent), var(--accent-soft));
  color: #111;
}

.kpi-grid {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kpi-row-title {
  margin: 1rem 0 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.kpi-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.kpi-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(56, 207, 255, 0.8));
}

.kpi-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-bright);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.kpi-card h3 {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.kpi-value {
  margin: 0.4rem 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.38rem, 3vw, 2rem);
  color: var(--accent-soft);
  letter-spacing: -0.03em;
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.62rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  color: #131313;
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.35);
  animation: pulseBtn 2.9s ease-in-out infinite;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -220%;
  left: -35%;
  width: 32%;
  height: 470%;
  transform: rotate(24deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: btnShine 3.6s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.43);
}

.btn-ghost {
  border-color: var(--line-bright);
  background: rgba(56, 207, 255, 0.08);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(56, 207, 255, 0.6);
  background: rgba(56, 207, 255, 0.14);
}

.btn-xl {
  padding: 0.85rem 1.35rem;
}

.disabled {
  opacity: 0.57;
  pointer-events: none;
}

.transparency-grid,
.feature-grid,
.proof-grid,
.steps {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.transparency-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass,
.feature,
.proof,
.step,
.faq-item,
.cta-panel {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.glass,
.feature,
.proof,
.step {
  padding: 1rem;
}

.glass:hover,
.feature:hover,
.proof:hover,
.step:hover {
  border-color: var(--line-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.27);
}

.glass h3,
.feature h3,
.proof h3,
.step h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.glass p,
.proof p,
.step p,
.feature p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step span {
  display: inline-flex;
  margin-bottom: 0.68rem;
  color: var(--accent-cyan);
  font-family: "Montserrat", sans-serif;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), rgba(56, 207, 255, 0.6), transparent);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: var(--accent-soft);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.24);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-bright);
}

.reviewer-name {
  margin: 0;
  font-size: 1rem;
}

.reviewer-tag {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.stars {
  margin: 0.75rem 0 0;
  color: var(--accent-soft);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.testimonial-copy {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.faq-item {
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq-item p {
  color: var(--muted);
  margin: 0.55rem 0 0.15rem;
}

.cta-panel {
  text-align: center;
  padding: 2.1rem 1rem 2.3rem;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.cta-panel .cta-price {
  margin: 0.45rem 0 1.18rem;
  color: var(--accent-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
}

.newsletter-hidden {
  display: none;
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 1rem 0 2.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.83rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.19, 1, 0.22, 1), transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 44px 0, 0 44px;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatShard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(4deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 16px rgba(53, 224, 111, 0.9);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 22px rgba(53, 224, 111, 1);
  }
}

@keyframes scan {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(270%);
  }
  100% {
    transform: translateX(560%);
  }
}

@keyframes pulseBtn {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow: 0 12px 34px rgba(255, 255, 255, 0.5);
  }
}

@keyframes btnShine {
  0%,
  100% {
    left: -45%;
  }
  52% {
    left: 145%;
  }
}

@keyframes cardSweep {
  from {
    transform: translateX(-180%);
  }
  to {
    transform: translateX(180%);
  }
}


.performance-images {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.performance-image-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(5, 13, 30, 0.62), rgba(4, 10, 24, 0.8));
}

.performance-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.performance-image-card figcaption {
  padding: 0.6rem 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .proof-grid,
  .transparency-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .performance-images {
    grid-template-columns: 1fr;
  }

  .hero-bg-image {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    padding: 0.8rem 0.85rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    padding-top: 0.3rem;
    border-top: 1px solid var(--line);
    justify-content: space-around;
  }
  .section {
    width: min(1120px, calc(100vw - 1.6rem));
    margin: 0 auto;
    padding: 3.3rem 0;
  }

  .panel {
    padding: 1.3rem 0.95rem;
    border-radius: 20px;
  }
  .hero {
    padding-top: 5rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .hero-bg-image {
    display: none;
  }

  .hero-bg-image::after {
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.78) 0%, rgba(6, 9, 15, 0.92) 100%);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .kpi-grid,
  .feature-grid,
  .proof-grid,
  .transparency-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bg-grid,
  .bg-glow,
  .btn-primary,
  .btn-primary::after,
  .status-dot,
  .hero-scan::before,
  .hero::before,
  .hero::after,
  .reveal,
  .panel::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}



















































.hero-bullets li.discord-pill a,
.hero-bullets li.discord-pill a:visited {
  color: #ffffff !important;
  text-transform: uppercase;
}


.discord-link,
.discord-link:link,
.discord-link:visited,
.discord-link:hover,
.discord-link:active,
.discord-link:focus {
  color: #ffffff !important;
  text-transform: uppercase;
}









