/* ============================================
   BELLEVERA 2026 — SHARED DESIGN SYSTEM
   ============================================ */
:root {
  --bg: #0B0F19;
  --bg-2: #0F1422;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.07);
  --border-active: rgba(59,130,246,0.4);
  --blue: #3B82F6;
  --blue-glow: rgba(59,130,246,0.15);
  --white: #ffffff;
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --text: #E8ECF3;
  --text-muted: rgba(232,236,243,0.55);
  --radius: 24px;
  --radius-sm: 14px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* CURSOR */
#cursor {
  width: 12px; height: 12px; background: var(--blue); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
#cursor-ring {
  width: 40px; height: 40px; border: 1.5px solid rgba(59,130,246,0.5); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: all 0.15s ease;
}

/* LOADER */
#loader {
  position: fixed; inset: 0; z-index: 9000; background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(135deg, #fff 0%, var(--blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.loader-bar-wrap { width: 200px; height: 2px; background: var(--white-10); border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), #60a5fa); border-radius: 2px; animation: loadBar 1.8s ease forwards; }
@keyframes loadBar { to { width: 100%; } }

/* NAV */
nav#mainNav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 48px); max-width: 1200px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; background: rgba(11,15,25,0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: 100px; transition: var(--transition);
}
nav#mainNav.scrolled { background: rgba(11,15,25,0.92); border-color: rgba(59,130,246,0.15); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.nav-logo { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.nav-logo .dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 12px var(--blue); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 8px var(--blue); transform: scale(1); } 50% { box-shadow: 0 0 20px var(--blue); transform: scale(1.2); } }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { display: block; padding: 8px 16px; font-size: 13.5px; font-weight: 500; color: var(--white-60); border-radius: 100px; transition: var(--transition-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--white-10); }
.nav-cta { display: flex; align-items: center; gap: 10px; padding: 10px 22px; background: var(--blue); color: #fff; font-size: 13.5px; font-weight: 600; border-radius: 100px; transition: var(--transition-fast); box-shadow: 0 0 24px rgba(59,130,246,0.3); }
.nav-cta:hover { background: #60a5fa; box-shadow: 0 0 40px rgba(59,130,246,0.5); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--white-60); border-radius: 2px; transition: var(--transition-fast); display: block; }

/* MOB NAV */
.mob-nav { position: fixed; inset: 0; z-index: 999; background: rgba(11,15,25,0.97); backdrop-filter: blur(24px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.mob-nav.open { transform: translateX(0); }
.mob-nav a { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; color: var(--white-60); transition: color 0.2s; }
.mob-nav a:hover { color: var(--white); }
.mob-nav-close { position: absolute; top: 32px; right: 32px; font-size: 24px; color: var(--white-60); background: none; border: none; cursor: none; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* PAGE HERO */
.page-hero {
  padding: 160px 0 100px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero .mesh-bg { position: absolute; inset: 0; pointer-events: none; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1; }
.blob-hero-1 { width: 600px; height: 600px; background: var(--blue); top: -200px; right: -100px; }
.blob-hero-2 { width: 400px; height: 400px; background: #6366f1; bottom: -100px; left: -100px; }
.page-breadcrumb { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-30); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.page-breadcrumb a { color: var(--white-30); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--white-60); }
.page-breadcrumb span { color: var(--blue); }
.page-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(42px, 6vw, 80px); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; }
.page-hero h1 .gradient { background: linear-gradient(135deg, var(--blue), #818cf8, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* SECTION LABELS */
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 20px; height: 1.5px; background: var(--blue); flex-shrink: 0; }
.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 540px; line-height: 1.7; }
.section-head { margin-bottom: 60px; }

/* CARDS */
.glass-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: var(--transition); }
.glass-card:hover { background: var(--bg-card-hover); border-color: var(--border-active); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: linear-gradient(135deg, var(--blue), #6366f1); color: #fff; font-size: 15px; font-weight: 600; border-radius: 100px; box-shadow: 0 8px 32px rgba(59,130,246,0.35); transition: var(--transition); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(59,130,246,0.5); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px; border: 1px solid var(--border); border-radius: 100px; font-size: 15px; font-weight: 500; color: var(--white-60); transition: var(--transition); }
.btn-outline:hover { border-color: rgba(59,130,246,0.4); color: var(--white); background: var(--white-10); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s 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; }

/* FLOATING CTA */
.floating-cta { position: fixed; bottom: 32px; right: 32px; z-index: 500; display: flex; align-items: center; gap: 10px; padding: 14px 24px; background: var(--blue); color: #fff; font-size: 14px; font-weight: 600; border-radius: 100px; box-shadow: 0 8px 32px rgba(59,130,246,0.4); transition: var(--transition); opacity: 0; transform: translateY(20px); animation: slideCta 0.5s 2s ease forwards; }
.floating-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(59,130,246,0.5); }
@keyframes slideCta { to { opacity: 1; transform: translateY(0); } }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo .dot { width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 280px; margin-bottom: 32px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 38px; height: 38px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white-60); transition: var(--transition-fast); }
.footer-social:hover { border-color: var(--border-active); color: var(--blue); background: rgba(59,130,246,0.08); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-60); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* CTA SECTION */
.cta-section { padding: 120px 0; }
.cta-inner { background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.05)); border: 1px solid rgba(59,130,246,0.2); border-radius: var(--radius); padding: 80px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(59,130,246,0.15), transparent 70%); pointer-events: none; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(40px, 5vw, 64px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 20px; }
.cta-title .gradient { background: linear-gradient(135deg, var(--blue), #818cf8, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-subtitle { font-size: 17px; color: var(--text-muted); margin-bottom: 44px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  nav#mainNav { width: calc(100% - 24px); padding: 12px 16px; }
  .page-hero { padding: 130px 0 80px; }
  .cta-inner { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* SHARED SCRIPTS STYLES */
.icon-box { width: 48px; height: 48px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); }
.icon-box:hover, .glass-card:hover .icon-box { background: rgba(59,130,246,0.2); box-shadow: 0 0 20px rgba(59,130,246,0.2); }
.icon-box svg { width: 22px; height: 22px; color: var(--blue); }
