:root {
  --paper: #f0f0ed;
  --paper-light: #f8f8f5;
  --ink: #121212;
  --muted: #656560;
  --line: rgba(18, 18, 18, 0.16);
  --accent: #496fa6;
  --blue-soft: #dce7f8;
  --dark: #111213;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: -0.015em;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: .055;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), #b8cbe8);
  box-shadow: 0 1px 10px rgba(73,111,166,.46);
  pointer-events: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.section-shell {
  width: min(100% - 56px, 1440px);
  margin: 0 auto;
}
.mono, .section-number, .eyebrow, .card-topline, .card-kicker, .case-caption span, .visual-label, .footer > span {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: .07em;
  line-height: 1.35;
  text-transform: uppercase;
}
.section-number { color: var(--muted); display: block; margin-bottom: 24px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.065em; font-weight: 500; }
h1 em, h2 em, h3 em { font-family: var(--serif); font-weight: 400; }

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 56px, 1440px);
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .25s ease, background .25s ease, border-color .25s ease;
}
.topbar.is-scrolled {
  height: 64px;
  background: rgba(240, 240, 237, .87);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -.025em;
}
.brand > span:last-child span { color: var(--accent); }
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #030303;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 24px rgba(18,18,18,.16);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.24);
}
.brand-mark {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 11px;
  font-family: var(--serif);
  font-style: italic;
}
.desktop-nav { display: flex; gap: 27px; margin-left: 68px; }
.desktop-nav a {
  color: #3d3d39;
  font-size: 12px;
  transition: opacity .2s ease;
}
.desktop-nav a:hover { opacity: .55; }
.desktop-nav a {
  position: relative;
  padding: 4px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
}
.nav-cta span { font-size: 17px; line-height: 1; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  min-height: 780px;
  padding-top: 165px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(440px, .92fr);
  grid-template-rows: 1fr auto;
  gap: 60px;
}
.hero-copy { max-width: 735px; position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; color: #4e4e4a; margin-bottom: 22px; }
.pulse {
  position: relative;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(73,111,166,.12);
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 29px;
  font-size: clamp(60px, 6.05vw, 104px);
  line-height: .92;
}
.hero h1 em { display: block; color: var(--accent); }
.hero-lead {
  max-width: 560px;
  color: #484844;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.hero-actions { display: flex; gap: 26px; align-items: center; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button span { font-size: 16px; }
.button span, .text-link span, .nav-cta span, .card-link span, .about-contact span, .dark-ui a b, .creator-ui a b {
  display: inline-block;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.button:hover span, .text-link:hover span, .nav-cta:hover span, .card-link:hover span, .about-contact a:hover span, .dark-ui a:hover b, .creator-ui a:hover b {
  transform: translate3d(3px, -3px, 0);
}
.button-dark { color: var(--paper-light); background: var(--ink); }
.button-dark:hover { background: var(--accent); border-color: var(--accent); }
.text-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
}
.text-link span { margin-left: 7px; }
.hero-traits {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 68px 0 0;
  list-style: none;
  gap: 0;
}
.hero-traits li {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #4e4e4a;
}
.hero-traits li:not(:last-child)::after {
  content: "•";
  color: var(--accent);
  padding: 0 10px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 142px;
  right: 0;
  width: min(52vw, 737px);
  height: 560px;
  overflow: hidden;
  background: #16191e;
  isolation: isolate;
  transform: perspective(1000px) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg));
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(240,240,237,.98) 0%, rgba(240,240,237,.6) 15%, transparent 46%),
              linear-gradient(0deg, rgba(17,18,19,.48), transparent 40%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  filter: grayscale(1) contrast(1.03);
  transform: scale(1.025) translate(var(--image-x, 0), var(--image-y, 0));
  transition: transform 1.05s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.hero-light {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: .66;
  background: radial-gradient(310px circle at var(--light-x, 65%) var(--light-y, 40%), rgba(139,174,228,.36), rgba(139,174,228,.09) 31%, transparent 66%);
  mix-blend-mode: screen;
  transition: background .24s ease;
}
.visual-label {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 17px;
  color: rgba(255,255,255,.84);
  text-align: right;
  line-height: 1.25;
}
.visual-label span { color: rgba(255,255,255,.53); font-size: 8px; }
.image-shadow {
  position: absolute;
  z-index: 3;
  bottom: -50px;
  right: 10%;
  width: 68%;
  height: 115px;
  background: rgba(14,18,28,.5);
  filter: blur(38px);
}
.hero-price-card {
  position: absolute;
  z-index: 4;
  left: 15px;
  bottom: 17px;
  width: 177px;
  padding: 15px;
  color: #eff3fa;
  background: rgba(5,8,13,.9);
  border: 1px solid rgba(211,224,249,.5);
  box-shadow: 0 12px 27px rgba(0,0,0,.25);
  backdrop-filter: blur(7px);
}
.hero-price-card span, .hero-price-card small { display: block; color: rgba(240,243,249,.7); font-size: 8px; line-height: 1.33; text-transform: uppercase; letter-spacing: .08em; }
.hero-price-card strong { display: block; margin: 13px 0; font-size: 24px; letter-spacing: -.055em; font-weight: 500; }
.hero-price-card small { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.2); font-size: 7px; }
.hero-orbit {
  position: absolute;
  z-index: 3;
  right: -35px;
  bottom: 115px;
  color: rgba(230,239,255,.46);
  font: 8px "SFMono-Regular", Consolas, monospace;
  letter-spacing: .1em;
  transform: rotate(-90deg);
  transform-origin: center;
}
.hero-footnote {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  margin-top: -12px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 17% 45% 1fr;
  border-top: 1px solid var(--line);
}
.hero-footnote .mono { color: var(--muted); }
.hero-footnote p { max-width: 310px; margin: 0; font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.15; }
.scroll-cue { justify-self: end; display: flex; align-items: center; gap: 9px; color: #777772; font-size: 8px; letter-spacing: .07em; }
.scroll-cue i { width: 23px; height: 1px; background: var(--accent); position: relative; }
.scroll-cue i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent); transform: rotate(-45deg); }

.audiences { padding-top: 184px; padding-bottom: 145px; }
.section-intro { display: grid; grid-template-columns: 1fr 1.85fr 1fr; gap: 28px; align-items: end; margin-bottom: 55px; }
.section-intro .section-number { align-self: start; }
.section-intro h2, .split-heading h2, .statement h2, .work h2, .about h2, .process h2, .testimonial-heading h2, .faq h2 {
  margin: 0;
  font-size: clamp(41px, 4vw, 67px);
  line-height: .95;
}
.section-intro h2 em, .split-heading h2 em, .statement h2 em, .work h2 em, .about h2 em, .process h2 em, .testimonial-heading h2 em, .faq h2 em { color: var(--accent); }
.section-intro > p { margin: 0 0 3px; max-width: 300px; color: var(--muted); font-size: 13px; line-height: 1.42; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card {
  min-height: 549px;
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: 0 19px 35px rgba(16,16,16,.075); }
.enterprise { background: #dfdfdb; }
.creator { background: var(--dark); color: #f3f3ef; border-color: var(--dark); }
.card-topline { display: flex; justify-content: space-between; color: #696963; }
.creator .card-topline { color: #a5a5a1; }
.card-kicker { display: block; margin-bottom: 27px; color: var(--accent); }
.creator .card-kicker { color: #90b2e6; }
.audience-card h3 { margin-bottom: 20px; font-size: clamp(36px, 3.6vw, 57px); line-height: .91; }
.audience-card h3 em { color: var(--accent); }
.creator h3 em { color: #9eb9e4; }
.audience-card p { max-width: 410px; color: #51514d; line-height: 1.45; font-size: 14px; }
.creator p { color: #c2c2bd; }
.benefit-list { margin: 20px 0 25px; padding: 0; list-style: none; }
.benefit-list li { border-top: 1px solid rgba(20,20,20,.2); padding: 9px 0; font-size: 12px; }
.creator .benefit-list li { border-color: rgba(255,255,255,.22); }
.benefit-list li::before { content: "↗"; margin-right: 8px; color: var(--accent); }
.creator .benefit-list li::before { color: #9eb9e4; }
.card-link { align-self: flex-start; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 11px; font-weight: 500; }
.card-link span { margin-left: 18px; font-size: 15px; }

.deliveries { padding-top: 138px; padding-bottom: 156px; border-top: 1px solid var(--line); }
.split-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 10%; align-items: end; margin-bottom: 77px; }
.split-heading p, .work-head > p { max-width: 350px; margin: 0 0 3px; color: var(--muted); font-size: 14px; line-height: 1.48; }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  min-height: 109px;
  display: grid;
  grid-template-columns: 10% 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}
.service-item:hover { padding-left: 14px; padding-right: 14px; background: #e5e5e1; }
.service-index { font: 10px/1 "SFMono-Regular", Consolas, monospace; color: var(--muted); }
.service-item h3 { margin: 0 0 7px; font-size: clamp(23px, 2.2vw, 32px); line-height: 1; }
.service-item p { max-width: 558px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.36; }
.service-arrow { width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 16px; transition: color .2s ease, background .2s ease; }
.service-item:hover .service-arrow { background: var(--ink); color: var(--paper); }

.statement {
  position: relative;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 133px;
  color: #f2f3f3;
  background: var(--dark);
}
.statement::before { content: ""; position: absolute; width: 520px; height: 520px; left: -230px; bottom: -300px; border-radius: 50%; border: 1px solid rgba(119,153,201,.38); box-shadow: 0 0 0 65px rgba(81,111,152,.09), 0 0 0 155px rgba(81,111,152,.05); }
.statement::after { content: ""; position: absolute; width: 350px; height: 350px; right: 7%; top: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(91,129,187,.35), transparent 65%); filter: blur(10px); }
.statement-orbit { position: absolute; color: rgba(204,217,239,.16); bottom: 69px; left: 3%; font: 11px "SFMono-Regular", Consolas, monospace; letter-spacing: .45em; white-space: nowrap; transform: rotate(-12deg); }
.statement-copy { position: relative; z-index: 1; max-width: 790px; margin: 0 auto 103px; }
.statement .section-number { color: #90908c; }
.statement h2 em { color: #9fbce7; }
.statement-copy p { max-width: 482px; margin: 25px 0 0; color: #bdbdb8; font-size: 15px; line-height: 1.45; }
.difference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255,255,255,.18);
  border-top: 1px solid rgba(255,255,255,.18);
}
.difference-grid > div { min-height: 182px; padding: 18px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.difference-grid span { color: #91afd8; font: 10px "SFMono-Regular", Consolas, monospace; }
.difference-grid h3 { margin: 41px 0 8px; font-size: 20px; letter-spacing: -.045em; }
.difference-grid p { max-width: 250px; margin: 0; color: #b6b6b1; font-size: 12px; line-height: 1.4; }

.work { padding-top: 147px; padding-bottom: 150px; }
.work-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 63px; }
.case-grid { display: grid; grid-template-columns: 1.6fr .93fr; gap: 20px; }
.case-window { padding: 9px; min-height: 526px; background: #d6d6d1; border: 1px solid var(--line); }
.window-bar { height: 22px; display: flex; align-items: center; gap: 5px; padding: 0 6px; }
.window-bar i { width: 5px; height: 5px; border-radius: 50%; background: #7d7d76; }
.window-bar span { margin-left: 7px; color: #777771; font: 8px "SFMono-Regular", Consolas, monospace; text-transform: uppercase; }
.case-ui { position: relative; height: calc(100% - 22px); min-height: 485px; overflow: hidden; }
.dark-ui { padding: 25px; color: #fbfbf8; background: #111; background-image: radial-gradient(circle at 85% 28%, rgba(75,110,159,.67), transparent 20%), linear-gradient(120deg, transparent 56%, rgba(255,255,255,.07) 56.2%, transparent 56.5%); }
.ui-logo, .ui-menu { font: 10px "SFMono-Regular", Consolas, monospace; letter-spacing: .08em; }
.ui-menu { float: right; color: #acaca8; }
.dark-ui h3 { clear: both; position: relative; z-index: 1; max-width: 540px; margin: 111px 0 27px; font-size: clamp(49px, 5.1vw, 80px); line-height: .89; }
.dark-ui a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 28px; padding: 11px 12px; color: #111; background: #f5f5f1; font-size: 10px; font-weight: 600; }
.dark-ui a b { font-size: 16px; font-weight: 400; }
.ui-stat { position: absolute; bottom: 26px; right: 26px; width: 154px; padding: 14px; border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.ui-stat small { display: block; color: #aaa; font-size: 8px; text-transform: uppercase; }
.ui-stat strong { display: block; margin-top: 19px; font-size: 24px; letter-spacing: -.05em; font-weight: 400; }
.case-caption { padding-top: 14px; }
.case-caption span { color: var(--muted); }
.case-caption h3 { margin: 9px 0 5px; font-size: 21px; line-height: 1; }
.case-caption p { margin: 0; color: var(--muted); font-size: 12px; }
.case-window, .creator-ui { transition: transform .55s cubic-bezier(.16,1,.3,1), box-shadow .55s ease; }
.case:hover .case-window, .case:hover .creator-ui { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(11,14,20,.14); }
.case:hover .dark-ui::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 35%, rgba(190,215,255,.12) 47%, transparent 58%);
  transform: translateX(-120%);
  animation: case-sheen 1.05s cubic-bezier(.16,1,.3,1) both;
  pointer-events: none;
}
.creator-ui { position: relative; min-height: 526px; padding: 25px 20px; overflow: hidden; color: #1a2226; background: #bccdca; }
.creator-ui::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; top: 67px; right: -150px; background: #e5d5bf; }
.creator-ui > * { position: relative; z-index: 1; }
.creator-dot { display: block; width: 11px; height: 11px; margin-bottom: 41px; border-radius: 50%; background: #1a2226; }
.creator-ui small { font: 9px "SFMono-Regular", Consolas, monospace; letter-spacing: .07em; }
.creator-ui h3 { margin: 12px 0 15px; font-size: 57px; line-height: .84; font-weight: 700; letter-spacing: -.08em; }
.creator-photo { width: 100%; height: 202px; margin-bottom: 20px; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.14)), url("assets/pablo-veros.png") 56% 26% / 230% auto; filter: grayscale(1) contrast(1.15); mix-blend-mode: multiply; opacity: .73; }
.creator-ui a { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(26,34,38,.35); font: 9px "SFMono-Regular", Consolas, monospace; }
.creator-ui a b { font-size: 14px; }

.about { padding-top: 150px; padding-bottom: 150px; display: grid; grid-template-columns: 32% 1fr; }
.about-aside { display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 2px; }
.about-aside .mono { color: var(--muted); line-height: 1.55; }
.portrait-frame {
  position: relative;
  width: min(100%, 256px);
  aspect-ratio: 1 / 1.18;
  margin: 20px 0;
  overflow: hidden;
  color: #f5f6f5;
  background: #17191b;
  box-shadow: 0 18px 34px rgba(21,21,19,.13);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,32,49,.12) 27%, rgba(9,13,18,.28) 71%, rgba(7,10,14,.82));
  pointer-events: none;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 1px solid rgba(233,240,250,.28);
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.03);
  transition: transform .9s cubic-bezier(.16,1,.3,1), filter .7s ease;
}
.portrait-frame:hover img { filter: grayscale(.3) contrast(1.06); transform: scale(1.1); }
.portrait-frame figcaption {
  position: absolute;
  z-index: 3;
  right: 19px;
  bottom: 18px;
  left: 19px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 8px "SFMono-Regular", Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.portrait-frame figcaption span:last-child { color: #b9cce8; text-align: right; }
.about-copy { max-width: 720px; }
.about h2 { margin-bottom: 42px; }
.large-copy { max-width: 690px; margin-bottom: 24px; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.1; letter-spacing: -.055em; }
.about-copy > p:not(.large-copy) { max-width: 527px; color: var(--muted); font-size: 14px; line-height: 1.52; }
.about-contact { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 37px; }
.about-contact a { border-bottom: 1px solid var(--ink); padding-bottom: 4px; font-size: 12px; font-weight: 500; }
.about-contact span { margin-left: 18px; }

.process { padding-top: 130px; padding-bottom: 145px; background: #e0e0dc; }
.process-intro { display: grid; grid-template-columns: 1fr 2fr; margin-bottom: 77px; }
.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 10% 1fr; gap: 25px; min-height: 91px; padding: 16px 0; align-items: center; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--muted); font: 10px "SFMono-Regular", Consolas, monospace; }
.process-list div { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.process-list h3 { margin: 0; font-size: 26px; }
.process-list p { max-width: 360px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.36; }

.testimonials { padding-top: 142px; padding-bottom: 150px; }
.testimonial-heading { margin-bottom: 64px; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
blockquote { min-height: 292px; display: flex; flex-direction: column; margin: 0; padding: 21px; border: 1px solid var(--line); background: #f5f5f2; }
blockquote > span { display: block; color: var(--accent); font: 50px/.8 var(--serif); }
blockquote p { margin: 49px 0 auto; font-size: 17px; line-height: 1.22; letter-spacing: -.04em; }
blockquote footer { padding-top: 15px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 600; }
blockquote footer small { color: var(--muted); font-size: 10px; font-weight: 400; }

.faq { padding-top: 145px; padding-bottom: 158px; display: grid; grid-template-columns: 37% 1fr; gap: 7%; border-top: 1px solid var(--line); }
.faq-intro p { max-width: 270px; margin: 26px 0 0; color: var(--muted); font-size: 13px; line-height: 1.47; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 20px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 500; letter-spacing: -.035em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--accent); font-size: 22px; font-weight: 300; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 580px; padding: 0 40px 20px 0; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.closing {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  padding: 121px max(28px, calc((100vw - 1440px)/2 + 28px));
  color: #f3f3f0;
  background: #101214;
}
.closing::before { content: ""; position: absolute; width: 780px; height: 780px; top: -399px; left: 50%; transform: translateX(-45%); border-radius: 50%; background: radial-gradient(circle, rgba(92,130,190,.49), rgba(62,86,120,.16) 38%, transparent 68%); filter: blur(12px); }
.closing > *:not(.closing-lines) { position: relative; z-index: 1; }
.closing .section-number { color: #a0a09d; }
.closing h2 { max-width: 940px; margin: 0; font-size: clamp(51px, 6vw, 93px); line-height: .88; letter-spacing: -.073em; }
.closing h2 em { color: #a9c5ee; font-family: var(--serif); font-weight: 400; }
.closing p { max-width: 472px; margin: 28px 0 32px; color: #c1c1bd; font-size: 16px; line-height: 1.4; }
.button-light { color: #141414; background: #f3f3ef; }
.button-light:hover { color: #f5f5f2; background: var(--accent); border-color: var(--accent); }
.closing-lines { position: absolute; z-index: 1; right: 7%; bottom: -260px; width: 520px; height: 520px; border: 1px solid rgba(149,181,224,.23); border-radius: 50%; box-shadow: 0 0 0 55px rgba(149,181,224,.09), 0 0 0 140px rgba(149,181,224,.05); }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes orbit-drift {
  from { transform: rotate(-12deg) translateX(-12px); }
  to { transform: rotate(-12deg) translateX(18px); }
}
@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}
@keyframes case-sheen {
  to { transform: translateX(120%); }
}

.is-ready .hero-copy > * {
  opacity: 0;
  animation: hero-enter .85s cubic-bezier(.16,1,.3,1) forwards;
}
.is-ready .hero-copy > *:nth-child(1) { animation-delay: 70ms; }
.is-ready .hero-copy > *:nth-child(2) { animation-delay: 130ms; }
.is-ready .hero-copy > *:nth-child(3) { animation-delay: 200ms; }
.is-ready .hero-copy > *:nth-child(4) { animation-delay: 280ms; }
.is-ready .hero-copy > *:nth-child(5) { animation-delay: 350ms; }
.is-ready .hero-visual { opacity: 0; animation: fade-in .95s cubic-bezier(.16,1,.3,1) 160ms forwards; }
.is-ready .hero-footnote { opacity: 0; animation: fade-in .7s ease 450ms forwards; }
.statement-orbit { animation: orbit-drift 15s ease-in-out infinite alternate; }
.closing-lines { animation: rotate-slow 48s linear infinite; }

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .8s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms), transform .8s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
.motion-ready .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.motion-ready .audience-card.reveal.is-visible:hover { transform: translateY(-5px); }

.footer { min-height: 88px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); }
.footer p { margin: 0; color: var(--muted); font-size: 11px; text-align: center; }
.footer > span { justify-self: end; color: var(--muted); }

@media (max-width: 900px) {
  .hero { min-height: 868px; padding-top: 143px; grid-template-columns: 1fr; }
  .hero h1 { max-width: 650px; }
  .hero-visual { top: 424px; width: min(68vw, 573px); height: 390px; }
  .hero-footnote { margin-top: 6px; grid-template-columns: 20% 1fr; }
  .scroll-cue { display: none; }
  .section-intro { grid-template-columns: 1fr 2fr; }
  .section-intro > p { grid-column: 2; }
  .case-ui { min-height: 397px; }
  .case-window { min-height: 437px; }
  .creator-ui { min-height: 437px; }
  .creator-ui h3 { font-size: 45px; }
  .creator-photo { height: 148px; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .section-shell { width: min(100% - 32px, 1440px); }
  .topbar { width: min(100% - 32px, 1440px); height: 67px; }
  .topbar.is-scrolled { height: 57px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 23px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 25; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; gap: 18px; padding: 70px 28px; color: var(--paper); background: var(--dark); opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
  .mobile-nav.is-open { visibility: visible; opacity: 1; }
  .mobile-nav a { font-size: 36px; letter-spacing: -.06em; }
  .mobile-nav a:last-child { margin-top: 20px; color: #9bb9e5; font-family: var(--serif); font-size: 32px; font-style: italic; }
  .hero { min-height: 790px; padding-top: 118px; gap: 0; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero h1 { max-width: 420px; margin-bottom: 20px; font-size: clamp(49px, 15vw, 73px); line-height: .9; }
  .hero-lead { max-width: 337px; font-size: 15px; }
  .hero-actions { gap: 20px; margin-top: 25px; }
  .button { min-height: 45px; padding: 0 13px; font-size: 11px; }
  .hero-traits { max-width: 290px; margin-top: 35px; row-gap: 7px; }
  .hero-traits li { font-size: 8px; }
  .hero-traits li:not(:last-child)::after { padding: 0 6px; }
  .hero-visual { top: 462px; right: -16px; width: 78vw; height: 270px; }
  .hero-visual::before { background: linear-gradient(90deg, rgba(240,240,237,.92) 0%, rgba(240,240,237,.22) 24%, transparent 54%), linear-gradient(0deg, rgba(17,18,19,.48), transparent 40%); }
  .hero-price-card { left: 9px; bottom: 9px; width: 124px; padding: 10px; }
  .hero-price-card strong { margin: 7px 0; font-size: 19px; }
  .hero-price-card span, .hero-price-card small { font-size: 6px; }
  .hero-price-card small { padding-top: 7px; }
  .hero-orbit { display: none; }
  .visual-label { top: 9px; right: 10px; font-size: 7px; }
  .visual-label span { font-size: 6px; }
  .hero-footnote { align-self: end; grid-template-columns: 29% 1fr; padding: 12px 0; }
  .hero-footnote p { font-size: 13px; }

  .audiences { padding-top: 100px; padding-bottom: 91px; }
  .section-intro, .split-heading, .work-head, .about, .process-intro, .faq { display: block; }
  .section-intro { margin-bottom: 36px; }
  .section-number { margin-bottom: 18px; font-size: 9px; }
  .section-intro h2, .split-heading h2, .statement h2, .work h2, .about h2, .process h2, .testimonial-heading h2, .faq h2 { font-size: clamp(38px, 12vw, 55px); }
  .section-intro > p, .split-heading p, .work-head > p { margin-top: 20px; font-size: 13px; }
  .audience-grid { grid-template-columns: 1fr; gap: 11px; }
  .audience-card { min-height: 484px; padding: 17px; }
  .audience-card h3 { font-size: 42px; }
  .audience-card p { font-size: 13px; }

  .deliveries { padding-top: 91px; padding-bottom: 94px; }
  .split-heading { margin-bottom: 42px; }
  .service-item { min-height: 130px; grid-template-columns: 28px 1fr auto; gap: 9px; }
  .service-item h3 { font-size: 24px; line-height: .98; }
  .service-item p { font-size: 12px; }
  .service-arrow { width: 28px; height: 28px; font-size: 13px; }
  .service-item:hover { padding-left: 5px; padding-right: 5px; }

  .statement { width: 100%; padding: 92px 16px; }
  .statement-copy { margin-bottom: 61px; }
  .statement-copy p { font-size: 14px; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid > div { min-height: 137px; padding: 14px; }
  .difference-grid h3 { margin-top: 27px; }
  .statement-orbit { bottom: 16px; left: -32%; }

  .work { padding-top: 94px; padding-bottom: 90px; }
  .work-head { margin-bottom: 37px; }
  .case-grid { grid-template-columns: 1fr; gap: 33px; }
  .case-window { min-height: 370px; }
  .case-ui { min-height: 330px; }
  .dark-ui { padding: 17px; }
  .dark-ui h3 { margin-top: 68px; font-size: 47px; }
  .ui-stat { right: 16px; bottom: 16px; width: 123px; padding: 10px; }
  .ui-stat strong { margin-top: 12px; font-size: 20px; }
  .creator-ui { min-height: 425px; }
  .creator-ui h3 { font-size: 49px; }
  .creator-photo { width: 85%; height: 141px; }

  .about { padding-top: 94px; padding-bottom: 90px; }
  .about-aside { margin-bottom: 55px; }
  .about-aside .mono { display: none; }
  .portrait-frame { width: min(100%, 218px); margin: 0; }
  .about h2 { margin-bottom: 27px; }
  .large-copy { font-size: 27px; }
  .about-contact { margin-top: 28px; gap: 13px 18px; }
  .process { width: 100%; padding: 88px 16px; }
  .process-intro { margin-bottom: 45px; }
  .process-list li { grid-template-columns: 31px 1fr; gap: 8px; min-height: 100px; }
  .process-list div { display: block; }
  .process-list h3 { margin-bottom: 7px; font-size: 22px; }
  .process-list p { font-size: 12px; }

  .testimonials { padding-top: 91px; padding-bottom: 94px; }
  .testimonial-heading { margin-bottom: 38px; }
  .quotes { grid-template-columns: 1fr; gap: 10px; }
  blockquote { min-height: 230px; }
  blockquote p { margin-top: 29px; font-size: 16px; }
  .faq { padding-top: 93px; padding-bottom: 95px; }
  .faq-intro { margin-bottom: 40px; }
  .faq summary { font-size: 16px; padding: 18px 0; }
  .faq details p { padding-right: 8px; font-size: 12px; }

  .closing { min-height: 465px; padding: 87px 16px; }
  .closing h2 { font-size: clamp(49px, 15vw, 67px); }
  .closing p { font-size: 14px; }
  .closing-lines { width: 320px; height: 320px; right: -76px; bottom: -183px; }
  .footer { min-height: 140px; grid-template-columns: 1fr 1fr; align-content: center; gap: 14px; }
  .footer p { grid-row: 2; grid-column: 1 / -1; text-align: left; }
  .footer > span { font-size: 8px; }
}

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