* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 132, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(104, 120, 255, 0.12), transparent 32%),
    #070a12;
  color: #f5f7fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  width: 100%;
  padding: 22px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(7, 10, 18, 0.95);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.logo {
  font-size: 22px;
  font-weight: 900;
  color: #38a7ff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: #b8c0d4;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  min-height: 90vh;
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  color: #38a7ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  max-width: 780px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-text {
  color: #aab3c8;
  max-width: 680px;
  margin-bottom: 14px;
}

.section p {
  color: #aab3c8;
  max-width: 640px;
}

.hero-actions,
.discord-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s, border-color 0.2s;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97);
}

.primary {
  background: #38a7ff;
  color: #020711;
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.secondary:hover {
  border-color: rgba(56, 167, 255, 0.55);
}

.hero-brand,
.card,
.info-box,
.policy-box,
.discord,
.gallery-card,
.pricing-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.hero-brand {
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.hero-brand::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-brand img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.section {
  padding: 90px 8%;
}

.section-heading {
  margin-bottom: 34px;
}

.cards {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 28px;
}

.card p {
  color: #aab3c8;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: #aab3c8;
}

.card li::before {
  content: "›";
  color: #38a7ff;
  margin-right: 8px;
  font-weight: 900;
}

.card,
.info-item,
.pricing-card,
.policy-box {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover,
.info-item:hover,
.pricing-card:hover,
.policy-box:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 167, 255, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-card {
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 167, 255, 0.5);
}

.gallery-card.large {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.gallery-card.large img {
  height: 360px;
}

.gallery-caption {
  padding: 22px;
}

.gallery-caption span {
  display: block;
  color: #38a7ff;
  font-weight: 900;
  margin-bottom: 6px;
}

.gallery-caption p {
  font-size: 14px;
}

.pricing-card {
  padding: 32px;
  display: grid;
  gap: 24px;
  max-width: 820px;
}

.pricing-label {
  display: inline-block;
  color: #38a7ff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin-bottom: 10px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #aab3c8;
}

.pricing-card li::before {
  content: "✓";
  color: #38a7ff;
  margin-right: 8px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-box {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.info-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-item span {
  display: block;
  color: #38a7ff;
  font-weight: 900;
  margin-bottom: 4px;
}

.policy-box {
  padding: 28px;
}

.policy-box p {
  margin-bottom: 12px;
  color: #aab3c8;
}

.discord {
  text-align: center;
}

.discord p {
  margin: 0 auto 24px;
}

.discord-actions {
  justify-content: center;
}

.copy-status {
  margin-top: 14px;
  color: #38a7ff;
}

.footer {
  padding: 32px 8%;
  color: #7f889c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .feature-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-column: span 1;
  }
}

@media (max-width: 800px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 8%;
    flex-direction: column;
    background: #101522;
    padding: 20px;
    border-radius: 16px;
    width: 220px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-brand img {
    height: 280px;
  }
}

@media (max-width: 700px) {
  .feature-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-actions,
  .discord-actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  .gallery-card img,
  .gallery-card.large img {
    height: 220px;
  }
}