/* =====================================================
   Vividly Social — brand stylesheet v2
   Tokens, typography, layout, components, animations.
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  /* Brand */
  --vs-cream: #FFF3EC;
  --vs-cream-deep: #F5E5D6;
  --vs-lilac: #BD9CF3;
  --vs-purple: #7162F1;
  --vs-purple-dark: #4A3DD0;
  --vs-yellow: #FAE12E;
  --vs-black: #141414;
  --vs-ink: #1F1B2E;

  /* Type */
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;

  /* Layout */
  --container: 1180px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 36px;
  --space-5: 56px;
  --space-6: 80px;
  --space-7: 120px;

  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(20, 20, 20, 0.06);
  --shadow: 0 18px 60px rgba(74, 61, 208, 0.18);
  --shadow-lg: 0 32px 100px rgba(20, 20, 20, 0.18);

  --ease: cubic-bezier(.25,.8,.25,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--vs-black);
  background: var(--vs-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--vs-yellow); color: var(--vs-black); }

/* ========== SCROLL PROGRESS ========== */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--vs-purple), var(--vs-yellow));
  z-index: 1000;
  transition: width 0.05s linear;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity 0.2s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--vs-cream); }
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--vs-cream);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), opacity 0.2s;
}
.cursor-ring.is-hover { width: 56px; height: 56px; background: rgba(255,243,236,0.06); }
@media (max-width: 900px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ========== CONTAINER ========== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.measure { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: var(--vs-black);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
p { margin: 0 0 1.1em; }
.italic-serif, em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vs-purple);
  background: rgba(113, 98, 241, 0.10);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}
.eyebrow.on-cream { background: rgba(20, 20, 20, 0.06); }

.kicker { font-family: var(--font-heading); font-style: italic; font-size: 1.4rem; line-height: 1.4; }

/* Big centered pull-quote for the lilac quote strip */
.pullquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.pullquote::before, .pullquote::after {
  content: '"';
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.4em;
  opacity: 0.5;
}
.pullquote::before { margin-right: 6px; }
.pullquote::after { margin-left: 6px; }
.lead { font-size: 1.15rem; line-height: 1.6; }

.highlight-yellow { background: linear-gradient(180deg, transparent 60%, var(--vs-yellow) 60%); padding: 0 4px; }

.callout {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.4;
  background: var(--vs-yellow);
  color: var(--vs-black);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  border: 2px solid var(--vs-black);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  position: relative;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--vs-purple); color: var(--vs-cream); }
.btn--primary:hover { background: var(--vs-purple-dark); }
.btn--yellow { background: var(--vs-yellow); color: var(--vs-black); }
.btn--yellow:hover { background: #fff36b; }
.btn--ghost-dark { background: transparent; color: var(--vs-black); border-color: var(--vs-black); }
.btn--ghost-dark:hover { background: var(--vs-black); color: var(--vs-cream); }
.btn--ghost-light { background: transparent; color: var(--vs-cream); border-color: var(--vs-cream); }
.btn--ghost-light:hover { background: var(--vs-cream); color: var(--vs-black); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 243, 236, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}
.nav__inner { display: flex; align-items: center; gap: 16px; padding: 14px 24px; max-width: var(--container); margin: 0 auto; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img, .nav__logo svg { height: 64px; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 600px) { .nav__logo img, .nav__logo svg { height: 50px; } }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 auto 0 24px; padding: 0; }
.nav__links a {
  display: inline-block; padding: 8px 14px;
  font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}
.nav__links a:hover { background: rgba(20, 20, 20, 0.06); }
.nav__links a.is-active { background: var(--vs-black); color: var(--vs-cream); }
.nav__cta {
  display: inline-flex; align-items: center;
  background: var(--vs-purple); color: var(--vs-cream);
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.92rem;
  transition: transform 0.2s, background 0.2s;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--vs-purple-dark); }
.nav__toggle { display: none; background: transparent; border: 0; color: var(--vs-black); font-size: 1.6rem; cursor: pointer; margin-left: auto; }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--vs-cream);
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 16px 24px;
    gap: 8px;
    border-top: 1px solid rgba(20, 20, 20, 0.06);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__cta { display: none; }
}

/* ========== HERO ========== */
.hero { position: relative; padding: var(--space-7) 0 var(--space-6); background: var(--vs-cream); overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 60%;
  height: 120%;
  background:
    radial-gradient(circle at 30% 30%, rgba(189, 156, 243, 0.45), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(250, 225, 46, 0.30), transparent 55%);
  filter: blur(60px);
  z-index: 0;
  animation: meshFloat 18s ease-in-out infinite alternate;
}
@keyframes meshFloat { 0% { transform: translate(0,0) rotate(0); } 100% { transform: translate(-4%,6%) rotate(8deg); } }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-6); align-items: center; }
.hero__title { font-size: clamp(2.8rem, 6vw, 5.2rem); margin-bottom: var(--space-3); }
.hero__subtitle { font-size: 1.2rem; line-height: 1.55; margin-bottom: var(--space-4); max-width: 540px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero phone mockup */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.phone-frame {
  position: relative; width: 100%; max-width: 320px; aspect-ratio: 9 / 19.5;
  background: var(--vs-black); border-radius: 38px; padding: 12px;
  box-shadow:
    0 0 0 1px rgba(20,20,20,.9),
    0 40px 80px -20px rgba(74,61,208,.4),
    0 20px 40px rgba(20,20,20,.2);
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
  animation: phoneFloat 6s ease-in-out infinite alternate;
}
.phone-frame:hover { transform: rotate(0deg) scale(1.04); }
@keyframes phoneFloat { 0%{transform:rotate(-3deg) translateY(0);} 100%{transform:rotate(-3deg) translateY(-12px);} }
.phone-frame::before {
  content:''; position:absolute; top:16px; left:50%; transform:translateX(-50%);
  width:72px; height:22px; background:var(--vs-black); border-radius:14px; z-index:2;
}
.phone-frame video, .phone-frame .phone-fallback {
  width: 100%; height: 100%; border-radius: 26px; object-fit: cover; display: block;
}
.phone-fallback {
  background: linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-lilac) 50%, var(--vs-yellow) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 4rem; color: var(--vs-cream);
}
.phone-frame__chip {
  position: absolute; background: var(--vs-yellow); color: var(--vs-black);
  font-weight: 700; font-size: 0.78rem; padding: 8px 14px;
  border-radius: var(--radius-pill); border: 2px solid var(--vs-black); box-shadow: var(--shadow-sm);
}
.phone-frame__chip--top { top: -16px; right: -28px; transform: rotate(8deg); }
.phone-frame__chip--bottom { bottom: 24px; left: -36px; background: var(--vs-cream); transform: rotate(-6deg); }

@media (max-width: 900px) {
  .hero { padding: var(--space-5) 0 var(--space-4); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-4); }
  /* Title comes first on mobile, phone visual SECOND. */
  .hero__visual { order: 2; margin-top: var(--space-3); }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .phone-frame { max-width: 240px; transform: rotate(-2deg); animation: none; }
  .phone-frame__chip--top { right: -12px; }
  .phone-frame__chip--bottom { left: -16px; }
}

/* ========== TRUST STRIP (replaces marquee) ========== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-pill {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 26px;
  background: var(--vs-cream);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20, 20, 20, 0.08);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  cursor: default;
}
.trust-pill:hover {
  transform: translateY(-4px);
  background: var(--vs-purple);
  color: var(--vs-cream);
  border-color: var(--vs-purple);
}
.trust-pill__num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1;
  color: var(--vs-purple);
  transition: color 0.3s;
  flex-shrink: 0;
}
.trust-pill:hover .trust-pill__num { color: var(--vs-yellow); }
.trust-pill__label {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ========== MARQUEE (kept for any other pages still using it) ========== */
.marquee {
  background: var(--vs-black); color: var(--vs-cream);
  padding: 16px 0; overflow: hidden; position: relative;
  border-top: 1px solid var(--vs-yellow); border-bottom: 1px solid var(--vs-yellow);
}
.marquee__track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-heading); font-size: 1.5rem; font-style: italic;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 24px; }
.marquee__track span::after { content: '✦'; color: var(--vs-yellow); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SECTIONS ========== */
.section { padding: var(--space-6) 0; position: relative; overflow: hidden; }
.section--tight { padding: var(--space-4) 0; }
.section--cream { background: var(--vs-cream); color: var(--vs-black); }
.section--cream-deep { background: var(--vs-cream-deep); color: var(--vs-black); }
.section--lilac { background: var(--vs-lilac); color: var(--vs-cream); }
.section--lilac h1, .section--lilac h2, .section--lilac h3, .section--lilac h4 { color: var(--vs-cream); }
.section--purple { background: var(--vs-purple); color: var(--vs-cream); }
.section--purple h1, .section--purple h2, .section--purple h3, .section--purple h4 { color: var(--vs-cream); }
.section--purple-dark { background: var(--vs-purple-dark); color: var(--vs-cream); }
.section--purple-dark h1, .section--purple-dark h2, .section--purple-dark h3, .section--purple-dark h4 { color: var(--vs-cream); }
.section--yellow { background: var(--vs-yellow); color: var(--vs-black); }
.section--black { background: var(--vs-black); color: var(--vs-cream); }
.section--black h1, .section--black h2, .section--black h3, .section--black h4 { color: var(--vs-cream); }

.section--lilac .eyebrow,
.section--purple .eyebrow,
.section--purple-dark .eyebrow,
.section--black .eyebrow {
  color: var(--vs-cream);
  background: rgba(255, 243, 236, 0.16);
}

.divider-yellow { height: 14px; background: var(--vs-yellow); border: 0; margin: 0; }
.divider-purple { height: 14px; background: var(--vs-purple); border: 0; margin: 0; }
.divider-lilac { height: 14px; background: var(--vs-lilac); border: 0; margin: 0; }

/* ========== GRID ========== */
.grid { display: grid; gap: var(--space-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ========== CARDS ========== */
.card {
  background: var(--vs-cream); color: var(--vs-black);
  border-radius: var(--radius-lg); padding: var(--space-4);
  border: 1px solid rgba(20,20,20,.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card--lilac { background: var(--vs-lilac); color: var(--vs-cream); border-color: transparent; }
.card--lilac h3, .card--lilac .card__title, .card--lilac p, .card--lilac li { color: var(--vs-cream); }
.card--purple { background: var(--vs-purple); color: var(--vs-cream); border-color: transparent; }
.card--purple h3, .card--purple .card__title, .card--purple p, .card--purple li { color: var(--vs-cream); }
.card--yellow { background: var(--vs-yellow); color: var(--vs-black); border-color: var(--vs-black); }
.card--black { background: var(--vs-black); color: var(--vs-cream); border-color: var(--vs-black); }
.card--black h3, .card--black .card__title { color: var(--vs-cream); }
.card__title { font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.2; margin-bottom: 12px; }
.card__meta {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px; opacity: 0.7;
}

/* ========== STATS ========== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: rgba(255, 243, 236, 0.12);
  border: 1px solid rgba(255, 243, 236, 0.18);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.stat:hover { transform: translateY(-3px); background: rgba(255, 243, 236, 0.18); }
.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1; color: var(--vs-yellow);
  font-feature-settings: 'tnum' 1;
}
.stat__label { font-size: 0.82rem; font-weight: 600; opacity: 0.95; }
.section--cream .stat, .section--cream-deep .stat, .section--yellow .stat {
  background: rgba(20,20,20,.05);
  border-color: rgba(20,20,20,.12);
  color: var(--vs-black);
}
.section--cream .stat__num, .section--cream-deep .stat__num, .section--yellow .stat__num { color: var(--vs-purple); }

/* ========== CASE STUDY ========== */
.case {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-4);
  background: rgba(20, 20, 20, 0.03);
  border: 1px solid rgba(20, 20, 20, 0.08);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  align-items: center;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.case:hover { transform: translateY(-4px); background: rgba(20, 20, 20, 0.05); }
/* Dark sections invert the case wrapper styling */
.section--purple .case, .section--purple-dark .case, .section--lilac .case, .section--black .case {
  background: rgba(255, 243, 236, 0.08);
  border-color: rgba(255, 243, 236, 0.18);
}
.section--purple .case:hover, .section--purple-dark .case:hover, .section--lilac .case:hover, .section--black .case:hover {
  background: rgba(255, 243, 236, 0.12);
}
.case--reverse { grid-template-columns: 1.1fr 0.9fr; }
.case--reverse .case__media { order: 2; }
@media (max-width: 900px) {
  .case, .case--reverse { grid-template-columns: 1fr; }
  .case--reverse .case__media { order: 0; }
}
.case__media {
  background:
    radial-gradient(circle at 30% 20%, rgba(250, 225, 46, 0.4), transparent 55%),
    linear-gradient(135deg, var(--vs-purple-dark) 0%, var(--vs-lilac) 100%);
  color: var(--vs-cream);
  border-radius: var(--radius); padding: var(--space-4);
  font-family: var(--font-heading); font-size: 2.6rem; line-height: 1.05;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.case__media::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,20,20,.7) 100%);
  z-index: 0;
}
.case__media > * { position: relative; z-index: 2; }
.case__media-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--vs-cream);
  text-shadow: 0 2px 18px rgba(20, 20, 20, 0.55), 0 1px 4px rgba(20, 20, 20, 0.3);
}
.case__media::after { z-index: 1 !important; }
.case__media-tag {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 8px;
  background: var(--vs-yellow); color: var(--vs-black);
  padding: 4px 12px; border-radius: var(--radius-pill);
  align-self: flex-start;
}
/* All case-media variants keep cream text — the dark gradient overlay at the bottom makes white legible on every bg */
.case__media--lilac { background-color: var(--vs-lilac); }
.case__media--purple { background-color: var(--vs-purple); }
.case__media--yellow { background-color: var(--vs-yellow); }
.case__media--cream { background-color: var(--vs-cream-deep); }
.case__body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: var(--space-2); }

.case__before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 700px) { .case__before-after { grid-template-columns: 1fr; } }
.case__pill {
  background: rgba(20,20,20,.06);
  border-left: 4px solid var(--vs-purple);
  padding: 18px 20px; border-radius: 12px; font-size: 0.96rem;
}
.case__pill strong {
  display: block;
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 6px; color: var(--vs-purple);
}
.section--lilac .case__pill, .section--purple .case__pill, .section--purple-dark .case__pill {
  background: rgba(255,243,236,.1);
  border-left-color: var(--vs-yellow);
  color: var(--vs-cream);
}
.section--lilac .case__pill strong, .section--purple .case__pill strong, .section--purple-dark .case__pill strong { color: var(--vs-yellow); }

/* ========== STEPS ========== */
.step { position: relative; padding-top: 50px; }
.step__num {
  position: absolute; top: 0; left: 0;
  width: 64px; height: 64px;
  background: var(--vs-purple); color: var(--vs-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem;
  border: 3px solid var(--vs-black);
  transition: transform 0.4s var(--ease), background 0.4s;
}
.step:hover .step__num { transform: rotate(-8deg) scale(1.08); background: var(--vs-purple-dark); }
.step__title { margin-top: var(--space-4); margin-bottom: 8px; font-size: 1.4rem; }
.section--yellow .step__num { background: var(--vs-black); color: var(--vs-yellow); }

/* ========== TAG LIST ========== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-2); }
.tag-list span {
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  padding: 6px 12px; background: rgba(20,20,20,.08); border-radius: var(--radius-pill);
}
.card--lilac .tag-list span, .card--purple .tag-list span, .card--black .tag-list span {
  background: rgba(255,243,236,.16); color: var(--vs-cream);
}

/* ========== LOGOS STRIP ========== */
.logos {
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: center; align-items: center;
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--vs-black); margin-top: var(--space-3);
}

/* ========== INSTAGRAM REEL TILES (cropped to image only) ========== */
.reel-embeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .reel-embeds { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .reel-embeds { grid-template-columns: 1fr; max-width: 420px; } }

/* Each tile is a phone-frame mockup with the IG iframe cropped inside its screen.
   The phone bezel + screen aspect-ratio gives a clean visual frame, and the iframe
   is positioned so only the cover/video portion shows (header + footer hidden). */
.reel-tile {
  position: relative;
  aspect-ratio: 9 / 19;            /* phone proportions, taller than 9:16 to account for bezel */
  background: var(--vs-black);
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(20, 20, 20, 0.85),
    0 28px 56px -16px rgba(74, 61, 208, 0.32),
    0 14px 28px rgba(20, 20, 20, 0.16);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.reel-tile:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 0 0 1px rgba(20, 20, 20, 0.9),
    0 38px 70px -16px rgba(74, 61, 208, 0.4),
    0 18px 32px rgba(20, 20, 20, 0.2);
}
.reel-tile__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-lilac) 100%);
}
/* Notch */
.reel-tile__screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 16px;
  background: var(--vs-black);
  border-radius: 0 0 12px 12px;
  z-index: 5;
  pointer-events: none;
}
/* The IG iframe — pushed up so the profile header sits above visible area,
   stretched tall so the likes/caption/comment row sits below visible area. */
.reel-tile__iframe {
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: calc(100% + 340px);
  border: 0;
  background: var(--vs-cream);
  pointer-events: none;             /* clicks pass through to the link overlay */
}
.reel-tile__link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  cursor: pointer;
  border-radius: 32px;
}
.reel-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 243, 236, 0.95);
  color: var(--vs-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  z-index: 11;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.25);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.reel-tile:hover .reel-tile__play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--vs-cream);
}
/* Transparent link overlay covers the whole tile and intercepts clicks */
.reel-tile__link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  cursor: pointer;
}
/* Custom play button (sits above the iframe, ignores pointer events so the link gets clicks) */
.reel-tile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255, 243, 236, 0.95);
  color: var(--vs-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 4px;
  z-index: 11;
  pointer-events: none;
  transition: transform 0.3s var(--ease), background 0.3s;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.25);
}
.reel-tile:hover .reel-tile__play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--vs-cream);
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--vs-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--vs-purple);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vs-purple), var(--vs-lilac));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--vs-cream);
  font-weight: 400;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 700; font-size: 0.96rem; line-height: 1.3; }
.testimonial__role { font-size: 0.85rem; opacity: 0.7; line-height: 1.3; }

/* ========== CLIENT IMAGE GRID ========== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 800px)  { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

.client-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--vs-lilac);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: var(--vs-cream);
  isolation: isolate;
  cursor: default;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.client-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 20, 20, 0.85) 100%);
  z-index: -1;
  transition: background 0.4s;
}
.client-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.22);
}
.client-card:hover::after {
  background: linear-gradient(180deg, rgba(113, 98, 241, 0.25) 0%, rgba(20, 20, 20, 0.92) 100%);
}
.client-card__industry {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.client-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(20, 20, 20, 0.5);
  position: relative;
  z-index: 1;
}

/* ========== CLIENT WORDMARKS (legacy strip — kept for backwards compat) ========== */
.clients-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: var(--space-3);
}
@media (max-width: 900px) { .clients-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .clients-strip { grid-template-columns: repeat(2, 1fr); } }
.client-tile {
  background: var(--vs-cream);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius);
  padding: 24px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vs-black);
  min-height: 90px;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.client-tile:hover {
  transform: translateY(-4px);
  background: var(--vs-purple);
  color: var(--vs-cream);
}
.client-tile--alt { background: var(--vs-lilac); color: var(--vs-cream); }
.client-tile--alt:hover { background: var(--vs-yellow); color: var(--vs-black); }

/* ========== VIDEO / SHOOT GRID ========== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  position: relative; aspect-ratio: 9 / 14;
  background: var(--vs-purple); background-size: cover; background-position: center;
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-3); color: var(--vs-cream);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer; isolation: isolate;
}
.video-card::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,20,20,.85) 100%);
  z-index: -1; transition: background 0.4s;
}
.video-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.video-card:hover::after { background: linear-gradient(180deg, rgba(113,98,241,.35) 0%, rgba(20,20,20,.95) 100%); }
.video-card--lilac { background-color: var(--vs-lilac); }
.video-card--yellow { background-color: var(--vs-yellow); color: var(--vs-black); }
.video-card--cream { background-color: var(--vs-cream-deep); color: var(--vs-black); }
.video-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--vs-cream); color: var(--vs-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; padding-left: 4px;
  transition: transform 0.3s var(--ease);
}
.video-card:hover .video-card__play { transform: translate(-50%, -50%) scale(1.15); }
.video-card__client {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 4px;
}
.video-card__title { font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.2; }

/* ========== IMAGE BLOCKS ========== */
.img-block {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--vs-lilac);
  aspect-ratio: 4 / 5; isolation: isolate;
}
.img-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.img-block:hover img { transform: scale(1.06); }
.img-block::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,20,20,.5) 100%);
  pointer-events: none;
}
.img-block__chip {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--vs-yellow); color: var(--vs-black);
  font-weight: 700; font-size: 0.78rem;
  padding: 8px 14px; border-radius: var(--radius-pill);
  border: 2px solid var(--vs-black); z-index: 1;
}
/* Subtle gradient placeholder — no big text, looks intentional even with no image */
.img-block__fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(250, 225, 46, 0.35), transparent 55%),
    linear-gradient(135deg, var(--vs-purple) 0%, var(--vs-lilac) 100%);
}
/* Variant tints so multiple placeholders look distinct */
.img-block:nth-of-type(2n) .img-block__fallback {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 243, 236, 0.35), transparent 55%),
    linear-gradient(135deg, var(--vs-lilac) 0%, var(--vs-purple) 100%);
}
.img-block:nth-of-type(3n) .img-block__fallback {
  background:
    radial-gradient(circle at 30% 80%, rgba(189, 156, 243, 0.55), transparent 55%),
    linear-gradient(135deg, var(--vs-purple-dark) 0%, var(--vs-purple) 100%);
}

/* split-image gallery */
.image-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 540px;
}
@media (max-width: 900px) { .image-collage { height: auto; grid-template-rows: 280px 220px; } }
.image-collage > *:nth-child(1) { grid-row: 1 / span 2; }

/* ========== FORM ========== */
.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 8px; }
.form__row--two { grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form__row--two { grid-template-columns: 1fr; } }
.form label { font-weight: 700; font-size: 0.95rem; }
.form input, .form select, .form textarea {
  font-family: inherit; font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid rgba(20,20,20,.12);
  border-radius: 12px;
  background: var(--vs-cream); color: var(--vs-black);
  transition: border 0.2s, box-shadow 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--vs-purple);
  box-shadow: 0 0 0 4px rgba(113,98,241,.15);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .help { font-size: 0.85rem; opacity: 0.7; }
.form__choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 700px) { .form__choices { grid-template-columns: 1fr; } }
.form__choice {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 2px solid rgba(20,20,20,.12);
  border-radius: 12px;
  background: var(--vs-cream);
  cursor: pointer;
  font-weight: 600; font-size: 0.96rem;
  transition: border 0.2s, background 0.2s, transform 0.2s;
}
.form__choice:hover { border-color: var(--vs-purple); transform: translateY(-2px); }
.form__choice input { accent-color: var(--vs-purple); }

/* ========== FOOTER ========== */
.footer { background: var(--vs-black); color: var(--vs-cream); padding: var(--space-6) 0 var(--space-3); }
.footer__brand-mark { margin-bottom: var(--space-3); background: var(--vs-cream); display: inline-block; padding: 12px 18px; border-radius: var(--radius); }
.footer__brand-mark img, .footer__brand-mark svg { height: 50px; width: auto; display: block; }
.footer__tag { font-size: 0.95rem; max-width: 320px; opacity: 0.92; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--vs-yellow); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { transition: color 0.2s; }
.footer ul a:hover { color: var(--vs-yellow); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,243,236,.16);
  font-size: 0.86rem; opacity: 0.85;
  flex-wrap: wrap; gap: 10px;
}

/* ========== UTILITIES ========== */
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.gap-3 { gap: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 36px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }

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