/**
 * ================================================
 *  ZORVEX — style.css
 *  Shared Stylesheet for all pages
 *  Author: Nabarup Chanda (Venom)
 * ================================================
 */

/* ================================================
   1. CSS VARIABLES
================================================ */
:root {
  /* Backgrounds */
  --bg:           #000000;
  --bg2:          #050505;
  --bg3:          #090909;
  --card:         #0d0d0d;
  --card2:        #111111;

  /* Whites */
  --white:        #ffffff;
  --white90:      rgba(255,255,255,0.9);
  --white60:      rgba(255,255,255,0.6);
  --white30:      rgba(255,255,255,0.3);
  --white15:      rgba(255,255,255,0.15);
  --white08:      rgba(255,255,255,0.08);
  --white04:      rgba(255,255,255,0.04);

  /* Muted */
  --muted:        #666666;
  --dim:          #3a3a3a;

  /* Glows */
  --glow-sm:      0 0 15px rgba(255,255,255,0.5);
  --glow-md:      0 0 30px rgba(255,255,255,0.4), 0 0 60px rgba(255,255,255,0.15);
  --glow-lg:      0 0 50px rgba(255,255,255,0.6), 0 0 100px rgba(255,255,255,0.2);
  --glow-xl:      0 0 80px rgba(255,255,255,0.8), 0 0 150px rgba(255,255,255,0.3);

  /* Borders */
  --border:       rgba(255,255,255,0.07);
  --border-bright:rgba(255,255,255,0.25);
  --border-glow:  rgba(255,255,255,0.5);

  /* Radius */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;

  /* Easing */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --snap:   cubic-bezier(0.2, 0, 0, 1);

  /* Layout */
  --nav-h:  68px;
  --max-w:  1200px;
  --max-w-sm: 800px;
  --max-w-xs: 640px;

  /* Typography */
  --font-h:    'Exo 2', sans-serif;
  --font-b:    'Outfit', 'Space Grotesk', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}


/* ================================================
   2. RESET & BASE
================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000;
}

::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1c1c1c; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2e2e2e; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--font-b); }
input, textarea, select {
  font-family: var(--font-b);
  color: #fff;
}


/* ================================================
   3. KEYFRAMES
================================================ */

/* Preloader ring spins */
@keyframes ringSpinA  { to { transform: rotate(360deg); } }
@keyframes ringSpinB  { to { transform: rotate(360deg); } }

/* Preloader bar fill */
@keyframes barFill    { to { width: 100%; } }

/* Blink (dot / cursor) */
@keyframes blinkDot   { 50% { opacity: 0; } }
@keyframes blinkC     { 50% { opacity: 0; } }

/* Status fade in */
@keyframes fadeStatusIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* Particle float */
@keyframes floatPt {
  0%   { transform: translateY(105vh) scale(0); opacity: 0; }
  8%   { opacity: 0.8; }
  85%  { opacity: 0.25; }
  100% { transform: translateY(-8vh) scale(1.3); opacity: 0; }
}

/* Blob drift */
@keyframes blobMove {
  0%   { transform: translate(0,0) scale(1);       opacity: 0.07; }
  50%  { transform: translate(40px,-50px) scale(1.15); opacity: 0.13; }
  100% { transform: translate(-40px,30px) scale(0.9); opacity: 0.09; }
}

/* Nav logo pulse */
@keyframes logoPulseNav {
  0%,100% { box-shadow: 0 0 0 0   rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0);   }
}

/* Hero logo floating */
@keyframes heroLogoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Hero pulse rings */
@keyframes pulseRingOut {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Spinning ring (hero SVG) */
@keyframes spinRingSlow { to { transform: rotate(360deg); } }

/* Title shimmer */
@keyframes titleShimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Scroll hint bounce */
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* Dot pulse (timeline) */
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(255,255,255,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0);   }
}

/* Float card */
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Marquee scroll */
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* Ripple */
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* Glitch text */
@keyframes glitchA {
  0%,100% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
  20%      { clip-path: inset(92% 0 1% 0);  transform: translate(2px, -2px); }
  40%      { clip-path: inset(43% 0 1% 0);  transform: translate(1px, 1px); }
  60%      { clip-path: inset(25% 0 58% 0); transform: translate(-1px, -1px); }
  80%      { clip-path: inset(54% 0 7% 0);  transform: translate(2px, 2px); }
}
@keyframes glitchB {
  0%,100% { clip-path: inset(24% 0 29% 0); transform: translate(2px, -2px); }
  20%      { clip-path: inset(54% 0 21% 0); transform: translate(-2px, 2px); }
  40%      { clip-path: inset(11% 0 49% 0); transform: translate(1px, -1px); }
  60%      { clip-path: inset(77% 0 5% 0);  transform: translate(-1px, 1px); }
  80%      { clip-path: inset(39% 0 43% 0); transform: translate(2px, -2px); }
}

/* Progress bar fill */
@keyframes progFill {
  from { width: 0; }
}

/* Fade in up */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scale in */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* Ping */
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}


/* ================================================
   4. PRELOADER
================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#preloader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pre-logo-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 2rem;
}
.pre-logo-ring svg.ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ringSpinA 1.8s linear infinite;
}
.pre-logo-ring svg.ring-svg2 {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  animation: ringSpinB 1.2s linear infinite reverse;
}
.pre-logo-img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.7));
}
.pre-logo-fallback {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #111;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.pre-name {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: var(--glow-md);
}
.pre-name .dot { animation: blinkDot 0.9s steps(1) infinite; }

.pre-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
  animation: fadeStatusIn 0.5s ease forwards;
}

.pre-bar {
  width: 260px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 1.8rem;
}
.pre-bar-fill {
  height: 100%;
  width: 0;
  background: #fff;
  box-shadow: 0 0 12px #fff;
  border-radius: 2px;
  animation: barFill 1.6s ease forwards;
}


/* ================================================
   5. BACKGROUND LAYERS
================================================ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  background: rgba(255,255,255,0.07);
  animation: blobMove 18s infinite alternate ease-in-out;
}
.blob:nth-child(1) { width: 500px; height: 500px; top: -10%;  left: 15%;  animation-duration: 20s; }
.blob:nth-child(2) { width: 400px; height: 400px; top:  55%;  right: -5%; animation-duration: 24s; animation-delay: -8s; }
.blob:nth-child(3) { width: 300px; height: 300px; bottom: 5%; left: 40%;  animation-duration: 22s; animation-delay: -14s; }

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.p {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}


/* ================================================
   6. NAVIGATION
================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  height: var(--nav-h);
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), background 0.3s;
}
#nav.scrolled {
  background: rgba(0,0,0,0.95);
  border-bottom-color: var(--white15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.8);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.nav-logo-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--white30);
  object-fit: cover;
  animation: logoPulseNav 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-invite {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: #fff;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--glow-sm);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-invite:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-2px) scale(1.04);
}

.nav-toggle {
  display: none;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}


/* ================================================
   7. LAYOUT HELPERS
================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}
.section.alt { background: var(--bg2); }
.section.dark { background: var(--bg3); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}
.wrap-sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
}
.wrap-xs {
  max-width: var(--max-w-xs);
  margin: 0 auto;
}

/* Section title */
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  color: #fff;
}
.sec-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: -2.5rem;
  margin-bottom: 3rem;
}

/* Glow accent text */
.glow {
  color: #fff;
  text-shadow: var(--glow-md);
}
.glow-lg {
  color: #fff;
  text-shadow: var(--glow-lg);
}

/* Mono tag */
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* ================================================
   8. REVEAL ANIMATION
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }
.reveal-d5 { transition-delay: 0.48s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--bounce);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }


/* ================================================
   9. BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  border: none;
  white-space: nowrap;
}

/* Primary — white fill */
.btn-primary {
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px rgba(255,255,255,0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 55px rgba(255,255,255,0.65);
  transform: translateY(-3px) scale(1.03);
}

/* Ghost — transparent outline */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--white30);
}
.btn-ghost:hover {
  border-color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* Danger */
.btn-danger {
  background: transparent;
  color: #ff6b6b;
  border: 1.5px solid rgba(255,107,107,0.4);
}
.btn-danger:hover {
  border-color: #ff6b6b;
  box-shadow: 0 0 25px rgba(255,107,107,0.3);
  transform: translateY(-2px);
}

/* Small variant */
.btn-sm {
  padding: 0.5rem 1.3rem;
  font-size: 0.8rem;
}

/* Icon-only */
.btn-icon {
  padding: 0.75rem;
  border-radius: 50%;
}

/* Ripple */
.btn .ripple-ring {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

/* Shine sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.btn:hover::after { transform: translateX(100%); }


/* ================================================
   10. HERO SECTION
================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

/* Logo wrap */
.hero-logo-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
}
.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  animation: pulseRingOut 2.4s ease-out infinite;
}
.hero-logo-wrap::after {
  inset: -22px;
  border-color: rgba(255,255,255,0.1);
  animation-delay: 0.8s;
}

.hero-logo-ring-svg {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  animation: spinRingSlow 8s linear infinite;
  pointer-events: none;
}

.hero-logo {
  width: clamp(100px, 16vw, 145px);
  height: clamp(100px, 16vw, 145px);
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.7));
  animation: heroLogoFloat 3.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  border: 2px solid var(--white30);
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--white04);
}
.hero-tag span { color: var(--white60); }

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 60px rgba(255,255,255,0.3);
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #fff 20%, rgba(255,255,255,0.7) 50%, #fff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 250% 250%;
  animation: titleShimmer 5s ease-in-out infinite;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  min-height: 2.2rem;
  margin-bottom: 0.8rem;
}
.cursor-blink {
  color: #fff;
  animation: blinkC 0.75s infinite;
}

.hero-by {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.hero-by strong {
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

/* Page hero (inner pages — shorter) */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem 1rem 0;
}
.page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: var(--glow-md);
  margin-bottom: 0.8rem;
}
.page-hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}


/* ================================================
   11. STATS STRIP
================================================ */
.stats-strip {
  position: relative;
  z-index: 1;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.stat {
  text-align: center;
  min-width: 110px;
}
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 25px rgba(255,255,255,0.4);
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}
.stat-icon {
  font-size: 1.1rem;
  color: var(--white60);
  margin-bottom: 0.4rem;
  display: block;
}


/* ================================================
   12. CARDS — GENERIC
================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all 0.35s var(--ease);
}
.card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 12px 50px rgba(0,0,0,0.6), 0 0 35px rgba(255,255,255,0.07);
  transform: translateY(-6px);
}

/* Glowing card */
.card-glow:hover {
  box-shadow: 0 0 60px rgba(255,255,255,0.15), 0 12px 50px rgba(0,0,0,0.6);
}


/* ================================================
   13. SERVICE CARDS
================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  will-change: transform;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 12px 50px rgba(0,0,0,0.6), 0 0 40px rgba(255,255,255,0.08);
  transform: translateY(-8px);
}
.svc-icon {
  font-size: 2.4rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.4));
  transition: transform 0.4s var(--bounce);
}
.svc-card:hover .svc-icon {
  transform: scale(1.2) rotate(6deg);
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.7));
}
.svc-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.svc-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}
.svc-more {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dim);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.svc-card:hover .svc-more { opacity: 1; transform: none; color: #fff; }


/* ================================================
   14. BOT / PROJECT CARDS
================================================ */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}
.bot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
  position: relative;
}
.bot-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 14px 55px rgba(0,0,0,0.6), 0 0 40px rgba(255,255,255,0.07);
  transform: translateY(-8px);
}
.bot-img {
  height: 150px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bot-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
}
.bot-status {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.bot-body { padding: 1.4rem; }
.bot-body h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.bot-body p {
  color: var(--muted);
  font-size: 0.83rem;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.bot-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.bot-tag {
  font-size: 0.68rem;
  padding: 0.2rem 0.65rem;
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: 50px;
  color: var(--white60);
  letter-spacing: 0.04em;
}


/* ================================================
   15. TECH STACK
================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.3rem;
}
.tech-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.8rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.tech-item:hover {
  border-color: var(--white30);
  box-shadow: 0 0 30px rgba(255,255,255,0.15);
  transform: translateY(-5px);
}
.tech-item i {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
  display: block;
  transition: transform 0.4s var(--bounce);
}
.tech-item:hover i {
  transform: scale(1.25);
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.3));
}
.tech-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.tech-level {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.2rem;
}


/* ================================================
   16. ABOUT SECTION
================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  color: #999;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.about-text strong { color: #fff; }
.about-text .hi-name {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255,255,255,0.5);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--white04);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #888;
  transition: all 0.2s;
  cursor: default;
}
.badge:hover {
  border-color: var(--white30);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

.socials { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #888;
  transition: all 0.25s;
}
.social-btn:hover {
  border-color: #fff;
  color: #fff;
  box-shadow: var(--glow-sm);
}

.float-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.float-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 300px;
  animation: floatCard 4s ease-in-out infinite;
  transition: all 0.35s;
}
.float-card:nth-child(2) { animation-delay: -2s; }
.float-card:nth-child(3) { animation-delay: -1s; }
.float-card:hover {
  border-color: var(--white30);
  box-shadow: 0 0 40px rgba(255,255,255,0.12);
  transform: translateY(-6px) !important;
  animation-play-state: paused;
}
.float-card i {
  font-size: 2.2rem;
  color: #fff;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.5));
  margin-bottom: 0.6rem;
}
.float-card h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.float-card p { color: var(--muted); font-size: 0.82rem; margin: 0; }


/* ================================================
   17. PROCESS
================================================ */
.process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.proc-step {
  flex: 1;
  min-width: 130px;
  max-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  transition: all 0.35s;
}
.proc-step:hover .proc-num {
  border-color: #fff;
  box-shadow: var(--glow-md);
  transform: scale(1.1);
}
.proc-step h4 { color: #fff; font-size: 0.92rem; margin-bottom: 0.25rem; }
.proc-step p  { color: var(--muted); font-size: 0.78rem; }


/* ================================================
   18. TIMELINE
================================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 13px; top: 0; bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
}
.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.tl-dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  animation: dotPulse 2.2s ease-in-out infinite;
}
.tl-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--white60);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.35rem;
}
.tl-item h4 {
  font-family: var(--font-h);
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.tl-item p { color: var(--muted); font-size: 0.88rem; }


/* ================================================
   19. PRICING CARDS
================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.price-card.hot {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 60px rgba(255,255,255,0.1);
}
.price-card.hot::before {
  content: 'POPULAR';
  position: absolute;
  top: 18px; right: -34px;
  background: #fff;
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 2.8rem;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}
.price-card:hover {
  border-color: var(--white30);
  box-shadow: 0 15px 55px rgba(0,0,0,0.6), 0 0 40px rgba(255,255,255,0.1);
  transform: translateY(-6px);
}
.price-card h3 {
  font-family: var(--font-h);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.price-val {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.4);
  margin: 0.8rem 0;
}
.price-val sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-b);
  font-weight: 400;
}
.price-feats { text-align: left; margin: 1.5rem 0; }
.price-feats li { padding: 0.38rem 0; color: #999; font-size: 0.88rem; }
.price-feats li i { margin-right: 0.5rem; }
.price-feats li .yes { color: #fff; }
.price-feats li .no  { color: #333; }


/* ================================================
   20. COMPARISON TABLE
================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}
.comp-table th,
.comp-table td {
  padding: 0.9rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comp-table th {
  font-family: var(--font-h);
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.05em;
  background: var(--bg3);
}
.comp-table td { font-size: 0.83rem; color: #777; }
.comp-table tr:hover td { background: var(--white04); }
.ck { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.4); }
.cx { color: #2a2a2a; }


/* ================================================
   21. DISCORD MOCK PREVIEW
================================================ */
.discord-mock {
  background: #1e1f22;
  border-radius: var(--r-lg);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid #2b2d31;
  overflow: hidden;
}
.disc-bar {
  background: #2b2d31;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.disc-dot { width: 10px; height: 10px; border-radius: 50%; background: #444; }
.disc-dot.r { background: #ff5f57; }
.disc-dot.y { background: #febc2e; }
.disc-dot.g { background: #28c840; }
.disc-body { padding: 1.5rem; display: flex; gap: 1rem; }
.disc-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}
.disc-av img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.disc-name  { font-weight: 700; color: #fff; font-size: 0.88rem; }
.disc-bot   { font-size: 0.62rem; background: #5865f2; color: #fff; padding: 0.12rem 0.4rem; border-radius: 3px; margin-left: 0.35rem; }
.disc-text  { color: #dcddde; font-size: 0.83rem; margin-top: 0.3rem; }
.disc-embed {
  background: #2b2d31;
  border-left: 3px solid #fff;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  margin-top: 0.6rem;
}
.disc-embed-t { font-weight: 700; color: #fff; font-size: 0.83rem; }
.disc-embed-d { color: #b9bbbe; font-size: 0.76rem; margin-top: 0.3rem; }


/* ================================================
   22. TESTIMONIALS
================================================ */
.testi-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  min-width: 310px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  scroll-snap-align: start;
  transition: all 0.3s;
  cursor: default;
}
.testi-card:hover {
  border-color: var(--white30);
  box-shadow: 0 0 30px rgba(255,255,255,0.08);
}
.stars {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.testi-card p {
  color: #888;
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testi-card h4 { color: #fff; font-weight: 600; font-size: 0.88rem; }


/* ================================================
   23. FAQ
================================================ */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--white15); }
.faq-item.open  { border-color: var(--white30); box-shadow: 0 0 25px rgba(255,255,255,0.08); }
.faq-q {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.92rem;
  user-select: none;
}
.faq-q i { color: #fff; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.65;
}


/* ================================================
   24. ACHIEVEMENTS
================================================ */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}
.ach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s;
}
.ach-card:hover {
  border-color: var(--white30);
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
  transform: translateY(-5px);
}
.ach-emoji {
  font-size: 2.6rem;
  display: inline-block;
  margin-bottom: 0.7rem;
  transition: transform 0.4s var(--bounce);
}
.ach-card:hover .ach-emoji {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
}
.ach-card h4 { color: #fff; font-size: 0.92rem; margin-bottom: 0.3rem; }
.ach-card p  { color: var(--muted); font-size: 0.78rem; }


/* ================================================
   25. MARQUEE
================================================ */
.marquee-outer {
  overflow: hidden;
  padding: 1.8rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.m-item {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: #3a3a3a;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: default;
}
.m-item:hover { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.25); }


/* ================================================
   26. BLOG / UPDATE CARDS
================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  cursor: pointer;
  transition: all 0.35s;
}
.blog-card:hover {
  border-color: var(--white30);
  box-shadow: 0 0 40px rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--white60);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.6rem;
}
.blog-card h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card p { color: var(--muted); font-size: 0.83rem; line-height: 1.5; }


/* ================================================
   27. NEWSLETTER BOX
================================================ */
.nl-box {
  max-width: 530px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
}
.nl-box h3 {
  font-family: var(--font-h);
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.nl-box p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.88rem; }
.nl-form { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.nl-form input {
  flex: 1;
  min-width: 190px;
  padding: 0.8rem 1.2rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input::placeholder { color: var(--muted); }
.nl-form input:focus {
  border-color: var(--white30);
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
}
.nl-form button {
  padding: 0.8rem 1.8rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 22px rgba(255,255,255,0.25);
}
.nl-form button:hover {
  box-shadow: 0 0 50px rgba(255,255,255,0.55);
  transform: translateY(-2px);
}


/* ================================================
   28. CTA BANNER
================================================ */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner p {
  color: #777;
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}


/* ================================================
   29. CONTACT CARDS
================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  text-align: center;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 1.5rem;
  transition: all 0.35s;
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--white30);
  box-shadow: 0 0 50px rgba(255,255,255,0.12);
  transform: translateY(-6px);
}
.contact-card i {
  color: #fff;
  margin-bottom: 1rem;
  transition: transform 0.4s var(--bounce);
  display: block;
}
.contact-card:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 25px rgba(255,255,255,0.55));
}
.contact-card h3 {
  font-family: var(--font-h);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.contact-card p { color: #888; font-size: 0.88rem; }
.contact-card small {
  color: var(--muted);
  font-size: 0.73rem;
  display: block;
  margin-top: 0.25rem;
}


/* ================================================
   30. TABS (hire.html / showcase.html)
================================================ */
.tabs-wrap { position: relative; }
.tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.tabs-nav [data-tab] {
  padding: 0.55rem 1.4rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
  font-family: var(--font-b);
}
.tabs-nav [data-tab]:hover {
  border-color: var(--white30);
  color: #fff;
}
.tabs-nav [data-tab].active {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: var(--glow-sm);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp 0.4s ease; }


/* ================================================
   31. FORM ELEMENTS (hire.html)
================================================ */
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  color: var(--white60);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.form-group label .req { color: #fff; }

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  border-color: var(--white30);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select.form-control option { background: #111; color: #fff; }


/* ================================================
   32. PROGRESS BARS
================================================ */
.prog-bar {
  background: var(--white08);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.prog-bar-fill {
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
  transition: width 1.2s var(--ease);
}


/* ================================================
   33. GLITCH TEXT
================================================ */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: #fff;
}
.glitch::before {
  animation: glitchA 3s infinite linear;
  opacity: 0.6;
}
.glitch::after {
  animation: glitchB 3s infinite linear;
  opacity: 0.4;
}


/* ================================================
   34. PING BADGE (online indicator)
================================================ */
.ping-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ping-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: ping 1.5s ease-out infinite;
}


/* ================================================
   35. SCROLL TOP BUTTON
================================================ */
#scrolltop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 8000;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
  cursor: pointer;
}
#scrolltop.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
#scrolltop:hover {
  border-color: var(--white30);
  box-shadow: var(--glow-md);
}


/* ================================================
   36. FOOTER
================================================ */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.2rem, 4vw, 3rem) 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.foot-brand {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.foot-tag { color: var(--muted); font-size: 0.82rem; margin-bottom: 1.5rem; }
.foot-links {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.foot-links a { color: var(--muted); font-size: 0.82rem; transition: color 0.2s; }
.foot-links a:hover { color: #fff; }
.foot-copy { color: #2e2e2e; font-size: 0.72rem; }


/* ================================================
   37. UTILITY CLASSES
================================================ */

/* Display */
.d-flex    { display: flex; }
.d-grid    { display: grid; }
.d-none    { display: none; }
.d-block   { display: block; }

/* Flex helpers */
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap     { flex-wrap: wrap; }
.flex-col      { flex-direction: column; }
.gap-sm        { gap: 0.75rem; }
.gap-md        { gap: 1.5rem; }
.gap-lg        { gap: 2.5rem; }

/* Text */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-muted    { color: var(--muted); }
.text-white    { color: #fff; }
.text-sm       { font-size: 0.85rem; }
.text-xs       { font-size: 0.75rem; }
.text-lg       { font-size: 1.15rem; }
.fw-bold       { font-weight: 700; }
.fw-black      { font-weight: 900; }
.font-mono     { font-family: var(--font-mono); }
.font-h        { font-family: var(--font-h); }
.uppercase     { text-transform: uppercase; }
.ls-wide       { letter-spacing: 0.1em; }

/* Spacing */
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-5  { margin-top: 3rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-5  { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Border */
.border-top    { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* Highlight box */
.highlight-box {
  background: var(--white04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
}
.highlight-box.glow-border { border-color: var(--white15); }


/* ================================================
   38. RESPONSIVE — MOBILE NAVIGATION
================================================ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); right: -100%;
    flex-direction: column;
    align-items: flex-start;
    width: 280px;
    height: calc(100vh - var(--nav-h));
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-left: 1px solid var(--border);
    transition: right 0.35s var(--ease);
    z-index: 8999;
    overflow-y: auto;
  }
  .nav-links.open  { right: 0; }
  .nav-invite      { display: none; }
  .nav-toggle      { display: block; }
}


/* ================================================
   39. RESPONSIVE — GENERAL
================================================ */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row   { grid-template-columns: 1fr; }
  .process-row::before { display: none; }
  .timeline   { padding-left: 2rem; }
  .tl-dot     { left: -26px; }
}

@media (max-width: 600px) {
  .hero-btns  { flex-direction: column; align-items: center; }
  .stats-strip { gap: 1.5rem; }
  .process-row { flex-direction: column; align-items: center; }
  .proc-step  { max-width: 260px; }
  .form-box   { padding: 1.5rem; }
  .btn        { padding: 0.75rem 1.6rem; font-size: 0.85rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .sec-title { font-size: 1.5rem; }
  .page-hero-title { font-size: 2.2rem; }
  .tabs-nav [data-tab] { padding: 0.45rem 1rem; font-size: 0.78rem; }
}


/* ================================================
   40. REDUCED MOTION
================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
