/* ===== SHARED STYLES — Priscend Media ===== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes textShimmer{0%{background-position:-200% center}100%{background-position:200% center}}
@keyframes heroOrb1{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(60px,-40px) scale(1.15)}66%{transform:translate(-30px,30px) scale(0.9)}}
@keyframes heroOrb2{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(-50px,30px) scale(0.9)}66%{transform:translate(40px,-50px) scale(1.1)}}

:root {
  --navy: #06303e;
  --mint: #cae6d3;
  --teal: #149fa8;
  --black: #0a0a0c;
  --white: #e8ecea;
  --bg: #0a0a0c;
  --bg-elevated: #111416;
  --bg-card: #161a1d;
  --bg-card-hover: #1c2124;
  --border: rgba(202,230,211,0.08);
  --border-strong: rgba(202,230,211,0.14);
  --text: #f1f3f2;
  --text-muted: #e0e5e2;
  --text-faint: #c5cec8;
  --teal-dark: #0d7a82;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 0 40px; padding-top: env(safe-area-inset-top, 0px); height: calc(56px + env(safe-area-inset-top, 0px));
  display: flex; align-items: center; justify-content: space-between;
  background: #0a0a0c; opacity: 1;
  border-bottom: 1px solid rgba(202,230,211,0.06);
}
.nav-logo { font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width 0.3s var(--ease-out-quart); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links .active { color: var(--teal); }
.nav-cta { background: var(--teal); color: var(--bg) !important; padding: 10px 24px; border-radius: 10px; font-weight: 600 !important; transition: all 0.3s var(--ease-out-quart) !important; }
.nav-cta:hover { background: var(--mint); color: var(--bg) !important; box-shadow: 0 4px 20px rgba(20,159,168,0.35); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ===== ACCENT GRADIENT TEXT ===== */
.accent { background: linear-gradient(90deg, var(--teal), var(--mint), var(--teal)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: textShimmer 6s linear infinite; }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  nav { padding: 0 20px; padding-top: env(safe-area-inset-top, 0px); }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: calc(56px + env(safe-area-inset-top, 0px)); left: 0; right: 0; background: var(--bg-elevated); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.4); z-index: 9999; }
  .mobile-menu-btn { display: block; }
}
