@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ===========================
   VARIABLES & BASE
=========================== */
:root {
  --green: #63A7A5;
  --yellow: #FCA665;
  --light-pink: #E0C1BB;
  --hot-pink: #C65432;
  --purple: #98408F;
  --aqua: #91D5D9;
  --teal: #63A7A5;
  --peach: #FCA665;
  --terracotta: #C65432;
  --plum: #98408F;
  --lavender: #B57AA6;
  --black: #1A1410;
  --white: #FFFFFF;
  --off-white: #FAF3F1;
  --gray: #7A6560;
  --light-gray: #F3EDED;
  --border: #EAD8D4;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--hot-pink); color: var(--white); }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

/* ===========================
   NAVIGATION
=========================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FDF6F0;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--black);
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo span { color: var(--hot-pink); }
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--hot-pink);
  border-radius: 50%;
  margin-left: 6px;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(26,20,16,0.62);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--black); background: rgba(26,20,16,0.06); }
.btn-nav-cta {
  background: var(--hot-pink) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}
.btn-nav-cta:hover { background: #A8432A !important; }

.nav-user { display: flex; align-items: center; gap: 10px; }
.nav-user-name { color: var(--hot-pink); font-size: 14px; font-weight: 600; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--hot-pink); color: var(--white); border-color: var(--hot-pink); }
.btn-primary:hover { background: #A8432A; border-color: #A8432A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,84,50,0.35); }

.btn-secondary { background: transparent; color: var(--black); border-color: rgba(26,20,16,0.28); }
.btn-secondary:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); }

.btn-secondary-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-secondary-dark:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: #E08E45; border-color: #E08E45; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(252,166,101,0.4); }

.btn-purple { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-purple:hover { background: #7A3075; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(152,64,143,0.3); }

.btn-green { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-green:hover { background: #4A8A88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,167,165,0.3); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }

.btn-danger { background: #EF4444; color: white; border-color: #EF4444; }
.btn-danger:hover { background: #DC2626; transform: translateY(-2px); }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; }

/* ===========================
   VIEWS
=========================== */
.view { display: none; min-height: 100vh; }
.view.active { display: block; }

/* ===========================
   HERO
=========================== */
#home { padding-top: 68px; }

.hero {
  background: #FDF6F0;
  padding: 0 40px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.hero::before {
  content: '';
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,167,165,0.1);
  border: 1px solid rgba(99,167,165,0.25);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--hot-pink);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 7.5vw, 100px);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero-headline .line-accent { color: var(--terracotta); display: block; }
.hero-headline .line-stroke {
  -webkit-text-stroke: 1.5px rgba(26,20,16,0.22);
  color: transparent;
  display: block;
}

.hero-sub {
  color: rgba(26,20,16,0.6);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-platforms-label {
  font-size: 12px;
  color: rgba(26,20,16,0.38);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.platform-pill.tiktok { background: rgba(145,213,217,0.15); color: #4A8A88; border: 1px solid rgba(145,213,217,0.35); }
.platform-pill.instagram { background: rgba(181,122,166,0.12); color: var(--lavender); border: 1px solid rgba(181,122,166,0.25); }
.platform-pill.youtube { background: rgba(198,84,50,0.08); color: var(--terracotta); border: 1px solid rgba(198,84,50,0.18); }

/* Hero Visual - Floating Cards */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 40% 40%, rgba(145,213,217,0.2), rgba(181,122,166,0.08) 60%, transparent);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 22px;
  border: 2px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(26,20,16,0.14);
  min-width: 220px;
}

.float-card-1 {
  background: #1C1C1C;
  color: white;
  top: 20px;
  left: 10px;
  transform: rotate(-4deg);
  animation: floatA 5s ease-in-out infinite;
  border-color: rgba(255,255,255,0.08);
}
.float-card-1 .fc-tag,
.float-card-1 .fc-business,
.float-card-1 .fc-desc,
.float-card-1 .fc-location { color: rgba(255,255,255,0.85); }
.float-card-1 .fc-location { opacity: 0.55; }
.float-card-2 {
  background: var(--hot-pink);
  color: white;
  top: 160px;
  right: 0px;
  transform: rotate(3deg);
  animation: floatB 6s ease-in-out infinite;
  min-width: 180px;
}
.float-card-3 {
  background: var(--white);
  bottom: 40px;
  left: 30px;
  transform: rotate(1deg);
  animation: floatC 5.5s ease-in-out infinite;
}
.float-card-4 {
  background: var(--plum);
  color: white;
  bottom: 80px;
  right: 10px;
  transform: rotate(-2deg);
  animation: floatD 4.5s ease-in-out infinite;
  min-width: 160px;
  border-color: rgba(181,122,166,0.3);
}

@keyframes floatA { 0%,100%{transform:rotate(-4deg) translateY(0)} 50%{transform:rotate(-4deg) translateY(-12px)} }
@keyframes floatB { 0%,100%{transform:rotate(3deg) translateY(0)} 50%{transform:rotate(3deg) translateY(-16px)} }
@keyframes floatC { 0%,100%{transform:rotate(1deg) translateY(0)} 50%{transform:rotate(1deg) translateY(-10px)} }
@keyframes floatD { 0%,100%{transform:rotate(-2deg) translateY(0)} 50%{transform:rotate(-2deg) translateY(-14px)} }

.fc-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 8px;
}
.fc-business {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 3px;
  line-height: 1.2;
}
.fc-desc {
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.4;
  margin-bottom: 10px;
}
.fc-location {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fc-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 2px;
}
.fc-stat-label { font-size: 11px; font-weight: 700; opacity: 0.85; }
.fc-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.12);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 8px;
}

/* ===========================
   TICKER
=========================== */
.ticker {
  background: #2C1810;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker 22s linear infinite;
  gap: 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  padding-right: 40px;
}
.ticker-dot { color: var(--yellow); font-size: 14px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===========================
   STATS
=========================== */
.stats-section {
  background: var(--off-white);
  padding: 72px 40px;
  border-bottom: 1px solid var(--border);
}
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.stat-label {
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===========================
   HOW IT WORKS
=========================== */
.hiw-section {
  background: var(--white);
  padding: 100px 40px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow {
  display: inline-block;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  color: var(--black);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  padding: 44px 36px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.step-card:nth-child(1) { background: var(--peach); border-color: var(--peach); }
.step-card:nth-child(2) { background: var(--terracotta); border-color: var(--terracotta); }
.step-card:nth-child(3) { background: var(--plum); border-color: var(--plum); }

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 16px;
  opacity: 0.12;
  color: var(--black);
}

.step-card:nth-child(2) .step-number,
.step-card:nth-child(3) .step-number {
  color: var(--white);
}

.step-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(0,0,0,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.step-card:nth-child(2) .step-icon-wrap,
.step-card:nth-child(3) .step-icon-wrap {
  background: rgba(255,255,255,0.15);
}

.step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--black);
  position: relative;
}

.step-card:nth-child(2) h3,
.step-card:nth-child(3) h3 {
  color: var(--white);
}

.step-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26,20,16,0.7);
  position: relative;
}

.step-card:nth-child(2) p,
.step-card:nth-child(3) p {
  color: rgba(255,255,255,0.75);
}

/* ===========================
   CATEGORIES
=========================== */
.categories-section { background: var(--off-white); padding: 100px 40px; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  cursor: default;
  transition: all 0.22s;
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.cat-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.category-card:nth-child(1) .cat-icon-wrap { background: #F0EBE3; }
.category-card:nth-child(2) .cat-icon-wrap { background: #EAE6EF; }
.category-card:nth-child(3) .cat-icon-wrap { background: #E5EDE8; }
.category-card:nth-child(4) .cat-icon-wrap { background: #EEE9DF; }
.category-card:nth-child(5) .cat-icon-wrap { background: #EDE8F0; }
.category-card:nth-child(6) .cat-icon-wrap { background: #E8E5EF; }

.category-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--black);
}
.category-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===========================
   WHY UGC
=========================== */
.why-section {
  background: var(--light-gray);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.why-section::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(205,114,93,0.07), transparent 70%);
  pointer-events: none;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-left .section-eyebrow {
  background: rgba(99,167,165,0.08);
  border-color: rgba(99,167,165,0.2);
  color: var(--teal);
}
.why-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 68px);
  color: var(--black);
  line-height: 1;
  margin: 16px 0 24px;
}
.why-left h2 em {
  color: var(--terracotta);
  font-style: normal;
  display: block;
}
.why-left p {
  color: rgba(26,20,16,0.6);
  font-size: 16px;
  line-height: 1.8;
}

.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-feature:nth-child(1) .why-feature-icon { background: rgba(145,213,217,0.18); }
.why-feature:nth-child(2) .why-feature-icon { background: rgba(198,84,50,0.14); }
.why-feature:nth-child(3) .why-feature-icon { background: rgba(252,166,101,0.18); }
.why-feature:nth-child(4) .why-feature-icon { background: rgba(152,64,143,0.14); }

.why-feature-title { font-weight: 700; font-size: 15px; color: var(--black); margin-bottom: 4px; }
.why-feature-desc { font-size: 14px; color: rgba(26,20,16,0.6); line-height: 1.6; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: var(--hot-pink);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.3);
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 92px);
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.cta-section > .cta-inner > p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  margin-bottom: 44px;
  line-height: 1.6;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 24px;
  display: block;
}

/* ===========================
   PRICING
=========================== */
.pricing-section {
  background: var(--off-white);
  padding: 100px 40px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}
.pricing-creator-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 740px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,20,16,0.09);
}
.pricing-card-featured {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.03);
}
.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-popular {
  display: inline-block;
  background: var(--peach);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 8px;
}
.pricing-card-featured .pricing-card-name { color: var(--white); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 6px;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--black);
}
.pricing-card-featured .price-amount { color: var(--peach); }
.price-per {
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
}
.pricing-card-featured .price-per { color: rgba(255,255,255,0.4); }

.pricing-tagline {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-tagline {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.1);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.75); }

.pricing-card-teal {
  background: #1E4443;
  border-color: #1E4443;
  transform: scale(1.03);
}
.pricing-card-teal:hover {
  transform: scale(1.03) translateY(-4px);
}

/* Founding creator promo banner */
.pricing-promo-banner {
  background: linear-gradient(135deg, var(--terracotta) 0%, #A8401E 100%);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 56px;
}
.pricing-promo-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-promo-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.pricing-promo-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3px;
}
.pricing-promo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.pricing-promo-text strong {
  color: var(--peach);
}
.pricing-promo-btn {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.pricing-promo-btn:hover {
  background: rgba(255,255,255,0.28);
}

/* Platform note */
.pricing-platform-note {
  margin-top: 48px;
  background: var(--black);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.pricing-platform-item { flex: 1; }
.pricing-platform-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.pricing-platform-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--peach);
  margin-bottom: 4px;
}
.pricing-platform-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.pricing-platform-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.pricing-see-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.pricing-see-all:hover { color: var(--hot-pink); text-decoration: underline; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #2C1810;
  color: var(--white);
  padding: 72px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--yellow); }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--peach); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ===========================
   AUTH PAGES — SPLIT LAYOUT
=========================== */
.auth-split-page { padding-top: 68px; }

.auth-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: calc(100vh - 68px);
}

.auth-split-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
}
.auth-split-left.creator-theme {
  background: var(--black);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.auth-split-left.business-theme {
  background: var(--purple);
}

.split-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.1em;
  cursor: pointer;
}
.split-logo span { color: var(--yellow); }

.split-headline h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.split-headline p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.75;
}

.split-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.split-perks li span {
  color: var(--yellow);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.split-testimonial {
  margin-top: auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
}
.split-testimonial p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px;
}
.split-testimonial span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.auth-split-right {
  background: var(--off-white);
  padding: 56px 72px 80px;
  overflow-y: auto;
}
.auth-split-right .auth-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
}

/* Centered auth (login) */
.auth-page {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 80px;
}
.auth-container {
  width: 100%;
  max-width: 580px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.auth-back:hover { color: var(--black); }

.auth-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

/* For login page only */
.auth-header { margin-bottom: 40px; }
.auth-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 0.95;
  margin-bottom: 10px;
  color: var(--black);
}
.auth-header p { font-size: 16px; color: var(--gray); line-height: 1.6; }

@media (max-width: 960px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-split-left { display: none; }
  .auth-split-right { padding: 40px 32px; }
}

/* ===========================
   FORMS
=========================== */
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 8px;
}
label .optional {
  font-weight: 400;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(99,167,165,0.12);
}
input::placeholder, textarea::placeholder { color: #C0C0C0; }
textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
select { cursor: pointer; }

.input-prefix { position: relative; }
.input-prefix span {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: #AAAAAA;
  font-size: 15px;
  font-weight: 600;
  pointer-events: none;
}
.input-prefix input { padding-left: 28px; }

.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: all 0.15s;
}
.checkbox-item:hover { border-color: var(--teal); background: rgba(145,213,217,0.08); }
.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
}
.checkbox-item span { font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--black); }

.form-divider {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin: 20px 0;
  position: relative;
}
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
}
.form-footer a {
  color: var(--hot-pink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.form-footer a:hover { text-decoration: underline; }

.form-error {
  background: #FFF5F7;
  border: 1.5px solid #FCA5A5;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #B91C1C;
  margin-bottom: 20px;
  display: none;
}
.form-error.visible { display: block; }

/* ===========================
   PENDING PAGE
=========================== */
.pending-page {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 100px 24px;
}
.pending-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.07);
}
.pending-icon {
  width: 80px; height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
}
.pending-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  margin-bottom: 16px;
}
.pending-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===========================
   DASHBOARD
=========================== */
.dashboard { padding-top: 68px; min-height: 100vh; background: var(--off-white); }

.dashboard-header {
  background: linear-gradient(135deg, var(--teal) 0%, #4A6A8A 100%);
  padding: 48px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dashboard-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-greeting {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.dashboard-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.dashboard-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.badge-green { background: rgba(145,213,217,0.25); color: #3A8A88; }
.badge-yellow { background: rgba(252,166,101,0.2); color: #C06020; }
.badge-pink { background: rgba(198,84,50,0.15); color: var(--terracotta); }
.badge-purple { background: rgba(152,64,143,0.15); color: var(--plum); }
.badge-gray { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); }

.dashboard-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.dashboard-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 22px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--gray);
}
.tab-btn.active { background: var(--teal); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }

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

/* ===========================
   STAT CARDS (dashboard)
=========================== */
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.2s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.stat-card .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card .stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.2s;
}
.card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-title { font-weight: 700; font-size: 16px; margin-bottom: 3px; }
.card-subtitle { font-size: 13px; color: var(--gray); }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===========================
   OPPORTUNITY CARDS
=========================== */
.opportunity-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.22s;
}
.opportunity-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(99,167,165,0.15);
  transform: translateY(-4px);
}
.opp-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.opp-type.restaurant { background: #FFE6F2; color: var(--hot-pink); }
.opp-type.hotel, .opp-type.hotels, .opp-type.boutiquehotel { background: #EDE3FF; color: var(--purple); }
.opp-type.gym { background: #E6F5EC; color: var(--green); }
.opp-type.cafe { background: #FFF5D9; color: #92700B; }
.opp-type.bar { background: #F2F2F2; color: #444; }
.opp-type.spa { background: #FFE6F2; color: var(--hot-pink); }
.opp-type.salon { background: #F3E8FF; color: var(--purple); }
.opp-type.retail { background: #E6F0FF; color: #2563EB; }
.opp-type.other { background: #F2F2F2; color: var(--gray); }

.opp-business { font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.opp-location { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.opp-desc { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.opp-perks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.perk-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

/* ===========================
   PROFILE
=========================== */
.profile-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  background: var(--yellow);
  color: var(--black);
  flex-shrink: 0;
  font-weight: 700;
}
.profile-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; margin-bottom: 4px; }
.profile-info p { color: var(--gray); font-size: 14px; margin-bottom: 10px; }
.social-handles { display: flex; gap: 8px; flex-wrap: wrap; }
.handle-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--black);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.handle-tag.instagram { background: #E1306C; }

/* ===========================
   ADMIN
=========================== */
.admin-section { margin-bottom: 48px; }
.admin-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--hot-pink);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.admin-table th {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.admin-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}
.admin-table tr:hover td { background: var(--off-white); }
.admin-actions { display: flex; gap: 6px; }

/* ===========================
   MODALS
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease, opacity 0.2s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 32px; }
.modal-close {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  color: var(--gray);
}
.modal-close:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* ===========================
   EMPTY STATES
=========================== */
.empty-state { text-align: center; padding: 72px 24px; color: var(--gray); }
.empty-state .empty-icon { font-size: 52px; margin-bottom: 20px; display: block; }
.empty-state h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--black); margin-bottom: 10px; }
.empty-state p { font-size: 15px; max-width: 360px; margin: 0 auto 28px; line-height: 1.7; }

/* ===========================
   TOAST
=========================== */
.toast-container {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  max-width: 320px;
  border-left: 3px solid var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: slideIn 0.3s ease;
}
.toast.success { border-left-color: #4ADE80; }
.toast.error { border-left-color: #EF4444; }
.toast.info { border-left-color: var(--yellow); }
@keyframes slideIn { from{transform:translateX(110%);opacity:0} to{transform:translateX(0);opacity:1} }

/* ===========================
   AI MATCH TAB
=========================== */
.tab-btn-ai {
  background: linear-gradient(135deg, var(--purple), var(--hot-pink)) !important;
  color: var(--white) !important;
  position: relative;
}
.tab-btn-ai.active {
  background: linear-gradient(135deg, var(--purple), var(--hot-pink)) !important;
  opacity: 0.95;
}

.ai-match-upsell {
  position: relative;
  background: var(--black);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(233,144,117,0.3);
}
.ai-match-upsell-glow {
  position: absolute;
  top: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,144,117,0.25), rgba(205,114,93,0.1) 50%, transparent 70%);
  pointer-events: none;
}
.ai-match-upsell-inner {
  position: relative;
  z-index: 2;
  padding: 56px 60px;
  max-width: 680px;
}

.ai-match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(233,144,117,0.2);
  border: 1px solid rgba(233,144,117,0.4);
  color: #C084FC;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.ai-match-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.ai-match-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.ai-match-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.ai-match-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.ai-match-features li span {
  color: var(--yellow);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ai-match-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ai-match-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.ai-match-price span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--yellow);
}
.ai-match-price span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.ai-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--purple), var(--hot-pink));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.ai-match-result-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.2s;
}
.ai-match-result-card:hover {
  border-color: rgba(233,144,117,0.3);
  box-shadow: 0 8px 32px rgba(233,144,117,0.08);
}
.ai-match-result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ai-proposal-details {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.ai-proposal-details summary {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.ai-proposal-details summary::-webkit-details-marker { display: none; }
.ai-proposal-details[open] summary { margin-bottom: 14px; }
.ai-proposal-text {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--black);
  white-space: pre-line;
}

/* ===========================
   BROWSE BUSINESSES
=========================== */
.cat-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cat-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.18s;
}
.cat-filter-btn:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  background: #FFF0F8;
}
.cat-filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

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

.biz-browse-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
}
.biz-browse-card:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 10px 40px rgba(205,114,93,0.1);
  transform: translateY(-4px);
}

.biz-browse-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 6px;
}

.biz-collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(38,166,52,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(38,166,52,0.2);
}
.biz-collab-badge::before { content: '●'; font-size: 7px; }

.biz-browse-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.biz-browse-name {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--black);
}

.biz-browse-location {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}

.biz-browse-handle {
  font-size: 12px;
  font-weight: 600;
  color: #E1306C;
  margin-bottom: 10px;
}

.biz-browse-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.biz-browse-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.biz-browse-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--hot-pink);
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
  .hero-visual { height: 380px; }
  .float-card { min-width: 180px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .biz-browse-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 24px; }
  .hero { padding: 0 24px; }
  .stats-section, .hiw-section, .categories-section, .why-section, .cta-section { padding: 72px 24px; }
  footer { padding: 64px 24px 32px; }
  .dashboard-body { padding: 32px 24px; }
  .dashboard-header { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 60px; }
  .hero-visual { height: 320px; }
  .float-card { padding: 14px 16px; min-width: 150px; }
  .fc-stat { font-size: 36px; }
  .steps-grid, .categories-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .auth-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 10px 12px; }
  .cta-section h2 { font-size: 56px; }
  .dashboard-header-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .biz-browse-grid { grid-template-columns: 1fr; }
  .pending-card { padding: 44px 32px; }
}

/* ===========================
   CREATOR BROWSE CARDS (business view)
=========================== */
.creator-browse-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.creator-browse-card:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 6px 24px rgba(205,114,93,0.08);
}

.creator-browse-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.creator-browse-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.creator-browse-avatar {
  width: 56px !important;
  height: 56px !important;
  font-size: 22px !important;
  flex-shrink: 0;
}

.creator-browse-info { flex: 1; }

.creator-browse-name {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 2px;
}

.creator-browse-location {
  font-size: 12px;
  color: var(--gray);
}

/* Offer card (creator view of inbound offers) */
.offer-card {
  border-left: 4px solid var(--hot-pink);
}

.offer-resolved {
  border-left-color: var(--border);
  opacity: 0.8;
}

/* ===========================
   COLLAB BADGES
=========================== */
.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

.collab-paid {
  background: #DCFCE7;
  color: #15803D;
  border: 1.5px solid #BBF7D0;
}

.collab-free {
  background: var(--light-gray);
  color: var(--gray);
  border: 1.5px solid var(--border);
}

.collab-both {
  background: rgba(233,144,117,0.08);
  color: var(--purple);
  border: 1.5px solid rgba(233,144,117,0.2);
}

/* ===========================
   RADIO GROUP (forms)
=========================== */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.radio-item:hover {
  border-color: var(--hot-pink);
  background: rgba(205,114,93,0.03);
}

.radio-item input[type="radio"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--hot-pink);
  width: 16px;
  height: 16px;
}

.radio-item:has(input:checked) {
  border-color: var(--hot-pink);
  background: rgba(205,114,93,0.04);
}

/* ===========================
   PORTFOLIO
=========================== */
.field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-hint {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

.profile-photo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border);
}

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

.portfolio-empty {
  text-align: center;
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: 12px;
  border: 2px dashed var(--border);
}

.portfolio-empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.portfolio-empty h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-empty p {
  font-size: 13px;
  color: var(--gray);
  max-width: 360px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.portfolio-clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.portfolio-clip-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.portfolio-clip-card:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 4px 16px rgba(205,114,93,0.1);
}

.clip-platform {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 100px;
  width: fit-content;
}

.platform-tiktok { background: #111; color: #fff; }
.platform-instagram { background: linear-gradient(135deg, #fd5949, #d6249f, #285AEB); color: #fff; }
.platform-youtube { background: #FF0000; color: #fff; }
.platform-xtwitter { background: #000; color: #fff; }
.platform-watch, .platform-link { background: var(--light-gray); color: var(--gray); }

.clip-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  flex: 1;
}

.clip-watch-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--hot-pink);
  text-decoration: none;
  margin-top: auto;
}

.clip-watch-link:hover { text-decoration: underline; }

/* Edit form */
.clip-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.clip-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 16px;
  padding: 4px 6px;
  flex-shrink: 0;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.clip-remove-btn:hover {
  color: var(--hot-pink);
  background: rgba(205,114,93,0.08);
}

/* Portfolio clip pills shown on business application cards */
.portfolio-clip-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--black);
  background: var(--white);
  transition: border-color 0.15s;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-clip-pill:hover { border-color: var(--hot-pink); color: var(--hot-pink); }
.portfolio-clip-pill.platform-tiktok { border-color: #111; }
.portfolio-clip-pill.platform-instagram { border-color: #d6249f; }
.portfolio-clip-pill.platform-youtube { border-color: #FF0000; }
