:root {
  --bg: #180733;
  --bg-soft: #2a0a55;
  --surface: #5710a8;
  --surface-2: #7422ce;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --primary: #9b44fd;
  --secondary: #d07af5;
  --accent: #ff840b;
  --success: #2de38e;
  --danger: #ff6b6b;
  --border: rgba(255, 255, 255, 0.22);
  --shadow: 0 16px 40px rgba(16, 0, 38, 0.45);
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 16px 36px rgba(155, 68, 253, 0.45);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 132, 11, 0.32), transparent 30%),
    radial-gradient(circle at 86% 4%, rgba(208, 122, 245, 0.35), transparent 36%),
    linear-gradient(135deg, #5700d1 0%, #9b44fd 45%, #5f13bd 100%);
  background-attachment: fixed;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 78% 76%, rgba(255, 132, 11, 0.1), transparent 24%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(87, 0, 209, 0.72), rgba(155, 68, 253, 0.68));
  box-shadow: 0 8px 28px rgba(26, 0, 58, 0.35);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18), 0 8px 24px rgba(255, 132, 11, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.btn {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #ffc714, #ff840b 46%, #ff5a05 100%);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 30px rgba(255, 132, 11, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: floatWarm 2.8s ease-in-out infinite;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26), 0 18px 34px rgba(255, 132, 11, 0.52);
  filter: brightness(1.08);
}

.btn.secondary {
  background: linear-gradient(135deg, #9b44fd, #d07af5);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 28px rgba(155, 68, 253, 0.42);
  animation: swayPurple 3.1s ease-in-out infinite;
}

.btn.success {
  background: linear-gradient(135deg, #25d366, #0da37f);
  animation: popGreen 2.2s ease-in-out infinite;
}

.btn.purple {
  background: linear-gradient(135deg, #b065ff, #5c07d8);
  animation: neonPulse 2.5s ease-in-out infinite;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: shimmerSweep 2.9s linear infinite;
}

.btn:hover::after {
  animation-duration: 1.4s;
}

.menu-btn {
  display: none;
}

main {
  padding: 2rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.2rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  text-shadow: 0 8px 24px rgba(20, 3, 52, 0.45);
}

.hero p {
  color: var(--text-muted);
  margin: 0 0 1.4rem;
}

.hero-media {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem;
  box-shadow: var(--glow);
}

.hero-media img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.hero-panel,
.panel {
  background: linear-gradient(165deg, rgba(116, 34, 206, 0.92), rgba(63, 14, 126, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--glow);
}

.hero-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat,
.card {
  background: linear-gradient(160deg, rgba(123, 47, 214, 0.95), rgba(86, 23, 162, 0.98));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 28px rgba(12, 0, 38, 0.28);
}

.stat strong {
  font-size: 1.35rem;
}

.section {
  margin-top: 3rem;
}

.section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
}

.section p.lead {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag {
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(135deg, #9b44fd, #d07af5);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(155, 68, 253, 0.38);
}

ul.clean {
  margin: 0;
  padding-left: 1rem;
}

.cta-strip {
  margin-top: 2.2rem;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(255, 199, 20, 0.3), rgba(255, 132, 11, 0.24), rgba(208, 122, 245, 0.2));
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--glow);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.7rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  background: linear-gradient(90deg, rgba(55, 10, 118, 0.35), rgba(40, 8, 93, 0.25));
}

.brand-cta {
  background: #ececec;
  color: #2a2434;
  margin-top: 2rem;
  border-top: 1px solid rgba(122, 72, 172, 0.25);
}

.brand-cta .inner {
  padding: 2rem 0;
  text-align: center;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.2rem;
  color: #9b44fd;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.brand-desc {
  max-width: 760px;
  margin: 0 auto 1.3rem;
  color: #4b4452;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  border-top: 1px solid rgba(122, 72, 172, 0.3);
  border-bottom: 1px solid rgba(122, 72, 172, 0.3);
  padding: 1rem 0;
}

.action-row .btn {
  width: 100%;
  padding: 0.7rem 1rem;
}

.action-row .btn:nth-child(1) {
  animation-delay: 0s;
}

.action-row .btn:nth-child(2) {
  animation-delay: 0.22s;
}

.action-row .btn:nth-child(3) {
  animation-delay: 0.38s;
}

.action-row .btn:nth-child(4) {
  animation-delay: 0.56s;
}

@keyframes floatWarm {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 14px 30px rgba(255, 132, 11, 0.45);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 20px 36px rgba(255, 132, 11, 0.55);
  }
}

@keyframes swayPurple {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    filter: saturate(1.15);
  }
}

@keyframes popGreen {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  40% {
    transform: scale(1.03);
    filter: brightness(1.08);
  }
  60% {
    transform: scale(0.99);
  }
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 12px 28px rgba(92, 7, 216, 0.35);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 16px 34px rgba(176, 101, 255, 0.58);
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn.secondary,
  .btn.success,
  .btn.purple,
  .btn::after {
    animation: none;
  }
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.legal-content h3 {
  margin-bottom: 0.4rem;
  margin-top: 1.1rem;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
}

.legal-content ul.clean {
  margin: 0.4rem 0 0.9rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.legal-content ul.clean li {
  margin-bottom: 0.35rem;
}

.notice {
  border-left: 4px solid var(--danger);
  background: rgba(255, 107, 107, 0.12);
  padding: 0.9rem;
  border-radius: 10px;
}

@media (max-width: 920px) {
  .hero,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: inline-flex;
    background: linear-gradient(135deg, rgba(155, 68, 253, 0.45), rgba(208, 122, 245, 0.4));
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.4rem 0.55rem;
    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(170deg, rgba(67, 9, 140, 0.96), rgba(43, 9, 94, 0.97));
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
