/* ============================================
   FUGA PRODUCTION – stylesheet
   ============================================ */

@font-face {
  font-family: 'FuturaTOT';
  src: url('../fonts/FuturaTBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #08060B;
  --ink-2: #0F0B14;
  --panel: #16121C;
  --panel-2: #1B1622;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.14);
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-muted: rgba(255, 255, 255, 0.42);
  --violet-200: #C9A9FF;
  --violet-300: #AC7EFF;
  --violet-400: #9355F5;
  --violet-500: #7B2CFF;
  --violet-600: #5E18CC;
  --violet-deep: #2B0E5C;

  --radius-pill: 13px;
  --radius-card: 28px;
  --radius-input: 18px;

  --container: 1280px;

  --shadow-violet: 0 18px 60px -10px rgba(123, 44, 255, 0.55);

  /* Horizontal brushed-silver fill for display headings (hero + section titles) */
  --metal-text-gradient: linear-gradient(
    90deg,
    #b0b0b0 0%,
    #e6e6e6 11%,
    #9a9a9a 24%,
    #efefef 38%,
    #a8a8a8 50%,
    #dcdcdc 62%,
    #949494 76%,
    #f2f2f2 88%,
    #a3a3a3 100%
  );
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Ambient background ---------- */
.ambient-bg { overflow: hidden; }
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.ambient-glow--top {
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(circle, #5E18CC 0%, rgba(94,24,204,0) 70%);
  opacity: 0.7;
}
.ambient-glow--right {
  top: 18vh; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, #4D17AB 0%, rgba(77,23,171,0) 70%);
}
.ambient-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 75%);
}

/* ============================================
   HEADER (floating glassy pill)
   ============================================ */
.site-header {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.nav-pill {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  width: min(1100px, calc(100% - 36px));
  height: 70px;
  padding: 0 14px 0 36px;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(90deg,
      #FFFFFF 0%,
      #F1EEF4 28%,
      #C8C2CD 50%,
      #F1EEF4 72%,
      #FFFFFF 100%);
  box-shadow:
    0 18px 50px -8px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.08);
}

.nav-pill__left,
.nav-pill__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-pill__right { justify-content: flex-end; }

.nav-link {
  color: #1A1320;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: color .2s ease, transform .2s ease;
}
.nav-link:hover { color: var(--violet-500); transform: translateY(-1px); }

.nav-pill__logo {
  justify-self: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  /* background: linear-gradient(160deg, #9F5BFF 0%, #5E18CC 100%);
  box-shadow:
    0 10px 24px -4px rgba(123,44,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4); */
  display: grid; place-items: center;
  overflow: hidden;
}
.nav-pill__logo img {object-fit: contain; }
.logo-fallback {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: white;
  line-height: 1;
}

.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: #1A1320;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-mobile {
  display: none;
  width: min(900px, calc(100% - 36px));
  margin-top: 8px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(20, 16, 28, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid var(--stroke);
  flex-direction: column;
  gap: 10px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile__link {
  padding: 12px 16px;
  border-radius: 14px;
  color: white;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 0;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: white;
  background: linear-gradient(135deg, #9F5BFF 0%, #5E18CC 100%);
  box-shadow:
    0 10px 24px -6px rgba(123,44,255,0.65),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }

.btn--violet { /* alias */ }
.btn--lg { padding: 14px 36px; font-size: 17px; }
.btn--full { width: 100%; }

/* Hero CTA — purple → magenta gradient; gems are purely decorative (no layout width) */
.btn--hero-cta {
  position: relative;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(125deg, #8328E8 0%, #A020F0 42%, #D830C8 100%);
  box-shadow:
    0 12px 36px -8px rgba(208, 48, 200, 0.45),
    0 8px 28px -6px rgba(123, 44, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--hero-cta:hover {
  filter: brightness(1.06);
}
.btn--contact-cta {
  position: relative;
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 12px 31px;
  background: linear-gradient(95deg, #AF68F9 0%, #9A47F3 36%, #7C16DA 100%);
  box-shadow:
    0 12px 28px -8px rgba(123, 44, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.btn--contact-cta::before,
.btn--contact-cta::after {
  content: '';
  position: absolute;
  right: -2px;
  width: 53px;
  height: 53px;
  
  transform-origin: center;
  pointer-events: none;
  background-color: #fff;
  opacity: 0.95;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.btn--contact-cta::before {
  top: -20px;
  mask-image: url("../resources/Mail_Open1.png");
  -webkit-mask-image: url("../resources/Mail_Open1.png");
}
.btn--contact-cta::after {
  bottom: -14px;
  background-color: #FF9292;
  
  width: 36px;
  height: 36px;
  mask-image: url("../resources/Mail_Open2.png");
  -webkit-mask-image: url("../resources/Mail_Open2.png");
}
.btn--hero-cta.btn--contact-cta {
  padding: 14px 41px;
  background: linear-gradient(95deg, #AF68F9 0%, #9A47F3 36%, #7C16DA 100%);
  box-shadow:
    0 12px 28px -8px rgba(123, 44, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.btn__hero-gems {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.btn__hero-gem {
  width: 10px;
  height: 10px;
  opacity: 0.88;
}

.btn--violet-soft {
  background: rgba(123, 44, 255, 0.16);
  border: 1px solid rgba(172, 126, 255, 0.45);
  box-shadow: none;
  color: var(--violet-200);
  font-size: 14px;
  padding: 11px 18px;
}
.btn--violet-soft:hover {
  background: rgba(123, 44, 255, 0.28);
  filter: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 130px 0 50px;
  overflow-x: visible;
  overflow-y: visible;
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
  min-height: 540px;
  overflow: visible;
}

.hero__content {
  position: relative;
  padding-left: 60px;
}
.hero__sparkle {
  position: absolute;
  top: -6px;
  left: -8px;
  right: auto;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 20px rgba(172, 126, 255, 0.65));
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__title {
  font-family: 'FuturaTOT', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
/* Metal fill on spans: background-clip:text on empty h1 clips nothing */
.hero__title-line {
  display: block;
  background-image: var(--metal-text-gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__bloggers {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.hero__avatars {
  display: flex;
}
.hero__avatars .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--violet-500);
  border: 2px solid rgba(15, 11, 20, 0.95);
  display: grid;
  place-items: center;
  margin-left: -20px;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.35);
}
.hero__avatars .avatar:first-child {
  margin-left: 0;
}
.hero__avatars .avatar:nth-child(1) { z-index: 1; }
.hero__avatars .avatar:nth-child(2) { z-index: 2; }
.hero__avatars .avatar:nth-child(3) { z-index: 3; }
.hero__avatars .avatar:nth-child(4) { z-index: 4; }
.hero__avatars .avatar:nth-child(5) { z-index: 5; }
.hero__avatars .avatar:nth-child(even) {
  background: linear-gradient(155deg, #9f5bff 0%, #5a14b8 100%);
  color: #ffffff;
}
.hero__avatars .avatar svg {
  width: 26px;
  height: 26px;
  opacity: 0.98;
}

.hero__bloggers-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}
.hero__bloggers-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero__cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.hero__caption {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 380px;
}
.hero__caption strong { color: white; font-weight: 600; }

/* ---- Hero visual (character art) ---- */
.hero__visual {
  position: relative;
  height: 600px;
  overflow: visible;
}

/*
 * Aura sits behind the img (z-index 0) and fades fully inside the visual area.
 * Keeping the transparent stop well before the box edges prevents visible seams.
 */
.hero__visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  inset: 0;
  background: radial-gradient(
    ellipse 46% 58% at 58% 47%,
    rgba(118, 48, 205, 0.62) 0%,
    rgba(76, 28, 158, 0.34) 42%,
    rgba(36, 12, 78, 0.11) 64%,
    transparent 76%
  );
}

.hero__girl {
  position: absolute;
  pointer-events: none;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: calc(100% + 18px) 100%;
  transform: scale(1.07);
  transform-origin: bottom right;
  z-index: 1;
  /* Fade the image bottom into the background */
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 65%,
    rgba(0,0,0,0.6) 80%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 65%,
    rgba(0,0,0,0.6) 80%,
    transparent 100%
  );
}

.hero__girl-fallback {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(123,44,255,0.45));
  z-index: 1;
}
.hero__visual--no-img .hero__girl-fallback {
  display: block;
}
.hero__visual--no-img .hero__girl { display: none; }

/* ============================================
   MARQUEE BANDS
   ============================================ */
.marquee-stack {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 220px;
  margin: 40px 0;
  /* Clip diagonal bands to viewport — wide + rotated .marquee was widening page scroll */
  overflow-x: clip;
  overflow-y: visible;
}
.marquee-stack--mid {
  height: 120px;
  margin: 60px 0 30px;
}

.marquee {
  position: absolute;
  left: -10%;
  width: 130%;
  padding: 18px 0;
  /* NO overflow:hidden here — was causing cutoff on overlap */
  border-block: 1px solid rgba(255,255,255,0.08);
}
/* Violet band must always sit on top of dark band */
.marquee--violet { z-index: 2; }
.marquee--dark   { z-index: 1; }

.marquee__track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.marquee--up { transform: rotate(-3.5deg); top: 30px; }
.marquee--down { transform: rotate(3deg); top: 95px; }
.marquee-stack--mid .marquee--up { top: 30px; }

.marquee--violet {
  background: linear-gradient(90deg, #7B2CFF 0%, #9355F5 50%, #7B2CFF 100%);
  box-shadow: 0 14px 40px -10px rgba(123,44,255,0.5);
}
.marquee--violet .marquee__track span {
  font-family: 'FuturaTOT', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  letter-spacing: 0.02em;
}
.marquee--dark {
  background: linear-gradient(90deg, #1B1622 0%, #261E33 50%, #1B1622 100%);
}
.marquee--dark .marquee__track span {
  font-family: 'FuturaTOT', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: rgba(255,255,255,0.55);
}
.marquee--dark .marquee__track span:nth-child(2n) {
  color: var(--violet-300);
  font-size: 16px;
}

/* Two keyframes — one for each scroll direction, both seamless */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee--up   .marquee__track { animation: scrollLeft  35s linear infinite; }
.marquee--down .marquee__track { animation: scrollRight 28s linear infinite; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  padding: 80px 0;
}

.section-title {
  font-family: 'FuturaTOT', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  background-image: var(--metal-text-gradient);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-title--center { text-align: center; }
.section-title--xl { font-size: clamp(48px, 6vw, 84px); }

/* ---- About ---- */
.section--about { padding: 60px 0 40px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 460px;
}
.about__text strong {
  color: white;
  font-weight: 600;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  position: relative;
  padding: 28px 22px;
  background:
    linear-gradient(160deg, rgba(40,30,60,0.7) 0%, rgba(20,16,28,0.85) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  text-align: center;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 50%;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(172, 126, 255, 0.4);
}
.stat-card__num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.stat-card__label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.35;
}

/* ---- How we work ---- */
.section--how { padding: 60px 0 100px; }

.how {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  min-height: 360px;
}
.how__bg-num {
  position: absolute;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 220px;
  line-height: 1;
  color: transparent;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(80,70,90,0.4), transparent);
  -webkit-background-clip: text;
  background-clip: text;
}
.how__bg-num--1 { left: 14%; top: 70px; }
.how__bg-num--2 { left: 50%; transform: translateX(-50%); top: 0; }
.how__bg-num--3 { right: 14%; top: 80px; }

.how__curve {
  position: absolute;
  inset: 60px 0 0 0;
  width: 100%;
  height: 320px;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.step {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 280px;
}
.step--1 { align-self: start; justify-self: start; }
.step--2 { align-self: center; justify-self: center; margin-top: 220px; }
.step--3 { align-self: end; justify-self: end; margin-top: 140px; max-width: 260px; }

.step__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  color: white;
}
.step__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ============================================
   BLOGGERS
   ============================================ */
.section--bloggers { padding: 40px 0 80px; }
.bloggers {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}
.bloggers__main { display: flex; flex-direction: column; gap: 16px; }

.bloggers__toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.sort-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s ease;
  cursor: pointer;
}
.sort-btn:hover { border-color: rgba(172,126,255,0.4); }
.sort-btn svg { width: 16px; height: 16px; }

.search-box {
  position: relative;
  flex: 0 1 280px;
}
.search-box svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
}
.search-box input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  background: var(--panel-2);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus { border-color: var(--violet-400); }

.bloggers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bloggers__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 32px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.5;
  border: 1px dashed var(--stroke);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.02);
}
.filter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-field__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Custom selects (dark dropdown panel — avoids native white popup) */
.custom-select {
  position: relative;
  z-index: 1;
}
.custom-select.is-open {
  z-index: 30;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px 12px 16px;
  margin: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: var(--text-dim);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  text-align: left;
  transition: border-color .2s ease, background .2s ease;
}
.custom-select__trigger:hover,
.custom-select__trigger:focus-visible {
  border-color: rgba(172,126,255,0.35);
  background: rgba(255,255,255,0.05);
}
.custom-select__value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.82);
}
.custom-select__chevron {
  flex: 0 0 auto;
  width: 12px;
  height: 7px;
  display: block;
  transform: translateY(1px);
  transition: transform .2s ease;
}
.custom-select.is-open .custom-select__chevron {
  transform: translateY(1px) rotate(180deg);
}
.custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: min(280px, 45vh);
  overflow-y: auto;
  scrollbar-color: rgba(172,126,255,0.35) rgba(255,255,255,0.04);
  scrollbar-width: thin;
  background: linear-gradient(180deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.custom-select__list::-webkit-scrollbar {
  width: 6px;
}
.custom-select__list::-webkit-scrollbar-thumb {
  background: rgba(172,126,255,0.35);
  border-radius: 4px;
}
.custom-select__list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}
.custom-select__list[hidden] {
  display: none !important;
}
.custom-select__option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease;
}
.custom-select__option:hover,
.custom-select__option:focus-visible {
  background: rgba(172,126,255,0.18);
  outline: none;
}
.filter-field--disabled {
  opacity: 0.72;
  pointer-events: none;
}
.filter-field--disabled .custom-select__trigger--static {
  cursor: not-allowed;
}
.custom-select--static .custom-select__trigger--static {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 14px;
}
.custom-select--static .custom-select__value {
  color: var(--text-muted);
}
.blogger-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blogger-card__avatar--photo::after {
  display: none;
}
.blogger-card__avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.blogger-card {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(30,24,40,0.6) 0%, rgba(15,12,20,0.6) 100%);
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.blogger-card--empty:hover { border-color: rgba(255,255,255,0.18); }

.blogger-card--filled {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(40,30,60,0.4) 0%, rgba(20,16,28,0.85) 60%);
  aspect-ratio: auto;
}
.blogger-card--filled:hover {
  transform: translateY(-3px);
  border-color: rgba(172,126,255,0.5);
}

.blogger-card__media {
  position: relative;
  z-index: 0;
  height: 130px;
  border-radius: 18px;
  margin: 8px 8px 0;
  /* overflow only on .blogger-card__cover so the avatar is not clipped */
}
.blogger-card__cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 18px;
  overflow: hidden;
}
.staya-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  background:
    linear-gradient(135deg, #2A1A0F 0%, #1A0F1F 50%, #1A1A2A 100%);
}
.staya-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,80,40,0.35), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(123,44,255,0.3), transparent 60%);
}
.staya-cover__title {
  position: relative;
  z-index: 2;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 0.92;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
}
.staya-cover__title span {
  background: linear-gradient(90deg, #FF6B3D, #FFB13D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.6));
}
.staya-cover__faces {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: -6px;
}
.staya-cover .face {
  width: 28px; height: 36px;
  border-radius: 50% 50% 30% 30%;
  background: linear-gradient(180deg, #E8A878 0%, #8E5E3F 100%);
  margin-left: -8px;
  border: 1px solid rgba(0,0,0,0.3);
}
.staya-cover .face:first-child { margin-left: 0; }

.blogger-card__avatar {
  position: absolute;
  bottom: -22px; left: 16px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(160deg, #9F5BFF 0%, #4D17AB 100%);
  border: 3px solid #16121C;
  z-index: 2;
}
.blogger-card__avatar::after {
  content: ''; position: absolute;
  inset: 30% 28% 18% 28%;
  background: rgba(255,255,255,0.85);
  border-radius: 60% 60% 50% 50% / 60% 60% 30% 30%;
  clip-path: ellipse(50% 60% at 50% 70%);
}

.blogger-card__body {
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blogger-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px;
}
.blogger-card__name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}
.blogger-card__nick {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9F5BFF 0%, #5E18CC 100%);
  font-size: 10px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

.blogger-card__stats {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.blogger-card__stats li {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
}
.blogger-card__stats strong {
  color: white;
  font-weight: 600;
  margin-left: 2px;
}
.ico {
  width: 14px; height: 14px;
  display: inline-block;
  flex-shrink: 0;
  background-color: var(--violet-300);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.ico--users {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/></svg>");
}
.ico--eye {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5s9.3-3.1 11-7.5C21.3 7.6 17 4.5 12 4.5zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm0-2a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5s9.3-3.1 11-7.5C21.3 7.6 17 4.5 12 4.5zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10zm0-2a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/></svg>");
}
.ico--chart {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 17l4-4 4 4 7-7 3 3v-6h-6l3 3-7 7-4-4-6 6z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 17l4-4 4 4 7-7 3 3v-6h-6l3 3-7 7-4-4-6 6z'/></svg>");
}
.blogger-card__audience {
  font-size: 11px;
  color: var(--text-dim);
  padding-top: 4px;
}

/* ---- Filters sidebar ---- */
.filters {
  background: linear-gradient(180deg, rgba(30,24,40,0.5) 0%, rgba(15,12,20,0.6) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 480px;
}
.filters__head {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: white;
  padding-bottom: 4px;
}
.filters__reset {
  background: none; border: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: white;
  border-radius: 8px;
  transition: background .2s ease;
  cursor: pointer;
}
.filters__reset:hover { background: rgba(255,255,255,0.06); }
.filters__reset svg { width: 16px; height: 16px; }

.select {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.select:hover { border-color: rgba(172,126,255,0.3); }
.select svg { width: 12px; height: 7px; }

.filters__spacer { flex: 1; min-height: 60px; }

/* ============================================
   CONTACT
   ============================================ */
.section--contact {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.contact__watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -45%);
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(400px, 50vw, 800px);
  line-height: 0.85;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__sub {
  font-size: 17px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}
.contact__sub strong { color: white; font-weight: 600; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(15, 12, 20, 0.6);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-input);
  color: white;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field textarea:focus {
  border-color: var(--violet-400);
  background: rgba(15, 12, 20, 0.85);
}
.field textarea { resize: vertical; min-height: 120px; }

.contact__form .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(123, 44, 255, 0.18);
  border: 1px solid rgba(172, 126, 255, 0.5);
  border-radius: 14px;
  color: var(--violet-200);
  font-size: 14px;
}
.form-success.is-visible { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Full-width row: [wing] [gap] [pill] [gap] [wing] */
.footer-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 70px;
  padding: 0;
  margin-bottom: 28px;
}

/* Side wings — fill remaining space, stretch to screen edges */
.footer-wing {
  flex: 1 1 0;
  min-width: 0;
  height: 96px;
  border-radius: 26px;
  background: linear-gradient(160deg, #D8D2DF 0%, #C2BAD0 60%, #B8B0C8 100%);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
}
.footer-wing--left  { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.footer-wing--right { border-top-right-radius: 0; border-bottom-right-radius: 0; }

.footer-pill {
  flex: 0 0 auto;
  width: min(900px, 66vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 13px 24px 13px 13px;
  border-radius: var(--radius-pill);
  background: linear-gradient(100deg, #FFFFFF 0%, #EDE8F4 35%, #C8C0D8 60%, #EDE8F4 80%, #FFFFFF 100%);
  box-shadow:
    0 20px 50px -8px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(0,0,0,0.06);
}

.footer-pill__logo {
  width: 70px; height: 70px;
  border-radius: 18px;
  /* background: linear-gradient(160deg, #9F5BFF 0%, #5E18CC 100%);
  box-shadow:
    0 10px 24px -4px rgba(123,44,255,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3); */
  display: grid; place-items: center;
  overflow: hidden;
}
.footer-pill__logo img { object-fit: contain; }
.footer-pill__logo .logo-fallback { color: white; font-size: 36px; }

.footer-pill__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-pill__nav a {
  color: #1A1320;
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
}
.footer-pill__nav a:hover { color: var(--violet-500); }

.footer-pill__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-pill__icons { display: flex; gap: 6px; }
.ico-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9F5BFF 0%, #5E18CC 100%);
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.ico-btn:hover { transform: translateY(-2px); }
.ico-btn svg { width: 18px; height: 18px; }

.footer-pill__email {
  color: #1A1320;
  font-weight: 600;
  font-size: 15px;
}
.footer-pill__email:hover { color: var(--violet-500); }

.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__title-line:first-child { animation: fadeUp .9s .1s both cubic-bezier(.19,1,.22,1); }
.hero__title-line:last-child  { animation: fadeUp .9s .25s both cubic-bezier(.19,1,.22,1); }
.hero__bloggers   { animation: fadeUp .8s .45s both cubic-bezier(.19,1,.22,1); }
.hero__cta-row    { animation: fadeUp .8s .6s both cubic-bezier(.19,1,.22,1); }
.hero__visual     { animation: fadeUp 1s .35s both cubic-bezier(.19,1,.22,1); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.19,1,.22,1), transform .9s cubic-bezier(.19,1,.22,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding-left: 20px; }
  .hero__visual { height: 480px; order: -1; }
  .hero__girl {
    object-position: center bottom;
    transform: scale(1.05);
    transform-origin: bottom center;
  }

  .hero__visual::before {
    inset: 0;
    background: radial-gradient(
      ellipse 48% 58% at 52% 48%,
      rgba(118, 48, 205, 0.58) 0%,
      rgba(76, 28, 158, 0.3) 42%,
      rgba(36, 12, 78, 0.1) 64%,
      transparent 76%
    );
  }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }

  .bloggers { grid-template-columns: 1fr; }
  .filters { order: -1; min-height: auto; }
  .bloggers__grid { grid-template-columns: repeat(2, 1fr); }

  .how { grid-template-columns: 1fr; gap: 80px; }
  .step--1, .step--2, .step--3 {
    align-self: auto; justify-self: center;
    margin: 0; max-width: 460px; text-align: center;
  }
  .how__bg-num--1 { left: 50%; transform: translateX(-50%); top: 0; }
  .how__bg-num--2 { top: 200px; }
  .how__bg-num--3 { right: 50%; transform: translateX(50%); top: 420px; }
  .how__curve { display: none; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .nav-pill {
    /* 1fr | logo (auto) | 1fr+burger — true pill center, burger on the right */
    grid-template-columns: 1fr auto 1fr;
    height: 60px;
    padding: 0 14px 0 18px;
  }
  .nav-pill__left { display: none; }
  .nav-pill__right { display: none; }
  .nav-pill__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 44px;
    height: 44px;
  }
  .nav-burger {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-self: end;
    align-self: center;
  }

  .hero { padding: 100px 0 20px; }
  .hero__title { font-size: 44px; }
  .hero__visual { height: 380px; }
  .hero__visual::before {
    inset: 0;
    background: radial-gradient(
      ellipse 50% 58% at 52% 48%,
      rgba(118, 48, 205, 0.52) 0%,
      rgba(76, 28, 158, 0.26) 42%,
      rgba(36, 12, 78, 0.08) 64%,
      transparent 76%
    );
  }
  .hero__cta-row { grid-template-columns: 1fr; }
  .hero__sparkle {
    left: 4px;
    top: -4px;
    right: auto;
    width: 36px;
    height: 36px;
  }

  .about__stats { grid-template-columns: 1fr; }

  .bloggers__grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .marquee--violet .marquee__track span,
  .marquee--dark .marquee__track span { font-size: 16px; }
  .marquee--dark .marquee__track span:nth-child(2n) { font-size: 12px; }
  .marquee-stack { height: 176px; }

  .footer-row { gap: 10px; }
  .footer-pill {
    width: auto;
    flex: 1 1 auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    text-align: center;
    margin: 70px;
  }
  .footer-wing { display: none; }
  .footer-pill__logo { justify-self: center; }
  .footer-pill__nav { align-items: center; }
  .footer-pill__contact { align-items: center; }

  .section { padding: 50px 0; }
  .contact__watermark { font-size: 60vw; }
}

@media (max-width: 460px) {
  .bloggers__grid { grid-template-columns: 1fr; }
  .hero__caption { font-size: 13px; }
  .stat-card { padding: 22px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
}
