:root {
  color-scheme: light;
  --paper: #f2efe7;
  --paper-deep: #e6e0d4;
  --white: #fffefa;
  --ink: #101114;
  --ink-soft: #292b31;
  --night: #090908;
  --blue: #0b75ff;
  --blue-dark: #0057c7;
  --yellow: #ffdc18;
  --red: #ef3f32;
  --muted: #65686f;
  --muted-light: #b5b8bf;
  --line: rgba(16, 17, 20, 0.18);
  --line-dark: rgba(247, 245, 237, 0.2);
  --max: 1240px;
  --radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: rgba(11, 117, 255, 0.22);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid rgba(16, 17, 20, 0.12);
  background: rgba(242, 239, 231, 0.92);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(16, 17, 20, 0.2);
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 10px 34px rgba(16, 17, 20, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  min-width: 0;
}

.brand-keycap {
  width: 50px;
  height: auto;
  flex: 0 0 auto;
}

.brand-keycap rect {
  fill: transparent;
  stroke: var(--ink);
  stroke-width: 3;
}

.brand-keycap path {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-lockup {
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 820;
  letter-spacing: -0.03em;
}

.brand-lock {
  color: var(--blue);
}

.brand-softworks {
  color: var(--muted);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 450;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 38px);
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 720;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 1px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--blue);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--blue);
  background: var(--blue-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 0;
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(rgba(16, 17, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.hero::before {
  position: absolute;
  top: 76px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(11, 117, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
  padding-bottom: clamp(70px, 8vw, 112px);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.availability-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.3vw, 106px);
  font-weight: 860;
  letter-spacing: -0.066em;
  line-height: 0.88;
}

.hero h1 span {
  position: relative;
  display: inline;
  color: var(--blue-dark);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -0.06em;
  left: 0.03em;
  height: 0.08em;
  content: "";
  background: var(--yellow);
  transform: rotate(-1.2deg);
  transform-origin: left;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.4;
}

.hero-actions,
.work-actions,
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 7px 7px 0 var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 254, 250, 0.64);
  border-color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  background: var(--ink);
}

.hero-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: #f7f5ed;
  background: var(--night);
  box-shadow: 14px 14px 0 var(--blue);
}

.proof-stripe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--yellow) 0 58%, var(--red) 58% 75%, var(--blue) 75%);
}

.proof-kicker {
  margin-bottom: 28px;
  color: rgba(247, 245, 237, 0.66);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-product {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 22px;
  align-items: center;
}

.proof-product img {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.proof-status {
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 7px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.proof-product h2 {
  margin-bottom: 7px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
}

.proof-product h2 span,
.featured-copy h3 span {
  color: var(--red);
}

.proof-product > div > p:last-child {
  margin-bottom: 0;
  color: rgba(247, 245, 237, 0.7);
  font-size: 14px;
  line-height: 1.4;
}

.proof-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-facts > div {
  padding: 16px 0;
}

.proof-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line-dark);
}

.proof-facts dt {
  margin-bottom: 3px;
  color: rgba(247, 245, 237, 0.52);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-facts dd {
  margin-bottom: 0;
  color: #f7f5ed;
  font-size: 14px;
  font-weight: 720;
}

.proof-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.proof-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 2px;
  border-bottom: 1px solid rgba(247, 245, 237, 0.28);
  color: #f7f5ed;
  font-size: 13px;
  font-weight: 720;
}

.proof-links a:hover,
.proof-links a:focus-visible {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.services-section,
.process-section {
  padding: clamp(82px, 9vw, 132px) 0;
}

.services-section {
  background: var(--white);
}

.section-heading.services-heading {
  grid-template-columns: minmax(0, 980px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  column-gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-label {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2,
.principle-layout h2,
.contact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 850;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.section-heading > p:last-child {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.55;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 3.4vw, 46px);
  color: var(--ink);
  background: var(--paper);
}

.offer-card + .offer-card {
  border-left: 1px solid var(--ink);
}

.offer-card-blue {
  background: #dfeaff;
}

.offer-card-dark {
  color: #f7f5ed;
  background: var(--night);
}

.offer-kicker,
.work-type {
  margin-bottom: 34px;
  color: var(--blue-dark);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.09em;
}

.offer-card-dark .offer-kicker {
  color: var(--yellow);
}

.offer-card h3 {
  margin-bottom: 20px;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1;
}

.offer-card > p:not(.offer-kicker) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.offer-card-dark > p:not(.offer-kicker) {
  color: rgba(247, 245, 237, 0.68);
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

.offer-card-dark ul {
  color: rgba(247, 245, 237, 0.8);
}

.offer-card li {
  position: relative;
  padding-left: 18px;
}

.offer-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 2px;
  content: "";
  background: var(--red);
}

.offer-card > a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 2px solid currentColor;
  font-size: 14px;
  font-weight: 780;
}

.offer-card > a:hover,
.offer-card > a:focus-visible {
  color: var(--blue-dark);
}

.offer-card-dark > a:hover,
.offer-card-dark > a:focus-visible {
  color: var(--yellow);
}

.work-section {
  padding: clamp(82px, 9vw, 132px) 0;
  color: #f7f5ed;
  background: var(--night);
}

.section-heading-light h2 {
  color: #f7f5ed;
}

.section-heading-light .section-label {
  color: var(--yellow);
}

.section-heading-light > p:last-child {
  color: rgba(247, 245, 237, 0.6);
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  border: 1px solid rgba(247, 245, 237, 0.26);
  color: var(--ink);
  background: var(--paper);
}

.featured-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background:
    linear-gradient(rgba(16, 17, 20, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.07) 1px, transparent 1px),
    #f5d615;
  background-size: 28px 28px;
}

.featured-icon-wrap::before,
.featured-icon-wrap::after {
  position: absolute;
  width: 220px;
  height: 28px;
  content: "";
  background: var(--red);
  transform: rotate(-13deg);
}

.featured-icon-wrap::before {
  top: 62px;
  left: -56px;
}

.featured-icon-wrap::after {
  right: -46px;
  bottom: 74px;
  background: var(--blue);
  transform: rotate(18deg);
}

.featured-icon-wrap img {
  position: relative;
  z-index: 1;
  width: min(66%, 286px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(16, 17, 20, 0.14);
  border-radius: 25%;
  box-shadow: 18px 22px 0 rgba(16, 17, 20, 0.92);
}

.featured-icon-wrap span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  background: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.featured-copy {
  padding: clamp(34px, 5vw, 68px);
}

.featured-copy .work-type {
  margin-bottom: 22px;
}

.featured-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.work-lede {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 760;
}

.featured-copy > p:not(.work-type, .work-lede) {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

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

.button-ink:hover,
.button-ink:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 780;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-dark);
  border-bottom-color: var(--blue-dark);
}

.markup-work {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  min-height: 540px;
  border: 1px solid rgba(247, 245, 237, 0.24);
  background: #030404;
}

.markup-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  border-right: 1px solid rgba(247, 245, 237, 0.24);
  background: #0b0e03;
}

.markup-visual img {
  width: min(62%, 270px);
  height: auto;
  border: 1px solid rgba(223, 255, 0, 0.28);
  border-radius: 24%;
  box-shadow: 18px 20px 0 rgba(223, 255, 0, 0.13);
}

.markup-work .work-type {
  margin-bottom: 12px;
  color: #dfff00;
}

.markup-work h3 {
  margin-bottom: 0;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: clamp(32px, 4.4vw, 62px);
  letter-spacing: -0.06em;
}

.markup-work h3 span {
  color: #dfff00;
  font-weight: 600;
}

.markup-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 82px);
}

.markup-copy .work-lede {
  max-width: 620px;
  margin-bottom: 22px;
  color: #f7f5ed;
}

.markup-copy > p:not(.work-lede) {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(247, 245, 237, 0.68);
  font-size: 18px;
  line-height: 1.62;
}

.button-lime {
  border-color: #dfff00;
  color: #101114;
  background: #dfff00;
}

.button-lime:hover,
.button-lime:focus-visible {
  border-color: #f7f5ed;
  color: #101114;
  background: #f7f5ed;
}

.jobmarkup-work {
  margin-top: 22px;
}

.closing-sequence {
  padding-top: clamp(70px, 8vw, 108px);
  background: var(--night);
}

.process-section {
  padding: 0;
  border: 0;
  background: transparent;
}

.process-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding: clamp(48px, 6vw, 82px);
  border: 1px solid var(--ink);
  background: var(--white);
}

.process-cta-copy {
  max-width: 760px;
}

.process-cta-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 850;
  letter-spacing: -0.058em;
  line-height: 0.94;
}

.process-cta-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}

.process-cta-scope {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.process-portrait {
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: 10px 10px 0 var(--blue);
}

.process-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.principle-section {
  padding: 0;
  color: #fff;
  background: transparent;
}

.principle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.66fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(44px, 5vw, 68px) clamp(48px, 6vw, 82px);
  border-right: 1px solid rgba(247, 245, 237, 0.28);
  border-left: 1px solid rgba(247, 245, 237, 0.28);
  background: var(--blue-dark);
}

.principle-layout .section-label {
  color: rgba(255, 255, 255, 0.68);
}

.principle-layout h2 {
  color: #fff;
}

.principle-copy {
  padding-top: 4px;
}

.principle-copy p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.contact-section {
  padding: 0 0 clamp(44px, 5vw, 64px);
  border: 0;
  color: #f7f5ed;
  background: transparent;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(400px, 1fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
  padding: clamp(52px, 6vw, 82px);
  border: 1px solid rgba(247, 245, 237, 0.24);
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(11, 117, 255, 0.14), transparent 42%),
    #0d1016;
}

.contact-intro .section-label {
  color: var(--yellow);
}

.contact-intro h2 {
  margin-bottom: 24px;
  color: #f7f5ed;
}

.closing-sequence .contact-intro h2 {
  font-size: clamp(48px, 5.2vw, 68px);
  line-height: 0.95;
}

.contact-intro > p:not(.section-label) {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(247, 245, 237, 0.68);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.contact-email {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--yellow);
  font-size: 15px;
  font-weight: 760;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--yellow);
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(247, 245, 237, 0.25);
  background: rgba(255, 255, 255, 0.035);
}

.closing-sequence .contact-form {
  padding: 0;
  border: 0;
  background: transparent;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field > span {
  color: rgba(247, 245, 237, 0.72);
  font-size: 12px;
  font-weight: 730;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(247, 245, 237, 0.28);
  border-radius: 2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 16px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-field input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 154px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.5;
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: rgba(247, 245, 237, 0.52);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--yellow);
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 220, 24, 0.14);
}

.field-hint {
  margin: -8px 0 0;
  color: rgba(247, 245, 237, 0.48);
  font-size: 12px;
}

.contact-photos {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-photos legend {
  margin-bottom: 8px;
  color: rgba(247, 245, 237, 0.72);
  font-size: 12px;
  font-weight: 730;
}

.contact-photos legend span {
  margin-left: 5px;
  color: rgba(247, 245, 237, 0.42);
  font-weight: 560;
}

.contact-photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-photo-picker {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px dashed rgba(247, 245, 237, 0.34);
  border-radius: 2px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-photo-picker:hover,
.contact-photo-picker.is-dragging,
.contact-photo-input:focus-visible + .contact-photo-picker {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.07);
}

.contact-photo-input:focus-visible + .contact-photo-picker {
  outline: 3px solid rgba(255, 220, 24, 0.18);
  outline-offset: 2px;
}

.contact-photo-plus {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(247, 245, 237, 0.36);
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.055);
  font-size: 25px;
  font-weight: 420;
  line-height: 1;
}

.contact-photo-picker strong,
.contact-photo-picker small {
  display: block;
}

.contact-photo-picker strong {
  color: #fff;
  font-size: 15px;
  font-weight: 760;
}

.contact-photo-picker small {
  margin-top: 2px;
  color: rgba(247, 245, 237, 0.52);
  font-size: 12px;
  line-height: 1.4;
}

.contact-photos > .field-hint {
  margin-top: 7px;
}

.contact-photo-previews {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.contact-photo-previews[hidden] {
  display: none;
}

.contact-photo-preview {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(247, 245, 237, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.contact-photo-thumb {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  color: rgba(247, 245, 237, 0.46);
  background: rgba(255, 255, 255, 0.075);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.contact-photo-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-photo-copy {
  min-width: 0;
}

.contact-photo-copy strong,
.contact-photo-copy span {
  display: block;
}

.contact-photo-copy strong {
  overflow: hidden;
  color: rgba(247, 245, 237, 0.88);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-photo-copy span {
  margin-top: 2px;
  color: rgba(247, 245, 237, 0.46);
  font-size: 11px;
}

.contact-photo-remove {
  min-height: 38px;
  padding: 0 8px;
  border: 0;
  cursor: pointer;
  color: var(--yellow);
  background: transparent;
  font-size: 12px;
  font-weight: 720;
}

.contact-photo-remove:hover,
.contact-photo-remove:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-photo-remove:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.contact-photo-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: rgba(247, 245, 237, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.contact-photo-status.is-error {
  color: #ff9b9b;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-form-footer .contact-status {
  margin: 0;
  color: rgba(247, 245, 237, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.contact-form-footer .contact-status.is-success {
  color: #8ce5b1;
}

.contact-form-footer .contact-status.is-error {
  color: #ff9b9b;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  padding: 52px clamp(24px, 5vw, 72px);
  background: #090908;
}

.site-footer-closing {
  padding: 52px max(24px, calc((100vw - var(--max)) / 2)) 64px;
  border-top: 1px solid rgba(247, 245, 237, 0.16);
}

.site-footer p,
.site-footer a {
  color: var(--muted-light);
  font-size: 14px;
}

.site-footer p {
  max-width: 350px;
  margin-bottom: 0;
}

.footer-company > p {
  margin-top: 16px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 9px;
}

.site-footer nav a,
.footer-contact > a {
  width: fit-content;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.footer-contact > a:hover,
.footer-contact > a:focus-visible {
  color: var(--yellow);
}

.footer-contact .legal {
  margin-top: 12px;
  color: rgba(181, 184, 191, 0.65);
  font-size: 12px;
}

.cappslock-company-mark {
  display: grid;
  width: fit-content;
  max-width: 100%;
  padding: 36px 32px 34px;
  color: rgba(247, 245, 237, 0.72);
  background: #090908;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.cappslock-company-mark strong {
  color: #f7f5ed;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.cappslock-company-mark strong span {
  color: #0b75ff;
}

.cappslock-company-mark small {
  justify-self: end;
  font-size: 13px;
}

.site-footer .cappslock-company-mark {
  padding: 0;
}

.cappslock-company-mark:hover {
  color: rgba(247, 245, 237, 0.72);
}

.cappslock-company-mark:focus-visible {
  outline: 3px solid #f59e0a;
  outline-offset: 4px;
}

.error-page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background: var(--paper);
}

.error-main {
  display: grid;
  flex: 1;
  place-items: center;
  width: 100%;
  padding: clamp(126px, 16vh, 176px) 24px clamp(72px, 10vh, 112px);
  background:
    linear-gradient(rgba(16, 17, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.error-panel {
  width: min(760px, 100%);
  padding: clamp(34px, 6vw, 70px);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--blue);
}

.error-code {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.error-panel h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.error-copy {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.privacy-page {
  color-scheme: light;
  color: #2a1d18;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 76, 53, 0.12), transparent 24rem),
    radial-gradient(circle at 92% 28%, rgba(84, 101, 55, 0.12), transparent 28rem),
    #f8f0df;
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 36px, 900px);
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(70, 49, 38, 0.18);
}

.privacy-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.privacy-brand svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.privacy-home-link {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(70, 49, 38, 0.35);
  text-underline-offset: 0.3em;
}

.privacy-main {
  width: min(100% - 36px, 760px);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) 0 88px;
}

.privacy-eyebrow {
  margin: 0 0 14px;
  color: #c94732;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.privacy-main h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.privacy-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: #615048;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.45;
}

.privacy-effective {
  margin: 16px 0 58px;
  color: #7b6a60;
  font-size: 0.85rem;
  font-weight: 700;
}

.privacy-main section {
  padding: 30px 0;
  border-top: 1px solid rgba(70, 49, 38, 0.18);
}

.privacy-main h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

.privacy-main section p {
  margin: 0;
  color: #55453d;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-main section p + p {
  margin-top: 14px;
}

.privacy-main section a {
  color: #a83324;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.privacy-contact {
  margin-top: 20px;
  padding: 28px !important;
  border: 1px solid rgba(70, 49, 38, 0.18) !important;
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.68);
  box-shadow: 0 18px 60px rgba(70, 49, 38, 0.08);
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    width: min(720px, calc(100% - 14px));
  }

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

  .offer-card + .offer-card {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

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

  .markup-work {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  }

  .process-cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: 48px;
    padding: 48px;
  }

  .process-portrait {
    width: min(100%, 340px);
  }

  .principle-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  }

  .principle-copy {
    grid-column: auto;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: 56px;
    padding: 52px 48px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav .nav-optional {
    display: none;
  }

  .hero {
    padding-top: 124px;
  }

  .section-heading,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    margin-bottom: 24px;
  }

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

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

  .markup-visual {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 245, 237, 0.24);
  }

  .featured-icon-wrap {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .process-cta-layout {
    grid-template-columns: 1fr;
  }

  .process-cta-copy {
    max-width: 760px;
  }

  .process-portrait {
    width: min(100%, 520px);
  }

  .principle-layout {
    grid-template-columns: 1fr;
  }

  .principle-copy {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: calc(100% - 32px);
  }

  .site-header {
    gap: 10px;
    min-height: 64px;
    padding: 0 12px;
  }

  .brand {
    gap: 6px;
  }

  .brand-keycap {
    width: 39px;
  }

  .brand-lockup {
    font-size: 15px;
  }

  .brand-softworks {
    display: none;
  }

  .site-nav {
    gap: 8px;
    font-size: 12px;
  }

  .site-nav a:not(.nav-cta) {
    padding-right: 3px;
    padding-left: 3px;
  }

  .site-nav .nav-cta {
    min-height: 38px;
    padding: 0 11px;
  }

  .hero {
    padding-top: 108px;
    background-size: 26px 26px;
  }

  .hero::before {
    top: 36px;
    right: -250px;
  }

  .hero-grid {
    gap: 52px;
    padding-bottom: 70px;
  }

  .hero-eyebrow {
    align-items: flex-start;
    font-size: 10px;
  }

  .availability-dot {
    margin-top: 2px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.5vw, 70px);
    line-height: 0.9;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .work-actions,
  .error-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-proof {
    width: calc(100% - 10px);
    padding: 28px 22px;
    box-shadow: 10px 10px 0 var(--blue);
  }

  .proof-product {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .proof-product img {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .proof-product h2 {
    font-size: 30px;
  }

  .proof-facts > div + div {
    padding-left: 14px;
  }

  .services-section,
  .work-section {
    padding: 76px 0;
  }

  .closing-sequence {
    padding-top: 48px;
  }

  .section-heading h2,
  .principle-layout h2,
  .contact-intro h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .offer-card {
    padding: 30px 24px;
  }

  .featured-icon-wrap {
    min-height: 350px;
  }

  .featured-icon-wrap img {
    width: 58%;
    box-shadow: 12px 15px 0 rgba(16, 17, 20, 0.92);
  }

  .featured-copy {
    padding: 30px 24px;
  }

  .featured-copy h3 {
    font-size: 48px;
  }

  .markup-work,
  .markup-visual {
    min-height: 0;
  }

  .markup-visual,
  .markup-copy {
    padding: 30px 24px;
  }

  .markup-visual {
    gap: 70px;
  }

  .markup-visual img {
    width: min(54%, 190px);
    box-shadow: 12px 14px 0 rgba(223, 255, 0, 0.13);
  }

  .markup-work h3 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .markup-copy > p:not(.work-lede) {
    font-size: 16px;
  }

  .process-cta-layout {
    gap: 42px;
    padding: 34px 28px 40px;
  }

  .process-cta-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .process-cta-scope {
    line-height: 1.5;
  }

  .process-portrait {
    width: 100%;
    aspect-ratio: 1;
  }

  .process-portrait img {
    object-position: center;
  }

  .principle-section {
    padding: 0;
  }

  .principle-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 28px 42px;
  }

  .principle-copy {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-section {
    padding: 0 0 40px;
  }

  .contact-layout {
    gap: 38px;
    padding: 42px 28px 46px;
  }

  .closing-sequence .contact-intro h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

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

  .contact-form-footer {
    display: grid;
    gap: 12px;
  }

  .contact-photo-preview {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .contact-photo-thumb {
    width: 52px;
    height: 52px;
  }

  .contact-photo-remove {
    grid-column: 2;
    justify-self: start;
    min-height: 30px;
    padding: 0;
  }

  .site-footer {
    padding: 46px 20px;
  }

  .site-footer-closing {
    padding: 44px 16px 52px;
  }

  .privacy-brand span {
    max-width: 130px;
    line-height: 1.05;
  }

  .privacy-home-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 0 8px;
  }

  .brand-keycap {
    width: 32px;
  }

  .brand-lockup {
    font-size: 13px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }
}

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

/* iPhone and iPad apps page */

.apps-page {
  background: var(--night);
}

.apps-page main {
  overflow: hidden;
}

.apps-page .site-nav a[aria-current="page"] {
  border-bottom: 3px solid var(--blue);
}

.apps-hero {
  min-height: min(920px, 100svh);
  padding: clamp(150px, 16vh, 196px) 0 clamp(92px, 10vw, 142px);
  color: #f7f5ed;
  background: var(--night);
}

.apps-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(58px, 9vw, 132px);
  align-items: center;
}

.apps-hero .section-label {
  color: var(--yellow);
}

.apps-hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(64px, 8.2vw, 116px);
  font-weight: 870;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.apps-hero-lede {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(247, 245, 237, 0.7);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
}

.apps-actions,
.apps-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.apps-button-secondary {
  border-color: rgba(247, 245, 237, 0.72);
  color: #f7f5ed;
  background: transparent;
}

.apps-button-secondary:hover,
.apps-button-secondary:focus-visible {
  border-color: #f7f5ed;
  color: var(--ink);
  background: #f7f5ed;
}

.apps-availability {
  margin: 28px 0 0;
  color: rgba(247, 245, 237, 0.55);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apps-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 590px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 18px 18px 0 var(--blue);
}

.apps-card-status {
  width: fit-content;
  margin-bottom: 34px;
  padding: 7px 10px;
  color: #fff;
  background: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apps-hero-card img {
  width: min(72%, 310px);
  height: auto;
  margin: 4px auto 54px;
  border: 2px solid rgba(16, 17, 20, 0.16);
  border-radius: 25%;
  box-shadow: 15px 17px 0 rgba(16, 17, 20, 0.92);
}

.apps-hero-card > div > p:first-child {
  margin-bottom: 10px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apps-hero-card h2 {
  margin-bottom: 12px;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.apps-hero-card h2 span {
  color: var(--red);
}

.apps-hero-card > div > p:last-child {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 650;
}

.apps-workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(24px, 5vw, 72px);
  color: #fff;
  background: var(--blue-dark);
}

.apps-workflow-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  margin-bottom: 0;
  padding: 18px clamp(14px, 2.8vw, 42px);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 780;
  letter-spacing: -0.025em;
  text-align: center;
}

.apps-workflow-strip p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.apps-product {
  padding: clamp(92px, 11vw, 156px) 0;
  background: var(--white);
}

.apps-product-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 9vw, 132px);
  align-items: center;
}

.apps-product-shot {
  position: relative;
  margin: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--ink);
  background: #dfeaff;
  box-shadow: 14px 14px 0 var(--yellow);
}

.apps-product-shot img {
  width: 100%;
  height: min(680px, 62vw);
  object-fit: cover;
  object-position: center 48%;
  border: 1px solid rgba(16, 17, 20, 0.18);
  background: #fff;
}

.apps-product-shot figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.apps-product-copy .section-label {
  margin-bottom: 18px;
}

.apps-product-copy h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 860;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.apps-product-lede {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 690;
  line-height: 1.45;
}

.apps-product-copy > p:not(.section-label, .apps-product-lede) {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.apps-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 36px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.apps-facts > div {
  min-height: 94px;
  padding: 18px 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.apps-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.apps-facts dd {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.35;
}

.apps-principle {
  padding: clamp(84px, 10vw, 136px) 0;
  color: var(--ink);
  background: var(--yellow);
}

.apps-principle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(46px, 9vw, 132px);
  align-items: end;
}

.apps-principle .section-label {
  grid-column: 1 / -1;
  color: var(--blue-dark);
}

.apps-principle h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 860;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.apps-principle-grid > div p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.75vw, 22px);
  line-height: 1.55;
}

.apps-principle-grid > div p:last-child {
  margin-bottom: 0;
}

.apps-close {
  padding: clamp(84px, 10vw, 138px) 0;
  color: #fff;
  background: var(--blue-dark);
}

.apps-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(46px, 8vw, 118px);
  align-items: end;
}

.apps-close .section-label {
  color: var(--yellow);
}

.apps-close h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 860;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.apps-close-copy p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.55;
}

.apps-close .button-primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 7px 7px 0 var(--ink);
}

.apps-close .button-primary:hover,
.apps-close .button-primary:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
}

@media (max-width: 960px) {
  .apps-hero {
    min-height: 0;
  }

  .apps-hero-grid,
  .apps-product-grid,
  .apps-principle-grid,
  .apps-close-grid {
    grid-template-columns: 1fr;
  }

  .apps-hero-copy {
    max-width: 820px;
  }

  .apps-hero-card {
    width: min(680px, calc(100% - 18px));
  }

  .apps-product-shot {
    width: min(620px, calc(100% - 14px));
  }

  .apps-product-shot img {
    height: min(760px, 104vw);
  }
}

@media (max-width: 620px) {
  .apps-hero {
    padding: 118px 0 84px;
  }

  .apps-hero-grid {
    gap: 58px;
  }

  .apps-hero h1 {
    font-size: clamp(52px, 15vw, 68px);
    line-height: 0.9;
  }

  .apps-hero-lede {
    font-size: 18px;
  }

  .apps-actions,
  .apps-product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .apps-actions .button,
  .apps-product-actions .button,
  .apps-product-actions .text-link {
    width: 100%;
  }

  .apps-hero-card {
    min-height: 500px;
    padding: 28px 24px;
    box-shadow: 10px 10px 0 var(--blue);
  }

  .apps-hero-card img {
    width: min(62%, 210px);
    margin-bottom: 42px;
    box-shadow: 11px 13px 0 rgba(16, 17, 20, 0.92);
  }

  .apps-hero-card h2 {
    font-size: 44px;
  }

  .apps-workflow-strip {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .apps-workflow-strip p {
    justify-content: flex-start;
    min-height: 68px;
    padding: 14px 0;
    text-align: left;
  }

  .apps-workflow-strip p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .apps-product {
    padding: 80px 0;
  }

  .apps-product-grid {
    gap: 62px;
  }

  .apps-product-shot {
    width: calc(100% - 10px);
    padding: 16px;
    box-shadow: 9px 9px 0 var(--yellow);
  }

  .apps-product-shot img {
    height: 430px;
    object-position: center 46%;
  }

  .apps-product-copy h2,
  .apps-principle h2,
  .apps-close h2 {
    font-size: clamp(42px, 12.2vw, 58px);
  }

  .apps-product-copy > p:not(.section-label, .apps-product-lede) {
    font-size: 16px;
  }

  .apps-facts {
    grid-template-columns: 1fr;
  }

  .apps-principle,
  .apps-close {
    padding: 78px 0;
  }

  .apps-principle-grid,
  .apps-close-grid {
    gap: 38px;
  }

  .site-nav a[href="/apps/"] {
    display: inline-flex;
    padding-right: 2px;
    padding-left: 2px;
  }
}
