/* Apple Light Liquid Glass Design System - Landing Page (index.css) */
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;500;600;700;800&family=Fira+Code:wght@400;500&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-light: #f1f4f9;
  --glass-white: rgba(255, 255, 255, 0.82);
  --glass-white-hover: rgba(255, 255, 255, 0.95);
  --glass-border: 1px solid rgba(255, 255, 255, 0.95);
  --glass-border-subtle: 1px solid rgba(0, 0, 0, 0.06);
  --electric-blue: #2563eb;
  --electric-blue-hover: #1d4ed8;
  --blue-glow: 0 8px 30px rgba(37, 99, 235, 0.35);
  --text-dark: #0f172a;
  --text-sub: #475569;
  --text-muted: #94a3b8;
  --radius-pill: 9999px;
  --radius-card: 28px;
  --radius-sub: 20px;
  --font-apple: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Outfit', sans-serif;
  --font-code: 'Fira Code', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-apple);
  user-select: none;
}

body {
  width: 100vw;
  min-height: 100vh;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.landing-body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ambient Spheres */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -100px;
  background: rgba(37, 99, 235, 0.18);
}

.glow-2 {
  width: 700px;
  height: 700px;
  top: 30%;
  right: -200px;
  background: rgba(147, 51, 234, 0.14);
}

.glow-3 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: 20%;
  background: rgba(59, 130, 246, 0.15);
}

/* Top Navbar */
.landing-navbar {
  position: fixed;
  top: 20px;
  width: 90%;
  max-width: 1140px;
  z-index: 100;
}

.nav-container {
  background: var(--glass-white);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 0 1px 2px 0 rgba(255, 255, 255, 0.95), 0 14px 35px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-dark);
}

.badge-vps {
  background: rgba(37, 99, 235, 0.12);
  color: var(--electric-blue);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-item:hover { color: var(--text-dark); }

.nav-item-highlight {
  background: var(--electric-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--blue-glow);
  transition: all 0.2s ease;
}

.nav-item-highlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 80px;
  width: 90%;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.hero-badge-pill {
  background: var(--glass-white);
  backdrop-filter: blur(25px);
  border: var(--glass-border);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.star-icon {
  font-size: 16px !important;
  color: var(--electric-blue);
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-dark);
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-sub);
  max-width: 720px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--blue-glow);
  transition: all 0.25s ease;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.btn-secondary-hero {
  background: var(--glass-white);
  backdrop-filter: blur(25px);
  border: var(--glass-border);
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.btn-secondary-hero:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  background: var(--glass-white);
  backdrop-filter: blur(30px);
  border: var(--glass-border);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-desc {
  font-size: 11px;
  color: var(--text-sub);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: #cbd5e1;
}

/* Bento Features Section */
.features-section {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1140px;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--electric-blue);
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-dark);
}

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

.bento-card {
  background: var(--glass-white);
  backdrop-filter: blur(40px);
  border: var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: inset 0 1px 2px 0 rgba(255, 255, 255, 0.95), 0 14px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

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

.bento-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.bento-icon-box.blue { background: linear-gradient(135deg, #2563eb, #3b82f6); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35); }
.bento-icon-box.purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35); }
.bento-icon-box.green { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35); }
.bento-icon-box.orange { background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35); }

.bento-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
}

.bento-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sub);
}

.bento-preview-box {
  margin-top: 10px;
  padding: 14px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
}

.toast-demo-pill {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Admin Banner */
.admin-preview-section {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1140px;
  padding-bottom: 80px;
}

.admin-preview-card {
  background: var(--text-dark);
  color: #ffffff;
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.preview-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 650px;
}

.badge-live {
  background: rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.preview-text h2 {
  font-size: 32px;
  font-weight: 800;
}

.preview-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.btn-admin-launch {
  background: #ffffff;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-admin-launch:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

/* Footer */
.landing-footer {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 32px 0;
  margin-top: auto;
}

.footer-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-sub);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover { color: var(--text-dark); }
