:root {
  --paper: #f7f7f3;
  --paper-strong: #ffffff;
  --paper-muted: #ecece7;
  --ink: #1b1b19;
  --ink-soft: #4f4f4a;
  --muted: #74736c;
  --line: rgba(27, 27, 25, 0.16);
  --line-strong: rgba(27, 27, 25, 0.3);
  --orange: #df6234;
  --orange-soft: #f1b79f;
  --max: 1480px;
  --gutter: clamp(22px, 4vw, 64px);
  --header-h: 72px;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", "Courier New", monospace;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
  background: var(--paper);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

ul,
ol {
  list-style: none;
}

::selection {
  color: var(--paper-strong);
  background: var(--orange);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -120px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper-strong);
  background: var(--ink);
}

.skip-link:focus {
  top: 10px;
}

.container {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.eyebrow,
.section-index,
.micro-label,
.meta-label,
.flow-number,
.metric-label {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow,
.micro-label,
.meta-label,
.metric-label {
  color: var(--muted);
}

.section-index,
.flow-number {
  color: var(--orange);
}

.display-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .9;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(247, 247, 243, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: var(--header-h);
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  margin-left: auto;
  white-space: nowrap;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color 180ms ease-out, transform 180ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--orange);
  transform: translateY(-2px);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-trigger {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 2px;
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-caret {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 158px;
  padding: 7px;
  background: var(--paper-strong);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 50px rgba(27, 27, 25, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease-out, transform 180ms var(--ease);
}

.language-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  padding: 10px 11px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: .73rem;
}

.language-option:hover,
.language-option[aria-current="true"] {
  color: var(--orange);
  background: rgba(223, 98, 52, .08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 35;
  display: grid;
  align-content: start;
  padding: 26px var(--gutter);
  background: var(--paper);
  transform: translateX(105%);
  transition: transform 260ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}

.button,
.contact-button,
.meta-cta,
.floating-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--paper-strong);
  background: var(--orange);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color 180ms ease-out, background 180ms ease-out, transform 180ms var(--ease);
}

.button:hover,
.contact-button:hover,
.meta-cta:hover,
.floating-contact:hover {
  color: var(--paper-strong);
  background: #c84f25;
  transform: translateY(-3px);
}

.button:active,
.contact-button:active,
.meta-cta:active,
.floating-contact:active {
  transform: scale(.98);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button.secondary:hover {
  color: var(--orange);
  background: var(--paper-strong);
}

.arrow {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.home-hero,
.creator-hero {
  min-height: calc(100dvh - var(--header-h));
}

.home-hero-grid,
.creator-hero-grid {
  display: grid;
  min-height: calc(100dvh - var(--header-h));
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 118px);
  padding-block: clamp(48px, 7vw, 92px);
}

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

.hero-copy h1 {
  max-width: 760px;
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.4vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .84;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-lede,
.hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-showcase {
  position: relative;
  min-width: 0;
  height: min(640px, 68dvh);
  isolation: isolate;
}

.showcase-main,
.showcase-phone {
  position: absolute;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line-strong);
  box-shadow: 0 26px 70px rgba(27, 27, 25, .12);
}

.showcase-main {
  top: 6%;
  right: 0;
  width: 82%;
  height: 66%;
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.showcase-phone {
  bottom: 0;
  width: 26%;
  height: 66%;
  padding: 7px;
  border-radius: 28px;
  background: #1f201e;
}

.showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 21px;
}

.showcase-phone.phone-a {
  left: 1%;
  transform: rotate(-5deg);
}

.showcase-phone.phone-b {
  right: 8%;
  bottom: -2%;
  transform: rotate(5deg);
}

.showcase-caption {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 190px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .06em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr 1.1fr 1.2fr;
  border-bottom: 1px solid var(--line);
}

.meta-cell,
.meta-cta {
  min-height: 108px;
  padding: 22px clamp(18px, 2.5vw, 38px);
  border-right: 1px solid var(--line);
}

.meta-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta-value {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.meta-sub {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.meta-cta {
  border-right: 0;
}

.section {
  padding-block: clamp(84px, 11vw, 160px);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 920px;
}

.section-head h2 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -.085em;
  line-height: .86;
  text-transform: uppercase;
}

.section-lede {
  max-width: 650px;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
  line-height: 1.9;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, .72fr);
  gap: 22px;
  margin-top: 66px;
}

.project-card {
  display: block;
  min-width: 0;
}

.project-media,
.project-card-slideshow {
  position: relative;
  overflow: hidden;
  background: var(--paper-muted);
  border: 1px solid var(--line);
}

.project-card-featured .project-media,
.project-card-featured .project-card-slideshow {
  aspect-ratio: 1.48 / 1;
}

.project-card img,
.project-card-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms var(--ease), opacity 600ms ease-out;
}

.project-card-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.project-card-slideshow img.is-active {
  opacity: 1;
}

.project-card:hover .project-media > img,
.project-card:hover .project-card-slideshow img.is-active {
  transform: scale(1.018);
}

.project-card-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 18px 0 2px;
}

.project-card-content .micro-label {
  grid-column: 1 / -1;
}

.project-card-content h3 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1;
}

.project-card-content p {
  align-self: end;
  max-width: 300px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
  text-align: right;
}

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

.project-card-portrait .project-media {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 28px 18px;
}

.project-card-portrait .project-media img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 490px;
  object-fit: cover;
  border: 8px solid #242522;
  border-radius: 30px;
  box-shadow: 0 18px 34px rgba(27, 27, 25, .2);
}

.project-card-portrait .project-card-content {
  display: block;
}

.project-card-portrait .project-card-content h3 {
  margin-top: 8px;
}

.work-secondary-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.work-secondary-grid .project-media,
.work-secondary-grid .project-card-slideshow {
  aspect-ratio: 1.62 / 1;
}

.project-card-dayline img {
  object-position: center 52%;
}

.work-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.work-note a {
  color: var(--orange);
  font-weight: 700;
}

.capabilities-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.35fr);
  gap: clamp(52px, 10vw, 160px);
  align-items: start;
}

.capabilities-layout .section-head,
.process-layout .section-head {
  position: sticky;
  top: calc(var(--header-h) + 38px);
}

.capability-list,
.process-grid {
  border-top: 1px solid var(--line-strong);
}

.capability-row,
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row > span:first-child,
.process-step .flow-number {
  position: absolute;
  top: 34px;
  right: 0;
  color: var(--orange);
  font-family: var(--mono);
  font-size: .62rem;
}

.capability-row h3,
.process-step h3 {
  padding-right: 34px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.capability-row p,
.process-step p {
  max-width: 470px;
  padding-right: 82px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.8;
}

.capability-type,
.process-step strong {
  grid-column: 2;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.process {
  background: var(--paper-strong);
}

.creator-teaser {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.creator-teaser-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: 70px;
  align-items: center;
}

.creator-teaser-copy h2 {
  max-width: 730px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .84;
  text-transform: uppercase;
}

.creator-teaser-copy p {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(27, 27, 25, .78);
  font-size: 1.02rem;
  line-height: 1.85;
}

.creator-teaser-copy .button {
  margin-top: 34px;
  color: var(--orange);
  background: var(--paper-strong);
}

.creator-teaser-copy .button:hover {
  color: var(--paper-strong);
  background: var(--ink);
}

.creator-teaser-phones,
.creator-hero-phones {
  position: relative;
  height: 560px;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  padding: 7px;
  background: #242522;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 32px;
  box-shadow: 0 26px 60px rgba(27, 27, 25, .22);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.creator-teaser-phones .phone-frame:first-child {
  top: 5%;
  left: 6%;
  width: 43%;
  height: 86%;
  transform: rotate(-6deg);
}

.creator-teaser-phones .phone-frame:last-child {
  right: 4%;
  bottom: 0;
  width: 43%;
  height: 86%;
  transform: rotate(6deg);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 140px);
  margin-top: 64px;
}

.company-lead > p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.company-address {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.company-address span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.company-address strong {
  display: block;
  margin-top: 12px;
  font-size: .95rem;
  line-height: 1.8;
}

.company-table {
  border-top: 1px solid var(--line-strong);
}

.company-row {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 26px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}

.company-row dt {
  color: var(--muted);
}

.company-row dd {
  font-weight: 650;
}

.company-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 400;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
}

.contact-panel h2,
.contact h2 {
  max-width: 900px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .84;
  text-transform: uppercase;
}

.contact-details {
  margin-top: 34px;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 4.5rem);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1.1;
  overflow-wrap: anywhere;
  border-bottom: 2px solid currentColor;
}

.contact-email:hover {
  color: var(--ink);
}

.contact-socials,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 22px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  transition: color 180ms ease-out, transform 180ms var(--ease);
}

.social-link:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.instagram-mark {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid currentColor;
  border-radius: .32rem;
}

.instagram-mark::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .38rem;
  height: .38rem;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.instagram-mark::after {
  position: absolute;
  top: .17rem;
  right: .17rem;
  width: .16rem;
  height: .16rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.social-caption {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .03em;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  min-height: 110px;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  margin-top: 0;
}

/* Creator page */
.creator-hero-grid {
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.34fr);
}

.creator-hero-visual {
  position: relative;
  min-width: 0;
}

.creator-hero-phones .phone-frame:nth-child(1) {
  top: 13%;
  left: 0;
  z-index: 1;
  width: 30%;
  height: 73%;
  transform: rotate(-8deg);
}

.creator-hero-phones .phone-frame:nth-child(2) {
  top: 1%;
  left: 34%;
  z-index: 3;
  width: 35%;
  height: 88%;
}

.creator-hero-phones .phone-frame:nth-child(3) {
  right: 0;
  bottom: 1%;
  z-index: 2;
  width: 30%;
  height: 73%;
  transform: rotate(8deg);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 250px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .62rem;
  line-height: 1.6;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  min-height: 170px;
  padding: 32px var(--gutter);
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: .96;
  text-transform: uppercase;
}

.proof-item p {
  max-width: 320px;
  margin-top: 10px;
  color: var(--muted);
  font-size: .84rem;
}

.brand-promise {
  color: var(--ink);
  background: var(--orange);
  border-bottom: 1px solid rgba(27, 27, 25, .2);
}

.brand-promise-inner {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.6fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.brand-promise .eyebrow {
  color: rgba(27, 27, 25, .65);
}

.brand-promise h2 {
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .84;
  text-transform: uppercase;
}

.brand-promise p {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(27, 27, 25, .78);
  font-size: 1rem;
  line-height: 1.9;
}

.brand-promise-mark {
  display: none;
}

.how .section-head {
  max-width: 760px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr 1.1fr;
  margin-top: 68px;
  border-top: 1px solid var(--line-strong);
}

.flow-card {
  min-height: 360px;
  padding: 30px 30px 26px 0;
  border-right: 1px solid var(--line);
}

.flow-card + .flow-card {
  padding-left: 30px;
}

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

.flow-card h3 {
  margin-top: 84px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 750;
  letter-spacing: -.07em;
  line-height: .92;
  text-transform: uppercase;
}

.flow-card p {
  max-width: 350px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.8;
}

.flow-card strong {
  display: block;
  margin-top: 28px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 600;
  text-transform: uppercase;
}

.examples {
  overflow: hidden;
  background: var(--paper-strong);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.example-card {
  min-height: 176px;
  padding: 24px 24px 22px 0;
  background: transparent;
  border-right: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease-out, background 180ms ease-out;
}

.example-card + .example-card {
  padding-left: 24px;
}

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

.example-card[aria-selected="true"] {
  color: var(--paper-strong);
  background: var(--orange);
}

.example-card[aria-selected="true"] .micro-label,
.example-card[aria-selected="true"] p {
  color: rgba(255, 255, 255, .8);
}

.example-card h3 {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1;
}

.example-card p {
  max-width: 280px;
  margin-top: 12px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

.concept-stage {
  position: relative;
  margin-top: 52px;
}

.concept-track {
  display: grid;
  grid-auto-columns: minmax(205px, 1fr);
  grid-auto-flow: column;
  gap: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  padding: 8px 2px 28px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) var(--paper-muted);
  scrollbar-width: thin;
}

.concept-card {
  min-width: 0;
  scroll-snap-align: start;
}

.concept-phone {
  aspect-ratio: 9 / 19.4;
  overflow: hidden;
  padding: 6px;
  background: #22231f;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(27, 27, 25, .14);
}

.concept-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  transition: opacity 180ms ease-out, transform 420ms var(--ease);
}

.concept-card:hover img {
  transform: scale(1.01);
}

.concept-card h3 {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.concept-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.concept-hint {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .61rem;
}

.economics-panel {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 120px);
  margin-top: 64px;
  align-items: start;
}

.economics-copy h3 {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .86;
  text-transform: uppercase;
}

.economics-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.economics-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .65rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 38px;
  border-top: 1px solid var(--line-strong);
}

.metric {
  min-height: 190px;
  padding-top: 24px;
  border-bottom: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-top: 28px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .8;
  text-transform: uppercase;
}

.metric small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: .76rem;
}

.faq-list {
  max-width: 980px;
  margin: 56px 0 0 auto;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.25;
  list-style: none;
}

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

.faq-item summary::after {
  color: var(--orange);
  content: "+";
  font-family: var(--mono);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 780px;
  padding: 0 50px 28px 0;
  color: var(--ink-soft);
  font-size: .91rem;
  line-height: 1.9;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 6vw, 96px);
  margin-top: 64px;
}

.case-study-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 190px;
  padding-block: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  transition: transform 180ms var(--ease);
}

.case-study-card:hover {
  transform: translateY(-4px);
}

.case-card-top {
  display: contents;
}

.app-icon {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 8px 8px 0 rgba(27, 27, 25, .1);
}

.case-revenue {
  display: grid;
  gap: 6px;
}

.case-revenue small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.case-revenue strong {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .85;
  text-transform: uppercase;
}

.case-card-chips {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  gap: 7px;
}

.case-card-chips span {
  padding: 5px 9px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  font-size: .63rem;
}

.case-card-media,
.case-study-card > .micro-label,
.case-study-card > div:not(.case-card-top),
.case-study-arrow {
  display: none;
}

.case-study-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  margin-top: 30px;
  color: var(--muted);
  font-size: .82rem;
}

.case-study-footer > span {
  margin-right: auto;
}

.case-study-footer a {
  color: var(--orange);
  font-weight: 700;
}

.floating-contact {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 32;
  min-width: 158px;
  min-height: 50px;
  box-shadow: 0 14px 34px rgba(27, 27, 25, .16);
}

.reveal {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 700ms var(--ease);
}

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

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visual-enter {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-enter 760ms var(--ease) both;
  }

  .hero-showcase,
  .creator-hero-visual {
    animation: visual-enter 920ms 100ms var(--ease) both;
  }

  .phone-frame {
    transition: transform 500ms var(--ease);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: .67rem;
  }

  .home-hero-grid,
  .creator-hero-grid {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 8vw, 6.7rem);
  }

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

  .project-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-portrait .project-media {
    min-height: 480px;
  }

  .creator-teaser-grid {
    grid-template-columns: 1fr 420px;
  }

  .proof-item {
    padding-inline: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .language-switcher {
    margin-left: 0;
  }

  .home-hero,
  .creator-hero {
    min-height: auto;
  }

  .home-hero-grid,
  .creator-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 62px 44px;
  }

  .hero-copy h1 {
    max-width: 640px;
    font-size: clamp(4.2rem, 14vw, 7rem);
  }

  .hero-lede,
  .hero-copy > p:not(.eyebrow) {
    max-width: 520px;
  }

  .hero-showcase,
  .creator-hero-phones {
    height: min(640px, 80vw);
  }

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

  .meta-cell,
  .meta-cta {
    min-height: 96px;
    border-bottom: 1px solid var(--line);
  }

  .meta-cta {
    grid-column: 1 / -1;
  }

  .capabilities-layout,
  .process-layout,
  .company-grid,
  .economics-panel {
    grid-template-columns: 1fr;
  }

  .capabilities-layout .section-head,
  .process-layout .section-head {
    position: static;
  }

  .creator-teaser-grid {
    grid-template-columns: 1fr;
    padding-block: 72px 30px;
  }

  .creator-teaser-phones {
    height: 520px;
  }

  .brand-promise-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 76px;
  }

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

  .flow-card,
  .flow-card + .flow-card {
    min-height: auto;
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-card h3 {
    margin-top: 46px;
  }

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

  .example-card,
  .example-card + .example-card {
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .concept-track {
    grid-auto-columns: minmax(210px, 38vw);
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-panel .contact-button,
  .contact .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
  }

  .brand {
    font-size: 1.45rem;
  }

  .language-current {
    display: none;
  }

  .hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(3.8rem, 19vw, 5.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-showcase,
  .creator-hero-phones {
    height: 120vw;
    max-height: 570px;
  }

  .showcase-main {
    top: 2%;
    width: 94%;
    height: 57%;
  }

  .showcase-phone {
    width: 31%;
    height: 58%;
  }

  .showcase-phone.phone-b {
    right: 4%;
  }

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

  .meta-cell,
  .meta-cta {
    min-height: 82px;
    border-right: 0;
  }

  .meta-cta {
    grid-column: auto;
  }

  .section {
    padding-block: 82px;
  }

  .section-head h2,
  .contact-panel h2,
  .contact h2 {
    font-size: clamp(3.3rem, 16vw, 5.3rem);
  }

  .project-stack,
  .work-secondary-grid {
    grid-template-columns: 1fr;
  }

  .project-card-featured .project-media,
  .project-card-featured .project-card-slideshow {
    aspect-ratio: 1 / .85;
  }

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

  .project-card-content p {
    text-align: left;
  }

  .project-card-portrait .project-media {
    min-height: 560px;
  }

  .work-secondary-grid .project-media,
  .work-secondary-grid .project-card-slideshow {
    aspect-ratio: 1.18 / 1;
  }

  .work-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .capability-row,
  .process-step {
    grid-template-columns: 1fr;
  }

  .capability-row p,
  .process-step p {
    padding-right: 0;
  }

  .capability-type,
  .process-step strong {
    grid-column: 1;
  }

  .creator-teaser-grid {
    min-height: auto;
  }

  .creator-teaser-copy h2,
  .brand-promise h2 {
    font-size: clamp(3.4rem, 17vw, 5.7rem);
  }

  .creator-teaser-phones {
    height: 500px;
  }

  .creator-hero-phones .phone-frame:nth-child(1),
  .creator-hero-phones .phone-frame:nth-child(3) {
    width: 34%;
    height: 68%;
  }

  .creator-hero-phones .phone-frame:nth-child(2) {
    left: 29%;
    width: 42%;
    height: 86%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 28px var(--gutter);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .example-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .example-card,
  .example-card + .example-card {
    min-width: 76vw;
    scroll-snap-align: start;
  }

  .concept-track {
    grid-auto-columns: minmax(205px, 72vw);
  }

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

  .metric {
    min-height: 160px;
  }

  .faq-list {
    margin-top: 42px;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-study-card {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 22px;
  }

  .app-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }

  .case-revenue strong {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .case-study-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-email {
    font-size: clamp(1.55rem, 7vw, 2.8rem);
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-width: 0;
    padding-inline: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 30px 96px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    transform: none;
  }
}
