*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-mid: #8b5cf6;
  --purple-dark: #5b21b6;
  --bg: #06060f;
  --bg-card: #0e0e1c;
  --border: rgba(124, 58, 237, 0.18);
  --border-hover: rgba(124, 58, 237, 0.45);
  --text: #eeeaff;
  --text-muted: #6b6890;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 6, 15, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo span { color: var(--purple-light); }
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: -0.1px;
}
.btn:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 13px 32px; font-size: 0.95rem; }
.btn-white {
  background: #fff;
  color: #1a0050;
  font-weight: 700;
}
.btn-white:hover {
  background: #f0e8ff;
  box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 32px 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-1 {
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
  bottom: 0; right: 8%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}
.gradient {
  background: linear-gradient(135deg, #d4bbff 0%, #a78bfa 45%, #7c6fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* SECTION */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

/* PRODUCTS */
.products { padding: 80px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.product-card.featured {
  border-color: rgba(124, 58, 237, 0.28);
  background: linear-gradient(145deg, rgba(124,58,237,0.07) 0%, var(--bg-card) 55%);
}
.card-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.live-badge, .soon-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.live-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #6ee7b7;
}
.soon-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
}
.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-icon svg { width: 22px; height: 22px; }
.referrals-icon { background: rgba(124, 58, 237, 0.14); color: var(--purple-light); }
.ordering-icon { background: rgba(16, 185, 129, 0.1); color: #6ee7b7; }
.staff-icon { background: rgba(59, 130, 246, 0.1); color: #93c5fd; }
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 22px;
  line-height: 1.65;
}
.product-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.product-link:hover { color: #fff; }
.product-link.muted { color: var(--text-muted); cursor: default; }

/* WHY */
.why {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.why-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(124,58,237,0.12);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 7px; letter-spacing: -0.1px; }
.why-item p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* ABOUT */
.about {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.about-body {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.about-body .badge { margin-bottom: 18px; }
.about-body h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.about-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}
.about-body p strong { color: var(--text); font-weight: 600; }

/* CTA */
.cta-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  width: 500px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 70%);
  filter: blur(50px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
}
.footer-inner {
  display: flex;
  gap: 64px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand p { color: var(--text-muted); font-size: 0.82rem; margin-top: 10px; line-height: 1.65; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 64px 24px 64px; }
  .container { padding: 0 20px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}
