/* ==========================================
   QUIGGS — Complete Redesign 2026
   Bold. Exciting. Alive.
   ========================================== */

:root {
  --indigo: #4F46E5;
  --indigo-dark: #3730A3;
  --indigo-light: #6366F1;
  --violet: #7C3AED;
  --orange: #F97316;
  --orange-warm: #FFA500;
  --dark: #0A0A0F;
  --dark-card: #12121A;
  --dark-border: rgba(255,255,255,0.07);
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --surface: #FFFFFF;
  --bg: #F8FAFC;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 50%, #E2E8F0 100%);
  overflow-x: hidden;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  inset-block-start: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.logo-mark:not(.logo-mark-img) {
  width: 38px;
  height: 38px;
  background: var(--indigo);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}
.logo-mark svg { width: 20px; height: 20px; }

.logo-mark-sm:not(.logo-mark-img) { width: 32px; height: 32px; border-radius: 8px; }
.logo-mark-sm svg { width: 16px; height: 16px; }

.logo-mark-sm.logo-mark-img {
  max-height: 20px;
  max-width: min(96px, 44vw);
  width: auto;
  height: auto;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.logo-dot { color: var(--indigo); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: all 0.15s;
}

.nav a:hover {
  color: var(--text-dark);
  background: rgba(0,0,0,0.04);
}

.nav-cta {
  background: var(--indigo) !important;
  color: white !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 99px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--indigo-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,70,229,0.3) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: all 0.3s;
}


/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #F0F4FF;
}

/* Animated mesh background */
.mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: orbFloat 18s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.4) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.3) 0%, transparent 70%);
  top: 50px; right: -100px;
  animation-delay: -6s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  bottom: 0; left: 30%;
  animation-delay: -12s;
}
.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,165,0,0.25) 0%, transparent 70%);
  bottom: 100px; right: 30%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -60px) scale(1.05); }
  50% { transform: translate(-30px, 30px) scale(0.98); }
  75% { transform: translate(20px, 50px) scale(1.02); }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

/* Let the text column shrink within the grid (avoids horizontal clip on mobile) */
.hero-text {
  min-width: 0;
  max-width: 100%;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.btn-post {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(79,70,229,0.35);
  transition: all 0.2s;
}
.btn-post svg { width: 18px; height: 18px; }
.btn-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(79,70,229,0.5);
  background: var(--indigo-dark);
}

.btn-browse {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-browse:hover { color: var(--indigo); }

/* Countdown */
.hero-launch {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.launch-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cd-item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}
.cd-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--indigo);
  min-width: 2ch;
  text-align: center;
}
.cd-unit {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: lowercase;
}
.cd-sep {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 0 0.1rem;
  opacity: 0.4;
}

/* Official logo PNG lockup — transparent tray, proportional width */
.logo-lockup-only {
  gap: 0;
}

.logo-mark.logo-mark-img {
  width: auto;
  height: auto;
  max-height: 22px;
  max-width: min(108px, 40vw);
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}
.logo-mark-img {
  border: none;
}
.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero-h1-em {
  display: inline;
}

/* Magnified countdown */
.hero-launch-card {
  margin-top: 0.75rem;
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1.25rem, 4vw, 1.75rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.96) 0%, rgba(239,246,255,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: var(--r-xl);
  box-shadow:
    0 20px 56px rgba(79,70,229,0.14),
    0 0 0 1px rgba(79,70,229,0.06),
    inset 0 1px 0 rgba(255,255,255,1);
  align-items: stretch;
  gap: clamp(1.25rem, 4vw, 2rem);
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-launch-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
  min-width: min(100%, 180px);
}
.launch-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 14rem;
  line-height: 1.45;
}
.hero-launch-card .launch-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--indigo);
}
.hero-launch-card .countdown {
  gap: 0.45rem;
}
.hero-launch-card .cd-item {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  min-width: 4.75rem;
  justify-content: center;
}
.hero-launch-card .cd-num {
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  min-width: 2.25ch;
}
.hero-launch-card .cd-unit {
  font-size: 0.82rem;
  align-self: flex-end;
  padding-bottom: 2px;
}
.hero-launch-card .cd-sep {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  opacity: 0.35;
}
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.phone-frame {
  width: 310px;
  height: 630px;
  background: #1C1C1E;
  border-radius: 50px;
  border: 8px solid #2C2C2E;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 30px 60px rgba(79,70,229,0.2);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: #1C1C1E;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #F8FAFC;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Screen internals */
.ps-statusbar {
  padding: 14px 20px 4px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: #1C1C1E;
  margin-top: 16px;
}

.ps-appbar {
  display: flex;
  align-items: center;
  padding: 6px 16px 10px;
  gap: 6px;
}
.ps-appbar-spacer {
  flex: 1;
  min-width: 0;
}
.ps-logo-badge {
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ps-logo-badge-wide {
  width: auto;
  min-width: 48px;
  max-width: 76px;
  height: 17px;
}
.ps-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.ps-icons { display: flex; gap: 6px; }
.ps-icon-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
}

.ps-card {
  background: white;
  margin: 0 10px 10px;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ps-card-2 { opacity: 0.6; }

.ps-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ps-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.ps-av1 { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.ps-av2 { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.ps-uname { font-size: 11px; font-weight: 700; color: #0F172A; }
.ps-loc { font-size: 9px; color: #94A3B8; }
.ps-open-badge {
  display: inline-block;
  background: rgba(79,70,229,0.12);
  color: var(--indigo);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  margin-bottom: 4px;
}
.ps-title { font-size: 13px; font-weight: 800; color: #0F172A; margin-bottom: 4px; }
.ps-tags { display: flex; gap: 4px; margin-bottom: 8px; }
.ps-tags span {
  background: #EEF2FF;
  color: #4F46E5;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.ps-row {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.ps-lbl { font-size: 8px; color: #94A3B8; font-weight: 600; margin-bottom: 1px; }
.ps-val { font-size: 11px; font-weight: 800; color: #0F172A; }
.ps-actions { display: flex; gap: 6px; }
.ps-btn-outline {
  flex: 1; border: 1px solid #E2E8F0; border-radius: 8px;
  font-size: 9px; font-weight: 700; text-align: center;
  padding: 6px; color: #475569;
}
.ps-btn-solid {
  flex: 2; background: var(--indigo); border-radius: 8px;
  font-size: 9px; font-weight: 700; text-align: center;
  padding: 6px; color: white;
}

/* Tab Bar */
.ps-tabbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 12px 20px;
  border-top: 1px solid #F1F5F9;
}
.ps-tab { text-align: center; flex: 1; }
.ps-tab-icon { font-size: 16px; margin-bottom: 2px; color: #94A3B8; }
.ps-tab-lbl { font-size: 8px; font-weight: 600; color: #94A3B8; }
.ps-tab-active .ps-tab-icon { color: var(--indigo); }
.ps-tab-active .ps-tab-lbl { color: var(--indigo); }
.ps-fab {
  width: 44px; height: 44px;
  background: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(79,70,229,0.4);
  margin-top: -20px;
  flex-shrink: 0;
}

/* Floating Pills */
.float-pill {
  position: absolute;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 99px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.float-pill-1 { top: 20%; right: -30px; animation: pillFloat1 5s ease-in-out infinite; }
.float-pill-2 { bottom: 22%; left: -40px; animation: pillFloat2 7s ease-in-out infinite; }

@keyframes pillFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pillFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.fp-dot { width: 8px; height: 8px; background: var(--indigo); border-radius: 50%; }
.fp-star { color: var(--orange-warm); font-size: 0.9rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--indigo));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  position: relative;
  z-index: 5;
  background: rgba(79,70,229,0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  padding: 14px 0;
}

.stats-track {
  display: flex;
  gap: 0;
  animation: ticker 55s linear infinite;
  width: max-content;
}

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

.stat-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0 2rem;
  white-space: nowrap;
}
.stat-item strong { color: white; font-weight: 800; }
.stat-sep {
  color: rgba(255,255,255,0.3);
  font-size: 1.25rem;
  align-self: center;
}


/* ==========================================
   AI SECTION
   ========================================== */
.ai-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(160deg, #06060E 0%, #0D0D1A 50%, #0A0A14 100%);
  overflow: hidden;
}

/* Animated background orbs */
.ai-bg { position: absolute; inset: 0; pointer-events: none; }

.ai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 20s ease-in-out infinite;
}
.ai-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.ai-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  bottom: -100px; right: 10%;
  animation-delay: -8s;
}
.ai-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation-delay: -4s;
}

/* Layout */
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Chip */
.ai-chip {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0 0 0.45rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(129, 140, 248, 0.42);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(226, 232, 255, 0.9);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  line-height: 1.35;
}

/* Heading */
.ai-h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.5rem;
}
.ai-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #818CF8 0%, #A78BFA 50%, #F9A8D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Feature bullets */
.ai-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ai-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.ai-bullets li:hover {
  border-color: rgba(99,102,241,0.35);
  background: rgba(79,70,229,0.08);
}

.ai-bullet-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,70,229,0.15);
  border-radius: 10px;
  border: 1px solid rgba(79,70,229,0.25);
  color: #A5B4FC;
}

.ai-bullets strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}
.ai-bullets span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ---- AI Demo Card ---- */
.ai-demo {
  position: relative;
}

.ai-demo-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(99,102,241,0.15) inset,
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.ai-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.ai-demo-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #A5B4FC;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ai-demo-label-dot {
  width: 8px; height: 8px;
  background: #818CF8;
  border-radius: 50%;
  box-shadow: 0 0 8px #818CF8;
  animation: pulse 2s infinite;
}
.ai-demo-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* Gig row */
.ai-match-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
}
.ai-match-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.ai-match-meta { flex: 1; }
.ai-match-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}
.ai-match-location {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.4);
}
.ai-match-location svg { width: 11px; height: 11px; }
.ai-match-price {
  font-size: 1rem;
  font-weight: 800;
  color: #C7D2FE;
}

/* Match score bar */
.ai-score-section { margin-bottom: 1.25rem; }

.ai-score-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ai-score-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.45); }
.ai-score-value { font-size: 1rem; font-weight: 900; color: #A5B4FC; }

.ai-score-track {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.ai-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #4F46E5, #818CF8, #A78BFA);
  border-radius: 99px;
  position: relative;
  animation: fillGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 12px rgba(129,140,248,0.5);
}
@keyframes fillGrow {
  from { width: 0 !important; }
}
.ai-score-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Score breakdown */
.ai-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  padding: 1rem;
}
.ai-breakdown-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ai-bd-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  width: 60px;
  flex-shrink: 0;
}
.ai-bd-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.ai-bd-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366F1, #818CF8);
  border-radius: 99px;
  animation: fillGrow 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ai-bd-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: #A5B4FC;
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Auto-apply pill */
.ai-auto-apply {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.ai-auto-icon {
  display: flex;
  align-items: center;
  color: #A5B4FC;
  flex-shrink: 0;
}
.ai-auto-apply span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #C7D2FE;
}

/* Card action buttons */
.ai-card-actions {
  display: flex;
  gap: 0.75rem;
}

.ai-btn-outline {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.ai-btn-outline:hover {
  border-color: rgba(99,102,241,0.5);
  color: white;
  background: rgba(79,70,229,0.1);
}

.ai-btn-solid {
  flex: 2;
  padding: 0.75rem;
  background: var(--indigo);
  color: white;
  border: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
}
.ai-btn-solid:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79,70,229,0.5);
}

/* Floating badges */
.ai-float {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.ai-float-1 {
  bottom: -16px;
  left: -20px;
  animation: pillFloat2 6s ease-in-out infinite;
}
.ai-float-2 {
  top: -16px;
  right: -20px;
  animation: pillFloat1 5s ease-in-out infinite;
}
.ai-float-num {
  font-size: 1rem;
  font-weight: 900;
  color: #A5B4FC;
}

/* Responsive */
@media (max-width: 900px) {
  .ai-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .ai-demo { order: -1; }
  .ai-float { display: none; }
}

/* ==========================================
   HOW IT WORKS — DARK
   ========================================== */
.how-dark {
  background: linear-gradient(180deg, #0A0A0F 0%, #0F0F18 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.how-dark::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(79,70,229,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Editorial section label — underline kicker (no capsule / pill) */
.section-chip {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0 0 0.45rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(79, 70, 229, 0.35);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #475569;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  line-height: 1.35;
}

.how-dark .section-chip {
  color: rgba(203, 213, 245, 0.88);
  border-bottom-color: rgba(129, 140, 248, 0.45);
}

.section-h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.section-h2-light { color: white; }

.section-h2 em {
  font-style: normal;
  color: var(--indigo);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-big {
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}

.step-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
  opacity: 0;
  transition: opacity 0.3s;
}

.step-big:hover {
  transform: translateY(-6px);
  border-color: rgba(79,70,229,0.3);
}
.step-big:hover::before { opacity: 1; }

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.step-big h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.step-big p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}


/* ==========================================
   DISCOVER / GIG CARDS
   ========================================== */
.discover {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.5) 0%, rgba(241,245,249,0.8) 100%);
}

.discover-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.filter-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 2rem;
  padding: 3px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.fpill {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  box-shadow: none;
}
.fpill:hover {
  color: var(--indigo);
  background: rgba(79, 70, 229, 0.06);
}
.fpill.active {
  background: #0f172a;
  color: #fff;
}

.gig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gig-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
}

.gig-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(79,70,229,0.1);
}
.gig-card:hover::after { opacity: 1; }

.gig-card-accent {
  background: rgba(238,242,255,0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(199,210,254,0.6);
}

.gig-card-dark {
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
  border-color: #C7D2FE;
}

.gc-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.gc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.gc-meta { flex: 1; }
.gc-name { font-size: 0.925rem; font-weight: 700; color: var(--text-dark); }
.gc-loc {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.gc-loc svg { width: 11px; height: 11px; }

.gc-badge {
  background: rgba(79,70,229,0.12);
  color: var(--indigo);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gc-badge-alt {
  background: #EEF2FF;
  color: var(--indigo);
}

.gc-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.gc-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.gc-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.gc-tags span {
  background: #F1F5F9;
  color: var(--indigo);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.gc-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.gc-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.gc-deadline {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.gc-apply {
  background: var(--indigo);
  color: white;
  border: none;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.gc-apply:hover {
  background: var(--indigo-dark);
  transform: translateX(2px);
}
.gc-apply-light {
  background: white;
  color: var(--indigo);
}
.gc-apply-light:hover { background: #F5F3FF; }


/* ==========================================
   MAP
   ========================================== */
.map-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.6) 0%, rgba(241,245,249,0.9) 100%);
}

.map-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.map-shell {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.map-filter-row {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(226,232,240,0.6);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.map-select {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.92);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.map-select:focus { border-color: var(--indigo); }

#map { width: 100%; height: 450px; }

.map-badge {
  position: relative;
  margin: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(255,255,255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.07);
}
.map-dot {
  width: 6px;
  height: 6px;
  background: var(--indigo);
  border-radius: 1px;
  box-shadow: none;
  animation: none;
}


/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #0A0A0F 0%, #12121A 100%);
  position: relative;
  overflow: hidden;
}

.cta-mesh {
  position: absolute;
  inset: 0;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: rgba(79,70,229,0.35);
  top: -150px; right: -100px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: rgba(249,115,22,0.2);
  bottom: -100px; left: -50px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0 0 0.45rem;
  border-bottom: 2px solid rgba(129, 140, 248, 0.4);
  font-size: 0.6875rem;
  font-weight: 800;
  color: rgba(226, 232, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  line-height: 1.35;
}

.cta-h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-body {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--indigo);
  color: white;
  padding: 1.125rem 2.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(79,70,229,0.4);
  transition: all 0.2s;
}
.cta-btn-primary svg { width: 20px; height: 20px; }
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(79,70,229,0.6);
}

.cta-btn-ghost {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  padding: 1.125rem 1rem;
}
.cta-btn-ghost:hover { color: white; }


/* ==========================================
   SITE BLURBS — quick nav (SVG icons)
   ========================================== */
/* ============ PROMO VIDEO ============ */
.promo-video-section {
  background: #0a0a0f;
  padding: 96px 0 80px;
}
.promo-video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.promo-video-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0 0 0.45rem;
  border-bottom: 2px solid rgba(99, 102, 241, 0.5);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(226, 232, 255, 0.88);
  line-height: 1.35;
}
.promo-video-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.promo-video-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin: 0 0 28px;
  max-width: 500px;
}
.promo-video-wrap {
  position: relative;
  width: 100%;
  max-width: 840px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(99,102,241,0.25), 0 32px 80px rgba(0,0,0,0.7);
  background: #111;
}
.promo-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.promo-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.promo-play-btn {
  pointer-events: all;
  background: rgba(79,70,229,0.85);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, transform 0.2s, background 0.2s;
  transform: scale(0.9);
}
.promo-video-wrap:hover .promo-play-btn {
  opacity: 1;
  transform: scale(1);
}
.promo-play-btn:hover {
  background: #4F46E5;
}
.promo-play-btn.is-paused {
  opacity: 1;
  transform: scale(1);
}

/* ============ ON-PAGE NAV (editorial, no icon grid) ============ */
.jump-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.25rem, 6vw, 5.25rem);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(79,70,229,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #fbfbff 0%, #f4f3fa 52%, #f8fafc 100%);
  border-top: 1px solid rgba(15,23,42,0.055);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.jump-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
}

.jump-intro {
  position: sticky;
  top: 6.5rem;
  padding-right: clamp(0px, 2vw, 1rem);
}

.jump-kicker {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(71,85,105,0.72);
  margin: 0 0 1rem;
}

.jump-heading {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin: 0;
}

.jump-heading-accent {
  color: var(--indigo);
  font-weight: 800;
}

.jump-lede {
  margin: 1.125rem 0 0;
  font-size: 0.9625rem;
  line-height: 1.62;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 30ch;
}

.jump-links {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(15,23,42, 0.08);
}

.jump-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 1.625rem);
  align-items: center;
  padding: 1rem 0.35rem 1rem 0;
  border-bottom: 1px solid rgba(15,23,42, 0.07);
  text-decoration: none;
  color: inherit;
  transition:
    padding-left 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.jump-row:hover {
  padding-left: 0.4rem;
  background: linear-gradient(90deg, rgba(79,70,229,0.04) 0%, transparent 45%);
}

.jump-row:focus-visible {
  outline: none;
  box-shadow: inset 3px 0 0 0 var(--indigo);
  background: rgba(79,70,229,0.05);
}

.jump-row:focus-visible .jump-title {
  text-decoration-color: rgba(79,70,229,0.45);
}

.jump-index {
  font-size: 0.6875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.14em;
  color: rgba(100,116,139, 0.5);
}

.jump-main {
  min-width: 0;
}

.jump-title {
  display: block;
  font-weight: 800;
  font-size: clamp(1rem, 1.85vw, 1.0925rem);
  letter-spacing: -0.028em;
  color: var(--text-dark);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.jump-row:hover .jump-title {
  color: var(--indigo-dark);
  text-decoration-color: rgba(79,70,229,0.35);
}

.jump-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8375rem;
  color: rgba(71,85,105, 0.88);
  line-height: 1.42;
  font-weight: 500;
}

.jump-chev {
  font-family: Georgia, ui-serif, serif;
  font-size: 1.0625rem;
  color: rgba(79,70,229, 0.25);
  line-height: 1;
  transition: transform 0.22s ease, color 0.22s ease;
}

.jump-row:hover .jump-chev {
  color: rgba(79,70,229, 0.9);
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .jump-row,
  .jump-chev,
  .jump-title {
    transition: none;
  }
  .jump-row:hover {
    padding-left: inherit;
    background: rgba(79,70,229,0.04);
  }
  .jump-row:hover .jump-chev {
    transform: none;
  }
}

@media (max-width: 820px) {
  .jump-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .jump-intro {
    position: static;
    padding-right: 0;
  }
  .jump-lede {
    max-width: 38ch;
  }
}

@media (max-width: 480px) {
  .jump-row {
    grid-template-columns: 2.25rem minmax(0, 1fr) auto;
    padding-left: 0;
    gap: 0.85rem;
  }
  .jump-row:hover {
    padding-left: 0;
  }
}

/* ==========================================
   ABOUT US
   ========================================== */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(248,250,252,0.9) 0%, rgba(255,255,255,1) 100%);
}
.about-inner .section-chip {
  margin-bottom: 1rem;
}
.about-body {
  margin-top: 2rem;
  max-width: 820px;
}
.about-lede {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.vision-quote {
  margin: 0;
  padding: 2rem 2rem 2rem 1.75rem;
  border-left: 4px solid var(--indigo);
  background: rgba(79,70,229,0.04);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.vision-quote-label {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.vision-quote p:last-child {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ==========================================
   INVESTORS
   ========================================== */
.investors-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, #F8FAFC 0%, #EEF2FF 55%, #F8FAFC 100%);
}
.investors-inner .section-chip {
  margin-bottom: 1rem;
}
.investors-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.investors-intro {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.investor-form {
  max-width: 720px;
  padding: 2rem;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 18px 48px rgba(15,23,42,0.08);
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) {
  .form-row-split {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(226,232,240,1);
  background: rgba(255,255,255,0.95);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.optional {
  font-weight: 500;
  color: var(--text-muted);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-body);
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.form-check input {
  margin-top: 4px;
  accent-color: var(--indigo);
}
.form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  background: var(--indigo);
  color: white;
  box-shadow: 0 10px 28px rgba(79,70,229,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(79,70,229,0.45);
}
.form-submit.secondary {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
}
.form-submit.ghost {
  background: rgba(79,70,229,0.1);
  color: var(--indigo);
  box-shadow: none;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.form-feedback {
  min-height: 1.4em;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  border-radius: 0;
}
.form-feedback--ok {
  color: #16a34a;
}
.form-feedback--error {
  color: #dc2626;
}

/* ==========================================
   NEWS & UPDATES
   ========================================== */
.news-section {
  padding: 6rem 0;
  background: white;
}
.news-inner .section-chip {
  margin-bottom: 1rem;
}
.news-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .news-columns {
    grid-template-columns: 1fr;
  }
}
.news-card {
  padding: 1.75rem;
  border-radius: var(--r-xl);
  background: rgba(248,250,252,0.9);
  border: 1px solid rgba(226,232,240,0.9);
}
.news-card-accent {
  background: rgba(238,242,255,0.95);
  border-color: rgba(199,210,254,0.8);
}
.news-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.news-list {
  padding-left: 1.25rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}
.news-list li + li {
  margin-top: 0.65rem;
}
.news-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--indigo);
  text-decoration: none;
}
.news-link:hover {
  text-decoration: underline;
}

/* ==========================================
   COMMUNITY
   ========================================== */
.community-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}
.community-inner .section-chip {
  margin-bottom: 1rem;
}
.community-lede {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 560px;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}
.signup-card {
  padding: 2rem;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,1);
  box-shadow: 0 14px 40px rgba(15,23,42,0.07);
}
.signup-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.signup-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.signup-card-alt {
  background: linear-gradient(145deg, rgba(79,70,229,0.06), rgba(255,255,255,0.98));
  border-color: rgba(199,210,254,0.6);
}
.form-field.compact {
  margin-bottom: 1rem;
}
.community-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-intro-h2 em {
  font-style: normal;
  color: var(--indigo);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #07070C;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner-wide {
  max-width: 900px;
  margin: 0 auto;
}
.footer-inner-wide > .footer-line,
.footer-inner-wide > .footer-copy {
  text-align: center;
}
.footer-top {
  margin-bottom: 2.5rem;
  text-align: center;
}
.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer-contact {
    grid-template-columns: 1fr;
  }
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-contact-col address {
  font-style: normal;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.footer-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover {
  color: white;
  text-decoration: underline;
}


.footer-inner {
  text-align: center;
}

.footer-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-line {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}


/* ==========================================
   REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }


/* ==========================================
   MAP GIG DETAIL PANEL  (Glass Effect)
   ========================================== */

/* Backdrop */
.map-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.map-panel-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Panel */
.map-panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 520px;
  z-index: 2001;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1rem 1rem;
}

.map-panel.open {
  transform: translateX(-50%) translateY(0);
}

/* On larger screens, position it as a floating card over the map */
@media (min-width: 700px) {
  .map-panel {
    position: absolute;
    bottom: auto;
    top: 50%;
    left: auto;
    right: 1.5rem;
    transform: translateY(-50%) translateX(30px);
    padding: 0;
    max-width: 360px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .map-panel.open {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .map-panel-backdrop {
    display: none; /* no backdrop on desktop — card floats over map */
  }
}

/* The glass card itself */
.map-panel-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(79, 70, 229, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.95);
  overflow: hidden;
  position: relative;
}

/* Category accent stripe at top */
.mp-stripe {
  height: 5px;
  width: 100%;
}

.mp-body {
  padding: 1.5rem 1.5rem 0;
}

/* Header row: avatar + name/location + close */
.mp-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.mp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 2.5px solid white;
}

.mp-user-info { flex: 1; }

.mp-user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.mp-user-loc {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.mp-user-loc svg { width: 11px; height: 11px; flex-shrink: 0; }

.mp-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1;
}
.mp-close:hover { background: rgba(0,0,0,0.12); }

/* Open badge */
.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(79,70,229,0.12);
  color: var(--indigo);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.mp-badge-pulse {
  width: 6px; height: 6px;
  background: var(--indigo);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Job title */
.mp-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

/* Description */
.mp-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Tags */
.mp-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.mp-tags span {
  background: rgba(79, 70, 229, 0.07);
  color: var(--indigo);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(79,70,229,0.1);
}

/* Stats row: payment, location, deadline */
.mp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.mp-stat {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 0.75rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.mp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--indigo);
  opacity: 0.8;
}

.mp-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mp-stat-value {
  font-size: 0.925rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
}

/* Divider */
.mp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
  margin-bottom: 1.25rem;
}

/* Rating row */
.mp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.mp-stars { display: flex; align-items: center; gap: 1px; }
.mp-rating-val { font-weight: 800; font-size: 0.9rem; color: var(--text-dark); }
.mp-rating-reviews { font-size: 0.8rem; color: var(--text-muted); }

/* Action buttons */
.mp-actions {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem 1.5rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(226,232,240,0.5);
}

.mp-btn-ghost {
  flex: 1;
  padding: 0.875rem;
  border-radius: 12px;
  border: 1.5px solid rgba(79,70,229,0.25);
  background: transparent;
  color: var(--indigo);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mp-btn-ghost:hover {
  background: rgba(79,70,229,0.05);
  border-color: var(--indigo);
}

.mp-btn-solid {
  flex: 2;
  padding: 0.875rem;
  border-radius: 12px;
  border: none;
  background: var(--indigo);
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
}
.mp-btn-solid:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79,70,229,0.45);
}

/* Map shell needs relative positioning for the desktop panel */
.map-shell {
  position: relative;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gig-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-h1-em {
    display: inline;
  }
  .hero-sub {
    max-width: 100%;
    margin-inline: auto;
  }
  .hero-actions { justify-content: center; }
  .hero-launch { justify-content: center; }
  .hero-phone {
    order: -1;
    transform: none !important;
    animation: none;
  }
  .phone-frame { width: 260px; height: 520px; }
  .float-pill { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    padding: 2rem;
    gap: 0.5rem;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .hamburger { display: flex; }
  .gig-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cta-btns { flex-direction: column; }
  .cta-btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 680px) {
  .hero-launch-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1rem 0.875rem;
  }
  .hero-launch-col {
    min-width: 0;
    max-width: 100%;
    margin-inline: auto;
  }
  .launch-hint {
    max-width: 100%;
  }
  /* Four units in one row inside the viewport */
  .hero-launch-card .cd-sep {
    display: none;
  }
  .hero-launch-card .countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
  }
  .hero-launch-card .cd-item {
    min-width: 0;
    padding: 0.55rem 0.25rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
  }
  .hero-launch-card .cd-num {
    font-size: clamp(1.15rem, 5.8vw, 1.65rem);
    min-width: 0;
    line-height: 1;
  }
  .hero-launch-card .cd-unit {
    font-size: 0.65rem;
    align-self: center;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 80px 0 60px; }
  /* Tighter headline so long lines wrap inside narrow screens */
  .hero-h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
  .countdown { gap: 0.25rem; }
  .cd-num { font-size: 1rem; }
  .cd-item { padding: 0.4rem 0.6rem; }
}
