/* ═══════════════════════════════════════════════
   THEME RESET - Override any WordPress theme styles
═══════════════════════════════════════════════ */
body.cc-page {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  background: #ffffff !important;
  color: #111827 !important;
  line-height: 1.6 !important;
}
body.cc-page *,
body.cc-page *::before,
body.cc-page *::after {
  box-sizing: border-box;
}
body.cc-page #page,
body.cc-page #content,
body.cc-page #primary,
body.cc-page .site,
body.cc-page .site-content,
body.cc-page header.entry-header,
body.cc-page .entry-content,
body.cc-page .site-header,
body.cc-page .site-footer,
body.cc-page nav.navigation,
body.cc-page .wp-block-template-part {
  display: contents !important;
  all: unset !important;
}
body.cc-page a { text-decoration: none; color: inherit; }
body.cc-page img { max-width: 100%; display: block; }
body.cc-page h1, body.cc-page h2, body.cc-page h3,
body.cc-page h4, body.cc-page h5, body.cc-page h6 {
  font-size: revert;
  font-weight: revert;
  margin: 0;
  padding: 0;
  line-height: revert;
}
body.cc-page p { margin: 0; padding: 0; }
body.cc-page ul, body.cc-page ol { list-style: none; margin: 0; padding: 0; }

/* ═══════════════════════════════════════════════════════════
   CreatorCampaigns v3 — Commercial Public CSS
   Modern Shopify/Google Shopping aesthetic
   DM Sans + Syne | Clean whites | Strong typography
═══════════════════════════════════════════════════════════ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --blue: #2563eb;
  --blue-d: #1d4ed8;
  --blue-l: #eff6ff;
  --blue-xl: #f0f5ff;
  --green: #059669;
  --green-l: #ecfdf5;
  --orange: #ea580c;
  --orange-l: #fff7ed;
  --purple: #7c3aed;
  --red: #dc2626;
  --dark: #111827;
  --dark-2: #1f2937;
  --dark-3: #374151;
  --mid: #6b7280;
  --light: #9ca3af;
  --border: #e5e7eb;
  --border-l: #f3f4f6;
  --bg: #f9fafb;
  --bg-l: #ffffff;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.08);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

/* TYPOGRAPHY */
.cc-syne { font-family: 'Syne', sans-serif; }

/* LAYOUT */
.cc-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.cc-wrap-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.cc-wrap-xs { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════
   ANIMATED LOGO C
═══════════════════════════════════════════ */
.cc-c {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 900;
  background: conic-gradient(from 0deg, #ea4335 0%, #fbbc04 25%, #34a853 50%, #4285f4 75%, #ea4335 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cc-spin 5s linear infinite;
}
@keyframes cc-spin { 100% { filter: hue-rotate(360deg); } }

/* ═══════════════════════════════════════════
   NAVIGATION — Modern sticky
═══════════════════════════════════════════ */
.cc-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 64px;
  display: flex;
  align-items: center;
}
.cc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}
.cc-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  flex-shrink: 0;
  white-space: nowrap;
}
.cc-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.cc-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-3);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.cc-nav-links a:hover { background: var(--bg); color: var(--dark); }
.cc-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cc-nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-3);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.cc-nav-signin:hover { background: var(--bg); color: var(--dark); }

/* Mobile nav toggle */
.cc-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.cc-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.cc-nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.cc-nav-mobile.open { display: block; }
.cc-nav-mobile a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border-l);
}
.cc-nav-mobile a:last-child { border: none; }
.cc-nav-mobile .cc-btn { display: flex; margin-top: 16px; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.cc-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
  border-radius: inherit;
}
.cc-btn:hover::after { background: rgba(255,255,255,0.12); }
.cc-btn:active { transform: scale(0.97); }

.cc-btn-blue {
  background: var(--blue);
  color: var(--white) !important;
  box-shadow: 0 1px 3px rgba(37,99,235,.3), 0 4px 12px rgba(37,99,235,.2);
}
.cc-btn-blue:hover {
  background: var(--blue-d);
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
  transform: translateY(-1px);
}
.cc-btn-white {
  background: var(--white);
  color: var(--blue) !important;
  box-shadow: var(--shadow);
}
.cc-btn-white:hover { background: var(--blue-l); transform: translateY(-1px); }
.cc-btn-outline {
  background: transparent;
  color: var(--dark) !important;
  border: 1.5px solid var(--border);
  box-shadow: none;
}
.cc-btn-outline:hover { border-color: var(--blue); color: var(--blue) !important; background: var(--blue-l); }
.cc-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.cc-btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.cc-btn-dark { background: var(--dark); color: var(--white) !important; }
.cc-btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.cc-btn-green { background: var(--green); color: var(--white) !important; }

.cc-btn-sm { padding: 8px 18px; font-size: 13px; }
.cc-btn-xs { padding: 6px 14px; font-size: 12px; }
.cc-btn-lg { padding: 15px 32px; font-size: 16px; }
.cc-btn-xl { padding: 18px 40px; font-size: 17px; font-weight: 800; }
.cc-btn-full { width: 100%; }
.cc-btn-square { border-radius: var(--radius-sm); }

/* ═══════════════════════════════════════════
   BADGES
═══════════════════════════════════════════ */
.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cc-badge-blue { background: #dbeafe; color: #1e40af; }
.cc-badge-green { background: #d1fae5; color: #065f46; }
.cc-badge-orange { background: #ffedd5; color: #9a3412; }
.cc-badge-gray { background: #f3f4f6; color: #374151; }
.cc-badge-purple { background: #ede9fe; color: #5b21b6; }

/* ═══════════════════════════════════════════
   HERO SECTION — Clean modern
═══════════════════════════════════════════ */
.cc-hero {
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
.cc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-l);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(37,99,235,.15);
}
.cc-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--dark);
}
.cc-hero h1 .t-blue { color: var(--blue); }
.cc-hero h1 .t-orange { color: var(--orange); }
.cc-hero h1 .t-green { color: var(--green); }
.cc-hero-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.cc-hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cc-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-hero-avatars {
  display: flex;
}
.cc-hero-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.cc-hero-avatars span:first-child { margin-left: 0; }
.cc-hero-proof-text { font-size: 13px; color: var(--mid); }
.cc-hero-proof-text strong { color: var(--dark); font-weight: 700; }

/* Hero Dashboard Card */
.cc-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.cc-hero-card-top {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--white);
}
.cc-hero-card-top .brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 7px; }
.cc-hc-search { flex: 1; max-width: 200px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 7px 12px; font-size: 12px; color: var(--light); display: flex; align-items: center; gap: 6px; }
.cc-hero-card-body { padding: 18px; }
.cc-hc-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.cc-hc-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px; }
.cc-hc-kpi { background: var(--bg); border-radius: var(--radius-sm); padding: 12px 10px; border: 1px solid var(--border); }
.cc-hc-kpi-l { font-size: 9px; color: var(--mid); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.cc-hc-kpi-v { font-size: 15px; font-weight: 800; line-height: 1; margin-bottom: 2px; }
.cc-hc-kpi-c { font-size: 10px; color: var(--green); font-weight: 700; }
.cc-hc-row { display: flex; flex-direction: column; gap: 7px; }
.cc-hc-item { display: flex; align-items: center; justify-content: space-between; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; }
.cc-hc-item-l { display: flex; align-items: center; gap: 8px; }
.cc-hc-logo { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; color: var(--white); flex-shrink: 0; }
.cc-hc-info strong { font-size: 11px; font-weight: 700; display: block; }
.cc-hc-info small { font-size: 10px; color: var(--light); }
.cc-hc-rev { font-size: 12px; font-weight: 800; }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.cc-trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.cc-trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.cc-trust-label { font-size: 11px; font-weight: 700; color: var(--light); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; flex-shrink: 0; }
.cc-trust-logos { display: flex; gap: 32px; align-items: center; overflow: hidden; }
.cc-trust-logos span { font-size: 14px; font-weight: 800; color: #d1d5db; letter-spacing: .03em; white-space: nowrap; transition: color .2s; }
.cc-trust-logos span:hover { color: var(--mid); }

/* ═══════════════════════════════════════════
   SECTION STRUCTURE
═══════════════════════════════════════════ */
.cc-section { padding: 96px 0; }
.cc-section-sm { padding: 64px 0; }
.cc-section-bg { background: var(--bg); }
.cc-section-dark { background: var(--dark); }

.cc-section-head { text-align: center; margin-bottom: 64px; }
.cc-section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  color: var(--dark);
  line-height: 1.1;
}
.cc-section-head p { font-size: 17px; color: var(--mid); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.cc-section-head .cc-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }

.cc-section-row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.cc-section-row-head h2 { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.5px; }
.cc-section-row-head a { font-size: 14px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.cc-section-row-head a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   FEATURE GRID — Shopify-style
═══════════════════════════════════════════ */
.cc-feat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cc-feat-grid-2 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.cc-feat {
  background: var(--white);
  padding: 32px 28px;
  transition: all .2s;
}
.cc-feat:hover { background: var(--bg); }
.cc-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.cc-feat h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.cc-feat p { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.cc-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cc-step {
  background: var(--white);
  padding: 40px 28px;
  position: relative;
  transition: background .2s;
}
.cc-step:hover { background: var(--bg); }
.cc-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}
.cc-step h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.cc-step p { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.cc-stats {
  background: var(--dark);
  padding: 72px 0;
}
.cc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cc-stat-box {
  padding: 36px 28px;
  text-align: center;
}
.cc-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.cc-stat-l { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 500; }

/* ═══════════════════════════════════════════
   CREATOR CARDS — Google Shopping style
═══════════════════════════════════════════ */
.cc-creator-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.cc-creator-grid-6 { grid-template-columns: repeat(6,1fr); }
.cc-creator-grid-3 { grid-template-columns: repeat(3,1fr); }

.cc-cr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
  position: relative;
}
.cc-cr-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1), var(--shadow-lg);
  transform: translateY(-4px);
}
.cc-cr-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  position: relative;
}
.cc-cr-avatar::after {
  content: '✓';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.cc-cr-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; margin-bottom: 2px; color: var(--dark); }
.cc-cr-handle { font-size: 12px; color: var(--light); margin-bottom: 8px; }
.cc-cr-niche {
  display: inline-block;
  background: var(--bg);
  color: var(--mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.cc-cr-plats { font-size: 14px; margin-bottom: 12px; display: flex; justify-content: center; gap: 4px; }
.cc-cr-stats { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; }
.cc-cr-stat .n { font-size: 13px; font-weight: 800; color: var(--dark); display: block; }
.cc-cr-stat .l { font-size: 10px; color: var(--light); margin-top: 1px; }
.cc-cr-tier {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  background: var(--blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   CAMPAIGN CARDS — Product card style
═══════════════════════════════════════════ */
.cc-camp-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.cc-camp-grid-3 { grid-template-columns: repeat(3,1fr); }

.cc-camp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.cc-camp-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1), var(--shadow-lg);
  transform: translateY(-4px);
}
.cc-camp-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  position: relative;
}
.cc-camp-status-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cc-camp-body { padding: 18px; }
.cc-camp-brand { font-size: 11px; color: var(--light); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
.cc-camp-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; margin-bottom: 12px; color: var(--dark); line-height: 1.3; }
.cc-camp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 16px; }
.cc-camp-stat { background: var(--bg); border-radius: var(--radius-sm); padding: 8px 4px; text-align: center; }
.cc-camp-stat .n { font-size: 13px; font-weight: 800; color: var(--dark); display: block; }
.cc-camp-stat .l { font-size: 10px; color: var(--light); }
.cc-camp-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.cc-camp-tag { font-size: 10px; font-weight: 600; background: var(--bg); color: var(--mid); padding: 3px 9px; border-radius: 100px; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.cc-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cc-testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .2s;
}
.cc-testi:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cc-testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.cc-testi-text { font-size: 14px; line-height: 1.75; color: var(--dark-3); margin-bottom: 20px; font-style: italic; }
.cc-testi-author { display: flex; align-items: center; gap: 12px; }
.cc-testi-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: var(--white); flex-shrink: 0; }
.cc-testi-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.cc-testi-role { font-size: 12px; color: var(--light); margin-top: 2px; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cc-cta {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cc-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,.3) 0%, transparent 60%);
  pointer-events: none;
}
.cc-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}
.cc-cta p { font-size: 18px; color: rgba(255,255,255,.6); margin-bottom: 44px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }
.cc-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.cc-page-hero {
  background: var(--bg);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cc-page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.8px;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.1;
}
.cc-page-hero p { font-size: 17px; color: var(--mid); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.cc-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cc-post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.cc-post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.cc-post-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 60px; }
.cc-post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.cc-post-cat { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.cc-post-body h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 10px; line-height: 1.35; color: var(--dark); letter-spacing: -.2px; }
.cc-post-excerpt { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.cc-post-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--light); border-top: 1px solid var(--border-l); padding-top: 14px; margin-top: auto; }

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.cc-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cc-plan {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: all .2s;
}
.cc-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cc-plan.featured { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.cc-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: .03em;
}
.cc-plan h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.cc-plan-desc { font-size: 13px; color: var(--mid); margin-bottom: 20px; }
.cc-plan-price { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 6px; letter-spacing: -2px; }
.cc-plan-price span { font-size: 18px; font-weight: 500; color: var(--mid); font-family: 'DM Sans', sans-serif; letter-spacing: 0; }
.cc-plan-billing { font-size: 12px; color: var(--light); margin-bottom: 28px; }
.cc-plan-divider { height: 1px; background: var(--border); margin: 22px 0; }
.cc-plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.cc-plan-features li { font-size: 13px; color: var(--dark-3); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.cc-plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; font-size: 13px; }
.cc-plan-features li.no::before { content: '–'; color: var(--light); }

/* ═══════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════ */
.cc-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cc-auth-left {
  background: var(--dark);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cc-auth-left::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.3), transparent 70%);
  pointer-events: none;
}
.cc-auth-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}
.cc-auth-left p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.75; margin-bottom: 36px; position: relative; }
.cc-auth-feat { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; position: relative; }
.cc-auth-feat-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.cc-auth-feat span { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }
.cc-auth-right {
  background: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.cc-auth-right h3 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 900; margin-bottom: 6px; color: var(--dark); letter-spacing: -.3px; }
.cc-auth-right .sub { color: var(--mid); font-size: 14px; margin-bottom: 32px; }
.cc-auth-tabs {
  display: flex;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  gap: 2px;
}
.cc-auth-tab {
  flex: 1;
  padding: 9px 8px;
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--mid);
  transition: all .15s;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
}
.cc-auth-tab.active { background: var(--white); color: var(--blue); box-shadow: var(--shadow-sm); font-weight: 700; }
.cc-form-group { margin-bottom: 18px; }
.cc-form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--dark-3); }
.cc-form-group input,
.cc-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  outline: none;
  transition: all .2s;
  background: var(--white);
}
.cc-form-group input:focus,
.cc-form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}
.cc-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cc-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
  font-size: 12px;
  margin: 22px 0;
}
.cc-divider::before, .cc-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.cc-forgot { float: right; font-size: 12px; color: var(--blue); font-weight: 600; }
.cc-forgot:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   FILTER CHIPS (creator/campaign pages)
═══════════════════════════════════════════ */
.cc-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 100;
}
.cc-filter-chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cc-chip {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  background: var(--white);
  color: var(--dark-3);
  white-space: nowrap;
}
.cc-chip:hover { border-color: var(--blue); color: var(--blue); }
.cc-chip.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.cc-filter-search {
  padding: 9px 16px 9px 40px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398l3.85 3.85a1 1 0 0 0 1.415-1.415l-3.868-3.833zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 14px center;
  min-width: 220px;
  transition: all .2s;
  color: var(--dark);
}
.cc-filter-search:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); background-color: var(--white); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.cc-footer {
  background: var(--dark);
  padding: 72px 0 36px;
}
.cc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.cc-footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cc-footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 24px; }
.cc-footer-col h5 { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 800; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.cc-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px; transition: color .15s; font-weight: 500; }
.cc-footer-col a:hover { color: var(--white); }
.cc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.cc-footer-bottom span { font-size: 12px; color: rgba(255,255,255,.3); }
.cc-footer-bottom-links { display: flex; gap: 20px; }
.cc-footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .15s; }
.cc-footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════
   APPLY PAGE
═══════════════════════════════════════════ */
.cc-apply-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding: 56px 0; }
.cc-apply-brief { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px; }
.cc-apply-brief-header { padding: 28px; color: var(--white); }
.cc-apply-brief-body { padding: 28px; }
.cc-apply-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 28px; position: sticky; top: 88px; }

/* ═══════════════════════════════════════════
   DASHBOARD (minimal - requires login)
═══════════════════════════════════════════ */
.cc-dashboard-gate {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.cc-dashboard-gate .icon { font-size: 64px; margin-bottom: 24px; }
.cc-dashboard-gate h2 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 900; margin-bottom: 12px; color: var(--dark); }
.cc-dashboard-gate p { font-size: 16px; color: var(--mid); margin-bottom: 28px; max-width: 440px; }
.cc-dashboard-gate-btns { display: flex; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.cc-text-center { text-align: center; }
.cc-mt-8 { margin-top: 8px; }
.cc-mt-16 { margin-top: 16px; }
.cc-mt-24 { margin-top: 24px; }
.cc-mt-32 { margin-top: 32px; }
.cc-mt-40 { margin-top: 40px; }
.cc-mt-56 { margin-top: 56px; }
.cc-plat-icon { font-size: 15px; }

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile first
═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .cc-creator-grid { grid-template-columns: repeat(3,1fr); }
  .cc-creator-grid-6 { grid-template-columns: repeat(3,1fr); }
  .cc-camp-grid { grid-template-columns: repeat(2,1fr); }
  .cc-feat-grid { grid-template-columns: repeat(2,1fr); }
  .cc-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cc-hero-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .cc-hero-grid { grid-template-columns: 1fr; }
  .cc-hero h1 { font-size: 44px; }
  .cc-hero-card { display: none; }
  .cc-stats-grid { grid-template-columns: repeat(2,1fr); }
  .cc-testi-grid { grid-template-columns: 1fr; }
  .cc-blog-grid { grid-template-columns: repeat(2,1fr); }
  .cc-pricing-grid { grid-template-columns: 1fr; }
  .cc-steps { grid-template-columns: repeat(2,1fr); }
  .cc-auth-layout { grid-template-columns: 1fr; }
  .cc-auth-left { display: none; }
  .cc-auth-right { padding: 40px 28px; }
  .cc-apply-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cc-nav-links { display: none; }
  .cc-nav-burger { display: flex; }
  .cc-hero h1 { font-size: 36px; }
  .cc-section { padding: 64px 0; }
  .cc-creator-grid { grid-template-columns: repeat(2,1fr); }
  .cc-creator-grid-6 { grid-template-columns: repeat(2,1fr); }
  .cc-camp-grid { grid-template-columns: 1fr; }
  .cc-camp-grid-3 { grid-template-columns: 1fr; }
  .cc-feat-grid { grid-template-columns: 1fr 1fr; }
  .cc-feat-grid-2 { grid-template-columns: 1fr; }
  .cc-blog-grid { grid-template-columns: 1fr; }
  .cc-steps { grid-template-columns: 1fr; }
  .cc-stats-grid { grid-template-columns: 1fr 1fr; }
  .cc-footer-grid { grid-template-columns: 1fr; }
  .cc-footer-bottom { flex-direction: column; text-align: center; }
  .cc-page-hero h1 { font-size: 32px; }
  .cc-cta h2 { font-size: 34px; }
  .cc-section-head h2 { font-size: 30px; }
  .cc-hero-btns { flex-direction: column; }
  .cc-hero-btns .cc-btn { width: 100%; }
  .cc-wrap { padding: 0 16px; }
  .cc-form-row-2 { grid-template-columns: 1fr; }
}
