:root {
  --lime: #e4f13c;
  --purple: #dfa0ee;
  --pink: #ff7fbd;
  --black: #050505;
  --paper: #fff;
  --mist: #f0f0f0;
  --pad: clamp(22px, 4.2vw, 68px);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: var(--purple); color: var(--black); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.lo-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(clamp(20px,4vw,72px),calc((100vw - 1440px)/2));
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.lo-header.is-scrolled {
  border-color: var(--black);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
}
.lo-logo {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-decoration: none;
  transform: rotate(-2deg);
}
.lo-logo.logo-morph .logo-morph__frame { width: clamp(190px, 17vw, 250px); }
.lo-logo img { width: clamp(190px, 17vw, 250px); height: auto; }
.lo-nav { display: grid; width: min(690px,58vw); grid-template-columns: repeat(6,minmax(0,1fr)); align-items: center; }
.lo-nav > a:not(.lo-button) {
  position: relative;
  justify-self: center;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.lo-nav > a:not(.lo-button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  background: var(--purple);
  content: "";
  transform: scaleX(0) rotate(-1deg);
  transform-origin: right;
  transition: transform .2s ease;
}
.lo-nav > a:hover::after, .lo-nav > a:focus-visible::after, .lo-nav > a[aria-current="page"]::after { transform: scaleX(1) rotate(-1deg); transform-origin: left; }
.lo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  border: 2px solid var(--black);
  background: var(--paper);
  box-shadow: 5px 6px 0 var(--black);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: lowercase;
  clip-path: polygon(2% 0, 98% 1%, 100% 88%, 94% 100%, 1% 97%, 0 12%);
  transition: transform .18s ease, box-shadow .18s ease;
}
.lo-button:hover, .lo-button:focus-visible { box-shadow: 2px 3px 0 var(--black); transform: translate(3px, 3px) rotate(-1deg); }
.lo-button--lime { background: var(--lime); }
.lo-button--purple { background: var(--purple); }
.lo-button--black { border-color: var(--black); background: var(--black); box-shadow: 6px 7px 0 var(--purple); color: var(--paper); }
.lo-menu, .mobile-nav { display: none; }

.lo-hero {
  position: relative;
  min-height: 720px;
  height: min(860px, 100svh);
  max-height: 860px;
  overflow: hidden;
  padding: 120px var(--pad) 72px;
  background: var(--paper);
  isolation: isolate;
}
.hero-dots {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .36;
  background-image: radial-gradient(var(--black) 1px, transparent 1.3px);
  background-size: 13px 13px;
  mask-image: linear-gradient(100deg, transparent 0 40%, #000 66%, #000 100%);
}
.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(61vw, 800px);
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.lo-kicker {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.lo-kicker::before { display: inline-block; width: 38px; height: 8px; margin-right: 11px; background: var(--lime); content: ""; clip-path: polygon(0 24%, 100% 0, 90% 100%, 5% 80%); }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(25px, 4.6vw, 60px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .92;
}
.hero-copy h1 span { display: block; white-space: nowrap; }
.hero-copy h1 span:last-child { max-width: 850px; }
.hero-copy > p:not(.lo-kicker) { max-width: 610px; margin: 28px 0 0; font-size: clamp(15px, 1.35vw, 19px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px; }

.hero-art {
  position: absolute;
  z-index: 2;
  right: -2vw;
  bottom: -5%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  transform: translate3d(var(--art-x,0), var(--art-y,0), 0);
  transition: transform .18s ease-out;
}
.lime-cutout {
  position: absolute;
  z-index: 0;
  inset: 7% 4% 2% 13%;
  background: var(--lime);
  clip-path: polygon(24% 0, 76% 5%, 94% 21%, 88% 45%, 100% 62%, 85% 91%, 54% 97%, 28% 88%, 5% 66%, 12% 38%, 0 17%);
  transform: rotate(4deg);
}
.lime-cutout::after {
  position: absolute;
  inset: 8%;
  opacity: .58;
  background-image: radial-gradient(var(--black) 1.6px, transparent 1.7px);
  background-size: 7px 7px;
  content: "";
  clip-path: inherit;
}
.hero-photo { position: absolute; z-index: 2; inset: 0; filter: grayscale(1) contrast(1.22); }
.hero-photo img { width: 100%; height: 100%; object-fit: contain; }
.sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 90px;
  min-height: 52px;
  place-items: center;
  padding: 10px 14px;
  border: 2px solid var(--black);
  background: var(--paper);
  box-shadow: 5px 6px 0 var(--black);
  font-size: 13px;
  font-weight: 950;
  clip-path: polygon(4% 0, 100% 6%, 95% 90%, 82% 100%, 0 92%, 6% 18%);
}
.sticker--ppc { top: 16%; left: 9%; background: var(--purple); transform: rotate(-9deg); }
.sticker--meta { top: 40%; right: 3%; background: var(--pink); transform: rotate(7deg); }
.sticker--growth { right: 11%; bottom: 12%; background: var(--paper); transform: rotate(-4deg); }
.hero-marquee {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow: hidden;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  background: var(--lime);
  color: var(--black);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 36px;
  white-space: nowrap;
  transform: rotate(-.45deg) scale(1.01);
}
.hero-marquee span { min-width: max-content; animation: marketing-marquee 20s linear infinite; }
@keyframes marketing-marquee { to { transform: translateX(-100%); } }

.lo-section { padding: clamp(90px, 10vw, 160px) var(--pad); }
.services { background: var(--mist); }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px 8vw; align-items: end; }
.section-heading .lo-kicker { grid-column: 1 / -1; }
.section-heading h2,
.promo-copy h2,
.process-heading h2,
.marketing-contact h2 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 120px);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .86;
}
.section-heading > p:last-child, .promo-copy > p:not(.lo-kicker), .marketing-contact p { margin: 0; font-size: clamp(16px, 1.45vw, 20px); line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(56px, 7vw, 100px); }
.service-card {
  position: relative;
  min-height: 365px;
  padding: 30px 26px;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--paper);
  clip-path: polygon(0 3%, 93% 0, 100% 8%, 96% 93%, 84% 100%, 3% 96%);
  transition: transform .2s ease, background .2s ease;
}
.service-card:nth-child(2n) { transform: translateY(18px); }
.service-card:nth-child(3n) { background: #f8e8fb; }
.service-card:hover { z-index: 2; background: var(--lime); transform: translateY(-8px) rotate(-1deg); }
.service-card:nth-child(2n):hover { transform: translateY(8px) rotate(1deg); }
.service-tag { display: inline-block; padding: 7px 11px; border: 2px solid var(--black); background: var(--lime); font-size: 10px; font-weight: 950; transform: rotate(-3deg); }
.service-card:nth-child(even) .service-tag { background: var(--purple); transform: rotate(3deg); }
.service-number { position: absolute; top: 34px; right: 25px; color: rgba(0,0,0,.13); font-size: 70px; font-weight: 950; line-height: 1; }
.service-glyph {
  position: relative;
  width: 116px;
  height: 96px;
  margin: 42px 0 24px;
  background: var(--black);
  clip-path: polygon(0 34%, 69% 6%, 100% 0, 88% 87%, 54% 72%, 0 100%);
}
.service-glyph::after { position: absolute; inset: 11px; background: var(--lime); content: ""; clip-path: inherit; }
.service-card:nth-child(2n) .service-glyph { transform: rotate(180deg); }
.service-card:nth-child(3n) .service-glyph { clip-path: polygon(4% 0, 96% 4%, 100% 78%, 83% 100%, 0 91%, 8% 22%); }
.service-card h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.035em; line-height: 1.05; text-transform: lowercase; }
.service-card p { margin: 0; color: #4c4c4c; font-size: 14px; line-height: 1.55; }

.loud-band { overflow: hidden; border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); background: var(--purple); transform: rotate(1deg) scale(1.02); }
.loud-track { display: flex; width: max-content; font-size: clamp(38px, 6vw, 92px); font-weight: 950; letter-spacing: -.045em; line-height: 1.08; white-space: nowrap; }
.loud-track span { animation: marketing-marquee 22s linear infinite; }

.promo { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; min-height: 750px; overflow: hidden; background: var(--lime); }
.promo::before { position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(var(--black) 1.6px, transparent 1.7px); background-size: 9px 9px; content: ""; mask-image: linear-gradient(90deg,#000,transparent 68%); }
.promo-art, .promo-copy { position: relative; z-index: 1; }
.promo-art { display: grid; min-height: 490px; place-items: center; border: 3px solid var(--black); background: var(--purple); box-shadow: 15px 17px 0 var(--black); clip-path: polygon(4% 0, 96% 3%, 100% 82%, 87% 100%, 0 94%, 3% 13%); transform: rotate(-3deg); }
.promo-word { position: absolute; color: rgba(255,255,255,.38); font-size: clamp(120px, 20vw, 330px); font-weight: 950; letter-spacing: -.1em; }
.promo-goose { position: relative; z-index: 1; width: min(82%, 480px); max-height: 470px; object-fit: contain; object-position: center; filter: drop-shadow(10px 12px 0 var(--black)); transform: rotate(-2deg); }
.promo-arrow { position: absolute; right: 24px; bottom: 8px; font-size: 100px; font-weight: 950; }
.promo-copy h2 { font-size: clamp(62px, 8vw, 130px); }
.promo-copy > p:not(.lo-kicker) { margin-top: 28px; }
.promo-copy .lo-button { margin-top: 34px; }

.process {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, rgba(3,3,8,.94) 0%, rgba(3,3,8,.82) 47%, rgba(3,3,8,.48) 100%),
    linear-gradient(180deg, rgba(3,3,8,.08) 0%, rgba(3,3,8,.58) 100%),
    url('/assets/marketing-space-process-1672.webp');
  background-position: center, center, center right;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--paper);
  isolation: isolate;
}
.process::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 79% 29%, rgba(223,160,238,.16), transparent 28%);
  content: "";
  pointer-events: none;
}
.process .lo-kicker::before { background: var(--purple); }
.process-heading { position: relative; z-index: 1; max-width: 1000px; }
.process-list { margin: 70px 0 0; padding: 0; list-style: none; counter-reset: lineup-step; }
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 110px .75fr 1.25fr;
  gap: 30px;
  align-items: center;
  padding: 28px 18px 28px 0;
  border-top: 1px solid rgba(255,255,255,.34);
  counter-increment: lineup-step;
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.34); }
.process-step::before { color: var(--lime); content: "0" counter(lineup-step); font-size: 44px; font-weight: 950; }
.process-step h3 { margin: 0; font-size: clamp(23px, 2.6vw, 42px); letter-spacing: -.04em; text-transform: lowercase; }
.process-step p { margin: 0; color: rgba(255,255,255,.64); line-height: 1.55; }
.process-step::after { position: absolute; right: 0; width: 18px; height: 18px; background: var(--purple); content: ""; transform: rotate(45deg); }

.marketing-contact { position: relative; display: grid; min-height: 820px; grid-template-columns: minmax(0, .9fr) minmax(420px, .7fr); gap: clamp(48px, 7vw, 120px); align-items: end; overflow: hidden; padding: clamp(100px, 11vw, 170px) var(--pad); background: var(--purple); }
.contact-noise { position: absolute; top: -2vw; left: -3vw; color: rgba(255,255,255,.3); font-size: clamp(90px, 17vw, 280px); font-weight: 950; letter-spacing: -.08em; line-height: .75; white-space: nowrap; transform: rotate(-5deg); }
.contact-copy { position: relative; z-index: 2; max-width: 760px; margin-top: 60px; }
.lo-logo--large { margin-bottom: 36px; }
.lo-logo--large img { width: clamp(330px, 40vw, 560px); }
.marketing-contact h2 { font-size: clamp(64px, 8vw, 120px); }
.marketing-contact p { max-width: 700px; margin-top: 30px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; margin-top: 38px; }
.text-link { font-size: 15px; font-weight: 900; text-decoration-thickness: 3px; text-underline-offset: 6px; }
.contact-form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: clamp(28px, 4vw, 54px); border: 3px solid var(--black); background: var(--paper); box-shadow: 14px 16px 0 var(--lime); clip-path: polygon(3% 0, 97% 2%, 100% 92%, 91% 100%, 2% 97%, 0 8%); }
.form-field { display: grid; gap: 8px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { font-size: 11px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; border: 2px solid var(--black); border-radius: 0; background: #f7f7f7; color: var(--black); font: inherit; outline: none; }
.form-field input, .form-field select { padding: 0 14px; }
.form-field textarea { min-height: 150px; padding: 14px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #6f297f; box-shadow: 4px 5px 0 var(--purple); }
.privacy-field { display: grid; grid-column: 1 / -1; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; color: #353535; font-size: 12px; line-height: 1.55; }
.privacy-field input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: #6f297f; }
.privacy-field a { color: var(--black); font-weight: 900; text-decoration-color: #6f297f; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.privacy-field input:focus-visible { outline: 3px solid rgba(111,41,127,.28); outline-offset: 3px; }
.form-submit { grid-column: 1 / -1; justify-self: start; cursor: pointer; }
.form-note { grid-column: 1 / -1; margin: 0 !important; color: #4c4c4c; font-size: 12px !important; line-height: 1.5 !important; }

.lo-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center; padding: 48px var(--pad); border-top: 3px solid var(--black); background: var(--lime); }
.lo-footer .lo-logo { justify-self: start; }
.lo-footer .lo-logo img { width: 220px; }
.lo-footer p { margin: 0; font-size: 12px; font-weight: 900; line-height: 1.35; text-transform: lowercase; }
.lo-footer p span { display: block; white-space: nowrap; }
.lo-footer nav { display: flex; gap: 22px; }
.lo-footer nav a { font-size: 11px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.lo-footer small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--black); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .lo-nav { display: none; }
  .lo-menu {
    display: flex;
    width: 50px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid var(--black);
    background: var(--lime);
    box-shadow: 4px 5px 0 var(--black);
    clip-path: polygon(7% 0,100% 4%,94% 88%,80% 100%,0 94%,4% 13%);
  }
  .lo-menu span:not(.sr-only) { width: 24px; height: 2px; background: var(--black); transition: transform .2s ease, opacity .2s ease; }
  .lo-menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .lo-menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .lo-menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 100px 10vw;
    background: var(--purple);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .3s ease, opacity .3s ease;
  }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateX(0); }
  .mobile-nav a { font-size: clamp(24px, 7vw, 50px); font-weight: 950; letter-spacing: -.04em; text-decoration: none; }
  .lo-menu { position: relative; z-index: 102; }
  .hero-copy { width: 67vw; }
  .hero-art { right: -12vw; width: 70vw; opacity: .84; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .lo-kicker { grid-column: auto; }
  .marketing-contact { grid-template-columns: 1fr; }
  .lo-footer { grid-template-columns: 1fr auto; }
  .lo-footer p { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 720px) {
  .lo-header { height: 68px; padding: 0 18px; }
  .lo-logo.logo-morph .logo-morph__frame { width: 180px; }
  .lo-logo img { width: 180px; }
  .lo-hero { min-height: 760px; height: 100svh; max-height: 860px; padding: 98px 20px 60px; }
  .hero-copy { z-index: 5; width: 100%; height: auto; justify-content: flex-start; }
  .hero-copy h1 { max-width: none; font-size: clamp(20px, 6.4vw, 38px); line-height: .94; }
  .hero-copy > p:not(.lo-kicker) { max-width: 84%; margin-top: 20px; font-size: 14px; }
  .hero-actions { gap: 14px; margin-top: 22px; }
  .lo-button { min-height: 45px; padding: 0 16px; gap: 14px; font-size: 11px; }
  .hero-art { right: -25vw; bottom: -14vw; width: 113vw; opacity: .44; }
  .sticker { min-width: 68px; min-height: 38px; padding: 7px; font-size: 9px; }
  .sticker--ppc { top: 31%; left: 5%; }
  .sticker--meta { top: 47%; right: 12%; }
  .sticker--growth { right: 21%; bottom: 13%; }
  .hero-dots { mask-image: linear-gradient(180deg,transparent 0 25%,#000 58%,#000); }
  .lo-section { padding: 82px 20px; }
  .section-heading h2, .promo-copy h2, .process-heading h2, .marketing-contact h2 { font-size: clamp(52px, 15vw, 78px); }
  .service-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 48px; }
  .service-card { min-height: 300px; }
  .service-card:nth-child(2n) { transform: none; }
  .service-glyph { margin-top: 28px; }
  .promo { grid-template-columns: 1fr; min-height: 0; }
  .promo-art { min-height: 350px; }
  .promo-goose { width: min(82%, 330px); max-height: 330px; }
  .process {
    background-image:
      linear-gradient(180deg, rgba(3,3,8,.68) 0%, rgba(3,3,8,.82) 48%, rgba(3,3,8,.96) 100%),
      url('/assets/marketing-space-process-900.webp');
    background-position: center, 68% top;
    background-size: cover, auto 55%;
  }
  .process-list { position: relative; z-index: 1; margin-top: 48px; }
  .process-step { grid-template-columns: 58px 1fr; gap: 15px; padding: 25px 32px 25px 0; }
  .process-step p { grid-column: 2; font-size: 14px; }
  .process-step::before { font-size: 30px; }
  .marketing-contact { min-height: 680px; padding: 100px 20px 80px; }
  .contact-copy { margin-top: 80px; }
  .lo-logo--large img { width: min(88vw, 420px); }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; padding: 30px 22px; }
  .form-field--wide, .form-submit, .form-note { grid-column: auto; }
  .lo-footer { grid-template-columns: 1fr; padding: 40px 20px; }
  .lo-footer nav { flex-direction: column; }
}

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