:root {
  --navy:#091c31;
  --ink:#152b42;
  --muted:#536273;
  --paper:#fafbfc;
  --line:#d9e0e6;
  --blue:#b8d8f0;
  --sans:'Manrope',Arial,sans-serif;
  --serif:'Instrument Serif',Georgia,serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid #397fae;
  outline-offset:6px;
}
::selection {
  background:#b8d8f0;
  color:var(--navy);
}
.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  z-index:20;
  padding:12px;
  background:white;
}
.skip-link:focus {
  top:10px;
}
.header {
  height:112px;
  max-width:1600px;
  margin:auto;
  padding:0 5%;
  display:flex;
  align-items:center;
  gap:44px;
}
.brand {
  width:180px;
  display:flex;
  align-items:center;
  flex-direction:column;
}
.brand img {
  width:164px;
  height:57px;
  object-fit:contain;
}
.brand span {
  font-size:10px;
  letter-spacing:.34em;
  line-height:1.3;
  margin-top:-4px;
}
.navigation {
  display:flex;
  gap:35px;
  margin-left:auto;
  font-size:14px;
}
.navigation a {
  position:relative;
}
.navigation a:after {
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  height:1px;
  width:0;
  background:currentColor;
  transition:width .25s;
}
.navigation a:hover:after {
  width:100%;
}
.header-contact {
  font-size:14px;
  border:1px solid var(--line);
  padding:11px 20px;
  border-radius:30px;
  display:flex;
  gap:25px;
  align-items:center;
}
.header-contact:hover {
  background:var(--navy);
  color:white;
}
.header-contact span {
  font-size:22px;
}
.menu-toggle {
  display:none;
}
.hero {
  position:relative;
  isolation:isolate;
  min-height:770px;
  margin:0 24px;
  background:var(--navy);
  color:white;
  overflow:hidden;
  padding:72px max(4vw,36px) 96px;
  border-radius:5px;
}
.hero-content {
  position:relative;
  z-index:2;
  max-width:780px;
}
.eyebrow {
  font-size:12px;
  letter-spacing:.16em;
  font-weight:600;
  line-height:1.6;
  margin:0 0 28px;
  color:var(--muted);
}
.eyebrow.light {
  color:#c1cfdd;
}
h1,h2,h3,p {
  margin-top:0;
}
h1 {
  font-size:clamp(72px,7.8vw,120px);
  letter-spacing:-.065em;
  line-height:.98;
  font-weight:500;
  margin:0 0 35px;
}
em {
  font-family:var(--serif);
  font-weight:400;
  letter-spacing:-.045em;
}
h1 em {
  color:#bed6e8;
  font-size:1.17em;
}
.hero-description {
  font-size:16px;
  color:#c6d2df;
  line-height:1.8;
  margin-bottom:29px;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  padding:17px 24px;
  font-size:14px;
  font-weight:600;
  min-height:56px;
  border:1px solid transparent;
  border-radius:3px;
  transition:background .25s,transform .25s;
}
.button:hover {
  transform:translateY(-3px);
}
.button-white {
  background:#fff;
  color:var(--navy);
}
.button-white:hover {
  background:#deebf5;
}
.button span {
  font-size:23px;
  line-height:1;
}
.text-link {
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:18px;
}
.text-link.light {
  color:#dce5ed;
}
.text-link:hover {
  text-decoration:underline;
  text-underline-offset:6px;
}
.hero-signature {
  position:absolute;
  right:5%;
  top:43%;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:18px;
  font-size:12px;
  letter-spacing:.22em;
  color:#aabecf;
  z-index:1;
}
.hero-bottom {
  position:absolute;
  bottom:28px;
  left:max(4vw,36px);
  right:max(4vw,36px);
  border-top:1px solid #ffffff26;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:12px;
  color:#acbece;
}
.hero-bottom>span:last-child {
  letter-spacing:.18em;
  display:flex;
  gap:25px;
}
.section {
  padding:112px 6.5%;
  max-width:1600px;
  margin:0 auto;
}
h2 {
  font-size:clamp(38px,4vw,62px);
  line-height:1.12;
  letter-spacing:-.052em;
  font-weight:500;
  margin-bottom:32px;
}
h2 em {
  font-size:1.16em;
}
.intro {
  display:grid;
  grid-template-columns:1fr 2.15fr;
  gap:50px;
  align-items:start;
}
.intro>.eyebrow {
  padding-top:12px;
}
.intro p:not(.eyebrow) {
  max-width:655px;
  color:var(--muted);
  margin-bottom:0;
  line-height:1.9;
}
.work {
  border-top:1px solid var(--line);
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:45px;
  margin-bottom:58px;
}
.section-heading h2 {
  margin:0;
}
.section-heading>p {
  font-size:15px;
  color:var(--muted);
  max-width:360px;
  margin:0 0 7px;
}
.twx-visual {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  background:#e8edf0;
  min-height:540px;
  overflow:hidden;
  border-radius:4px;
}
.twx-product {
  padding:50px 0 0 46px;
  overflow:hidden;
}
.twx-logo {
  width:210px;
  max-height:40px;
  object-fit:contain;
  object-position:left;
}
.twx-product>p {
  font-size:37px;
  line-height:1.16;
  letter-spacing:-.04em;
  margin:34px 28px 32px 0;
}
.twx-dashboard {
  width:670px;
  max-width:none;
  box-shadow:0 25px 60px #23344a22;
  border-radius:8px;
  transform:rotate(-3deg);
  transform-origin:left top;
}
.twx-photo {
  width:100%;
  height:100%;
  max-height:620px;
  object-fit:cover;
  object-position:center 53%;
}
.project-caption {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:26px 0;
}
.project-caption .eyebrow {
  margin-bottom:8px;
  font-size:11px;
}
.project-caption h3 {
  font-size:27px;
  letter-spacing:-.045em;
  font-weight:500;
  margin-bottom:4px;
}
.project-caption p:not(.eyebrow) {
  font-size:14px;
  color:var(--muted);
  margin:0;
}
.round-link {
  border:1px solid #bac6d0;
  border-radius:50%;
  width:55px;
  height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex:none;
  background:transparent;
  transition:background .25s,transform .25s;
}
.round-link:hover {
  background:var(--navy);
  color:white;
  transform:rotate(10deg);
}
.contact {
  background:var(--navy);
  max-width:none;
  color:white;
  padding-top:96px;
  padding-bottom:96px;
}
.contact h2 {
  font-size:clamp(55px,7vw,104px);
}
.contact h2 em {
  color:#c5dbea;
}
.footer {
  padding:30px 6.5%;
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:var(--muted);
}
@media(min-width:1700px) {
  .hero {
    max-width:1552px;
    margin:auto;
  }
}
@media(max-width:1050px) {
  .header {
    gap:22px;
    padding:0 4%;
  }
  .navigation {
    gap:20px;
  }
  .hero {
    padding-left:5%;
    margin:0 16px;
    min-height:740px;
  }
  .hero-signature {
    opacity:.5;
    right:3%;
  }
  .section {
    padding:85px 6%;
  }
  .intro {
    grid-template-columns:1fr;
    gap:12px;
  }
  .section-heading {
    gap:25px;
  }
  .twx-visual {
    min-height:430px;
  }
  .twx-product {
    padding:35px 0 0 30px;
  }
  .twx-product>p {
    font-size:29px;
  }
  .twx-dashboard {
    width:540px;
  }
  .twx-photo {
    max-height:510px;
  }
}
@media(max-width:700px) {
  html {
    scroll-padding-top:90px;
  }
  .header {
    height:90px;
    gap:15px;
    padding:0 6%;
  }
  .brand {
    width:130px;
  }
  .brand img {
    width:130px;
    height:45px;
  }
  .brand span {
    font-size:8px;
  }
  .navigation {
    display:none;
    position:absolute;
    top:90px;
    left:0;
    right:0;
    z-index:10;
    background:var(--paper);
    padding:26px 6%;
    margin:0;
    border-bottom:1px solid var(--line);
    font-size:18px;
  }
  .navigation.is-open {
    display:flex;
    flex-direction:column;
  }
  .header-contact {
    margin-left:auto;
    font-size:12px;
    padding:8px 13px;
    gap:12px;
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    gap:6px;
    background:none;
    border:0;
    padding:12px 3px;
    width:30px;
    min-height:44px;
    justify-content:center;
  }
  .menu-toggle span {
    height:1px;
    background:var(--navy);
    width:24px;
    transition:transform .25s;
  }
  .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);
  }
  .hero {
    margin:0 10px;
    padding:43px 25px 95px;
    min-height:730px;
  }
  .hero .eyebrow {
    font-size:10px;
    max-width:260px;
    margin-bottom:30px;
  }
  h1 {
    font-size:clamp(58px,12.8vw,89px);
    line-height:1.01;
    margin-bottom:32px;
  }
  .hero-description {
    font-size:15px;
    max-width:325px;
  }
  .desktop-break {
    display:none;
  }
  .hero-actions {
    gap:24px;
    align-items:flex-start;
    flex-direction:column;
  }
  .hero-bottom {
    left:25px;
    right:25px;
    bottom:22px;
    font-size:10px;
  }
  .hero-bottom>span:first-child {
    max-width:190px;
  }
  .hero-bottom>span:last-child {
    font-size:9px;
    letter-spacing:.1em;
    gap:6px;
    align-items:center;
  }
  .hero-signature {
    display:none;
  }
  .section {
    padding:65px 7%;
  }
  .eyebrow {
    font-size:11px;
    margin-bottom:22px;
  }
  h2 {
    font-size:39px;
  }
  .intro p:not(.eyebrow) {
    font-size:16px;
  }
  .section-heading {
    display:block;
    margin-bottom:34px;
  }
  .section-heading>p {
    margin-top:26px;
  }
  .section-heading>p br {
    display:none;
  }
  .twx-visual {
    grid-template-columns:1fr;
    min-height:0;
  }
  .twx-product {
    padding:29px 0 0 24px;
    height:350px;
  }
  .twx-product>p {
    font-size:28px;
    margin:25px 0;
  }
  .twx-logo {
    width:185px;
  }
  .twx-dashboard {
    width:430px;
  }
  .twx-photo {
    height:390px;
    object-position:50% 55%;
  }
  .project-caption {
    align-items:center;
  }
  .project-caption h3 {
    font-size:24px;
  }
  .project-caption p:not(.eyebrow) {
    font-size:14px;
    max-width:260px;
  }
  .round-link {
    width:46px;
    height:46px;
  }
  .contact h2 {
    font-size:54px;
  }
  .footer {
    font-size:12px;
    gap:20px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
}
/* Art direction: navy, generous editorial type, and the original signature. */
.header {
  position:relative;
  z-index:5;
}
.hero-art {
  position:absolute;
  right:-5%;
  top:0;
  height:100%;
  width:73%;
  max-width:none;
  object-fit:cover;
  object-position:right center;
  z-index:-2;
  mask-image:linear-gradient(90deg,transparent 0%,#000 27%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 27%);
}
.hero:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,var(--navy) 9%,#091c31f5 22%,#091c3100 60%);
  z-index:-1;
  pointer-events:none;
}
.hero-signature {
  top:35px;
  right:36px;
  font-size:10px;
  letter-spacing:.15em;
  opacity:.65;
}
.hero h1 {
  font-weight:500;
}
.hero-description {
  max-width:490px;
}
.services {
  display:grid;
  grid-template-columns:.85fr 1.3fr;
  gap:95px;
  padding-top:25px;
  padding-bottom:115px;
}
.services-heading>p:not(.eyebrow) {
  color:var(--muted);
  max-width:320px;
  font-size:15px;
  line-height:1.85;
  margin-bottom:30px;
}
.services-heading h2 {
  font-size:clamp(42px,4vw,62px);
}
.service {
  border-top:1px solid var(--line);
}
.service:last-child {
  border-bottom:1px solid var(--line);
}
.service summary {
  list-style:none;
  display:grid;
  grid-template-columns:28px 1fr 24px;
  gap:20px;
  align-items:center;
  cursor:pointer;
  padding:28px 0;
  font-size:22px;
  line-height:1.4;
  font-weight:500;
  letter-spacing:-.025em;
}
.service summary::-webkit-details-marker {
  display:none;
}
.service-number {
  font-size:12px;
  align-self:start;
  padding-top:7px;
  color:#6d7a89;
  letter-spacing:0;
}
.plus {
  width:20px;
  height:20px;
  position:relative;
}
.plus:before,.plus:after {
  content:'';
  position:absolute;
  background:var(--ink);
  height:1px;
  width:17px;
  left:1px;
  top:9px;
}
.plus:after {
  transform:rotate(90deg);
  transition:transform .25s;
}
.service[open] .plus:after {
  transform:rotate(0);
}
.service summary:hover {
  color:#467190;
}
.service-body {
  padding:0 35px 32px 48px;
}
.service-body>p {
  font-size:15px;
  line-height:1.85;
  color:var(--muted);
  margin-bottom:25px;
}
.tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tags span {
  border:1px solid var(--line);
  padding:5px 11px;
  font-size:12px;
  border-radius:3px;
  color:var(--muted);
}
.work {
  background:#f2f5f7;
  max-width:none;
  padding-left:max(6.5%,calc((100vw - 1392px)/2));
  padding-right:max(6.5%,calc((100vw - 1392px)/2));
}
.twx-visual {
  border:1px solid #dfe5ea;
}
.project-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  margin-top:42px;
}
.project-cover {
  width:100%;
  border:0;
  min-height:370px;
  border-radius:4px;
  padding:30px 35px;
  text-align:left;
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  transition:transform .5s;
}
.project-cover:hover {
  transform:translateY(-5px);
}
.cover-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:10px;
  letter-spacing:.14em;
  width:100%;
  opacity:.75;
}
.cover-top>span:last-child {
  font-size:25px;
  line-height:1;
}
.ctx-cover {
  background:#10253b;
  color:#e6f0f7;
}
.ctx-name {
  font-family:var(--sans);
  font-size:clamp(45px,5vw,76px);
  font-weight:500;
  letter-spacing:-.065em;
  line-height:1;
  margin-top:50px;
}
.ctx-name>span:first-child {
  font-weight:400;
  color:#9ab9d2;
}
.ctx-cursor {
  color:#9ab9d2;
}
.ctx-statement {
  font-size:16px;
  color:#bbccda;
  margin-top:17px;
}
.context-flow {
  border-top:1px solid #ffffff2a;
  padding-top:20px;
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  gap:8px;
  font-size:9px;
  letter-spacing:.08em;
}
.poker-cover {
  background:#dae6e6;
  color:#1e4146;
}
.poker-name {
  font-size:clamp(40px,4.5vw,64px);
  letter-spacing:-.065em;
  font-weight:500;
  line-height:1;
  margin-top:47px;
}
.poker-name>span:first-child {
  font-style:italic;
  font-family:var(--serif);
  font-size:1.14em;
  letter-spacing:-.04em;
}
.poker-mark {
  font-size:38px;
  margin-left:15px;
  vertical-align:middle;
}
.poker-statement {
  font-size:21px;
  line-height:1.3;
  margin-top:23px;
  letter-spacing:-.025em;
}
.poker-bottom {
  display:flex;
  justify-content:space-between;
  border-top:1px solid #1e414630;
  padding-top:20px;
  margin-top:auto;
  font-size:10px;
  letter-spacing:.12em;
}
.project-grid .project-caption h3 {
  font-size:25px;
}
.project-grid .project-caption p:not(.eyebrow) {
  font-size:13px;
}
.project-grid .round-link {
  width:46px;
  height:46px;
}
.about {
  display:grid;
  grid-template-columns:1.1fr .85fr;
  gap:100px;
  align-items:center;
  padding-top:125px;
  padding-bottom:125px;
}
.about-lead>p:not(.eyebrow) {
  font-size:15px;
  color:var(--muted);
  line-height:1.85;
  max-width:550px;
}
.about-lead>.about-intro {
  font-size:19px!important;
  color:var(--ink)!important;
  line-height:1.65!important;
  margin-bottom:22px;
}
.founder-signature {
  display:flex;
  align-items:center;
  gap:32px;
  margin-top:40px;
}
.founder-signature img {
  width:155px;
  height:auto;
}
.founder-signature>span {
  font-size:14px;
  padding-left:27px;
  border-left:1px solid var(--line);
  line-height:1.8;
}
.founder-signature small {
  font-size:11px;
  color:var(--muted);
}
.expertise {
  background:#edf2f5;
  border:1px solid #e2e8ee;
  padding:36px;
}
.expertise>.eyebrow {
  margin-bottom:35px;
}
.expertise-item {
  display:flex;
  gap:22px;
  margin:0 0 26px;
  padding-bottom:22px;
  border-bottom:1px solid #d1dce5;
}
.expertise-item>span {
  font-size:12px;
  color:#718192;
  padding-top:3px;
}
.expertise-item h3 {
  font-size:18px;
  letter-spacing:-.035em;
  margin:0 0 9px;
  font-weight:600;
}
.expertise-item p {
  font-size:14px;
  color:var(--muted);
  margin:0;
  line-height:1.8;
}
.stack {
  display:flex;
  flex-wrap:wrap;
  gap:6px 20px;
  color:#5c6f81;
  font-size:12px;
}
.process {
  border-top:1px solid var(--line);
  padding-top:95px;
}
.process .section-heading {
  margin-bottom:65px;
}
.process-steps {
  list-style:none;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
  margin:0;
  padding:0;
}
.process-steps li {
  border-top:1px solid var(--line);
  padding-top:20px;
}
.step-number {
  display:block;
  font-family:var(--serif);
  font-size:35px;
  line-height:1.2;
  margin-bottom:29px;
  color:#62778b;
}
.process-steps h3 {
  font-size:22px;
  letter-spacing:-.04em;
  font-weight:500;
  margin-bottom:14px;
}
.process-steps p {
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
  margin:0;
}
.contact {
  position:relative;
  overflow:hidden;
}
.contact-heading {
  display:flex;
  justify-content:space-between;
  gap:40px;
}
.contact-note {
  font-size:10px;
  color:#93acc2;
  letter-spacing:.16em;
  line-height:1.9;
  text-align:right;
}
.contact h2 {
  font-weight:400;
  line-height:1.04;
  margin:30px 0 40px;
}
.contact-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:45px;
}
.contact-row p {
  font-size:15px;
  line-height:1.85;
  color:#b9cada;
  margin-bottom:30px;
}
.contact-direct {
  max-width:390px;
  overflow-wrap:anywhere;
}
.contact-direct>span {
  font-size:10px;
  color:#97aec2;
  letter-spacing:.15em;
}
.contact-direct>a {
  display:block;
  color:#e8f1f9;
  font-size:17px;
  letter-spacing:-.025em;
  margin-top:12px;
}
.contact-direct>a:hover {
  text-decoration:underline;
  text-underline-offset:5px;
}
.copy-email {
  border:0;
  background:transparent;
  color:#b9cada;
  padding:14px 0;
  font-size:12px;
  display:flex;
  gap:20px;
  align-items:center;
}
.copy-email:hover {
  color:#fff;
}
.copy-status {
  font-size:14px;
  margin:20px 0 0;
  min-height:23px;
}
.footer>div:first-child {
  display:flex;
  flex-direction:column;
  gap:3px;
}
.footer small {
  font-size:10px;
  color:#778797;
  letter-spacing:.07em;
}
.footer-links {
  display:flex;
  gap:30px;
  align-items:center;
}
.footer a:hover {
  color:var(--navy);
  text-decoration:underline;
  text-underline-offset:5px;
}
.button-dark {
  background:var(--navy);
  color:white;
  margin-top:30px;
}
.button-dark:hover {
  background:#1e3b59;
}
.project-dialog {
  border:0;
  border-radius:6px;
  padding:55px;
  width:min(900px,calc(100% - 36px));
  max-height:90dvh;
  overflow:auto;
  background:var(--paper);
  color:var(--ink);
}
.project-dialog::backdrop {
  background:#06172de0;
  backdrop-filter:blur(7px);
}
.project-dialog .eyebrow {
  margin-right:40px;
}
.project-dialog h2 {
  font-size:50px;
}
.dialog-close {
  position:absolute;
  right:20px;
  top:17px;
  font-size:20px;
  line-height:1;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
}
.dialog-close:hover {
  background:var(--navy);
  color:white;
}
.case-lead {
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
  max-width:670px;
}
.case-image {
  border:1px solid var(--line);
  margin:30px 0;
  border-radius:4px;
}
.case-columns {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  margin:32px 0;
}
.case-columns h3 {
  font-size:20px;
  font-weight:500;
  margin-bottom:10px;
}
.case-columns p {
  font-size:15px;
  color:var(--muted);
  line-height:1.8;
  margin:0;
}
.case-diagram {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  background:var(--navy);
  color:white;
  padding:40px 30px;
  border-radius:3px;
  text-align:center;
  font-size:16px;
  line-height:1.7;
}
.case-diagram>span:nth-child(even) {
  color:#b3cbe1;
}
.poker-diagram {
  background:#dae6e6;
  color:#1e4146;
}
.poker-diagram>span:nth-child(even) {
  color:#527479;
}
.case-footnote {
  font-size:13px;
  color:var(--muted);
  margin-top:25px;
}
.scroll-reveal {
  transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.3,1);
}
.scroll-reveal.is-waiting {
  opacity:0;
  transform:translateY(22px);
}
@media(min-width:1700px) {
  .work {
    padding-left:max(6.5%,calc((100vw - 1392px)/2));
    padding-right:max(6.5%,calc((100vw - 1392px)/2));
  }
}
@media(max-width:1100px) {
  .hero-art {
    right:-18%;
    width:88%;
    opacity:.82;
  }
  .services {
    gap:55px;
    grid-template-columns:.85fr 1.2fr;
  }
  .service summary {
    font-size:19px;
    gap:13px;
  }
  .service-body {
    padding-left:41px;
    padding-right:15px;
  }
  .about {
    gap:48px;
  }
  .expertise {
    padding:28px;
  }
  .founder-signature {
    gap:20px;
  }
  .founder-signature img {
    width:120px;
  }
  .founder-signature>span {
    padding-left:20px;
  }
  .contact-direct>a {
    font-size:14px;
  }
  .project-cover {
    padding:27px;
    min-height:350px;
  }
  .poker-name {
    font-size:44px;
  }
  .context-flow {
    font-size:8px;
    letter-spacing:0;
  }
}
@media(max-width:850px) {
  .hero-art {
    right:-30%;
    width:100%;
    opacity:.65;
  }
  .services {
    grid-template-columns:1fr;
    gap:35px;
    padding-top:0;
  }
  .services-heading h2 br:last-child {
    display:none;
  }
  .services-heading>p:not(.eyebrow) {
    max-width:500px;
  }
  .service summary {
    font-size:22px;
  }
  .service-body {
    max-width:650px;
  }
  .about {
    grid-template-columns:1fr;
    gap:45px;
  }
  .about-lead>p:not(.eyebrow) {
    max-width:650px;
  }
  .expertise {
    padding:35px;
  }
  .process-steps {
    grid-template-columns:1fr 1fr;
    gap:35px;
  }
  .contact-row {
    align-items:flex-start;
    flex-direction:column;
    gap:40px;
  }
  .contact-direct>a {
    font-size:17px;
  }
  .project-cover {
    min-height:310px;
    padding:22px;
  }
  .ctx-name {
    font-size:51px;
  }
  .poker-name {
    font-size:37px;
  }
  .poker-mark {
    font-size:26px;
    margin-left:6px;
  }
  .ctx-statement {
    font-size:14px;
  }
  .poker-statement {
    font-size:18px;
  }
  .cover-top {
    font-size:8px;
  }
  .project-grid .project-caption {
    gap:10px;
  }
  .project-grid .project-caption .eyebrow {
    font-size:9px;
  }
  .project-grid .project-caption p:not(.eyebrow) {
    font-size:12px;
  }
  .project-grid .round-link {
    width:38px;
    height:38px;
  }
  .footer-links {
    gap:18px;
  }
}
@media(max-width:700px) {
  .hero {
    min-height:940px;
  }
  .hero-art {
    right:-14%;
    top:auto;
    bottom:25px;
    width:110%;
    height:480px;
    opacity:.9;
    object-fit:cover;
    object-position:center;
    mask-image:linear-gradient(180deg,transparent,#000 25%,#000 74%,transparent);
    -webkit-mask-image:linear-gradient(180deg,transparent,#000 25%,#000 74%,transparent);
  }
  .hero:after {
    background:linear-gradient(180deg,var(--navy) 43%,#091c3100 71%);
  }
  .hero-content {
    max-width:100%;
  }
  .hero-description {
    font-size:14px;
    max-width:310px;
  }
  .hero-actions {
    gap:22px;
  }
  .hero-bottom {
    z-index:2;
  }
  .hero-signature {
    display:none;
  }
  .services {
    padding-top:0;
    padding-bottom:65px;
    gap:36px;
  }
  .services-heading h2 {
    font-size:42px;
  }
  .service summary {
    padding:23px 0;
    grid-template-columns:20px 1fr 20px;
    font-size:19px;
    gap:13px;
  }
  .service-number {
    font-size:11px;
    padding-top:5px;
  }
  .service-body {
    padding-left:33px;
    padding-right:6px;
  }
  .tags span {
    font-size:11px;
  }
  .work {
    padding-left:7%;
    padding-right:7%;
  }
  .project-grid {
    grid-template-columns:1fr;
    gap:25px;
    margin-top:30px;
  }
  .project-cover {
    min-height:335px;
    padding:28px;
  }
  .cover-top {
    font-size:10px;
  }
  .ctx-name {
    font-size:66px;
    margin-top:38px;
  }
  .poker-name {
    font-size:53px;
    margin-top:38px;
  }
  .poker-mark {
    font-size:35px;
  }
  .poker-statement {
    font-size:22px;
  }
  .context-flow {
    font-size:9px;
    letter-spacing:.04em;
  }
  .project-grid .project-caption h3 {
    font-size:25px;
  }
  .project-grid .project-caption p:not(.eyebrow) {
    font-size:14px;
  }
  .project-grid .project-caption .eyebrow {
    font-size:10px;
  }
  .project-grid .round-link {
    width:46px;
    height:46px;
  }
  .about {
    padding-top:70px;
    padding-bottom:70px;
  }
  .founder-signature {
    gap:20px;
  }
  .founder-signature img {
    width:125px;
  }
  .founder-signature>span {
    font-size:12px;
    padding-left:18px;
  }
  .founder-signature small {
    font-size:10px;
  }
  .expertise {
    padding:28px;
  }
  .expertise-item h3 {
    font-size:17px;
  }
  .expertise-item p {
    font-size:14px;
  }
  .process {
    padding-top:65px;
  }
  .process .section-heading {
    margin-bottom:37px;
  }
  .process-steps {
    gap:28px 22px;
  }
  .step-number {
    margin-bottom:23px;
    font-size:31px;
  }
  .process-steps h3 {
    font-size:20px;
  }
  .process-steps p {
    font-size:14px;
  }
  .contact-heading {
    display:block;
  }
  .contact-note {
    display:block;
    text-align:left;
    margin-top:30px;
  }
  .contact h2 {
    font-size:clamp(41px,9vw,63px);
    margin-top:35px;
  }
  .contact-row p br {
    display:none;
  }
  .contact-row p {
    font-size:15px;
  }
  .contact-direct>a {
    font-size:15px;
  }
  .contact-direct {
    max-width:100%;
  }
  .footer {
    flex-direction:column;
    padding:26px 7%;
    gap:23px;
  }
  .footer-links {
    gap:25px;
    flex-wrap:wrap;
  }
  .project-dialog {
    padding:48px 25px 30px;
    width:calc(100% - 24px);
    max-height:92dvh;
  }
  .project-dialog h2 {
    font-size:36px;
  }
  .project-dialog .eyebrow {
    font-size:10px;
  }
  .case-lead {
    font-size:16px;
  }
  .case-columns {
    grid-template-columns:1fr;
    gap:25px;
  }
  .case-diagram {
    padding:25px 15px;
    font-size:12px;
    gap:8px;
  }
  .project-dialog .button {
    width:100%;
    gap:10px;
  }
  .case-footnote {
    font-size:12px;
  }
}
@media(max-width:360px) {
  .header {
    gap:9px;
  }
  .header-contact {
    padding:7px 10px;
    gap:6px;
  }
  .brand,.brand img {
    width:113px;
  }
  .hero {
    padding-left:21px;
    padding-right:21px;
  }
  .hero h1 {
    font-size:56px;
  }
  .hero-bottom {
    left:21px;
    right:21px;
  }
  .poker-name {
    font-size:46px;
  }
  .process-steps {
    grid-template-columns:1fr;
  }
  .contact h2 {
    font-size:40px;
  }
  .founder-signature {
    flex-wrap:wrap;
  }
}
@media(prefers-reduced-motion:reduce) {
  .scroll-reveal.is-waiting {
    opacity:1;
    transform:none;
  }
}
/* Reading text stays comfortable on small screens and with enlarged text. */
.hero-description,.service-body>p,.services-heading>p:not(.eyebrow),.about-lead>p:not(.eyebrow),.case-columns p,.contact-row p {
  font-size:1rem;
}
.expertise-item p,.process-steps p,.project-caption p:not(.eyebrow),.project-grid .project-caption p:not(.eyebrow) {
  font-size:.9375rem;
}
.project-cover:focus-visible {
  outline-offset:6px;
}
.brand span {
  font-size:.625rem;
}
.brand img {
  flex:none;
}
.project-cover .cover-top {
  font-size:.75rem;
  letter-spacing:.08em;
}
.context-flow,.poker-bottom {
  font-size:.75rem;
  letter-spacing:0;
}
.contact-note {
  font-size:.75rem;
  letter-spacing:.08em;
}
.hero-signature {
  font-size:.75rem;
  letter-spacing:.08em;
}
.footer small {
  font-size:.75rem;
  letter-spacing:0;
}
.tags span,.stack {
  font-size:.875rem;
}
.service-number,.step-number {
  font-variant-numeric:tabular-nums;
}
@media(max-width:850px) and (min-width:701px) {
  .context-flow {
    font-size:.625rem;
  }
  .project-cover .cover-top {
    font-size:.625rem;
  }
}
@media(max-width:400px) {
  .context-flow {
    font-size:.625rem;
  }
  .hero {
    min-height:980px;
  }
  .hero-art {
    bottom:30px;
  }
  .founder-signature small {
    font-size:.75rem;
  }
}

.project-grid > .project:only-child {
  grid-column: 1 / -1;
}
