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

:root {
  --bg: #0a0f1e;
  --bg-2: #0d1426;
  --bg-card: #111827;
  --bg-card-border: #1f2937;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-card-border);
  padding: 12px 0;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 21px; font-weight: 800; letter-spacing: -0.5px;
}

.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(139,92,246,0.2));
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.logo-text {
  background: linear-gradient(135deg, #fff 40%, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}

.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.nav-cta-outline {
  border: 1px solid var(--bg-card-border) !important;
  color: var(--text) !important;
  padding: 8px 18px;
  border-radius: 8px;
  transition: border-color var(--transition) !important;
}

.nav-cta-outline:hover { border-color: var(--blue) !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
  -webkit-text-fill-color: white !important;
  color: white !important;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

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

/* ===== HERO ===== */
.hero {
  position: relative; min-height: auto;
  display: flex; align-items: center;
  padding: 240px 0 120px; overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.22);
  color: var(--blue-light);
  font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
}

.badge-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -2px; margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: all var(--transition); cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: white;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.5); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple), #7c3aed);
  color: white;
  box-shadow: 0 4px 20px rgba(139,92,246,0.35);
}

.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,92,246,0.5); }

.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding-left: 0; padding-right: 0;
}

.btn-ghost:hover { color: var(--text); }

.hero-trust { display: flex; align-items: center; gap: 12px; }

.trust-avatars { display: flex; }

.trust-avatars img,
.avatar-circle {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px; object-fit: cover;
}

.avatar-circle {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
}

.avatar-circle-lg {
  width: 44px; height: 44px; font-size: 16px; margin-left: 0; border: none;
}

.trust-avatars img:first-child,
.trust-avatars .avatar-circle:first-child { margin-left: 0; }

.trust-text { font-size: 13px; color: var(--text-muted); }
.trust-text strong { color: var(--text); }

/* ===== TERMINAL ===== */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}

.terminal-wrap {
  position: relative; z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.terminal {
  width: 440px;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
}

.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: #161b22;
  border-bottom: 1px solid #30363d;
}

.t-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.t-red { background: #ff5f57; }
.t-yellow { background: #febc2e; }
.t-green { background: #28c840; }

.t-title {
  margin-left: 8px; font-size: 12px;
  color: #8b949e; font-family: 'JetBrains Mono', monospace;
}

.terminal-body { padding: 20px; display: flex; flex-direction: column; gap: 2px; }

.t-line { line-height: 1.8; }
.t-blank { height: 10px; }
.t-indent { padding-left: 16px; }
.t-output { opacity: 0.6; }

.t-keyword { color: #ff7b72; }
.t-string { color: #a5d6ff; }
.t-var { color: #e6edf3; }
.t-fn { color: #d2a8ff; }
.t-punct { color: #8b949e; }
.t-prop { color: #79c0ff; }
.t-num { color: #f2cc60; }
.t-comment { color: #8b949e; }

.t-cursor {
  display: inline-block; width: 2px; height: 14px;
  background: var(--blue-light);
  animation: blink 1.2s step-end infinite;
  vertical-align: middle; margin-top: 6px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.terminal-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(17,24,39,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 3; animation: float-card 5s ease-in-out infinite;
}

.card-left { left: -50px; top: 28%; animation-delay: -2s; }
.card-right { right: -50px; bottom: 22%; animation-delay: -1s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.fc-icon-green { background: rgba(16,185,129,0.15); color: var(--green); }
.fc-icon-blue { background: rgba(59,130,246,0.15); color: var(--blue); }

.fc-title { font-size: 12px; font-weight: 700; color: var(--text); }
.fc-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ===== STATS ===== */
.stats {
  padding: 56px 0;
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
  background: var(--bg-2);
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--bg-card-border);
}

.stat-number {
  font-size: 44px; font-weight: 900; letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}

.stat-suffix {
  font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}

.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section-tag {
  display: inline-block;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  color: var(--blue-light);
  font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 6px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.8px;
}

.tag-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.15; margin-bottom: 16px;
}

.section-desc { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* ===== HOW IT WORKS — DUAL FLOW ===== */
.how-it-works { padding: 100px 0; background: var(--bg-2); }

.dual-flow {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0; align-items: start;
}

.flow-side {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.flow-header { margin-bottom: 32px; }

.flow-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.flow-badge-blue { background: rgba(59,130,246,0.12); color: var(--blue-light); border: 1px solid rgba(59,130,246,0.2); }
.flow-badge-purple { background: rgba(139,92,246,0.12); color: var(--purple-light); border: 1px solid rgba(139,92,246,0.2); }

.flow-header h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }

.flow-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }

.flow-step { display: flex; gap: 16px; align-items: flex-start; }

.flow-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(59,130,246,0.12); color: var(--blue-light);
  font-size: 13px; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  display: flex; align-items: center; justify-content: center;
}

.flow-step-content strong {
  display: block; font-size: 15px; font-weight: 700;
  margin-bottom: 4px; color: var(--text);
}

.flow-step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.flow-cta {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  padding: 10px 0;
  transition: opacity var(--transition);
}

.flow-cta:hover { opacity: 0.75; }
.flow-cta-blue { color: var(--blue-light); }
.flow-cta-purple { color: var(--purple-light); }

.flow-divider {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 0 24px; margin-top: 120px;
}

.flow-divider-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-card-border), transparent);
}

.flow-divider-icon {
  font-size: 20px;
  opacity: 0.5;
}

/* ===== JOB TYPES ===== */
.job-types { padding: 100px 0; background: var(--bg); }

.jobs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}

.job-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
  opacity: 0; transition: opacity var(--transition);
}

.job-card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.25); }
.job-card:hover::after { opacity: 1; }

.job-card-featured {
  background: linear-gradient(135deg, #1a1f3a, #1e2952);
  border-color: rgba(59,130,246,0.35);
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.job-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.job-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.job-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.job-card-featured p { color: rgba(255,255,255,0.6); }

.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.job-tags span {
  font-size: 11px; font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  padding: 3px 9px; border-radius: 4px;
}

.job-tags-light span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

.job-pay { font-size: 15px; font-weight: 700; color: var(--green); }
.job-pay-light { color: #6ee7b7; }

/* ===== FOR SECTIONS ===== */
.for-section { padding: 100px 0; }
.for-agents-section { background: var(--bg-2); }
.for-workers-section { background: var(--bg); }

.for-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.for-inner-reverse .for-content { order: 2; }
.for-inner-reverse .for-visual { order: 1; }

.for-content .section-tag { display: inline-block; text-align: left; margin-bottom: 16px; }
.for-content .section-title { text-align: left; }

.benefits-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 32px; }

.benefit-item { display: flex; gap: 14px; align-items: flex-start; }

.benefit-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 6px;
  background: rgba(59,130,246,0.12); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

.benefit-item strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 3px; }
.benefit-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.for-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ===== API CARD ===== */
.api-card {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 14px; overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.api-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: #161b22; border-bottom: 1px solid #30363d;
}

.api-method {
  background: rgba(59,130,246,0.15); color: var(--blue-light);
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.api-endpoint { color: #8b949e; font-size: 13px; }

.api-body { padding: 18px; border-bottom: 1px solid #21262d; }
.api-response { padding: 0 18px 18px; }

.api-response-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0 10px;
}

.status-200 {
  background: rgba(16,185,129,0.15); color: #34d399;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
}

.response-time { font-size: 11px; color: #8b949e; }

.code-block { display: flex; flex-direction: column; gap: 2px; }
.code-line { line-height: 1.8; color: #e6edf3; }
.code-indent { padding-left: 16px; }
.c-brace { color: #8b949e; }
.c-key { color: #79c0ff; }
.c-colon { color: #8b949e; }
.c-val { color: #a5d6ff; }
.c-num { color: #f2cc60; }
.c-comma { color: #8b949e; }

/* ===== WORKER DASHBOARD ===== */
.worker-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.wd-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}

.wd-title { font-size: 16px; font-weight: 700; }

.wd-earnings-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 4px 12px; border-radius: 50px;
}

.wd-green-dot {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}

.wd-balance {
  background: linear-gradient(135deg, #1e3a8a, #2e1065);
  border-radius: 14px; padding: 22px;
  margin-bottom: 22px;
}

.wd-balance-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.wd-balance-amount { font-size: 32px; font-weight: 900; color: white; letter-spacing: -1px; }
.wd-balance-trend { font-size: 12px; color: #34d399; margin-top: 4px; font-weight: 500; }

.wd-tasks-title { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

.wd-task-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}

.wd-task-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.wd-dot-blue { background: var(--blue); }
.wd-dot-purple { background: var(--purple); }
.wd-dot-green { background: var(--green); }

.wd-task-info { flex: 1; min-width: 0; }
.wd-task-name { font-size: 13px; font-weight: 600; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wd-task-sub { font-size: 11px; color: var(--text-muted); }

.progress-bar {
  height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden; flex: 1;
}
.progress-fill {
  height: 100%; background: var(--blue);
  border-radius: 2px;
}
.wd-task-progress {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-muted);
}

.wd-task-pay { font-size: 13px; font-weight: 700; color: var(--green); flex-shrink: 0; }

.new-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15); color: var(--green);
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 4px; margin-left: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--bg-2); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--transition); position: relative;
}

.testimonial-card:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.25); }

.testimonial-featured {
  background: linear-gradient(135deg, #1e1b4b, #1e3a8a);
  border-color: rgba(99,102,241,0.4);
  transform: scale(1.02);
}

.testimonial-featured:hover { transform: scale(1.02) translateY(-3px); }

.t-quote {
  font-size: 48px; line-height: 1; color: var(--blue);
  opacity: 0.4; font-family: Georgia, serif;
  margin-bottom: -8px;
}

.testimonial-featured .t-quote { color: #93c5fd; }

.testimonial-text {
  font-size: 14px; line-height: 1.75;
  color: var(--text-muted); margin-bottom: 24px;
}

.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.7); }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== DOWNLOAD / GET STARTED ===== */
.download { padding: 80px 0 100px; background: var(--bg); }

.download-card {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 24px; padding: 80px 60px;
  text-align: center; overflow: hidden;
}

.download-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.18; pointer-events: none;
}

.download-orb-1 { width: 400px; height: 400px; background: var(--blue); top: -100px; left: -100px; }
.download-orb-2 { width: 300px; height: 300px; background: var(--purple); bottom: -50px; right: -50px; }

.download-content { position: relative; z-index: 1; }

.download-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900; letter-spacing: -2px;
  margin: 12px 0 14px;
}

.download-card p { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 44px; }

.cta-dual {
  display: flex; align-items: center;
  justify-content: center; gap: 32px; flex-wrap: wrap;
}

.cta-option { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.cta-option-label {
  font-size: 13px; color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.cta-or {
  font-size: 14px; color: rgba(255,255,255,0.25);
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: #050810;
  border-top: 1px solid var(--bg-card-border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid var(--bg-card-border);
  margin-bottom: 32px;
}

.footer-tagline {
  font-size: 14px; color: var(--text-muted);
  margin-top: 14px; font-style: italic;
}

.footer-sub {
  font-size: 13px; color: var(--text-subtle);
  margin-top: 6px; margin-bottom: 20px;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 6px 14px; border-radius: 7px;
  transition: all var(--transition);
}

.social-links a:hover { color: var(--text); border-color: rgba(59,130,246,0.35); }

.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--text);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 14px; color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--blue-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-subtle);
}

.footer-mono { font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.footer-version { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-subtle); margin-top: 8px; opacity: 0.6; }

/* ===== INTEGRATION SECTION ===== */
.integration { padding: 100px 0; background: var(--bg); }

.integration-methods {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px; overflow: hidden;
}

.method-tabs {
  display: flex; border-bottom: 1px solid var(--bg-card-border);
  overflow-x: auto;
}

.method-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 20px; font-size: 14px; font-weight: 600;
  color: var(--text-muted); background: none; border: none;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap; position: relative;
  font-family: inherit;
}

.method-tab:hover { color: var(--text); background: rgba(255,255,255,0.02); }

.method-tab.active {
  color: var(--text); background: rgba(59,130,246,0.06);
}

.method-tab.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--purple));
}

.method-rec {
  font-size: 10px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white; padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.method-content { display: none; padding: 36px; }
.method-content.active { display: block; }

.method-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}

.method-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  background: rgba(59,130,246,0.1); color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 5px 12px; border-radius: 6px; margin-bottom: 14px;
}

.method-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.method-info > p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.method-info code {
  background: rgba(59,130,246,0.12); color: var(--blue-light);
  padding: 2px 6px; border-radius: 4px; font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.method-highlights { display: flex; flex-direction: column; gap: 16px; }

.mh-item { display: flex; gap: 12px; align-items: flex-start; }

.mh-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 7px;
  background: rgba(59,130,246,0.1); color: var(--blue-light);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
}

.mh-item strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.mh-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.method-code .terminal { width: 100%; }

/* Pipeline */
.pipeline {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px; padding: 32px 40px;
  text-align: center;
}

.pipeline-title {
  font-size: 14px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 28px;
}

.pipeline-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}

.pip-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px; }

.pip-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.pip-icon-blue { background: rgba(59,130,246,0.12); color: var(--blue-light); }
.pip-icon-purple { background: rgba(139,92,246,0.12); color: var(--purple-light); }
.pip-icon-orange { background: rgba(245,158,11,0.12); color: #fbbf24; }
.pip-icon-green { background: rgba(16,185,129,0.12); color: #34d399; }
.pip-icon-emerald { background: rgba(52,211,153,0.12); color: #6ee7b7; }

.pip-label { font-size: 13px; font-weight: 700; color: var(--text); }
.pip-sub { font-size: 11px; color: var(--text-muted); }

.pip-arrow {
  font-size: 20px; color: var(--text-subtle); font-weight: 300;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-tabs { overflow-x: auto; }
  .method-tab { padding: 14px 12px; font-size: 12px; }
  .method-rec { display: none; }
  .pipeline-steps { gap: 8px; }
  .pip-arrow { font-size: 16px; margin-bottom: 20px; }
  .method-content { padding: 24px 16px; }
}

/* ===== AOS ===== */
[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-in"] { transform: none; }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item:nth-child(2)::after { display: none; }
  .dual-flow { grid-template-columns: 1fr; gap: 16px; }
  .flow-divider { flex-direction: row; padding: 0; margin-top: 0; }
  .flow-divider-line { width: 80px; height: 1px; }
  .for-inner { grid-template-columns: 1fr; gap: 48px; }
  .for-inner-reverse .for-content { order: 1; }
  .for-inner-reverse .for-visual { order: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(20px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--bg-card-border);
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .terminal { width: 100%; max-width: 360px; }
  .card-left { left: -10px; }
  .card-right { right: -10px; }

  .jobs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
  .testimonial-featured:hover { transform: translateY(-3px); }

  .download-card { padding: 48px 24px; }
  .cta-dual { flex-direction: column; gap: 24px; }
  .cta-or { transform: rotate(90deg); }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .for-inner { text-align: left; }
  .for-content .section-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ACCESSIBILITY ===== */
.hamburger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 4px;
}

*:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

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