:root {
  --ink: #11110f;
  --paper: #f8f6ef;
  --white: #ffffff;
  --coral: #f17491;
  --yellow: #e4ed36;
  --mint: #71c9c5;
  --orange: #ffaf47;
  --line: rgba(17, 17, 15, 0.18);
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --page: min(92vw, 1440px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(248, 246, 239, 0);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 246, 239, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--page);
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
}

.brand,
.footer-brand {
  display: block;
  overflow: hidden;
}

.brand {
  width: 238px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  overflow: visible;
}

.brand > img {
  width: 108px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-copy {
  min-width: 0;
  padding-left: 13px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 7px;
  color: #65635e;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 10px 0;
  transition: font-weight 180ms ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px -11px;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 180ms ease, transform 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.is-active {
  font-weight: 800;
}

.main-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 20px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: min(900px, 100svh);
  margin: 0 auto;
  padding: 138px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 104px);
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand-name {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-brand-name b {
  font-size: 1.08rem;
  letter-spacing: -0.045em;
}

.hero-brand-name b i {
  color: var(--coral);
  font-style: normal;
}

.hero-brand-name small {
  margin-left: 7px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(4.7rem, 7.3vw, 8.6rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.hero h1 em,
.about-heading h2 em,
.services-intro h2 em,
.clients-intro h2 em,
.statement-copy h2 em,
.contact-copy h2 em {
  color: var(--coral);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 26px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--coral);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--yellow {
  width: 100%;
  background: var(--yellow);
  color: var(--ink);
}

.button--yellow:hover {
  box-shadow: 5px 5px 0 var(--coral);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--line {
  padding-bottom: 6px;
  border-bottom: 1.5px solid currentColor;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  align-self: stretch;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border-radius: 160px 160px 24px 24px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 54%;
  aspect-ratio: 1;
  top: -30px;
  right: -46px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 116px;
  height: 116px;
  left: -38px;
  top: 90px;
  border: 22px solid var(--coral);
  border-radius: 50%;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 156px;
  min-height: 156px;
  padding: 20px;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-5deg);
}

.hero-sticker strong {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.hero-sticker span {
  margin-top: 8px;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-sticker--yellow {
  right: -30px;
  bottom: 76px;
  background: var(--yellow);
}

.hero-sticker--coral {
  left: -58px;
  bottom: 34px;
  background: var(--coral);
  transform: rotate(4deg);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 76px;
  right: -22px;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 74px;
  height: 1px;
  background: var(--ink);
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  border-block: 2px solid var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.ticker i {
  color: var(--coral);
  font-size: 1.5rem;
  font-style: normal;
}

.ticker .ticker-brand {
  color: var(--coral);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 54px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-label p {
  margin: 0;
}

.section-label--light {
  color: var(--white);
}

.about-heading {
  max-width: 1280px;
}

.about-heading h2,
.services-intro h2,
.clients-intro h2,
.statement-copy h2,
.contact-copy h2 {
  margin-bottom: 58px;
  font-size: clamp(3rem, 5.5vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(56px, 10vw, 160px);
  align-items: start;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.about-copy {
  max-width: 760px;
}

.about-copy p {
  margin-bottom: 22px;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.about-copy .text-link {
  margin-top: 18px;
}

.about-quote {
  position: relative;
  margin: 0;
  padding: 52px 42px 42px;
  background: var(--coral);
  transform: rotate(2deg);
}

.about-quote > span {
  position: absolute;
  top: -42px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.about-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.impact-path {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--ink);
}

.process-card {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  background: var(--yellow);
  transform: translateY(-8px);
}

.process-card span {
  display: block;
  margin-bottom: 70px;
  font-size: 0.8rem;
  font-weight: 700;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(17, 17, 15, 0.72);
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: max(4vw, calc((100vw - 1440px) / 2));
  background: var(--ink);
  color: var(--white);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-intro h2 {
  max-width: 1050px;
  margin-bottom: 0;
}

.services-intro p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.16rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--ink);
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 58px);
}

.service-number {
  display: block;
  margin-bottom: clamp(80px, 9vw, 140px);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-kicker {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.service-content > p:not(.service-kicker) {
  max-width: 580px;
  font-size: 1.08rem;
}

.service-card details {
  margin-top: 34px;
  border-top: 1px solid rgba(17, 17, 15, 0.45);
}

.service-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary span {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.service-card details[open] summary span {
  transform: rotate(45deg);
}

.service-card ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.service-card li {
  margin-bottom: 6px;
}

.service-card--coral {
  background: var(--coral);
}

.service-card--yellow {
  background: var(--yellow);
}

.service-card--mint {
  background: var(--mint);
}

.service-card--orange {
  background: var(--orange);
}

.service-card--image {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-column: 1 / -1;
  background: var(--white);
}

.service-card--event {
  grid-template-columns: 1.15fr 0.85fr;
}

.service-photo {
  min-height: 620px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card--event .service-photo img {
  object-position: center;
}

.service-card--content .service-photo img {
  object-position: center;
}

.service-card--image .service-number {
  margin-bottom: clamp(70px, 7vw, 120px);
}

.service-mini-photo {
  position: absolute;
  right: -25px;
  top: 28px;
  width: 44%;
  aspect-ratio: 0.83;
  border: 8px solid var(--paper);
  transform: rotate(7deg);
  overflow: hidden;
}

.service-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card--coral .service-content {
  width: 70%;
}

.service-mini-photo--event {
  width: 46%;
  top: 42px;
  border-color: var(--paper);
  transform: rotate(-5deg);
}

.orbit {
  position: absolute;
  top: 58px;
  right: -40px;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 42%;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(52deg);
}

.orbit::after {
  transform: rotate(-52deg);
}

.orbit span {
  z-index: 1;
  font-family: var(--display);
  font-size: 4.8rem;
  font-weight: 800;
}

.service-graphic {
  position: absolute;
  right: 34px;
  top: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-graphic i {
  font-size: 1.5rem;
  font-style: normal;
}

.asterisk {
  position: absolute;
  top: 20px;
  right: 34px;
  font-family: var(--display);
  font-size: 12rem;
  line-height: 1;
  transform: rotate(8deg);
}

.bot-mark {
  position: absolute;
  top: 52px;
  right: 46px;
  width: 178px;
  height: 134px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 36px;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  transform: rotate(4deg);
}

.bot-mark::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 26px;
  width: 34px;
  height: 34px;
  border-left: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--orange);
  transform: rotate(-45deg);
}

.bot-mark i {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--coral);
  font-size: 0.72rem;
  font-style: normal;
}

.solution-heading,
.automation-heading,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
}

.solution-heading {
  margin-bottom: 72px;
}

.solution-heading h2,
.creator-intro h2,
.automation-heading h2,
.method-heading h2,
.faq-heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.solution-heading h2 em,
.faq-heading h2 em {
  color: var(--coral);
  font-style: normal;
}

.solution-heading > p,
.automation-heading > p {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.path-card {
  min-height: 520px;
  padding: clamp(28px, 3.5vw, 50px);
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.path-card:hover {
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.path-card > span {
  margin-bottom: auto;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}

.path-kicker {
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-card h3 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.path-card ul {
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.path-card li {
  padding: 6px 0;
}

.path-card li::before {
  content: "→";
  margin-right: 10px;
  font-weight: 800;
}

.path-card--coral {
  background: var(--coral);
}

.path-card--yellow {
  background: var(--yellow);
}

.path-card--mint {
  background: var(--mint);
}

.creator-lab {
  width: 100%;
  padding: clamp(100px, 12vw, 180px) max(4vw, calc((100vw - 1440px) / 2));
  background: var(--ink);
  color: var(--white);
}

.creator-lab__inner {
  width: 100%;
}

.creator-intro {
  max-width: 1100px;
  margin-bottom: 72px;
}

.creator-intro .eyebrow {
  color: var(--yellow);
}

.creator-intro h2 {
  max-width: 1020px;
  margin-bottom: 30px;
}

.creator-intro > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.creator-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.creator-type {
  min-height: 340px;
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  color: var(--ink);
}

.creator-type:nth-child(2) {
  background: var(--yellow);
}

.creator-type:nth-child(3) {
  background: var(--coral);
}

.creator-type > span {
  display: inline-grid;
  min-width: 74px;
  min-height: 38px;
  padding: 0 14px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-type h3 {
  max-width: 320px;
  margin: 90px 0 18px;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.creator-type p {
  margin-bottom: 0;
}

.campaign-modes {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.campaign-modes > div {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.campaign-modes > div:last-child {
  border-right: 0;
}

.campaign-modes strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.15rem;
}

.campaign-modes p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.automation-heading {
  margin-bottom: 72px;
}

.automation-heading h2 {
  max-width: 1050px;
}

.automation-heading .eyebrow {
  color: var(--coral);
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}

.automation-card {
  min-height: 500px;
  padding: clamp(30px, 3.2vw, 48px);
  border-right: 1px solid var(--ink);
  background: var(--white);
}

.automation-card:last-child {
  border-right: 0;
}

.automation-card--featured {
  background: var(--yellow);
}

.automation-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 90px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.automation-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.8vw, 3.3rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.automation-card p {
  min-height: 58px;
}

.automation-card ul {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.automation-card li {
  padding: 5px 0;
}

.automation-card li::before {
  content: "✓";
  margin-right: 10px;
  font-weight: 800;
}

.automation-note {
  max-width: 820px;
  margin: 30px 0 0 auto;
  color: #5c5a55;
  text-align: right;
}

.method {
  width: 100%;
  padding: clamp(100px, 12vw, 180px) max(4vw, calc((100vw - 1440px) / 2));
  background: var(--coral);
}

.method-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 10vw, 150px);
}

.method-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-heading h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.6rem);
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--ink);
}

.method-list li > span {
  padding-top: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}

.method-list h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  letter-spacing: -0.05em;
}

.method-list p {
  max-width: 560px;
  margin-bottom: 0;
}

.statement {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  background: var(--mint);
}

.statement-image {
  min-height: 760px;
  overflow: hidden;
}

.statement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.statement-copy {
  align-self: center;
  padding: clamp(50px, 8vw, 130px);
}

.statement-copy .eyebrow {
  margin-bottom: 36px;
}

.statement-copy h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.statement-copy h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.11em;
}

.clients-intro {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.clients-intro h2 {
  max-width: 1050px;
  margin-bottom: 0;
}

.clients-intro p {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-logo {
  min-height: 190px;
  padding: 30px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: background 200ms ease, transform 200ms ease;
}

.client-logo img {
  width: 100%;
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.client-logo:hover {
  z-index: 2;
  background: var(--yellow);
  transform: scale(1.035);
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

.client-logo--dark {
  background: #17191f;
}

.client-logo--dark img {
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
}

.client-logo--mint {
  background: #08a88c;
}

.client-logo--mint img {
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
}

.faq {
  padding-top: 40px;
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 28px;
}

.faq-heading > p {
  max-width: 560px;
  font-size: 1.08rem;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 1.45rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 28px;
  color: #5c5a55;
  font-size: 1.02rem;
}

.contact {
  width: 100%;
  max-width: none;
  padding: 0;
}

.contact-card {
  width: var(--page);
  margin: 0 auto clamp(36px, 4vw, 70px);
  padding: clamp(44px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 9vw, 140px);
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
}

.contact-copy h2 {
  max-width: 820px;
  margin-bottom: 28px;
}

.contact-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
}

.contact-direct {
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-direct a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-direct small {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct span {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  overflow-wrap: anywhere;
}

.contact-direct a:hover span {
  color: var(--yellow);
}

.contact-form {
  align-self: center;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  background: transparent;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8c8a84;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--coral);
}

.form-note {
  margin: 14px 0 0;
  color: #77746e;
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 36px 0 28px;
}

.footer-top {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  border-block: 1px solid var(--ink);
}

.footer-brand {
  width: 200px;
  height: 112px;
}

.footer-top p {
  max-width: 360px;
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.footer-bottom {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #5c5a55;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--ink);
}

.photo-credit {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 22px;
  min-height: 52px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translate(-3px, -3px);
}

.whatsapp-float i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 7.4vw, 7rem);
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 580px;
  }

  .hero-sticker--coral {
    left: -24px;
  }

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    height: 74px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 205px;
    height: 64px;
  }

  .brand > img {
    width: 88px;
    height: 58px;
  }

  .brand-copy {
    padding-left: 10px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 0.5rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle__icon {
    position: relative;
    width: 26px;
    height: 18px;
  }

  .menu-toggle__icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
  }

  .menu-toggle__icon i:first-child {
    top: 4px;
  }

  .menu-toggle__icon i:last-child {
    top: 12px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 110px 6vw 50px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    background: var(--yellow);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 300ms;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    font-family: var(--display);
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    text-transform: none;
  }

  .main-nav a.is-active::before {
    background: var(--coral);
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(4.3rem, 13vw, 7.8rem);
  }

  .hero-visual {
    min-height: 620px;
    margin: 0 5vw;
  }

  .hero-visual > img {
    min-height: 620px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-sticker--yellow {
    right: -30px;
  }

  .hero-sticker--coral {
    left: -40px;
  }

  .about-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

  .impact-path {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-path .process-card:nth-child(even) {
    border-right: 0;
  }

  .impact-path .process-card {
    border-bottom: 1px solid var(--ink);
  }

  .impact-path .process-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .services-intro,
  .clients-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-intro h2,
  .clients-intro h2 {
    margin-bottom: 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card--image {
    grid-template-columns: 1fr;
  }

  .service-card--image .service-photo {
    min-height: 440px;
  }

  .service-card {
    min-height: 600px;
  }

  .service-card--image {
    grid-column: auto;
  }

  .service-card--image .service-content {
    min-height: 560px;
  }

  .solution-heading,
  .automation-heading,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .path-grid,
  .automation-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 430px;
  }

  .automation-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .automation-card:last-child {
    border-bottom: 0;
  }

  .automation-card > span {
    margin-bottom: 70px;
  }

  .method-inner {
    grid-template-columns: 1fr;
  }

  .method-heading,
  .faq-heading {
    position: static;
  }

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

  .statement-image {
    min-height: 480px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 680px;
  }

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

  .photo-credit {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(90vw, 1440px);
  }

  .hero {
    gap: 34px;
    padding-bottom: 46px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.65rem, 18.3vw, 5.6rem);
  }

  .hero-lead {
    margin-bottom: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
    margin: 0;
  }

  .hero-visual > img {
    min-height: 480px;
    border-radius: 90px 90px 18px 18px;
  }

  .hero-visual::before {
    top: -16px;
    right: -22px;
  }

  .hero-visual::after {
    width: 74px;
    height: 74px;
    left: -20px;
    top: 54px;
    border-width: 14px;
  }

  .hero-sticker {
    width: 122px;
    min-height: 122px;
    padding: 14px;
  }

  .hero-sticker strong {
    font-size: 1.9rem;
  }

  .hero-sticker span {
    font-size: 0.65rem;
  }

  .hero-sticker--yellow {
    right: -12px;
    bottom: 32px;
  }

  .hero-sticker--coral {
    left: -12px;
    bottom: -22px;
  }

  .hero-badge {
    display: none;
  }

  .ticker {
    margin-top: 24px;
  }

  .section {
    padding-block: 92px;
  }

  .section-label {
    margin-bottom: 38px;
  }

  .about-heading h2,
  .services-intro h2,
  .clients-intro h2,
  .statement-copy h2,
  .contact-copy h2,
  .solution-heading h2,
  .creator-intro h2,
  .automation-heading h2,
  .method-heading h2,
  .faq-heading h2 {
    margin-bottom: 38px;
    font-size: clamp(2.65rem, 13.2vw, 4.2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 38px;
  }

  .about-quote {
    padding: 48px 30px 34px;
  }

  .impact-path {
    margin-top: 80px;
    grid-template-columns: 1fr;
  }

  .impact-path .process-card,
  .impact-path .process-card:nth-child(even),
  .impact-path .process-card:last-child {
    grid-column: auto;
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .impact-path .process-card:last-child {
    border-bottom: 0;
  }

  .process-card span {
    margin-bottom: 42px;
  }

  .services {
    padding-inline: 5vw;
  }

  .service-card,
  .service-card--image .service-content {
    min-height: 570px;
  }

  .service-card--image .service-photo {
    min-height: 320px;
  }

  .service-content {
    padding: 30px 26px;
  }

  .service-number,
  .service-card--image .service-number {
    margin-bottom: 80px;
  }

  .service-card h3 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .service-card--coral .service-content {
    width: 100%;
  }

  .service-mini-photo {
    width: 38%;
    top: 42px;
    right: -12px;
  }

  .service-mini-photo--event {
    width: 42%;
  }

  .orbit {
    width: 170px;
    height: 170px;
    top: 48px;
  }

  .orbit span {
    font-size: 3.3rem;
  }

  .asterisk {
    font-size: 8rem;
  }

  .bot-mark {
    top: 42px;
    right: 20px;
    width: 132px;
    height: 100px;
    border-radius: 26px;
    font-size: 1.8rem;
  }

  .path-grid,
  .creator-types,
  .campaign-modes {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 390px;
  }

  .creator-lab,
  .method {
    padding-inline: 5vw;
  }

  .creator-type {
    min-height: 300px;
  }

  .creator-type h3 {
    margin-top: 70px;
  }

  .campaign-modes > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .campaign-modes > div:last-child {
    border-bottom: 0;
  }

  .automation-card {
    padding: 32px 26px;
  }

  .automation-card > span {
    margin-bottom: 58px;
  }

  .automation-note {
    text-align: left;
  }

  .method-list li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .statement-image {
    min-height: 360px;
  }

  .statement-copy {
    padding: 76px 5vw 86px;
  }

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

  .client-logo {
    min-height: 150px;
    padding: 22px;
  }

  .contact-card {
    width: 100%;
    margin-bottom: 32px;
    padding: 76px 5vw;
    border-radius: 0;
  }

  .contact-direct {
    margin-top: 46px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .footer-top {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand {
    width: 170px;
    height: 100px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    min-height: 48px;
    padding: 3px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 14px;
  }

  .brand {
    width: 178px;
  }

  .brand > img {
    width: 78px;
  }

  .brand-copy {
    padding-left: 8px;
  }

  .brand-copy strong {
    font-size: 0.76rem;
  }

  .brand-copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
