:root {
  --cream: #f7f3ea;
  --paper: #fffdf7;
  --ink: #0d0d0d;
  --muted: #5f5b55;
  --pink: #f2387b;
  --blue: #246bfe;
  --yellow: #ffd43b;
  --lime: #dff35f;
  --pink-soft: #ffe3ee;
  --blue-soft: #e7f1ff;
  --yellow-soft: #fff5ce;
  --lilac-soft: #f2edff;
  --border: rgba(13, 13, 13, 0.34);
  --border-soft: rgba(13, 13, 13, 0.16);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "Space Mono", monospace;
  --wrap: 1120px;
  --pad: clamp(18px, 3.2vw, 42px);
  --radius: 12px;
  --radius-lg: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 56, 123, 0.055), transparent 420px),
    radial-gradient(circle at 84% 18%, rgba(255, 212, 59, 0.07), transparent 360px),
    var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

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

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

h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.04em;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 6.15rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
}

.wrap {
  width: calc(100% - var(--pad) * 2);
  max-width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 7vw, 104px) 0;
}

.strip-section {
  padding: clamp(34px, 4.5vw, 68px) 0;
}

.eyebrow,
.tile-kicker,
.black-label {
  margin-bottom: 18px;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.star {
  display: inline-block;
  color: var(--pink);
  font-family: var(--display);
  line-height: 1;
}

.mini-star {
  margin-right: 10px;
  font-size: 0.95rem;
  vertical-align: -0.08em;
}

.brand-star {
  margin-left: 10px;
  font-size: 1.35rem;
}

.marker {
  display: inline;
  padding: 0.02em 0.12em 0.06em;
  background: var(--yellow);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 8px 6px 9px 5px;
  box-shadow: inset 0 -0.08em 0 rgba(255, 162, 0, 0.24);
}

.small-marker {
  padding: 0 0.12em 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-pink {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
}

.btn-outline,
.btn-paper {
  background: var(--paper);
}

.btn-paper {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.7);
}

.text-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  background: linear-gradient(var(--pink), var(--pink)) 0 100% / 100% 2px no-repeat;
}

.navbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 var(--pad);
}

.nav-inner {
  width: min(100%, var(--wrap));
  min-height: 62px;
  margin-inline: auto;
  padding: 8px 12px 8px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 253, 247, 0.78);
  border: 1.5px solid rgba(13, 13, 13, 0.52);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.06em;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a,
.mobile-menu a {
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  min-width: 190px;
}

.hamburger,
.mobile-menu {
  display: none;
}

.hero {
  padding-top: clamp(70px, 7vw, 106px);
  padding-bottom: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
}

.lead {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 1rem;
  line-height: 1.55;
}

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

.collage {
  position: relative;
  min-height: 330px;
  isolation: isolate;
}

.blob {
  position: absolute;
  display: block;
  z-index: 1;
  border-radius: 55% 45% 50% 44%;
}

.blob-blue {
  right: 34px;
  bottom: 58px;
  width: 260px;
  height: 118px;
  background: var(--blue);
  transform: rotate(-4deg);
}

.burst {
  position: absolute;
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 1;
}

.burst-large {
  right: 32px;
  top: 56px;
  z-index: 2;
}

.doodle {
  position: absolute;
  z-index: 6;
  font-family: var(--mono);
  font-weight: 700;
}

.doodle-blue {
  top: 36px;
  right: 82px;
  color: var(--blue);
  font-size: 2.2rem;
  transform: rotate(22deg);
}

.arrow-doodle {
  left: 24px;
  bottom: 120px;
  color: var(--ink);
  font-size: 3.8rem;
  transform: rotate(-18deg);
}

.paper-note,
.sticky-note,
.stamp {
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.02)),
    #ead7af;
  border-radius: 3px;
  box-shadow: 0 13px 24px rgba(13, 13, 13, 0.14);
  font-family: var(--mono);
  font-weight: 700;
  line-height: 1.25;
}

.hero-note {
  position: absolute;
  left: 28%;
  bottom: 104px;
  z-index: 7;
  width: 165px;
  padding: 18px 16px;
  font-size: 0.92rem;
  transform: rotate(-4deg);
}

.hero-note span {
  background: linear-gradient(var(--pink), var(--pink)) 0 100% / 100% 3px no-repeat;
}

.what .wrap {
  padding: 8px 0 12px;
}

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

.mini-card {
  position: relative;
  min-height: 160px;
  padding: 24px 22px 22px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.72);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
}

.mini-card h2 {
  margin: 16px 0 9px;
  font-family: var(--body);
  font-size: 1.22rem;
  letter-spacing: -0.05em;
}

.mini-card p {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.arrow {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 1.32rem;
  font-weight: 900;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--pink);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.icon-pink { color: var(--pink); }
.icon-blue { color: var(--blue); }
.icon-yellow { color: var(--yellow); }
.icon-ink { color: var(--ink); }

.promise {
  padding-top: 20px;
}

.promise-board {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 3.5vw, 42px);
  min-height: 430px;
  padding: clamp(38px, 5vw, 58px);
  color: #fff;
  background: #080808;
  border: 1.5px solid #080808;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.promise-board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.promise-main,
.promise-cards {
  position: relative;
  z-index: 1;
}

.promise-main h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(3.1rem, 5.5vw, 5.8rem);
  line-height: 0.96;
}

.promise-main p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 18px;
}

.dark-card {
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.dark-card h3 {
  color: #fff;
  font-family: var(--mono);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.82);
}

.promise-collage {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 230px;
  height: 140px;
}

.promise-collage .blob-blue {
  left: 34px;
  bottom: 18px;
  width: 170px;
  height: 72px;
}

.paper-note.small {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 150px;
  padding: 14px 13px;
  font-size: 0.82rem;
  transform: rotate(-7deg);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2,
.pricing-head h2,
.work-hero h2,
.about h2,
.faq h2 {
  max-width: 980px;
}

.section-head p:not(.eyebrow),
.pricing-head p,
.work-hero p,
.about-grid p,
.faq-grid p {
  max-width: 610px;
  font-size: 1rem;
  line-height: 1.55;
}

.head-art {
  position: relative;
  min-height: 145px;
}

.head-art .burst {
  right: 0;
  top: 8px;
  font-size: 3.7rem;
}

.sticky-note {
  position: absolute;
  right: 54px;
  bottom: 12px;
  padding: 14px 13px;
  font-size: 0.82rem;
  transform: rotate(4deg);
}

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

.service-tile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 215px;
  padding: 30px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-tile h3 {
  max-width: 315px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.service-tile p:not(.tile-kicker) {
  max-width: 300px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.94rem;
  line-height: 1.48;
}

.tile-kicker {
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.tile-kicker.blue { color: var(--blue); }
.tile-kicker.yellow { color: #e7a900; }
.tile-kicker.purple { color: #7c5cff; }

.service-tile .burst {
  right: 30px;
  top: 42px;
  z-index: 0;
  font-size: 3.6rem;
}

.service-tile > * {
  position: relative;
  z-index: 1;
}

.tint-pink { background: linear-gradient(135deg, var(--pink-soft), var(--paper)); }
.tint-blue { background: linear-gradient(135deg, var(--blue-soft), var(--paper)); }
.tint-yellow { background: linear-gradient(135deg, var(--yellow-soft), var(--paper)); }
.tint-lilac { background: linear-gradient(135deg, var(--lilac-soft), var(--paper)); }

.paper-note.tiny {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 118px;
  padding: 13px 11px;
  font-size: 0.76rem;
  transform: rotate(-2deg);
}

.dot-blob {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-image: radial-gradient(var(--blue) 2px, transparent 2.5px);
  background-size: 12px 12px;
}

.process-board {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  padding: clamp(34px, 5vw, 56px);
  background: rgba(255, 253, 247, 0.48);
  border-radius: var(--radius-lg);
}

.process-intro h2 {
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.process-intro p:not(.eyebrow) {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.55;
}

.process-machine {
  position: relative;
  margin-top: 28px;
  min-height: 130px;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.step-card {
  position: relative;
  min-height: 245px;
  padding: 30px 26px;
  background: rgba(255, 253, 247, 0.72);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.step-card::after {
  content: "→";
  position: absolute;
  right: -24px;
  top: 82px;
  font-size: 2rem;
  font-weight: 900;
}

.step-card:last-child::after {
  display: none;
}

.step-card span {
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 900;
}

.step-card h3 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.mini-cta {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 18px 24px;
  border: 1.5px dashed var(--pink);
  border-radius: var(--radius);
}

.mini-cta strong {
  margin-right: auto;
  font-size: 1.2rem;
}

.pricing-head {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

.large-note {
  position: relative;
  width: 225px;
  min-height: 180px;
  margin-left: auto;
  padding: 28px 24px;
  font-size: 1.35rem;
  transform: rotate(-2deg);
}

.large-note span,
.large-note a {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.large-note a {
  color: var(--pink);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  min-height: 410px;
  padding: 30px 28px;
  background: rgba(255, 253, 247, 0.68);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.price-card.featured {
  border-color: var(--pink);
  border-width: 2px;
}

.popular {
  position: absolute;
  top: -18px;
  left: 50%;
  translate: -50% 0;
  padding: 8px 20px;
  color: #fff;
  background: var(--pink);
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.price-card > span {
  color: var(--muted);
}

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

.price-card li {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.price-card li::before {
  content: "✓";
  margin-right: 14px;
  color: var(--pink);
  font-weight: 900;
}

.price-card .btn {
  width: 100%;
}

.work-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 0.75fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 36px;
}

.work-collage {
  position: relative;
  min-height: 190px;
}

.work-collage .burst {
  right: 12px;
  top: 8px;
  z-index: 1;
}

.work-collage .paper-note {
  position: absolute;
  right: 42px;
  bottom: 24px;
  z-index: 2;
  width: 190px;
  padding: 22px 20px;
  font-size: 0.98rem;
}

.trusted {
  display: grid;
  grid-template-columns: 160px repeat(5, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 38px;
}

.trusted p {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trusted span,
.trusted a {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 0 16px;
  background: rgba(255, 253, 247, 0.68);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.trusted a {
  font-size: 0.86rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.case-card {
  position: relative;
  min-height: 265px;
  padding: 24px;
  background: rgba(255, 253, 247, 0.7);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius);
}

.case-card .tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 11px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blue-tag { background: var(--blue-soft); }
.yellow-tag { background: var(--yellow-soft); }
.pink-tag { background: var(--pink-soft); }
.lilac-tag { background: var(--lilac-soft); }

.case-card h3 {
  font-size: 1.45rem;
}

.case-card a {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: var(--pink);
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
}

.centered {
  display: flex;
  width: fit-content;
  margin: 32px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.65fr);
  gap: 42px;
  align-items: center;
}

.about-grid p {
  font-family: var(--mono);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
}

.portrait-collage {
  position: relative;
  min-height: 210px;
  margin: 0;
}

.portrait-collage .burst {
  left: 68px;
  top: 46px;
  z-index: 1;
}

.tape {
  position: absolute;
  right: 62px;
  bottom: 56px;
  z-index: 3;
  width: 160px;
  height: 26px;
  background: rgba(213, 184, 133, 0.65);
  transform: rotate(-4deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.stats-grid article,
.quote-card {
  min-height: 145px;
  padding: 26px;
  background: rgba(255, 253, 247, 0.68);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

.stats-grid span {
  color: var(--pink);
  font-size: 1.85rem;
}

.stats-grid strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 2.15rem;
  line-height: 1;
}

.stats-grid p {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.45;
}

.kind-words {
  margin-top: 54px;
}

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

.quote-card > span {
  color: var(--pink);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.8;
}

.quote-card p {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 44px;
  align-items: start;
}

.faq-doodle {
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 3rem;
}

.faq-doodle span {
  display: inline-block;
  margin-left: 24px;
  font-size: 0.95rem;
  transform: rotate(-6deg);
  background: linear-gradient(var(--pink), var(--pink)) 0 100% / 100% 3px no-repeat;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 253, 247, 0.72);
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--pink);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.faq-question strong {
  font-size: 1.25rem;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 132px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question strong {
  transform: rotate(45deg);
}

.final-cta {
  padding: 12px 0 42px;
}

.cta-banner {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 42px;
  color: #fff;
  background: var(--pink);
  border-radius: 12px;
  overflow: hidden;
}

.black-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  font-size: 0.72rem;
}

.cta-banner h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.15rem, 3.6vw, 3.8rem);
}

.cta-banner p {
  margin-bottom: 0;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer {
  padding: 34px 0 24px;
  border-top: 1.5px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.8fr);
  gap: 34px;
  padding-bottom: 34px;
}

.footer h3 {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.footer a {
  margin-bottom: 9px;
  font-size: 0.92rem;
}

.footer-brand p {
  max-width: 330px;
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.55;
}

.signature {
  width: fit-content;
  margin-top: 24px;
  background: linear-gradient(var(--pink), var(--pink)) 0 100% / 100% 3px no-repeat;
}

.footer-cta {
  color: var(--pink) !important;
  font-weight: 900;
}

.socials {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-weight: 900;
}

.stamp {
  width: 165px;
  padding: 13px 16px;
  font-size: 0.86rem;
  transform: rotate(-3deg);
}

.stamp span {
  color: var(--pink);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 20px;
  border-top: 1.5px solid var(--border);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(3rem, 7vw, 5.2rem);
  }

  .hero-grid,
  .promise-board,
  .section-head,
  .process-board,
  .work-hero,
  .about-grid,
  .faq-grid,
  .pricing-head {
    grid-template-columns: 1fr;
  }

  .collage {
    min-height: 310px;
  }

  .promise-cards,
  .step-row,
  .case-grid,
  .stats-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-collage {
    position: relative;
    margin-top: 28px;
  }

  .mini-cta {
    grid-column: 1;
  }

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

  .trusted p {
    grid-column: 1 / -1;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  :root {
    --pad: 22px;
  }

  .nav-inner {
    min-height: 64px;
    padding-left: 22px;
  }

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

  .hamburger {
    display: grid;
    gap: 4px;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-left: auto;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: transparent;
  }

  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-menu {
    width: min(100%, var(--wrap));
    margin: 10px auto 0;
    padding: 18px;
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: 22px;
  }

  .mobile-menu.open {
    display: grid;
    gap: 14px;
  }

  .what-grid,
  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-question {
    grid-template-columns: 1fr auto;
  }

  .faq-question span {
    grid-column: 1 / -1;
  }

  .faq-answer {
    padding-left: 28px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  h2,
  .promise-main h2,
  .process-intro h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .brand {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 18px;
  }

  .collage {
    min-height: 260px;
  }

  .blob-blue {
    width: 250px;
  }

  .hero-note {
    left: 5%;
    bottom: 34px;
  }

  .promise-board,
  .process-board,
  .cta-banner {
    padding: 32px 22px;
    border-radius: 18px;
  }

  .promise-cards,
  .step-row,
  .case-grid,
  .stats-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dark-card,
  .step-card,
  .price-card,
  .case-card {
    min-height: auto;
  }

  .step-card::after {
    display: none;
  }

  .mini-cta,
  .actions,
  .legal {
    align-items: stretch;
    flex-direction: column;
  }

  .mini-cta {
    display: grid;
  }

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

  .work-collage,
  .portrait-collage,
  .head-art {
    min-height: 170px;
  }

}

/* Desk pass: smaller, more editorial, more section-specific. */
:root {
  --wrap: 980px;
  --pad: clamp(16px, 3vw, 34px);
  --radius: 10px;
  --radius-lg: 18px;
}

body {
  font-size: 15px;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5.1vw, 5rem);
  line-height: 0.93;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3.7vw, 3.95rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 9px;
  font-size: clamp(1.12rem, 1.55vw, 1.55rem);
}

p {
  line-height: 1.55;
}

.section {
  padding-block: clamp(52px, 6vw, 84px);
}

.strip-section {
  padding-block: clamp(28px, 4vw, 52px);
}

.eyebrow,
.tile-kicker,
.black-label {
  margin-bottom: 13px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.btn {
  min-height: 39px;
  padding-inline: 17px;
  border-radius: 8px;
  font-size: 0.84rem;
}

.btn span,
.text-link,
.case-card a {
  transition: transform 180ms ease;
}

.btn:hover span,
.text-link:hover,
.case-card:hover a {
  transform: translateX(4px);
}

.nav-inner {
  min-height: 54px;
  padding: 7px 10px 7px 20px;
}

.brand {
  font-size: clamp(1.12rem, 1.55vw, 1.55rem);
}

.brand-star {
  font-size: 1.15rem;
}

.nav-links {
  gap: clamp(20px, 3.4vw, 46px);
}

.nav-links a,
.mobile-menu a {
  font-size: 0.82rem;
}

.nav-cta {
  min-width: 166px;
}

.hero {
  padding-top: clamp(56px, 6vw, 86px);
  padding-bottom: 12px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.68fr);
  gap: clamp(24px, 3.5vw, 44px);
}

.lead {
  max-width: 500px;
  margin-bottom: 22px;
  font-size: 0.94rem;
}

.collage {
  min-height: 258px;
}

.blob-blue {
  width: 218px;
  height: 96px;
  right: 24px;
  bottom: 44px;
}

.burst {
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
}

.burst-large {
  right: 22px;
  top: 42px;
}

.doodle-blue {
  right: 64px;
  top: 28px;
  font-size: 1.65rem;
}

.arrow-doodle {
  left: 12px;
  bottom: 86px;
  font-size: 3rem;
}

.hero-note {
  left: 25%;
  bottom: 78px;
  width: 142px;
  padding: 15px 13px;
  font-size: 0.8rem;
}

.paper-note,
.sticky-note,
.stamp {
  box-shadow: 0 8px 16px rgba(13, 13, 13, 0.12);
}

.what .wrap {
  padding-block: 4px;
}

.what-grid {
  gap: 10px;
}

.mini-card {
  min-height: 126px;
  padding: 18px 18px 16px;
}

.mini-card h2 {
  margin: 10px 0 6px;
  font-size: 1.02rem;
}

.mini-card p {
  font-size: 0.78rem;
  line-height: 1.38;
}

.card-icon {
  width: 32px;
  height: 32px;
  font-size: 1.28rem;
}

.arrow {
  right: 15px;
  bottom: 12px;
  font-size: 1rem;
}

.promise {
  padding-top: 10px;
}

.promise-board {
  min-height: 350px;
  padding: clamp(30px, 4vw, 46px);
  gap: clamp(18px, 3vw, 34px);
}

.promise-board::after {
  content: "";
  position: absolute;
  right: 11%;
  bottom: 18%;
  width: 210px;
  height: 92px;
  background: var(--blue);
  border-radius: 55% 45% 52% 48%;
  opacity: 0.42;
  transform: rotate(-5deg);
}

.promise-main h2 {
  max-width: 470px;
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

.promise-main p {
  max-width: 410px;
  font-size: 0.9rem;
}

.promise-cards {
  gap: 12px;
}

.dark-card {
  min-height: 178px;
  padding: 20px 18px;
  backdrop-filter: blur(1px);
}

.dark-card h3 {
  font-size: 0.92rem;
}

.dark-card p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.promise-collage {
  width: 170px;
  height: 112px;
}

.promise-collage .blob-blue {
  width: 132px;
  height: 54px;
}

.paper-note.small {
  width: 126px;
  padding: 11px 10px;
  font-size: 0.72rem;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) 210px;
  margin-bottom: 26px;
}

.section-head h2,
.pricing-head h2,
.work-hero h2,
.about h2,
.faq h2 {
  max-width: 760px;
}

.section-head p:not(.eyebrow),
.pricing-head p,
.work-hero p,
.about-grid p,
.faq-grid p {
  max-width: 520px;
  font-size: 0.9rem;
}

.head-art {
  min-height: 108px;
}

.head-art .burst {
  font-size: 2.85rem;
}

.sticky-note {
  right: 40px;
  padding: 11px 10px;
  font-size: 0.72rem;
}

.service-grid {
  gap: 14px;
}

.service-tile {
  min-height: 176px;
  padding: 23px;
  isolation: isolate;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 96px;
  height: 64px;
  opacity: 0.55;
  z-index: 0;
}

.tint-pink::before {
  background: radial-gradient(circle, var(--pink) 0 2px, transparent 2.5px);
  background-size: 12px 12px;
}

.tint-blue::before {
  width: 110px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.1;
}

.tint-yellow::before {
  background:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 14px 14px;
}

.tint-lilac::before {
  border: 2px dashed rgba(124, 92, 255, 0.35);
  border-radius: 999px;
}

.service-tile h3 {
  max-width: 270px;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
}

.service-tile p:not(.tile-kicker) {
  max-width: 270px;
  font-size: 0.84rem;
}

.service-tile .burst {
  right: 22px;
  top: 30px;
  font-size: 2.65rem;
}

.paper-note.tiny {
  width: 100px;
  padding: 10px 9px;
  font-size: 0.66rem;
}

.dot-blob {
  width: 84px;
  height: 84px;
}

.process-board {
  grid-template-columns: 0.68fr 1.32fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
}

.process-intro h2 {
  font-size: clamp(2.45rem, 4.5vw, 4.25rem);
}

.process-intro p:not(.eyebrow) {
  max-width: 310px;
  font-size: 0.9rem;
}

.process-machine {
  min-height: 98px;
  margin-top: 22px;
}

.process-flow {
  position: relative;
  padding-top: 20px;
}

.process-line {
  position: absolute;
  inset: 34px 8px auto;
  z-index: 0;
  height: 80px;
  pointer-events: none;
}

.process-line path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
}

.step-row {
  gap: 18px;
}

.step-card {
  min-height: 196px;
  padding: 23px 20px;
  z-index: 1;
}

.step-card::after {
  display: none;
}

.step-card span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.74rem;
}

.step-card h3 {
  margin-top: 14px;
  font-size: 1.22rem;
}

.step-card p {
  font-size: 0.84rem;
}

.step-card small {
  display: block;
  margin-top: 14px;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-cta {
  padding: 14px 18px;
}

.mini-cta strong {
  font-size: 1rem;
}

.pricing-head {
  grid-template-columns: 1fr 200px;
  margin-bottom: 32px;
}

.large-note {
  width: 190px;
  min-height: 150px;
  padding: 22px 19px;
  font-size: 1.1rem;
}

.price-grid {
  gap: 18px;
}

.price-card {
  min-height: 340px;
  padding: 24px 22px;
}

.price-card strong {
  margin-top: 20px;
  font-size: 1.9rem;
}

.price-card ul {
  margin: 22px 0;
  padding-top: 18px;
}

.price-card li {
  margin-bottom: 9px;
  font-size: 0.82rem;
}

.work-hero {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  margin-bottom: 28px;
}

.work-collage {
  min-height: 150px;
}

.work-collage .paper-note {
  width: 156px;
  padding: 18px 16px;
  font-size: 0.82rem;
}

.trusted {
  grid-template-columns: 130px repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.trusted span,
.trusted a {
  min-height: 46px;
  padding-inline: 12px;
  font-size: 0.88rem;
}

.case-grid {
  gap: 14px;
}

.case-card {
  min-height: 220px;
  padding: 20px;
  overflow: hidden;
}

.case-file::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 14px;
  height: 42px;
  border-radius: 7px;
  opacity: 0.65;
  z-index: 0;
}

.case-file > * {
  position: relative;
  z-index: 1;
}

.case-cgiar::before { background: linear-gradient(90deg, rgba(116, 167, 107, 0.24), transparent); }
.case-cern::before { background: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px); background-size: 12px 12px; }
.case-sony::before { background: linear-gradient(90deg, rgba(242, 56, 123, 0.2), transparent 70%); }
.case-pico::before { background: linear-gradient(90deg, rgba(36, 107, 254, 0.15), rgba(242, 56, 123, 0.12)); }

.case-card .tag {
  margin-top: 44px;
  font-size: 0.62rem;
}

.case-card h3 {
  font-size: 1.18rem;
}

.case-card p {
  font-size: 0.82rem;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.portrait-collage {
  min-height: 150px;
}

.portrait-collage::before {
  content: "";
  position: absolute;
  inset: 48px 34px 34px 20px;
  background: var(--blue);
  border-radius: 52% 48% 45% 55%;
  opacity: 0.18;
  transform: rotate(-5deg);
}

.portrait-collage .burst {
  left: 42px;
  top: 28px;
}

.tape {
  width: 118px;
  height: 20px;
  right: 36px;
  bottom: 44px;
}

.stats-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 32px;
  padding: 14px 0;
  border-block: 1px solid var(--border-soft);
}

.stats-grid article {
  flex: 1;
  min-height: 0;
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid var(--border-soft);
  border-radius: 0;
  background: transparent;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid span {
  font-size: 1.35rem;
}

.stats-grid strong {
  margin: 8px 0 4px;
  font-size: 1.7rem;
}

.kind-words {
  margin-top: 40px;
}

.quote-card {
  min-height: 124px;
  padding: 20px;
}

.quote-card > span {
  font-size: 2.3rem;
}

.quote-card p {
  margin-bottom: 18px;
  font-size: 0.82rem;
}

.faq-grid {
  gap: 34px;
}

.faq-question {
  padding: 14px 18px;
  grid-template-columns: 78px 1fr auto;
  font-size: 0.82rem;
}

.faq-answer {
  padding: 0 18px 16px 112px;
  font-size: 0.86rem;
}

.cta-banner {
  min-height: 130px;
  padding: 24px 32px;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.footer-grid {
  gap: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .navbar,
  .hero-copy > *,
  .collage > *,
  main > section,
  .mini-card,
  .service-tile,
  .dark-card,
  .step-card,
  .case-card,
  .price-card,
  .quote-card {
    opacity: 0;
    transform: translateY(14px);
  }

  .is-visible,
  .is-visible .hero-copy > *,
  .is-visible.collage > *,
  .is-visible .collage > *,
  .is-visible .mini-card,
  .is-visible .service-tile,
  .is-visible .dark-card,
  .is-visible .step-card,
  .is-visible .case-card,
  .is-visible .price-card,
  .is-visible .quote-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 560ms ease, transform 560ms ease;
  }

  .is-visible .hero-copy > *:nth-child(2),
  .is-visible .mini-card:nth-child(2),
  .is-visible .service-tile:nth-child(2),
  .is-visible .dark-card:nth-child(2),
  .is-visible .step-card:nth-child(2),
  .is-visible .case-card:nth-child(2),
  .is-visible .price-card:nth-child(2),
  .is-visible .quote-card:nth-child(2) {
    transition-delay: 90ms;
  }

  .is-visible .hero-copy > *:nth-child(3),
  .is-visible .mini-card:nth-child(3),
  .is-visible .service-tile:nth-child(3),
  .is-visible .dark-card:nth-child(3),
  .is-visible .step-card:nth-child(3),
  .is-visible .case-card:nth-child(3),
  .is-visible .price-card:nth-child(3),
  .is-visible .quote-card:nth-child(3) {
    transition-delay: 170ms;
  }

  .marker {
    background-size: 0 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(var(--yellow), var(--yellow));
    background-color: transparent;
  }

  .is-visible .marker,
  .hero .marker {
    animation: marker-swipe 650ms ease forwards;
    animation-delay: 180ms;
  }

  .is-visible .process-line path {
    animation: draw-line 900ms ease forwards;
  }

  .mini-card:hover,
  .service-tile:hover,
  .case-card:hover,
  .price-card:hover,
  .quote-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 13, 13, 0.48);
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .paper-note:hover,
  .sticky-note:hover {
    transform: rotate(-2deg) translateY(-2px);
    transition: transform 180ms ease;
  }
}

@keyframes marker-swipe {
  to { background-size: 100% 100%; }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1120px) {
  .process-board,
  .work-hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    padding-top: 0;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: 100%;
  }

  .hero-grid,
  .what-grid,
  .service-grid,
  .price-grid,
  .case-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .collage,
  .head-art,
  .work-collage,
  .portrait-collage {
    min-height: 150px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 0;
    gap: 10px;
  }

  .stats-grid article {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    background: rgba(255, 253, 247, 0.58);
  }

  .faq-answer {
    padding-left: 18px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }
}

/* Rhythm pass: pull the modules closer together. */
.section {
  padding-block: clamp(38px, 4.4vw, 64px);
}

.strip-section {
  padding-block: clamp(18px, 2.8vw, 36px);
}

.hero {
  padding-bottom: 6px;
}

.what {
  padding-bottom: clamp(12px, 2vw, 24px);
}

.what .wrap {
  padding-bottom: 0;
}

.promise {
  padding-top: clamp(14px, 2.4vw, 28px);
}

.services,
.process,
.pricing,
.work,
.about,
.faq {
  padding-top: clamp(42px, 5vw, 72px);
}

.section-head,
.pricing-head,
.work-hero {
  margin-bottom: clamp(22px, 3vw, 30px);
}

.final-cta {
  padding-top: 0;
}

@media (max-width: 640px) {
  .section {
    padding-block: 42px;
  }

  .strip-section {
    padding-block: 22px;
  }
}

/* Rhythm pass 2: denser studio-board flow. */
.section {
  padding-block: clamp(28px, 3.5vw, 50px);
}

.strip-section {
  padding-block: clamp(10px, 1.8vw, 24px);
}

.hero {
  padding-bottom: 0;
}

.what {
  padding-top: clamp(6px, 1.2vw, 14px);
  padding-bottom: clamp(4px, 1vw, 12px);
}

.promise {
  padding-top: clamp(4px, 1vw, 12px);
}

.services,
.process,
.pricing,
.work,
.about,
.faq {
  padding-top: clamp(30px, 4vw, 54px);
}

.promise-board,
.process-board {
  margin-block: 0;
}

.section-head,
.pricing-head,
.work-hero {
  margin-bottom: clamp(18px, 2.4vw, 24px);
}

.centered {
  margin-top: 24px;
}

.kind-words {
  margin-top: 30px;
}

.stats-grid {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .section {
    padding-block: 34px;
  }

  .strip-section {
    padding-block: 16px;
  }
}

/* Scale pass: pull the whole system down another ~10% without browser zoom. */
:root {
  --wrap: 890px;
  --pad: clamp(14px, 2.7vw, 30px);
}

body {
  font-size: 13.5px;
}

h1 {
  max-width: 505px;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.35vw, 3.55rem);
}

h3 {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
}

.section {
  padding-block: clamp(25px, 3.15vw, 45px);
}

.strip-section {
  padding-block: clamp(9px, 1.6vw, 22px);
}

.nav-inner {
  min-height: 49px;
  padding: 6px 9px 6px 18px;
}

.brand {
  font-size: clamp(1rem, 1.4vw, 1.4rem);
}

.nav-links {
  gap: clamp(18px, 3vw, 41px);
}

.nav-cta {
  min-width: 150px;
}

.btn {
  min-height: 35px;
  padding-inline: 15px;
  font-size: 0.76rem;
}

.hero {
  padding-top: clamp(50px, 5.4vw, 77px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(235px, 0.66fr);
  gap: clamp(20px, 3vw, 38px);
}

.lead,
.section-head p:not(.eyebrow),
.pricing-head p,
.work-hero p,
.about-grid p,
.faq-grid p {
  font-size: 0.84rem;
}

.collage {
  min-height: 232px;
}

.blob-blue {
  width: 196px;
  height: 86px;
}

.burst {
  font-size: clamp(2rem, 4vw, 4.3rem);
}

.hero-note {
  width: 128px;
  padding: 13px 12px;
  font-size: 0.72rem;
}

.mini-card {
  min-height: 114px;
  padding: 16px 16px 14px;
}

.mini-card h2 {
  font-size: 0.92rem;
}

.mini-card p {
  font-size: 0.7rem;
}

.card-icon {
  width: 29px;
  height: 29px;
  font-size: 1.15rem;
}

.promise-board {
  min-height: 315px;
  padding: clamp(27px, 3.6vw, 41px);
}

.promise-main h2 {
  max-width: 425px;
  font-size: clamp(2.35rem, 4.3vw, 4.3rem);
}

.dark-card {
  min-height: 160px;
  padding: 18px 16px;
}

.service-tile {
  min-height: 158px;
  padding: 21px;
}

.service-tile h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
}

.service-tile p:not(.tile-kicker),
.step-card p,
.case-card p,
.quote-card p {
  font-size: 0.76rem;
}

.process-board {
  padding: clamp(25px, 3.6vw, 40px);
}

.process-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.step-card {
  min-height: 176px;
  padding: 20px 18px;
}

.price-card {
  min-height: 306px;
  padding: 22px 20px;
}

.case-card {
  min-height: 198px;
  padding: 18px;
}

.stats-grid article,
.quote-card {
  padding: 18px;
}

.cta-banner {
  min-height: 117px;
  padding: 22px 29px;
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .section {
    padding-block: 30px;
  }
}

/* === Energy pass: more visual punch and animation === */

body {
  background:
    radial-gradient(ellipse 600px 420px at 8% 0%, rgba(242, 56, 123, 0.16), transparent),
    radial-gradient(ellipse 500px 380px at 94% 8%, rgba(255, 212, 59, 0.2), transparent),
    radial-gradient(ellipse 700px 500px at 50% 80%, rgba(36, 107, 254, 0.1), transparent),
    var(--cream);
}

@keyframes spin-slow { to { rotate: 360deg; } }
@keyframes pulse-mini {
  0%, 100% { scale: 1; opacity: 1; }
  50% { scale: 1.3; opacity: 0.8; }
}
@keyframes float-y {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -11px; }
}
@keyframes float-y-sm {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(242, 56, 123, 0.28); }
  50% { box-shadow: 0 18px 64px rgba(242, 56, 123, 0.52); }
}

@media (prefers-reduced-motion: no-preference) {
  /* Decorative spinning bursts */
  .burst { animation: spin-slow 26s linear infinite; }
  .brand-star { animation: spin-slow 10s linear infinite; }
  .mini-star { animation: pulse-mini 2.6s ease-in-out infinite; }

  /* Hero collage floating elements */
  .hero-note { animation: float-y 4.8s ease-in-out infinite 0.7s; }
  .doodle-blue { animation: float-y-sm 3.9s ease-in-out infinite 0.2s; }
  .arrow-doodle { animation: float-y 5.6s ease-in-out infinite 1.2s; }

  /* Stronger scroll-in: add scale, springier easing */
  .navbar,
  .hero-copy > *,
  .collage > *,
  main > section,
  .mini-card,
  .service-tile,
  .dark-card,
  .step-card,
  .case-card,
  .price-card,
  .quote-card {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }

  .is-visible,
  .is-visible .hero-copy > *,
  .is-visible.collage > *,
  .is-visible .collage > *,
  .is-visible .mini-card,
  .is-visible .service-tile,
  .is-visible .dark-card,
  .is-visible .step-card,
  .is-visible .case-card,
  .is-visible .price-card,
  .is-visible .quote-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .is-visible .hero-copy > *:nth-child(2),
  .is-visible .mini-card:nth-child(2),
  .is-visible .service-tile:nth-child(2),
  .is-visible .dark-card:nth-child(2),
  .is-visible .step-card:nth-child(2),
  .is-visible .case-card:nth-child(2),
  .is-visible .price-card:nth-child(2),
  .is-visible .quote-card:nth-child(2) {
    transition-delay: 80ms;
  }

  .is-visible .hero-copy > *:nth-child(3),
  .is-visible .mini-card:nth-child(3),
  .is-visible .service-tile:nth-child(3),
  .is-visible .dark-card:nth-child(3),
  .is-visible .step-card:nth-child(3),
  .is-visible .case-card:nth-child(3),
  .is-visible .price-card:nth-child(3),
  .is-visible .quote-card:nth-child(3) {
    transition-delay: 160ms;
  }

  .is-visible .mini-card:nth-child(4),
  .is-visible .service-tile:nth-child(4),
  .is-visible .case-card:nth-child(4),
  .is-visible .price-card:nth-child(4) {
    transition-delay: 240ms;
  }

  /* Springy card hover */
  .mini-card:hover,
  .service-tile:hover,
  .case-card:hover,
  .price-card:hover,
  .quote-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 22px 52px rgba(13, 13, 13, 0.15);
    border-color: rgba(13, 13, 13, 0.44);
    transition: transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 240ms ease,
                border-color 240ms ease;
  }

  /* Paper note spring hover */
  .paper-note:hover,
  .sticky-note:hover {
    transform: rotate(-2deg) translateY(-5px) scale(1.05);
    transition: transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* CTA banner glow pulse */
  .cta-banner {
    animation: cta-glow 4.5s ease-in-out infinite;
  }
}
