/* ── eShop Shared Styles for all inner pages ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #060b18;
  --navy2: #0c1428;
  --navy3: #111c35;
  --border: rgba(255,255,255,0.08);
  --purple: oklch(64% 0.22 278);
  --purple2: oklch(55% 0.24 278);
  --teal: oklch(66% 0.18 200);
  --pink: oklch(65% 0.22 330);
  --text: #f0f4ff;
  --muted: rgba(240,244,255,0.55);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.07);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(6,11,24,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--text);
  text-decoration: none; letter-spacing: -0.4px;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; display: block; }
.nav-logo .brand-word {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-logo .brand-sub {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 600; display: block; line-height: 1.1;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-outline {
  border: 1px solid var(--border); color: var(--text); background: transparent;
  padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: inherit; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff; border: none; padding: 9px 22px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: opacity 0.2s, transform 0.15s;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 20px rgba(100,60,255,0.35);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary-lg { padding: 15px 34px; font-size: 16px; border-radius: 12px; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.page-wrap { padding-top: 68px; position: relative; z-index: 1; }
.section-pad { padding: 90px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(120,80,255,0.12); border: 1px solid rgba(120,80,255,0.25);
  color: var(--purple); border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 18px; text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(100,60,255,0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.page-title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -2px; margin-bottom: 16px; }
.page-sub { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* CARDS */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(120,80,255,0.25); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 36px; background: rgba(0,0,0,0.2);
  position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 700; margin-bottom: 14px; color: var(--text); letter-spacing: 0.5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 24px;
  font-size: 13px; color: var(--muted);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--muted); font-size: 18px; transition: color 0.2s, transform 0.2s; text-decoration: none; }
.footer-social a:hover { color: var(--text); transform: translateY(-2px); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
