/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES — LIGHT AGENCY THEME
   ============================================ */
:root {
  /* Surfaces */
  --bg-primary: #FFFFFF;
  --bg-soft: #FAFAFB;
  --bg-tint: #F7F5F8;

  /* Text */
  --text-primary: #0A0A0F;
  --text-secondary: rgba(10, 10, 15, 0.64);
  --text-muted: rgba(10, 10, 15, 0.42);
  --text-faint: rgba(10, 10, 15, 0.28);

  /* Borders */
  --border-strong: rgba(10, 10, 15, 0.12);
  --border: rgba(10, 10, 15, 0.08);
  --border-subtle: rgba(10, 10, 15, 0.05);

  /* Brand — matches MediaLabs logo (cyan-blue → purple) */
  --brand: #6D28D9;           /* primary: deep violet (for text, icons, borders) */
  --brand-blue: #3B9EFF;      /* logo cyan-blue */
  --brand-purple: #7C3AED;    /* logo purple */
  --brand-strong: #3B9EFF;    /* gradient start: blue */
  --brand-soft: #7C3AED;      /* gradient end: purple */
  --brand-accent: #A78BFA;    /* light lavender */
  --brand-pale: #EDE9FE;
  --brand-tint: #F5F3FF;
  --brand-blue-tint: #EEF6FF;

  /* Accent / glow */
  --glow-pink: rgba(109, 40, 217, 0.14);
  --glow-soft: rgba(59, 158, 255, 0.28);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-inner: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(10, 10, 15, 0.06);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 10, 15, 0.04);
  --shadow-sm: 0 4px 12px rgba(10, 10, 15, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 10, 15, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 10, 15, 0.12);
  --shadow-brand: 0 16px 40px rgba(109, 40, 217, 0.22);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

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

html,
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: 'Fustat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.font-display {
  font-family: 'Fustat', 'Inter', sans-serif;
}

/* ============================================
   PAGE SHELL + BACKGROUND
   ============================================ */
.ml-main {
  width: 100%;
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}

.bg-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-glow::before,
.bg-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.bg-glow::before {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.22), transparent 65%);
  top: -240px;
  left: -160px;
}

.bg-glow::after {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 65%);
  top: -80px;
  right: -160px;
}

/* ============================================
   CONTAINER + SECTION
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2.5rem;
  }
}

.container-sm { max-width: 720px; }
.container-md { max-width: 960px; }
.container-lg { max-width: 1200px; }

.section {
  width: 100%;
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

@media (min-width: 1200px) {
  .section { padding: 7rem 0; }
}

.section-tight {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-tight { padding: 4rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Section eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  width: fit-content;
  align-self: center;
}

/* When eyebrow appears inside a left-aligned flex column (e.g. hero-content),
   align it to the start instead of centered */
.hero-content > .eyebrow,
.two-col-text > .eyebrow {
  align-self: flex-start;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* Text helpers */
.text-gradient {
  background: linear-gradient(120deg, #3B9EFF 0%, #6D3BFF 55%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-brand { color: var(--brand); }

/* ============================================
   LIQUID-GLASS NAVBAR
   ============================================ */
.nav {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(10, 10, 15, 0.08);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(10, 10, 15, 0.04),
    0 12px 40px rgba(10, 10, 15, 0.06);
  pointer-events: auto;
  max-width: calc(100vw - 2rem);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fustat', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding-right: 1rem;
  border-right: 1px solid var(--border-subtle);
  margin-right: 0.25rem;
}

.nav-brand-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Black logo only in the nav menu; footer keeps the color logo */
.nav .nav-brand-mark img {
  filter: brightness(0);
}

.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(10, 10, 15, 0.04);
}

.nav-link.active {
  color: var(--text-primary);
  background: rgba(10, 10, 15, 0.05);
}

.nav-cta {
  margin-left: 0.25rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: #6D28D9;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 12px rgba(109, 40, 217, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #5B21B6;
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   MOBILE NAV TOGGLE (hamburger + drawer)
   ============================================ */
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 0.25rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.2s ease;
}

.nav-mobile-toggle:hover {
  background: rgba(10, 10, 15, 0.04);
}

.nav-mobile-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile-toggle span::before,
.nav-mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-mobile-toggle span::before { top: -5px; }
.nav-mobile-toggle span::after { top: 5px; }

.nav-inner[data-open="true"] .nav-mobile-toggle span { background: transparent; }
.nav-inner[data-open="true"] .nav-mobile-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-inner[data-open="true"] .nav-mobile-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 859px) {
  .nav { padding: 0 1rem; }
  .nav-inner { position: relative; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-cta { display: none; }

  .nav-inner .nav-links {
    display: none;
  }

  .nav-inner[data-open="true"] .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: 16px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 20px 50px rgba(10, 10, 15, 0.14);
  }

  .nav-inner[data-open="true"] .nav-links .nav-link {
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
  }

  .nav-inner[data-open="true"] .nav-links .nav-link.active {
    background: var(--brand-tint);
    color: var(--brand);
  }

  /* Promote the CTA into the mobile drawer so users can still get in touch */
  .nav-inner[data-open="true"] .nav-links::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border-subtle);
    margin: 0.5rem 0;
  }
  .nav-mobile-cta {
    display: flex !important;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: white !important;
    background: #6D28D9;
    border-radius: 10px;
    text-align: center;
  }
}

/* Hide mobile-cta on desktop */
.nav-mobile-cta { display: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: white;
  background: #6D28D9;
  border: 1px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 20px rgba(109, 40, 217, 0.22);
}

.btn-primary:hover {
  background: #5B21B6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(109, 40, 217, 0.30);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-dark {
  background: var(--text-primary);
  color: white;
  border-color: transparent;
}

.btn-dark:hover {
  background: #1a1a24;
}

.btn-lg {
  padding: 1.125rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-md);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  color: var(--brand);
  margin-left: 0.25rem;
}

.btn-arrow svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   HERO (dual column)
   ============================================ */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 6rem 0 5rem; }
}

@media (min-width: 1100px) {
  .hero { padding: 6.5rem 0 7rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-proof-stars {
  display: inline-flex;
  gap: 2px;
}

.hero-proof-stars svg {
  width: 14px;
  height: 14px;
  fill: #FFA617;
}

/* Hero visual — stacked content collage */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 55% 45%, rgba(109, 40, 217, 0.25), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 50px rgba(10, 10, 15, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-1 {
  width: 56%;
  aspect-ratio: 9 / 16;
  top: 4%;
  left: 4%;
  transform: rotate(-6deg);
  z-index: 3;
}

.hero-card-2 {
  width: 52%;
  aspect-ratio: 9 / 16;
  top: 18%;
  right: 2%;
  transform: rotate(7deg);
  z-index: 2;
}

.hero-card-3 {
  width: 48%;
  aspect-ratio: 9 / 16;
  bottom: 2%;
  left: 28%;
  transform: rotate(-2deg);
  z-index: 1;
}

.hero-visual:hover .hero-card-1 { transform: rotate(-4deg) translateY(-4px); }
.hero-visual:hover .hero-card-2 { transform: rotate(5deg) translateY(-4px); }
.hero-visual:hover .hero-card-3 { transform: rotate(-1deg) translateY(-4px); }

/* Floating tags/badges on hero visual */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 4;
  backdrop-filter: blur(12px);
}

.hero-badge-top {
  top: 8%;
  right: -2%;
}

.hero-badge-bottom {
  bottom: 12%;
  left: -4%;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.08); }
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.logo-strip-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
}

@media (min-width: 768px) {
  .logo-row { gap: 3rem 5rem; }
}

.logo-row img {
  height: 28px;
  max-height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%) contrast(0.9);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

@media (min-width: 768px) {
  .logo-row img { height: 32px; }
}

.logo-row img:hover {
  opacity: 0.85;
  filter: grayscale(30%);
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .stat { border-bottom: none; }
  .stat:last-child { border-right: none; }
}

.stat:nth-child(2) { border-right: none; }

@media (min-width: 768px) {
  .stat:nth-child(2) { border-right: 1px solid var(--border-subtle); }
}

.stat-value {
  font-family: 'Fustat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CARDS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 10, 15, 0.12);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-title {
  font-family: 'Fustat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Split card (For Brands / For Creators) */
.split-card {
  padding: 2.25rem;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.split-card-brands {
  background: linear-gradient(160deg, #F2EDFF 0%, #FFF 60%);
  border: 1px solid rgba(123, 87, 232, 0.12);
}

.split-card-creators {
  background: linear-gradient(160deg, var(--brand-tint) 0%, #FFF 60%);
  border: 1px solid rgba(109, 40, 217, 0.12);
}

.split-card-pill {
  align-self: flex-start;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
}

.split-card-brands .split-card-pill { color: #6147C3; }
.split-card-creators .split-card-pill { color: var(--brand); }

.split-card-title {
  font-family: 'Fustat', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 2rem;
}

.split-card-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.split-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  margin-top: 1.75rem;
  color: var(--text-primary);
  transition: transform 0.25s ease, background 0.25s ease;
}

.split-card:hover .split-card-arrow {
  transform: translateX(4px);
  background: var(--text-primary);
  color: white;
}

/* ============================================
   STEP / PROCESS
   ============================================ */
.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 900px) {
  .step-list { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3B9EFF 0%, #7C3AED 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fustat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(109, 40, 217, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-title {
  font-family: 'Fustat', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   CHECKLIST (why us)
   ============================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  align-items: flex-start;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.checklist-item:hover {
  background: var(--bg-soft);
  transform: translateX(4px);
  border-color: rgba(10, 10, 15, 0.12);
}

.checklist-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.checklist-item strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Fustat', sans-serif;
  letter-spacing: -0.005em;
}

.checklist-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(10, 10, 15, 0.12);
}

.faq-item.active {
  border-color: rgba(10, 10, 15, 0.14);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 5rem 0 6rem;
}

.final-cta-card {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(109, 40, 217, 0.14), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .final-cta-card { padding: 5rem 3rem; }
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.final-cta-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0 2.5rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  font-family: 'Fustat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Fustat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-mini {
  display: flex;
  gap: 1.25rem;
}

.footer-mini a {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-mini a:hover {
  color: var(--text-primary);
}

/* ============================================
   WINS GALLERY (UGC collage)
   ============================================ */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .wins-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 1024px) {
  .wins-grid { grid-template-columns: repeat(5, 1fr); }
}

.win-tile {
  aspect-ratio: 9 / 16;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.win-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.win-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  min-height: 100vh;
  background: var(--bg-primary);
}

.legal-header {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(109, 40, 217, 0.1), transparent 55%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.legal-title {
  font-family: 'Fustat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

@media (min-width: 768px) {
  .legal-body { padding: 4rem 2rem 6rem; }
}

.legal-company-block {
  text-align: center;
  padding: 2rem;
  margin-bottom: 3rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.legal-company-block strong {
  color: var(--text-primary);
  font-weight: 700;
  font-family: 'Fustat', sans-serif;
}

.legal-company-block a {
  color: var(--brand);
  font-weight: 500;
}

.legal-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section-title {
  font-family: 'Fustat', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.legal-subsection {
  margin-bottom: 1.5rem;
}

.legal-subsection-title {
  font-family: 'Fustat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.legal-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-text:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-list li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.75;
}

.legal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}

.legal-contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.legal-contact-card h3 {
  font-family: 'Fustat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.legal-contact-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.legal-contact-card a {
  color: var(--brand);
  font-weight: 500;
}

/* ============================================
   LOGO MARQUEE (auto-scrolling brand strip)
   ============================================ */
.logo-marquee {
  padding: 2.25rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .logo-marquee { padding: 3rem 0 2rem; }
}

.logo-marquee-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.logo-marquee-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-marquee-scroll 30s linear infinite;
  opacity: 0.8;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  height: 32px;
  width: 180px;
}

@media (min-width: 768px) {
  .logo-marquee-item { height: 36px; width: 200px; padding: 0 2.5rem; }
}

.logo-marquee-item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.92);
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.logo-marquee-item:hover img {
  filter: grayscale(40%) contrast(1);
}

@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

/* ============================================
   404 PAGE
   ============================================ */
.notfound-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 2;
}

.notfound-code {
  font-family: 'Fustat', sans-serif;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 0.95;
  background: linear-gradient(120deg, #3B9EFF 0%, #6D3BFF 55%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  margin: 0.75rem 0 1.25rem;
}

.notfound-title {
  font-family: 'Fustat', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 640px;
  color: var(--text-primary);
}

.notfound-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================
   DISCLAIMERS
   ============================================ */
.disclaimers {
  padding: 2.5rem 0 3rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.disclaimers-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.disclaimers-inner p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.disclaimers-inner strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ============================================
   ANIMATIONS + UTILITIES
   ============================================ */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fade-in-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-in-d1 { animation-delay: 0.08s; }
.fade-in-d2 { animation-delay: 0.16s; }
.fade-in-d3 { animation-delay: 0.24s; }
.fade-in-d4 { animation-delay: 0.32s; }

/* Responsive display helpers */
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: initial; }
  .hide-desktop { display: none; }
}
