/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #07071a;
  --bg2:       #0f0f2d;
  --card:      #12122e;
  --card2:     #1a1a40;
  --purple:    #7c3aed;
  --purple2:   #a855f7;
  --cyan:      #06b6d4;
  --green:     #10b981;
  --pink:      #ec4899;
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --border:    rgba(124,58,237,0.25);
  --nav-h:     64px;
  --radius:    12px;
  --font-head: 'Press Start 2P', cursive;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(7,7,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}

.nav-brand {
  font-family: var(--font-head);
  font-size: 0.55rem;
  background: linear-gradient(135deg, var(--purple2), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(124,58,237,0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,30,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.nav-mobile a:hover {
  color: var(--text);
  background: rgba(124,58,237,0.15);
  border-color: var(--border);
}

/* ===== PAGE WRAPPER ===== */
.page { padding-top: var(--nav-h); min-height: 100vh; padding-bottom: 44px; }

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--nav-h) - 44px);
  background: var(--bg);
  overflow: hidden;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
}

.hero-logo {
  width: min(320px, 62vw);
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.6));
  animation: float 4s ease-in-out infinite;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

.hero-video-strip {
  width: 100%;
  height: 130px;
  flex-shrink: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.hero-video-inline {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.btn-outline:hover {
  background: rgba(6,182,212,0.1);
  transform: translateY(-2px);
}

/* ===== SECTION ===== */
.section {
  padding: 72px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(0.75rem, 2.5vw, 1.1rem);
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--purple2), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 3px;
  margin: 12px auto 40px;
}

/* ===== CARDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.2);
  border-color: var(--purple);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 0.65rem;
  color: var(--purple2);
  margin-bottom: 12px;
  line-height: 1.6;
}

.card p, .card li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card ul li::before {
  content: "▸ ";
  color: var(--purple2);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.25);
  border-color: var(--purple);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card-body {
  padding: 16px;
}

.product-card-body h3 {
  font-family: var(--font-head);
  font-size: 0.6rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.6;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-purple { background: rgba(124,58,237,0.2); color: var(--purple2); border: 1px solid rgba(124,58,237,0.3); }
.badge-cyan   { background: rgba(6,182,212,0.15); color: var(--cyan); border: 1px solid rgba(6,182,212,0.3); }
.badge-green  { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.badge-pink   { background: rgba(236,72,153,0.15); color: var(--pink); border: 1px solid rgba(236,72,153,0.3); }

/* ===== INFO ROW ===== */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child { border-bottom: none; }

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(124,58,237,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple2);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text);
}

.info-value a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== SOCIAL LINKS ===== */
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}

.social-link:hover {
  color: var(--text);
  border-color: var(--purple);
  background: rgba(124,58,237,0.1);
  transform: translateY(-2px);
}

/* ===== TAG LIST ===== */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--card2);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--purple);
  color: var(--purple2);
}

/* ===== PACKAGE SECTION ===== */
.pkg-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  margin-bottom: 20px;
}

.pkg-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pkg-icon {
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pkg-section-header h3 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--text);
  line-height: 1.5;
}

/* ===== TICKER ===== */
.ticker-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.ticker {
  display: inline-flex;
  animation: marquee 280s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  padding: 0 40px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.ticker-item::before {
  content: "◆ ";
  color: var(--purple2);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.footer p { color: var(--muted); font-size: 0.85rem; }
.footer a { color: var(--purple2); }

/* ===== HERO SCROLL INDICATOR ===== */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  animation: bounce 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== HIGHLIGHT BAND ===== */
.band {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.1));
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(0.8rem, 3vw, 1.2rem);
  background: linear-gradient(135deg, var(--purple2), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
