@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-mono-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/dm-mono-500.woff2") format("woff2");
}

:root {
  --paper: #f5f1e8;
  --paper-deep: #e9e3d7;
  --ink: #151515;
  --ink-soft: #54524d;
  --blue: #1957ff;
  --blue-dark: #0c35a3;
  --orange: #ff5c35;
  --lime: #c8f43d;
  --white: #fffdf8;
  --line: rgba(21, 21, 21, 0.18);
  --font-sans: "Manrope", sans-serif;
  --font-mono: "DM Mono", monospace;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(5rem, 10vw, 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 700;
}

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

.section {
  padding-block: var(--section-space);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-name > span {
  color: var(--blue);
}

.brand-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 22px;
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 23px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 100%;
  transform: rotate(-23deg);
}

.brand-mark span:first-child {
  top: 0;
  left: 0;
}

.brand-mark span:last-child {
  right: 0;
  bottom: 0;
  border-color: var(--blue);
}

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: clamp(9.5rem, 15vw, 12.5rem);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(21, 21, 21, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 21, 21, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.eyebrow,
.section-index {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 2rem;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  font-weight: 700;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: -0.08em;
  bottom: 0.02em;
  left: -0.03em;
  height: 0.08em;
  border-radius: 100%;
  background: var(--orange);
  content: "";
  transform: rotate(-1.2deg);
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.button {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 1rem 1.1rem;
  font-size: 0.83rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  transform: translateY(-3px);
}

.text-link {
  padding-block: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.fluid-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(31vw, 390px);
  min-width: 310px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--blue);
  box-shadow: 28px 32px 0 var(--orange);
  transform: translate(-53%, -52%) rotate(-8deg);
  animation: morph 12s ease-in-out infinite alternate;
}

.shape-label {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-align: center;
  transform: rotate(8deg);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(21, 21, 21, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.orbit-one {
  width: 115%;
  height: 58%;
}

.orbit-two {
  width: 78%;
  height: 92%;
  transform: translate(-50%, -50%) rotate(35deg);
}

.visual-tag {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.tag-design {
  top: 7%;
  right: 2%;
}

.tag-code {
  bottom: 9%;
  left: -5%;
  background: var(--lime);
}

.tag-grow {
  right: -4%;
  bottom: 17%;
}

.visual-arrow {
  position: absolute;
  top: 12%;
  left: -8%;
  width: 42%;
  color: var(--ink);
}

.capability-bar {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(4rem, 8vw, 7rem);
  margin-bottom: 0;
  padding-block: 1.1rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  list-style: none;
  text-transform: uppercase;
}

.capability-bar li:not(:last-child)::after {
  margin-left: clamp(1rem, 2.6vw, 2.5rem);
  color: var(--orange);
  content: "+";
}

.statement {
  background: var(--ink);
  color: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
}

.statement-grid h2 {
  max-width: 930px;
  margin-bottom: 2.5rem;
}

.statement-grid h2 span {
  color: var(--lime);
}

.statement-grid > div > p {
  max-width: 680px;
  margin: 0 0 0 auto;
  color: rgba(255, 253, 248, 0.65);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading > p {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

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

.service-card {
  position: relative;
  min-height: 560px;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem) 2.5rem;
  border-right: 1px solid var(--ink);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

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

.service-card-featured {
  background: var(--white);
}

.service-card:hover {
  z-index: 1;
  background: var(--blue);
  color: var(--white);
  transform: translateY(-8px);
}

.service-card:hover p,
.service-card:hover li {
  color: rgba(255, 255, 255, 0.75);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.service-icon {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 3.5rem 0 3rem;
}

.icon-web span {
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 47% 53% 41% 59% / 59% 38% 62% 41%;
}

.icon-web span:last-child {
  inset: 27px 0 0 28px;
  border-color: var(--orange);
  transform: rotate(26deg);
}

.icon-app {
  display: grid;
  grid-template-columns: repeat(2, 34px);
  grid-template-rows: repeat(2, 34px);
  gap: 7px;
  transform: rotate(-7deg);
}

.icon-app span {
  border: 2px solid currentColor;
}

.icon-app span:nth-child(1) {
  background: var(--lime);
}

.icon-app span:nth-child(2) {
  grid-row: span 2;
  height: 75px;
  background: var(--orange);
}

.icon-growth span {
  position: absolute;
  bottom: 0;
  width: 22px;
  border: 2px solid currentColor;
}

.icon-growth span:nth-child(1) {
  left: 0;
  height: 35%;
}

.icon-growth span:nth-child(2) {
  left: 34px;
  height: 64%;
  background: var(--orange);
}

.icon-growth span:nth-child(3) {
  left: 68px;
  height: 100%;
  background: var(--lime);
}

.service-card h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.service-card > p {
  min-height: 76px;
  color: var(--ink-soft);
}

.service-card ul {
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "\2192";
}

.problems {
  background: var(--lime);
}

.problems-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.problems-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.problems-intro h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.problems-intro > p:last-child {
  max-width: 480px;
  font-size: 1.1rem;
}

.problem-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 2rem 0;
  border-top: 1px solid var(--ink);
}

.problem-list article:last-child {
  border-bottom: 1px solid var(--ink);
}

.problem-list article > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.problem-list h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.18;
}

.problem-list p {
  grid-column: 2;
  margin-bottom: 0;
}

.approach {
  background: var(--blue);
  color: var(--white);
}

.eyebrow-light > span {
  background: var(--lime);
}

.approach-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  list-style: none;
}

.steps li {
  min-height: 350px;
  padding: 1.5rem 1.5rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.steps li:first-child {
  padding-left: 0;
}

.steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.steps h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-graphic {
  position: relative;
}

.code-window {
  overflow: hidden;
  background: var(--ink);
  box-shadow: 24px 24px 0 var(--orange);
  color: var(--white);
  transform: rotate(-2deg);
}

.window-bar {
  display: flex;
  gap: 6px;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.window-bar span:first-child {
  background: var(--orange);
}

.code-window pre {
  min-height: 390px;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1.3vw, 1rem);
  line-height: 1.8;
  white-space: pre-wrap;
}

.code-muted {
  color: rgba(255, 255, 255, 0.4);
}

.code-blue {
  color: #7ba3ff;
}

.code-orange {
  color: #ff9b82;
}

.cert-stamp {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  display: grid;
  width: 145px;
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.25;
  text-align: center;
  transform: rotate(9deg);
}

.cert-stamp strong {
  font-size: 0.95rem;
}

.cert-stamp small {
  font-size: 0.55rem;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.about-copy > p {
  color: var(--ink-soft);
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
}

.sheridan-note {
  display: flex;
  gap: 1.3rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.sheridan-rule {
  flex: 0 0 5px;
  background: var(--blue);
}

.sheridan-note strong {
  display: block;
  margin-bottom: 0.4rem;
}

.sheridan-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact h2 {
  max-width: 980px;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 7rem);
}

.contact p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 2.5rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.button-light {
  min-width: min(100%, 330px);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--lime);
  transform: translateY(-3px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-shape {
  position: absolute;
  right: -10%;
  bottom: -42%;
  width: min(52vw, 650px);
  aspect-ratio: 1;
  border: 2px solid rgba(21, 21, 21, 0.25);
  border-radius: 37% 63% 62% 38% / 42% 33% 67% 58%;
  transform: rotate(-25deg);
}

.contact-shape::before,
.contact-shape::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.contact-shape::before {
  inset: 9%;
  transform: rotate(12deg);
}

.contact-shape::after {
  inset: 19%;
  transform: rotate(24deg);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 4rem;
}

.brand-footer .brand-name > span {
  color: var(--lime);
}

.brand-footer .brand-mark span:last-child {
  border-color: var(--lime);
}

.footer-main > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  font-size: 0.84rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.footer-legal p {
  margin-bottom: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes morph {
  0% {
    border-radius: 43% 57% 61% 39% / 56% 42% 58% 44%;
  }
  50% {
    border-radius: 63% 37% 42% 58% / 38% 61% 39% 62%;
  }
  100% {
    border-radius: 37% 63% 53% 47% / 62% 34% 66% 38%;
  }
}

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

  .hero-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .fluid-shape {
    width: 350px;
  }

  .capability-bar {
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    justify-content: flex-start;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

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

  .service-icon {
    grid-column: 1;
    grid-row: 2 / span 3;
    margin: 2.5rem 0 0;
  }

  .service-card h3 {
    grid-column: 2;
    margin-top: 2.5rem;
  }

  .service-card > p,
  .service-card ul {
    grid-column: 2;
  }

  .service-card > p {
    min-height: 0;
  }

  .problems-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .problems-intro {
    position: static;
  }

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

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }

  .about-graphic {
    max-width: 620px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    align-items: stretch;
    justify-content: center;
    padding: var(--gutter);
    background: var(--paper);
    font-size: 1.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

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

  .nav-cta {
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    padding-top: 8.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

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

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

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

  .fluid-shape {
    width: min(72vw, 320px);
    min-width: 250px;
    box-shadow: 18px 20px 0 var(--orange);
  }

  .orbit-one {
    width: 105%;
  }

  .visual-arrow {
    display: none;
  }

  .tag-design {
    top: 5%;
    right: 0;
  }

  .tag-code {
    bottom: 5%;
    left: 0;
  }

  .tag-grow {
    right: 0;
    bottom: 15%;
  }

  .capability-bar li:not(:last-child)::after {
    margin-left: 0.9rem;
  }

  .service-card {
    display: block;
    padding: 1.5rem 0 2.5rem;
  }

  .service-icon {
    margin: 2.5rem 0;
  }

  .service-card h3 {
    margin-top: 0;
  }

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

  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    display: grid;
    grid-template-columns: 55px 1fr;
    min-height: 0;
    padding: 1.7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 0;
  }

  .steps li:first-child {
    border-top: 0;
  }

  .step-number {
    margin-bottom: 0;
  }

  .code-window {
    box-shadow: 14px 14px 0 var(--orange);
  }

  .cert-stamp {
    right: -0.5rem;
    bottom: -3.5rem;
    width: 115px;
  }

  .about-copy {
    margin-top: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-top: 1rem;
  }

  .footer-legal {
    gap: 0.75rem;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
