/* ── SideKick Studioss – Shared Navigation & Footer ── */

/* NAV */
.sk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(9,6,17,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(214,188,255,0.1);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.sk-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0;
  box-sizing: border-box;
}

.sk-nav-logo {
  text-decoration: none;
  color: #f7f2ff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-right: 32px;
  white-space: nowrap;
}
.sk-nav-logo span { color: #c084fc; }

.sk-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-nav-links a {
  text-decoration: none;
  color: rgba(247,242,255,0.68);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.sk-nav-links a:hover { color: #f7f2ff; }

.sk-nav-cta {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .2s ease, transform .2s ease;
  margin-left: 12px;
}
.sk-nav-cta:hover {
  box-shadow: 0 8px 24px rgba(124,58,237,0.45);
  transform: translateY(-1px);
}

.sk-nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255,255,255,0.14);
  color: #f7f2ff;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1;
  font-family: inherit;
}

.sk-nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(9,6,17,0.97);
  border-bottom: 1px solid rgba(214,188,255,0.1);
  padding: 8px 28px 16px;
}

.sk-nav-mobile a {
  display: block;
  text-decoration: none;
  color: rgba(247,242,255,0.72);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: color .2s ease;
}
.sk-nav-mobile a:last-child {
  border-bottom: none;
  color: #c084fc;
  margin-top: 4px;
}
.sk-nav-mobile a:hover { color: #f7f2ff; }

.sk-nav.open .sk-nav-mobile { display: flex; }
.sk-nav.open { height: auto; }

@media (max-width: 640px) {
  .sk-nav-links { display: none; }
  .sk-nav-cta { display: none; }
  .sk-nav-toggle { display: inline-block; }
}

/* FOOTER */
.sk-footer {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #090611;
  border-top: 1px solid rgba(214,188,255,0.1);
  padding: 36px 28px 40px;
  position: relative;
  z-index: 2;
}

.sk-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
}

.sk-footer-logo {
  text-decoration: none;
  color: #f7f2ff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-right: 8px;
}
.sk-footer-logo span { color: #c084fc; }

.sk-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-footer-links a {
  text-decoration: none;
  color: rgba(247,242,255,0.48);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.sk-footer-links a:hover { color: rgba(247,242,255,0.85); }

.sk-footer-copy {
  color: rgba(247,242,255,0.3);
  font-size: 13px;
  margin: 0;
  width: 100%;
  margin-top: 8px;
}

.sk-footer-copy a {
  color: rgba(247,242,255,0.4);
  text-decoration: none;
}
.sk-footer-copy a:hover { color: rgba(247,242,255,0.7); }

@media (max-width: 640px) {
  .sk-footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sk-footer-links { gap: 10px 18px; }
}
