:root {
  --bg: #050507;
  --bg-2: #0a0a0f;
  --panel: rgba(16, 16, 22, 0.82);
  --panel-2: rgba(22, 22, 30, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef1f7;
  --muted: #a7afc0;
  --blue: #00a3ff;
  --blue-2: #5cc0ff;
  --glow: rgba(0, 163, 255, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(0, 163, 255, 0.2), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(92, 192, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #0f1016 0%, var(--bg-2) 30%, var(--bg) 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

section {
  position: relative;
  scroll-margin-top: 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(0, 163, 255, 0.13);
  border: 1px solid rgba(0, 163, 255, 0.25);
  color: var(--blue-2);
  box-shadow: 0 0 22px rgba(0, 163, 255, 0.18);
}

.brand-text {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  color: var(--blue-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.footer-inner a,
.footer-bottom a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.footer-inner a:hover,
.footer-bottom a:hover {
  color: white;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  padding: 0.78rem 1.1rem;
  background: rgba(0, 163, 255, 0.12);
  border-color: rgba(0, 163, 255, 0.22);
  color: var(--blue-2);
}

.button {
  padding: 0.95rem 1.3rem;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 28px rgba(0, 163, 255, 0.3);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.full-width {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 2rem);
  display: grid;
  place-items: center;
  padding: 5.75rem 0 6.5rem;
  overflow: hidden;
}

.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-glow-one {
  background: radial-gradient(circle at 50% 28%, rgba(0, 163, 255, 0.22), transparent 34%);
}

.hero-glow-two {
  background: radial-gradient(circle at 78% 60%, rgba(92, 192, 255, 0.14), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  padding: 2.6rem 2rem 2.8rem;
  text-align: center;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 17, 24, 0.82), rgba(10, 10, 13, 0.9));
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.4);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.55), rgba(255, 255, 255, 0.05), rgba(0, 163, 255, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.2);
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.discord-inner h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 1.2rem;
  font-size: clamp(3.4rem, 11vw, 7rem);
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 44rem;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-actions .button {
  min-width: 11rem;
}

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

.stat-card,
.feature-card,
.pricing-card,
.faq-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(26, 26, 34, 0.76), rgba(14, 14, 18, 0.9));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.stat-card:hover,
.feature-card:hover,
.pricing-card:hover,
.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 192, 255, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.stat-card {
  padding: 1.15rem;
  border-radius: 22px;
  text-align: left;
  min-height: 6rem;
}

.stat-card span,
.plan-label,
.feature-card p,
.faq-card p,
.section-heading p,
.pricing-card p,
.footer-inner p,
.discord-inner p {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
}

.stat-card.featured {
  border-color: rgba(0, 163, 255, 0.24);
  background: linear-gradient(160deg, rgba(0, 163, 255, 0.12), rgba(14, 14, 18, 0.92));
}

.section {
  padding: 7rem 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(0, 163, 255, 0.02));
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2.3rem;
  padding: 0 1rem;
  text-align: center;
}

.section-heading.narrow {
  max-width: 38rem;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.section-heading p {
  margin-top: 1rem;
  line-height: 1.7;
}

.section-heading::after {
  content: "";
  display: block;
  width: 7rem;
  height: 1px;
  margin: 1.35rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(92, 192, 255, 0.85), transparent);
}

.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 1.15rem;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: 28px;
  text-align: center;
}

.feature-card::before,
.pricing-card::before,
.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%);
  opacity: 0.32;
  pointer-events: none;
}

.icon-badge {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 1.15rem;
  background: rgba(0, 163, 255, 0.1);
  color: var(--blue-2);
  font-size: 1.35rem;
}

.feature-card h3,
.pricing-card .plan-price,
.faq-card h3 {
  color: white;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.pricing-section {
  position: relative;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border-radius: 30px;
}

.pricing-card.featured-plan {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(0, 163, 255, 0.28);
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.12), rgba(17, 17, 18, 0.94));
}

.pricing-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.plan-label {
  font-size: 0.92rem;
  font-weight: 700;
}

.plan-price {
  font-size: 2rem;
}

.pricing-card ul {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.75rem;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.34);
}

.discord-banner {
  padding-top: 0;
}

.discord-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.2rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at top right, rgba(92, 192, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(0, 163, 255, 0.12), rgba(15, 15, 18, 0.96));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
}

.discord-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

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

.discord-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.discord-inner p {
  max-width: 44rem;
  line-height: 1.7;
}

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

.faq-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: 26px;
}

.faq-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.site-footer {
  padding: 2.6rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.2rem;
  padding-bottom: 1.8rem;
}

.footer-inner p {
  max-width: 25rem;
  line-height: 1.7;
}

.footer-inner h3 {
  margin: 0 0 0.75rem;
}

.footer-inner div:last-child,
.footer-inner div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 2rem 1.2rem 2.2rem;
  }

  .hero-stats,
  .feature-grid,
  .pricing-grid,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .discord-inner {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card.featured-plan {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container,
  .site-header {
    width: min(100% - 1rem, 1120px);
  }

  .site-header {
    margin-top: 0.5rem;
    padding: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 4.5rem;
  }

  .hero-content {
    border-radius: 26px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}