/* =============================================================
   SEEN — Complete Design System
   Fonts: Inter, Caveat, Noto Sans
   Colors: Navy #1A1B4E · Gold #D9A441 · Muted #5C6672
   ============================================================= */

/* ----------------------------------------------------------
   TOKENS
   ---------------------------------------------------------- */
:root {
  --navy:        #1A1B4E;
  --navy-deep:   #141540;
  --navy-mid:    #22246a;
  --gold:        #D9A441;
  --gold-lt:     #D0B889;
  --gold-grad:   linear-gradient(90deg, #D9A441 0%, #D0B889 87%);
  --navy-grad:   linear-gradient(90deg, #1A1B4E 0%, #3C3EB4 100%);
  --text-muted:  #5C6672;
  --text-white70: rgba(255,255,255,0.70);
  --text-white50: rgba(255,255,255,0.50);
  --white:       #FFFFFF;
  --off-white:   #F8F8FB;
  --border:      rgba(26,27,78,0.10);

  --font-inter:  'Inter', sans-serif;
  --font-caveat: 'Caveat', cursive;
  --font-noto:   'Noto Sans', sans-serif;

  --navbar-h: 96px;
  --ease:        cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --r-pill: 40300232px;
  --r-xl:   24px;
  --r-lg:   16px;
  --r-md:   12px;
}

/* ----------------------------------------------------------
   RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-inter);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img  { max-width: 100%; display: block; height: auto; }
a    { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul,ol { list-style: none; }
input,textarea { font-family: var(--font-inter); }

/* ----------------------------------------------------------
   UTILITY
   ---------------------------------------------------------- */
.text-white     { color: var(--white) !important; margin-top:40px !important;}
.text-white-70  { color: var(--text-white70) !important; }
.text-white-50  { color: var(--text-white50) !important; }
.text-gold      { color: var(--gold) !important; }
.text-gold-grad {
  background: linear-gradient(90deg, #D9A441 0%, #FF8C42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-24 { margin-top: 24px; }

/* Caveat italic helper */
.caveat-italic {
  font-family: var(--font-caveat);
  font-style: italic;
  font-weight: 500;
}
.inline-svg { display: inline; vertical-align: middle; margin-left: 6px; }

/* ----------------------------------------------------------
   KEYFRAMES
   ---------------------------------------------------------- */
@keyframes fadeUp    { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:none} }
@keyframes scaleIn   { from{opacity:0;transform:scale(.88)} to{opacity:1;transform:scale(1)} }
@keyframes floatY    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatCard { 0%,100%{transform:translateY(0)rotate(-1deg)} 50%{transform:translateY(-8px)rotate(0)} }
@keyframes badgePop  { from{opacity:0;transform:scale(.7)translateY(8px)} to{opacity:1;transform:scale(1)translateY(0)} }
@keyframes spinSlow  { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes shimmer   { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

/* ----------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  max-width: 35%;
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.9); transition: opacity .65s var(--ease), transform .65s var(--ease-spring); }
.reveal.visible,.reveal-left.visible,.reveal-right.visible,.reveal-scale.visible {
  opacity: 1; transform: none;
}
.delay-1{transition-delay:.1s} .delay-2{transition-delay:.2s} .delay-3{transition-delay:.3s}
.delay-4{transition-delay:.4s} .delay-5{transition-delay:.5s} .delay-6{transition-delay:.6s}

/* ----------------------------------------------------------
   EYEBROW / LABELS
   ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--navy  { color: var(--navy); opacity: .55; }
.eyebrow--white { color: rgba(255,255,255,.6); }

/* ----------------------------------------------------------
   TYPOGRAPHY SCALES
   ---------------------------------------------------------- */
.section-h2 {
  font-family: var(--font-inter);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: black;
  margin-bottom: 20px;
  margin-top: 35px;
  animation: fadeUp .7s var(--ease) .18s both;
}
.section-body {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.section-wrap {
  max-width: auto;
  margin: 0 auto;
  padding: 0 60px;
}

/* ----------------------------------------------------------
   BUTTONS — global
   ---------------------------------------------------------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  background: var(--gold-grad);
  box-shadow: 0 4px 16px rgba(217,164,65,.35);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,164,65,.45); }
.btn-gold:active { transform: translateY(0); }

.btn-blue-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  background: #1A1B4E;
  box-shadow: 0 4px 12px rgba(217,164,65,.3);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  background: linear-gradient(to right, #D9A441, #D0B889);
  box-shadow: 0 4px 12px rgba(217,164,65,.3);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.btn-gold-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,164,65,.4); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  border: 1.2px solid rgba(255,255,255,.20);
  background: var(--navy-grad);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 600;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,27,78,.3); }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ----------------------------------------------------------
   ████  NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  padding: 0 60px;
  background: var(--white);
  display: flex;
  align-items: center;
  transition: box-shadow .3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(26,27,78,.09); }

.navbar-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-spring);
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo svg path { stroke: var(--navy); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  transition: opacity .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* CTA */
.nav-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

.nav-login {
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.nav-login:hover { opacity: .7; }

.btn-join-now {
  display: flex;
  align-items: center;
  padding: 11px 28px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .3s, transform .2s var(--ease-spring), box-shadow .3s;
}
.btn-join-now:hover { background: #2a2c80; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(26,27,78,.25); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   ████  MOBILE MENU
   ---------------------------------------------------------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--navy);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 48px;
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-logo { color: var(--white); font-family: var(--font-inter); font-size: 22px; font-weight: 700; }
.mobile-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-close:hover { background: rgba(255,255,255,.2); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-nav-item {
  font-family: var(--font-inter);
  font-size: 26px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-nav-item:hover { color: var(--gold); }

.mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.mobile-btn-gold {
  display: flex; align-items: center; justify-content: center;
  padding: 15px 24px; border-radius: var(--r-pill);
  background: var(--gold-grad); color: var(--white);
  font-family: var(--font-inter); font-size: 16px; font-weight: 600;
}
.mobile-btn-navy {
  display: flex; align-items: center; justify-content: center;
  padding: 15px 24px; border-radius: var(--r-pill);
  background: var(--navy-grad); color: var(--white);
  font-family: var(--font-inter); font-size: 16px; font-weight: 600;
}

/* ----------------------------------------------------------
   ████  SECTION 1 — HERO
   ---------------------------------------------------------- */
.s-hero {
  padding-top: var(--navbar-h);
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
}

.hero-wrap {
  max-width: 1728px;
  margin: 0 auto;
  padding: 60px 60px 80px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* --- LEFT --- */
.hero-left {
  flex: 0 0 560px;
  width: 560px;
  padding-top: 20px;
}

.hero-tagline-row {
  margin-bottom: 4px;
  /* Figma: rotate(-10.355deg) */
  display: block;
  width: fit-content;
  transform: rotate(-10.355deg);
  transform-origin: left center;
  animation: fadeUp .6s var(--ease) .05s both;
}
.hero-tagline {
  font-family: var(--font-caveat);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  display: block;
}

.hero-h1 {
  font-family: var(--font-inter);
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-top: 20px;
  animation: fadeUp .7s var(--ease) .18s both;
}
.hero-h1-together {
  background: linear-gradient(273deg, #D9A441 21.23%, #34369D 106.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h1-dot {
  background: linear-gradient(273deg, #D9A441 21.23%, #34369D 106.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-underline-svg {
  margin-top: -6px;
  margin-left: 200px;
  width: 340px;
  animation: fadeUp .7s var(--ease) .28s both;
}
.hero-underline-svg svg { width: 100%; height: auto; }

.hero-body {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 480px;
  animation: fadeUp .7s var(--ease) .35s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeUp .7s var(--ease) .45s both;
}

/* Proof row */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  animation: fadeUp .7s var(--ease) .55s both;
}
.hero-proof-avatars { display: flex; align-items: center; }
.proof-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  object-fit: cover;
  margin-left: -12px;
  transition: transform .2s var(--ease-spring);
}
.proof-avatar:first-child { margin-left: 0; }
.proof-avatar:hover { transform: translateY(-4px) scale(1.1); z-index: 2; }
.hero-proof-text {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(26,27,78,.75);
}

/* Trusted logos */
.hero-trusted { margin-top: 40px; animation: fadeUp .7s var(--ease) .65s both; }
.hero-trusted-label {
  font-family: var(--font-noto);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero-logos-row {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.brand-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  opacity: .75;
  filter: grayscale(.15);
  transition: opacity .2s, filter .2s;
}
.brand-logo:hover { opacity: 1; filter: none; }
.brand-logo--circle { height: 32px; }
.brand-logo--text   { height: 18px; }

/* --- RIGHT collage --- */
.hero-right {
  flex: 1;
  position: relative;
  min-height: 620px;
}

/* Main large blob image */
.hero-img-main {
  position: absolute;
  top: -10px;
  left: 100px;
  animation: fadeUp .9s var(--ease) .3s both, floatY 6s ease-in-out 1.2s infinite;
}


/* New collab invite badge */
.badge-collab {
  position: absolute;
  top: 20px; right: -16px;
  display: flex; align-items: center; gap: 6px;
  padding: 18px 16px;
  border-radius: 20px;
  background: var(--gold);
  color: #1A1B4E;
  line-height: 28.825px;
  font-family: var(--font-inter);
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(217,164,65,.4);
  white-space: nowrap;
  animation: badgePop .6s var(--ease-spring) 1.1s both;
}

/* Content idea card */
.hero-card-idea {
  position: absolute;
  top: 260px; left: 0;
  padding: 14px 18px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(26,27,78,.12);
  min-width: 230px;
  animation: fadeUp .8s var(--ease) .7s both, floatCard 5s ease-in-out 1.5s infinite;
}
.card-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.card-title { font-size: 14px; font-weight: 700; color: black; margin-bottom: 8px; }
.card-tiny-avatars { display: flex; align-items: center; }
.card-tiny-avatars img {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--white); object-fit: cover;
  margin-left: -6px;
}
.card-tiny-avatars img:first-child { margin-left: 0; }
.card-more { font-size: 12px; color: var(--text-muted); margin-left: 6px; }

/* Man image */
.hero-img-man {
  position: absolute;
  top: 350px;
  left: -20px;
  z-index: 10;
  animation: fadeUp .9s var(--ease) .5s both, floatY 7s ease-in-out 2s infinite;
}

/* Woman image */
.hero-img-woman {
  position: absolute;
  top: 350px;
  left: 250px;
  animation: fadeUp .9s var(--ease) .7s both, floatY 8s ease-in-out 2.5s infinite;
}

/* Brand match badge */
.badge-match {
  position: absolute;
  bottom: -20px; right: -16px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(26,27,78,.14);
  animation: badgePop .6s var(--ease-spring) 1.4s both;
}
.match-lbl   { font-size: 11px; color: var(--text-muted); }
.match-brand { font-size: 13px; font-weight: 700; color: black; }
.match-pct   { background: #1FA58A; color: var(--white); font-size: 13px; font-weight: 700; padding: 5px 9px; border-radius: 25px; }

/* Decorative SVGs */
.hero-deco-plus  { position: absolute; top: 130px; left: 40px; animation: floatY 5s ease-in-out .3s infinite; }
.hero-deco-curve { position: absolute; top: 320px; right: -30px; animation: floatY 6s ease-in-out .8s infinite; }
.hero-deco-arrow { position: absolute; bottom: -50px; left: 100px; animation: floatY 7s ease-in-out .2s infinite; }

/* ----------------------------------------------------------
   ████  SECTION 2 — BUILT FOR CREATORS
   ---------------------------------------------------------- */
.s-creators {
  padding: 100px 0;
  background: #F5F5F5;
}
.s-creators .section-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
}

.creators-left { flex: 0 0 360px; }
.creators-right { flex: 1; display: flex; flex-direction: column; gap: 28px; }

/* UI mock card */
.mock-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 40px rgba(26,27,78,.1);
  overflow: hidden;
  max-width: 380px;
}
.mock-card-header {
  background: #F0F0F6;
  padding: 12px 16px;
  display: flex; gap: 6px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red    { background: #FF5F57; }
.mock-dot.yellow { background: #FEBC2E; }
.mock-dot.green  { background: #28C840; }
.mock-card-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }

.mock-profile-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.mock-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#D9A441,#D0B889); flex-shrink: 0; }
.mock-text-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mock-line { height: 8px; border-radius: 4px; background: #E8E8F2; }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }
.mock-line.w30 { width: 30%; }
.mock-line.w50 { width: 50%; }
.mock-line.thin { height: 6px; }
.mock-line.label-line { height: 7px; margin-bottom: 6px; }

.mock-field { display: flex; flex-direction: column; gap: 2px; }
.mock-input { height: 32px; border-radius: 8px; background: #F3F3F8; border: 1px solid #E2E2EE; }
.mock-textarea { height: 60px; border-radius: 8px; background: #F3F3F8; border: 1px solid #E2E2EE; }
.mock-btn {
  display: block; text-align: center;
  padding: 10px; border-radius: var(--r-pill);
  background: var(--gold-grad);
  color: var(--white); font-size: 13px; font-weight: 600;
  margin-top: 4px;
}

/* Feature list */
.creators-features { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-inter);
  font-size: 15px; font-weight: 500;
  color: var(--navy);
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.feature-item:hover { border-color: rgba(217,164,65,.4); box-shadow: 0 2px 12px rgba(217,164,65,.12); }
.feature-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(217,164,65,.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}

/* ----------------------------------------------------------
   ████  SECTION 3 — BRANDS & AGENCIES  (dark)
   ---------------------------------------------------------- */
.s-brands {
  padding: 100px 0;
  background: var(--navy-deep);
}
.s-brands__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.brands-left { flex: 1; }
.brands-right {
  flex: 0 0 900px;
  position: relative;
  display: flex;
  justify-content: center;
}
.brands-checklist {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
}
.brands-checklist li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-inter);
  font-size: 15px; color: var(--text-white70);
}

/* Creator card mock */
.creator-card-mock {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 24px;
  backdrop-filter: blur(12px);
  animation: fadeUp .9s var(--ease) .4s both;
}
.ccm-top { display: flex; gap: 16px; margin-bottom: 20px; }
.ccm-avatar-wrap { flex-shrink: 0; }
.ccm-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.ccm-badge {
  display: inline-block; padding: 4px 10px;
  border-radius: 20px; background: rgba(217,164,65,.2);
  color: var(--gold); font-size: 11px; font-weight: 600;
  margin-bottom: 6px;
}
.ccm-name  { font-size: 16px; font-weight: 700; color: var(--white); }
.ccm-handle { font-size: 13px; color: var(--text-white50); }
.ccm-stats { display: flex; gap: 0; }
.ccm-stat { flex: 1; text-align: center; }
.ccm-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.08); }
.ccm-stat-val { display: block; font-size: 20px; font-weight: 700; color: var(--white); }
.ccm-stat-lbl { display: block; font-size: 11px; color: var(--text-white50); margin-top: 2px; }

/* Emoji bubbles */
.brands-emoji-row {
  display: flex; gap: 12px; margin-top: 20px;
  justify-content: center; flex-wrap: wrap;
}
.emoji-bubble {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 22px;
  animation: floatY 4s ease-in-out infinite;
}
.emoji-bubble--sm  { width: 36px; height: 36px; font-size: 18px; animation-delay: .5s; }
.emoji-bubble--lg  { width: 52px; height: 52px; font-size: 26px; animation-delay: 1s; }

/* ----------------------------------------------------------
   ████  SECTION 4 — BUILT FOR THE REGION
   ---------------------------------------------------------- */
.s-region {
  padding: 100px 0;
  background: var(--white);
}
.s-region__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.region-left { flex: 1; }
.region-right { flex: 0 0 400px; }

/* Region feature items */
.region-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.region-feature { display: flex; gap: 16px; align-items: flex-start; }
.rf-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: rgba(217,164,65,.1);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.rf-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.rf-body  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Region form mock */
.region-form-mock {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 40px rgba(26,27,78,.10);
  padding: 28px;
  border: 1px solid var(--border);
}
.rfm-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.rfm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.rfm-field label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; }
.rfm-input { height: 38px; border-radius: 8px; background: var(--off-white); border: 1.5px solid var(--border); }
.rfm-input-row { display: flex; align-items: center; gap: 8px; }
.rfm-input--flex { flex: 1; }
.rfm-tag { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.rfm-tag--green { background: rgba(34,197,94,.15); color: #16A34A; }
.rfm-tag--gold  { background: rgba(217,164,65,.15); color: var(--gold); }

/* ----------------------------------------------------------
   ████  SECTION 5 — COMMUNITY
   ---------------------------------------------------------- */
.s-community {
  padding: 100px 0;
  background: var(--off-white);
}
.s-community__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.community-left  { flex: 1; }
.community-right { flex: 0 0 360px; }

/* Photo collage */
.community-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 32px;
  max-width: 340px;
}
.comm-photo { border-radius: var(--r-xl); overflow: hidden; }
.comm-photo img { width: 100%; height: 100%; object-fit: cover; }
.comm-photo--1 { grid-row: span 2; height: 220px; }
.comm-photo--2 { height: 100px; }
.comm-photo--3 { height: 104px; }

/* CTA card */
.community-cta-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 32px rgba(26,27,78,.09);
  padding: 36px 32px;
}
.cta-card-h {
  font-family: var(--font-inter);
  font-size: 28px; font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.cta-card-body {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 24px;
}
.cta-card-btns { display: flex; flex-direction: column; gap: 10px; }

/* ----------------------------------------------------------
   ████  SECTION 6 — CONTENT THAT STANDS OUT
   ---------------------------------------------------------- */
.s-content {
  padding: 100px 0;
  background: var(--white);
}
.content-header { margin-bottom: 48px; }

/* Photo grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.cg-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  height: 240px;
  background: #E8EAF2;
}
.cg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.cg-item:hover img { transform: scale(1.05); }
.cg-item--tall  { grid-row: span 2; height: auto; min-height: 492px; }
.cg-item--wide  { grid-column: span 2; }

.cg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,27,78,.4) 0%, transparent 60%);
}
.cg-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-inter);
  font-size: 16px; font-weight: 700;
  color: var(--white);
  background: rgba(26,27,78,.6);
  padding: 4px 10px; border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* ----------------------------------------------------------
   ████  SECTION 7 — MANAGED / WANT US TO HANDLE
   ---------------------------------------------------------- */
.s-managed {
  padding: 100px 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.s-managed__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.managed-left  { flex: 1; }
.managed-right { flex: 0 0 300px; display: flex; justify-content: center; align-items: center; }
.managed-sub { font-size: 15px; line-height: 1.6; margin-top: 20px; }

.managed-deco-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(217,164,65,.25);
  position: relative;
}
.managed-deco-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px solid rgba(217,164,65,.15);
}
.managed-deco-circle::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: rgba(217,164,65,.08);
}

/* ----------------------------------------------------------
   ████  SECTION 8 — CONTACT
   ---------------------------------------------------------- */
.s-contact {
  padding: 100px 0;
  background: var(--white);
}
.s-contact__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.contact-info { flex: 0 0 360px; }
.contact-form-wrap { flex: 1; }

/* Contact details */
.contact-details {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 8px; margin-bottom: 32px;
}
.contact-details li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}

/* Social */
.contact-social-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 12px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease-spring), opacity .2s;
}
.social-icon:hover { transform: translateY(-2px); opacity: .85; }
.social-icon--ig   { background: radial-gradient(circle at 30% 107%, #fdf497 0%,#fd5949 45%,#d6249f 60%,#285aeb 90%); }
.social-icon--tt   { background: #010101; }
.social-icon--snap { background: #FFFC00; }

/* Contact form */
.contact-form {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-family: var(--font-inter);
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  text-transform: uppercase; letter-spacing: .8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 14px; color: var(--navy);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,164,65,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0A8B8; }

/* Role pills */
.role-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.role-pill {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-inter);
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.role-pill.active, .role-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-submit { width: 100%; justify-content: center; margin-top: 24px; }

.form-success {
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(34,197,94,.1);
  color: #16A34A;
  font-size: 14px; font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(34,197,94,.2);
}

/* ----------------------------------------------------------
   ████  FOOTER
   ---------------------------------------------------------- */
   .footer-bg { background: var(--c-navy-dark); }
  
   .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
     gap: 48px; padding: 64px 0 48px;
   }
   .footer-brand-desc { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 240px; margin-bottom: 24px; }
   .footer-social { display: flex; gap: 8px; }
   .footer-social .social-btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
   .footer-social .social-btn:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
   
   .footer-heading { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
   .footer-link { display: block; font-size: .83rem; color: rgba(255,255,255,.48); line-height: 2.2; transition: color .2s; }
   .footer-link:hover { color: var(--c-gold); }
   
   .footer-divider { height: 1px; background: rgba(255,255,255,.07); }
   .footer-bottom {
     display: flex; align-items: center; justify-content: space-between;
     flex-wrap: wrap; gap: 12px; padding: 24px 0;
   }
   .footer-copy { font-size: .76rem; color: rgba(255,255,255,.28); }
   .footer-bottom-links { display: flex; gap: 20px; }
   .footer-bottom-links .footer-link { line-height: 1; }
   

/* ----------------------------------------------------------
   ████  RESPONSIVE — TABLET (≤ 1100px)
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
  :root { --navbar-h: 80px; }
  .navbar { padding: 0 32px; }
  .nav-links { display: none; }
  .nav-cta .btn-join-now { padding: 10px 20px; font-size: 13px; }
  .hamburger { display: flex; }

  .section-wrap { padding: 0 32px; }
  .section-h2 { font-size: 36px; }
  .hero-wrap { flex-direction: column; padding: 40px 32px 60px; gap: 60px; }
  .hero-left { flex: none; width: 100%; max-width: 600px; }
  .hero-right { width: 100%; max-width: 540px; min-height: 500px; align-self: center; }
  .hero-h1 { font-size: 58px; }
  .hero-tagline { font-size: 44px; }

  .s-creators .section-wrap,
  .s-brands__inner,
  .s-region__inner,
  .s-community__inner,
  .s-managed__inner,
  .s-contact__inner { flex-direction: column; gap: 48px; }

  .creators-left, .creators-right,
  .brands-left, .brands-right,
  .region-left, .region-right,
  .community-left, .community-right,
  .managed-left, .managed-right,
  .contact-info, .contact-form-wrap { flex: none; width: 100%; }

  .brands-right { max-width: 800px; }
  .managed-right { display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .cg-item--tall { grid-row: span 1; min-height: 240px; }
}

/* ----------------------------------------------------------
   ████  RESPONSIVE — MOBILE (≤ 720px)
   ---------------------------------------------------------- */
@media (max-width: 720px) {
  :root { --navbar-h: 68px; }
  .navbar { padding: 0 20px; }
  .nav-cta { display: none; }

  .section-wrap { padding: 0 20px; }
  .section-h2 { font-size: 28px; letter-spacing: -.4px; }
  .section-body { font-size: 15px; }

  /* Hero mobile */
  .hero-wrap { padding: 28px 20px 48px; gap: 40px; }
  .hero-h1 { font-size: 42px; line-height: 1.08; }
  .hero-tagline { font-size: 34px; }
  .hero-underline-svg { margin-left: 110px; width: 180px; }
  .hero-body { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-gold,
  .hero-btns .btn-navy { justify-content: center; }

  .hero-right { min-height: 400px; max-width: 360px; width: 100%; }
  .hero-img-main { width: 220px; right: 10px; }
  .hero-img-main img { height: 280px; }
  .hero-img-man  { width: 140px; bottom: 10px; left: 0; }
  .hero-img-man img { height: 155px; }
  .hero-img-woman { width: 155px; bottom: 0; right: 0; }
  .hero-img-woman img { height: 170px; }
  .hero-card-idea { top: 190px; left: -10px; min-width: 180px; padding: 10px 14px; }
  .hero-deco-plus { left: 30px; top: 130px; }
  .hero-deco-arrow { left: 110px; bottom: 50px; }
  .hero-logos-row { gap: 20px; }
  .brand-logo { height: 18px; }
  .brand-logo--circle { height: 26px; }

  /* Sections */
  .s-creators, .s-brands, .s-region,
  .s-community, .s-content, .s-managed,
  .s-contact { padding: 64px 0; }

  .mock-card { max-width: 100%; }
  .content-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cg-item { height: 160px; border-radius: 14px; }
  .cg-item--tall { grid-row: span 1; min-height: 160px; }
  .cg-item--wide { grid-column: span 2; }

  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer { padding: 40px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .community-photos { max-width: 100%; }
  .comm-photo--1 { height: 160px; }
  .comm-photo--2, .comm-photo--3 { height: 74px; }

  .brands-right { max-width: 100%; }
  .region-right { display: none; }
}

/* ----------------------------------------------------------
   ████  RESPONSIVE — SMALL MOBILE (≤ 420px)
   ---------------------------------------------------------- */
@media (max-width: 420px) {
  .hero-h1 { font-size: 34px; }
  .hero-tagline { font-size: 28px; }
  .hero-right { min-height: 340px; }
  .hero-img-main { width: 180px; }
  .hero-img-main img { height: 230px; }
  .hero-img-man { width: 115px; }
  .hero-img-man img { height: 128px; }
  .hero-img-woman { width: 130px; }
  .hero-img-woman img { height: 145px; }
  .badge-collab { right: -8px; font-size: 11px; padding: 7px 12px; }
}
