/* ============ EMORIA — SHARED STYLES ============ */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #020810;
  --surface: #071020;
  --surface2: #0b1828;
  --teal: #00d4c8;
  --teal2: #00a8e8;
  --blue: #1a6fff;
  --text: #d8eaf0;
  --muted: #5a7890;
  --muted2: #8aacbc;
  --border: rgba(0,212,200,0.1);
  --border2: rgba(0,168,232,0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== AURORA ===== */
.aurora {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: drift 12s ease-in-out infinite alternate;
}
.a1 { width: 800px; height: 400px; top: -100px; left: -200px; background: radial-gradient(ellipse, rgba(0,180,160,0.18), transparent 70%); animation-delay: 0s; }
.a2 { width: 600px; height: 300px; top: -50px; right: -100px; background: radial-gradient(ellipse, rgba(0,120,220,0.14), transparent 70%); animation-delay: -4s; }
.a3 { width: 400px; height: 200px; top: 200px; left: 40%; background: radial-gradient(ellipse, rgba(0,212,200,0.07), transparent 70%); animation-delay: -8s; }
@keyframes drift {
  0% { transform: translateY(0) translateX(0) scale(1); }
  100% { transform: translateY(30px) translateX(20px) scale(1.05); }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(2,8,16,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li a {
  display: block;
  padding: 10px 18px;
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links li a:hover { color: var(--text); }
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--teal); }
.nav-links li a.active::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal2)) !important;
  color: #000 !important;
  padding: 9px 22px !important;
  border-radius: 7px !important;
  font-weight: 500 !important;
  margin-left: 12px;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted2); border-radius: 2px; transition: all 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,212,200,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,212,200,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(0,212,200,0.3); color: var(--teal); }

/* ===== SECTION COMMONS ===== */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px;
  position: relative;
  z-index: 1;
}
.page-hero { padding-top: 140px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--teal); }
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title .grad {
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead { color: var(--muted2); font-size: 1rem; line-height: 1.9; max-width: 580px; }

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.card:hover { border-color: rgba(0,212,200,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.card-title { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.02em; }
.card-desc { color: var(--muted2); font-size: 0.875rem; line-height: 1.8; }

/* ===== CTA BLOCK ===== */
.cta-section { max-width: 1300px; margin: 0 auto; padding: 0 60px 100px; position: relative; z-index: 1; }
.cta-inner {
  background: linear-gradient(135deg, rgba(0,212,200,0.06) 0%, rgba(26,111,255,0.06) 100%);
  border: 1px solid rgba(0,212,200,0.18);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,212,200,0.1), transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.cta-inner p { color: var(--muted2); font-size: 1.05rem; margin-bottom: 36px; }

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  background: #010609;
  border-top: 1px solid var(--border);
  padding: 60px 60px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.fsocial {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}
.fsocial:hover { border-color: rgba(0,212,200,0.3); background: rgba(0,212,200,0.06); }
.fsocial img { width: 18px; height: 18px; object-fit: contain; }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 18px; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col ul li a.soon { opacity: 0.4; cursor: default; pointer-events: none; }
.footer-col ul li a.soon::after { content: ' — Soon'; font-size: 0.7rem; color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-slogan { font-size: 0.8rem; color: rgba(0,212,200,0.4); font-style: italic; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up-1 { animation: fadeUp 0.8s 0.1s ease both; }
.fade-up-2 { animation: fadeUp 0.8s 0.2s ease both; }
.fade-up-3 { animation: fadeUp 0.8s 0.3s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 24px; }
  .cta-section { padding: 0 24px 60px; }
  .cta-inner { padding: 40px 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== MOBILE NAV OPEN ===== */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(2,8,16,0.98);
  border-bottom: 1px solid rgba(0,212,200,0.1);
  padding: 20px 24px;
  gap: 4px;
  backdrop-filter: blur(24px);
  z-index: 999;
}
