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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg:     #080818;
  --bg2:    #0d0d24;
  --bg3:    #0a0a1e;
  --blue:   #4f8ef7;
  --purple: #7c6cf6;
  --coral:  #e8526a;
  --teal:   #00d4c0;
  --white:  #ffffff;
  --text:   #8090b8;
  --muted:  #404868;
  --border: rgba(255,255,255,0.07);
  --card:   rgba(255,255,255,0.03);
  --grad:   linear-gradient(135deg, var(--blue), var(--purple));
}

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

/* ── NAV ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,24,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 10px 24px !important;
  background: var(--coral) !important;
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: #f06070 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,82,106,0.35) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TYPOGRAPHY ───────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; }

.display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--teal);
}

/* ── BUTTONS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: #f06070;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,82,106,0.4);
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,142,247,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(79,142,247,0.4);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 1px solid rgba(232,82,106,0.4);
}
.btn-outline:hover {
  background: rgba(232,82,106,0.08);
  border-color: var(--coral);
  transform: translateY(-2px);
}

/* ── CARDS ────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.card:hover {
  border-color: rgba(79,142,247,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.05);
}

/* ── BADGES ───────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 600;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.badge-live  { background: rgba(34,197,94,0.08);  color: #22c55e; border: 1px solid rgba(34,197,94,0.22); }
.badge-dev   { background: rgba(79,142,247,0.08); color: var(--blue); border: 1px solid rgba(79,142,247,0.22); }
.badge-soon  { background: rgba(124,108,246,0.08); color: var(--purple); border: 1px solid rgba(124,108,246,0.2); }

/* ── LAYOUT ───────────────────────────── */
section { padding: 100px 48px; }
.container { max-width: 1280px; margin: 0 auto; }

/* ── PAGE HERO ────────────────────────── */
.page-hero {
  padding: 160px 48px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(79,142,247,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(124,108,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 24px;
}
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  color: var(--text);
}
@media (max-width: 768px) {
  .page-hero { padding: 130px 24px 60px; }
  .page-hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: -1.5px; }
}

/* ── DIVIDER ──────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0 48px;
}

/* ── REVEALS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ───────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 48px 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1280px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(8,8,24,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 40px; z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; color: var(--white); }
  .nav-cta { font-size: 1.1rem !important; padding: 14px 36px !important; }
  .hamburger { display: flex; }
  section { padding: 70px 24px; }
  .divider { margin: 0 24px; }
  footer { padding: 50px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
