:root {
  color-scheme: dark;
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  --bg: #070707;
  --yellow: #f9d74c;
  --yellow-deep: #f2b705;
  --panel: rgba(18, 19, 22, 0.82);
  --text: #f6f6f6;
  --muted: #b1b2be;
  --stroke: rgba(255, 255, 255, 0.08);
  --gradient: radial-gradient(circle at top, #1c1c28 0%, #090909 55%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.background-pattern {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
  z-index: -2;
  animation: slow-pan 60s linear infinite;
}

.particle-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(249, 215, 76, 0.35) 2px, transparent 2px),
    radial-gradient(circle, rgba(120, 200, 255, 0.35) 3px, transparent 3px);
  background-size: 220px 220px, 320px 320px;
  mix-blend-mode: screen;
  opacity: 0.35;
  animation: particle-drift 35s linear infinite;
}

main {
  width: min(1200px, 90vw);
  margin: 0 auto 4rem;
}

.site-header {
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.logo-wrap h1 {
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--yellow);
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--stroke);
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.hero-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-cta,
.secondary-cta,
.ghost {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta {
  background: linear-gradient(120deg, var(--yellow), var(--yellow-deep));
  color: #171717;
  box-shadow: 0 15px 30px rgba(249, 215, 76, 0.3);
}

.primary-cta:hover,
.secondary-cta:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--stroke);
}

.ghost {
  background: transparent;
  color: var(--yellow);
  border: 1px solid rgba(249, 215, 76, 0.4);
}

.cta-note {
  color: var(--muted);
}

.hero-card {
  background: var(--panel);
  border-radius: 34px;
  padding: 2rem;
  border: 1px solid var(--stroke);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.card-logo {
  width: 160px;
  display: block;
  margin-bottom: 1rem;
  border-radius: 18px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--stroke);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--stroke);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  margin: 3rem 0;
}

.showcase-media img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  object-fit: cover;
}

.showcase-copy ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  text-align: center;
}

.stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--yellow);
}

.faq {
  margin: 3rem 0;
}

.faq details {
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--stroke);
}

.cta-banner {
  background: linear-gradient(90deg, rgba(249, 215, 76, 0.2), rgba(249, 215, 76, 0.05));
  border-radius: 32px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(249, 215, 76, 0.4);
  margin-bottom: 4rem;
}

footer {
  width: min(1200px, 90vw);
  margin: 0 auto 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

footer a {
  color: var(--yellow);
  text-decoration: none;
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
  z-index: 10;
}

.toast {
  background: rgba(11, 12, 16, 0.9);
  border: 1px solid rgba(249, 215, 76, 0.45);
  border-radius: 16px;
  padding: 0.85rem 1.2rem;
  font-weight: 600;
  color: var(--muted);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

.toast span {
  color: var(--yellow);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  nav {
    justify-content: flex-start;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    order: -1;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
  }
}

@keyframes slow-pan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

@keyframes particle-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 320px 320px, -320px -320px;
  }
}

