/* ═══════════════════════════════════════════
   SKYPO MEDIA — Shared Stylesheet
   ═══════════════════════════════════════════ */

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

:root {
  --bg:         #030710;
  --bg2:        #060d1c;
  --bg3:        #0a1630;
  --blue:       #0047FF;
  --blue-mid:   #1a6bff;
  --blue-light: #4d8fff;
  --cyan:       #00E8FF;
  --cyan-dim:   rgba(0, 232, 255, 0.1);
  --cyan-glow:  rgba(0, 232, 255, 0.35);
  --white:      #EEF2FF;
  --white-dim:  rgba(238, 242, 255, 0.6);
  --gray:       rgba(160, 185, 230, 0.4);
  --border:     rgba(0, 71, 255, 0.16);
  --border-c:   rgba(0, 232, 255, 0.2);
  --font-head:  'Syne', sans-serif;
  --font-mono:  'Space Mono', monospace;
  --font-body:  'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); }

/* ── CURSOR (hidden) ── */
.cursor-dot, .cursor-ring { display: none !important; }

/* ── BACKGROUND ── */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,71,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,71,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0; pointer-events: none;
}
.orb {
  position: fixed; border-radius: 50%;
  filter: blur(110px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,71,255,0.18), transparent 65%);
  top: -180px; right: -120px;
  animation: orbDrift 10s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,232,255,0.07), transparent 65%);
  bottom: 5%; left: -80px;
  animation: orbDrift 12s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,71,255,0.1), transparent 65%);
  top: 50%; left: 40%;
  animation: orbDrift 9s ease-in-out 3s infinite;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-25px) scale(1.04); }
  66%      { transform: translate(-20px,15px) scale(0.97); }
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.6rem 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s, background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 1rem 6%;
  background: rgba(3,7,16,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.25rem; letter-spacing: -0.03em;
  color: var(--white); text-decoration: none;
}
.nav-logo em { color: var(--cyan); font-style: normal; }
.nav-links {
  display: flex; align-items: center; gap: 2.8rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--cyan); }

.nav-cta {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); background: transparent;
  border: 1px solid var(--border-c);
  padding: 0.6rem 1.3rem; border-radius: 2px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan-dim);
  transform: translateX(-101%); transition: transform 0.3s ease;
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover { box-shadow: 0 0 24px rgba(0,232,255,0.25); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── MOBILE MENU ── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(3,7,16,0.97);
  backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 6%;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); background: none; border: none;
}
.mobile-nav a {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -0.02em;
  color: var(--white); text-decoration: none; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav .m-cta { color: var(--cyan) !important; font-size: clamp(1.2rem,5vw,1.6rem) !important; }

/* ── FOOTER ── */
footer {
  padding: 2.5rem 6%;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1.5rem; position: relative; z-index: 1;
}
.footer-logo {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.1rem; letter-spacing: -0.03em;
  color: var(--white); text-decoration: none;
}
.footer-logo em { color: var(--cyan); font-style: normal; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.08em; color: var(--gray);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-cyan {
  color: var(--bg); background: var(--cyan); padding: 0.95rem 1.9rem;
}
.btn-cyan::after { content: '→'; transition: transform 0.3s; }
.btn-cyan:hover { background: #a0f4ff; box-shadow: 0 0 40px rgba(0,232,255,0.55), 0 0 80px rgba(0,232,255,0.2); }
.btn-cyan:hover::after { transform: translateX(4px); }

.btn-grad {
  color: var(--bg);
  background: linear-gradient(130deg, var(--blue-mid), var(--cyan));
  padding: 1.15rem 2.7rem; font-size: 0.78rem;
}
.btn-grad::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(130deg, var(--cyan), #c0f0ff);
  opacity: 0; transition: opacity 0.3s;
}
.btn-grad span { position: relative; z-index: 1; }
.btn-grad:hover::before { opacity: 1; }
.btn-grad:hover { box-shadow: 0 20px 60px rgba(0,232,255,0.45), 0 0 120px rgba(0,71,255,0.2); }

.btn-outline {
  color: var(--cyan); background: transparent;
  border: 1px solid var(--border-c);
  padding: 0.95rem 1.9rem;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan-dim); transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover { box-shadow: 0 0 28px rgba(0,232,255,0.2); }

/* ── TICKER ── */
.ticker {
  position: relative; z-index: 1;
  padding: 1rem 0; overflow: hidden;
  background: rgba(0,71,255,0.055);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: flex; gap: 3.5rem; white-space: nowrap;
  animation: tickRoll 28s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0;
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim);
}
.ticker-dot { width: 4px; height: 4px; background: var(--cyan); border-radius: 50%; }
@keyframes tickRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── MARQUEE ── */
.marquee-wrap {
  position: relative; z-index: 1;
  padding: 2.5rem 0; overflow: hidden;
  border-top: 1px solid var(--border);
}
.marquee-inner {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marqScroll 22s linear infinite;
}
.marquee-word {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.03em; flex-shrink: 0;
}
.marquee-word.solid { color: rgba(0,232,255,0.1); }
.marquee-word.stroke { -webkit-text-stroke: 1.5px rgba(0,71,255,0.35); color: transparent; }
@keyframes marqScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION LABELS / TITLES ── */
.s-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem;
}
.s-label::before { content:''; width:22px; height:1px; background:var(--cyan); }
.s-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95; letter-spacing: -0.035em;
}
.grad-text {
  background: linear-gradient(115deg, var(--blue-light) 0%, var(--cyan) 55%, #a0e8ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; z-index: 1;
  padding: 14rem 6% 7rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.8rem;
}
.page-hero-label::before { content:''; width:28px; height:1px; background:var(--cyan); }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.93; letter-spacing: -0.035em;
  margin-bottom: 2rem;
}
.page-hero p {
  max-width: 480px; font-size: 1rem; color: var(--white-dim);
  line-height: 1.72; font-weight: 300;
}
.page-hero-glow {
  position: absolute; bottom: 0; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
  opacity: 0.3;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(108%); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:0.35} 50%{opacity:1} }
