:root {
  --gold: #cda24e;
  --deep-gold: #9c752c;
  --teal: #35d6b4;
  --charcoal: #1b1c21;
  --charcoal-soft: #23252a;
  --cream: #f7f1e6;
  --white: #fffdf8;
  --ink: #202126;
  --muted: #6d685f;
  --line-light: rgba(27, 28, 33, 0.18);
  --line-dark: rgba(247, 241, 230, 0.18);
  --shell: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--cream);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--charcoal);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(247, 241, 230, 0.1);
  background: var(--charcoal);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  color: var(--gold);
  font-size: 21px;
  font-weight: 650;
}

.brand-name small {
  margin-top: 6px;
  color: var(--cream);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a,
.site-nav button {
  color: rgba(247, 241, 230, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav button:hover {
  color: var(--gold);
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.site-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.site-nav [aria-current="page"] {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--cream);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 42px);
  max-height: 820px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - var(--shell)) / 2));
  width: 1px;
  background: rgba(205, 162, 78, 0.22);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(var(--shell), calc(100% - 48px));
  min-height: calc(100svh - var(--header-height) - 42px);
  max-height: 820px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 68px 0 86px 48px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--deep-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  color: var(--gold);
}

.eyebrow span {
  width: 28px;
  height: 2px;
  margin-right: 12px;
  background: var(--teal);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--cream);
  font-size: 64px;
  font-weight: 550;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(247, 241, 230, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-assurance {
  display: flex;
  max-width: 650px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 241, 230, 0.16);
  gap: 12px 28px;
  flex-wrap: wrap;
}

.hero-assurance span {
  position: relative;
  padding-left: 15px;
  color: rgba(247, 241, 230, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.hero-assurance span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.button-primary:hover {
  background: var(--teal);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 0;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.text-link:hover {
  color: var(--teal);
}

.hero-identity {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-brand-art {
  width: min(510px, 43vw);
  max-width: none;
  opacity: 0.34;
  object-fit: contain;
  transform: translateX(42px);
}

.hero-app-stage {
  isolation: isolate;
}

.hero-shiftworth-art {
  position: absolute;
  right: 82px;
  bottom: 48px;
  z-index: 2;
  width: min(330px, 29vw);
  max-height: 570px;
  border: 1px solid rgba(247, 241, 230, 0.24);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  object-position: top center;
}

.hero-fingershot-art {
  position: absolute;
  top: 23%;
  right: 0;
  z-index: 3;
  width: 118px;
  height: 118px;
  border: 5px solid rgba(247, 241, 230, 0.92);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
  object-fit: cover;
}

.hero-capabilities {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  height: 42px;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  background: var(--teal);
  color: var(--charcoal);
  grid-template-columns: repeat(4, 1fr);
}

.hero-capabilities span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid rgba(27, 28, 33, 0.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-capabilities strong {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.hero-capabilities span:last-child {
  border-right: 1px solid rgba(27, 28, 33, 0.22);
}

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

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.product-values {
  padding: 72px 0;
  background: var(--cream);
  color: var(--ink);
}

.product-values-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.product-values-intro,
.product-values article {
  min-width: 0;
  min-height: 190px;
  padding: 32px;
  border-left: 1px solid var(--line-light);
}

.product-values article:last-child {
  border-right: 1px solid var(--line-light);
}

.product-values-intro {
  display: flex;
  padding-left: 0;
  flex-direction: column;
  justify-content: center;
}

.product-values-intro .section-kicker {
  margin-bottom: 14px;
}

.product-values-intro h2 {
  max-width: 410px;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 620;
}

.product-values article span {
  display: block;
  margin-bottom: 34px;
  color: var(--deep-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-values article h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.product-values article p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.services {
  padding: 112px 0 104px;
}

.apps-showcase {
  padding: 112px 0 120px;
  background: var(--charcoal);
  color: var(--cream);
}

.section-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 1fr 2fr 1fr;
  column-gap: 36px;
  align-items: start;
}

.section-heading h2 {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 48px;
  font-weight: 560;
}

.section-heading > p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.service-list {
  border-bottom: 1px solid var(--line-light);
}

.service-row {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 32px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 0.5fr 1.25fr 1.35fr 24px;
  column-gap: 28px;
  align-items: center;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.service-number {
  margin: 0;
  color: var(--deep-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-row h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 620;
  transition: color 180ms ease;
}

.service-row > p:nth-of-type(2) {
  margin: 0;
  color: var(--muted);
}

.service-accent {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--deep-gold);
  border-radius: 50%;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.service-row:hover .service-accent {
  border-color: var(--teal);
  background: var(--teal);
  transform: scale(1.25);
}

.service-deep-link {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-deep-link p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.automation {
  padding: 112px 0;
  background: #e9eef0;
  color: var(--ink);
}

.automation-heading {
  margin-bottom: 62px;
}

.automation-outcomes {
  display: grid;
  border-top: 1px solid rgba(27, 28, 33, 0.2);
  border-bottom: 1px solid rgba(27, 28, 33, 0.2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.automation-outcomes article {
  min-width: 0;
  min-height: 248px;
  padding: 32px;
  border-left: 1px solid rgba(27, 28, 33, 0.2);
  border-bottom: 1px solid rgba(27, 28, 33, 0.2);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.automation-outcomes article:nth-child(3n) {
  border-right: 1px solid rgba(27, 28, 33, 0.2);
}

.automation-outcomes article:nth-child(n + 4) {
  border-bottom: 0;
}

.automation-outcomes article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--deep-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.automation-outcomes h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 680;
}

.automation-outcomes p {
  margin: 0;
  color: #60666a;
  font-size: 14px;
  line-height: 1.65;
}

.adoption-panel {
  display: grid;
  margin-top: 58px;
  border-top: 5px solid var(--teal);
  background: var(--charcoal);
  color: var(--cream);
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
}

.adoption-copy {
  padding: 60px;
}

.adoption-copy .section-kicker {
  color: var(--teal);
}

.adoption-copy h3 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 37px;
  font-weight: 590;
}

.adoption-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin: 0 0 32px;
  color: rgba(247, 241, 230, 0.7);
  font-size: 16px;
}

.adoption-points {
  border-left: 1px solid rgba(247, 241, 230, 0.18);
}

.adoption-points > div {
  display: grid;
  min-height: 126px;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(247, 241, 230, 0.18);
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: center;
}

.adoption-points > div:last-child {
  border-bottom: 0;
}

.adoption-points strong {
  color: var(--gold);
  font-size: 14px;
}

.adoption-points span {
  color: rgba(247, 241, 230, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.automation-faq {
  display: grid;
  margin-top: 82px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.faq-intro h3 {
  max-width: 420px;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 620;
}

.faq-intro > p:not(.section-kicker) {
  max-width: 430px;
  margin: 0;
  color: #60666a;
}

.faq-list {
  border-top: 1px solid rgba(27, 28, 33, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(27, 28, 33, 0.22);
}

.faq-list summary {
  min-height: 74px;
  padding: 24px 8px 20px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 720;
}

.faq-list details[open] summary {
  color: var(--deep-gold);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 24px;
  padding-right: 28px;
  color: #60666a;
  font-size: 14px;
}

.healthcare {
  padding: 112px 0;
  background: #102c2b;
  color: var(--cream);
}

.healthcare-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
  gap: 72px;
  align-items: start;
}

.healthcare-label .section-kicker {
  margin-bottom: 18px;
  color: var(--teal);
}

.healthcare-label > span {
  display: block;
  max-width: 190px;
  color: rgba(247, 241, 230, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.healthcare-promise h2 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--cream);
  font-size: 48px;
  font-weight: 560;
}

.healthcare-promise > p {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(247, 241, 230, 0.72);
  font-size: 17px;
}

.healthcare-workflows {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid rgba(247, 241, 230, 0.2);
  border-bottom: 1px solid rgba(247, 241, 230, 0.2);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.healthcare-workflows article {
  min-width: 0;
  min-height: 272px;
  padding: 34px 30px;
  border-left: 1px solid rgba(247, 241, 230, 0.2);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.healthcare-workflows article:last-child {
  border-right: 1px solid rgba(247, 241, 230, 0.2);
}

.healthcare-workflows article > span {
  display: block;
  margin-bottom: 54px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.healthcare-workflows h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 680;
}

.healthcare-workflows p {
  margin: 0;
  color: rgba(247, 241, 230, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.healthcare-boundary {
  display: grid;
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid rgba(205, 162, 78, 0.48);
  border-bottom: 1px solid rgba(205, 162, 78, 0.48);
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2.25fr);
  gap: 56px;
  align-items: start;
}

.healthcare-boundary strong {
  color: var(--gold);
  font-size: 15px;
}

.healthcare-boundary p {
  max-width: 820px;
  margin: 0;
  color: rgba(247, 241, 230, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.healthcare-security-link {
  width: fit-content;
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 0;
  color: var(--cream);
}

.apps-heading {
  margin-bottom: 60px;
}

.portfolio-tracker {
  margin-bottom: 28px;
  border: 1px solid rgba(205, 162, 78, 0.36);
  background: #202228;
}

.tracker-heading {
  display: flex;
  min-height: 126px;
  padding: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(205, 162, 78, 0.34);
}

.tracker-label {
  display: flex;
  margin: 0 0 8px;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(53, 214, 180, 0.12);
}

.tracker-heading h3 {
  margin: 0;
  color: var(--cream);
  font-size: 28px;
  font-weight: 600;
}

.tracker-updated {
  margin: 0;
  color: rgba(247, 241, 230, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-stats {
  display: grid;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(205, 162, 78, 0.34);
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-stat {
  min-width: 0;
  min-height: 166px;
  padding: 26px 28px;
  border-left: 1px solid rgba(247, 241, 230, 0.14);
}

.portfolio-stat:last-child {
  border-right: 1px solid rgba(247, 241, 230, 0.14);
}

.portfolio-stat strong {
  display: block;
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 54px;
  font-variant-numeric: tabular-nums;
  font-weight: 560;
  line-height: 1;
}

.portfolio-stat:nth-child(2) strong {
  color: var(--teal);
}

.portfolio-stat p {
  margin: 0 0 4px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 750;
}

.portfolio-stat small {
  display: block;
  color: rgba(247, 241, 230, 0.52);
  font-size: 12px;
  line-height: 1.45;
}

.pipeline-list {
  padding: 12px 28px 16px;
}

.pipeline-row {
  display: grid;
  min-height: 68px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 241, 230, 0.1);
  grid-template-columns: 150px minmax(140px, 0.7fr) 1fr;
  gap: 24px;
  align-items: center;
}

.pipeline-row:last-child {
  border-bottom: 0;
}

.pipeline-row strong {
  color: var(--cream);
  font-size: 15px;
}

.pipeline-row > span:last-child {
  color: rgba(247, 241, 230, 0.58);
  font-size: 13px;
}

.pipeline-stage,
.app-status-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  padding: 5px 9px;
  align-items: center;
  border: 1px solid;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.stage-live,
.status-live {
  border-color: rgba(53, 214, 180, 0.54);
  background: rgba(53, 214, 180, 0.1);
  color: var(--teal);
}

.stage-review,
.status-review {
  border-color: rgba(205, 162, 78, 0.52);
  background: rgba(205, 162, 78, 0.1);
  color: var(--gold);
}

.stage-development,
.status-development {
  border-color: rgba(255, 113, 51, 0.52);
  background: rgba(255, 113, 51, 0.1);
  color: #ff8b59;
}

.app-feature {
  display: grid;
  min-height: 650px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.app-feature + .app-feature {
  margin-top: 28px;
}

.app-copy {
  display: flex;
  padding: 66px 58px;
  flex-direction: column;
  justify-content: center;
}

.app-feature-shiftworth {
  border: 1px solid rgba(247, 241, 230, 0.16);
  background: var(--charcoal-soft);
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border: 1px solid rgba(247, 241, 230, 0.14);
  border-radius: 8px;
  object-fit: cover;
}

.app-platform {
  display: flex;
  margin: 0 0 7px;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-title-row h3 {
  margin: 0;
  color: var(--cream);
  font-size: 36px;
  font-weight: 620;
}

.app-tagline {
  max-width: 510px;
  margin: 38px 0 18px;
  color: var(--gold);
  font-size: 29px;
  font-weight: 650;
  line-height: 1.2;
}

.app-description {
  max-width: 540px;
  margin: 0;
  color: rgba(247, 241, 230, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.app-facts {
  display: grid;
  max-width: 540px;
  margin-top: 28px;
  border-top: 1px solid rgba(247, 241, 230, 0.15);
  border-bottom: 1px solid rgba(247, 241, 230, 0.15);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-facts span {
  min-width: 0;
  padding: 14px 10px 13px;
  border-left: 1px solid rgba(247, 241, 230, 0.15);
  color: rgba(247, 241, 230, 0.52);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.app-facts span:first-child {
  padding-left: 0;
  border-left: 0;
}

.app-facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.app-benefits {
  display: grid;
  margin: 26px 0 34px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
  list-style: none;
}

.app-benefits li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 241, 230, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.app-benefits li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.app-button {
  width: fit-content;
}

.app-media {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
}

.app-media-phone {
  background: #e9eef0;
}

.app-media-phone::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 12px;
  height: 12px;
  border: 4px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.app-media-phone > img {
  width: min(500px, 78%);
  max-width: none;
  box-shadow: 0 34px 70px rgba(16, 27, 31, 0.28);
  transform: translateY(13%);
}

.app-screenshot-gallery {
  display: grid;
  padding: 78px 20px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.app-screenshot-gallery::after {
  right: 18px;
  bottom: 18px;
}

.app-screenshot-gallery > img {
  width: 100%;
  max-width: 230px;
  align-self: end;
  box-shadow: 0 26px 52px rgba(16, 27, 31, 0.25);
  transform: translateY(5%);
}

.app-screenshot-gallery > img:nth-child(2) {
  transform: translateY(10%);
}

.app-screenshot-gallery > img:nth-child(3) {
  transform: translateY(6%);
}

.app-feature-fingershot {
  border: 1px solid rgba(205, 162, 78, 0.3);
  background: #102c2b;
}

.app-feature-fingershot .app-copy {
  background: #102c2b;
}

.app-feature-fingershot .app-platform {
  color: var(--gold);
}

.app-feature-fingershot .app-tagline {
  color: #ff7133;
}

.app-feature-fingershot .app-benefits li::before {
  background: #ff7133;
}

.app-media-game {
  min-height: 650px;
  background: #e1661f;
}

.app-media-game::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 30px solid rgba(16, 44, 43, 0.22);
  content: "";
}

.app-media-game > img {
  width: min(420px, 66%);
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 36px 80px rgba(27, 28, 33, 0.34);
}

.game-score {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  width: 116px;
  height: 74px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(16, 44, 43, 0.9);
  color: var(--cream);
  flex-direction: column;
  justify-content: center;
}

.game-score span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-score strong {
  color: #ff7133;
  font-size: 28px;
  line-height: 1;
}

.coming-soon {
  display: flex;
  margin: 4px 0 0;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7133;
  box-shadow: 0 0 0 5px rgba(255, 113, 51, 0.16);
}

.app-feature-fingershot .status-development {
  color: #ff8b59;
}

.app-request {
  padding: 112px 0;
  background: #e9eef0;
  color: var(--ink);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: 86px;
  align-items: start;
}

.request-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.request-copy h2 {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 560;
}

.request-copy > p:not(.section-kicker) {
  max-width: 550px;
  margin: 0;
  color: #5f666a;
  font-size: 17px;
}

.request-principles {
  margin-top: 44px;
  border-top: 1px solid rgba(27, 28, 33, 0.2);
}

.request-principles > div {
  display: grid;
  min-height: 68px;
  border-bottom: 1px solid rgba(27, 28, 33, 0.2);
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.request-principles strong {
  color: var(--deep-gold);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.request-principles span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.request-form {
  display: grid;
  padding: 42px;
  border-top: 5px solid var(--teal);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(27, 28, 33, 0.14);
  gap: 22px;
}

.form-heading {
  display: flex;
  margin-bottom: 8px;
  padding-bottom: 22px;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(27, 28, 33, 0.16);
}

.form-heading p,
.form-heading span {
  margin: 0;
}

.form-heading p {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.form-heading span {
  color: var(--deep-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label > span {
  color: #44484b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 28, 33, 0.22);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
}

.request-form input,
.request-form select {
  min-height: 48px;
  padding: 0 13px;
}

.request-form textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--deep-gold);
  box-shadow: 0 0 0 3px rgba(205, 162, 78, 0.16);
}

.request-form ::placeholder {
  color: #8a8f92;
}

.request-form .form-note {
  color: #666b6f;
}

.mission {
  padding: 96px 0;
  background: var(--gold);
  color: var(--charcoal);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  column-gap: 72px;
  align-items: start;
}

.mission-label .section-kicker {
  margin-bottom: 18px;
  color: var(--charcoal);
}

.mission-label span {
  display: block;
  max-width: 190px;
  color: rgba(27, 28, 33, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mission-statement h2 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: 46px;
  font-weight: 550;
}

.mission-statement p {
  max-width: 760px;
  margin: 0;
  color: rgba(27, 28, 33, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.approach {
  padding: 112px 0 118px;
}

.section-heading-dark h2 {
  color: var(--cream);
}

.section-heading-dark > p:last-child {
  color: rgba(247, 241, 230, 0.66);
}

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

.step {
  min-height: 310px;
  padding: 38px 40px 44px;
  border-left: 1px solid var(--line-dark);
}

.step:last-child {
  border-right: 1px solid var(--line-dark);
}

.step-number {
  margin: 0 0 82px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.step h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 29px;
  font-weight: 600;
}

.step > p:last-child {
  margin: 0;
  color: rgba(247, 241, 230, 0.66);
}

.about {
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  column-gap: 90px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(156, 117, 44, 0.24);
  background: var(--cream);
}

.about-visual::before,
.about-visual::after {
  position: absolute;
  background: var(--teal);
  content: "";
}

.about-visual::before {
  top: 0;
  left: 0;
  width: 84px;
  height: 5px;
}

.about-visual::after {
  right: 0;
  bottom: 0;
  width: 5px;
  height: 84px;
}

.about-visual img {
  width: 88%;
  mix-blend-mode: multiply;
}

.about-copy h2 {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 560;
}

.about-copy > p:not(.section-kicker) {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
}

.text-link-dark {
  margin-top: 20px;
  color: var(--ink);
}

.contact {
  padding: 110px 0;
  background: var(--gold);
  color: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  column-gap: 100px;
}

.contact-copy .section-kicker {
  color: var(--charcoal);
}

.contact-copy h2 {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 48px;
  font-weight: 560;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 480px;
  color: rgba(27, 28, 33, 0.76);
  font-size: 17px;
}

.contact-email {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  font-weight: 750;
}

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

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(27, 28, 33, 0.56);
  border-radius: 0;
  background: transparent;
  color: var(--charcoal);
  outline: 0;
}

.contact-form input {
  min-height: 44px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 10px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--charcoal);
  box-shadow: 0 2px 0 var(--charcoal);
}

.button-dark {
  width: fit-content;
  margin-top: 4px;
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

.button-dark:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--charcoal);
}

.form-note {
  min-height: 24px;
  margin: -10px 0 0;
  color: rgba(27, 28, 33, 0.66);
  font-size: 13px;
}

.support-section {
  padding: 104px 0;
  border-top: 1px solid rgba(53, 214, 180, 0.34);
  background: #102c2b;
  color: var(--cream);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 96px;
  align-items: center;
}

.support-copy .section-kicker {
  color: var(--teal);
}

.support-copy h2 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 48px;
  font-weight: 560;
}

.support-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(247, 241, 230, 0.72);
  font-size: 17px;
}

.support-use {
  padding: 30px 0;
  border-top: 1px solid rgba(247, 241, 230, 0.2);
  border-bottom: 1px solid rgba(247, 241, 230, 0.2);
}

.support-use > p {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-use ul {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.support-use li {
  position: relative;
  padding-left: 20px;
  color: rgba(247, 241, 230, 0.88);
  font-size: 14px;
}

.support-use li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.support-use small {
  display: block;
  color: rgba(247, 241, 230, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.support-modal[hidden],
.support-step[hidden] {
  display: none;
}

.support-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.support-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 15, 0.82);
}

.support-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100svh - 48px);
  padding: 46px;
  overflow-y: auto;
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.44);
  color: var(--ink);
}

.support-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(27, 28, 33, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
  place-items: center;
}

.support-close:hover {
  border-color: var(--deep-gold);
  color: var(--deep-gold);
}

.dialog-step {
  margin: 0 0 18px;
  color: var(--deep-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-step > h2 {
  max-width: 590px;
  margin: 0 52px 18px 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 620;
}

.support-step > p:not(.dialog-step, .zelle-safety) {
  max-width: 590px;
  margin: 0;
  color: #5f666a;
  font-size: 16px;
}

.zelle-recipient {
  display: grid;
  margin: 30px 0 18px;
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: var(--charcoal);
  color: var(--cream);
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: center;
}

.zelle-recipient > span {
  color: rgba(247, 241, 230, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.zelle-recipient strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.copy-zelle {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  grid-column: 2;
  grid-row: 1 / 3;
}

.copy-zelle:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.zelle-safety {
  margin: 0 0 28px;
  color: #6b6f72;
  font-size: 12px;
  line-height: 1.55;
}

.support-next {
  width: fit-content;
}

.support-not-now,
.support-back {
  display: inline-flex;
  min-height: 44px;
  margin-left: 18px;
  padding: 9px 0;
  align-items: center;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.support-back {
  margin: 24px 0 0;
}

.supporter-form {
  display: grid;
  margin-top: 30px;
  gap: 20px;
}

.supporter-form label {
  display: grid;
  gap: 8px;
}

.supporter-form label > span {
  color: #44484b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supporter-form input,
.supporter-form select,
.supporter-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 28, 33, 0.24);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
}

.supporter-form input,
.supporter-form select {
  min-height: 48px;
  padding: 0 13px;
}

.supporter-form textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.supporter-form input:focus,
.supporter-form select:focus,
.supporter-form textarea:focus {
  border-color: var(--deep-gold);
  box-shadow: 0 0 0 3px rgba(205, 162, 78, 0.16);
}

.supporter-form .form-note {
  color: #666b6f;
}

.support-disclosure {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 28, 33, 0.16);
  color: #707477;
  font-size: 11px;
  line-height: 1.55;
}

.founder-hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--charcoal);
}

.founder-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, calc((100vw - var(--shell)) / 2));
  width: 1px;
  background: rgba(205, 162, 78, 0.24);
  content: "";
}

.founder-hero-art {
  position: absolute;
  top: -18%;
  right: 2%;
  width: min(620px, 48vw);
  height: 132%;
  max-width: none;
  opacity: 0.3;
  object-fit: contain;
}

.founder-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(720px, calc(100svh - var(--header-height)));
  padding-bottom: 56px;
  align-items: center;
}

.founder-hero-copy {
  max-width: 780px;
  padding-left: 48px;
}

.founder-hero-copy h1 {
  margin-bottom: 24px;
  font-size: 76px;
}

.founder-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(247, 241, 230, 0.74);
  font-size: 21px;
  line-height: 1.7;
}

.founder-hero-copy .text-link {
  min-height: 44px;
  padding: 8px 0;
}

.founder-focus {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  min-height: 56px;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  background: var(--teal);
  color: var(--charcoal);
  grid-template-columns: repeat(3, 1fr);
}

.founder-focus span {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(27, 28, 33, 0.22);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.founder-focus span:last-child {
  border-right: 1px solid rgba(27, 28, 33, 0.22);
}

.founder-story {
  padding: 110px 0;
}

.founder-story-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
  gap: 72px;
}

.founder-story-copy h2 {
  max-width: 820px;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 560;
}

.founder-story-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.founder-story-copy blockquote {
  max-width: 780px;
  margin: 42px 0 0;
  padding: 26px 0 26px 28px;
  border-left: 5px solid var(--teal);
  color: var(--ink);
  font-size: 23px;
  font-weight: 620;
  line-height: 1.5;
}

.founder-work {
  padding: 112px 0;
}

.founder-projects {
  border-bottom: 1px solid var(--line-dark);
}

.founder-project {
  display: grid;
  min-height: 246px;
  padding: 34px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 150px 70px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.founder-project-visual {
  display: grid;
  width: 126px;
  height: 126px;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 230, 0.2);
  border-radius: 8px;
  background: var(--cream);
  place-items: center;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.founder-project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-project-brand {
  background: var(--charcoal);
}

.founder-project-brand img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.founder-project-number {
  margin: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.founder-project-type {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-project h3 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 29px;
  font-weight: 620;
}

.founder-project > div:last-child > p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 241, 230, 0.66);
}

.founder-principles {
  padding: 96px 0;
  background: var(--gold);
  color: var(--charcoal);
}

.founder-principles-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.founder-principles .section-kicker {
  color: var(--charcoal);
}

.founder-principles h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 560;
}

.founder-principle-list {
  border-top: 1px solid rgba(27, 28, 33, 0.28);
}

.founder-principle-list p {
  display: grid;
  min-height: 86px;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(27, 28, 33, 0.28);
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
}

.founder-principle-list strong {
  font-size: 14px;
}

.founder-principle-list span {
  color: rgba(27, 28, 33, 0.72);
  font-size: 14px;
}

.founder-contact {
  padding: 100px 0;
  background: var(--cream);
  color: var(--ink);
}

.founder-contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: end;
}

.founder-contact h2 {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 560;
}

.founder-contact-grid > div:last-child p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--muted);
}

.founder-contact-grid > div:last-child a {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 0;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--deep-gold);
  font-size: 20px;
  font-weight: 750;
  transition: color 160ms ease;
}

.solutions-hero .founder-hero-copy {
  max-width: 920px;
}

.solutions-hero .founder-hero-copy h1 {
  max-width: 920px;
  font-size: 62px;
}

.solutions-focus {
  grid-template-columns: repeat(4, 1fr);
}

.capability-catalog {
  padding: 112px 0;
}

.capability-groups {
  border-bottom: 1px solid var(--line-light);
}

.capability-group {
  padding: 48px 0 0;
  border-top: 1px solid var(--line-light);
}

.capability-group > header {
  display: grid;
  margin-bottom: 34px;
  grid-template-columns: 72px minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.capability-group > header > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-group > header > span::after {
  width: 26px;
  height: 1px;
  background: rgba(156, 117, 44, 0.55);
  content: "";
}

.capability-group > header h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 640;
}

.capability-group > header p {
  max-width: 540px;
  margin: 2px 0 0;
  color: var(--muted);
}

.capability-items {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-items article {
  min-width: 0;
  min-height: 330px;
  padding: 32px 30px 38px;
  border-left: 1px solid var(--line-light);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.capability-items article:last-child {
  border-right: 1px solid var(--line-light);
}

.capability-items h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.capability-items article > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.capability-items ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.capability-items li {
  position: relative;
  padding-left: 18px;
  color: #4f5356;
  font-size: 13px;
}

.capability-items li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.engagement {
  padding: 112px 0;
}

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

.engagement-options article {
  min-height: 330px;
  padding: 36px 34px;
  border-left: 1px solid var(--line-dark);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.engagement-options article:last-child {
  border-right: 1px solid var(--line-dark);
}

.engagement-options article > span {
  display: block;
  margin-bottom: 72px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.engagement-options h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 27px;
  font-weight: 620;
}

.engagement-options p {
  margin: 0 0 24px;
  color: rgba(247, 241, 230, 0.68);
  font-size: 14px;
}

.engagement-options small {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-practice {
  padding: 112px 0;
  background: #e9eef0;
  color: var(--ink);
}

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

.security-grid article {
  min-width: 0;
  min-height: 220px;
  padding: 30px;
  border-left: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.security-grid article:nth-child(3n) {
  border-right: 1px solid var(--line-light);
}

.security-grid article:nth-child(n + 4) {
  border-bottom: 0;
}

.security-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--deep-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.security-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 680;
}

.security-grid p {
  margin: 0;
  color: #5f666a;
  font-size: 13px;
}

.hipaa-panel {
  display: grid;
  margin-top: 60px;
  border-top: 5px solid var(--teal);
  background: var(--charcoal);
  color: var(--cream);
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2.3fr);
}

.hipaa-label {
  padding: 46px 38px;
  border-right: 1px solid rgba(247, 241, 230, 0.18);
}

.hipaa-label .section-kicker {
  color: var(--teal);
}

.hipaa-label > span {
  color: rgba(247, 241, 230, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hipaa-copy {
  padding: 46px 52px;
}

.hipaa-copy h3 {
  margin-bottom: 22px;
  color: var(--cream);
  font-size: 36px;
  font-weight: 600;
}

.hipaa-copy > p {
  max-width: 800px;
  margin: 0 0 18px;
  color: rgba(247, 241, 230, 0.7);
  font-size: 15px;
}

.hipaa-links {
  display: flex;
  margin-top: 28px;
  gap: 18px 30px;
  flex-wrap: wrap;
}

.hipaa-links a {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 0;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 13px;
  font-weight: 750;
}

.hipaa-links a:hover {
  color: var(--teal);
}

.hipaa-copy small {
  display: block;
  margin-top: 24px;
  color: rgba(247, 241, 230, 0.46);
  font-size: 11px;
}

.delivery-process {
  padding: 112px 0;
  background: var(--cream);
  color: var(--ink);
}

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

.delivery-steps article {
  min-height: 220px;
  padding: 30px;
  border-left: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.delivery-steps article:nth-child(3n) {
  border-right: 1px solid var(--line-light);
}

.delivery-steps article:nth-child(n + 4) {
  border-bottom: 0;
}

.delivery-steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--deep-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.delivery-steps h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 680;
}

.delivery-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.services-cta {
  padding: 100px 0;
  background: #102c2b;
  color: var(--cream);
}

.services-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 96px;
  align-items: center;
}

.services-cta .section-kicker {
  color: var(--teal);
}

.services-cta h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 560;
}

.services-cta-grid > div:last-child > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(247, 241, 230, 0.7);
}

.services-cta-email {
  display: inline-flex;
  min-height: 44px;
  margin-left: 24px;
  padding: 8px 0;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 14px;
  font-weight: 750;
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-row:hover {
    background: rgba(205, 162, 78, 0.07);
    box-shadow: inset 4px 0 0 var(--teal);
  }

  .service-row:hover h3 {
    color: var(--deep-gold);
  }

  .automation-outcomes article:hover,
  .capability-items article:hover,
  .security-grid article:hover,
  .delivery-steps article:hover {
    background: rgba(255, 253, 248, 0.58);
    box-shadow: inset 0 4px 0 var(--teal);
  }

  .healthcare-workflows article:hover,
  .engagement-options article:hover {
    background: rgba(247, 241, 230, 0.055);
    box-shadow: inset 0 4px 0 var(--teal);
  }

  .founder-project:hover {
    background: rgba(247, 241, 230, 0.035);
    box-shadow: inset 4px 0 0 var(--teal);
  }

  .founder-project:hover .founder-project-visual {
    border-color: var(--teal);
    transform: translateY(-3px);
  }

  .founder-contact-grid > div:last-child a:hover,
  .services-cta-email:hover {
    color: var(--teal);
  }
}

.site-footer {
  display: grid;
  width: min(var(--shell), calc(100% - 48px));
  min-height: 160px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-footer > p {
  margin: 0;
  color: rgba(247, 241, 230, 0.52);
  font-size: 12px;
}

.site-footer > p:nth-child(2) {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer > p:last-child {
  text-align: right;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 20px;
  }

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

  h1 {
    font-size: 58px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .hero-copy {
    padding-left: 28px;
  }

  .hero-shiftworth-art {
    right: 54px;
    width: min(310px, 30vw);
  }

  .hero-fingershot-art {
    width: 100px;
    height: 100px;
  }

  .section-heading {
    grid-template-columns: 0.75fr 1.75fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
    margin-top: 24px;
  }

  .contact-grid {
    column-gap: 60px;
  }

  .app-copy {
    padding: 54px 40px;
  }

  .app-benefits {
    grid-template-columns: 1fr;
  }

  .request-grid {
    gap: 56px;
  }

  .adoption-copy {
    padding: 48px;
  }

  .automation-faq {
    gap: 60px;
  }

  .solutions-hero .founder-hero-copy h1 {
    font-size: 54px;
  }

  .capability-items article {
    padding-right: 24px;
    padding-left: 24px;
  }

  .services-cta-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 42px 24px;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a,
  .site-nav button {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    background: transparent;
    color: rgba(247, 241, 230, 0.82);
    text-align: left;
    font-size: 22px;
  }

  .site-nav .nav-cta {
    width: auto;
    margin-top: 28px;
    padding: 12px 18px;
    border: 1px solid var(--gold);
    font-size: 15px;
  }

  .hero {
    min-height: 790px;
    max-height: none;
  }

  .hero::before {
    left: 24px;
  }

  .hero-inner {
    min-height: 748px;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 74px 20px 190px 28px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-lede {
    max-width: 560px;
  }

  .hero-identity {
    position: absolute;
    right: -50px;
    bottom: -52px;
    width: 400px;
    height: 400px;
    opacity: 1;
  }

  .hero-brand-art {
    width: 360px;
    opacity: 0.2;
    transform: none;
  }

  .hero-shiftworth-art {
    right: 92px;
    bottom: 34px;
    width: 210px;
    max-height: 330px;
  }

  .hero-fingershot-art {
    top: 80px;
    right: 22px;
    width: 82px;
    height: 82px;
    border-width: 4px;
  }

  .services,
  .apps-showcase,
  .app-request,
  .automation,
  .healthcare,
  .mission,
  .approach,
  .about,
  .contact,
  .support-section {
    padding: 86px 0;
  }

  .product-values {
    padding: 70px 0;
  }

  .product-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-values-intro {
    min-height: 150px;
    padding-left: 0;
    border-right: 1px solid var(--line-light);
    grid-column: 1 / -1;
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .section-heading h2 {
    max-width: 680px;
    font-size: 42px;
  }

  .section-heading > p:last-child {
    max-width: 600px;
    grid-column: 1;
  }

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

  .automation-outcomes article:nth-child(3n) {
    border-right: 0;
  }

  .automation-outcomes article:nth-child(n + 4) {
    border-bottom: 1px solid rgba(27, 28, 33, 0.2);
  }

  .automation-outcomes article:nth-child(2n) {
    border-right: 1px solid rgba(27, 28, 33, 0.2);
  }

  .automation-outcomes article:nth-child(n + 5) {
    border-bottom: 0;
  }

  .adoption-panel {
    grid-template-columns: 1fr;
  }

  .adoption-points {
    border-top: 1px solid rgba(247, 241, 230, 0.18);
    border-left: 0;
  }

  .automation-faq {
    margin-top: 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro h3,
  .faq-intro > p:not(.section-kicker) {
    max-width: 640px;
  }

  .healthcare-intro,
  .healthcare-boundary {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .healthcare-label > span {
    max-width: none;
  }

  .healthcare-workflows {
    grid-template-columns: 1fr 1fr;
  }

  .healthcare-workflows article {
    min-height: 236px;
    border-bottom: 1px solid rgba(247, 241, 230, 0.2);
  }

  .healthcare-workflows article:nth-child(2n) {
    border-right: 1px solid rgba(247, 241, 230, 0.2);
  }

  .healthcare-workflows article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .service-row {
    grid-template-columns: 0.25fr 1fr 1.3fr 16px;
    column-gap: 18px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .mission-label span {
    max-width: none;
  }

  .mission-statement h2 {
    font-size: 40px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    row-gap: 58px;
  }

  .support-copy h2 {
    font-size: 42px;
  }

  .app-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .portfolio-stats {
    grid-template-columns: 1fr 1fr;
  }

  .pipeline-row {
    grid-template-columns: 130px minmax(120px, 0.7fr) 1fr;
    gap: 16px;
  }

  .portfolio-stat {
    min-height: 168px;
    border-bottom: 1px solid rgba(247, 241, 230, 0.14);
  }

  .portfolio-stat:nth-child(2n) {
    border-right: 1px solid rgba(247, 241, 230, 0.14);
  }

  .portfolio-stat:nth-child(n + 3) {
    border-bottom: 0;
  }

  .app-feature-fingershot .app-media {
    grid-row: 2;
  }

  .app-copy {
    padding: 58px 48px;
  }

  .app-media-phone,
  .app-media-game {
    min-height: 560px;
  }

  .app-media-phone > img {
    width: min(460px, 68%);
  }

  .app-screenshot-gallery {
    padding: 66px 28px 0;
    gap: 16px;
  }

  .app-screenshot-gallery > img {
    width: 100%;
    max-width: 220px;
  }

  .app-media-game > img {
    width: min(390px, 58%);
  }

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

  .step {
    min-height: 0;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-copy h2,
  .contact-copy h2,
  .request-copy h2 {
    font-size: 42px;
  }

  .request-grid {
    grid-template-columns: 1fr;
    row-gap: 54px;
  }

  .request-copy {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }

  .site-footer {
    padding: 42px 0;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p:nth-child(2) {
    display: none;
  }

  .founder-hero-art {
    top: 8%;
    right: -12%;
    width: 620px;
    height: 100%;
    opacity: 0.22;
  }

  .founder-hero-copy {
    padding-left: 28px;
  }

  .founder-hero-copy h1 {
    font-size: 62px;
  }

  .founder-story-grid,
  .founder-principles-grid,
  .founder-contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .founder-project {
    grid-template-columns: 120px 48px minmax(0, 1fr);
    gap: 24px;
  }

  .founder-project-visual {
    width: 104px;
    height: 104px;
  }

  .capability-catalog,
  .engagement,
  .security-practice,
  .delivery-process,
  .services-cta {
    padding: 86px 0;
  }

  .solutions-hero .founder-hero-copy h1 {
    font-size: 50px;
  }

  .capability-group > header {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .capability-group > header p {
    grid-column: 2;
  }

  .capability-items,
  .engagement-options {
    grid-template-columns: 1fr;
  }

  .capability-items article {
    min-height: 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .capability-items article:last-child {
    border-bottom: 0;
  }

  .engagement-options article {
    min-height: 0;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .engagement-options article:last-child {
    border-bottom: 0;
  }

  .engagement-options article > span {
    margin-bottom: 40px;
  }

  .security-grid,
  .delivery-steps {
    grid-template-columns: 1fr 1fr;
  }

  .security-grid article:nth-child(3n),
  .delivery-steps article:nth-child(3n) {
    border-right: 0;
  }

  .security-grid article:nth-child(n + 4),
  .delivery-steps article:nth-child(n + 4) {
    border-bottom: 1px solid var(--line-light);
  }

  .security-grid article:nth-child(2n),
  .delivery-steps article:nth-child(2n) {
    border-right: 1px solid var(--line-light);
  }

  .security-grid article:nth-child(n + 5),
  .delivery-steps article:nth-child(n + 5) {
    border-bottom: 0;
  }

  .hipaa-panel {
    grid-template-columns: 1fr;
  }

  .hipaa-label {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 241, 230, 0.18);
  }

  .services-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-cta h2 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .brand {
    min-width: 158px;
  }

  .brand-mark,
  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .brand-mark {
    flex-basis: 40px;
  }

  .brand-name strong {
    font-size: 19px;
  }

  .brand-name small {
    font-size: 8px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: 808px;
  }

  .hero::before {
    left: 16px;
  }

  .hero-copy {
    padding: 64px 8px 210px 22px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.65;
  }

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

  .hero-assurance {
    max-width: 310px;
    margin-top: 30px;
    gap: 8px 20px;
  }

  .button {
    width: 100%;
  }

  .hero-identity {
    right: -84px;
    bottom: -135px;
    width: 330px;
    height: 330px;
  }

  .hero-brand-art {
    width: 330px;
  }

  .hero-shiftworth-art {
    right: 76px;
    bottom: 26px;
    width: 178px;
    max-height: 280px;
  }

  .hero-fingershot-art {
    top: 66px;
    right: 18px;
    width: 72px;
    height: 72px;
  }

  .hero-capabilities {
    height: 42px;
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }

  .hero-capabilities span:nth-child(3),
  .hero-capabilities span:nth-child(4) {
    display: none;
  }

  .section-shell,
  .statement-inner,
  .site-footer {
    width: calc(100% - 40px);
  }

  .services,
  .apps-showcase,
  .app-request,
  .automation,
  .healthcare,
  .mission,
  .approach,
  .about,
  .contact,
  .support-section {
    padding: 72px 0;
  }

  .product-values {
    padding: 58px 0;
  }

  .product-values-grid {
    grid-template-columns: 1fr;
  }

  .product-values-intro,
  .product-values article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .product-values-intro {
    padding-top: 0;
    grid-column: auto;
  }

  .product-values-intro h2 {
    font-size: 28px;
  }

  .product-values article:last-child {
    padding-bottom: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .product-values article span {
    margin-bottom: 18px;
  }

  .automation-outcomes {
    grid-template-columns: 1fr;
  }

  .automation-outcomes article,
  .automation-outcomes article:nth-child(2n),
  .automation-outcomes article:nth-child(3n),
  .automation-outcomes article:nth-child(n + 4),
  .automation-outcomes article:nth-child(n + 5) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(27, 28, 33, 0.2);
    border-left: 0;
  }

  .automation-outcomes article:last-child {
    border-bottom: 0;
  }

  .automation-outcomes article > span {
    margin-bottom: 18px;
  }

  .automation-outcomes h3 {
    font-size: 22px;
  }

  .adoption-panel {
    margin-top: 42px;
  }

  .adoption-copy {
    padding: 38px 24px 42px;
  }

  .adoption-copy h3 {
    font-size: 30px;
  }

  .adoption-points > div {
    min-height: 0;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .automation-faq {
    margin-top: 62px;
  }

  .faq-intro h3 {
    font-size: 29px;
  }

  .faq-list summary {
    min-height: 68px;
    padding-right: 4px;
    font-size: 16px;
  }

  .healthcare-intro {
    gap: 24px;
  }

  .healthcare-promise h2 {
    font-size: 36px;
  }

  .healthcare-workflows {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .healthcare-workflows article,
  .healthcare-workflows article:nth-child(2n),
  .healthcare-workflows article:nth-child(n + 3) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 241, 230, 0.2);
    border-left: 0;
  }

  .healthcare-workflows article:last-child {
    border-bottom: 0;
  }

  .healthcare-workflows article > span {
    margin-bottom: 18px;
  }

  .healthcare-boundary {
    margin-top: 42px;
    gap: 12px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .request-copy h2 {
    font-size: 36px;
  }

  .service-row {
    padding: 28px 0;
    grid-template-columns: 42px 1fr 16px;
    row-gap: 14px;
  }

  .service-number {
    grid-column: 1;
  }

  .service-row h3 {
    grid-column: 2;
    font-size: 23px;
  }

  .service-row > p:nth-of-type(2) {
    grid-column: 2 / 4;
  }

  .service-accent {
    grid-column: 3;
    grid-row: 1;
  }

  .app-feature + .app-feature {
    margin-top: 20px;
  }

  .portfolio-stat {
    min-height: 154px;
    padding: 24px 18px;
  }

  .portfolio-stat strong {
    margin-bottom: 13px;
    font-size: 45px;
  }

  .portfolio-stat p {
    font-size: 13px;
  }

  .portfolio-stat small {
    font-size: 11px;
  }

  .tracker-heading {
    min-height: 0;
    padding: 24px 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .tracker-heading h3 {
    font-size: 24px;
  }

  .pipeline-list {
    padding: 10px 18px 14px;
  }

  .pipeline-row {
    grid-template-columns: 112px 1fr;
    gap: 8px 14px;
  }

  .pipeline-row > span:last-child {
    grid-column: 1 / -1;
  }

  .app-copy {
    padding: 42px 24px 48px;
  }

  .app-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .app-title-row h3 {
    font-size: 30px;
  }

  .app-tagline {
    margin-top: 30px;
    font-size: 25px;
  }

  .app-benefits {
    grid-template-columns: 1fr;
  }

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

  .app-facts span:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(247, 241, 230, 0.15);
  }

  .app-facts span:nth-child(4) {
    border-top: 1px solid rgba(247, 241, 230, 0.15);
  }

  .app-media-phone,
  .app-media-game {
    min-height: 430px;
  }

  .app-media-phone > img {
    width: 78%;
  }

  .app-screenshot-gallery {
    min-height: 390px;
    padding: 44px 10px 0;
    gap: 7px;
  }

  .app-screenshot-gallery > img {
    width: 100%;
  }

  .app-media-game > img {
    width: 66%;
    border-width: 5px;
  }

  .game-score {
    top: 20px;
    right: 20px;
    width: 102px;
    height: 66px;
  }

  .mission-statement h2 {
    font-size: 34px;
  }

  .mission-statement p {
    font-size: 16px;
  }

  .support-copy h2 {
    font-size: 36px;
  }

  .support-grid {
    row-gap: 44px;
  }

  .support-dialog {
    max-height: calc(100svh - 24px);
    padding: 34px 22px 28px;
  }

  .support-close {
    top: 12px;
    right: 12px;
  }

  .support-step > h2 {
    margin-right: 38px;
    font-size: 31px;
  }

  .zelle-recipient {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .zelle-recipient strong {
    font-size: 18px;
  }

  .copy-zelle {
    width: 100%;
    margin-top: 12px;
    grid-column: 1;
    grid-row: auto;
  }

  .support-not-now {
    width: 100%;
    margin: 10px 0 0;
    justify-content: center;
  }

  .supporter-form .button {
    width: 100%;
  }

  .step {
    padding: 32px 26px 38px;
  }

  .step-number {
    margin-bottom: 34px;
  }

  .about-visual {
    min-height: 310px;
  }

  .request-form {
    padding: 30px 24px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .site-footer {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .site-footer > p:last-child {
    text-align: left;
  }

  .founder-hero {
    min-height: min(720px, calc(100svh - var(--header-height)));
  }

  .founder-hero-inner {
    min-height: min(720px, calc(100svh - var(--header-height)));
    padding-bottom: 62px;
  }

  .founder-hero-art {
    top: 18%;
    right: -38%;
    width: 520px;
    opacity: 0.18;
  }

  .founder-hero-copy {
    padding-left: 22px;
  }

  .founder-hero-copy h1 {
    font-size: 50px;
  }

  .founder-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .founder-focus {
    min-height: 54px;
    padding: 0;
  }

  .founder-focus span {
    padding: 0 6px;
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.25;
  }

  .founder-story,
  .founder-work,
  .founder-principles,
  .founder-contact {
    padding: 72px 0;
  }

  .founder-story-grid {
    gap: 26px;
  }

  .founder-story-copy h2,
  .founder-principles h2,
  .founder-contact h2 {
    font-size: 34px;
  }

  .founder-story-copy blockquote {
    padding-left: 20px;
    font-size: 20px;
  }

  .founder-project {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px 20px;
    align-items: start;
  }

  .founder-project-visual {
    width: 76px;
    height: 76px;
    grid-row: 1 / 3;
  }

  .founder-project-number {
    grid-column: 2;
  }

  .founder-project > div:last-child {
    grid-column: 2;
  }

  .founder-project h3 {
    font-size: 24px;
  }

  .founder-principles-grid,
  .founder-contact-grid {
    gap: 38px;
  }

  .founder-principle-list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .founder-contact-grid > div:last-child a {
    font-size: 17px;
  }

  .service-deep-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .solutions-hero .founder-hero-copy h1 {
    font-size: 40px;
  }

  .solutions-hero .founder-hero-art {
    right: -42%;
    opacity: 0.12;
  }

  .solutions-focus span {
    font-size: 9px;
  }

  .capability-catalog,
  .engagement,
  .security-practice,
  .delivery-process,
  .services-cta {
    padding: 72px 0;
  }

  .capability-group {
    padding-top: 34px;
  }

  .capability-group > header {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .capability-group > header > span {
    font-size: 10px;
  }

  .capability-group > header p {
    grid-column: 1;
  }

  .capability-group > header h3 {
    font-size: 27px;
  }

  .capability-items article {
    padding: 28px 0 30px;
    border-right: 0;
    border-left: 0;
  }

  .capability-items article > p,
  .capability-items li,
  .security-grid p,
  .delivery-steps p {
    font-size: 14px;
    line-height: 1.65;
  }

  .engagement-options article {
    padding: 30px 24px 34px;
  }

  .security-grid,
  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .security-grid article,
  .security-grid article:nth-child(2n),
  .security-grid article:nth-child(3n),
  .security-grid article:nth-child(n + 4),
  .security-grid article:nth-child(n + 5),
  .delivery-steps article,
  .delivery-steps article:nth-child(2n),
  .delivery-steps article:nth-child(3n),
  .delivery-steps article:nth-child(n + 4),
  .delivery-steps article:nth-child(n + 5) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .security-grid article:last-child,
  .delivery-steps article:last-child {
    border-bottom: 0;
  }

  .security-grid article > span,
  .delivery-steps span {
    margin-bottom: 18px;
  }

  .hipaa-panel {
    margin-top: 42px;
  }

  .hipaa-label {
    padding: 32px 24px;
  }

  .hipaa-copy {
    padding: 34px 24px;
  }

  .hipaa-copy h3 {
    font-size: 30px;
  }

  .hipaa-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .hipaa-links a {
    width: 100%;
    justify-content: space-between;
  }

  .services-cta h2 {
    font-size: 36px;
  }

  .services-cta-email {
    width: fit-content;
    margin: 16px 0 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-inner {
    min-height: 788px;
  }

  .hero-copy {
    padding-top: 52px;
    padding-bottom: 190px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-actions {
    width: 100%;
    gap: 22px;
  }

  .section-shell,
  .statement-inner,
  .site-footer {
    width: calc(100% - 32px);
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .request-copy h2 {
    font-size: 33px;
  }

  .portfolio-stat {
    min-height: 148px;
    padding: 22px 14px;
  }

  .portfolio-stat strong {
    font-size: 41px;
  }

  .portfolio-stat small {
    max-width: 135px;
  }

  .app-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .app-title-row {
    gap: 14px;
  }

  .app-platform {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 9px;
  }

  .app-media-phone,
  .app-media-game {
    min-height: 390px;
  }

  .contact-grid {
    row-gap: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
