/* ==============================================================================
   INFLUENCERS.CITY - DIGITAL CITY DESIGN SYSTEM
   Theme: Cyber-Luxury, Cinematic Dark, Electric Violet & Neon Cyan Accents
   Two-Tier Desktop Header (Logo on top row, full-width menu below logo)
   Mobile Hamburger Drawer Navigation
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg-main: #06080d;
  --bg-secondary: #0c101a;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(26, 34, 54, 0.85);
  --bg-glass: rgba(12, 16, 26, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);
  --border-cyan-glow: rgba(0, 240, 255, 0.3);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-cyan: #00f0ff;
  --accent-violet: #8b5cf6;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --accent-gold: #f59e0b;
  --accent-emerald: #10b981;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  
  --gradient-neon: linear-gradient(135deg, #00f0ff 0%, #8b5cf6 50%, #d946ef 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gradient-card: linear-gradient(180deg, rgba(22, 29, 46, 0.6) 0%, rgba(12, 16, 26, 0.8) 100%);
  
  --shadow-neon: 0 0 25px rgba(0, 240, 255, 0.15), 0 0 45px rgba(139, 92, 246, 0.15);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient Digital City Background Grid & Glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(0, 240, 255, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(217, 70, 239, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-purple);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(139, 92, 246, 0.55);
}

.btn-neon {
  background: var(--gradient-neon);
  color: #06080d;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 240, 255, 0.4);
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(0, 240, 255, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-violet);
  color: var(--accent-cyan);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-ai {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--accent-cyan);
}

.badge-robot {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
}

.badge-managed {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c084fc;
}

.badge-verified {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
}

/* ==============================================================================
   HEADER COMPONENT (Two-Tier Desktop Architecture & Mobile Hamburger)
   ============================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 8, 13, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
}

/* Top Tier: Logo, Search, Selectors, Join CTA */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.city-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.city-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-neon);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06080d;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.city-logo .logo-text {
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.city-logo .logo-domain {
  color: var(--accent-cyan);
  font-size: 17px;
  font-weight: 700;
}

.city-logo .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseGlow 2s infinite;
  margin-left: 4px;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 4px var(--accent-emerald); }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--accent-emerald); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 4px var(--accent-emerald); }
}

/* Header Top Search Bar */
.header-search {
  flex: 1;
  max-width: 480px;
  margin: 0 28px;
  position: relative;
}

.header-search form {
  position: relative;
  width: 100%;
}

.header-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 9px 42px 9px 16px;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13.5px;
  outline: none;
  transition: all var(--transition-fast);
}

.header-search input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}

.header-search .search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search .search-btn:hover {
  color: var(--accent-cyan);
}

/* Header Top Actions (Lang, Curr, Join, Login) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.select-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.select-pill:hover {
  border-color: var(--accent-violet);
  color: #fff;
}

/* Hamburger Toggle Button (Hidden on Desktop) */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Bottom Tier: Full-Width Desktop Navigation Bar (Positioned Below Logo) */
.header-nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav-bar::-webkit-scrollbar {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link .nav-pill-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--gradient-purple);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}

.nav-link .nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

/* Dropdown Sub-menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(12, 16, 26, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.dropdown-link i {
  width: 16px;
  color: var(--accent-violet);
}

/* ==============================================================================
   MOBILE DRAWER (Accessible Hamburger Off-Canvas)
   ============================================================================== */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: #090c14;
  border-left: 1px solid var(--border-subtle);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-search {
  margin-bottom: 20px;
}

.drawer-search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 14px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  transition: background var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan);
}

.drawer-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 14px 14px 6px 14px;
}

.drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* ==============================================================================
   HERO COMPONENT
   ============================================================================== */

.hero-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-left {
  top: 10%;
  left: -10%;
  background: rgba(139, 92, 246, 0.2);
}

.hero-glow-right {
  top: 30%;
  right: -10%;
  background: rgba(0, 240, 255, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 740px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-sub-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.hero-sub-categories span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-sub-categories .bullet {
  color: var(--accent-violet);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================================================================
   SECTION HEADINGS & GRIDS
   ============================================================================== */

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-tag {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 8px;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ==============================================================================
   CREATOR CARD COMPONENT (Digital City Card)
   ============================================================================== */

.creator-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.creator-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-neon);
}

.card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.creator-card:hover .card-media img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.city-score-meter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(6, 8, 13, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-profession {
  color: var(--accent-violet);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.card-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-location {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px;
  border-radius: var(--radius-md);
  margin-top: auto;
  text-align: center;
}

.stat-item .stat-value {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.stat-item .stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

/* ==============================================================================
   POTENTIAL ASSESSMENT BANNER (YOU DON'T NEED MILLIONS OF FOLLOWERS)
   ============================================================================== */

.manifesto-banner {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 8, 13, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-neon);
}

.manifesto-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.manifesto-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.manifesto-desc {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 28px;
}

/* ==============================================================================
   CITY MISSIONS CARDS
   ============================================================================== */

.missions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.mission-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.mission-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mission-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mission-reward {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fbbf24;
}

.mission-deliverables {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ==============================================================================
   FOOTER (Digital City Section 85 Finale)
   ============================================================================== */

.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-cinematic-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-quote {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}

.footer-subquote {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 13.5px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================== */

@media (max-width: 1080px) {
  /* On tablets/smaller desktops, activate hamburger menu to guarantee no overflow */
  .header-nav-bar {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .header-search {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .header-actions .select-pill,
  .header-actions .btn-outline {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .manifesto-banner {
    padding: 28px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}
