:root {
  --bg: #090d0b;
  --bg-alt: #0e1512;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --blue: #4fc3f7;
  --blue-dark: #2196f3;
  --green: #7ed957;
  --green-dark: #4caf50;
  --gold: #ffd54f;
  --teal: #4dd0e1;
  --text: #eef3f0;
  --text-dim: #9fb3ac;
  --radius: 18px;
  --grad: linear-gradient(100deg, var(--blue) 0%, var(--teal) 45%, var(--green) 100%);
  --shadow-glow: 0 0 60px rgba(79, 195, 247, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(ellipse 120% 60% at 50% -10%, rgba(79, 195, 247, 0.12), transparent 60%),
              radial-gradient(ellipse 100% 50% at 85% 15%, rgba(126, 217, 87, 0.08), transparent 60%),
              var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, .navbar__word, .btn {
  font-family: 'Baloo 2', 'Inter', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 14px;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head {
  text-align: center;
  margin-bottom: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--grad);
  color: #05130d;
  box-shadow: 0 8px 30px rgba(79, 195, 247, 0.25);
  animation: buttonPulse 3.5s ease-in-out infinite;
}
.btn--primary:hover { box-shadow: 0 10px 40px rgba(126, 217, 87, 0.35); }

.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { background: var(--surface-strong); }

.btn--discord {
  background: #5865f2;
  color: #fff;
}
.btn--discord:hover { background: #4752c4; }

.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(9, 13, 11, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.navbar.is-scrolled { border-color: var(--border); background: rgba(9, 13, 11, 0.92); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.navbar__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; }
.navbar__logo { width: 42px; height: 42px; object-fit: contain; }

.navbar__links {
  display: flex;
  gap: 28px;
  margin-left: 24px;
  flex: 1;
}
.navbar__links a { color: var(--text-dim); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.navbar__links a:hover { color: var(--text); }

.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.navbar__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 22px;
}

.hero__subtitle {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__meta {
  display: flex;
  gap: 28px;
  color: var(--text-dim);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.hero__meta span { display: flex; align-items: center; gap: 8px; }
.hero__meta i { color: var(--green); }

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.hero__art img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: heroFloat 5s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.25), transparent 65%);
  filter: blur(10px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

.hero__panel {
  position: absolute;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.hero__panel i { color: var(--green); }
.hero__panel--1 { top: 8%; left: -4%; animation: floatBounce 4.5s ease-in-out infinite; }
.hero__panel--2 { bottom: 12%; right: -6%; animation: floatBounce 4.5s ease-in-out infinite 1.2s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--delay, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Features */
.features {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 195, 247, 0.4);
  background: var(--surface-strong);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--grad);
  color: #05130d;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--text-dim); font-size: 0.95rem; }

/* How it works */
.how {
  padding: 110px 0;
  background: linear-gradient(180deg, transparent, rgba(79, 195, 247, 0.04), transparent);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.how-step {
  text-align: center;
  padding: 0 12px;
}

.how-step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--surface);
  border: 2px solid var(--border);
  position: relative;
}
.how-step:nth-child(1) .how-step__num { color: var(--blue); border-color: var(--blue); }
.how-step:nth-child(2) .how-step__num { color: var(--teal); border-color: var(--teal); }
.how-step:nth-child(3) .how-step__num { color: var(--green); border-color: var(--green); }

.how-step h3 { margin: 0 0 10px; font-size: 1.1rem; }
.how-step p { color: var(--text-dim); font-size: 0.93rem; margin: 0; }

/* Pricing */
.pricing { padding: 110px 0; border-top: 1px solid var(--border); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-6px); }

.plan-card--highlight {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(79, 195, 247, 0.08), var(--surface) 40%);
  box-shadow: var(--shadow-glow);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #05130d;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card__free-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #221900;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card h3 { margin: 6px 0 4px; font-size: 1.3rem; }
.plan-card__tagline { color: var(--text-dim); font-size: 0.9rem; margin: 0 0 22px; }

.plan-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-card__price .amount { font-size: 2.4rem; font-weight: 800; }
.plan-card__price .period { color: var(--text-dim); font-size: 0.95rem; }
.plan-card__note { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 26px; }

.plan-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.plan-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; }
.plan-card__features i { color: var(--green); margin-top: 3px; }
.plan-card__features li.is-off { color: var(--text-dim); opacity: 0.6; }
.plan-card__features li.is-off i { color: var(--text-dim); }

/* FAQ */
.faq { padding: 100px 0; border-top: 1px solid var(--border); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
}
.faq-item summary { font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--teal); transition: transform 0.2s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { color: var(--text-dim); margin: 14px 0 0; font-size: 0.93rem; }

/* CTA band */
.cta-band {
  margin: 40px auto 100px;
  max-width: 1180px;
  padding: 0 24px;
}
.cta-band__inner {
  background: var(--grad);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #05130d;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { margin: 0 0 8px; font-size: 1.8rem; }
.cta-band p { margin: 0; opacity: 0.85; }
.cta-band .btn--primary { background: #05130d; color: #fff; animation: none; box-shadow: none; }
.cta-band .btn--primary:hover { background: #0d1f16; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 64px 0 0; background: var(--bg-alt); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer__logo { width: 44px; margin-bottom: 14px; }
.footer__brand p { color: var(--text-dim); font-size: 0.9rem; max-width: 260px; }
.footer__col h4 { margin: 0 0 16px; font-size: 0.95rem; }
.footer__col a { display: block; color: var(--text-dim); font-size: 0.9rem; margin-bottom: 12px; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 24px; color: var(--text-dim); font-size: 0.82rem; text-align: center; }

/* Keyframes */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(79, 195, 247, 0.25); }
  50% { box-shadow: 0 8px 40px rgba(126, 217, 87, 0.4); }
}
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Responsive */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; height: 300px; }
  .features__grid, .how__grid, .pricing__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .navbar__links { display: none; }
  .navbar__burger { display: flex; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}
