/* ============================================
   CreatorOrbit — Theme CSS
   ============================================ */

:root {
  --bg: #0d0d12;
  --bg-card: #13131a;
  --bg-card-hover: #1a1a24;
  --fg: #f0ede6;
  --fg-muted: #8a8697;
  --accent: #ff6b35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --accent-glow: rgba(255, 107, 53, 0.08);
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(13,13,18,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 12px; }
.nav-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,107,53,0.2);
}

/* ===== SECTIONS ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 4px 10px;
  background: var(--accent-dim);
  border-radius: 20px;
  border: 1px solid rgba(255,107,53,0.15);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== ORBIT SCENE ===== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-scene {
  position: relative;
  width: 400px;
  height: 400px;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255,107,53,0.4), 0 0 80px rgba(255,107,53,0.15);
}
.orbit-core-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,107,53,0.15);
  transform: translate(-50%, -50%);
  animation: orbit-spin linear infinite;
}
.orbit-ring-1 { width: 200px; height: 200px; animation-duration: 8s; }
.orbit-ring-2 { width: 290px; height: 290px; animation-duration: 14s; animation-direction: reverse; border-color: rgba(255,107,53,0.08); }
.orbit-ring-3 { width: 380px; height: 380px; animation-duration: 20s; border-color: rgba(255,107,53,0.05); }
@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.orbit-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.node-icon {
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.node-icon svg { width: 16px; height: 16px; }
.node-creator { top: 30px; left: 50%; transform: translateX(-50%); }
.node-brand { bottom: 60px; left: -20px; }
.node-ai { top: 50%; right: -10px; transform: translateY(-50%); }
.node-agency { bottom: 20px; right: 30px; }

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.problem-header {
  margin-bottom: 64px;
}
.problem-header h2 { max-width: 560px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, background 0.3s;
}
.problem-card:hover {
  border-color: rgba(255,107,53,0.2);
  background: var(--bg-card-hover);
}
.problem-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PLATFORM ===== */
.platform {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f17 100%);
  border-top: 1px solid var(--border);
}
.platform-header { margin-bottom: 72px; }
.platform-showcase {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
/* Phone mockup */
.showcase-phone { display: flex; justify-content: center; }
.phone-frame {
  width: 260px;
  height: 530px;
  background: #1a1a24;
  border-radius: 36px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,53,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #0d0d12;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: #0d0d12;
  border-radius: 26px;
  height: 100%;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.screen-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), #ff8c5a);
  border-radius: 50%;
  flex-shrink: 0;
}
.screen-info { flex: 1; }
.screen-name { font-size: 13px; font-weight: 600; display: block; }
.screen-sub { font-size: 11px; color: var(--fg-muted); display: block; }
.screen-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 7px;
  border-radius: 10px;
}
.screen-deal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  position: relative;
}
.deal-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.deal-brand { font-size: 14px; font-weight: 700; font-family: var(--font-display); }
.deal-amount { font-size: 22px; font-weight: 800; font-family: var(--font-display); color: var(--accent); letter-spacing: -0.03em; }
.deal-type { font-size: 11px; color: var(--fg-muted); }
.screen-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.metric { text-align: center; }
.metric-val { font-family: var(--font-display); font-size: 14px; font-weight: 700; display: block; }
.metric-label { font-size: 9px; color: var(--fg-muted); display: block; }
.showcase-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.showcase-text p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.showcase-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.showcase-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.showcase-features svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== ORBIT FEATURES ===== */
.orbit-features {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.orbit-features h2 { margin-bottom: 56px; }
.orbit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.orbit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.orbit-card:hover {
  border-color: rgba(255,107,53,0.25);
  transform: translateY(-4px);
}
.orbit-card-icon {
  margin-bottom: 20px;
}
.orbit-card-icon svg { width: 40px; height: 40px; }
.orbit-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.orbit-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.orbit-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,107,53,0.15);
}

/* ===== ECOSYSTEM ===== */
.ecosystem {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0f0f17 0%, var(--bg) 100%);
}
.ecosystem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ecosystem-creator, .ecosystem-brand {
  background: var(--bg-card);
  padding: 56px 48px;
}
.ecosystem-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 4px 10px;
  background: var(--accent-dim);
  border-radius: 20px;
  border: 1px solid rgba(255,107,53,0.15);
}
.ecosystem-creator h3, .ecosystem-brand h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 32px;
}
.ecosystem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ecosystem-list li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.ecosystem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-orbital {
  margin: 0 auto 48px;
  width: 80px; height: 80px;
  position: relative;
}
.c-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 50%;
  animation: orbit-spin 6s linear infinite;
}
.c-orbit-ring::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,107,53,0.6);
}
.c-orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.c-orbit-core svg { width: 60px; height: 60px; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-note { font-size: 12px; color: rgba(138,134,151,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-lede { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .platform-showcase { grid-template-columns: 1fr; gap: 48px; }
  .showcase-phone { display: none; }
  .orbit-grid { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-split { grid-template-columns: 1fr; }
  .ecosystem-creator, .ecosystem-brand { padding: 40px 32px; }
}
/* ===== MARKETPLACE ===== */
.page-wrapper { padding-top: 100px; min-height: 100vh; }
.page-header { padding: 60px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.page-header h1 { font-family: var(--font-display); font-size: 38px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.page-header p { color: var(--fg-muted); font-size: 16px; }

/* Hero banner */
.marketplace-hero { position: relative; overflow: hidden; padding: 80px 0 60px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.marketplace-hero-bg { position: absolute; inset: 0; z-index: 0; }
.marketplace-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.marketplace-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,13,18,0.6) 0%, var(--bg) 100%); }
.marketplace-hero-content { position: relative; z-index: 1; text-align: center; }
.marketplace-hero-content h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; }
.marketplace-hero-content p { font-size: 18px; color: var(--fg-muted); margin-bottom: 32px; }
.cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Filter bar */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar input, .filter-bar select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  padding: 8px 14px;
  font-size: 14px;
  font-family: var(--font-body);
}
.filter-bar input::placeholder { color: var(--fg-muted); }
.filter-bar input:focus, .filter-bar select:focus { outline: none; border-color: rgba(255,107,53,0.4); }
.filter-bar .search-input { flex: 1; min-width: 180px; }

/* Creator grid */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.creator-card:hover { border-color: rgba(255,107,53,0.3); transform: translateY(-2px); }
.creator-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.creator-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: white;
}
.creator-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.creator-info { flex: 1; min-width: 0; }
.creator-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 2px; }
.creator-niche { font-size: 13px; color: var(--fg-muted); }
.creator-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; }
.star-icon { color: #f5a623; }
.creator-platforms { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0; }
.platform-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 8px;
  border: 1px solid rgba(255,107,53,0.15);
}
.creator-services-count { font-size: 13px; color: var(--fg-muted); margin-top: 8px; }
.creator-min-price { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--accent); margin-top: 8px; }

/* Creator detail page */
.creator-profile-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.profile-layout { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.profile-sidebar { text-align: center; }
.profile-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: white;
}
.profile-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.profile-name { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.profile-niche { color: var(--fg-muted); margin-bottom: 12px; }
.profile-handles { display: flex; flex-direction: column; gap: 6px; margin: 16px 0; }
.handle { font-size: 13px; color: var(--fg-muted); }
.profile-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.profile-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.profile-stat-val { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--fg); }
.profile-stat-label { font-size: 11px; color: var(--fg-muted); margin-top: 4px; }
.profile-main {}
.profile-bio { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 28px; }
.platform-counts { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.platform-count { text-align: center; }
.platform-count-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.platform-count-label { font-size: 12px; color: var(--fg-muted); }

/* Services list */
.services-section { margin-top: 40px; }
.services-section h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(255,107,53,0.3); }
.service-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.5; }
.service-meta { display: flex; justify-content: space-between; align-items: center; }
.service-price { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--accent); }
.service-delivery { font-size: 12px; color: var(--fg-muted); }

/* Service detail */
.service-detail-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; }
.service-main {}
.service-main h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.service-main .service-creator { font-size: 15px; color: var(--fg-muted); margin-bottom: 24px; }
.service-main .service-creator a { color: var(--accent); text-decoration: none; }
.service-description { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 32px; }
.service-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.service-info-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.service-info-item .label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.service-info-item .value { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.service-sidebar { position: sticky; top: 120px; }
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.booking-card .price { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.booking-card .price span { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.booking-card label { font-size: 13px; color: var(--fg-muted); display: block; margin-bottom: 6px; }
.booking-card textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--fg); padding: 10px 14px; font-family: var(--font-body); font-size: 14px; resize: vertical; min-height: 80px; margin-bottom: 16px; }
.booking-card textarea:focus { outline: none; border-color: rgba(255,107,53,0.4); }
.booking-card .creator-contact { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; color: var(--fg-muted); }

/* Booking success */
.success-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 32px; }
.success-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 60px; text-align: center; max-width: 520px; width: 100%; }
.success-icon { width: 72px; height: 72px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { width: 36px; height: 36px; color: var(--accent); }
.success-box h1 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.success-box p { color: var(--fg-muted); margin-bottom: 32px; }

/* My bookings */
.bookings-list { display: flex; flex-direction: column; gap: 16px; }
.booking-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}
.booking-row .service-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.booking-row .booking-meta { font-size: 13px; color: var(--fg-muted); }
.booking-row .booking-amount { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--accent); }
.booking-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-pending { background: rgba(255, 193, 7, 0.12); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.2); }
.status-confirmed { background: rgba(76, 175, 80, 0.12); color: #4caf50; border: 1px solid rgba(76, 175, 80, 0.2); }
.status-completed { background: rgba(33, 150, 243, 0.12); color: #2196f3; border: 1px solid rgba(76, 175, 80, 0.2); }
.status-cancelled, .status-declined { background: rgba(244, 67, 54, 0.12); color: #f44336; border: 1px solid rgba(244, 67, 54, 0.2); }

/* Reviews */
.reviews-section { margin-top: 40px; }
.reviews-section h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; }
.review-name { font-weight: 600; font-size: 14px; }
.review-stars { color: #f5a623; font-size: 13px; }
.review-comment { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.review-date { font-size: 12px; color: var(--fg-muted); margin-top: 8px; }
.no-reviews { color: var(--fg-muted); font-size: 14px; font-style: italic; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 32px 0; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.pagination a { background: var(--bg-card); border: 1px solid var(--border); color: var(--fg); }
.pagination a:hover { border-color: rgba(255,107,53,0.3); }
.pagination span { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(255,107,53,0.2); }

/* Creator services dashboard */
.dashboard-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.dashboard-sidebar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.earnings-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.earnings-card .amount { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--accent); }
.earnings-card .label { font-size: 13px; color: var(--fg-muted); margin-bottom: 4px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; text-align: center; }
.stat-box .val { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.stat-box .lbl { font-size: 11px; color: var(--fg-muted); }

/* Services table */
.services-table { width: 100%; }
.services-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.services-table td { padding: 16px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
.services-table tr:hover { background: var(--bg-card-hover); }
.services-table .service-name { font-weight: 600; }
.services-table .service-category { font-size: 12px; color: var(--fg-muted); }
.services-table .price { font-family: var(--font-display); font-weight: 700; color: var(--accent); }
.services-table .delivery { color: var(--fg-muted); font-size: 13px; }
.services-table .active-badge { font-size: 11px; padding: 2px 8px; border-radius: 10px; }
.active-yes { background: rgba(76,175,80,0.12); color: #4caf50; }
.active-no { background: rgba(244,67,54,0.12); color: #f44336; }
.services-table .actions { display: flex; gap: 8px; }

/* Add service form */
.add-service-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 32px; }
.add-service-form h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; color: var(--fg-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: rgba(255,107,53,0.4); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 600; font-family: var(--font-body); cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #e55a28; transform: translateY(-1px); }
.btn-secondary { background: var(--bg-card); color: var(--fg); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: rgba(255,107,53,0.3); }
.btn-danger { background: rgba(244,67,54,0.12); color: #f44336; border: 1px solid rgba(244,67,54,0.2); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* Nav link/btn styles */
.nav-link { color: var(--fg-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; padding: 6px 10px; border-radius: var(--radius); }
.nav-link:hover { color: var(--fg); }
.nav-btn { background: var(--accent); color: white; text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 20px; border-radius: var(--radius); transition: background 0.2s; }
.nav-btn:hover { background: #e55a28; }
.nav-btn-outline { background: transparent; color: var(--fg-muted); border: 1px solid var(--border); text-decoration: none; font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: var(--radius); cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
.nav-btn-outline:hover { border-color: rgba(255,107,53,0.3); color: var(--fg); }

/* Tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab { padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--fg-muted); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s; }
.tab:hover { color: var(--fg); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-count { background: var(--accent-dim); color: var(--accent); font-size: 11px; padding: 1px 6px; border-radius: 10px; margin-left: 6px; }

/* Section headers */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-header h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; }

/* Empty state */
.empty-state { text-align: center; padding: 60px 32px; color: var(--fg-muted); }
.empty-state svg { width: 48px; height: 48px; opacity: 0.4; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }

/* Alert messages */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; }
.alert-success { background: rgba(76,175,80,0.12); color: #4caf50; border: 1px solid rgba(76,175,80,0.2); }
.alert-error { background: rgba(244,67,54,0.12); color: #f44336; border: 1px solid rgba(244,67,54,0.2); }

/* Responsive for marketplace */
@media (max-width: 900px) {
  .profile-layout, .service-detail-grid, .dashboard-grid { grid-template-columns: 1fr; }
  .profile-sidebar { margin-bottom: 32px; }
  .service-sidebar { position: static; }
  .booking-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 600px) {
  .filter-bar { flex-direction: column; }
  .filter-bar .search-input { min-width: 100%; }
  .creators-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; }
  .page-header h1 { font-size: 28px; }
  .service-info-grid { grid-template-columns: 1fr; }
}