@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-dark: #030306;
  --card-bg: #090910;
  --card-border: rgba(255, 255, 255, 0.07);
  --card-border-hover: rgba(0, 240, 255, 0.35);
  --cyan: #00F0FF;
  --purple: #7000FF;
  --text-main: #FFFFFF;
  --text-muted: #8E8EA0;
  --text-dim: #555566;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Subtle Glowing Background Gradients */
.glow-top {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(112, 0, 255, 0.04) 40%, transparent 70%);
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

/* NAVBAR */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, 92%);
  background: rgba(9, 9, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #000;
  font-size: 0.95rem;
}

.nav-brand span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* HERO SECTION */
.hero {
  padding: 170px 24px 80px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.hero-pill .dot {
  width: 7px;
  height: 7px;
  background: #00FF87;
  border-radius: 50%;
  box-shadow: 0 0 10px #00FF87;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .gradient {
  background: linear-gradient(180deg, #FFFFFF 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn-main {
  background: linear-gradient(135deg, var(--cyan), #0072FF);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
  border: none;
  cursor: pointer;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.5);
}

.btn-sec {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-sec:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* STATS */
.stats {
  max-width: 1000px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 24px;
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
}

.stat-lbl {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* SECTIONS */
.section {
  max-width: 1080px;
  margin: 0 auto 120px;
  padding: 0 24px;
}

.sec-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 8px;
}

.sec-sub {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 48px;
}

/* BENTO GRID */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card:hover {
  border-color: var(--card-border-hover);
}

.bento-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 10px;
}

.bento-h {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* PRODUCTS GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.25s;
}

.product-card.popular {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cyan);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: 100px;
}

.p-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.p-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.p-price {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #fff;
  margin-bottom: 24px;
}

.p-price sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.p-list {
  list-style: none;
  margin-bottom: 28px;
}

.p-list li {
  font-size: 0.88rem;
  color: #E0E0E0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: bold;
}

/* REVIEWS */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.r-user {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.r-role {
  color: var(--cyan);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  margin-bottom: 10px;
}

.r-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-body {
  background: #090912;
  border: 1px solid var(--card-border-hover);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: min(440px, 92%);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.2);
}

.close-x {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.close-x:hover { color: #fff; }

.notice-banner {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--cyan);
}

.input-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: #fff;
  font-size: 0.9rem;
  margin: 8px 0 20px;
  outline: none;
}

.input-box:focus { border-color: var(--cyan); }

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

.pm-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.pm-item.active, .pm-item:hover {
  border-color: var(--cyan);
  color: #fff;
  background: rgba(0, 240, 255, 0.1);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--card-border);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.7rem; }
  .bento, .product-grid, .stats, .reviews { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .nav-links { display: none; }
}
