:root {
  --ink: #17111b;
  --muted: #716779;
  --paper: #ffffff;
  --soft: #f8f5f9;
  --line: #eadfeb;
  --deep: #160b1b;
  --deep-2: #211229;
  --deep-3: #2c1637;
  --accent: #7b1f79;
  --accent-2: #bd2d8a;
  --accent-3: #e263b5;
  --accent-soft: #f7eaf4;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(45, 18, 53, .12);
  --shadow-deep: 0 30px 100px rgba(7, 2, 10, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; margin: 0; }
button, input { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 108px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid rgba(234,223,235,.78);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: 0 5px 18px rgba(30,18,35,.08);
}
.brand > span {
  font-weight: 900;
  letter-spacing: -.055em;
  font-size: 1.65rem;
  background: linear-gradient(110deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 730; }
.nav > a:not(.button) { transition: color .2s ease; }
.nav > a:not(.button):hover { color: var(--accent); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-weight: 800; cursor: pointer; }

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 850;
  cursor: pointer;
  background: linear-gradient(115deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 12px 34px rgba(123,31,121,.24);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(123,31,121,.32); filter: saturate(1.08); }
.button-small { min-height: 40px; padding: 10px 17px; font-size: .86rem; }
.button-bright { background: linear-gradient(110deg, #a9288a, #e04da7); box-shadow: 0 16px 45px rgba(226,75,167,.25); }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  font-weight: 900;
  color: var(--accent);
}
.eyebrow.light { color: #ee82c2; }
.gradient-text {
  background: linear-gradient(100deg, #7c217a 0%, #c12f8e 52%, #e268b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .gradient-text, .proof-band .gradient-text {
  background: linear-gradient(100deg, #fff 0%, #f19acf 42%, #d54aa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2, h3 { margin: 0; letter-spacing: -.05em; line-height: .99; }
h1 { font-size: clamp(3.8rem, 7.5vw, 7.5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { font-size: 1.55rem; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 79% 22%, rgba(209,54,149,.34), transparent 27%),
    radial-gradient(circle at 22% 72%, rgba(111,34,142,.28), transparent 35%),
    linear-gradient(135deg, #120817 0%, #1c0d23 52%, #2b1031 100%);
  padding: 92px 0 104px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 88%);
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  top: -220px;
  right: -160px;
  box-shadow: 0 0 0 80px rgba(255,255,255,.015), 0 0 0 160px rgba(255,255,255,.01);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.13fr .87fr; align-items: center; gap: 78px; }
.hero-copy { max-width: 770px; }
.hero-lead { max-width: 690px; margin-top: 24px; color: rgba(255,255,255,.68); font-size: clamp(1.08rem, 1.8vw, 1.38rem); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.text-link-light { color: rgba(255,255,255,.84); font-weight: 800; }
.text-link-light span { color: #ef7ec0; margin-left: 4px; }
.hero-proof {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.hero-proof > div { min-width: 125px; padding: 16px 19px; border-right: 1px solid rgba(255,255,255,.11); }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-size: 1.35rem; letter-spacing: -.04em; }
.hero-proof span { display: block; margin-top: 2px; color: rgba(255,255,255,.55); font-size: .76rem; font-weight: 700; }

.hero-media { position: relative; padding: 10px 20px 10px 0; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 14% -8% 5% 13%;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(188,45,138,.22), rgba(115,28,120,.08));
  filter: blur(2px);
  transform: rotate(5deg);
}
.hero-video-shell {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 405px);
  margin-left: auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 30px;
  background: #0a070c;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow-deep);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hero-video-shell:hover .hero-video { transform: scale(1.018); }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,7,18,.04) 38%, rgba(11,5,14,.9) 100%); }
.hero-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 3px;
  background: rgba(20,9,25,.72);
  border: 1px solid rgba(255,255,255,.36);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.hero-play span { transform: translateX(2px); }
.hero-video-shell:hover .hero-play { transform: translate(-50%, -50%) scale(1.06); background: rgba(164,37,132,.88); }
.video-proof-badge { position: absolute; z-index: 3; left: 20px; right: 20px; bottom: 52px; display: grid; gap: 3px; }
.video-proof-badge > span { color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .13em; font-weight: 900; font-size: .63rem; }
.video-proof-badge strong { font-size: 1.28rem; letter-spacing: -.035em; }
.video-proof-badge small { color: rgba(255,255,255,.7); font-weight: 700; }
.watch-full { position: absolute; z-index: 3; left: 20px; bottom: 18px; color: white; font-size: .78rem; font-weight: 850; border-bottom: 1px solid rgba(255,255,255,.4); }
.orbit-card {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border-radius: 999px;
  color: white;
  background: rgba(31,14,38,.82);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  font-size: .72rem;
  font-weight: 850;
}
.orbit-card-one { top: 12%; left: 2%; }
.orbit-card-two { bottom: 13%; right: -5%; }

/* Shared headings */
.section-heading { margin-bottom: 56px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 72px; }
.split-heading p { color: var(--muted); font-size: 1.08rem; }
.light-heading { color: white; }
.light-heading p { color: rgba(255,255,255,.62); }

/* Case study */
.case-section { background: linear-gradient(180deg, #fff 0%, #fbf8fc 100%); }
.case-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: start; }
.video-player-card {
  position: sticky;
  top: 98px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(145deg, #241329, #100a14);
  box-shadow: var(--shadow);
}
.video-meta { padding: 5px 5px 14px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.67); font-size: .78rem; }
.video-meta > span { color: #ed78bd; text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; font-weight: 900; }
.video-meta strong { color: white; }
.case-video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; border-radius: 19px; background: #000; }
.case-side { display: grid; gap: 18px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.case-stats article { padding: 26px 22px; min-height: 132px; display: flex; flex-direction: column; justify-content: end; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(45,18,53,.04); }
.case-stats strong { font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -.055em; }
.case-stats span { margin-top: 4px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.case-copy-card { position: relative; overflow: hidden; padding: 38px; min-height: 360px; border-radius: 26px; color: white; background: linear-gradient(135deg, #241029 0%, #39113c 52%, #5a174f 100%); box-shadow: var(--shadow); }
.case-copy-card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -110px; top: -110px; background: radial-gradient(circle, rgba(231,88,176,.3), transparent 66%); }
.card-kicker { position: relative; z-index: 2; display: inline-block; margin-bottom: 54px; text-transform: uppercase; letter-spacing: .14em; font-size: .65rem; font-weight: 900; color: #ef87c6; }
.case-copy-card h3 { position: relative; z-index: 2; font-size: clamp(2rem, 3.8vw, 3.4rem); max-width: 560px; }
.case-copy-card p { position: relative; z-index: 2; max-width: 640px; margin-top: 18px; color: rgba(255,255,255,.67); font-size: 1.03rem; }
.handled-list { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.handled-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.84); font-size: .72rem; font-weight: 760; }

/* Proof band */
.proof-band { padding: 84px 0; color: white; background: linear-gradient(125deg, #160b1b 0%, #23102a 55%, #3b113a 100%); }
.proof-band-grid { display: grid; grid-template-columns: 1.8fr repeat(3, .65fr); align-items: end; gap: 34px; }
.proof-intro h2 { font-size: clamp(2.2rem, 4.2vw, 4.2rem); }
.proof-intro p { max-width: 610px; margin-top: 18px; color: rgba(255,255,255,.6); }
.proof-stat { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.15); }
.proof-stat strong { display: block; font-size: clamp(2.4rem, 4.6vw, 4.8rem); letter-spacing: -.06em; }
.proof-stat span { display: block; margin-top: 5px; color: rgba(255,255,255,.52); font-size: .8rem; font-weight: 750; }

/* Difference */
.difference-section { background: white; }
.difference-top { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.difference-top p { color: var(--muted); font-size: 1.08rem; }
.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.difference-card { min-height: 300px; padding: 30px; border-radius: 24px; border: 1px solid var(--line); background: linear-gradient(180deg, #fff, #fbf8fc); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.difference-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #ddc9df; }
.card-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 72px; color: white; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-size: .72rem; font-weight: 900; box-shadow: 0 10px 25px rgba(123,31,121,.22); }
.difference-card h3 { font-size: 1.55rem; }
.difference-card p { margin-top: 14px; color: var(--muted); font-size: .95rem; }
.contrast-card { margin-top: 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--soft); }
.contrast-side { padding: 34px; }
.contrast-side > span { text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; font-weight: 900; }
.contrast-side ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.contrast-side li { position: relative; padding-left: 24px; }
.contrast-muted { color: var(--muted); }
.contrast-muted li::before { content: "×"; position: absolute; left: 0; font-weight: 900; color: #9b8fa0; }
.contrast-accent { color: white; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.contrast-accent li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; }
.contrast-arrow { display: grid; place-items: center; padding: 0 18px; color: var(--accent); font-size: 1.4rem; font-weight: 900; }
.partnership-line { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.partnership-line > span { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; font-weight: 900; }
.partnership-line strong { font-size: 1.25rem; letter-spacing: -.02em; }

/* Analytics */
.analytics-section { color: white; background: #140b18; }
.analytics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.analytics-card { overflow: hidden; border-radius: 22px; background: #201225; border: 1px solid rgba(255,255,255,.09); box-shadow: 0 18px 60px rgba(0,0,0,.15); }
.analytics-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 18px; }
.analytics-label strong { font-size: .8rem; }
.analytics-label span { color: rgba(255,255,255,.55); font-size: .75rem; }
.analytics-card img { width: 100%; }

/* Services */
.services-section { background: linear-gradient(180deg, #fff 0%, #faf7fb 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 320px; overflow: hidden; padding: 30px; border-radius: 24px; color: white; background: #211128; box-shadow: 0 18px 55px rgba(41,16,48,.08); }
.service-card::after { content: ""; position: absolute; width: 210px; height: 210px; border-radius: 50%; right: -90px; bottom: -90px; background: radial-gradient(circle, rgba(201,51,148,.25), transparent 65%); }
.service-card > span { color: #e874ba; font-size: .74rem; font-weight: 900; }
.service-card h3 { position: relative; z-index: 2; margin-top: 82px; font-size: 1.75rem; }
.service-card p { position: relative; z-index: 2; margin-top: 14px; color: rgba(255,255,255,.61); font-size: .95rem; }
.process-panel { margin-top: 18px; display: grid; grid-template-columns: .6fr 1.4fr; gap: 52px; padding: 36px; border-radius: 26px; background: white; border: 1px solid var(--line); }
.process-title h3 { font-size: 2rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-steps > div { padding-left: 17px; border-left: 2px solid var(--accent-soft); }
.process-steps span { display: block; color: var(--accent); font-size: .7rem; font-weight: 900; }
.process-steps strong { display: block; margin-top: 28px; font-size: 1.05rem; }
.process-steps p { margin-top: 7px; color: var(--muted); font-size: .8rem; line-height: 1.45; }

/* Contact */
.contact-section { position: relative; overflow: hidden; padding: 110px 0; color: white; background: linear-gradient(130deg, #130917 0%, #28102e 58%, #45133f 100%); }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 44px 44px; }
.contact-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -120px; top: -180px; background: radial-gradient(circle, rgba(220,73,164,.24), transparent 65%); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 84px; }
.contact-copy p { max-width: 600px; margin-top: 22px; color: rgba(255,255,255,.62); font-size: 1.08rem; }
.email-link { display: inline-block; margin-top: 26px; color: #ef85c4; font-weight: 800; border-bottom: 1px solid rgba(239,133,196,.45); }
.contact-form { padding: 28px; border-radius: 26px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px); box-shadow: 0 24px 80px rgba(0,0,0,.18); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; }
.contact-form label > span { color: rgba(255,255,255,.64); font-size: .72rem; font-weight: 800; }
.contact-form input { width: 100%; height: 48px; padding: 0 14px; color: white; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; outline: none; transition: border-color .2s ease, background .2s ease; }
.contact-form input::placeholder { color: rgba(255,255,255,.28); }
.contact-form input:focus { border-color: rgba(232,107,185,.8); background: rgba(255,255,255,.09); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-button { width: 100%; margin-top: 4px; }
.form-note { margin-top: 12px; text-align: center; color: rgba(255,255,255,.42); font-size: .72rem; }

/* Footer */
.footer { padding: 44px 0; color: rgba(255,255,255,.62); background: #0e0711; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 34px; align-items: end; }
.footer .brand-logo { width: 40px; height: 40px; box-shadow: none; background: white; }
.footer p { margin-top: 7px; font-size: .82rem; }
.footer-center, .footer-right { display: grid; gap: 7px; font-size: .8rem; }
.footer-right { justify-items: end; }
.footer a:hover { color: white; }

/* Motion: subtle + optional */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.65,.25,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-short { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero-grid, .case-grid, .split-heading, .difference-top, .contact-grid, .process-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 58px; }
  .hero-copy { max-width: 780px; }
  .hero-media { padding-right: 0; }
  .hero-video-shell { margin: 0 auto; width: min(100%, 390px); }
  .orbit-card-one { left: calc(50% - 225px); }
  .orbit-card-two { right: calc(50% - 235px); }
  .case-grid { max-width: 860px; margin: 0 auto; }
  .video-player-card { position: static; width: min(100%, 430px); margin: 0 auto; }
  .proof-band-grid { grid-template-columns: 1.5fr repeat(3, .7fr); gap: 20px; }
  .analytics-grid { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
  .process-panel { gap: 32px; }
}

@media (max-width: 800px) {
  .nav { display: none; position: absolute; top: 68px; left: 18px; right: 18px; padding: 18px; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .section { padding: 84px 0; }
  .hero { padding: 72px 0 84px; }
  .proof-band-grid { grid-template-columns: 1fr 1fr 1fr; }
  .proof-intro { grid-column: 1 / -1; margin-bottom: 18px; }
  .difference-grid, .services-grid { grid-template-columns: 1fr; }
  .difference-card { min-height: auto; }
  .card-icon { margin-bottom: 42px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-right { justify-items: start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .brand-logo { width: 38px; height: 38px; }
  .brand > span { font-size: 1.42rem; }
  .nav-wrap { min-height: 68px; }
  .hero-proof { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .hero-proof > div { min-width: 0; padding: 14px 10px; }
  .hero-proof strong { font-size: 1.12rem; }
  .hero-proof span { font-size: .65rem; }
  .hero-video-shell { border-radius: 24px; }
  .orbit-card { display: none; }
  .split-heading { gap: 24px; }
  .section-heading { margin-bottom: 40px; }
  .case-stats { grid-template-columns: 1fr; }
  .case-stats article { min-height: 104px; }
  .case-copy-card { padding: 28px; }
  .card-kicker { margin-bottom: 38px; }
  .video-meta { flex-direction: column; gap: 4px; }
  .proof-band { padding: 68px 0; }
  .proof-band-grid { grid-template-columns: 1fr; }
  .proof-intro { grid-column: auto; }
  .proof-stat { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .contrast-card { grid-template-columns: 1fr; }
  .contrast-arrow { padding: 10px; transform: rotate(90deg); }
  .contrast-side { padding: 28px; }
  .partnership-line { gap: 18px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .field-row, .footer-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 82px 0; }
  .contact-form { padding: 20px; }
  .footer-right { justify-items: start; }
  .button { width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link-light { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Revised hero visual: brand-first rather than case-study-first */
.hero-brand-stage {
  min-height: 610px;
  display: grid;
  place-items: center;
  padding: 40px 8px 40px 30px;
}
.brand-stage-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,78,167,.32) 0%, rgba(123,31,121,.12) 42%, transparent 70%);
  filter: blur(5px);
}
.brand-stage-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  min-height: 480px;
  padding: 38px 42px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.035)),
    linear-gradient(140deg, #2a1130 0%, #3d133d 48%, #6c185b 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-deep);
}
.brand-stage-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  top: -145px;
  right: -110px;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 0 0 62px rgba(255,255,255,.025), 0 0 0 124px rgba(255,255,255,.014);
}
.stage-logo-wrap {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 38px rgba(10,3,13,.22);
}
.stage-logo { width: 62px; height: 62px; object-fit: contain; }
.stage-card-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}
.brand-stage-card h2 {
  position: relative;
  z-index: 2;
  max-width: 390px;
  font-size: clamp(2.45rem, 4vw, 4.05rem);
  line-height: .96;
}
.brand-stage-card h2 span { color: #f08bc8; }
.stage-tags {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.stage-tags span,
.stage-float {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  font-weight: 800;
}
.stage-float {
  position: absolute;
  z-index: 4;
  background: rgba(26,10,31,.85);
  backdrop-filter: blur(13px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.stage-float-one { top: 18%; left: 0; }
.stage-float-two { top: 38%; right: -2%; }
.stage-float-three { bottom: 13%; left: 2%; }

/* Revised selected work: one concise example, no repeated case-study pitch */
.selected-work-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 64px;
  align-items: center;
}
.selected-video-card {
  position: static;
  width: min(100%, 410px);
  margin: 0 auto;
  padding: 12px;
}
.selected-work-info {
  display: grid;
  gap: 30px;
}
.selected-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.selected-stats > div {
  min-height: 150px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(45,18,53,.04);
}
.selected-stats strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.06em;
  line-height: .95;
}
.selected-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 760;
}
.selected-copy {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #241029 0%, #39113c 58%, #56164c 100%);
  box-shadow: var(--shadow);
}
.selected-copy .card-kicker { margin-bottom: 22px; }
.selected-copy .handled-list { margin-top: 0; }

@media (max-width: 980px) {
  .hero-brand-stage { min-height: 520px; padding: 0; }
  .brand-stage-card { width: min(100%, 520px); min-height: 440px; }
  .selected-work-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; gap: 42px; }
  .selected-video-card { width: min(100%, 420px); }
}

@media (max-width: 600px) {
  .hero-brand-stage { min-height: 430px; }
  .brand-stage-card { min-height: 390px; padding: 28px; border-radius: 26px; }
  .stage-logo-wrap { width: 70px; height: 70px; border-radius: 19px; }
  .stage-logo { width: 52px; height: 52px; }
  .brand-stage-card h2 { max-width: 310px; font-size: clamp(2.2rem, 11.5vw, 3.15rem); }
  .stage-float { display: none; }
  .selected-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .selected-stats > div { min-height: 112px; padding: 18px 12px; border-radius: 16px; }
  .selected-stats strong { font-size: clamp(1.45rem, 8vw, 2.1rem); }
  .selected-stats span { font-size: .67rem; }
  .selected-copy { padding: 26px; }
}
