:root {
  color-scheme: dark;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --nav-height: 78px;
  --bg-1: #090f22;
  --bg-2: #050812;
  --line: rgba(95, 224, 176, 0.24);
  --text: #f3f6ff;
  --muted: #9fb0c9;
  --emerald: #22c58b;
  --blue: #3ea0ff;
  --ruby: #c61f49;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 85%, rgba(198, 31, 73, 0.22), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(34, 197, 139, 0.15), transparent 32%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.landing {
  width: 100%;
  margin: 0 auto 2.8rem;
  display: grid;
  gap: 1.25rem;
  padding-top: var(--nav-height);
}

.grid {
  display: grid;
  gap: 1.05rem;
}

.features {
  width: min(1180px, 94%);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-media {
  width: min(1180px, 94%);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 1.6rem 1.2rem;
  background: #000000;
}

.feature-video {
  width: min(620px, 92%);
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(95, 224, 176, 0.2);
  background: #000000;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.feature-image {
  display: none;
  width: min(620px, 92%);
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(95, 224, 176, 0.2);
  background: #000000;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.feature-media.is-static .feature-video {
  display: none;
}

.feature-media.is-static .feature-image {
  display: block;
}

.stats {
  width: min(1180px, 94%);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stat-card {
  padding: 1.2rem 1.3rem;
}

.stat-card h3 {
  font-size: 1.05rem;
  color: #d9e8ff;
}

.stat-card strong {
  display: block;
  font-size: 1.95rem;
  margin-top: 0.6rem;
  color: #7fffd4;
}

.stat-card p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.earnings {
  width: min(1180px, 94%);
  margin: 0 auto 2.5rem;
  display: grid;
  gap: 1.4rem;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #e7f1ff;
}

.section-head p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 1rem;
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.earning-card {
  padding: 1.2rem 1.2rem 1.4rem;
}

.earning-card h3 {
  font-size: 1.05rem;
  color: #d9e8ff;
}

.earning-card p {
  color: var(--muted);
  margin-top: 0.45rem;
  line-height: 1.5;
  font-size: 0.98rem;
}

.glass {
  background: linear-gradient(180deg, rgba(10, 20, 45, 0.78), rgba(8, 14, 34, 0.85));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 16px;
}

.navbar {
  width: 100%;
  margin: 0;
  padding: 0.9rem clamp(1rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  border-radius: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

h1,
h2,
p,
strong {
  margin: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
}

.logo-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  border: 1px solid rgba(62, 160, 255, 0.35);
  background: linear-gradient(145deg, rgba(34, 197, 139, 0.28), rgba(62, 160, 255, 0.2));
  box-shadow: 0 0 24px rgba(34, 197, 139, 0.24);
  position: relative;
  overflow: hidden;
}

.logo-icon {
  display: inline-flex;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.48rem;
  color: #8fdcff;
  letter-spacing: 0.3px;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.menu a {
  color: #b9dfd6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.38rem;
  text-decoration: none;
  border: 1px solid #3c6f98;
  color: var(--text);
  background: #1a233f;
  padding: 0.64rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  border-color: #48c691;
}

.btn.primary {
  border-color: rgba(86, 213, 155, 0.62);
  background: linear-gradient(135deg, var(--emerald), var(--blue) 60%, var(--ruby));
  box-shadow: 0 12px 28px rgba(34, 197, 139, 0.3);
}

.cta-row .btn {
  border-bottom: 3px solid transparent;
}

.cta-row .btn:hover {
  transform: translateY(-3px);
  border-bottom-color: var(--emerald);
}

.hero {
  width: min(1180px, 94%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 64vh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3.2rem 1.1rem;
  background:
    radial-gradient(circle at 50% 15%, rgba(34, 197, 139, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(7, 15, 36, 0.72), rgba(3, 8, 23, 0.92));
}

.hero-glow {
  position: absolute;
  width: min(1100px, 88vw);
  height: min(520px, 44vh);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 139, 0.16), rgba(198, 31, 73, 0.1) 50%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  transform: translateY(-8px);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.36rem 0.82rem;
  border: 1px solid rgba(83, 205, 146, 0.45);
  background: rgba(12, 62, 49, 0.4);
  color: #67e1af;
  letter-spacing: 1.1px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.description {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.cta-row .btn {
  min-width: 190px;
  min-height: 52px;
  padding: 0.82rem 1.35rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border-color: rgba(98, 150, 197, 0.58);
  background: linear-gradient(180deg, rgba(36, 50, 84, 0.95), rgba(22, 34, 60, 0.95));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.feature-card {
  padding: 1.05rem;
}

.feature-card h2 {
  font-size: 1.18rem;
  color: #d9e8ff;
}

.features p {
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.42;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .navbar {
    justify-content: space-between;
    text-align: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .menu {
    justify-content: center;
  }

  .hero {
    min-height: 56vh;
    padding-top: 2.4rem;
  }

  .cta-row .btn {
    width: 100%;
    min-width: 0;
  }
}
