/* ═══════════════════════════════════════════════════════
   PHYSIQOO — GLOBAL STYLES
   Shared across all pages: variables, reset, nav, footer,
   buttons, utilities, scroll reveal, cursor
═══════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:wght@300;400;500&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --black:      #050505;
  --dark:       #0d0d0d;
  --card:       #111111;
  --border:     #1e1e1e;
  --green:      #b8ff00;
  --green-dim:  #8fcc00;
  --orange:     #ff5c1a;
  --white:      #f5f5f0;
  --muted:      #666660;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green); }

/* ─── NOISE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────── */
#cursor {
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--green);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94), width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.6;
}

/* ─── NAVIGATION ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--white); transform: scale(1.03); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 72px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--green); }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
}
.footer-heading {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.footer-copy {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
}
.footer-socials { display: flex; gap: 20px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: var(--white);
}
.footer-social:hover { border-color: var(--green); background: rgba(184,255,0,0.08); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.25s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: scale(1.02); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: 1px solid var(--border);
  padding: 15px 32px;
  cursor: none;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-dark {
  background: var(--black);
  color: var(--green);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  cursor: none;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.btn-dark:hover { background: var(--dark); }

/* ─── SECTION COMMONS ────────────────────────────────── */
section { position: relative; }
.section-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 1px;
}
.section-title .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker {
  background: var(--green);
  padding: 12px 0;
  overflow: hidden;
  display: flex;
}
.ticker-track {
  display: flex;
  animation: tickerMove 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--black);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticker-dot { font-size: 6px; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  padding: 120px 48px;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 100px);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: 2px;
}
.cta-title .dim {
  -webkit-text-stroke: 1.5px var(--black);
  color: transparent;
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
  font-weight: 300;
}

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  padding: 180px 48px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 150px);
  line-height: 0.9;
  letter-spacing: 2px;
  animation: fadeUp 0.8s 0.35s both;
}
.page-hero-title .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 28px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.5s both;
}
.page-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184,255,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-num {
  position: absolute;
  right: 48px;
  bottom: 20px;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -5px;
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,255,0,0.4); }
  50%       { box-shadow: 0 0 0 24px rgba(184,255,0,0); }
}
@keyframes slideLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
