@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/PlusJakartaSans-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  src: url("/assets/fonts/PlusJakartaSans-ExtraBold.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --paper: #f3f0e9;
  --paper-light: #fbfaf7;
  --ink: #11110f;
  --ink-soft: #252520;
  --muted: #74736c;
  --line: rgba(17, 17, 15, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --coral: #ff5638;
  --coral-dark: #d9351b;
  --acid: #dfff55;
  --mint: #bce9d7;
  --blue: #8cacf8;
  --lavender: #b7a8f5;
  --radius: 24px;
  --page-pad: max(24px, calc((100vw - 1480px) / 2));
  --shadow-soft: 0 28px 80px rgba(17, 17, 15, 0.12);
  --shadow-tight: 0 16px 34px rgba(17, 17, 15, 0.14);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

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

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

.skip-link {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: 12px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
  z-index: 1000;
}

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

.scroll-progress {
  background: rgba(17, 17, 15, 0.08);
  height: 2px;
  inset: 0 0 auto;
  pointer-events: none;
  position: fixed;
  z-index: 200;
}

.scroll-progress span {
  background: var(--coral);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 16px var(--page-pad);
  position: fixed;
  right: 0;
  top: 2px;
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  z-index: 100;
}

.site-header::before {
  backdrop-filter: blur(18px);
  background: rgba(243, 240, 233, 0.82);
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 17, 15, 0.07);
  content: "";
  inset: 7px max(12px, calc(var(--page-pad) - 14px));
  opacity: 0;
  position: absolute;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 240ms ease, transform 240ms var(--ease-out);
  z-index: -1;
}

.site-header.is-scrolled::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
  justify-self: start;
  letter-spacing: -0.04em;
  line-height: 1;
  width: fit-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 10px;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  width: 36px;
}

.brand-mark img {
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.site-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(17, 17, 15, 0.09);
  border-radius: 999px;
  display: flex;
  gap: 6px;
  justify-self: center;
  padding: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: #5f5e57;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 14px;
  justify-self: end;
  min-height: 44px;
  padding: 0 8px 0 18px;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta .arrow {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  height: 30px;
  justify-content: center;
  transition: transform 220ms var(--ease-spring);
  width: 30px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 10px 28px rgba(255, 86, 56, 0.22);
}

.nav-cta:hover .arrow,
.nav-cta:focus-visible .arrow {
  transform: rotate(45deg);
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  justify-content: center;
  min-height: 112svh;
  overflow: hidden;
  padding: 140px max(20px, 4vw) 120px;
  position: relative;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  inset: 0;
  mask-image: radial-gradient(circle at 50% 42%, #000 0, transparent 68%);
  opacity: 0.56;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  filter: blur(0);
  height: 440px;
  left: 50%;
  opacity: 0.055;
  position: absolute;
  top: 32%;
  transform: translate(-50%, -50%);
  width: 440px;
  z-index: -2;
}

.task-cloud {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.task-chip {
  animation: task-release 7.4s var(--ease-out) infinite;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(17, 17, 15, 0.08);
  color: #77756e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 9px 13px;
  position: absolute;
  white-space: nowrap;
}

.task-chip::before {
  background: #c8c5bd;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 5px;
  margin-right: 8px;
  vertical-align: 1px;
  width: 5px;
}

.task-chip-1 { animation-delay: -0.3s; left: 8%; top: 27%; }
.task-chip-2 { animation-delay: -2.2s; right: 9%; top: 24%; }
.task-chip-3 { animation-delay: -4.1s; left: 15%; top: 59%; }
.task-chip-4 { animation-delay: -5.5s; right: 13%; top: 57%; }
.task-chip-5 { animation-delay: -3.2s; left: 27%; top: 15%; }
.task-chip-6 { animation-delay: -6.4s; right: 27%; top: 68%; }

@keyframes task-release {
  0%, 7% { opacity: 0; transform: translateY(22px) scale(0.9); }
  15%, 56% { opacity: 0.72; transform: translateY(0) scale(1); }
  72%, 100% { opacity: 0; transform: translateY(-22px) scale(0.94); }
}

.hero-copy {
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  animation: reveal-up 760ms 100ms var(--ease-spring) both;
  color: var(--coral-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(66px, 10.5vw, 166px);
  font-weight: 800;
  letter-spacing: -0.082em;
  line-height: 0.82;
  margin: 0;
}

.headline-line {
  display: block;
  padding-right: 0.08em;
  transform-origin: center bottom;
}

.headline-manage {
  animation: headline-in 950ms 180ms var(--ease-spring) both;
  color: var(--ink);
}

.headline-create {
  animation: headline-in 950ms 310ms var(--ease-spring) both;
  color: var(--coral);
  margin-top: 0.16em;
  position: relative;
}

.headline-create::after {
  animation: underline-in 900ms 900ms var(--ease-spring) both;
  background: var(--ink);
  bottom: -0.08em;
  content: "";
  height: 0.055em;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(-1.2deg) scaleX(0);
  transform-origin: left;
  width: 0.9em;
}

@keyframes headline-in {
  from { opacity: 0; transform: translateY(0.55em) rotate(1.5deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes underline-in {
  to { transform: translateX(-50%) rotate(-1.2deg) scaleX(1); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
  animation: reveal-up 760ms 520ms var(--ease-spring) both;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.45;
  margin: 42px auto 0;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  animation: reveal-up 760ms 630ms var(--ease-spring) both;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 18px;
  justify-content: center;
  min-height: 56px;
  padding: 0 12px 0 24px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}

.button-light {
  background: #fff;
  border: 1px solid #fff;
  color: var(--ink);
}

.button-text {
  border: 1px solid transparent;
  color: var(--ink);
  padding: 0 12px;
}

.button-arrow {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  transition: transform 260ms var(--ease-spring);
  width: 36px;
}

.button-light .button-arrow {
  background: var(--ink);
  color: #fff;
}

.button-text .button-arrow {
  background: transparent;
  border: 1px solid var(--line);
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
  transform: rotate(45deg);
}

.button:hover .button-arrow.down,
.button:focus-visible .button-arrow.down {
  transform: translateY(3px);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 14px 34px rgba(255, 86, 56, 0.25);
}

.hero-proof {
  align-items: center;
  animation: reveal-up 760ms 760ms var(--ease-spring) both;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.04em;
  margin: 30px 0 0;
  text-transform: uppercase;
}

.hero-proof i {
  background: #b7b4ab;
  border-radius: 50%;
  height: 3px;
  width: 3px;
}

.hero-proof b {
  background: var(--acid);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  margin-left: 2px;
  padding: 6px 9px;
}

.handoff-demo {
  align-items: center;
  animation: demo-in 900ms 780ms var(--ease-spring) both;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(220px, 270px) 68px minmax(520px, 610px);
  margin-top: 72px;
  max-width: 980px;
  position: relative;
  width: min(94vw, 980px);
  z-index: 3;
}

@keyframes demo-in {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.source-card,
.outcome {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 15, 0.11);
  box-shadow: var(--shadow-tight);
}

.source-card {
  align-items: center;
  border-radius: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: 54px 1fr;
  padding: 10px;
}

.source-art {
  background: #e8b89a;
  border-radius: 10px;
  height: 54px;
  overflow: hidden;
  position: relative;
}

.source-art span,
.source-art i,
.source-art b {
  display: block;
  position: absolute;
}

.source-art span {
  background: #1e4f48;
  border-radius: 50% 48% 42% 58%;
  height: 50px;
  left: -9px;
  top: 18px;
  transform: rotate(19deg);
  width: 58px;
}

.source-art i {
  background: var(--coral);
  border-radius: 50%;
  height: 25px;
  right: -2px;
  top: 6px;
  width: 25px;
}

.source-art b {
  background: #f7e754;
  height: 36px;
  left: 29px;
  top: 28px;
  transform: rotate(-19deg);
  width: 12px;
}

.source-meta {
  min-width: 0;
}

.source-meta span,
.source-meta strong {
  display: block;
}

.source-meta span,
.outcome small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-meta strong {
  font-size: 12px;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-state {
  align-items: center;
  color: #416b3a;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 5px;
  grid-column: 2;
  margin-top: -6px;
}

.source-state i {
  animation: saved-pulse 2.2s ease-in-out infinite;
  background: #64b855;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

@keyframes saved-pulse {
  50% { box-shadow: 0 0 0 5px rgba(100, 184, 85, 0.12); }
}

.handoff-line {
  background: rgba(17, 17, 15, 0.15);
  height: 1px;
  overflow: hidden;
  position: relative;
}

.handoff-line span {
  animation: line-run 2.8s ease-in-out infinite;
  background: var(--coral);
  height: 2px;
  left: -18px;
  position: absolute;
  top: -1px;
  width: 18px;
}

@keyframes line-run {
  0% { left: -18px; }
  65%, 100% { left: 100%; }
}

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

.outcome {
  align-items: center;
  animation: outcome-ready 6s var(--ease-spring) infinite;
  border-radius: 16px;
  display: grid;
  gap: 9px;
  grid-template-columns: 30px 1fr 20px;
  min-width: 0;
  padding: 12px;
}

.outcome:nth-child(2) { animation-delay: -4s; }
.outcome:nth-child(3) { animation-delay: -2s; }

@keyframes outcome-ready {
  0%, 12% { opacity: 0.35; transform: translateX(-12px); }
  24%, 82% { opacity: 1; transform: translateX(0); }
  94%, 100% { opacity: 0.35; transform: translateX(8px); }
}

.outcome-icon {
  align-items: center;
  background: var(--paper);
  border-radius: 9px;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.outcome-social .outcome-icon { background: #ffd3cb; }
.outcome-site .outcome-icon { background: #d9e4ff; }
.outcome-doc .outcome-icon { background: #e0f1da; }

.outcome > span:nth-child(2) {
  min-width: 0;
}

.outcome small,
.outcome strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.outcome strong {
  font-size: 10px;
  margin-top: 3px;
}

.outcome > b {
  align-items: center;
  background: var(--acid);
  border-radius: 50%;
  display: flex;
  font-size: 10px;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.hero-scroll {
  align-items: center;
  bottom: 28px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  font-size: 9px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}

.hero-scroll i {
  border: 1px solid rgba(17, 17, 15, 0.24);
  border-radius: 999px;
  height: 34px;
  position: relative;
  width: 20px;
}

.hero-scroll i::after {
  animation: scroll-dot 1.8s ease-in-out infinite;
  background: var(--ink);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 3px;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  24% { opacity: 1; }
  75%, 100% { opacity: 0; transform: translateY(14px); }
}

.proof-story {
  background: var(--ink);
  color: #fff;
  height: 330svh;
  position: relative;
}

.anchor-alias {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.proof-stage {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100svh;
  inset: 0;
  overflow: hidden;
  padding: 112px max(28px, 6vw) 34px;
  position: sticky;
}

.proof-stage::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 84%, transparent);
  pointer-events: none;
  position: absolute;
}

.proof-heading {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.proof-heading .section-kicker {
  color: rgba(255, 255, 255, 0.45);
  padding-bottom: 10px;
}

.proof-heading h2 {
  font-size: clamp(42px, 5.6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 0;
  text-align: right;
}

.proof-heading h2 span {
  color: var(--coral);
}

.proof-canvas {
  align-items: center;
  display: grid;
  gap: clamp(34px, 8vw, 140px);
  grid-template-columns: minmax(250px, 0.82fr) minmax(380px, 1.18fr);
  margin: 0 auto;
  max-width: 1160px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.art-core {
  background: #eeece5;
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  color: var(--ink);
  justify-self: end;
  max-width: 360px;
  overflow: hidden;
  padding: 12px;
  transform: rotate(-2deg) scale(calc(0.92 + var(--story-progress, 0) * 0.08));
  transition: transform 120ms linear;
  width: 100%;
}

.art-core-image {
  aspect-ratio: 4 / 4.65;
  background: #d9a476;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.art-core-image::before {
  background: #f2d6bb;
  content: "";
  inset: 0 0 52%;
  position: absolute;
}

.art-shape {
  display: block;
  position: absolute;
}

.art-shape-a {
  background: #163e38;
  border-radius: 52% 48% 42% 58%;
  bottom: -14%;
  height: 70%;
  left: -14%;
  transform: rotate(14deg);
  width: 76%;
}

.art-shape-b {
  background: var(--coral);
  border-radius: 50%;
  height: 38%;
  right: -8%;
  top: 22%;
  width: 48%;
}

.art-shape-c {
  background: #f6df4d;
  bottom: -8%;
  height: 62%;
  left: 51%;
  transform: rotate(-21deg);
  width: 18%;
}

.art-core-image i {
  bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  left: 15px;
  letter-spacing: 0.12em;
  position: absolute;
}

.art-core-meta {
  align-items: end;
  display: flex;
  justify-content: space-between;
  padding: 15px 4px 4px;
}

.art-core-meta small,
.art-core-meta strong {
  display: block;
}

.art-core-meta small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.art-core-meta strong {
  font-size: 15px;
  margin-top: 3px;
}

.art-core-meta > span {
  background: var(--acid);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  padding: 7px 9px;
}

.job-stack {
  display: grid;
  gap: 12px;
  max-width: 590px;
  width: 100%;
}

.job-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: 44px 1fr 38px;
  min-height: 84px;
  opacity: 0.22;
  padding: 12px 14px;
  transform: translateY(22px) scale(0.97);
  transition: opacity 550ms var(--ease-out), transform 650ms var(--ease-spring), background 450ms ease, border-color 450ms ease;
}

.job-number {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.56);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.job-copy small,
.job-copy strong {
  display: block;
}

.job-copy small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.job-copy strong {
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: -0.03em;
}

.job-copy i {
  color: var(--coral);
  font-style: normal;
  padding: 0 4px;
}

.job-check {
  align-items: center;
  background: var(--acid);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 15px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
  transition: opacity 320ms ease, transform 480ms var(--ease-spring);
  width: 34px;
}

.job-card.is-active,
.job-card.is-done {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.job-card.is-done {
  opacity: 0.52;
  transform: translateX(20px) scale(0.98);
}

.job-card.is-done .job-check,
.job-card.is-active .job-check {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.proof-story.is-complete .job-card {
  opacity: 0;
  transform: translateX(110px) scale(0.92);
}

.proof-result {
  bottom: 38px;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  left: 50%;
  letter-spacing: -0.04em;
  margin: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 20px);
  transition: opacity 500ms ease, transform 600ms var(--ease-spring);
  white-space: nowrap;
  z-index: 3;
}

.proof-result span {
  color: var(--coral);
}

.proof-story.is-complete .proof-result {
  opacity: 1;
  transform: translate(-50%, 0);
}

.proof-meter {
  bottom: 40px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: max(28px, 6vw);
  z-index: 3;
}

.proof-meter span {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  height: 4px;
  overflow: hidden;
  position: relative;
  width: 34px;
}

.proof-meter span::after {
  background: var(--coral);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.proof-story[data-step="1"] .proof-meter span:nth-child(1)::after,
.proof-story[data-step="2"] .proof-meter span:nth-child(-n+2)::after,
.proof-story[data-step="3"] .proof-meter span::after {
  transform: scaleX(1);
}

.capabilities {
  background: var(--paper-light);
  overflow: hidden;
  padding: 160px var(--page-pad) 90px;
}

.capabilities-header {
  margin: 0 auto 90px;
  max-width: 1440px;
  text-align: center;
}

.capabilities-header h2 {
  font-size: clamp(54px, 8.6vw, 132px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.92;
  margin: 22px 0 0;
}

.capability {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 130px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.25fr);
  margin: 0 auto;
  max-width: 1340px;
  min-height: 94svh;
  padding: 90px 0;
}

.capability-website .capability-copy {
  order: 2;
}

.capability-index {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.capability-index span {
  color: var(--coral);
}

.capability-copy h3 {
  font-size: clamp(54px, 6.5vw, 102px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
  margin: 0;
}

.capability-copy h3 span {
  color: #96948d;
}

.capability-copy > p:last-child {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.45;
  margin: 34px 0 0;
}

.capability-visual {
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  justify-self: stretch;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.social-visual {
  background: #f5c5bb;
  padding: clamp(22px, 4vw, 54px);
}

.ui-topbar {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.ui-topbar strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.ui-topbar small {
  color: rgba(17, 17, 15, 0.5);
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
  text-transform: uppercase;
}

.ui-title-dot {
  background: var(--coral);
  border-radius: 8px;
  height: 26px;
  position: relative;
  width: 26px;
}

.ui-title-dot::after {
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 8px;
}

.social-preview {
  background: #fff;
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(190px, 0.9fr) 1.1fr;
  min-height: 348px;
  padding: 18px;
  transform: rotate(-1deg);
  transition: transform 800ms var(--ease-spring);
}

.social-visual.is-visible .social-preview {
  transform: rotate(0);
}

.social-image {
  background: #d7a173;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.social-image::before {
  background: #f0d6bd;
  content: "";
  inset: 0 0 52%;
  position: absolute;
}

.social-image span {
  background: #173d37;
  border-radius: 50% 45%;
  bottom: -20%;
  height: 78%;
  left: -14%;
  position: absolute;
  transform: rotate(16deg);
  width: 88%;
}

.social-image i {
  background: var(--coral);
  border-radius: 50%;
  height: 42%;
  position: absolute;
  right: -7%;
  top: 22%;
  width: 54%;
}

.social-copy-lines {
  align-content: center;
  display: grid;
  gap: 12px;
}

.social-copy-lines b {
  animation: copy-pulse 5s ease-in-out infinite;
  background: #deddd7;
  border-radius: 999px;
  display: block;
  height: 9px;
  width: 92%;
}

.social-copy-lines b:nth-child(2) { animation-delay: -1.1s; width: 76%; }
.social-copy-lines b:nth-child(3) { animation-delay: -2.2s; width: 48%; }

@keyframes copy-pulse {
  50% { background: #bbb9b1; }
}

.social-tags {
  bottom: 34px;
  display: flex;
  gap: 7px;
  position: absolute;
  right: 34px;
}

.social-tags span {
  background: var(--paper);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  padding: 7px 9px;
}

.schedule-row {
  align-items: center;
  background: var(--ink);
  border-radius: 18px;
  color: #fff;
  display: grid;
  gap: 12px;
  grid-template-columns: 36px 1fr auto;
  margin: 18px 10px 0;
  padding: 12px;
}

.schedule-platform {
  align-items: center;
  background: #fff;
  border-radius: 10px;
  color: var(--ink);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  width: 36px;
}

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

.schedule-row small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-row strong {
  font-size: 11px;
  margin-top: 3px;
}

.schedule-row > b {
  align-items: center;
  color: var(--acid);
  display: flex;
  font-size: 9px;
  gap: 6px;
}

.schedule-row > b i {
  animation: saved-pulse 2s ease-in-out infinite;
  background: var(--acid);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.float-status {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 999px;
  box-shadow: var(--shadow-tight);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  opacity: 0;
  padding: 10px 14px 10px 10px;
  position: absolute;
  transform: translateY(18px) scale(0.9);
  transition: opacity 500ms 450ms ease, transform 650ms 450ms var(--ease-spring);
}

.float-status i {
  align-items: center;
  background: var(--acid);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  font-style: normal;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.capability-visual.is-visible .float-status {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.status-posted {
  bottom: 24px;
  left: 20px;
}

.website-visual {
  background: #cbd8f6;
  padding: clamp(20px, 3vw, 42px);
}

.browser-bar {
  align-items: center;
  background: var(--ink);
  border-radius: 20px 20px 0 0;
  color: #fff;
  display: flex;
  gap: 6px;
  min-height: 50px;
  padding: 0 16px;
}

.browser-bar > i {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.browser-bar > i:first-child { background: var(--coral); }

.browser-bar span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.browser-bar b {
  align-items: center;
  color: var(--acid);
  display: flex;
  font-size: 9px;
  gap: 6px;
  margin-left: auto;
  text-transform: uppercase;
}

.browser-bar b::before {
  background: var(--acid);
  border-radius: 50%;
  content: "";
  height: 5px;
  width: 5px;
}

.website-page {
  background: #f6f2e8;
  border-radius: 0 0 20px 20px;
  min-height: 466px;
  overflow: hidden;
  padding: 26px;
}

.website-page-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.website-page-nav strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.website-page-nav span {
  color: #77746c;
  font-family: Georgia, serif;
  font-size: 9px;
}

.website-art-grid {
  display: grid;
  gap: 9px;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 1fr 1fr;
  height: 318px;
  margin-top: 24px;
}

.website-art-grid span {
  background: #d6a374;
  overflow: hidden;
  position: relative;
}

.website-art-grid span:first-child {
  grid-row: 1 / 3;
}

.website-art-grid span::before,
.website-art-grid span::after {
  content: "";
  position: absolute;
}

.website-art-grid span::before {
  background: #173d37;
  border-radius: 50%;
  height: 78%;
  left: -22%;
  top: 42%;
  transform: rotate(18deg);
  width: 88%;
}

.website-art-grid span::after {
  background: var(--coral);
  border-radius: 50%;
  height: 48%;
  right: -18%;
  top: 14%;
  width: 66%;
}

.website-art-grid span:nth-child(2) { background: #d5c9ef; }
.website-art-grid span:nth-child(2)::before { background: #3c315e; }
.website-art-grid span:nth-child(2)::after { background: #f1d64e; }
.website-art-grid span:nth-child(3) { background: #b8dbce; }
.website-art-grid span:nth-child(3)::before { background: #ef714f; }
.website-art-grid span:nth-child(3)::after { background: #214a43; }

.website-caption {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}

.website-caption strong {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 400;
}

.website-caption span {
  color: #77746c;
  font-size: 8px;
  text-transform: uppercase;
}

.status-updated {
  bottom: 24px;
  right: 20px;
}

.document-visual {
  align-items: center;
  background: #cfdfc9;
  display: flex;
  justify-content: center;
  padding: 44px;
}

.document-shadow,
.document-page {
  aspect-ratio: 0.71;
  border-radius: 3px;
  max-height: 500px;
  position: absolute;
  width: min(65%, 350px);
}

.document-shadow {
  background: #eae7e0;
  border: 1px solid rgba(17, 17, 15, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 15, 0.12);
}

.shadow-one {
  transform: translate(-35px, 10px) rotate(-7deg);
}

.shadow-two {
  transform: translate(35px, 14px) rotate(6deg);
}

.document-page {
  background: #fff;
  box-shadow: 0 28px 60px rgba(17, 17, 15, 0.2);
  display: flex;
  flex-direction: column;
  padding: 22px;
  transform: rotate(-1.4deg) translateY(10px);
  transition: transform 900ms var(--ease-spring);
  z-index: 2;
}

.document-visual.is-visible .document-page {
  transform: rotate(0) translateY(0);
}

.document-page header {
  align-items: center;
  border-bottom: 1px solid #d4d2cb;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.document-page header img {
  filter: brightness(0);
  height: 18px;
  object-fit: contain;
  width: 18px;
}

.document-page header span {
  color: #8b8880;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.document-page > p {
  font-size: clamp(18px, 2.2vw, 29px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 26px 0 20px;
}

.document-work {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.78fr 1.22fr;
}

.document-art {
  background: #d9a476;
  min-height: 130px;
  overflow: hidden;
  position: relative;
}

.document-art span {
  background: #183f39;
  border-radius: 50%;
  bottom: -20%;
  height: 80%;
  left: -30%;
  position: absolute;
  transform: rotate(19deg);
  width: 100%;
}

.document-art i {
  background: var(--coral);
  border-radius: 50%;
  height: 47%;
  position: absolute;
  right: -12%;
  top: 20%;
  width: 66%;
}

.document-work dl {
  margin: 0;
}

.document-work dl div {
  border-bottom: 1px solid #dfddd7;
  padding: 7px 0;
}

.document-work dt {
  color: #8b8880;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-work dd {
  font-size: 8px;
  font-weight: 700;
  margin: 3px 0 0;
}

.document-page footer {
  align-items: end;
  display: flex;
  flex: 1;
  justify-content: space-between;
  padding-top: 18px;
}

.document-page footer span {
  color: #8b8880;
  font-size: 6px;
  text-transform: uppercase;
}

.document-page footer i {
  border-bottom: 1px solid #77746c;
  height: 18px;
  transform: rotate(-4deg);
  width: 80px;
}

.status-generated {
  bottom: 24px;
  left: 20px;
  z-index: 4;
}

.control-section {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr);
  min-height: 100svh;
  padding: 120px var(--page-pad);
}

.control-copy {
  max-width: 580px;
}

.control-copy .section-kicker {
  color: var(--coral);
}

.control-copy h2 {
  font-size: clamp(64px, 7.4vw, 116px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.85;
  margin: 28px 0 0;
}

.control-copy h2 span {
  color: rgba(255, 255, 255, 0.38);
}

.control-copy > p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  margin: 40px 0 0;
}

.control-panel {
  background: #f4f2ec;
  border-radius: 30px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.44);
  color: var(--ink);
  max-width: 720px;
  padding: 18px;
  transform: rotate(1.5deg);
  transition: transform 900ms var(--ease-spring);
  width: 100%;
}

.control-panel.is-visible {
  transform: rotate(0);
}

.control-panel-head {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  padding: 10px 10px 22px;
}

.control-panel-head b {
  align-items: center;
  background: #e7e4dd;
  border-radius: 999px;
  color: #55534d;
  display: flex;
  font-size: 9px;
  gap: 7px;
  padding: 8px 10px;
}

.control-panel-head b i {
  background: #55a44b;
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.control-row {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  min-height: 86px;
  padding: 16px 18px;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.control-row:hover {
  box-shadow: 0 10px 24px rgba(17, 17, 15, 0.08);
  transform: translateX(-5px);
}

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

.control-row small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.control-row strong {
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: -0.025em;
}

.toggle {
  background: var(--ink);
  border-radius: 999px;
  height: 30px;
  padding: 3px;
  position: relative;
  width: 52px;
}

.toggle i {
  background: var(--acid);
  border-radius: 50%;
  display: block;
  height: 24px;
  margin-left: 22px;
  width: 24px;
}

.choice {
  background: #ece9e2;
  border-radius: 999px;
  color: #55534d;
  font-size: 10px;
  font-weight: 800;
  padding: 9px 11px;
}

.control-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 4px 2px;
}

.control-summary span {
  align-items: center;
  color: #69675f;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  gap: 6px;
}

.control-summary i {
  align-items: center;
  background: var(--acid);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 7px;
  font-style: normal;
  height: 16px;
  justify-content: center;
  width: 16px;
}

.closing {
  align-items: center;
  background: var(--coral);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 94svh;
  overflow: hidden;
  padding: 130px 24px;
  position: relative;
  text-align: center;
}

.closing .section-kicker {
  color: rgba(17, 17, 15, 0.62);
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-size: clamp(64px, 10vw, 158px);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.86;
  margin: 28px auto 54px;
  max-width: 1450px;
  position: relative;
  z-index: 2;
}

.closing .button-light {
  box-shadow: 0 16px 38px rgba(17, 17, 15, 0.18);
  position: relative;
  z-index: 2;
}

.closing .button-light:hover,
.closing .button-light:focus-visible {
  box-shadow: 0 22px 50px rgba(17, 17, 15, 0.28);
}

.closing-note {
  color: rgba(17, 17, 15, 0.62);
  font-size: 12px;
  font-weight: 700;
  margin: 18px 0 0;
  position: relative;
  z-index: 2;
}

.closing-orbit {
  height: min(72vw, 980px);
  left: 50%;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(72vw, 980px);
}

.closing-orbit::before,
.closing-orbit::after,
.closing-orbit span {
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  inset: 0;
  position: absolute;
}

.closing-orbit::after {
  inset: 17%;
}

.closing-orbit span {
  inset: 34%;
}

.closing-orbit i,
.closing-orbit b {
  animation: orbit 14s linear infinite;
  background: var(--ink);
  border-radius: 50%;
  height: 11px;
  left: 50%;
  position: absolute;
  top: -5px;
  transform-origin: 0 calc(min(72vw, 980px) / 2 + 5px);
  width: 11px;
}

.closing-orbit b {
  animation-direction: reverse;
  animation-duration: 9s;
  left: 50%;
  top: 17%;
  transform-origin: 0 calc(min(47vw, 647px) / 2);
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto auto auto;
  min-height: 130px;
  padding: 36px var(--page-pad);
}

.footer-brand .brand-mark {
  background: #fff;
}

.footer-brand .brand-mark img {
  filter: brightness(0);
}

.site-footer > p,
.site-footer > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 800ms ease, transform 950ms var(--ease-spring);
}

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

.no-js .proof-story {
  height: auto;
  min-height: 100svh;
}

.no-js .proof-stage {
  position: relative;
}

.no-js .job-card,
.no-js .proof-story.is-complete .job-card {
  opacity: 1;
  transform: none;
}

.no-js .site-header::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  :root {
    --page-pad: max(22px, 4vw);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .handoff-demo {
    grid-template-columns: 230px 44px minmax(440px, 1fr);
  }

  .outcome {
    grid-template-columns: 28px 1fr;
  }

  .outcome > b {
    display: none;
  }

  .proof-canvas {
    gap: 48px;
  }

  .capability {
    gap: 48px;
    grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  }

  .control-section {
    gap: 60px;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 780px) {
  :root {
    --radius: 20px;
    --page-pad: 18px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .site-header::before {
    inset: 5px 8px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    border-radius: 9px;
    height: 34px;
    width: 34px;
  }

  .brand-mark img {
    height: 20px;
    width: 20px;
  }

  .nav-cta {
    font-size: 12px;
    min-height: 42px;
    padding-left: 15px;
  }

  .nav-cta .arrow {
    height: 28px;
    width: 28px;
  }

  .hero {
    min-height: 104svh;
    padding: 126px 16px 100px;
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .task-chip {
    font-size: 9px;
    padding: 7px 10px;
  }

  .task-chip-1 { left: -10px; top: 25%; }
  .task-chip-2 { right: -24px; top: 21%; }
  .task-chip-3 { left: -26px; top: 51%; }
  .task-chip-4 { right: -36px; top: 48%; }
  .task-chip-5,
  .task-chip-6 { display: none; }

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

  .hero h1 {
    font-size: clamp(55px, 17vw, 88px);
    line-height: 0.86;
  }

  .hero-lede {
    font-size: 16px;
    margin-top: 34px;
    max-width: 360px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .button {
    font-size: 12px;
    gap: 12px;
    min-height: 50px;
    padding-left: 18px;
  }

  .button-text {
    padding-left: 10px;
  }

  .button-arrow {
    height: 32px;
    width: 32px;
  }

  .hero-proof {
    gap: 7px;
    margin-top: 24px;
  }

  .handoff-demo {
    gap: 8px;
    grid-template-columns: 1fr;
    margin-top: 54px;
    max-width: 390px;
    width: calc(100vw - 36px);
  }

  .source-card {
    margin: 0 auto;
    max-width: 270px;
    width: 100%;
  }

  .handoff-line {
    height: 24px;
    margin: 0 auto;
    width: 1px;
  }

  .handoff-line span {
    animation: line-run-mobile 2.8s ease-in-out infinite;
    height: 12px;
    left: -1px;
    top: -12px;
    width: 2px;
  }

  @keyframes line-run-mobile {
    0% { top: -12px; }
    65%, 100% { top: 100%; }
  }

  .outcomes {
    gap: 5px;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 270px;
    width: 100%;
  }

  .outcome {
    gap: 8px;
    grid-template-columns: 28px 1fr 20px;
    min-height: 46px;
    padding: 8px 9px;
  }

  .outcome-icon {
    border-radius: 7px;
    height: 28px;
    width: 28px;
  }

  .outcome > b {
    display: flex;
  }

  .outcome small {
    font-size: 8px;
  }

  .outcome strong {
    font-size: 10px;
  }

  .hero-scroll {
    display: none;
  }

  .proof-story {
    height: 340svh;
  }

  .proof-stage {
    padding: 88px 18px 26px;
  }

  .proof-heading {
    align-items: start;
    display: block;
  }

  .proof-heading .section-kicker {
    padding-bottom: 14px;
  }

  .proof-heading h2 {
    font-size: clamp(38px, 12vw, 58px);
    text-align: left;
  }

  .proof-canvas {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
  }

  .art-core {
    border-radius: 15px;
    justify-self: center;
    max-width: 128px;
    padding: 7px;
  }

  .art-core-image {
    border-radius: 10px;
  }

  .art-core-meta {
    display: block;
    padding: 9px 1px 1px;
  }

  .art-core-meta strong {
    font-size: 11px;
  }

  .art-core-meta > span {
    display: inline-block;
    font-size: 7px;
    margin-top: 7px;
    padding: 5px 7px;
  }

  .job-stack {
    gap: 6px;
    max-width: 390px;
  }

  .job-card {
    border-radius: 13px;
    gap: 8px;
    grid-template-columns: 30px 1fr 24px;
    min-height: 54px;
    padding: 8px;
  }

  .job-number {
    border-radius: 9px;
    font-size: 8px;
    height: 30px;
    width: 30px;
  }

  .job-copy small {
    font-size: 8px;
    margin-bottom: 4px;
  }

  .job-copy strong {
    font-size: 12px;
  }

  .job-copy i {
    padding: 0 1px;
  }

  .job-check {
    font-size: 10px;
    height: 23px;
    width: 23px;
  }

  .proof-meter {
    bottom: 22px;
    left: 18px;
    right: auto;
  }

  .proof-meter span {
    width: 26px;
  }

  .proof-result {
    bottom: 53px;
    font-size: 14px;
  }

  .capabilities {
    padding: 110px 18px 60px;
  }

  .capabilities-header {
    margin-bottom: 72px;
    text-align: left;
  }

  .capabilities-header h2 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .capability {
    display: flex;
    flex-direction: column;
    gap: 44px;
    min-height: 0;
    padding: 80px 0 110px;
  }

  .capability-website .capability-copy {
    order: 0;
  }

  .capability-copy {
    align-self: stretch;
  }

  .capability-copy h3 {
    font-size: clamp(50px, 14.5vw, 74px);
  }

  .capability-copy > p:last-child {
    font-size: 16px;
    margin-top: 24px;
  }

  .capability-visual {
    border-radius: 24px;
    min-height: 490px;
    width: 100%;
  }

  .social-visual {
    padding: 22px;
  }

  .social-preview {
    gap: 12px;
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    min-height: 340px;
    padding: 12px;
  }

  .social-copy-lines {
    display: none;
  }

  .social-tags {
    bottom: 22px;
    right: 22px;
  }

  .schedule-row {
    margin: 12px 0 0;
  }

  .website-visual {
    padding: 18px;
  }

  .website-page {
    min-height: 402px;
    padding: 18px;
  }

  .website-page-nav span {
    display: none;
  }

  .website-art-grid {
    height: 292px;
  }

  .website-caption span {
    display: none;
  }

  .document-visual {
    padding: 28px;
  }

  .document-shadow,
  .document-page {
    width: min(72%, 310px);
  }

  .document-page {
    padding: 18px;
  }

  .control-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    min-height: auto;
    padding: 120px 18px;
  }

  .control-copy {
    align-self: stretch;
  }

  .control-copy h2 {
    font-size: clamp(62px, 17vw, 88px);
  }

  .control-panel {
    border-radius: 24px;
    padding: 12px;
  }

  .control-panel-head b {
    font-size: 7px;
  }

  .control-row {
    min-height: 76px;
    padding: 13px;
  }

  .control-summary {
    display: grid;
  }

  .closing {
    min-height: 88svh;
    padding: 110px 18px;
  }

  .closing h2 {
    font-size: clamp(58px, 16vw, 86px);
    margin-bottom: 42px;
  }

  .closing-orbit {
    height: 130vw;
    width: 130vw;
  }

  .closing-orbit i,
  .closing-orbit b {
    display: none;
  }

  .site-footer {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr auto;
    padding: 40px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: flex-end;
    max-width: 180px;
  }

  .site-footer > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .nav-cta > span:first-child {
    display: none;
  }

  .nav-cta {
    padding: 6px;
  }

  .hero h1 {
    font-size: clamp(51px, 16.2vw, 68px);
  }

  .hero-proof b {
    flex-basis: auto;
  }

  .proof-stage {
    padding-top: 82px;
  }

  .proof-canvas {
    gap: 14px;
  }

  .job-copy strong {
    font-size: 11px;
  }

  .capability-visual {
    min-height: 450px;
  }

  .document-shadow,
  .document-page {
    width: 76%;
  }
}

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

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

  .task-chip {
    opacity: 0.35;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .proof-story {
    height: auto;
    min-height: 100svh;
  }

  .proof-stage {
    position: relative;
  }

  .proof-story.is-complete .job-card {
    opacity: 1;
    transform: none;
  }
}
