/* ───── Reset & tokens ───── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --bg-0: #07050a;
  --bg-1: #0a0608;
  --crimson: #5a0a1a;
  --crimson-glow: #7a0d22;
  --accent: #ff4d6d;
  --accent-soft: #ff7a8e;
  --text: rgba(255, 255, 255, 0.94);
  --text-mute: rgba(255, 255, 255, 0.62);
  --text-faint: rgba(255, 255, 255, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --tile-radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1320px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-1);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ───── Background layers ───── */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  z-index: 0;
  opacity: 0.7;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, var(--crimson-glow) 0%, rgba(122,13,34,0.65) 18%, rgba(58,8,20,0.4) 38%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 90% 10%, rgba(255, 77, 109, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 60%, #050307 100%);
  z-index: -1;
}

/* ───── Nav ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(10,6,8,0.7), rgba(10,6,8,0.25));
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(255, 77, 109, 0.45));
}
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 18px rgba(255, 77, 109, 0.25), 0 1px 0 rgba(255,255,255,0.06) inset;
}
.brand-name { font-size: 17px; }
.brand-dot { color: var(--accent); margin: 0 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-mute);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.14); }

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: 96px 32px 64px;
  display: flex;
  justify-content: center;
}
.hero-inner {
  width: 100%;
  max-width: 920px;
  text-align: center;
}

/* Hero showcase video grids: two side panels on desktop, one montage below
   the headline on mobile (where most ad traffic lands). */
.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-panel { display: none; }
.hero-montage {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #15090d;
  box-shadow: 0 30px 70px -28px rgba(255,77,109,0.45), 0 12px 36px rgba(0,0,0,0.55);
}
/* Mobile / tablet: show one montage, below the headline and CTA */
.hero-layout .hero-inner { order: 1; }
.hero-panel-left {
  display: block;
  order: 2;
  width: min(340px, 82%);
}
@media (min-width: 1180px) {
  .hero-layout { flex-direction: row; gap: 32px; }
  .hero-panel {
    display: block;
    flex: 0 0 256px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .hero-layout .hero-inner { order: 0; flex: 0 1 640px; }
  .hero-panel-left { order: 0; width: auto; }
  .hero-panel-right { display: block; order: 0; margin-top: 36px; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 77, 109, 0.10);
  border: 1px solid rgba(255, 77, 109, 0.25);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.eyebrow-center { margin: 0 auto; }
.bolt {
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(255, 77, 109, 0.7));
}

.hero-title {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 22px 0 18px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent) 0%, #ff9d6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-mute);
  line-height: 1.55;
}

.hero-cta {
  margin: 36px 0 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: #fff;
  color: #0a0608;
  box-shadow: 0 10px 30px -8px rgba(255, 77, 109, 0.55), 0 4px 12px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(255, 77, 109, 0.75), 0 6px 16px rgba(0,0,0,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.hero-textlink {
  display: inline-block;
  margin: 16px 0 0;
  color: var(--text-mute);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.hero-textlink:hover { color: var(--text); border-color: rgba(255,255,255,0.5); }

.stat-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.stat-chips li {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
}
.stat-chips strong {
  color: var(--text);
  font-weight: 700;
  margin-right: 4px;
}

/* ───── Section heads ───── */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 18px 0 12px;
}
.section-sub {
  color: var(--text-mute);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* ───── Reel / Gallery ───── */
.reel {
  position: relative;
  padding: 88px 24px 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
@media (min-width: 760px) {
  .gallery { gap: 22px; }
}
.gallery-empty {
  text-align: center;
  color: var(--text-faint);
  padding: 48px 0;
}

.tile {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--tile-radius);
  overflow: hidden;
  background: #15090d;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 600ms var(--ease),
    opacity 600ms var(--ease),
    box-shadow 300ms var(--ease);
  cursor: pointer;
  isolation: isolate;
}
.tile.in {
  transform: translateY(0);
  opacity: 1;
}
.tile:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 30px 60px -20px rgba(255,77,109,0.35), 0 8px 20px rgba(0,0,0,0.55);
  border-color: rgba(255,77,109,0.3);
}
.tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #15090d;
}
.tile .tile-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(10, 6, 8, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.08);
}
.tile .tile-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 28%, transparent 70%, rgba(0,0,0,0.55) 100%);
  opacity: 0.85;
  transition: opacity 300ms var(--ease);
}
.tile:hover .tile-shade { opacity: 0.5; }

.tile .tile-play {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0a0608;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
  pointer-events: none;
}
.tile:hover .tile-play {
  opacity: 1;
  transform: translateY(0);
}
.tile .tile-play svg { width: 14px; height: 14px; }

/* Image tiles use the same frame as videos */
.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #15090d;
}

/* ───── NSFW tile variant ───── */
.tile-nsfw video,
.tile-nsfw img {
  filter: blur(30px) saturate(0.55) brightness(0.78);
  transform: scale(1.08); /* hide blur edge */
  transition: filter 500ms var(--ease), transform 500ms var(--ease);
}
.tile-nsfw.revealed video,
.tile-nsfw.revealed img {
  filter: none;
  transform: scale(1);
}
.tile-nsfw .tile-shade {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 55%, rgba(0,0,0,0.75) 100%);
  opacity: 1;
  z-index: 1;
}
.tile-nsfw.revealed .tile-shade {
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 28%, transparent 70%, rgba(0,0,0,0.55) 100%);
}

.tile-nsfw-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 8px;
  background: #e23a4a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(226, 58, 74, 0.4);
  transition: opacity 300ms var(--ease);
}
.tile-nsfw-badge svg { display: block; }
.tile-nsfw.revealed .tile-nsfw-badge {
  background: rgba(10, 6, 8, 0.55);
  box-shadow: none;
}

.tile-nsfw-bottom {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
  pointer-events: none;
}
.tile-nsfw-showcase {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.tile-nsfw-category {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.tile-nsfw.revealed .tile-nsfw-bottom {
  opacity: 0;
  transform: translateY(6px);
}

.tile-nsfw-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease), background 200ms var(--ease);
  padding: 0;
}
.tile-nsfw:hover .tile-nsfw-eye,
.tile-nsfw:focus-within .tile-nsfw-eye {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.tile-nsfw-eye:hover {
  background: rgba(255,255,255,0.22);
}
.tile-nsfw.revealed .tile-nsfw-eye { display: none; }

/* Slight always-visible cue on mobile (no hover) */
@media (hover: none) {
  .tile-nsfw:not(.revealed) .tile-nsfw-eye {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ───── X-Mode tease (between gallery and process) ───── */
.xmode-tease {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 16px;
}
.xmode-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 36px 36px 40px;
  border-radius: 26px;
  background:
    radial-gradient(120% 100% at 0% 50%, rgba(226,58,74,0.22), transparent 60%),
    radial-gradient(80% 120% at 100% 0%, rgba(226,58,74,0.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(226,58,74,0.28);
  box-shadow: 0 30px 80px -30px rgba(226,58,74,0.5);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.xmode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(226,58,74,0.04) 0 1px, transparent 1px 14px);
  pointer-events: none;
  z-index: 0;
}
.xmode-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226,58,74,0.5);
  box-shadow: 0 36px 100px -28px rgba(226,58,74,0.6);
}
.xmode-copy {
  position: relative;
  z-index: 1;
}
.xmode-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 8px;
  background: #e23a4a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(226,58,74,0.5);
}
.xmode-badge svg { display: block; }
.xmode-title {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
}
.xmode-title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff7a8e 0%, #ffb39a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.xmode-sub {
  max-width: 460px;
  margin: 0 0 22px;
  color: var(--text-mute);
  font-size: 15.5px;
  line-height: 1.55;
}
.xmode-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: #0a0608;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px -8px rgba(226,58,74,0.55), 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.xmode-card:hover .xmode-cta {
  transform: translateX(3px);
  box-shadow: 0 16px 40px -8px rgba(226,58,74,0.7), 0 6px 16px rgba(0,0,0,0.5);
}

.xmode-previews {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.xmode-preview {
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: #15090d;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  filter: blur(22px) saturate(0.6) brightness(0.78);
  transform: scale(1.1);
  transition: filter 400ms var(--ease), transform 400ms var(--ease);
}
.xmode-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.xmode-card:hover .xmode-preview {
  filter: blur(16px) saturate(0.7) brightness(0.85);
  transform: scale(1.06);
}
@media (max-width: 880px) {
  .xmode-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }
  .xmode-previews { grid-template-columns: repeat(3, 1fr); }
  .xmode-preview { aspect-ratio: 1 / 1; border-radius: 12px; }
}

/* ───── Process ───── */
.process {
  padding: 80px 24px 88px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.process-inner { max-width: 1180px; margin: 0 auto; }
.process-steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 980px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.process-step {
  position: relative;
  padding: 28px 26px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.process-step::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,77,109,0.18), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}
.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(255,77,109,0.28);
}
.process-step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.process-num {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(255,77,109,0.45);
}
.process-step h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.process-step p {
  margin: 0 0 18px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.55;
}
.process-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.process-input {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,77,109,0.18), transparent 65%),
    linear-gradient(180deg, #1a0a12, #0e0608);
  border: 1px solid var(--border);
  transition: transform 300ms var(--ease);
}
.process-input::before {
  content: attr(data-n);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.04em;
  z-index: 0;
}
.process-input img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.process-input.is-empty img { display: none; }
.process-input::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35));
  pointer-events: none;
}
.process-step:hover .process-input { transform: scale(1.01); }

.process-formats,
.process-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.process-formats > *,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.process-formats > *:nth-child(odd) {
  background: rgba(255,77,109,0.1);
  border-color: rgba(255,77,109,0.25);
  color: var(--accent-soft);
}
a.format-mature,
.format-mature {
  background: rgba(226,58,74,0.12) !important;
  border-color: rgba(226,58,74,0.35) !important;
  color: #f4a4ad !important;
  font-style: normal;
  letter-spacing: 0.06em;
  font-weight: 600;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
a.format-mature:hover {
  background: rgba(226,58,74,0.22) !important;
  transform: translateY(-1px);
}

.footer-mature {
  color: rgba(244,164,173,0.85) !important;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-mature:hover { color: #ff6b7a !important; }

.eyebrow-mature {
  background: rgba(226,58,74,0.16);
  border-color: rgba(226,58,74,0.4);
  color: #ffb3bb;
}
.reel-nsfw { padding-top: 56px; }

/* ───── Results (case study) ───── */
.results {
  padding: 80px 24px 88px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.results-inner { max-width: 1180px; margin: 0 auto; }

/* Featured case: real screenshots + metrics + client quote */
.case {
  margin: 48px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(226,58,74,0.22);
  background:
    radial-gradient(90% 60% at 0% 0%, rgba(226,58,74,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  box-shadow: 0 30px 80px -36px rgba(226,58,74,0.45);
}
@media (min-width: 920px) {
  .case {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    padding: 32px;
    align-items: center;
  }
}

.case-media {
  display: block;
  max-width: 420px;
  margin: 0 auto;
}
.case-shot {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(226,58,74,0.16), transparent 60%),
    linear-gradient(180deg, #18090f, #0d0608);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.7);
}
.case-shot img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}
.case-shot.is-empty { aspect-ratio: 4 / 5; }
.case-shot.is-empty img { display: none; }
.case-shot.is-empty::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.32);
}
.case-shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shot-tag {
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(10,6,8,0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.shot-date {
  font-size: 10.5px;
  font-weight: 600;
  color: #6ade91;
}

.case-body { min-width: 0; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.case-metric {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.case-metric-hl {
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(226,58,74,0.2), transparent 62%),
    linear-gradient(180deg, rgba(226,58,74,0.06), rgba(226,58,74,0.015));
  border-color: rgba(226,58,74,0.4);
}
.metric-num {
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric-unit {
  font-size: 0.5em;
  font-weight: 600;
  color: #ff7a8e;
  -webkit-text-fill-color: #ff7a8e;
}
.metric-unit-pre { margin-right: 1px; }
.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.metric-source {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-faint);
}

.case-quote {
  margin: 0 0 24px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
}
.case-quote p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}
.case-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #e23a4a, #ff7a8e);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.case-attr-text { display: flex; flex-direction: column; line-height: 1.3; }
.case-attr-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.case-verified {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  vertical-align: middle;
}
.case-attr-role {
  font-size: 12.5px;
  color: var(--text-mute);
}

.results-foot {
  margin: 8px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-mute);
}
.results-disclaimer {
  margin: 14px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-faint);
}
.results-foot a { color: var(--accent-soft); text-decoration: none; font-weight: 600; }
.results-foot a:hover { color: #ff6b7a; }

@media (max-width: 720px) {
  .results { padding: 60px 16px 72px; }
  .case { padding: 20px; gap: 22px; }
  .case-metrics { gap: 8px; }
  .case-metric { padding: 14px 12px; }
}
@media (max-width: 440px) {
  .case-metrics { grid-template-columns: 1fr; }
}
.pill-pulse {
  background: rgba(255,77,109,0.12);
  border-color: rgba(255,77,109,0.3);
  color: var(--accent-soft);
  position: relative;
}
.pill-pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(255,77,109,0.5);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ───── Engine ───── */
.engine {
  padding: 80px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.engine-inner { max-width: 1180px; margin: 0 auto; }
.engine-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .engine-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1100px) {
  .engine-grid { grid-template-columns: repeat(4, 1fr); }
}
.engine-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,77,109,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
  overflow: hidden;
}
.engine-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,77,109,0.28);
}
.engine-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,77,109,0.12);
  color: var(--accent);
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(255,77,109,0.18) inset;
}
.engine-icon svg { width: 22px; height: 22px; }
.engine-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.engine-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
}

/* ───── Why ───── */
.why {
  padding: 88px 24px 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-inner { max-width: 1180px; margin: 0 auto; }

.why-stats {
  margin: 56px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 880px) {
  .why-stats { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.why-stat {
  padding: 28px 22px 24px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,77,109,0.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.why-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255,77,109,0.28);
}
.why-stat-num {
  display: block;
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-stat-unit {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  margin-left: 2px;
  letter-spacing: 0;
}
.why-stat-label {
  display: block;
  margin-top: 10px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.45;
}

.why-compare {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) {
  .why-compare { grid-template-columns: 1fr 1fr; gap: 22px; }
}
.why-col {
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  position: relative;
  overflow: hidden;
}
.why-col-old {
  filter: saturate(0.6);
  opacity: 0.85;
}
.why-col-new {
  padding-top: 48px;
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(255,77,109,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,77,109,0.05), rgba(255,77,109,0.02));
  border-color: rgba(255,77,109,0.28);
  box-shadow: 0 20px 60px -30px rgba(255,77,109,0.4);
}
.why-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.why-col-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--text-mute);
}
.why-col-new .why-col-tag {
  background: rgba(255,77,109,0.18);
  color: var(--accent-soft);
}
.why-col h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.why-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
}
.why-col li {
  display: grid;
  grid-template-columns: 28px 1fr 1.4fr;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(10,6,8,0.55);
  font-size: 14px;
  align-items: center;
  transition: background 200ms var(--ease);
}
.why-col li:hover { background: rgba(10,6,8,0.7); }
.why-col li span {
  color: var(--text-faint);
  font-weight: 500;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.why-icon svg { width: 14px; height: 14px; }
.why-col-old .why-icon {
  color: rgba(255,255,255,0.32);
}
.why-col-new .why-icon {
  background: rgba(255,77,109,0.14);
  border-color: rgba(255,77,109,0.25);
  color: var(--accent-soft);
  box-shadow: 0 0 14px rgba(255,77,109,0.18) inset;
}

.why-col-old li strong {
  color: var(--text-mute);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.25);
}
.why-col-new li strong {
  color: var(--text);
  font-weight: 600;
}

.why-col-foot {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(10,6,8,0.55);
  border: 1px dashed rgba(255,255,255,0.08);
}
.why-col-foot span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.why-col-old .why-col-foot strong {
  color: var(--text-mute);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.3);
  font-size: 15px;
}
.why-col-foot-win {
  border-style: solid;
  border-color: rgba(255,77,109,0.3);
  background: linear-gradient(90deg, rgba(255,77,109,0.1), rgba(255,77,109,0.02));
}
.why-col-foot-win strong {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}

.why-col-winner {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5d75 0%, #e23a4a 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -6px rgba(226,58,74,0.55);
}
.why-col-winner-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* ───── Contact ───── */
.contact {
  padding: 100px 24px 120px;
  text-align: center;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,77,109,0.18), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
}
.contact-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.contact-sub {
  margin: 0 0 28px;
  color: var(--text-mute);
  font-size: 16.5px;
}
.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───── Minimal nav (ad landing pages) ───── */
.nav-minimal { justify-content: space-between; }

/* ───── Lead form (free-sample landing) ───── */
.lead {
  padding: 40px 24px 110px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(255,77,109,0.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -36px rgba(255,77,109,0.4);
}
@media (min-width: 920px) {
  .lead-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 44px;
    padding: 44px;
    align-items: center;
  }
}
.lead-title {
  margin: 18px 0 12px;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.lead-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent) 0%, #ff9d6c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-sub {
  margin: 0 0 20px;
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.55;
  max-width: 480px;
}
.lead-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.lead-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14.5px;
}
.lead-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,77,109,0.14);
  border: 1px solid rgba(255,77,109,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a8e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(10,6,8,0.55);
  border: 1px solid var(--border-strong);
}
.lead-hp { position: absolute; left: -9999px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.field-opt { color: var(--text-faint); font-weight: 500; }
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus {
  outline: none;
  border-color: rgba(255,77,109,0.55);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(255,77,109,0.16);
}
.lead-submit { width: 100%; margin-top: 6px; }
.lead-form-fine {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
}
.lead-claimed {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 28px;
  border-radius: 22px;
  background: rgba(10,6,8,0.55);
  border: 1px solid var(--border-strong);
}
.lead-claimed h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.lead-claimed p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-mute);
}
.lead-claimed .btn { margin-top: 4px; }

/* ───── Thank-you check ───── */
.thanks-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,77,109,0.14);
  border: 1px solid rgba(255,77,109,0.4);
  color: var(--accent-soft);
  box-shadow: 0 0 28px rgba(255,77,109,0.25) inset;
}

/* ───── Footer ───── */
.footer {
  padding: 24px 32px 36px;
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer a { color: var(--text-mute); text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer-sep { opacity: 0.5; }

/* ───── Lightbox ───── */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  z-index: 200;
}
.lightbox::backdrop { background: transparent; }
.lightbox[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox[open]::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 6, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  animation: lb-fade 220ms var(--ease) both;
  z-index: -1;
}
@keyframes lb-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-stage {
  position: relative;
  width: min(92vw, 520px);
  aspect-ratio: 9 / 16;
  max-height: 82vh;
  border-radius: 22px;
  overflow: hidden;
  background: #0a0608;
  box-shadow: 0 40px 100px -30px rgba(255,77,109,0.45), 0 12px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  animation: lb-pop 320ms var(--ease) both;
}
@keyframes lb-pop {
  from { transform: scale(0.94) translateY(12px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.lightbox-stage video,
.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.lightbox-stage img[hidden],
.lightbox-stage video[hidden] { display: none; }
.lightbox-stage video::-webkit-media-controls-panel {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
}
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
  z-index: 1;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
  transform: rotate(90deg);
}
.lightbox-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: lb-fade 400ms var(--ease) 100ms both;
}
.lightbox-label {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
body.lb-open { overflow: hidden; }

/* ───── 18+ Age Gate ───── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 3, 6, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  animation: lb-fade 220ms var(--ease) both;
}
.age-gate.is-open { display: flex; }
.age-gate-card {
  width: 100%;
  max-width: 480px;
  padding: 36px 32px 28px;
  border-radius: 24px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(226,58,74,0.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px -20px rgba(226,58,74,0.45), 0 12px 40px rgba(0,0,0,0.6);
  text-align: center;
  animation: lb-pop 320ms var(--ease) both;
}
.age-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e23a4a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(226,58,74,0.45);
}
.age-gate-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}
.age-gate-card p {
  margin: 0 0 24px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.55;
}
.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.age-gate-actions .btn { width: 100%; }
.age-gate-fine {
  margin: 0 !important;
  font-size: 12px !important;
  color: var(--text-faint) !important;
}
body.lb-open { overflow: hidden; }

/* ───── Proof bar (trust strip) ───── */
.proof-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px 14px;
  max-width: 760px;
  margin: 28px auto 0;
}
.proof-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  min-width: 120px;
}
.proof-bar-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.proof-bar-num em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
.proof-bar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ───── Pricing / tiers ───── */
.pricing {
  padding: 80px 24px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  scroll-margin-top: 80px;
}
.pricing-inner { max-width: 1180px; margin: 0 auto; }
.tiers {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 680px) {
  .tiers { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1080px) {
  .tiers { grid-template-columns: repeat(4, 1fr); }
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(255,77,109,0.28);
}
.tier-featured {
  border-color: rgba(255,77,109,0.45);
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(255,77,109,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,77,109,0.05), rgba(255,77,109,0.02));
  box-shadow: 0 26px 70px -34px rgba(255,77,109,0.55);
}
@media (min-width: 1080px) {
  .tier-featured { transform: translateY(-8px); }
  .tier-featured:hover { transform: translateY(-12px); }
}
.tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5d75 0%, #e23a4a 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px -6px rgba(226,58,74,0.6);
}
.tier-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.tier-price {
  margin: 16px 0 2px;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.tier-price-cur {
  font-size: 24px;
  font-weight: 600;
  vertical-align: top;
  color: var(--text-mute);
  margin-right: 1px;
}
.tier-price-sm { font-size: 26px; letter-spacing: -0.02em; }
.tier-price-note {
  font-size: 12.5px;
  color: var(--text-faint);
  min-height: 16px;
}
.tier-save {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,77,109,0.16);
  border: 1px solid rgba(255,77,109,0.35);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
.tier-desc {
  margin: 14px 0 16px;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.5;
}
.tier-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tier-features li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,77,109,0.14);
  border: 1px solid rgba(255,77,109,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a8e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.tier .btn { width: 100%; margin-top: auto; }
.tier-foot {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-faint);
}
.tiers-trust {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
}
.tiers-trust svg { width: 14px; height: 14px; opacity: 0.75; flex-shrink: 0; }

/* ───── Guarantee band ───── */
.guarantee {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 20px 26px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: left;
  background: linear-gradient(90deg, rgba(255,77,109,0.10), rgba(255,77,109,0.02));
  border: 1px dashed rgba(255,77,109,0.32);
}
.guarantee-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,77,109,0.14);
  color: var(--accent);
  box-shadow: 0 0 22px rgba(255,77,109,0.18) inset;
}
.guarantee-icon svg { width: 22px; height: 22px; }
.guarantee p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 720px;
}
.guarantee strong { color: var(--text); font-weight: 600; }

/* ───── How it works (order steps) ───── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 44px;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
.step {
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,77,109,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: rgba(255,77,109,0.28); }
.step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(255,77,109,0.45);
}
.step h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mute);
}

/* ───── Reviews ───── */
.reviews {
  padding: 64px 24px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.reviews-inner { max-width: 1180px; margin: 0 auto; }
.review-strip {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 16px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(255,77,109,0.24); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e23a4a, #ff7a8e);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.review-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.review-verified {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
}
.review-role { font-size: 12px; color: var(--text-mute); }
.review-stars { display: inline-flex; gap: 2px; color: var(--accent); }
.review-stars svg { width: 15px; height: 15px; display: block; }

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 6px;
  font-size: 15px;
  color: var(--text-mute);
}
.social-proof strong { color: var(--text); font-weight: 700; }
.social-proof .review-stars svg { width: 18px; height: 18px; }
.platform-caption {
  text-align: center;
  margin: 26px 0 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.review-quote {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
}
/* Invite card (clearly a CTA, never a fake testimonial) */
.review-cta {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-style: dashed;
  border-color: rgba(255,77,109,0.3);
  background: linear-gradient(180deg, rgba(255,77,109,0.06), rgba(255,77,109,0.015));
}
.review-cta h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.review-cta p { margin: 0; font-size: 13.5px; color: var(--text-mute); line-height: 1.5; }
.review-cta a {
  margin-top: 4px;
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
}
.review-cta a:hover { color: #ff6b7a; }

/* Auto-scrolling marquee track */
.review-marquee {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.review-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: review-scroll 60s linear infinite;
  will-change: transform;
}
.review-marquee:hover .review-track { animation-play-state: paused; }
.review-track .review-card {
  flex: 0 0 300px;
  width: 300px;
}
@keyframes review-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 560px) {
  .review-track .review-card { flex-basis: 264px; width: 264px; }
}
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .review-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ───── FAQ ───── */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 24px;
}
.faq-list { margin-top: 36px; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}
.faq-item[open] { border-color: rgba(255,77,109,0.28); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  transition: transform 220ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* ───── Textarea (intake form) ───── */
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
  min-height: 92px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field textarea::placeholder { color: var(--text-faint); }
.field textarea:focus {
  outline: none;
  border-color: rgba(255,77,109,0.55);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(255,77,109,0.16);
}
.field input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--text-mute);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.field input[type="file"]::file-selector-button:hover {
  background: rgba(255,77,109,0.18);
  border-color: rgba(255,77,109,0.4);
}
.field-hint {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-faint);
}

/* Order-confirmed banner inside the intake form copy */
.intake-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(106,222,145,0.12);
  border: 1px solid rgba(106,222,145,0.35);
  color: #8ef0ad;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.intake-tag svg { display: block; }

/* ───── Top promo bar (scrolls away above sticky nav) ───── */
.promo-bar {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 44px 9px 16px;
  text-align: center;
  background: linear-gradient(90deg, rgba(226,58,74,0.24), rgba(255,77,109,0.18));
  border-bottom: 1px solid rgba(255,77,109,0.25);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.promo-bar.is-hidden { display: none; }
.promo-bar strong { color: var(--accent-soft); font-weight: 700; }
.promo-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.promo-bar a:hover { color: var(--accent-soft); border-color: var(--accent-soft); }
.promo-bar-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-mute);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.promo-bar-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ───── Floating CTA (hovers in after the hero) ───── */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%) translateY(170%);
  opacity: 0;
  transition: transform 380ms var(--ease), opacity 380ms var(--ease);
  pointer-events: none;
}
.float-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.float-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #0a0608;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 16px 44px -10px rgba(255,77,109,0.75), 0 6px 18px rgba(0,0,0,0.5);
  transition: transform 220ms var(--ease);
}
.float-cta-link:hover { transform: translateY(-2px); }
.float-cta-link strong { color: var(--accent); }
.float-cta-link svg { width: 16px; height: 16px; }
.float-cta-close {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: rgba(20,12,16,0.72);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 18px;
  line-height: 1;
  transition: background 200ms var(--ease);
}
.float-cta-close:hover { background: rgba(20,12,16,0.92); }
@media (max-width: 560px) {
  .float-cta { left: 12px; right: 12px; bottom: 14px; transform: translateY(170%); }
  .float-cta.show { transform: translateY(0); }
  .float-cta-link { flex: 1; justify-content: center; }
  .promo-bar { font-size: 12px; padding: 8px 40px 8px 12px; }
}

/* ───── Responsive ───── */
@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 44px 20px 36px; }
  .hero-title { font-size: clamp(28px, 8.2vw, 38px); line-height: 1.07; margin: 16px 0 12px; }
  .hero-sub { font-size: 15px; line-height: 1.5; }
  .hero-cta { margin: 22px 0 16px; }
  .reel { padding: 60px 16px 72px; }
  .process { padding: 60px 16px 72px; }
  .why { padding: 60px 16px; }
  .contact { padding: 64px 16px 80px; }
  .contact-inner { padding: 40px 22px; }
  .lead { padding: 24px 16px 80px; }
  .lead-inner { padding: 24px 20px; }
  .lead-form { padding: 20px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tile .tile-label { font-size: 11px; padding: 4px 8px; }
  .stat-chips { gap: 8px; }
  .stat-chips li { font-size: 12px; padding: 6px 12px; }
  .process-step { padding: 22px 20px; }
  .process-step h3 { font-size: 19px; }
  .why-stat-num { font-size: 44px; }
  .why-col { padding: 22px 20px; }
  .why-col-new { padding-top: 42px; }
  .why-col li { grid-template-columns: 0.9fr 1.3fr; gap: 12px; padding: 11px 12px; font-size: 13px; }
  .lightbox-stage { width: 96vw; max-height: 78vh; border-radius: 18px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .tile { transform: none; opacity: 1; }
}
