:root {
  color-scheme: light;
  --white: #ffffff;
  --black: #050506;
  --ink: #0a0a0b;
  --muted: rgba(10, 10, 11, 0.62);
  --line: rgba(10, 10, 11, 0.1);
  --blue: #0a44ff;
  --blue-bright: #2f6bff;
  --yellow: #ffc400;
  --red: #ec3027;
  --cream: #fff9e8;
  --display: "Clash Display", "Arial Narrow", Impact, sans-serif;
  --sans: "Satoshi", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(10, 10, 11, 0.04), 0 4px 16px rgba(10, 10, 11, 0.06);
  --shadow-lg: 0 18px 48px -12px rgba(10, 10, 11, 0.28);
  --shadow-blue: 0 16px 40px -12px rgba(10, 68, 255, 0.5);
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  width: 864px;
  transform-origin: top left;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--blue);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 210px 1fr 132px;
  align-items: center;
  height: 44px;
  padding: 0 37px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: background 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(10, 10, 11, 0.04), 0 8px 24px -16px rgba(10, 10, 11, 0.3);
}

.brand img {
  transition: opacity 240ms var(--ease);
}

.brand:hover img {
  opacity: 0.78;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  font-weight: 950;
}

.brand img {
  width: auto;
  height: 30px;
}

.footer-brand img {
  width: auto;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav a {
  position: relative;
  padding: 18px 0;
  color: rgba(10, 10, 11, 0.66);
  text-transform: capitalize;
  transition: color 200ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform-origin: left;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button-primary,
.contact-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 47px;
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.header-cta::before,
.button-primary::before,
.contact-form button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(120deg, var(--blue-bright), var(--blue));
  opacity: 0;
  transition: opacity 320ms var(--ease);
}

.button-primary:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.header-cta:hover {
  box-shadow: var(--shadow-blue);
}

.header-cta:hover::before,
.button-primary:hover::before,
.contact-form button:hover::before {
  opacity: 1;
}

.button-primary:active,
.contact-form button:active {
  transform: translateY(0);
}

.header-cta .arrow-icon,
.button-primary .arrow-icon,
.contact-form button .arrow-icon {
  transition: transform 320ms var(--ease);
}

.header-cta:hover .arrow-icon,
.button-primary:hover .arrow-icon,
.contact-form button:hover .arrow-icon {
  transform: translateX(4px);
}

.arrow-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: transparent url("assets/icons/arrowRight-blue.svg") center / contain no-repeat;
}

.header-cta .arrow-icon,
.button-primary .arrow-icon,
.contact-form button .arrow-icon,
.service-track .is-blue .arrow-icon,
.service-track .is-dark .arrow-icon,
.engagement-grid .arrow-icon {
  background-image: url("assets/icons/arrowRight-white.svg");
}

.service-track .is-yellow .arrow-icon,
.service-track article:not(.is-blue):not(.is-dark) .arrow-icon {
  background-image: url("assets/icons/arrowRight.svg");
}

.header-cta {
  justify-self: end;
  width: 120px;
  min-height: 28px;
  gap: 10px;
  font-size: 8px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(318px, 36.8%) minmax(0, 63.2%);
  min-height: 400px;
  background: var(--black);
  color: #fff;
}

.hero-copy {
  display: grid;
  align-content: center;
  position: relative;
  min-width: 0;
  padding: 42px 28px 40px 87px;
  overflow: visible;
  z-index: 2;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(10, 68, 255, 0.16), transparent 55%),
    radial-gradient(90% 120% at 0% 100%, rgba(255, 196, 0, 0.06), transparent 60%);
}

.hero-copy::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.kicker::before {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.85;
}

.hero .kicker,
.engagements h2 {
  color: var(--yellow);
}

.hero h1,
.outcome-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  width: max-content;
  margin-top: 18px;
  font-size: 42px;
  line-height: 0.92;
  transform: scaleX(0.9);
  transform-origin: left top;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:nth-child(3) {
  transform: none;
}

.hero mark {
  background: transparent;
  color: var(--yellow);
}

.hero-copy > p:not(.kicker) {
  max-width: 230px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  line-height: 1.45;
}

.hero .button-primary {
  width: 165px;
  min-height: 40px;
  margin-top: 18px;
  font-size: 9px;
}

.hero-media {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 12px;
  background: var(--black);
  content: "";
  pointer-events: none;
}

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

.services {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.services h2 {
  position: absolute;
  top: 23px;
  left: 36px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services h2::before {
  width: 18px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.service-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-track article {
  position: relative;
  display: grid;
  height: 270px;
  align-content: start;
  padding: 56px 36px 26px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background 360ms var(--ease);
}

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

.service-track article .ui-icon,
.service-track article span,
.service-track article a {
  transition: transform 420ms var(--ease);
}

.service-track article:hover .ui-icon {
  transform: translateY(-3px) scale(1.06);
}

.service-track article:hover a {
  transform: translateX(5px);
}

.service-track article:not(.is-blue):not(.is-dark):not(.is-yellow):hover {
  background: #fafafa;
}

.service-track span {
  font-family: var(--display);
  color: var(--blue);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-track h3,
.engagement-grid h3 {
  margin: 18px 0 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-track p,
.engagement-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 7.5px;
  font-weight: 400;
  line-height: 1.45;
}

.service-track a,
.engagement-grid a {
  align-self: end;
  width: fit-content;
  margin-top: 16px;
  color: inherit;
  font-size: 16px;
  font-weight: 900;
}

.service-track .is-blue {
  background: var(--blue);
  color: #fff;
}

.service-track .is-dark {
  background: var(--black);
  color: #fff;
}

.service-track .is-yellow {
  background: var(--yellow);
}

.service-track .is-blue span,
.service-track .is-dark span,
.service-track .is-blue p,
.service-track .is-dark p {
  color: #fff;
}

.service-track .is-yellow span {
  color: var(--ink);
}

.ui-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 27px;
  object-fit: contain;
}

.service-track .is-blue .ui-icon,
.service-track .is-dark .ui-icon,
.engagement-grid .ui-icon {
  filter: invert(1);
}

.platforms {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 20px 35px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.platforms h2 {
  margin: 0;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-row {
  display: grid;
  width: 100%;
  max-width: 1280px;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  align-items: start;
  gap: 9px;
}

.platform-row span {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(10, 10, 11, 0.72);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.18;
  cursor: default;
  transition: color 280ms var(--ease);
}

.platform-row span:hover {
  color: var(--ink);
}

.platform-row img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform 360ms var(--ease);
}

.platform-row span:hover img {
  transform: translateY(-3px) scale(1.05);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: var(--black);
  color: #fff;
  isolation: isolate;
}

.process::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(10, 68, 255, 0.18), transparent 55%),
    radial-gradient(60% 100% at 10% 110%, rgba(255, 196, 0, 0.07), transparent 60%),
    #050506;
}

.process h2 {
  position: absolute;
  top: 24px;
  left: 37px;
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.process h2 mark {
  background: transparent;
  color: var(--yellow);
}

.process-row {
  position: absolute;
  inset: 62px 35px 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 22px;
}

.process-row::before {
  position: absolute;
  top: 69px;
  left: 82px;
  right: 70px;
  height: 1px;
  border-top: 1px dotted rgba(255, 255, 255, 0.52);
  content: "";
}

.process-row article {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
}

.process-row article::after {
  position: absolute;
  top: 66px;
  left: calc(50% + 50px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  content: "";
}

.process-row article:last-child::after {
  display: none;
}

.process-row img {
  position: relative;
  z-index: 1;
  width: 125px;
  height: 92px;
  object-fit: contain;
  object-position: center;
}

.process-row span {
  margin-top: 9px;
  font-family: var(--display);
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.process-row article:first-child span,
.process-row article:last-child span {
  color: var(--red);
}

.process-row article:nth-child(3) span {
  color: var(--yellow);
}

.process-row h3 {
  margin: 6px 0 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.process-row p {
  max-width: 95px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 7.5px;
  font-weight: 400;
  line-height: 1.45;
}

.outcomes {
  display: grid;
  grid-template-columns: minmax(290px, 31%) 1fr;
  height: 200px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.outcome-copy {
  padding: 26px 38px 22px;
}

.outcome-copy h2 {
  max-width: none;
  width: max-content;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  transform: scaleX(0.78);
  transform-origin: left top;
}

.outcome-copy p:not(.kicker) {
  max-width: 220px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.outcome-copy .button-primary {
  width: 150px;
  min-height: 31px;
  margin-top: 12px;
  font-size: 8px;
}

.outcome-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.outcome-row article {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 200px;
  padding: 18px 18px;
  border-left: 1px solid var(--line);
  text-align: left;
}

.outcome-row article {
  transition: background 360ms var(--ease);
}

.outcome-row article:hover {
  background: #fafafa;
}

.outcome-row img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  transition: transform 460ms var(--ease);
}

.outcome-row article:hover img {
  transform: translateY(-4px) scale(1.05);
}

.outcome-row p {
  max-width: 105px;
  margin: 12px 0 0;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
}

.engagements {
  position: relative;
  display: grid;
  align-content: start;
  gap: 15px;
  height: 188px;
  padding: 30px 38px 34px;
  overflow: visible;
  background:
    radial-gradient(90% 160% at 100% 0%, var(--blue-bright), transparent 55%),
    linear-gradient(160deg, #0a44ff, #0533c9);
  color: #fff;
}

.engagement-blocks {
  position: absolute;
  top: -25px;
  right: 0;
  width: 150px;
  pointer-events: none;
}

.engagements h2 {
  margin: 0;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.engagement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
}

.engagement-grid article {
  max-width: 150px;
}

.engagement-grid .ui-icon,
.engagement-grid a {
  transition: transform 420ms var(--ease);
}

.engagement-grid article:hover .ui-icon {
  transform: translateY(-3px) scale(1.08);
}

.engagement-grid article:hover a {
  transform: translateX(5px);
}

.engagement-grid .ui-icon {
  width: 24px;
  height: 24px;
  margin-top: 0;
}

.engagement-grid h3 {
  margin-top: 10px;
  font-size: 9px;
}

.engagement-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  line-height: 1.42;
}

.engagement-grid a {
  margin-top: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 37%) 1fr;
  gap: 38px;
  min-height: 278px;
  padding: 26px 36px 28px;
  background: var(--white);
}

.contact h2 {
  max-width: 250px;
  margin-top: 14px;
  font-size: 30px;
  line-height: 0.96;
}

.contact-copy > p:not(.kicker) {
  max-width: 255px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.brief-list {
  display: grid;
  gap: 6px;
  margin-top: 21px;
}

.brief-list strong {
  color: var(--blue);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-list span {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  column-gap: 7px;
  align-items: start;
  font-size: 8px;
  font-weight: 850;
  line-height: 1.3;
}

.brief-list span::before {
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 0.36em;
  border: 1px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 28px;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  resize: vertical;
  transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

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

.contact-form label {
  transition: color 220ms var(--ease);
}

.contact-form label:focus-within {
  color: var(--blue);
}

.contact-form textarea {
  padding-top: 8px;
}

.contact-form button {
  width: 126px;
  min-height: 32px;
  font-size: 8px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-weight: 850;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 44px 38px 22px;
  background:
    radial-gradient(80% 140% at 100% 0%, rgba(10, 68, 255, 0.16), transparent 55%),
    #050506;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 34px;
  align-items: start;
}

.footer-intro {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.site-footer img {
  width: 132px;
  height: auto;
}

.footer-intro p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta .arrow-icon {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
  background-image: url("assets/icons/arrowRight.svg");
  filter: invert(78%) sepia(60%) saturate(1200%) hue-rotate(0deg) brightness(105%);
  transition: transform 320ms var(--ease);
}

.footer-cta:hover .arrow-icon {
  transform: translateX(4px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-nav div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-nav strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8.5px;
  font-weight: 400;
  transition: color 220ms var(--ease);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer-meta {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  body {
    width: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 64px;
    padding: 0 18px;
  }

  .brand img {
    height: 38px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

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

  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    font-size: 18px;
    line-height: 1.15;
  }

  body.menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 24px 28px;
    border-top: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

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

  .kicker,
  .text-link {
    font-size: 12px;
    line-height: 1.15;
  }

  .hero-copy {
    padding: 48px 22px 34px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 0.94;
    transform: scaleX(0.92);
  }

  .hero-copy > p:not(.kicker) {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero .button-primary {
    width: 205px;
    min-height: 48px;
    font-size: 11px;
  }

  .hero-media {
    height: min(112vw, 460px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #000;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 56% center;
    transform: scale(1.12);
  }

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

  .services h2 {
    top: 34px;
    left: 32px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .service-track article {
    height: auto;
    min-height: 400px;
    padding: 84px 32px 40px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-track span {
    font-size: 48px;
  }

  .service-track .ui-icon {
    width: 36px;
    height: 36px;
    margin-top: 42px;
  }

  .service-track h3 {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .service-track p {
    max-width: 360px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .service-track a {
    align-self: start;
    margin-top: 30px;
    font-size: 22px;
  }

  .platforms {
    padding: 32px 22px 28px;
  }

  .platforms h2 {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .platform-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .platform-row span {
    gap: 10px;
    font-size: 12px;
    line-height: 1.22;
  }

  .platform-row img {
    width: 52px;
    height: 52px;
  }

  .process img {
    min-height: 0;
  }

  .process {
    height: auto;
    padding: 46px 28px 58px;
  }

  .process h2 {
    position: static;
    font-size: 22px;
    line-height: 1.12;
  }

  .process-row {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 38px;
  }

  .process-row::before,
  .process-row article::after {
    display: none;
  }

  .process-row img {
    width: min(72vw, 340px);
    height: min(48vw, 230px);
  }

  .process-row article {
    max-width: 390px;
  }

  .process-row span {
    margin-top: 18px;
    font-size: 20px;
  }

  .process-row h3 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.05;
  }

  .process-row p {
    max-width: 360px;
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.5;
  }

  .outcome-copy,
  .contact {
    padding: 52px 22px;
  }

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

  .outcome-copy h2 {
    width: auto;
    white-space: normal;
    transform: none;
  }

  .outcome-copy h2,
  .contact h2 {
    font-size: 46px;
  }

  .outcome-copy p:not(.kicker),
  .contact-copy > p:not(.kicker),
  .brief-list span {
    font-size: 16px;
    line-height: 1.5;
  }

  .outcome-copy .button-primary {
    width: 220px;
    min-height: 52px;
    font-size: 12px;
  }

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

  .outcome-row article {
    height: auto;
    min-height: 280px;
    padding: 34px 22px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-row img {
    width: 118px;
    height: 118px;
  }

  .outcome-row p {
    max-width: 280px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.28;
  }

  .engagements {
    height: auto;
    gap: 36px;
    padding: 54px 28px 64px;
  }

  .engagement-blocks {
    top: -28px;
    width: clamp(150px, 24vw, 184px);
  }

  .engagements h2 {
    font-size: 14px;
    line-height: 1.15;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .engagement-grid article {
    max-width: 390px;
  }

  .engagement-grid .ui-icon {
    width: 42px;
    height: 42px;
  }

  .engagement-grid h3 {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.08;
  }

  .engagement-grid p {
    max-width: 360px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.42;
  }

  .engagement-grid a {
    margin-top: 18px;
    font-size: 24px;
  }

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

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

  .contact-form {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form label {
    gap: 12px;
    font-size: 14px;
    line-height: 1.2;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 52px;
    padding: 0 4px 12px;
    font-size: 17px;
  }

  .contact-form textarea {
    min-height: 96px;
    padding-top: 18px;
  }

  .contact-form textarea::placeholder {
    font-size: 17px;
  }

  .contact-form button {
    width: 228px;
    min-height: 58px;
    font-size: 14px;
  }

  .form-note {
    font-size: 14px;
  }

  .site-footer {
    gap: 40px;
    padding: 52px 22px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-intro {
    gap: 20px;
  }

  .footer-intro p {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.6;
  }

  .footer-cta {
    font-size: 13px;
  }

  .footer-cta .arrow-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-nav strong {
    font-size: 13px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
  }
}

@media (min-width: 600px) and (max-width: 820px) {
  .kicker,
  .text-link {
    font-size: 14px;
  }

  .process,
  .engagements,
  .contact {
    padding-right: 44px;
    padding-left: 44px;
  }

  .process h2 {
    font-size: 28px;
  }

  .process-row {
    gap: 68px;
  }

  .process-row img {
    width: 360px;
    height: 244px;
  }

  .process-row span {
    font-size: 24px;
  }

  .process-row h3 {
    font-size: 22px;
  }

  .process-row p {
    max-width: 620px;
    font-size: 22px;
    line-height: 1.45;
  }

  .outcome-copy,
  .contact {
    padding-right: 44px;
    padding-left: 44px;
  }

  .outcome-copy p:not(.kicker),
  .contact-copy > p:not(.kicker),
  .brief-list span {
    font-size: 18px;
  }

  .outcome-copy .button-primary {
    width: 250px;
    min-height: 60px;
    font-size: 14px;
  }

  .outcome-row article {
    min-height: 330px;
  }

  .outcome-row img {
    width: 140px;
    height: 140px;
  }

  .outcome-row p {
    max-width: 440px;
    font-size: 22px;
  }

  .engagement-grid article {
    max-width: 640px;
  }

  .engagement-blocks {
    top: -31px;
    width: 184px;
  }

  .engagements h2 {
    font-size: 16px;
  }

  .engagement-grid h3 {
    font-size: 26px;
  }

  .engagement-grid p {
    max-width: 640px;
    font-size: 22px;
  }

  .contact-form label {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 18px;
  }

  .contact-form textarea::placeholder {
    font-size: 18px;
  }

  .contact-form button {
    width: 260px;
    min-height: 64px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 42px;
  }
}

/* ============================================================
   PREMIUM ENHANCEMENTS — motion, focus, refinement
   ============================================================ */

/* Text link hover */
.text-link {
  transition: color 220ms var(--ease);
}

.text-link .arrow-icon {
  transition: transform 320ms var(--ease);
}

.text-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* Accessible focus rings */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Scroll reveal — only active when JS is present.
   Uses the independent `translate` property (not `transform`) so it composes
   with elements that carry their own `transform: scaleX()` (e.g. display headings). */
.has-js [data-reveal] {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.75s var(--ease-out), translate 0.75s var(--ease-out);
  will-change: opacity, translate;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  translate: none;
}

.has-js [data-reveal-stagger] > * {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.66s var(--ease-out), translate 0.66s var(--ease-out);
  will-change: opacity, translate;
}

.has-js [data-reveal-stagger].is-visible > * {
  opacity: 1;
  translate: none;
}

.has-js [data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 60ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 130ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 200ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 340ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 410ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 480ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 550ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(9) { transition-delay: 620ms; }
.has-js [data-reveal-stagger].is-visible > *:nth-child(10) { transition-delay: 690ms; }

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .has-js [data-reveal],
  .has-js [data-reveal-stagger] > * {
    opacity: 1 !important;
    translate: none !important;
  }
}
