:root {
  --ink: #111111;
  --paper: #f6f0e5;
  --paper-2: #ece2d4;
  --white: #fffdf8;
  --red: #ff3b30;
  --yellow: #ffd82f;
  --blue: #3157ff;
  --muted: #6e675f;
  --line: rgba(17,17,17,.18);
  --shell: min(1220px, calc(100vw - 40px));
  --radius: 24px;
  --shadow: 0 24px 70px rgba(17,17,17,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,216,47,.24), transparent 22%),
    radial-gradient(circle at 92% 20%, rgba(49,87,255,.12), transparent 24%),
    var(--paper);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.055em; }
p { color: var(--muted); }
.shell { width: var(--shell); margin: 0 auto; }
.section-pad { padding: 112px 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  width: min(1260px, calc(100vw - 24px));
  min-height: 68px;
  margin: 12px auto 0;
  padding: 10px 12px 10px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 18px;
  background: rgba(246,240,229,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(17,17,17,.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-badge {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: .76rem;
  font-weight: 950;
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.desktop-nav { display: flex; gap: 26px; }
.desktop-nav a {
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
}
.desktop-nav a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.header-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--yellow);
}
.header-cta:hover { transform: translate(-1px,-1px); box-shadow: 6px 6px 0 var(--yellow); }

.hero {
  min-height: calc(100vh - 92px);
  padding: 74px 0 72px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
}
.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,59,48,.16);
}
.hero-title {
  margin: 0 0 28px;
  font-size: clamp(4.2rem, 6.3vw, 7.2rem);
  line-height: .78;
  font-weight: 950;
  text-transform: uppercase;
  max-width: 780px;
}
.hero-line { display: block; }
.hero-line-first { margin-bottom: .07em; }
.hero-platform,
.hero-last {
  display: inline-block;
  width: fit-content;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}
.hero-platform {
  margin: .03em .08em .08em 0;
  padding: .08em .13em .11em;
  background: var(--blue);
  color: var(--white);
  transform: rotate(-1.5deg);
}
.hero-last {
  padding: .07em .14em .12em;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(1.4deg);
}
.hero-body {
  max-width: 680px;
  margin-bottom: 0;
  color: #34302b;
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translate(-2px,-2px); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 5px 5px 0 var(--red); }
.button-dark:hover { box-shadow: 7px 7px 0 var(--red); }
.button-paper { background: var(--white); color: var(--ink); box-shadow: 5px 5px 0 var(--yellow); }
.button-paper:hover { box-shadow: 7px 7px 0 var(--yellow); }
.hero-micro {
  margin: 19px 0 0;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 850;
}
 .hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
}
.hero-art-composite {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.hero-composite-image {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  filter: none;
}

.ticker {
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--yellow);
}
.ticker-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  padding: 17px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ticker-item::after { content: "✦"; font-size: 1.15rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.promise h2,
.section-heading h2,
.process-heading h2,
.included h2,
.cta-card h2,
.who h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.5rem);
  line-height: .88;
  font-weight: 950;
  text-transform: uppercase;
}
.promise-copy > p {
  margin-bottom: 36px;
  color: #302c28;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1.42;
}
.not-needed {
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--red);
}
.not-needed > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.strike-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.strike-list s {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #777068;
  font-size: .84rem;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--red);
}
.not-needed strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.services {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}
.services .section-label,
.work .section-label { color: var(--yellow); }
.section-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: end;
}
.section-heading > p {
  max-width: 600px;
  margin: 0;
  color: rgba(17,17,17,.68);
  font-size: 1.05rem;
}
.services .section-heading > p { color: rgba(255,255,255,.67); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.service-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255,255,255,.26);
  border-radius: 22px;
  background: #191919;
  transition: transform .2s ease, background .2s ease;
}
.service-card:nth-child(2),
.service-card:nth-child(5) { background: var(--blue); }
.service-card:nth-child(3),
.service-card:nth-child(6) { background: #242424; }
.service-card:hover { transform: translateY(-8px) rotate(-.5deg); }
.service-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
}
.service-card h3 {
  margin: auto 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: .9;
  font-weight: 950;
  text-transform: uppercase;
}
.service-card p { margin: 0; color: rgba(255,255,255,.72); }
.service-arrow { margin-top: 24px; color: var(--yellow); font-size: 1.5rem; }

.who-card {
  padding: 70px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
}
.who-intro p:last-child { margin-top: 26px; color: #39342d; font-size: 1.05rem; }
.who-list { display: grid; align-content: start; gap: 14px; }
.use-case-item {
  padding: 22px 22px 20px;
  border: 2px solid rgba(17,17,17,.28);
  border-radius: 20px;
  background: rgba(255,255,255,.55);
}
.use-case-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.use-case-index {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: .84rem;
  font-weight: 950;
}
.use-case-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.05;
  font-weight: 900;
}
.use-case-item p {
  margin: 0;
  color: #403a33;
  font-size: .98rem;
}

.work {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--blue);
  color: var(--white);
}
.section-heading-light > p { color: rgba(255,255,255,.7); }
.portfolio-link {
  justify-self: end;
  align-self: end;
  color: var(--white);
  font-weight: 900;
  text-underline-offset: 5px;
}
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin: -20px 0 34px; }
.filter-button {
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 850;
}
.filter-button:hover,
.filter-button.active { border-color: var(--ink); background: var(--yellow); color: var(--ink); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.portfolio-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.portfolio-card:nth-child(1),
.portfolio-card:nth-child(5) { grid-column: span 8; }
.portfolio-card:hover { transform: translate(-3px,-3px) rotate(-.35deg); box-shadow: 10px 10px 0 var(--ink); }
.portfolio-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-card:hover img { transform: scale(1.025); }
.portfolio-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 55%),
    var(--ink);
  color: var(--white);
  text-align: center;
  font-size: clamp(1.3rem, 2.6vw, 2.7rem);
  font-weight: 950;
  line-height: .95;
  text-transform: uppercase;
}
.portfolio-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}
.portfolio-copy { padding: 18px 18px 21px; }
.portfolio-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 12px; color: var(--muted); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-card h3 { margin: 0; font-size: 1.2rem; line-height: 1.05; }

.process { background: var(--paper-2); border-bottom: 3px solid var(--ink); }
.process > .shell { display: grid; grid-template-columns: .74fr 1.26fr; gap: 90px; align-items: start; }
.process-heading { position: sticky; top: 110px; }
.process-heading > p:last-child { margin-top: 28px; max-width: 440px; font-size: 1.05rem; }
.process-list { border-top: 3px solid var(--ink); }
.process-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 3px solid var(--ink);
}
.process-step {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
}
.process-item:nth-child(2) .process-step { background: var(--blue); }
.process-item:nth-child(3) .process-step { background: var(--yellow); color: var(--ink); }
.process-item:nth-child(4) .process-step { background: var(--white); color: var(--ink); }
.process-item h3 { margin: 0 0 12px; font-size: clamp(2rem, 3.8vw, 4rem); line-height: .9; font-weight: 950; text-transform: uppercase; }
.process-item p { margin: 0; max-width: 600px; font-size: 1rem; }

.results { background: var(--paper); border-bottom: 3px solid var(--ink); }
.testimonial-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.testimonial-card {
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}
.testimonial-card.featured {
  background: linear-gradient(180deg, rgba(255,216,47,.23), rgba(255,255,255,.92));
}
.testimonial-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.testimonial-name {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}
.testimonial-name-muted {
  color: var(--muted);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.testimonial-role {
  color: var(--red);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.testimonial-stat {
  max-width: 220px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}
.testimonial-card blockquote {
  margin: 0 0 18px;
  color: #25221e;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.5;
}
.testimonial-detail {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.included { display: grid; grid-template-columns: .8fr 1.2fr; gap: 92px; align-items: start; }
.included-grid { display: grid; gap: 14px; }
.included-card {
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}
.included-card:nth-child(2) { background: var(--yellow); transform: rotate(-.7deg); }
.included-card:nth-child(3) { background: var(--blue); color: var(--white); transform: rotate(.6deg); }
.included-card h3 { margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: .95; font-weight: 950; text-transform: uppercase; }
.included-card p { margin: 0; }
.included-card:nth-child(3) p { color: rgba(255,255,255,.75); }

.final-cta {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--red);
}
.cta-card {
  position: relative;
  padding: 86px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: var(--yellow);
  box-shadow: 14px 14px 0 var(--ink);
  text-align: center;
}
.cta-card h2 { max-width: 1000px; margin: 0 auto 28px; }
.cta-card > p:not(.section-label) { max-width: 710px; margin: 0 auto 32px; color: #37322c; font-size: 1.15rem; }
.cta-card .button { position: relative; z-index: 2; }
.cta-note { margin-top: 20px; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cta-star {
  position: absolute;
  right: 4%;
  top: 3%;
  color: var(--red);
  font-size: 9rem;
  line-height: 1;
  transform: rotate(12deg);
  text-shadow: 5px 5px 0 var(--ink);
}

.site-footer {
  padding: 48px 0 54px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand strong { font-size: 1rem; }
.footer-brand p { margin: 4px 0 0; max-width: 500px; font-size: .82rem; }
.footer-meta { text-align: right; }
.footer-meta a { font-weight: 900; }
.footer-meta p { margin: 7px 0 0; font-size: .78rem; }

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

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; padding-top: 78px; }
  .hero-copy { max-width: 900px; }
  .hero-art { min-height: auto; }
  .hero-composite-image { max-width: 520px; }
  .promise { gap: 56px; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .portfolio-link { justify-self: start; }
  .portfolio-card,
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(5) { grid-column: span 6; }
  .process > .shell { grid-template-columns: 1fr; gap: 56px; }
  .process-heading { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .included { gap: 56px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 24px, 1220px); }
  .section-pad { padding: 78px 0; }
  .site-header { top: 8px; width: calc(100vw - 16px); margin-top: 8px; padding-left: 11px; }
  .brand span:last-child { display: none; }
  .header-cta { font-size: .76rem; padding: 0 12px; }
  .hero { min-height: auto; padding: 62px 0 68px; gap: 48px; }
  .hero-title { font-size: clamp(4rem, 20vw, 6.7rem); }
  .hero-platform, .hero-last { border-width: 2px; box-shadow: 5px 5px 0 var(--ink); }
  .hero-art { min-height: auto; }
  .hero-composite-image { max-width: 100%; }
  .sticker-side { width: 92px; }
  .scribble { font-size: 4rem; }
  .promise { grid-template-columns: 1fr; gap: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 275px; }
  .who-card { padding: 32px 24px; grid-template-columns: 1fr; gap: 44px; box-shadow: 8px 8px 0 var(--ink); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card,
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(5) { grid-column: auto; }
  .process-item { grid-template-columns: 54px 1fr; gap: 16px; }
  .process-step { width: 46px; height: 46px; }
  .testimonial-head { flex-direction: column; }
  .testimonial-stat { max-width: none; }
  .included { grid-template-columns: 1fr; gap: 42px; }
  .cta-card { padding: 64px 22px; box-shadow: 8px 8px 0 var(--ink); }
  .cta-star { font-size: 5rem; opacity: .45; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

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