:root {
  color-scheme: light;
  --ink: #160b21;
  --ink-soft: #3c2b4d;
  --paper: #fbf8ff;
  --white: #ffffff;
  --line: #ded1f6;
  --line-strong: #b99df0;
  --purple: #6818ff;
  --violet: #9b2cff;
  --pink: #dd2bd6;
  --mint: #22d1a6;
  --cream: #fff6de;
  --coral: #f5c84b;
  --sky: #54c6eb;
  --shadow: 0 22px 60px rgba(22, 11, 33, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(104, 24, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(104, 24, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
}

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

svg,
video {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(222, 209, 246, 0.82);
  background: rgba(251, 248, 255, 0.92);
  backdrop-filter: blur(16px);
}

@supports not (backdrop-filter: blur(16px)) {
  .site-header {
    background: var(--paper);
  }
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.18rem;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: clamp(168px, 16vw, 220px);
  max-height: 48px;
  height: auto;
  object-fit: contain;
}

.brand-mark span span {
  color: var(--purple);
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  font-size: 0.82rem;
  box-shadow: 5px 5px 0 var(--mint);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
  color: var(--purple);
  outline: 2px solid transparent;
}

.nav-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
}

.nav-cta {
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav-cta svg,
.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--mint);
}

.button:hover,
.nav-cta:hover,
.button:focus-visible,
.nav-cta:focus-visible {
  transform: translate(-2px, -2px);
  outline: none;
}

.button:active,
.nav-cta:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.message-stack {
  position: fixed;
  top: 92px;
  right: 20px;
  z-index: 120;
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.message {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--mint);
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

.message p {
  margin: 0;
}

.message button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

.message.is-hiding {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.message-error {
  box-shadow: 5px 5px 0 var(--coral);
}

.hero-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: 4.65rem;
  line-height: 0.95;
  font-weight: 950;
}

.hero-body,
.page-hero p,
.section-copy p,
.section-header p+h2+p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.hero-body {
  max-width: 670px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.query-strip {
  margin-top: 34px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(34, 209, 166, 0.85);
}

.query-strip span {
  color: var(--ink-soft);
  font-weight: 800;
}

.query-strip strong {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
}

.hero-panel {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-vector {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(18px 22px 0 rgba(104, 24, 255, 0.12));
}

.pulse-ring {
  animation: float-soft 3.2s ease-in-out infinite;
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.proof-band,
.section-shell,
.cta-band,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 0 56px;
}

.proof-band div {
  min-height: 118px;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line-strong);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  font-size: 1.1rem;
}

.proof-band span {
  margin-top: 7px;
  color: var(--ink-soft);
}

.section-shell {
  padding: 76px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
}

.section-copy h2,
.section-header h2,
.cta-band h2,
.contact-aside h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 950;
}

.section-copy p {
  margin-top: 18px;
}

.tick-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--mint);
  border-bottom: 3px solid var(--mint);
  transform: rotate(-45deg);
}

.form-panel,
.contact-aside {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel {
  padding: 22px;
  container-type: inline-size;
}

.contact-first-screen,
.work-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
  scroll-margin-top: 92px;
}

.contact-first-screen>*,
.work-hero>* {
  min-width: 0;
}

.contact-intro,
.work-hero>div:first-child {
  padding-top: 20px;
}

.contact-intro h1,
.work-hero h1 {
  margin: 0;
  font-size: 3.35rem;
  line-height: 1;
  font-weight: 950;
}

.contact-intro>p:not(.eyebrow),
.work-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.contact-proof div {
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--line-strong);
}

.contact-proof strong,
.contact-proof span,
.direct-contact a {
  display: block;
}

.contact-proof strong {
  font-size: 0.96rem;
}

.contact-proof span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 720;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.direct-contact a {
  padding: 9px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-weight: 900;
}

.contact-form-panel {
  position: relative;
  max-width: 100%;
  border: 1px solid #ded6ee;
  border-radius: 10px;
  scroll-margin-top: 94px;
  box-shadow: 0 18px 42px rgba(22, 11, 33, 0.08);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee7f8;
  margin-bottom: 2px;
}

.panel-heading span,
.panel-heading strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 6px;
  padding: 2px 0;
  font-size: 0.84rem;
  font-weight: 720;
}

.panel-heading span {
  background: transparent;
  color: var(--ink);
}

.panel-heading strong {
  background: transparent;
  color: var(--ink-soft);
}

.lead-form {
  display: grid;
  gap: 15px;
}

.role-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.role-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.role-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.role-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.role-card>span {
  min-height: 52px;
  display: grid;
  gap: 1px;
  align-content: center;
  padding: 9px 12px;
  border: 1px solid #d8caef;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.role-card strong,
.role-card small {
  display: block;
}

.role-card strong {
  font-size: 0.92rem;
  font-weight: 720;
}

.role-card small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 560;
}

.role-card input:checked+span {
  border-color: rgba(104, 24, 255, 0.42);
  background: #f7f2ff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(104, 24, 255, 0.14);
}

.role-card input:checked+span small {
  color: var(--ink-soft);
}

.form-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: -4px;
}

.form-section-label span,
.optional-form-details summary span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
}

.form-section-label small,
.optional-form-details summary small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 520;
  text-align: right;
}

.role-card input:focus-visible+span {
  outline: 3px solid rgba(104, 24, 255, 0.2);
}

.form-grid,
.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.required-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lead-form-compact .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.lead-form label span {
  font-size: 0.82rem;
  font-weight: 680;
  color: var(--ink-soft);
}

.form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8caef;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 11px 13px;
  font-size: 0.96rem;
  font-weight: 450;
  line-height: 1.25;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-control::placeholder {
  color: #90839f;
  opacity: 1;
}

.form-control:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(104, 24, 255, 0.15);
}

textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.form-message {
  grid-column: 1 / -1;
}

.optional-form-details {
  border: 1px solid #e2d8f5;
  border-radius: 8px;
  background: #ffffff;
}

.optional-form-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.optional-form-details summary::-webkit-details-marker {
  display: none;
}

.optional-form-details summary::after {
  content: "";
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 6px;
  background: #f4effc;
  color: var(--purple);
  font-style: normal;
}

.optional-form-details summary::after {
  box-sizing: border-box;
}

.optional-form-details summary::after {
  background:
    linear-gradient(var(--purple), var(--purple)) center / 10px 2px no-repeat,
    linear-gradient(var(--purple), var(--purple)) center / 2px 10px no-repeat,
    #f4effc;
}

.optional-form-details[open] summary::after {
  background:
    linear-gradient(var(--purple), var(--purple)) center / 10px 2px no-repeat,
    #f4effc;
}

.optional-form-details[open] summary {
  border-bottom: 1px solid #e2d8f5;
}

.optional-grid {
  padding: 14px;
}

.lead-form small,
.form-error {
  color: #8b2d65;
  font-size: 0.78rem;
  font-weight: 620;
}

.form-section-label small,
.optional-form-details summary small,
.role-card small {
  color: var(--ink-soft);
}

.form-submit {
  width: 100%;
  border: 0;
  border-radius: 7px;
  background: var(--purple);
  box-shadow: none;
}

.form-reassurance {
  margin: -2px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 520;
}

.section-header {
  max-width: 820px;
  margin-bottom: 30px;
}

.split-header {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--purple);
  font-weight: 950;
  border-bottom: 2px solid currentColor;
}

.campaign-grid,
.creator-gig-grid,
.plan-grid,
.testimonial-grid,
.resource-grid,
.service-grid,
.instagram-category-grid,
.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.campaign-card,
.plan-card,
.testimonial-grid blockquote,
.resource-grid article,
.service-card,
.instagram-category-card,
.creator-grid article {
  min-height: 100%;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.campaign-card,
.plan-card,
.client-card,
.journey-line article,
.why-card,
.testimonial-grid blockquote,
.resource-grid article,
.service-card,
.instagram-category-card,
.creator-grid article {
  display: flex;
  flex-direction: column;
}

.campaign-card:nth-child(2n),
.resource-grid article:nth-child(2n),
.service-card:nth-child(2n),
.instagram-category-card:nth-child(2n),
.creator-grid article:nth-child(2n) {
  box-shadow: 5px 5px 0 var(--mint);
}

.campaign-card:nth-child(3n),
.resource-grid article:nth-child(3n),
.service-card:nth-child(3n),
.instagram-category-card:nth-child(3n),
.creator-grid article:nth-child(3n) {
  box-shadow: 5px 5px 0 var(--coral);
}

.campaign-card p:first-child,
.plan-card p:first-child,
.resource-grid article p:first-child,
.service-card span,
.instagram-category-card p,
.video-card p {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.campaign-card h3,
.plan-card h3,
.video-card h3,
.resource-grid h2,
.service-card h3,
.instagram-category-card h3,
.creator-grid h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.campaign-card h3,
.client-card h3 {
  min-height: 3.15em;
}

.campaign-card span {
  min-height: 3em;
}

.campaign-card p:not(:first-child) {
  min-height: 5.1em;
}

.campaign-card span,
.plan-card span,
.service-card p,
.instagram-category-card span,
.video-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.creator-gigs-section {
  padding-top: 34px;
  overflow: visible;
}

.creator-gigs-section .section-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.55;
}

.creator-gig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.creator-gig-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 2px solid rgba(17, 10, 34, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 255, 0.96)),
    var(--white);
  box-shadow: 5px 5px 0 var(--mint);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.creator-gig-card:focus-visible {
  outline: 4px solid rgba(104, 24, 255, 0.22);
  outline-offset: 5px;
}

.creator-gig-card:nth-child(2n) {
  box-shadow: 5px 5px 0 var(--line-strong);
}

.creator-gig-card:nth-child(3n) {
  box-shadow: 5px 5px 0 var(--sky);
}

.creator-gig-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--mint);
}

.gig-visual {
  min-height: 142px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.95) 0 17%, transparent 18%),
    linear-gradient(135deg, rgba(104, 24, 255, 0.12), rgba(34, 209, 166, 0.18));
  border: 1px solid rgba(104, 24, 255, 0.16);
}

.gig-visual-sky {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.95) 0 17%, transparent 18%),
    linear-gradient(135deg, rgba(84, 198, 235, 0.22), rgba(104, 24, 255, 0.12));
}

.gig-visual-gold {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.95) 0 17%, transparent 18%),
    linear-gradient(135deg, rgba(245, 200, 75, 0.28), rgba(104, 24, 255, 0.12));
}

.gig-visual span,
.gig-visual strong {
  display: block;
}

.gig-visual span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gig-visual strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.gig-visual svg {
  width: 100%;
  min-width: 120px;
  height: auto;
  justify-self: end;
  filter: drop-shadow(5px 7px 0 rgba(104, 24, 255, 0.14));
}

.gig-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gig-card-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9fff7;
  color: #067647;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gig-card-topline small {
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 950;
  text-align: right;
  text-transform: uppercase;
}

.creator-gig-card h3 {
  min-height: 2.35em;
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
}

.creator-gig-card p {
  min-height: 5.8em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.48;
}

.gig-fit {
  min-height: 4.5em;
  padding: 12px;
  border-radius: 8px;
  background: rgba(104, 24, 255, 0.07);
}

.gig-fit strong,
.gig-fit span {
  display: block;
}

.gig-fit strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gig-fit span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1.35;
}

.gig-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.gig-metrics div {
  min-height: 72px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(104, 24, 255, 0.14);
}

.gig-metrics strong,
.gig-metrics small {
  display: block;
}

.gig-metrics strong {
  color: var(--purple);
  font-size: 1.45rem;
  line-height: 1;
}

.gig-metrics small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.creator-gig-card .button {
  width: 100%;
  justify-content: center;
  margin-top: 0;
  pointer-events: none;
}

.contact-campaign-note {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(104, 24, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(104, 24, 255, 0.08), rgba(34, 209, 166, 0.11)),
    var(--paper);
}

.contact-campaign-note span {
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-campaign-note strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-card {
  gap: 10px;
}

.service-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(104, 24, 255, 0.18);
}

.insta-category-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(160px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scroll-snap-type: x mandatory;
}

.insta-category-card {
  min-width: 160px;
  scroll-snap-align: start;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--mint);
}

.insta-category-card p,
.instagram-category-card p {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.insta-category-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.insta-category-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 780;
}

.instagram-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.instagram-category-card {
  gap: 18px;
}

.reel-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.reel-link-grid a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(104, 24, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 900;
}

.campaign-card p:not(:first-child),
.resource-grid article p:not(:first-child),
.creator-grid p {
  color: var(--ink-soft);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.metric-row div {
  min-height: 72px;
  padding: 12px;
  border-radius: 8px;
  background: var(--paper);
}

.metric-row strong,
.metric-row small {
  display: block;
}

.metric-row strong {
  font-size: 1.6rem;
  color: var(--purple);
}

.metric-row small {
  color: var(--ink-soft);
  font-weight: 800;
}

.video-section {
  overflow: hidden;
}

.work-hero {
  align-items: center;
  padding-top: 64px;
}

.work-hero-clean {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  justify-content: space-between;
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding-top: 54px;
  padding-bottom: 38px;
  background: var(--paper);
  isolation: isolate;
}

.work-hero-clean::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  background: var(--paper);
}

.work-hero-clean>div:first-child {
  padding-top: 0;
}

.work-hero-clean h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  line-height: 1.03;
  font-weight: 760;
  letter-spacing: 0;
}

.work-hero-clean p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.work-hero-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.work-hero-visual img {
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(22, 11, 33, 0.12));
  animation: work-float 5.5s ease-in-out infinite;
}

.work-pulse {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(104, 24, 255, 0.16);
  background: rgba(104, 24, 255, 0.08);
  animation: work-pulse 3.8s ease-in-out infinite;
}

.work-pulse-one {
  top: 18%;
  right: 9%;
}

.work-pulse-two {
  left: 10%;
  bottom: 18%;
  width: 54px;
  height: 54px;
  background: rgba(34, 209, 166, 0.12);
  animation-delay: 900ms;
}

@keyframes work-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes work-pulse {

  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.work-proof {
  padding-top: 4px;
}

.work-hero-clean+.work-proof {
  margin-top: 4px;
}

.work-hero-clean~.section-shell .section-header h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  font-weight: 760;
}

.work-hero-clean~.section-shell .split-header {
  align-items: flex-start;
}

.client-showcase {
  position: relative;
  overflow: hidden;
  padding: 2px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: client-slide 42s linear infinite;
}

.client-showcase:hover .client-track,
.client-showcase:focus-within .client-track {
  animation-play-state: paused;
}

.client-card {
  width: clamp(292px, 26vw, 360px);
  min-height: 330px;
  flex: 0 0 auto;
  padding: 22px;
  border: 1px solid rgba(22, 11, 33, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 255, 0.98)),
    var(--white);
  box-shadow: 0 18px 42px rgba(22, 11, 33, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.journey-line article {
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.journey-line article:nth-child(2n) {
  box-shadow: 5px 5px 0 var(--mint);
}

.client-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.client-logo {
  width: 110px;
  min-height: 50px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  border: 1px solid #e7e0f2;
  border-radius: 8px;
  background: #ffffff;
  color: var(--purple);
  font-weight: 760;
  box-shadow: none;
}

.client-logo img {
  width: 100%;
  max-width: 96px;
  max-height: 42px;
  object-fit: contain;
}

.client-logo svg {
  width: 26px;
  height: 26px;
}

.client-logo small {
  color: var(--ink-soft);
  font-size: 0.58rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

.client-card-top>p,
.journey-line span,
.media-note {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.client-card-top>p {
  margin: 0;
  text-align: right;
}

.client-card h3,
.journey-line h3 {
  margin: 22px 0 0;
  font-size: 1.32rem;
  min-height: 0;
}

.client-card span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 680;
  line-height: 1.45;
}

.client-card>p,
.journey-line p {
  color: var(--ink-soft);
}

.client-card>p {
  margin: 12px 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: left;
}

.client-result {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #ece5f7;
}

.client-result small,
.client-result strong {
  display: block;
}

.client-result small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 720;
  text-transform: uppercase;
}

.client-result strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@keyframes client-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }

  .work-hero-visual img,
  .work-pulse {
    animation: none;
  }
}

.media-note {
  max-width: 300px;
  margin: 0;
  text-align: right;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.portfolio-filter {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(22, 11, 33, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.portfolio-filter:hover {
  border-color: var(--purple);
  transform: translateY(-1px);
}

.portfolio-filter.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.video-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expanded-video-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  padding: 10px;
  border: 1px solid rgba(104, 24, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 255, 0.96)),
    var(--white);
  box-shadow: 0 18px 45px rgba(22, 11, 33, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-card:hover,
.campaign-card:hover,
.client-card:hover,
.plan-card:hover,
.testimonial-grid blockquote:hover {
  transform: translateY(-4px);
}

.video-card:hover {
  border-color: rgba(104, 24, 255, 0.34);
  box-shadow: 0 22px 54px rgba(22, 11, 33, 0.15);
}

.campaign-card:hover,
.plan-card:hover,
.testimonial-grid blockquote:hover {
  box-shadow: 5px 9px 0 var(--mint);
}

.client-card:hover {
  border-color: rgba(104, 24, 255, 0.24);
  box-shadow: 0 22px 54px rgba(22, 11, 33, 0.12);
}

.video-card video,
.instagram-embed,
.video-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  background: #10071b;
}

.video-card {
  position: relative;
}

.video-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 8px;
  background: #10071b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.video-window::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 24%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
}

.video-card video {
  object-fit: cover;
}

.instagram-embed {
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
}

.video-placeholder svg {
  width: min(78%, 180px);
  height: auto;
}

.video-meta {
  padding: 18px 8px 4px;
}

.video-meta h3 {
  margin-top: 8px;
}

.video-meta .video-company {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.3;
}


.journey-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}

.journey-line::before {
  content: none;
  display: none;
}

.journey-line article {
  position: relative;
  z-index: 1;
}

.plan-card {
  display: grid;
  gap: 14px;
}

.plan-card .button,
.traction-card .button {
  margin-top: auto;
}

.plan-card.highlighted {
  background: var(--ink);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--mint);
}

.plan-card.highlighted span,
.plan-card.highlighted li {
  color: #efe7ff;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-weight: 760;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.expanded-plans .plan-card {
  min-height: 420px;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-grid blockquote {
  margin: 0;
  background: var(--cream);
}

.testimonial-grid blockquote p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 850;
}

.testimonial-grid footer {
  margin-top: 18px;
  font-weight: 950;
}

.testimonial-grid footer span {
  display: block;
  color: var(--ink-soft);
  font-weight: 700;
}

.cta-band {
  margin-top: 26px;
  margin-bottom: 76px;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 7px 7px 0 var(--mint);
}

.cta-band .eyebrow {
  color: var(--mint);
}

.cta-band h2 {
  max-width: 760px;
}

.page-hero {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 34px;
  text-align: center;
}

.compact-hero {
  width: min(900px, calc(100% - 32px));
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
}

.creator-hero {
  width: min(900px, calc(100% - 32px));
}

.creator-hero p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.55;
}

.centered-actions {
  justify-content: center;
}

.process-board,
.detail-list {
  display: grid;
  gap: 14px;
}

.process-board {
  position: relative;
  isolation: isolate;
}

.process-board::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 42px;
  bottom: 42px;
  width: 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent 0 8px, rgba(22, 11, 33, 0.22) 8px 20px, transparent 20px 30px),
    var(--line);
  background-size: 12px 30px, auto;
  z-index: -1;
}

.process-board div,
.detail-list div {
  position: relative;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line-strong);
}

.process-board span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-weight: 950;
}

.process-board strong,
.detail-list strong {
  display: block;
  margin-top: 12px;
  font-size: 1.25rem;
}

.process-board p,
.detail-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.creator-grid article svg {
  width: 80px;
  height: 80px;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-layout {
  grid-template-columns: minmax(300px, 0.65fr) minmax(360px, 1fr);
}

.contact-aside {
  padding: 26px;
}

.contact-aside a,
.contact-aside p {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.vector-note {
  margin-top: 28px;
}

.vector-note svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.site-footer {
  border-top: 2px solid var(--ink);
  padding: 44px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 24px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--ink-soft);
  margin: 8px 0;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo {
  width: 220px;
  max-height: 56px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 760;
}

[hidden] {
  display: none !important;
}

.mobile-snap-hint {
  display: none;
}

.home-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.home-hero-copy h1 {
  max-width: 770px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.02;
  font-weight: 850;
}

.home-hero-copy .hero-body {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.home-hero-art {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.creator-match-graphic,
.creator-hero-illustration {
  width: 100%;
  max-width: 660px;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(104, 24, 255, 0.12));
}

.creator-hero-image-scene {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.creator-hero-image-scene::before {
  content: "";
  position: absolute;
  inset: 10% 4% 3%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 62%, rgba(139, 92, 246, 0.12), transparent 56%),
    radial-gradient(circle at 70% 74%, rgba(34, 211, 238, 0.13), transparent 44%);
  filter: blur(2px);
  animation: hero-aura-soft 7s ease-in-out infinite;
}

.creator-hero-picture {
  display: block;
  width: 96%;
}

.creator-hero-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 36px rgba(71, 35, 151, 0.16));
  transform-origin: center bottom;
  animation: hero-image-hover 6s ease-in-out infinite;
}

.hero-float,
.hero-like-bubble,
.hero-growth-pulse {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-float {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 9px 18px rgba(124, 58, 237, 0.14);
  animation: hero-float-rise 4.6s ease-in-out infinite;
}

.hero-heart {
  color: #f59e0b;
  font-size: 3.1rem;
}

.hero-heart-one {
  top: 7%;
  left: 8%;
}

.hero-heart-two {
  right: 10%;
  bottom: 12%;
  animation-delay: 0.8s;
}

.hero-heart-three {
  left: 3%;
  bottom: 28%;
  font-size: 2.2rem;
  animation-delay: 1.5s;
}

.hero-hash {
  top: 11%;
  right: 14%;
  color: #7c3aed;
  font-size: 3rem;
  opacity: 0.74;
  animation-delay: 1.2s;
}

.hero-like-bubble {
  left: 3%;
  top: 39%;
  width: 72px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(109, 40, 217, 0.24);
  animation: like-bubble-pop 3.4s ease-in-out infinite;
}

.hero-like-bubble::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -12px;
  border-top: 14px solid #6d28d9;
  border-right: 13px solid transparent;
}

.hero-like-bubble svg {
  width: 34px;
  height: 34px;
}

.hero-growth-pulse {
  right: 0;
  bottom: 14%;
  width: 132px;
  height: 96px;
  display: grid;
  grid-template-columns: 18px 18px 18px 1fr;
  align-items: end;
  gap: 8px;
  padding: 16px;
  color: #10b981;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  animation: growth-card-float 4.2s ease-in-out infinite;
}

.hero-reach-chip {
  position: absolute;
  top: 31%;
  right: 2%;
  z-index: 2;
  display: grid;
  gap: 0;
  min-width: 92px;
  padding: 10px 14px;
  color: #341153;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(71, 35, 151, 0.13);
  backdrop-filter: blur(12px);
  animation: reach-chip-pop 3.8s ease-in-out infinite;
}

.hero-reach-chip span {
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-reach-chip small {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.growth-bar {
  width: 100%;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #22c55e, #7c3aed);
  transform-origin: bottom;
  animation: growth-bar-fill 2.4s ease-in-out infinite;
}

.growth-one {
  height: 26px;
}

.growth-two {
  height: 42px;
  animation-delay: 0.25s;
}

.growth-three {
  height: 58px;
  animation-delay: 0.5s;
}

.hero-growth-pulse svg {
  width: 52px;
  height: 44px;
  align-self: center;
}

.match-line {
  animation: dash-move 8s linear infinite;
}

.post-frame {
  transform-origin: center;
  animation: post-hover 5.5s ease-in-out infinite;
}

.creator-main {
  transform-origin: 335px 330px;
  animation: creator-breathe 4.6s ease-in-out infinite;
}

.megaphone {
  transform-origin: 448px 246px;
  animation: megaphone-lift 3.8s ease-in-out infinite;
}

.megaphone-wave {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: wave-send 2.4s ease-in-out infinite;
}

.wave-two {
  animation-delay: 0.45s;
}

.mini-creator {
  transform-origin: center bottom;
  animation: mini-bob 4.5s ease-in-out infinite;
}

.mini-right {
  animation-delay: 0.8s;
}

.social-bubble,
.emoji {
  transform-origin: center;
  animation: social-float 3.7s ease-in-out infinite;
}

.bubble-chat {
  animation-delay: 0.5s;
}

.bubble-mail {
  animation-delay: 1.1s;
}

.emoji-one {
  animation-delay: 0.9s;
}

.emoji-two {
  animation-delay: 1.5s;
}

.soft-bg-shape {
  transform-origin: center bottom;
  animation: soft-sway 6s ease-in-out infinite;
}

.creator-phone-scene {
  transform-origin: 148px 180px;
  animation: creator-breathe 4.8s ease-in-out infinite;
}

.creator-hair {
  transform-origin: 145px 125px;
  animation: creator-hair-sway 3.6s ease-in-out infinite;
}

.floating-ui {
  animation: float-soft 3s ease-in-out infinite;
}

.view-bubble {
  animation-delay: 0.8s;
}

.signal-dot {
  opacity: 0;
  animation: signal-pop 2.7s ease-in-out infinite;
}

.signal-dot-two {
  animation-delay: 0.5s;
}

.signal-dot-three {
  animation-delay: 1s;
}

.stat-bar {
  transform-origin: left center;
  animation: stat-fill 4s ease-in-out infinite;
}

.stat-bar-two {
  animation-delay: 0.9s;
}

.art-chip {
  animation: float-soft 3.7s ease-in-out infinite;
}

.art-chip-alt {
  animation-delay: 0.8s;
}

@keyframes dash-move {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes hero-image-hover {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-7px) scale(1.01);
  }
}

@keyframes hero-aura-soft {

  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes hero-float-rise {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg) scale(1);
  }

  50% {
    transform: translateY(-16px) rotate(5deg) scale(1.06);
  }
}

@keyframes like-bubble-pop {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-10px) scale(1.08);
  }

  58% {
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes growth-card-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes growth-bar-fill {

  0%,
  100% {
    transform: scaleY(0.52);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes reach-chip-pop {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-8px) scale(1.04);
  }
}

@keyframes creator-breathe {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes post-hover {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes megaphone-lift {

  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  50% {
    transform: rotate(-2deg) translateY(-3px);
  }
}

@keyframes wave-send {
  0% {
    opacity: 0;
    stroke-dashoffset: 60;
  }

  25%,
  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes mini-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes social-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-9px) rotate(2deg);
  }
}

@keyframes soft-sway {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@keyframes creator-hair-sway {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-2deg);
  }
}

@keyframes signal-pop {

  0%,
  20% {
    opacity: 0;
    transform: scale(0.6);
  }

  38%,
  68% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes stat-fill {

  0%,
  100% {
    transform: scaleX(0.55);
  }

  50% {
    transform: scaleX(1);
  }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 28px;
}

.hero-metrics div,
.traction-card,
.why-card {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(185, 157, 240, 0.9);
}

.hero-metrics div {
  min-height: 82px;
  padding: 14px;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--purple);
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-metrics span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-weight: 720;
}

.home-work-preview {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 74px;
}

.home-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 16px;
  align-items: stretch;
}

.home-video-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-video-rail .video-card {
  box-shadow: 4px 4px 0 var(--ink);
}

.home-video-rail .video-card video,
.home-video-rail .video-placeholder {
  aspect-ratio: 9 / 12;
}

.creator-video-placeholder {
  background: linear-gradient(180deg, var(--cream), #f3ecff);
}

.traction-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-shadow: 5px 5px 0 var(--mint);
}

.traction-card h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.05;
  font-weight: 850;
}

.traction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.traction-list span {
  padding: 7px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 850;
}

.why-section,
.success-section,
.feedback-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 8px 0 var(--mint);
}

.why-card svg {
  width: 76px;
  height: 76px;
}

.why-card h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
  font-weight: 850;
}

.why-card p {
  margin: 0;
  color: var(--ink-soft);
}

.success-grid .campaign-card:first-child {
  background: var(--ink);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--mint);
}

.success-grid .campaign-card:first-child:hover {
  box-shadow: 6px 10px 0 var(--mint);
}

.success-grid .campaign-card:first-child p,
.success-grid .campaign-card:first-child span,
.success-grid .campaign-card:first-child small {
  color: #efe7ff;
}

.success-grid .campaign-card:first-child .metric-row div {
  background: rgba(255, 255, 255, 0.1);
}

.success-grid .campaign-card:first-child .metric-row strong {
  color: var(--mint);
}

.client-proof-strip {
  padding-top: 34px;
}

.home-client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brief-section {
  padding-top: 52px;
}

.feedback-layout {
  display: grid;
  gap: 18px;
}

.feedback-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feedback-tab {
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.feedback-tab.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--mint);
}

.feedback-grid {
  align-items: stretch;
}

.feedback-card {
  transition: opacity 180ms ease, transform 180ms ease;
}

.feedback-card[hidden] {
  display: none !important;
}

body.has-reveal .reveal-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.has-reveal .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2,
.section-copy h2,
.cta-band h2 {
  font-weight: 850;
}

.campaign-card h3,
.plan-card h3,
.video-card h3,
.resource-grid h2,
.service-card h3,
.instagram-category-card h3,
.creator-grid h3,
.client-card h3,
.journey-line h3 {
  font-weight: 850;
}

@media (max-width: 1080px) {

  .hero-copy h1,
  .page-hero h1 {
    font-size: 3.6rem;
  }

  .home-hero,
  .home-work-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy h1 {
    font-size: 3.35rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .contact-layout,
  .contact-first-screen,
  .work-hero {
    grid-template-columns: 1fr;
  }

  .campaign-grid,
  .creator-gig-grid,
  .journey-line,
  .why-grid,
  .plan-grid,
  .service-grid,
  .instagram-category-grid,
  .video-rail,
  .expanded-video-rail,
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  body.nav-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 12px 0 20px;
    gap: 6px;
  }

  body.nav-open .nav-links a {
    background: var(--white);
  }

  body.nav-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: 18px;
  }

  .hero-section,
  .home-hero,
  .page-hero,
  .contact-first-screen,
  .work-hero {
    padding-top: 50px;
  }

  .hero-copy h1,
  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1,
  .section-copy h2,
  .section-header h2,
  .cta-band h2 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .work-hero-clean h1 {
    font-size: 2.75rem;
    line-height: 1.05;
  }

  .hero-body,
  .page-hero p {
    font-size: 1rem;
  }

  .form-grid,
  .optional-grid,
  .lead-form-compact .form-grid,
  .contact-first-screen,
  .campaign-grid,
  .creator-gig-grid,
  .journey-line,
  .testimonial-grid,
  .resource-grid,
  .service-grid,
  .instagram-category-grid,
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .split-header,
  .cta-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-note {
    max-width: none;
    text-align: left;
  }

  .section-shell {
    padding: 54px 0;
  }

}

@media (max-width: 560px) {

  .nav-shell,
  .home-hero,
  .home-work-preview,
  .contact-first-screen,
  .work-hero,
  .proof-band,
  .section-shell,
  .cta-band,
  .site-footer,
  .hero-section,
  .page-hero {
    width: min(100% - 22px, var(--max));
  }

  .hero-copy h1,
  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1,
  .section-copy h2,
  .section-header h2,
  .cta-band h2 {
    font-size: 2.1rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .query-strip {
    align-items: stretch;
  }

  .query-strip strong {
    width: 100%;
  }

  .form-panel,
  .contact-form-panel,
  .traction-card,
  .why-card,
  .campaign-card,
  .creator-gig-card,
  .client-card,
  .journey-line article,
  .plan-card,
  .testimonial-grid blockquote,
  .resource-grid article,
  .service-card,
  .instagram-category-card,
  .creator-grid article,
  .contact-aside,
  .cta-band {
    padding: 18px;
  }

  .creator-gig-card h3,
  .creator-gig-card p,
  .gig-fit {
    min-height: 0;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(132px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .hero-metrics div {
    scroll-snap-align: start;
  }

  .home-hero-art {
    min-height: 280px;
  }
}

@media (max-width: 820px) {

  .home-work-preview,
  .section-shell {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-hero {
    gap: 22px;
    padding-bottom: 18px;
  }

  .home-hero-art {
    min-height: 300px;
    order: -1;
  }

  .work-hero-visual {
    min-height: 280px;
    order: -1;
  }

  .work-hero-visual img {
    width: min(100%, 330px);
  }

  .creator-match-graphic,
  .creator-hero-illustration,
  .creator-hero-image-scene {
    max-width: 430px;
  }

  .home-hero-copy h1,
  .contact-intro h1,
  .work-hero h1 {
    max-width: 620px;
  }

  .home-work-grid {
    gap: 18px;
  }

  .proof-band,
  .why-grid,
  .plan-grid,
  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 72vw);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    padding: 2px 2px 14px;
    margin-inline: -2px;
    -webkit-overflow-scrolling: touch;
  }

  .proof-band {
    width: min(var(--max), calc(100% - 32px));
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-columns: minmax(210px, 58vw);
  }

  .plan-grid {
    grid-auto-columns: minmax(260px, 76vw);
  }

  .proof-band>*,
  .why-grid>*,
  .plan-grid>*,
  .video-rail>*,
  .expanded-video-rail>*,
  .home-video-rail>* {
    scroll-snap-align: start;
  }

  .contact-proof {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .contact-proof div {
    scroll-snap-align: start;
  }

  .role-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .role-card>span {
    min-height: 52px;
    padding: 9px 8px;
  }

  .role-card strong {
    font-size: 0.86rem;
  }

  .role-card small {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .client-showcase {
    mask-image: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .client-track {
    animation: none;
    width: max-content;
  }

  .client-card {
    width: min(330px, 82vw);
    scroll-snap-align: start;
  }

  .form-control {
    min-height: 46px;
  }

  textarea.form-control {
    min-height: 104px;
  }
}

@media (max-width: 640px) {

  .home-hero,
  .contact-first-screen,
  .work-hero {
    padding-top: 28px;
  }

  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1,
  .section-copy h2,
  .section-header h2,
  .cta-band h2 {
    font-size: 2.1rem;
    line-height: 1.04;
  }

  .work-hero-clean h1 {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .work-hero-clean~.section-shell .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .home-hero-copy .hero-body,
  .contact-intro>p:not(.eyebrow),
  .work-hero p:not(.eyebrow),
  .hero-body,
  .page-hero p {
    font-size: 0.96rem;
  }

  .home-hero-art {
    min-height: 230px;
  }

  .work-hero-visual {
    min-height: 220px;
  }

  .work-hero-visual img {
    width: min(100%, 270px);
  }

  .creator-match-graphic,
  .creator-hero-illustration,
  .creator-hero-image-scene {
    max-width: 360px;
  }

  .hero-like-bubble {
    left: 1%;
    top: 40%;
    width: 58px;
    height: 50px;
    border-radius: 14px;
  }

  .hero-like-bubble svg {
    width: 28px;
    height: 28px;
  }

  .hero-growth-pulse {
    right: -1%;
    bottom: 7%;
    width: 100px;
    height: 74px;
    grid-template-columns: 12px 12px 12px 1fr;
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
  }

  .hero-growth-pulse svg {
    width: 38px;
  }

  .hero-float {
    width: 42px;
    height: 42px;
  }

  .hero-heart {
    font-size: 2.35rem;
  }

  .hero-hash {
    font-size: 2.6rem;
  }

  .hero-reach-chip {
    top: 25%;
    right: -1%;
    min-width: 74px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .hero-reach-chip span {
    font-size: 0.88rem;
  }

  .hero-reach-chip small {
    font-size: 0.64rem;
  }

  .form-panel,
  .contact-form-panel {
    padding: 14px;
  }

  .message-stack {
    left: 12px;
    right: 12px;
    top: 78px;
    max-width: none;
  }

  .panel-heading {
    align-items: flex-start;
    padding-bottom: 12px;
  }

  .panel-heading strong {
    font-size: 0.76rem;
  }

  .lead-form {
    gap: 10px;
  }

  .form-grid,
  .optional-grid,
  .lead-form-compact .form-grid {
    gap: 10px;
  }

  .form-section-label,
  .optional-form-details summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .form-section-label small,
  .optional-form-details summary small {
    text-align: left;
  }

  .lead-form label span {
    font-size: 0.76rem;
  }

  .form-control {
    min-height: 42px;
    padding: 9px 11px;
  }

  textarea.form-control {
    min-height: 92px;
  }

  .form-reassurance {
    font-size: 0.8rem;
  }

  .proof-band,
  .why-grid,
  .plan-grid,
  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-columns: minmax(210px, 80vw);
  }

  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-columns: minmax(186px, 64vw);
  }

  .campaign-grid,
  .journey-line,
  .testimonial-grid {
    gap: 12px;
  }

  .campaign-card h3,
  .client-card h3,
  .campaign-card span,
  .campaign-card p:not(:first-child) {
    min-height: 0;
  }

  /* Card Typography enhancements */
  .campaign-card h3,
  .plan-card h3,
  .client-card h3,
  .why-card h3,
  .journey-line h3,
  .service-card h3,
  .resource-grid h2,
  .instagram-category-card h3,
  .creator-gig-card h3,
  .creator-grid h3 {
    font-size: 1.15rem;
  }

  .campaign-card p,
  .plan-card span,
  .why-card p,
  .journey-line p,
  .service-card p,
  .resource-grid article p:not(:first-child),
  .instagram-category-card span,
  .creator-gig-card p,
  .creator-grid p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  /* Client card / Brand proof horizontal scroll adjustments */
  .client-card {
    width: min(290px, 80vw);
  }
  .client-logo {
    width: 90px;
    min-height: 44px;
  }
  .client-logo img {
    max-width: 78px;
    max-height: 36px;
  }
  .client-card-top p {
    font-size: 0.65rem;
  }
  .client-card span {
    font-size: 0.82rem;
    margin-top: 8px;
  }
  .client-card p {
    font-size: 0.85rem;
    margin-top: 8px;
  }
  .client-result {
    font-size: 0.82rem;
    padding: 8px 10px;
    margin-top: 10px;
  }

  /* Journey & Why card scaling */
  .journey-line article {
    padding: 14px;
  }
  .journey-line span {
    font-size: 0.68rem;
  }
  .why-card {
    padding: 14px;
  }
  .why-card svg {
    width: 54px;
    height: 54px;
  }

  /* Video card / Rail enhancements */
  .video-card {
    padding: 8px;
  }
  .video-meta {
    padding: 12px 6px 2px;
  }
  .video-meta p {
    font-size: 0.68rem;
    margin-bottom: 6px;
  }
  .video-meta h3 {
    font-size: 1.05rem;
    margin-top: 4px;
  }
  .video-meta span {
    font-size: 0.76rem;
  }

  /* Metrics scaling */
  .hero-metrics {
    gap: 12px;
  }
  .hero-metrics strong {
    font-size: 1.45rem;
  }
  .hero-metrics span {
    font-size: 0.8rem;
  }
  .metric-row strong {
    font-size: 1.3rem;
  }
  .metric-row small {
    font-size: 0.72rem;
  }

  /* Proof band card scaling */
  .proof-band div {
    min-height: 100px;
    padding: 14px;
  }
  .proof-band strong {
    font-size: 1.02rem;
  }
  .proof-band span {
    font-size: 0.82rem;
    margin-top: 4px;
  }

  /* Creator gigs / briefs scaling */
  .gig-visual {
    min-height: 120px;
  }
  .gig-metrics div {
    min-height: auto;
    padding: 8px;
  }
  .gig-metrics strong {
    font-size: 1.2rem;
  }
  .gig-metrics small {
    font-size: 0.72rem;
  }
  .gig-fit strong {
    font-size: 0.72rem;
  }
  .gig-fit span {
    font-size: 0.85rem;
  }

  /* CTA band padding scaling */
  .cta-band {
    padding: 24px 18px;
  }
}

@media (max-width: 430px) {
  .role-picker {
    gap: 6px;
  }

  .role-card>span {
    min-height: 48px;
    padding: 8px 5px;
    text-align: center;
  }

  .role-card small {
    display: none;
  }

  .role-card strong {
    font-size: 0.78rem;
  }

  .panel-heading {
    display: grid;
    gap: 6px;
  }

  .panel-heading span,
  .panel-heading strong {
    min-height: 24px;
    width: fit-content;
    padding: 3px 8px;
  }

  /* Heading sizes, paragraph sizing, subheadings scaling */
  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1,
  .work-hero-clean h1 {
    font-size: 1.7rem;
    line-height: 1.05;
  }

  .section-copy h2,
  .section-header h2,
  .cta-band h2,
  .contact-aside h2 {
    font-size: 1.48rem;
    line-height: 1.1;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .hero-body,
  .page-hero p,
  .section-copy p,
  .section-header p,
  .footer-grid p,
  .contact-intro>p:not(.eyebrow),
  .work-hero p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .section-header {
    margin-bottom: 14px;
  }

  /* Card padding, margins, gap, spacing scaling */
  .why-card,
  .campaign-card,
  .client-card,
  .journey-line article,
  .plan-card,
  .testimonial-grid blockquote,
  .resource-grid article,
  .creator-grid article,
  .service-card,
  .creator-gig-card,
  .contact-aside,
  .detail-list div {
    padding: 12px;
  }

  .campaign-grid,
  .creator-gig-grid,
  .journey-line,
  .testimonial-grid,
  .why-grid,
  .plan-grid,
  .service-grid,
  .instagram-category-grid,
  .creator-grid {
    gap: 10px;
  }

  .button,
  .nav-cta {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  /* Nav branding logo scaling */
  .nav-shell {
    min-height: 58px;
  }
  .brand-logo {
    width: clamp(130px, 35vw, 160px);
  }
  .nav-links a {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  /* Client cards (horizontal scroll) scaling */
  .client-card {
    width: min(260px, 78vw);
  }
  .client-logo {
    width: 76px;
    min-height: 38px;
  }
  .client-logo img {
    max-width: 64px;
    max-height: 30px;
  }
  .client-logo svg {
    width: 20px;
    height: 20px;
  }
  .client-logo small {
    font-size: 0.5rem;
  }

  /* Proof band card scaling */
  .proof-band {
    grid-auto-columns: minmax(180px, 78vw);
    gap: 10px;
  }
  .proof-band div {
    min-height: 86px;
    padding: 12px;
  }
  .proof-band strong {
    font-size: 0.94rem;
  }
  .proof-band span {
    font-size: 0.78rem;
    margin-top: 3px;
  }

  /* Section vertical padding */
  .section-shell {
    padding: 30px 0;
  }

  /* CTA band padding and alignment */
  .cta-band {
    padding: 20px 14px;
    text-align: center;
    gap: 14px;
  }

  /* Video card / Rail scaling */
  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-columns: minmax(168px, 68vw);
    gap: 10px;
  }
  .video-card {
    padding: 8px;
  }
  .video-meta {
    padding: 8px 4px 2px;
  }
  .video-meta h3 {
    font-size: 0.98rem;
  }

  /* Hero metrics scaling */
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 8px;
  }
  .hero-metrics strong {
    font-size: 1.25rem;
  }
  .hero-metrics span {
    font-size: 0.72rem;
  }

  /* Contact page proof block scaling */
  .contact-proof {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 8px;
  }
  .contact-proof div {
    padding: 10px;
  }
  .contact-proof strong {
    font-size: 0.88rem;
  }
  .contact-proof span {
    font-size: 0.76rem;
  }

  /* Why cards icon size scaling */
  .why-card svg {
    width: 44px;
    height: 44px;
  }

  /* Testimonials text scaling */
  .testimonial-grid blockquote p {
    font-size: 0.88rem;
  }
  .testimonial-grid blockquote footer {
    font-size: 0.78rem;
    margin-top: 8px;
  }

  /* Process board layout elements */
  .process-board strong,
  .detail-list strong {
    font-size: 0.98rem;
    margin-top: 8px;
  }
  .process-board p,
  .detail-list p {
    font-size: 0.82rem;
  }
  .process-board span {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }
  .process-board::before {
    left: 26px;
    top: 26px;
    bottom: 26px;
    width: 6px;
    background-size: 6px 30px, auto;
  }

  /* Plans price and margins scaling */
  .plan-card h3 {
    font-size: 1.6rem;
  }
  .plan-card li {
    font-size: 0.82rem;
  }
  .plan-grid {
    grid-auto-columns: minmax(230px, 82vw);
    gap: 10px;
  }

  /* Reels category strip and link grid */
  .insta-category-card {
    padding: 12px;
  }
  .insta-category-card h3 {
    font-size: 1.05rem;
  }
  .insta-category-card span {
    font-size: 0.8rem;
  }
  .reel-link-grid a {
    padding: 6px 10px;
    font-size: 0.8rem;
    min-height: 32px;
  }

  .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 18px 0 20px;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .portfolio-filter {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 7px 13px;
    font-size: 0.8rem;
  }

  /* Creator gig metrics / details scaling */
  .gig-metrics div {
    min-height: auto;
    padding: 6px;
  }
  .gig-metrics strong {
    font-size: 1.05rem;
  }
  .gig-metrics small {
    font-size: 0.68rem;
  }

  /* Work hero elements scaling */
  .work-hero-visual {
    min-height: 160px;
  }
  .work-hero-visual img {
    width: min(100%, 190px);
  }
  .work-pulse {
    display: none;
  }

  /* Footer layout details scaling */
  .site-footer {
    padding: 30px 0 20px;
  }
  .footer-grid {
    gap: 20px;
  }
  .footer-grid h2 {
    font-size: 0.98rem;
    margin-bottom: 8px;
  }
  .footer-grid a, .footer-grid p {
    font-size: 0.85rem;
  }
  .footer-brand .brand-logo {
    width: 140px;
  }
  .footer-bottom {
    font-size: 0.76rem;
    gap: 8px;
    margin-top: 24px;
    padding-top: 14px;
  }
}

.brand-mark picture {
  display: contents;
}

/* Production lead prompt, custom section icons, and authoritative mobile layouts */
.lead-prompt[hidden] {
  display: none !important;
}

.lead-prompt {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lead-prompt-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(18, 12, 28, 0.58);
  backdrop-filter: blur(5px);
  cursor: default;
}

.lead-prompt-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(760px, calc(100dvh - 40px));
  overflow-y: auto;
  padding: 28px;
  border: 1px solid rgba(54, 39, 74, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(22, 11, 33, 0.25);
  animation: lead-prompt-enter 220ms ease-out both;
}

.lead-prompt-panel > .eyebrow {
  margin: 0 44px 8px 0;
}

.lead-prompt-panel h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 430 !important;
  line-height: 1.12;
}

.lead-prompt-panel > p:not(.eyebrow) {
  max-width: 480px;
  margin: 10px 0 20px;
  color: var(--ink-soft);
}

.lead-prompt-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #ddd6e7;
  border-radius: 9px;
  background: #ffffff;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
}

.lead-prompt-close::before,
.lead-prompt-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform-origin: center;
}

.lead-prompt-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-prompt-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-prompt-form {
  gap: 16px;
}

.lead-prompt-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-prompt-roles legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.lead-prompt-roles label {
  position: relative;
}

.lead-prompt-roles input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-prompt-roles span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid #ddd6e7;
  border-radius: 9px;
  color: var(--ink-soft);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 620;
  cursor: pointer;
}

.lead-prompt-roles input:checked + span {
  border-color: #7b2cff;
  color: #4f18d8;
  background: #f5f1ff;
  box-shadow: inset 0 0 0 1px #7b2cff;
}

.lead-prompt-roles input:focus-visible + span {
  outline: 3px solid rgba(104, 24, 255, 0.18);
  outline-offset: 2px;
}

.lead-prompt-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-prompt-fields label {
  min-width: 0;
}

.lead-prompt-fields label:last-child {
  grid-column: 1 / -1;
}

.lead-prompt-fields label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 620;
}

.lead-prompt-form .form-submit {
  width: 100%;
  margin: 0;
}

.lead-prompt-privacy {
  display: block;
  color: rgba(60, 43, 77, 0.68);
  font-size: 0.76rem;
  text-align: center;
}

body.lead-prompt-open {
  overflow: hidden;
}

.video-click-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #140d20;
}

.video-click-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-click-shell.has-fallback {
  background: #17121d;
}

.video-click-shell.has-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(104, 24, 255, 0.14), transparent 48%),
    linear-gradient(180deg, #211829, #120e17);
  transition: opacity 160ms ease;
}

.video-click-shell.is-preview-ready::before {
  opacity: 0;
  visibility: hidden;
}

.video-click-shell.is-loaded::before {
  opacity: 0;
  visibility: hidden;
}

.video-preview-button {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  border: 0;
  background: linear-gradient(180deg, rgba(22, 11, 33, 0.02), rgba(22, 11, 33, 0.34));
  color: #ffffff;
  cursor: pointer;
}

.video-preview-button > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(22, 11, 33, 0.2);
}

.video-preview-button > span::after {
  content: "";
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #5b21d9;
}

.video-preview-button small {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(22, 11, 33, 0.68);
  font-size: 0.75rem;
  font-weight: 620;
}

.video-click-shell.is-loaded .video-preview-button {
  display: none;
}

.video-click-shell.is-loaded video {
  position: relative;
  z-index: 1;
}

.home-video-rail .video-click-shell {
  aspect-ratio: 9 / 12;
}

.section-custom-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

@keyframes lead-prompt-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  .lead-prompt {
    place-items: end center;
    padding: 10px;
  }

  .lead-prompt-panel {
    max-height: calc(100dvh - 20px);
    padding: 22px 18px 18px;
    border-radius: 14px;
  }

  .lead-prompt-fields {
    grid-template-columns: 1fr;
  }

  .lead-prompt-fields label:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-prompt-panel {
    animation: none;
  }
}

@supports (container-type: inline-size) {
  @container (max-width: 460px) {
    .role-picker {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .role-card>span {
      min-height: 52px;
      padding: 8px 6px;
      text-align: center;
    }

    .role-card small {
      display: none;
    }

    .form-control {
      min-height: 42px;
    }

    textarea.form-control {
      min-height: 92px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Agency polish pass */
.brand-logo {
  width: clamp(188px, 17vw, 238px);
  max-height: 52px;
}

.footer-brand .brand-logo {
  width: 230px;
  max-height: 66px;
}

.nav-links a {
  color: rgba(60, 43, 77, 0.88);
  font-weight: 780;
}

.nav-cta {
  border-color: rgba(22, 11, 33, 0.16);
  background: linear-gradient(135deg, #fff8df 0%, #f8d46b 100%);
  box-shadow: 0 10px 24px rgba(245, 200, 75, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(22, 11, 33, 0.28);
  box-shadow: 0 14px 30px rgba(245, 200, 75, 0.34);
}

.button {
  border-width: 1px;
  box-shadow: none;
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #6818ff 0%, #8f35ff 55%, #d82fd0 100%);
  box-shadow: 0 14px 30px rgba(104, 24, 255, 0.24);
}

.button-secondary {
  border-color: rgba(22, 11, 33, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 26px rgba(22, 11, 33, 0.08);
}

.button:hover,
.nav-cta:hover,
.button:focus-visible,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button:active,
.nav-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.campaign-card,
.plan-card,
.testimonial-grid blockquote,
.resource-grid article,
.service-card,
.instagram-category-card,
.creator-grid article,
.journey-line article,
.traction-card,
.why-card,
.logo-tile {
  border: 1px solid rgba(22, 11, 33, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(22, 11, 33, 0.08);
}

.campaign-card:nth-child(2n),
.campaign-card:nth-child(3n),
.resource-grid article:nth-child(2n),
.resource-grid article:nth-child(3n),
.service-card:nth-child(2n),
.service-card:nth-child(3n),
.instagram-category-card:nth-child(2n),
.instagram-category-card:nth-child(3n),
.creator-grid article:nth-child(2n),
.creator-grid article:nth-child(3n),
.success-grid .campaign-card:first-child {
  box-shadow: 0 18px 44px rgba(22, 11, 33, 0.08);
}

.success-grid .campaign-card:first-child {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.campaign-card:hover,
.plan-card:hover,
.testimonial-grid blockquote:hover,
.client-card:hover,
.video-card:hover,
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(22, 11, 33, 0.12);
}

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 26px;
}

.hero-capabilities div {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(22, 11, 33, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(22, 11, 33, 0.07);
}

.hero-capabilities span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: #533200;
  background: rgba(245, 200, 75, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-capabilities strong {
  font-size: 1rem;
  line-height: 1.18;
}

.hero-capabilities p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.traction-card {
  border-color: rgba(104, 24, 255, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 200, 75, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.94);
}

.traction-card h3 {
  max-width: 360px;
}

.traction-list {
  display: grid;
  gap: 10px;
}

.traction-list span {
  position: relative;
  display: block;
  padding: 11px 12px 11px 38px;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 760;
}

.traction-list span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: translateY(-60%) rotate(-45deg);
}

.why-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 32px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(104, 24, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 200, 75, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 255, 0.92));
}

.why-layout .section-header {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.why-layout .section-header h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-card {
  padding: 22px;
}

.why-card svg {
  width: 52px;
  height: 52px;
  padding: 10px;
  border-radius: 16px;
  color: var(--purple);
  background: linear-gradient(135deg, rgba(255, 246, 222, 0.95), rgba(245, 200, 75, 0.28));
}

.why-card h3 {
  margin-top: 18px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.logo-tile {
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

.logo-tile img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.logo-tile span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.logo-tile small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.client-proof-strip .section-header {
  max-width: 820px;
}

.instagram-category-section,
.insta-preview-section {
  display: none;
}

@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-shell,
  .home-hero,
  .home-work-preview,
  .contact-first-screen,
  .work-hero,
  .proof-band,
  .section-shell,
  .cta-band,
  .site-footer,
  .page-hero {
    width: min(100% - 24px, var(--max));
  }

  .brand-logo {
    width: clamp(142px, 42vw, 172px);
    max-height: 44px;
  }

  .home-hero {
    gap: 18px;
    padding-top: 22px;
  }

  .home-hero-art,
  .work-hero-visual {
    order: 0;
    min-height: 220px;
  }

  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1 {
    font-size: clamp(1.82rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .section-header h2,
  .section-copy h2,
  .cta-band h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .hero-capabilities {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-capabilities div {
    min-height: 0;
    padding: 12px;
  }

  .home-work-grid,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-layout {
    gap: 18px;
    padding: 18px;
  }

  .why-layout .section-header {
    position: static;
  }

  .why-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .why-card {
    min-width: 0;
    padding: 16px;
  }

  .why-card svg {
    width: 46px;
    height: 46px;
  }

  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-tile {
    min-height: 112px;
    padding: 14px 10px;
  }

  .logo-tile img {
    width: 48px;
    height: 48px;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  body::before {
    background-size: 44px 44px;
    opacity: 0.28;
  }

  .nav-shell {
    min-height: 58px;
  }

  .home-hero,
  .work-hero,
  .page-hero,
  .contact-first-screen {
    padding-top: 18px;
  }

  .home-hero-art,
  .work-hero-visual {
    min-height: 190px;
  }

  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1 {
    font-size: clamp(1.68rem, 8.2vw, 2rem);
  }

  .hero-body,
  .page-hero p,
  .section-header p,
  .section-copy p,
  .work-hero p:not(.eyebrow),
  .contact-intro > p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .home-work-preview,
  .section-shell {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .service-grid,
  .campaign-grid,
  .journey-line,
  .plan-grid,
  .resource-grid,
  .creator-grid,
  .creator-gig-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    overflow: visible;
  }

  .campaign-card,
  .plan-card,
  .resource-grid article,
  .service-card,
  .creator-grid article,
  .journey-line article,
  .traction-card,
  .why-card {
    padding: 16px;
  }

  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: auto;
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin-inline: 0;
  }

  .video-card {
    min-width: 0;
    padding: 8px;
    border-radius: 14px;
  }

  .video-meta {
    padding: 9px 2px 2px;
  }

  .video-card p {
    font-size: 0.66rem;
  }

  .video-card h3 {
    font-size: 0.92rem;
    line-height: 1.16;
  }

  .video-card span {
    font-size: 0.74rem;
  }

  .portfolio-filters {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .portfolio-filter {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 8px 10px;
    white-space: normal;
  }

  .proof-band {
    gap: 10px;
  }

  .proof-band div {
    min-height: 0;
    padding: 12px;
  }

  .proof-band strong {
    font-size: 0.9rem;
  }

  .proof-band span {
    font-size: 0.76rem;
  }

  .footer-brand .brand-logo {
    width: 160px;
  }
}

@media (max-width: 340px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Visual bug fixes: readable campaign cards and cleaner shared actions */
.button {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}

.button-primary {
  color: #ffffff;
}

.button-secondary {
  border-color: rgba(22, 11, 33, 0.16);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 248, 223, 0.95), rgba(255, 255, 255, 0.94));
  box-shadow: 0 12px 26px rgba(22, 11, 33, 0.08);
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(104, 24, 255, 0.16);
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(104, 24, 255, 0.08);
  text-decoration: none;
  white-space: nowrap;
}

.campaign-card,
.success-grid .campaign-card:first-child {
  gap: 12px;
  overflow: visible;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(104, 24, 255, 0.06), transparent 38%),
    rgba(255, 255, 255, 0.94);
}

.campaign-card p:first-child,
.success-grid .campaign-card:first-child p:first-child {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--purple) !important;
  background: rgba(104, 24, 255, 0.1);
  line-height: 1.1;
}

.campaign-card h3,
.client-card h3,
.campaign-card span,
.campaign-card p:not(:first-child),
.success-grid .campaign-card:first-child h3,
.success-grid .campaign-card:first-child span,
.success-grid .campaign-card:first-child p:not(:first-child),
.success-grid .campaign-card:first-child small {
  min-height: 0;
  color: inherit;
}

.campaign-card h3,
.success-grid .campaign-card:first-child h3 {
  color: var(--ink);
}

.campaign-card span,
.success-grid .campaign-card:first-child span {
  margin-top: 0;
  color: rgba(48, 34, 62, 0.86) !important;
  font-size: 0.98rem;
  line-height: 1.45;
}

.campaign-card p:not(:first-child),
.success-grid .campaign-card:first-child p:not(:first-child) {
  margin: 0;
  color: rgba(48, 34, 62, 0.78) !important;
  line-height: 1.55;
}

.success-grid .campaign-card:first-child {
  border-color: rgba(104, 24, 255, 0.18);
  box-shadow: 0 18px 44px rgba(22, 11, 33, 0.08);
}

@media (max-width: 820px) {
  .split-header {
    align-items: flex-start;
  }

  .text-link {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }
}

/* Agency UI refresh: calmer buttons, stronger service cards, motion brands, reel references */
.nav-cta,
.button,
.text-link,
.portfolio-filter,
.reel-link-grid a {
  border-radius: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.button {
  min-height: 42px;
  padding: 10px 15px;
}

.button-primary {
  background: linear-gradient(135deg, #4f18d8 0%, #7b2cff 58%, #b92ec6 100%);
  box-shadow: 0 12px 26px rgba(104, 24, 255, 0.2);
}

.button-secondary,
.text-link {
  color: #2b183d;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(22, 11, 33, 0.07);
}

.service-section .service-grid {
  counter-reset: service-card;
  gap: 18px;
}

.service-section .service-card {
  position: relative;
  min-height: 280px;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 255, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(104, 24, 255, 0.12), transparent 35%);
  box-shadow: 0 20px 48px rgba(22, 11, 33, 0.08);
}

.service-section .service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 209, 166, 0.28), rgba(104, 24, 255, 0.08));
}

.service-card .service-number {
  position: relative;
  z-index: 1;
  width: auto;
  padding: 0;
  border: 0;
  color: rgba(104, 24, 255, 0.24);
  background: transparent;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 820;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.service-section .service-card h3,
.service-section .service-card p {
  position: relative;
  z-index: 1;
}

.service-section .service-card h3 {
  max-width: 290px;
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
}

.service-section .service-card p {
  margin: 0;
  color: rgba(48, 34, 62, 0.76);
  line-height: 1.58;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 16px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: brand-marquee 34s linear infinite;
}

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

.brand-motion-card {
  width: min(360px, 82vw);
  min-height: 190px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 200, 75, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 44px rgba(22, 11, 33, 0.08);
}

.brand-motion-logo {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 20px;
  background: #ffffff;
}

.brand-motion-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-motion-logo span {
  color: var(--purple);
  font-size: 1.5rem;
  font-weight: 820;
}

.brand-motion-card small {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-motion-card h3 {
  margin: 5px 0 7px;
  font-size: 1.22rem;
  line-height: 1.08;
}

.brand-motion-card p,
.brand-motion-card span {
  display: block;
  margin: 0;
  color: rgba(48, 34, 62, 0.74);
  font-size: 0.9rem;
  line-height: 1.42;
}

.brand-motion-card p {
  margin-bottom: 7px;
  color: rgba(22, 11, 33, 0.86);
  font-weight: 760;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.creative-reference-section {
  display: block;
}

.creative-reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.creative-reference-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 255, 0.9)),
    radial-gradient(circle at 85% 10%, rgba(221, 43, 214, 0.16), transparent 38%);
  box-shadow: 0 18px 44px rgba(22, 11, 33, 0.08);
}

.reference-card-top {
  display: grid;
  gap: 10px;
}

.reference-card-top span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #533200;
  background: rgba(245, 200, 75, 0.28);
  font-size: 0.75rem;
  font-weight: 780;
}

.reference-card-top strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.05;
}

.creative-reference-card p {
  margin: 0;
  color: rgba(48, 34, 62, 0.74);
  line-height: 1.55;
}

.creative-reference-card .reel-link-grid {
  margin-top: auto;
}

.creative-reference-card .reel-link-grid a {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.78);
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(104, 24, 255, 0.06);
}

.why-card svg {
  position: relative;
  z-index: 1;
}

/* Final reference-card polish: cleaner reel cards and stable mobile order */
.creative-reference-section.instagram-category-section {
  display: block;
}

.creative-reference-grid {
  align-items: stretch;
}

.creative-reference-card {
  min-height: 300px;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.94));
}

.reference-card-top {
  gap: 0;
}

.reference-card-top span {
  display: none;
}

.reference-card-top strong {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 760;
  line-height: 1.08;
}

.creative-reference-card p {
  max-width: 28ch;
  color: rgba(48, 34, 62, 0.72);
  font-size: 0.98rem;
  line-height: 1.58;
}

.creative-reference-card .reel-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.creative-reference-card .reel-link-grid a {
  min-height: 38px;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(104, 24, 255, 0.16);
  border-radius: 10px;
  color: #4f18d8;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 680;
  box-shadow: none;
}

.creative-reference-card .reel-link-grid a:hover,
.creative-reference-card .reel-link-grid a:focus-visible {
  color: #ffffff;
  background: #5b21b6;
}

.work-hero-clean h1 {
  font-weight: 780;
}

.home-hero-copy h1 {
  font-weight: 780;
}

@media (max-width: 820px) {
  .contact-first-screen {
    grid-template-areas: "intro" "form";
  }

  .contact-intro {
    grid-area: intro;
    order: 0;
  }

  .contact-form-panel {
    grid-area: form;
    order: 1;
  }

  .creative-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .creative-reference-grid {
    grid-template-columns: 1fr;
  }

  .creative-reference-card {
    min-height: 0;
    padding: 18px;
  }

  .creative-reference-card .reel-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .creative-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .service-section .service-grid,
  .creative-reference-grid {
    grid-template-columns: 1fr;
  }

  .service-section .service-card {
    min-height: 230px;
  }

  .brand-marquee {
    mask-image: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .brand-marquee-track {
    width: max-content;
    animation: none;
  }

  .brand-motion-card {
    scroll-snap-align: start;
  }
}

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

/* Production typography and resource CMS polish */
.hero-copy h1,
.home-hero-copy h1,
.page-hero h1,
.contact-intro h1,
.work-hero h1,
.work-hero-clean h1 {
  font-weight: 760;
  letter-spacing: 0;
}

.section-copy h2,
.section-header h2,
.cta-band h2,
.contact-aside h2,
.why-layout .section-header h2 {
  font-weight: 760;
  letter-spacing: 0;
}

.service-card h3,
.campaign-card h3,
.client-card h3,
.why-card h3,
.resource-grid h2 {
  font-weight: 720;
  letter-spacing: 0;
}

.hero-body,
.page-hero p,
.section-header p,
.section-copy p,
.why-card p,
.resource-grid article p:not(:first-child) {
  font-weight: 430;
}

.resource-page-intro {
  max-width: 820px;
  margin-bottom: 24px;
}

.resource-grid {
  align-items: stretch;
}

.resource-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(22, 11, 33, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 255, 0.94));
  box-shadow: 0 18px 44px rgba(22, 11, 33, 0.07);
}

.resource-card p:first-child {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 9px;
  color: #4f18d8;
  background: rgba(104, 24, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.15;
}

.resource-card p:not(:first-child) {
  margin: 0;
  color: rgba(48, 34, 62, 0.74);
  line-height: 1.58;
}

.resource-action {
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(104, 24, 255, 0.18);
  border-radius: 10px;
  color: #4f18d8;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 680;
}

.resource-action:hover,
.resource-action:focus-visible {
  color: #ffffff;
  background: #5b21b6;
  outline: none;
}

.resource-detail {
  max-width: 900px;
}

.resource-detail-header {
  margin-top: 28px;
}

.resource-detail-header h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 760;
  line-height: 1.02;
}

.resource-detail-header > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.resource-detail-body {
  max-width: 760px;
  margin: 32px 0;
  color: rgba(48, 34, 62, 0.82);
  font-size: 1.02rem;
  line-height: 1.78;
}

.resource-detail-body p {
  margin: 0 0 18px;
}

/* Final mobile stability pass: contact/brief sections and swipeable video rails */
@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .contact-first-screen,
  .brief-section {
    width: min(100% - 24px, var(--max)) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "intro"
      "form" !important;
    gap: 18px !important;
    align-items: start !important;
    padding-top: 22px !important;
  }

  .contact-first-screen .contact-intro,
  .brief-section .section-copy {
    grid-area: intro;
    order: 0;
    width: 100%;
    min-width: 0;
    padding-top: 0;
  }

  .contact-first-screen .contact-form-panel,
  .brief-section .contact-form-panel {
    grid-area: form;
    order: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
  }

  .tick-list {
    gap: 12px;
  }

  .tick-list li {
    max-width: 100%;
    padding-left: 30px;
    font-size: 0.95rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(230px, 76vw) !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    padding: 2px 4px 16px !important;
    margin-inline: -4px !important;
    -webkit-overflow-scrolling: touch;
  }

  .video-rail > *,
  .expanded-video-rail > *,
  .home-video-rail > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  .video-card {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-columns: minmax(224px, 82vw) !important;
  }

  .contact-proof {
    grid-template-columns: 1fr;
    overflow: visible;
  }
}

/* Professional polish pass: calmer buttons, faster landing flow, stable mobile layout */
.home-hero {
  grid-template-areas:
    "copy art"
    "actions art";
  align-items: center;
}

.home-hero-copy {
  grid-area: copy;
}

.home-hero-art {
  grid-area: art;
}

.home-hero-actions {
  grid-area: actions;
  margin-top: 4px;
}

.work-hero-clean {
  grid-template-areas:
    "copy visual"
    "actions visual";
  align-items: center;
}

.work-hero-clean > div:first-child {
  grid-area: copy;
}

.work-hero-visual {
  grid-area: visual;
}

.work-hero-actions {
  grid-area: actions;
  margin-top: 0;
}

.nav-cta,
.button,
.text-link,
.portfolio-filter,
.resource-action,
.reel-link-grid a {
  border: 1px solid rgba(22, 11, 33, 0.12);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(22, 11, 33, 0.08);
  font-weight: 680;
  letter-spacing: 0;
  text-align: center;
  transform: none;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  color: #20152d;
  background: rgba(255, 255, 255, 0.92);
}

.button {
  min-height: 44px;
  padding: 11px 17px;
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #5b21d9 0%, #8b2bdc 100%);
  color: #ffffff;
}

.button-secondary,
.text-link {
  color: #241333;
  background: rgba(255, 255, 255, 0.94);
}

.button:hover,
.nav-cta:hover,
.text-link:hover,
.portfolio-filter:hover,
.button:focus-visible,
.nav-cta:focus-visible,
.text-link:focus-visible,
.portfolio-filter:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(104, 24, 255, 0.22);
  box-shadow: 0 14px 30px rgba(22, 11, 33, 0.11);
  outline: none;
}

.button:active,
.nav-cta:active,
.text-link:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(22, 11, 33, 0.08);
}

.form-inline-message {
  margin: 12px 0 0;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 620;
}

.form-inline-message.is-success {
  color: #067647;
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.form-inline-message.is-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: progress;
}

@media (max-width: 820px) {
  .site-header {
    overflow: visible;
  }

  .nav-shell {
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand-logo {
    width: clamp(136px, 43vw, 166px);
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
  }

  .nav-toggle span {
    width: 18px;
    margin: 0;
  }

  body.nav-open .nav-links {
    margin-top: 4px;
    padding: 10px;
    border: 1px solid rgba(22, 11, 33, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(22, 11, 33, 0.1);
  }

  body.nav-open .nav-links a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  body.nav-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 0 12px;
  }

  .home-hero {
    grid-template-areas:
      "copy"
      "art"
      "actions";
    gap: 14px;
    padding-top: 24px;
  }

  .home-hero-copy {
    text-align: left;
  }

  .home-hero-copy h1 {
    max-width: 12ch;
  }

  .home-hero-art {
    min-height: 0;
  }

  .creator-hero-image-scene {
    max-width: min(100%, 360px);
  }

  .home-hero-actions,
  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    font-size: 0.9rem;
  }

  .contact-first-screen,
  .brief-section {
    grid-template-areas:
      "form"
      "intro" !important;
  }

  .contact-first-screen .contact-form-panel,
  .brief-section .contact-form-panel {
    grid-area: form;
    order: 0;
  }

  .contact-first-screen .contact-intro,
  .brief-section .section-copy {
    grid-area: intro;
    order: 1;
  }

  .lead-form,
  .form-panel {
    font-size: 0.92rem;
  }

  .role-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .role-card span {
    min-height: 62px;
    padding: 10px 8px;
  }

  .role-card strong {
    font-size: 0.92rem;
  }

  .role-card small {
    font-size: 0.72rem;
  }

  .optional-form-details summary {
    flex-direction: row;
    align-items: center;
  }

  .optional-form-details summary small {
    max-width: 15ch;
    text-align: left;
  }

  .plan-card,
  .expanded-plans .plan-card {
    min-height: 0;
    padding: 18px;
  }

  .plan-card h3 {
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }

  .plan-card ul {
    gap: 8px;
  }

  .work-hero-clean {
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    gap: 16px;
    text-align: left;
  }

  .work-hero-visual {
    justify-self: center;
    width: min(100%, 360px);
    min-height: 0;
  }

  .work-hero-actions {
    width: 100%;
  }

  .proof-band.work-proof {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 78vw);
  }
}

@media (max-width: 480px) {
  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.12rem);
  }

  .section-shell {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .form-panel {
    padding: 14px;
  }

  .required-grid,
  .optional-grid,
  .lead-form-compact .form-grid {
    grid-template-columns: 1fr;
  }

  .video-rail,
  .expanded-video-rail,
  .home-video-rail {
    grid-auto-columns: minmax(232px, 80vw) !important;
  }
}

/* Final mobile header refinement */
.nav-cta {
  border-color: #cfd5df !important;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f6 100%) !important;
  color: #1f1730 !important;
  box-shadow: 0 10px 24px rgba(31, 23, 48, 0.12) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: #b8c0cc !important;
  background: linear-gradient(180deg, #ffffff 0%, #e7ebf2 100%) !important;
  color: #130a20 !important;
}

@media (max-width: 820px) {
  .site-header {
    overflow: visible;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    grid-template-rows: 50px auto;
    align-items: center;
    min-height: 66px;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-mark {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(132px, 39vw, 164px);
  }

  .nav-cta {
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: auto !important;
    min-height: 40px;
    margin: 0 !important;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    line-height: 1;
    white-space: nowrap;
  }

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

  .nav-toggle {
    display: inline-flex !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(31, 23, 48, 0.22);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 !important;
    border-radius: 99px;
    background: #1f1730;
  }

  body.nav-open .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 8px;
    padding: 12px;
  }

  body.nav-open .nav-cta {
    display: inline-flex !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: auto !important;
    margin: 0 !important;
  }
}

@media (max-width: 390px) {
  .nav-shell {
    gap: 6px;
  }

  .nav-cta {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .nav-cta svg {
    display: none;
  }
}

/* Final mobile service-card fix */
@media (max-width: 820px) {
  .service-section {
    overflow: hidden;
  }

  .service-section .service-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
  }

  .service-section .service-card {
    min-width: 0 !important;
    min-height: 0 !important;
    width: 100%;
    padding: 14px !important;
    border-width: 1px;
    border-radius: 12px;
    box-shadow: 4px 4px 0 rgba(157, 122, 232, 0.55);
  }

  .service-section .service-card h3 {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .service-section .service-card p {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
    font-weight: 520;
  }

  .service-card .service-number {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }
}

@media (max-width: 430px) {
  .service-section .service-grid {
    grid-template-columns: 1fr !important;
  }

  .service-section .service-card {
    padding: 16px !important;
  }
}

/* Final contact-form refinement */
.field-required {
  color: #6818ff;
  font-style: normal;
  font-weight: 800;
}

.panel-heading {
  justify-content: flex-start;
}

.direct-contact a {
  border: 1px solid #d4d8e2 !important;
  background: linear-gradient(180deg, #ffffff 0%, #eef1f6 100%) !important;
  color: #1f1730 !important;
  box-shadow: 0 10px 22px rgba(31, 23, 48, 0.08) !important;
  overflow-wrap: anywhere;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  border-color: #b9c0cc !important;
  background: linear-gradient(180deg, #ffffff 0%, #e6eaf1 100%) !important;
}

.optional-form-details summary {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.optional-form-details summary span {
  white-space: nowrap;
}

.optional-form-details summary small {
  max-width: none !important;
  text-align: left !important;
}

.optional-form-details summary::after {
  justify-self: end;
  align-self: center;
}

@media (max-width: 820px) {
  .contact-first-screen {
    grid-template-areas:
      "intro"
      "form" !important;
  }

  .contact-first-screen .contact-intro {
    grid-area: intro !important;
    order: 0 !important;
  }

  .contact-first-screen .contact-form-panel {
    grid-area: form !important;
    order: 1 !important;
  }

  .direct-contact {
    gap: 8px;
  }

  .direct-contact a {
    max-width: 100%;
    padding: 8px 11px;
    font-size: 0.88rem;
    font-weight: 720;
  }

  .optional-form-details summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    padding: 12px 14px;
  }

  .optional-form-details summary span {
    grid-column: 1;
    grid-row: 1;
  }

  .optional-form-details summary small {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .optional-form-details summary::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

/* Final mobile hero and metallic contact polish */
@media (max-width: 820px) {
  .home-hero-copy h1,
  .hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1 {
    max-width: 100% !important;
    text-align: left;
  }

  .home-hero-copy,
  .hero-copy,
  .page-hero,
  .contact-intro,
  .work-hero > div:first-child {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 14px !important;
    border: 1px solid rgba(143, 151, 165, 0.45) !important;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 242, 247, 0.96) 52%, rgba(226, 231, 238, 0.96) 100%) !important;
    color: #171321 !important;
    font-size: 0.82rem;
    font-weight: 620 !important;
    letter-spacing: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 -1px 0 rgba(138, 146, 160, 0.2),
      0 10px 22px rgba(31, 23, 48, 0.1) !important;
  }

  .nav-cta span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }

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

  .nav-cta:hover,
  .nav-cta:focus-visible {
    border-color: rgba(115, 124, 138, 0.55) !important;
    background:
      linear-gradient(180deg, #ffffff 0%, #f0f3f7 48%, #dfe5ed 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      0 12px 26px rgba(31, 23, 48, 0.12) !important;
  }
}

@media (max-width: 390px) {
  .home-hero-copy h1,
  .hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1 {
    max-width: 100% !important;
  }
}

/* Final typography softening */
.hero-copy h1,
.home-hero-copy h1,
.page-hero h1,
.contact-intro h1,
.work-hero h1 {
  font-weight: 720 !important;
  letter-spacing: 0;
}

.section-copy h2,
.section-header h2,
.cta-band h2,
.contact-aside h2,
.work-hero h1,
.contact-intro h1 {
  font-weight: 700 !important;
  letter-spacing: 0;
}

.campaign-card h3,
.plan-card h3,
.video-card h3,
.resource-grid h2,
.service-card h3,
.instagram-category-card h3,
.creator-grid h3,
.why-card h3,
.traction-card h3,
.brand-motion-card h3 {
  font-weight: 680 !important;
}

.eyebrow,
.text-link {
  font-weight: 720 !important;
}

@media (max-width: 820px) {
  .hero-copy h1,
  .home-hero-copy h1,
  .page-hero h1,
  .contact-intro h1,
  .work-hero h1 {
    font-weight: 700 !important;
  }
}

/* Final lead-form validation and contact proof placement */
.form-control.is-invalid,
.role-picker.is-invalid {
  border-color: #8b5cf6 !important;
  background: #fbf8ff;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
}

.field-error-message {
  display: block;
  margin-top: 6px;
  color: #5b21b6 !important;
  font-size: 0.78rem;
  font-weight: 620;
}

.contact-form-panel .contact-proof-after-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ece6f4;
}

.contact-form-panel .contact-proof-after-form div {
  min-height: 0;
  padding: 12px;
  border: 1px solid #e0d8ec;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
}

.contact-form-panel .contact-proof-after-form strong {
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form-panel .contact-proof-after-form span {
  margin-top: 4px;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 820px) {
  .contact-form-panel .contact-proof-after-form {
    grid-template-columns: 1fr;
  }
}

/* Final requested heading weight */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-copy h1,
.home-hero-copy h1,
.page-hero h1,
.contact-intro h1,
.work-hero h1,
.section-copy h2,
.section-header h2,
.cta-band h2,
.contact-aside h2,
.campaign-card h3,
.plan-card h3,
.video-card h3,
.resource-grid h2,
.service-card h3,
.instagram-category-card h3,
.creator-grid h3,
.why-card h3,
.traction-card h3,
.brand-motion-card h3 {
  font-weight: 200 !important;
}

/* Final mobile edge-spacing guard */
@media (max-width: 820px) {
  .page-hero,
  .compact-hero,
  .section-shell,
  .home-hero,
  .home-work-preview,
  .contact-first-screen,
  .work-hero,
  .work-hero-clean,
  .cta-band,
  .site-footer {
    width: min(var(--max), calc(100% - 28px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-hero,
  .compact-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-hero > *,
  .compact-hero > *,
  .section-header > *,
  .section-copy > * {
    max-width: 100%;
  }

  .plan-grid,
  .expanded-plans,
  .campaign-grid,
  .resource-grid,
  .creator-gig-grid,
  .testimonial-grid,
  .creative-reference-grid,
  .instagram-category-grid {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .plan-card,
  .expanded-plans .plan-card {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 430px) {
  .page-hero,
  .compact-hero,
  .section-shell,
  .home-hero,
  .home-work-preview,
  .contact-first-screen,
  .work-hero,
  .work-hero-clean,
  .cta-band,
  .site-footer {
    width: calc(100% - 24px) !important;
  }
}

/* Authoritative mobile cards: keep this block last. */
@media (max-width: 820px) {
  .service-section {
    overflow: visible !important;
  }

  .service-section .service-grid,
  .why-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    gap: 12px !important;
    overflow: visible !important;
    transform: none !important;
  }

  .service-section .service-card,
  .why-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 18px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .service-section .service-card {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 4px 12px !important;
    align-items: start !important;
  }

  .service-section .service-card .service-number {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    margin: 1px 0 0 !important;
    font-size: 1rem !important;
    letter-spacing: 0 !important;
  }

  .service-section .service-card h3,
  .service-section .service-card p {
    grid-column: 2 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .service-section .service-card p {
    margin-top: 6px !important;
  }

  .why-card {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 5px 14px !important;
    align-items: start !important;
  }

  .why-card > svg,
  .why-card > .section-custom-icon {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
  }

  .why-card h3,
  .why-card p {
    grid-column: 2 !important;
    margin: 0 !important;
  }

  .why-card p {
    margin-top: 4px !important;
  }

  .proof-band.work-proof {
    width: calc(100% - 24px) !important;
    max-width: var(--max) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    gap: 12px !important;
    margin: 0 auto !important;
    padding: 8px 0 36px !important;
    overflow: visible !important;
    transform: none !important;
  }

  .proof-band.work-proof > div {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 16px !important;
    border: 1px solid rgba(22, 11, 33, 0.14) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 8px 22px rgba(22, 11, 33, 0.06) !important;
    scroll-snap-align: none !important;
  }

  .proof-band.work-proof strong {
    margin-bottom: 5px;
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .proof-band.work-proof span {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .lead-prompt {
    place-items: center !important;
    padding: 12px !important;
  }

  .lead-prompt-panel {
    width: min(100%, 560px);
    max-height: calc(100dvh - 24px);
    margin: 0;
  }
}

/* Editorial resource library and quieter interface typography */
.nav-links a {
  font-weight: 500 !important;
}

.nav-cta,
.button,
.text-link,
.portfolio-filter,
.resource-action,
.reel-link-grid a {
  font-weight: 540 !important;
}

.eyebrow,
.resource-type-label {
  font-weight: 580 !important;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource-card,
.resource-grid article.resource-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e3deea;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(31, 23, 48, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 52px;
  height: 3px;
  background: #7137d8;
}

.resource-card:hover {
  border-color: #cfc4df;
  box-shadow: 0 17px 42px rgba(31, 23, 48, 0.09);
  transform: translateY(-2px);
}

.resource-card-meta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.resource-type-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #ded4ed;
  border-radius: 8px;
  background: #f7f3fc;
  color: #6326c7;
}

.resource-type-icon svg {
  width: 19px;
  height: 19px;
}

.resource-type-label {
  color: #604e71;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.resource-card-meta time {
  color: #8a7e94;
  font-size: 0.74rem;
  font-weight: 430;
}

.resource-card-copy {
  display: grid;
  gap: 13px;
}

.resource-card .resource-card-copy h2 {
  margin: 0;
  color: #21172d;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 420 !important;
  line-height: 1.22;
}

.resource-card .resource-card-copy p {
  margin: 0;
  color: #675b72;
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.62;
}

.resource-card-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.resource-card .resource-action {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #6326c7;
  font-size: 0.84rem;
  text-align: left;
}

.resource-card .resource-action svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.resource-card .resource-action:hover,
.resource-card .resource-action:focus-visible {
  color: #43158d;
  background: transparent;
  outline: none;
}

.resource-card .resource-action:hover svg,
.resource-card .resource-action:focus-visible svg {
  transform: translateX(3px);
}

@media (max-width: 820px) {
  .resource-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .resource-card,
  .resource-grid article.resource-card {
    min-height: 0;
    padding: 20px;
  }

  .resource-card::before {
    left: 20px;
  }

  .resource-card-meta {
    margin-bottom: 22px;
  }
}

/* Creator opportunities: compact campaign briefs */
.creator-gig-grid {
  align-items: stretch;
  gap: 18px;
}

.creator-gig-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 11, 33, 0.14);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(31, 23, 48, 0.08);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.creator-gig-card:nth-child(2n),
.creator-gig-card:nth-child(3n) {
  box-shadow: 0 14px 34px rgba(31, 23, 48, 0.08);
}

.creator-gig-card:hover {
  border-color: rgba(104, 24, 255, 0.34);
  box-shadow: 0 18px 42px rgba(31, 23, 48, 0.12);
  transform: translateY(-3px);
}

.gig-cover {
  position: relative;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  color: #5d25c7;
  background: linear-gradient(135deg, #f3efff, #eef9f6);
}

.gig-cover-sky {
  color: #2368b7;
  background: linear-gradient(135deg, #eef6ff, #f4f0ff);
}

.gig-cover-gold {
  color: #745600;
  background: linear-gradient(135deg, #fff9e8, #f4f0ff);
}

.gig-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gig-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(16, 8, 29, 0.42));
  opacity: 0;
}

.gig-cover-has-image::after {
  opacity: 1;
}

.gig-cover-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 720;
}

.gig-cover > svg {
  width: min(55%, 180px);
  height: auto;
  opacity: 0.84;
}

.gig-status {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: #176b4d;
  font-size: 0.72rem;
  font-weight: 680;
  box-shadow: 0 5px 14px rgba(16, 24, 40, 0.1);
}

.gig-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20a674;
}

.gig-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 19px;
}

.gig-card-topline {
  min-width: 0;
  align-items: flex-start;
}

.gig-card-topline span {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.03em;
}

.gig-card-topline small {
  max-width: 58%;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 580;
  line-height: 1.35;
  text-transform: none;
}

.creator-gig-card h3 {
  min-height: 0;
  margin: 0;
  font-size: 1.28rem;
  font-weight: 650 !important;
  line-height: 1.2;
}

.creator-gig-card p {
  min-height: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 480;
  line-height: 1.55;
}

.gig-fit {
  min-height: 0;
  padding: 11px 12px;
  border: 1px solid rgba(104, 24, 255, 0.12);
  border-radius: 8px;
  background: #faf8ff;
}

.gig-fit strong {
  color: #6b6477;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.gig-fit span {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 550;
}

.gig-metrics {
  margin: 0;
}

.gig-metrics div {
  min-height: 62px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 10px 11px;
  border-color: #ebe7f1;
  background: #ffffff;
}

.gig-metrics dt {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 550;
}

.gig-metrics dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 680;
  line-height: 1;
}

.gig-card-action {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eeeaf3;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 650;
}

.gig-card-action svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.creator-gig-card:hover .gig-card-action svg {
  transform: translateX(3px);
}

.creator-step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #e4dcf4;
  border-radius: 10px;
  background: #f6f2ff;
  color: var(--purple);
}

.creator-grid article .creator-step-icon > svg,
.creator-grid article .creator-step-icon > .section-custom-icon {
  width: 26px;
  height: 26px;
}

.contact-form-status {
  display: grid;
  gap: 3px;
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid #abefc6;
  border-radius: 9px;
  background: #ecfdf3;
  color: #05603a;
}

.contact-form-status strong {
  font-size: 0.86rem;
  font-weight: 680;
}

.contact-form-status span {
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .creator-gig-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .creator-gig-card {
    width: 100%;
  }

  .gig-cover {
    min-height: 112px;
  }

  .gig-content {
    padding: 16px;
  }

  .creator-grid article {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 5px 13px;
    align-items: start;
  }

  .creator-step-icon {
    grid-row: 1 / 3;
  }

  .creator-grid article h3,
  .creator-grid article p {
    grid-column: 2;
    margin: 0;
  }
}

/* Final homepage video-card containment */
.home-work-grid {
  align-items: start;
}

.home-video-rail {
  align-items: start;
}

.home-video-rail .video-card {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.home-video-rail .video-click-shell,
.home-video-rail .video-placeholder {
  width: 100%;
  height: auto !important;
  min-height: 0;
  flex: 0 0 auto;
  aspect-ratio: 4 / 5;
}

.home-video-rail .video-click-shell video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-video-rail .video-meta {
  position: relative;
  z-index: 2;
  min-height: 116px;
  display: block;
  padding: 14px 8px 10px;
  background: #fff;
}

.home-video-rail .video-meta p,
.home-video-rail .video-meta h3,
.home-video-rail .video-meta span {
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  overflow-wrap: anywhere;
}

.home-video-rail .video-meta p {
  margin: 0 0 7px;
}

.home-video-rail .video-meta h3 {
  margin: 0;
  line-height: 1.25;
}

.home-video-rail .video-meta span {
  margin-top: 8px;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .home-video-rail .video-meta {
    min-height: 108px;
    padding: 12px 7px 9px;
  }
}

/* Not-found page */
.not-found-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(54px, 9vw, 116px) 0;
}

.not-found-copy {
  max-width: 680px;
}

.not-found-code {
  margin: 10px 0 0;
  color: #6b2ee6;
  font-size: clamp(5.5rem, 13vw, 10rem);
  font-weight: 260;
  line-height: 0.82;
  letter-spacing: 0;
}

.not-found-copy h1 {
  max-width: 12ch;
  margin: 26px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  font-weight: 380 !important;
  line-height: 1;
}

.not-found-copy > p:last-of-type {
  max-width: 54ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.not-found-map {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 34px;
}

.not-found-map::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 6px;
  width: 1px;
  background: #c8b1ed;
}

.not-found-origin {
  position: absolute;
  top: 22px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: #6b2ee6;
  box-shadow: 0 0 0 1px #6b2ee6;
}

.not-found-map a {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  padding: 20px;
  border: 1px solid rgba(22, 11, 33, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(22, 11, 33, 0.07);
  transition: border-color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.not-found-map a:hover,
.not-found-map a:focus-visible {
  border-color: rgba(104, 24, 255, 0.46);
  transform: translateX(4px);
  box-shadow: 0 16px 38px rgba(54, 24, 92, 0.11);
}

.not-found-map small {
  grid-column: 1;
  color: #765e87;
  font-size: 0.72rem;
  font-weight: 620;
  text-transform: uppercase;
}

.not-found-map strong {
  grid-column: 1;
  font-size: 1.05rem;
  font-weight: 620;
}

.not-found-map a > span {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: #6b2ee6;
  font-size: 1.15rem;
}

@media (max-width: 820px) {
  .not-found-shell {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding: 58px 0 72px;
  }

  .not-found-copy h1 {
    max-width: 13ch;
  }

  .not-found-map {
    padding-left: 26px;
  }
}

/* Creative reference tiles */
.creative-reference-card .reel-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.creative-reference-card .reel-reference {
  min-width: 0;
  min-height: 94px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(103, 47, 224, 0.16);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 5px 16px rgba(34, 19, 56, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.creative-reference-card .reel-reference:hover,
.creative-reference-card .reel-reference:focus-visible {
  border-color: rgba(103, 47, 224, 0.42);
  box-shadow: 0 9px 22px rgba(62, 28, 112, 0.1);
  transform: translateY(-2px);
}

.reel-reference-visual {
  position: relative;
  width: 66px;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: #eee9fa;
}

.reel-reference-visual img,
.reel-reference-fallback {
  width: 100%;
  height: 100%;
}

.reel-reference-visual img {
  display: block;
  object-fit: cover;
}

.reel-reference-fallback {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9px;
  color: #fff;
  background: #6d35e5;
}

.reel-reference:nth-child(4n + 2) .reel-reference-fallback {
  background: #1877d3;
}

.reel-reference:nth-child(4n + 3) .reel-reference-fallback {
  background: #d14387;
}

.reel-reference:nth-child(4n + 4) .reel-reference-fallback {
  color: #17201e;
  background: #62d3b0;
}

.reel-reference-platform {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
}

.reel-reference-fallback strong {
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.reel-reference-number {
  position: absolute;
  right: 2px;
  bottom: 2px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #24172f;
  background: #ffffff;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
}

.reel-reference-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.reel-reference-copy > strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1.35;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.reel-reference-copy small {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #6840bd;
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 620px) {
  .creative-reference-card .reel-link-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .creative-reference-card .reel-reference {
    min-height: 88px;
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .reel-reference-visual {
    width: 62px;
  }
}

/* Final Work-page stability */
.expanded-video-rail {
  align-items: start;
}

.expanded-video-rail .video-card {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.expanded-video-rail .video-window,
.expanded-video-rail .video-click-shell {
  width: 100%;
  height: auto !important;
  min-height: 0;
  flex: 0 0 auto;
  aspect-ratio: 4 / 5;
}

.expanded-video-rail .video-click-shell video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.expanded-video-rail .video-meta {
  position: relative;
  z-index: 2;
  min-height: 112px;
  display: block;
  padding: 14px 8px 8px;
  background: #fff;
}

.expanded-video-rail .video-meta p,
.expanded-video-rail .video-meta h3,
.expanded-video-rail .video-meta span {
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  overflow-wrap: anywhere;
}

.creative-reference-grid {
  align-items: start;
}

.creative-reference-card {
  min-height: 0;
}

.creative-reference-card .reel-link-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 9px;
  margin-top: 4px;
}

.creative-reference-card .reel-reference {
  width: 100%;
  min-height: 86px;
  grid-template-columns: 58px minmax(0, 1fr);
}

.reel-reference-visual {
  width: 58px;
}

.reel-reference-copy > strong {
  display: block;
  overflow: visible;
  font-size: 0.86rem;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  -webkit-line-clamp: unset;
}

.reel-reference-copy small {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}

.brand-logo {
  width: clamp(180px, 17vw, 232px);
  max-height: 54px;
}

@media (max-width: 820px) {
  .expanded-video-rail .video-meta {
    min-height: 104px;
  }

  .creative-reference-card .reel-reference {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .reel-reference-visual {
    width: 62px;
  }

  .brand-logo {
    width: clamp(150px, 44vw, 184px);
    max-height: 50px;
  }
}

/* Keep the general creator application aligned with its section copy. */
.creator-gigs-section .creator-gigs-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.creator-gigs-section .creator-quick-apply {
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0;
  padding: 9px 14px;
  border: 1px solid #d8cdec;
  border-radius: 8px;
  background: #fff;
  color: #4f3864;
  box-shadow: 0 6px 18px rgba(31, 23, 48, 0.05);
  font-size: 0.84rem;
  font-weight: 520 !important;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
}

.creator-gigs-section .creator-quick-apply:hover,
.creator-gigs-section .creator-quick-apply:focus-visible {
  border-color: #a98bd8;
  background: #fff;
  color: #4d1ca0;
  box-shadow: 0 8px 22px rgba(74, 36, 130, 0.09);
}

@media (max-width: 820px) {
  .creator-gigs-section .creator-gigs-header {
    margin-bottom: 22px;
  }
}

/* Progressive rendering: public copy remains in the HTML while distant work is skipped. */
@supports (content-visibility: auto) {
  .progressive-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }

  .progressive-section-near {
    contain-intrinsic-size: auto 520px;
  }

  .site-footer.progressive-section {
    contain-intrinsic-size: auto 430px;
  }
}

.video-click-shell [data-progressive-video] {
  opacity: 0;
  transition: opacity 180ms ease;
}

.video-click-shell.is-preview-ready [data-progressive-video],
.video-click-shell.is-loaded [data-progressive-video] {
  opacity: 1;
}

.video-click-shell.is-hydrating .video-preview-button > span {
  animation: video-preview-pulse 1.1s ease-in-out infinite alternate;
}

@keyframes video-preview-pulse {
  from {
    box-shadow: 0 10px 24px rgba(22, 11, 33, 0.18);
  }
  to {
    box-shadow: 0 12px 32px rgba(104, 24, 255, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-click-shell [data-progressive-video] {
    transition: none;
  }

  .video-click-shell.is-hydrating .video-preview-button > span {
    animation: none;
  }
}
