/* ==========================================================================
   MANOJ K. | TOP RATED FULL STACK DEVELOPER & WORDPRESS EXPERT
   Ultra-Luxury Cyber-Obsidian Design System (Dark Mode Default)
   100% Upwork Terms of Service Compliant
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Default: Dark Obsidian Luxury */
  --bg-base: #040711;
  --bg-surface: #090f1e;
  --bg-elevated: #0d1527;
  --bg-card: rgba(13, 22, 40, 0.75);
  --bg-card-hover: rgba(20, 34, 62, 0.92);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(99, 102, 241, 0.5);
  --border-glow: rgba(99, 102, 241, 0.3);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #050814;

  /* Accents */
  --accent-primary: #6366f1;
  --accent-primary-hover: #4f46e5;
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 35%, #8b5cf6 70%, #ec4899 100%);
  --accent-cyan: #00f2fe;
  --accent-emerald: #10b981;
  --accent-gold: #f59e0b;
  --accent-upwork: #14a800;
  --accent-upwork-glow: rgba(20, 168, 0, 0.45);

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 50px -12px rgba(0, 0, 0, 0.7);
  --shadow-neon: 0 0 35px -5px rgba(0, 242, 254, 0.35);
  --glass-blur: blur(20px);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Menlo, Consolas, monospace;

  /* Animation Timings */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
}

/* Optional Light Theme Override */
[data-theme="light"] {
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-elevated: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;

  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-active: rgba(99, 102, 241, 0.5);
  --border-glow: rgba(99, 102, 241, 0.15);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 35px -8px rgba(15, 23, 42, 0.12);
  --shadow-neon: 0 0 25px -4px rgba(99, 102, 241, 0.15);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark light;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent-upwork);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   3. Star Constellation Canvas & Ambient Mesh FX
   -------------------------------------------------------------------------- */
.bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.ambient-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.24;
  animation: orbFloat 22s infinite alternate ease-in-out;
}

.orb-1 {
  width: 750px;
  height: 750px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
}

.orb-2 {
  width: 850px;
  height: 850px;
  top: 35%;
  left: -250px;
  background: radial-gradient(circle, #00f2fe 0%, rgba(0, 242, 254, 0) 70%);
  animation-duration: 26s;
  animation-delay: -6s;
}

.orb-3 {
  width: 650px;
  height: 650px;
  bottom: 5%;
  right: -100px;
  background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0) 70%);
  animation-duration: 20s;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -35px) scale(1.1); }
  100% { transform: translate(-35px, 45px) scale(0.92); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.75rem;
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   4. Floating Navigation Dock
   -------------------------------------------------------------------------- */
.dock-container {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding-inline: 1rem;
  pointer-events: none;
}

.nav-dock {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.45rem 0.75rem 0.45rem 1.25rem;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: all var(--transition-normal);
}

.dock-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-avatar-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-avatar-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--accent-gradient);
  filter: blur(4px);
  opacity: 0.7;
  z-index: 0;
}

.brand-avatar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #090e1a;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 0.925rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-badge-upwork {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 0.04em;
}

.dock-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.dock-link {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.dock-link:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.06);
}

.dock-link.active {
  color: var(--text-primary);
  background-color: rgba(99, 102, 241, 0.16);
  font-weight: 600;
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Status Badge */
.status-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-emerald);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  opacity: 0.7;
  animation: pulsePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulsePing {
  0% { transform: scale(1); opacity: 0.8; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  color: var(--text-primary);
  border-color: var(--border-active);
  transform: translateY(-1px);
}

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

.mobile-only {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 5rem;
  left: 1rem;
  right: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: var(--glass-blur);
  z-index: 999;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-nav-link {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color var(--transition-fast);
}

.mobile-nav-link:hover {
  background-color: rgba(99, 102, 241, 0.1);
}

/* --------------------------------------------------------------------------
   5. Buttons & Global Micro-Styles
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.05rem; font-weight: 700; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-active);
  transform: translateY(-2px);
}

.btn-upwork-nav {
  background: #14a800;
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(20, 168, 0, 0.3);
}

.btn-upwork-nav:hover {
  background: #129600;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(20, 168, 0, 0.45);
}

.btn-upwork-glow {
  position: relative;
  background: #14a800;
  color: #ffffff;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(20, 168, 0, 0.45);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.btn-upwork-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(20, 168, 0, 0.65);
  background: #129600;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.neon-text-gradient {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 35%, #a855f7 70%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(79, 172, 254, 0.35));
}

.text-accent { color: var(--accent-primary); }
.text-gold { color: var(--accent-gold); }
.text-emerald { color: var(--accent-emerald); }
.text-cyan { color: var(--accent-cyan); }

/* Spotlight Card */
.spotlight-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  overflow: hidden;
  transition: transform var(--transition-spring), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    650px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(0, 242, 254, 0.14),
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
}

.spotlight-card:hover::before { opacity: 1; }

.spotlight-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-neon);
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.bg-elevated {
  background-color: var(--bg-elevated);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.75rem auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 242, 254, 0.25);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. Hero Section & Cockpit Card
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 9rem;
  padding-bottom: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill-wrapper {
  margin-bottom: 1.75rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.hero-pill:hover {
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.upwork-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-upwork);
}

.pill-gold { color: #fbbf24; font-weight: 800; }
.pill-white { color: var(--text-primary); }
.pill-muted { color: var(--text-secondary); }
.pill-separator { color: var(--border-subtle); }
.pill-arrow { color: #fbbf24; font-size: 0.95rem; }

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.85rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-subtitle strong { color: var(--text-primary); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.compliance-banner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  color: var(--accent-emerald);
  margin-bottom: 2.5rem;
}

.stats-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-card { display: flex; flex-direction: column; }
.stat-value { font-size: 1.65rem; font-weight: 800; color: var(--text-primary); }
.stat-label { font-size: 0.785rem; color: var(--text-secondary); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background-color: var(--border-subtle); }

.cockpit-card-wrapper { position: relative; }

.cockpit-card {
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(20, 32, 58, 0.8), rgba(9, 15, 30, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(99, 102, 241, 0.3);
}

.cockpit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.cockpit-user { display: flex; align-items: center; gap: 0.85rem; }

.cockpit-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.4);
}

.cockpit-name {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.verified-check { color: #10b981; font-weight: 900; font-size: 0.9rem; }
.cockpit-role { font-size: 0.8125rem; color: var(--text-secondary); }

.cockpit-top-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  color: #fbbf24;
}

.cockpit-gold-star { font-size: 0.85rem; }

.cockpit-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.c-metric { display: flex; flex-direction: column; }
.c-label { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; }
.c-val { font-size: 1.15rem; font-weight: 800; margin-top: 0.15rem; }

.cockpit-live-feed {
  background: #070c17;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.feed-content { display: flex; flex-direction: column; gap: 0.55rem; }
.feed-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8125rem; color: #e2e8f0; }
.feed-icon { font-size: 0.9rem; }

.cockpit-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0; }

.orbit-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.orbit-tag:hover { color: #fff; border-color: var(--accent-cyan); transform: translateY(-2px); }
.tag-wp { color: #60a5fa; border-color: rgba(96, 165, 250, 0.3); }
.tag-woo { color: #a855f7; border-color: rgba(168, 85, 247, 0.3); }
.tag-lar { color: #f87171; border-color: rgba(248, 113, 113, 0.3); }
.tag-react { color: #38bdf8; border-color: rgba(56, 189, 248, 0.3); }
.tag-biz { color: #22d3ee; border-color: rgba(34, 211, 238, 0.3); }
.tag-saas { color: #f472b6; border-color: rgba(244, 114, 182, 0.3); }
.tag-seo { color: #4ade80; border-color: rgba(74, 222, 128, 0.3); }

.cockpit-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(20, 168, 0, 0.15);
  border: 1px solid rgba(20, 168, 0, 0.35);
  border-radius: var(--radius-md);
  color: #22c55e;
  font-weight: 700;
  font-size: 0.925rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cockpit-cta-btn:hover {
  background: #14a800;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 168, 0, 0.4);
}

.cockpit-cta-btn .cta-arrow { transition: transform var(--transition-fast); }
.cockpit-cta-btn:hover .cta-arrow { transform: translateX(4px); }

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: var(--glass-blur);
  z-index: 2;
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.float-badge-1 { top: -15px; right: -25px; }
.float-badge-2 { bottom: -20px; left: -25px; animation-delay: -2.5s; }

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.float-icon { font-size: 1.25rem; }
.float-badge strong { display: block; font-size: 0.85rem; }
.float-badge span { display: block; font-size: 0.7rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   7. Marquee Ticker
   -------------------------------------------------------------------------- */
.tech-marquee-wrapper {
  overflow: hidden;
  padding: 1.25rem 0;
  background: rgba(10, 16, 30, 0.6);
  border-block: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
}

.tech-marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}

.marquee-item span { font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   8. About Me Section
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
}

.about-card {
  display: flex;
  flex-direction: column;
}

.about-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 242, 254, 0.25);
  margin-bottom: 1.25rem;
}

.about-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-bio-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-stats-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.about-chip {
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.chip-number {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-cyan);
}

.chip-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.why-icon {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.why-list p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Services Grid
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.75rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.icon-wp { background: rgba(0, 115, 170, 0.15); color: #00a0d2; border: 1px solid rgba(0, 115, 170, 0.3); }
.icon-code { background: rgba(99, 102, 241, 0.15); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.3); }
.icon-repair { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.icon-speed { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.icon-security { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.icon-design { background: rgba(217, 70, 239, 0.15); color: #e879f9; border: 1px solid rgba(217, 70, 239, 0.3); }
.icon-biz { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.3); }
.icon-react { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.icon-saas { background: rgba(236, 72, 153, 0.15); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.3); }
.icon-seo { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-points {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   10. Skills Section
   -------------------------------------------------------------------------- */
.stack-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.stack-card { display: flex; flex-direction: column; }
.stack-card-header { margin-bottom: 0.75rem; }

.stack-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.stack-badge.frontend { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.stack-badge.backend { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.stack-badge.database { background: rgba(234, 179, 8, 0.15); color: #facc15; }
.stack-badge.devops { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.stack-badge.business { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.stack-badge.saas { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.stack-badge.seo { background: rgba(34, 197, 94, 0.15); color: #4ade80; }

.stack-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.35rem; }
.stack-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 1.25rem; flex-grow: 1; }

.skills-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.skill-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.skill-tag:hover {
  border-color: var(--border-active);
  background: rgba(99, 102, 241, 0.12);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   11. Projects Grid with Browser Mockup Windows
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-active);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
  font-weight: 600;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.25rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.mockup-frame {
  background: #080d19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.project-card:hover .mockup-frame { transform: scale(1.02); }

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.85rem;
  background: #0c1424;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 8px; height: 8px; border-radius: 50%; }

.mockup-banner {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.banner-woo { background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); }
.banner-lar { background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%); }
.banner-corp { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.banner-rec { background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); }
.banner-real { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.banner-speed { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); }

.banner-badge {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.8rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.project-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
}

.project-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
}

.project-tagline {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.project-metric-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #67e8f9;
  margin-bottom: 1.25rem;
}

.metric-bolt { color: var(--accent-cyan); }
.project-stack { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: auto; margin-bottom: 0; }

.stack-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   12. Testimonials (Real Upwork Quotes)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.review-stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-stars span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Upwork Hire Hub
   -------------------------------------------------------------------------- */
.upwork-funnel-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 3.5rem;
  text-align: center;
}

.funnel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(20, 168, 0, 0.12);
  border: 1px solid rgba(20, 168, 0, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 1.5rem;
}

.funnel-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.funnel-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  text-align: left;
}

.funnel-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.funnel-step h4 { font-size: 0.925rem; font-weight: 700; margin-bottom: 0.25rem; }
.funnel-step p { font-size: 0.785rem; color: var(--text-secondary); line-height: 1.4; }
.brief-box { text-align: left; }
.brief-label { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }

.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  margin-bottom: 1.5rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-textarea:focus {
  border-color: var(--accent-upwork);
  box-shadow: 0 0 0 3px rgba(20, 168, 0, 0.2);
}

/* --------------------------------------------------------------------------
   14. Toast & Dialog
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: #0d1424;
  color: #ffffff;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.25);
  font-size: 0.875rem;
  font-weight: 500;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toast-exit { animation: toastSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes toastSlideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes toastSlideOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(20px); opacity: 0; } }

.project-dialog {
  border: none;
  background: transparent;
  padding: 1.5rem;
  max-width: 700px;
  width: 90vw;
  margin: auto;
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: backdropFadeIn 0.25s ease forwards;
}

.dialog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(99, 102, 241, 0.2);
  animation: modalScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScaleIn { from { opacity: 0; transform: scale(0.96) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes backdropFadeIn { from { opacity: 0; } to { opacity: 1; } }

.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.dialog-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 0.35rem; }
.dialog-title { font-size: 1.65rem; font-weight: 800; letter-spacing: -0.02em; }

.dialog-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dialog-close-btn:hover { color: var(--text-primary); border-color: var(--border-active); background: rgba(99, 102, 241, 0.2); }
.dialog-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.modal-section { margin-bottom: 1.5rem; }
.modal-section h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.modal-highlights { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.925rem; color: var(--text-primary); }
.modal-highlights li::before { content: '✓ '; color: var(--accent-emerald); font-weight: 700; }

.modal-metric-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.925rem;
}

.metric-star { color: var(--accent-emerald); font-size: 1.25rem; }
.dialog-footer { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--border-subtle); }

/* --------------------------------------------------------------------------
   15. Footer & Media Queries
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 4rem 0 3rem 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copy { font-size: 0.875rem; color: var(--text-secondary); margin-top: 0.65rem; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }

.build-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.build-badge:hover { background: rgba(16, 185, 129, 0.2); }
.copyright { font-size: 0.8125rem; color: var(--text-muted); }

@media (max-width: 1080px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .cockpit-card-wrapper { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 992px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .funnel-steps { grid-template-columns: 1fr; }
  .upwork-funnel-card { padding: 2rem 1.5rem; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 768px) {
  .dock-links, .hide-mobile { display: none; }
  .mobile-only { display: inline-flex; }
  .stats-ribbon { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .float-badge { display: none; }
  .hero-section { padding-top: 7rem; }
}
