:root {
  --blue: #3554ff;
  --blue-dark: #1d35dd;
  --ink: #0a0b0d;
  --ink-soft: #181a20;
  --paper: #f1efe9;
  --white: #ffffff;
  --muted: #6d6d70;
  --line: rgba(10, 11, 13, 0.17);
  --line-light: rgba(255, 255, 255, 0.22);
  --shell: min(1440px, calc(100% - 80px));
  --font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--blue);
  color: var(--white);
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 84px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  transition: height 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 70px;
  border-color: var(--line);
  background: rgba(241, 239, 233, 0.92);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 112px;
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 42px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
}

.is-scrolled .nav-cta,
.is-open .nav-cta {
  background: var(--blue);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: 100svh;
  padding: 142px max(40px, calc((100vw - 1440px) / 2)) 80px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.4) 68%, transparent 100%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -32vw;
  left: -17vw;
  width: 77vw;
  height: 77vw;
}

.hero-orbit-two {
  top: -12vw;
  left: 5vw;
  width: 45vw;
  height: 45vw;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

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

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

h1 {
  margin-bottom: 46px;
  font-size: clamp(4.4rem, 7.3vw, 8.3rem);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.075em;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 2px;
  height: 5px;
  background: var(--ink);
  content: "";
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.9vw, 7rem);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 380px) auto;
  gap: 30px;
  align-items: end;
}

.hero-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.arrow-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.35;
}

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

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.82);
}

.hero-stage {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: min(650px, 67vh);
  margin-left: 7vw;
}

.browser-card {
  display: block;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 38px 110px rgba(4, 9, 45, 0.34);
}

.browser-card-main {
  position: absolute;
  top: 12%;
  left: 0;
  width: min(680px, 48vw);
  transform: rotate(2.4deg);
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.browser-card-main:hover {
  transform: rotate(0);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 13px;
  background: var(--ink);
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.browser-bar small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.browser-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.stage-note {
  position: absolute;
  z-index: 3;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(4, 9, 45, 0.25);
}

.stage-note-top {
  top: 4%;
  right: 0;
  display: grid;
  grid-template-columns: auto 150px;
  gap: 18px;
  width: 235px;
  padding: 18px;
}

.stage-note-top span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.stage-note-top p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.35;
}

.stage-note-bottom {
  right: 4%;
  bottom: 7%;
  display: flex;
  gap: 18px;
  padding: 16px 18px;
}

.stage-note-bottom strong {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scrollLine 1.7s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-height: 54px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee i {
  color: var(--blue);
  font-style: normal;
}

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

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.work {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.48fr);
  column-gap: 8vw;
  margin-bottom: 110px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2 {
  margin: 0;
}

.section-lede {
  align-self: end;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 52px);
}

.project {
  min-width: 0;
}

.project-featured {
  width: 100%;
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d7d3;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: var(--blue);
  content: "";
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 250ms ease;
}

.project-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-image:hover img {
  transform: scale(1.025);
}

.project-image:hover::after {
  opacity: 0.15;
}

.project-view {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(70px);
  transition: transform 250ms ease;
}

.project-image:hover .project-view {
  transform: translateY(0);
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.project-meta > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}

.project-number {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
}

.project-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.project-meta h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.project-meta > div:last-child > p {
  max-width: 520px;
}

.work-note {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 30px;
  margin-top: 120px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-note span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-note p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 760px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.manifesto-mark {
  position: relative;
  align-self: end;
  height: 100%;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: min(57vw, 850px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.12em;
  transform: translate(-12%, 14%);
}

.manifesto-copy {
  z-index: 1;
  align-self: center;
  max-width: 780px;
  padding: 100px 7vw 100px 2vw;
}

.manifesto-copy h2 {
  font-size: clamp(3.2rem, 6.3vw, 7.6rem);
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.services {
  padding-top: 150px;
  padding-bottom: 150px;
}

.services .section-intro {
  grid-template-columns: 1fr;
}

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

.service-item {
  display: grid;
  grid-template-columns: 80px 0.75fr 1fr 130px;
  gap: 32px;
  align-items: center;
  min-height: 190px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.service-item:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: var(--white);
}

.service-number {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-item h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-item p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-tag {
  justify-self: end;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 7vw;
  padding: 150px max(40px, calc((100vw - 1440px) / 2));
  background: var(--ink);
  color: var(--white);
}

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

.process-heading h2 {
  max-width: 590px;
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  min-height: 190px;
  padding: 42px 0;
  border-top: 1px solid var(--line-light);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.process-steps > li > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-steps h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.process-steps p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.offer {
  padding-top: 120px;
  padding-bottom: 120px;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 70px;
  padding: clamp(38px, 6vw, 90px);
  background: var(--blue);
  color: var(--white);
}

.offer-copy h2 {
  font-size: clamp(3rem, 5.5vw, 6.5rem);
}

.offer-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.6;
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid var(--line-light);
}

.offer-price small,
.offer-price span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-price strong {
  margin: 5px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.08em;
}

.offer-price sup {
  display: inline-block;
  margin-right: 0.12em;
  font-size: 0.35em;
  letter-spacing: 0;
  vertical-align: top;
}

.offer-price .button {
  width: 100%;
  margin-top: 35px;
}

.offer-includes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.offer-includes li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 22px;
  border-right: 1px solid var(--line-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.offer-includes li:first-child {
  padding-left: 0;
}

.offer-includes li:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  padding: 150px max(40px, calc((100vw - 1440px) / 2));
  background: var(--white);
}

.contact-copy h2 {
  max-width: 740px;
  font-size: clamp(3.4rem, 6vw, 7.2rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-email {
  display: inline-flex;
  gap: 16px;
  margin-top: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  align-self: center;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
  color: var(--ink);
  resize: vertical;
  transition: border-color 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa9a4;
}

.form-wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 20px;
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.5fr 1fr 0.7fr;
  gap: 50px;
  align-items: end;
  min-height: 170px;
  padding: 38px max(40px, calc((100vw - 1440px) / 2));
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  width: min(210px, 100%);
}

.footer-brand img {
  width: 100%;
}

.site-footer > p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 1440px);
  }

  .site-header {
    padding: 0 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 140px 24px 110px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-stage {
    min-height: 590px;
    margin: 70px 0 0 12vw;
  }

  .browser-card-main {
    width: min(760px, 80vw);
  }

  .manifesto {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .service-item {
    grid-template-columns: 50px 0.8fr 1fr;
  }

  .service-tag {
    display: none;
  }

  .process,
  .contact {
    padding-right: 24px;
    padding-left: 24px;
  }
}

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

  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .site-header.is-open {
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 2;
    width: 95px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: none;
    align-content: center;
    gap: 28px;
    padding: 110px 28px 50px;
    background: var(--paper);
    color: var(--ink);
    font-size: 1.4rem;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-cta {
    width: 100%;
    min-height: 58px;
    margin-top: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.8rem;
  }

  .hero {
    padding: 120px 18px 90px;
  }

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

  h1 {
    margin-bottom: 36px;
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

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

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 390px;
    margin: 60px 0 0;
  }

  .browser-card-main {
    top: 10%;
    width: 93vw;
  }

  .stage-note-top {
    top: 0;
    right: -10px;
    grid-template-columns: auto 120px;
    width: 195px;
    padding: 13px;
  }

  .stage-note-bottom {
    right: 0;
    bottom: 4%;
  }

  .hero-scroll {
    display: none;
  }

  .work,
  .services {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .section-intro .eyebrow {
    grid-column: auto;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .project-list {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .project-featured {
    width: 100%;
  }

  .project-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-meta > div:first-child {
    justify-content: space-between;
  }

  .project-view {
    transform: translateY(0);
  }

  .work-note {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    min-height: 720px;
  }

  .manifesto-mark {
    position: absolute;
    right: -10%;
    bottom: -8%;
    width: 100%;
    height: auto;
    font-size: 100vw;
    opacity: 0.7;
    transform: none;
  }

  .manifesto-copy {
    padding: 90px 18px 220px;
  }

  .service-item {
    grid-template-columns: 35px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 32px 0;
  }

  .service-item p {
    grid-column: 2;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 90px 18px;
  }

  .process-heading {
    position: static;
  }

  .process-steps li {
    min-height: 0;
  }

  .offer {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 48px 24px;
  }

  .offer-price {
    padding: 36px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .offer-includes {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .offer-includes li,
  .offer-includes li:first-child,
  .offer-includes li:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    text-align: left;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 90px 18px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 42px 18px;
  }

  .footer-brand {
    width: 145px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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