:root {
  --bg: #ffffff;
  --ink: #000000;
  --paper: #ffffff;
  --line: 4px solid var(--ink);
  --reverse-line: 4px solid var(--paper);
  --hard-shadow: 10px 10px 0 var(--ink);
  --gear-metal: #8f8f8f;
  --gear-center: #d10000;
  --logo-red: #d92f1f;
  --logo-orange: #ef6b1f;
  --logo-gold: #f6ad21;
  --logo-cream: #fff3df;
  --logo-charcoal: #20282b;
  --rainbow: linear-gradient(
    90deg,
    #ff1744,
    #ff8a00,
    #ffe600,
    #00d85a,
    #00a3ff,
    #5f35ff,
    #ff00b8
  );
  --ease: 160ms steps(2, end);
  color-scheme: light;
  font-family:
    Arial Black,
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: clip;
  background:
    linear-gradient(var(--ink) 2px, transparent 2px),
    linear-gradient(90deg, var(--ink) 2px, transparent 2px),
    var(--bg);
  background-size: 68px 68px;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

body::selection {
  color: var(--paper);
  background: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 4px solid #00a3ff;
  outline-offset: 4px;
}

.hero {
  display: flex;
  align-items: stretch;
  min-height: calc(100svh - 92px);
  border-bottom: var(--line);
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  width: 100%;
}

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

.hero-mark {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-right: var(--line);
  background: var(--ink);
  color: var(--paper);
}

.hero-mark span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  border-bottom: var(--line);
  font-family:
    Arial Black,
    Impact,
    sans-serif;
  font-size: 13rem;
  font-weight: 950;
  line-height: 0.75;
  isolation: isolate;
  transition:
    background var(--ease),
    color var(--ease),
    text-shadow var(--ease),
    transform var(--ease);
}

.hero-mark span:last-child {
  color: var(--ink);
  background: var(--paper);
  border-bottom: 0;
}

.hero-letter::before,
.hero-letter::after {
  position: absolute;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.hero-letter-m:hover,
.hero-letter-m:focus-visible {
  color: var(--paper);
  background: var(--ink);
  text-shadow:
    -7px 0 0 #d10000,
    7px 0 0 #8f8f8f;
}

.hero-letter-m::before {
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 28px,
      rgba(255, 255, 255, 0.18) 28px 36px,
      transparent 36px 58px
    );
  transform: translateX(-60px);
}

.hero-letter-m::after {
  right: 34px;
  bottom: 34px;
  width: 86px;
  height: 22px;
  background:
    repeating-linear-gradient(90deg, #d10000 0 18px, #8f8f8f 18px 36px, #ffffff 36px 44px);
  border: 4px solid var(--paper);
}

.hero-letter-m:hover::before,
.hero-letter-m:hover::after {
  opacity: 1;
}

.hero-letter-m:hover::before {
  animation: block-scan 700ms steps(6, end) infinite;
}

.hero-letter-m:hover::after {
  animation: mini-belt 520ms steps(4, end) infinite;
}

.hero-letter-j:hover,
.hero-letter-j:focus-visible {
  color: var(--paper);
  background: #00a3ff;
  text-shadow:
    -7px 0 0 #d10000,
    7px 0 0 #ffe600,
    0 7px 0 var(--ink);
}

.hero-letter-j::before {
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 22px,
      rgba(0, 0, 0, 0.24) 22px 34px,
      transparent 34px 54px
    ),
    linear-gradient(90deg, transparent 0 46%, var(--paper) 46% 49%, transparent 49% 100%);
  transform: translateX(-64px);
}

.hero-letter-j::after {
  left: 26px;
  top: 34px;
  width: 126px;
  height: 38px;
  background:
    linear-gradient(#ffe600, #ffe600) 0 0 / 34px 100% no-repeat,
    repeating-linear-gradient(90deg, var(--ink) 0 13px, var(--paper) 13px 20px);
  border: 4px solid var(--ink);
  box-shadow:
    14px 14px 0 #d10000,
    28px 28px 0 var(--paper);
}

.hero-letter-j:hover::before,
.hero-letter-j:hover::after {
  opacity: 1;
}

.hero-letter-j:hover::before {
  animation: warning-shutter 950ms steps(6, end) infinite;
}

.hero-letter-j:hover::after {
  animation: signal-meter 820ms steps(4, end) infinite;
}

.hero-logo-badge {
  position: relative;
  display: block;
  width: min(210px, 48vw);
  margin-bottom: 1.8rem;
  padding: 0.7rem;
  background: var(--paper);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}

.hero-logo-badge::before,
.hero-logo-badge::after {
  position: absolute;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.hero-logo-badge::before {
  inset: -4px;
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      var(--logo-red) 0 22%,
      var(--logo-orange) 22% 48%,
      var(--logo-gold) 48% 72%,
      var(--logo-charcoal) 72% 100%
    );
  transform: translate(8px, 8px);
}

.hero-logo-badge::after {
  right: 0.55rem;
  bottom: 0.55rem;
  width: 56px;
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--logo-red) 0 12px,
      var(--logo-orange) 12px 24px,
      var(--logo-gold) 24px 36px,
      var(--logo-cream) 36px 48px
    );
  border: 3px solid var(--ink);
}

.hero-logo-badge:hover,
.hero-logo-badge:focus-visible {
  box-shadow:
    4px 4px 0 var(--ink),
    10px 10px 0 var(--logo-red),
    16px 16px 0 var(--logo-gold);
  transform: translate(5px, 5px);
}

.hero-logo-badge:hover::before,
.hero-logo-badge:focus-visible::before,
.hero-logo-badge:hover::after,
.hero-logo-badge:focus-visible::after {
  opacity: 1;
}

.hero-logo-badge:hover .hero-side-logo,
.hero-logo-badge:focus-visible .hero-side-logo {
  animation: logo-jitter 780ms steps(4, end) infinite;
  filter:
    contrast(1.2)
    drop-shadow(-4px 0 0 var(--logo-red))
    drop-shadow(4px 0 0 var(--logo-gold));
}

.hero-side-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: filter var(--ease);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem;
}

.hero-copy p {
  max-width: 560px;
  margin: 2rem 0 2.5rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.85rem 1.25rem;
  border: var(--line);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--hard-shadow);
  cursor: pointer;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(0, 0);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    color var(--ease),
    background var(--ease);
}

.button:hover,
.button:focus-visible {
  color: var(--paper);
  background: var(--ink);
  box-shadow:
    4px 4px 0 var(--ink),
    10px 10px 0 #ff1744,
    16px 16px 0 #00a3ff;
  transform: translate(6px, 6px);
}

.proof-strip {
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--paper);
}

.proof-belt {
  display: grid;
  width: 200%;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  transform: translateX(0);
}

.proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem;
  border-right: var(--line);
  font-size: 1.35rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.invert-band {
  color: var(--paper);
  background: var(--ink);
}

.proof-strip.invert-band {
  border-bottom: var(--line);
}

.proof-strip.invert-band span {
  border-right: var(--reverse-line);
}

.proof-strip:hover .proof-belt,
.proof-strip:focus-within .proof-belt {
  animation: proof-conveyor 5200ms steps(64, end) infinite;
}

.section {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  border-bottom: var(--line);
  background: var(--paper);
}

.section-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
  border-right: var(--line);
  font-size: 1.4rem;
  font-weight: 950;
}

.section-body {
  padding: 4rem;
}

.section-title {
  display: inline-block;
  margin: 0 0 2rem;
  font-family:
    Arial Black,
    Impact,
    sans-serif;
  font-size: 5rem;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-grid,
.people-grid,
.project-form {
  display: grid;
  gap: 0;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--line);
  border-left: var(--line);
}

.service-block {
  --service-accent: #ff1744;
  --service-accent-2: #00a3ff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 280px;
  padding: 1.25rem;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--paper);
  transition:
    color var(--ease),
    background var(--ease),
    transform var(--ease);
}

.service-block:nth-child(2) {
  --service-accent: #ffe600;
  --service-accent-2: #ff00b8;
}

.service-block:nth-child(3) {
  --service-accent: #00d85a;
  --service-accent-2: #5f35ff;
}

.service-block::before,
.service-block::after {
  position: absolute;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.service-block::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, var(--service-accent) 0 34%, transparent 34% 100%),
    linear-gradient(135deg, transparent 0 58%, var(--service-accent-2) 58% 72%, transparent 72% 100%),
    var(--paper);
}

.service-block::after {
  z-index: 0;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  height: 18px;
  border: 4px solid var(--ink);
  background:
    repeating-linear-gradient(
      90deg,
      var(--ink) 0 18px,
      var(--paper) 18px 27px,
      var(--service-accent-2) 27px 45px,
      var(--paper) 45px 54px
    );
}

.service-block:hover {
  color: var(--ink);
  background: var(--service-accent);
  transform: translate(-8px, -8px);
}

.service-block:hover::before,
.service-block:hover::after {
  opacity: 1;
}

.service-block:hover::after {
  animation: service-ticker 900ms steps(6, end) infinite;
}

.service-block h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 4rem;
  font-family:
    Arial Black,
    Impact,
    sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  text-transform: uppercase;
  transition: text-shadow var(--ease), transform var(--ease);
}

.service-block:hover h3 {
  text-shadow:
    5px 5px 0 var(--paper),
    10px 10px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.service-block p {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
}

.people-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--line);
  border-left: var(--line);
}

.person {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.25rem;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--paper);
  transition:
    background var(--ease),
    color var(--ease),
    transform var(--ease);
}

.person-name,
.person-role {
  position: relative;
  z-index: 2;
  margin: 0;
}

.person-name {
  max-width: 400px;
  font-family:
    Arial Black,
    Impact,
    sans-serif;
  font-size: 3rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.keep-line {
  max-width: none;
  white-space: nowrap;
}

.person-role {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.invert-section {
  color: var(--paper);
  background: var(--ink);
}

.invert-section .section-number {
  border-right: var(--reverse-line);
}

.invert-section .people-grid {
  border-top: var(--reverse-line);
  border-left: var(--reverse-line);
}

.invert-section .person {
  color: var(--paper);
  background: var(--ink);
  border-right: var(--reverse-line);
  border-bottom: var(--reverse-line);
}

.person-justin:hover,
.person-justin:focus-within {
  color: var(--paper);
  background: #2a004f;
}

.person-micah:hover,
.person-micah:focus-within {
  color: var(--paper);
  background: #171717;
}

.gear-field {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.person:hover .gear-field,
.person:focus-within .gear-field {
  opacity: 1;
}

.gear {
  position: absolute;
  display: block;
  width: 104px;
  height: 104px;
  image-rendering: pixelated;
  opacity: 0;
  transform-origin: center;
  background:
    radial-gradient(circle at 50% 50%, var(--gear-center) 0 16%, var(--paper) 16% 21%, transparent 21%),
    repeating-conic-gradient(from 0deg, var(--gear-metal) 0deg 14deg, #5c5c5c 14deg 24deg, var(--gear-metal) 24deg 34deg, transparent 34deg 45deg),
    linear-gradient(var(--gear-metal), var(--gear-metal)) 50% 0 / 18% 100% no-repeat,
    linear-gradient(var(--gear-metal), var(--gear-metal)) 0 50% / 100% 18% no-repeat,
    linear-gradient(45deg, transparent 0 30%, var(--gear-metal) 30% 40%, transparent 40% 60%, var(--gear-metal) 60% 70%, transparent 70%),
    #555555;
  border: 4px solid currentColor;
  box-shadow:
    0 0 0 4px #c8c8c8,
    8px 8px 0 rgba(0, 0, 0, 0.35);
  clip-path: polygon(
    44% 0,
    56% 0,
    60% 13%,
    70% 16%,
    79% 8%,
    92% 21%,
    84% 30%,
    88% 40%,
    100% 44%,
    100% 56%,
    88% 60%,
    84% 70%,
    92% 79%,
    79% 92%,
    70% 84%,
    60% 88%,
    56% 100%,
    44% 100%,
    40% 88%,
    30% 84%,
    21% 92%,
    8% 79%,
    16% 70%,
    12% 60%,
    0 56%,
    0 44%,
    12% 40%,
    16% 30%,
    8% 21%,
    21% 8%,
    30% 16%,
    40% 13%
  );
}

.gear::after {
  position: absolute;
  inset: 35%;
  content: "";
  background: var(--gear-center);
  border: 4px solid var(--paper);
  box-shadow: inset 0 0 0 4px #7a0000;
}

.person:hover .gear,
.person:focus-within .gear {
  opacity: 0.9;
  animation: gear-spin 760ms steps(4, end) infinite;
}

.gear-one {
  top: -118px;
  right: -92px;
  width: 310px;
  height: 310px;
}

.gear-two {
  right: 96px;
  bottom: -42px;
  animation-direction: reverse;
}

.gear-three {
  right: 38px;
  bottom: 54px;
  width: 66px;
  height: 66px;
}

@keyframes gear-spin {
  to {
    transform: rotate(0.25turn);
  }
}

.conveyor-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.person-micah:hover .conveyor-field,
.person-micah:focus-within .conveyor-field {
  opacity: 1;
}

.belt-track {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 28px;
  height: 58px;
  overflow: hidden;
  background:
    linear-gradient(var(--gear-center), var(--gear-center)) 0 0 / 100% 8px no-repeat,
    linear-gradient(var(--gear-center), var(--gear-center)) 0 100% / 100% 8px no-repeat,
    #3f3f3f;
  border-top: 4px solid var(--paper);
  border-bottom: 4px solid var(--paper);
}

.belt-blocks {
  position: absolute;
  inset: 8px 0;
  width: 200%;
  background:
    repeating-linear-gradient(
      90deg,
      #8f8f8f 0 34px,
      #d10000 34px 42px,
      #111111 42px 54px,
      #8f8f8f 54px 88px
    );
  transform: translateX(0);
}

.person-micah:hover .belt-track,
.person-micah:focus-within .belt-track {
  animation: conveyor-jolt 700ms steps(4, end) infinite;
}

.person-micah:hover .belt-blocks,
.person-micah:focus-within .belt-blocks {
  animation: conveyor-roll 900ms steps(12, end) infinite;
}

.piston {
  position: absolute;
  top: 20px;
  width: 26px;
  height: 108px;
  background: var(--gear-metal);
  border: 4px solid var(--paper);
  box-shadow: inset 0 -22px 0 var(--gear-center), 8px 8px 0 rgba(0, 0, 0, 0.35);
}

.piston-one {
  right: 70px;
}

.piston-two {
  right: 126px;
  height: 78px;
}

.person-micah:hover .piston,
.person-micah:focus-within .piston {
  animation: piston-stamp 620ms steps(3, end) infinite;
}

.person-micah:hover .piston-two,
.person-micah:focus-within .piston-two {
  animation-delay: 180ms;
}

@keyframes conveyor-roll {
  to {
    transform: translateX(-88px);
  }
}

@keyframes proof-conveyor {
  to {
    transform: translateX(-50%);
  }
}

@keyframes block-scan {
  to {
    transform: translateX(58px);
  }
}

@keyframes mini-belt {
  to {
    background-position: 44px 0;
  }
}

@keyframes warning-shutter {
  to {
    transform: translateX(54px);
  }
}

@keyframes signal-meter {
  50% {
    transform: translate(12px, 8px);
  }
}

@keyframes logo-jitter {
  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-3px, 2px);
  }

  50% {
    transform: translate(3px, -2px);
  }

  75% {
    transform: translate(2px, 3px);
  }
}

@keyframes service-ticker {
  to {
    background-position: 54px 0;
  }
}

@keyframes conveyor-jolt {
  50% {
    transform: translateY(4px);
  }
}

@keyframes piston-stamp {
  50% {
    transform: translateY(34px);
  }
}

.project-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--line);
  border-left: var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  min-height: 132px;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--paper);
}

.field-wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

.project-form .field:nth-of-type(3) {
  grid-column: 1 / -1;
}

label {
  padding: 0.8rem 1rem;
  border-bottom: var(--line);
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-brutal label {
  color: var(--paper);
  background: var(--ink);
}

input,
textarea {
  width: 100%;
  flex: 1;
  border: 0;
  border-radius: 0;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 0;
  color: var(--paper);
  background: var(--ink);
}

.submit-button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 1.25rem;
  z-index: 35;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  margin: 1.4rem 0 0;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.bloom-field {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  height: 150px;
  overflow: hidden;
  pointer-events: none;
}

.plant {
  position: absolute;
  bottom: -8px;
  display: block;
  width: 20px;
  height: 118px;
  opacity: 0;
  transform: translateY(120px);
  image-rendering: pixelated;
}

.plant::before {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 8px;
  height: 84px;
  content: "";
  background: #00d85a;
  box-shadow:
    -12px 34px 0 #00a64a,
    12px 52px 0 #00a64a,
    -8px 70px 0 #00d85a;
}

.plant::after {
  position: absolute;
  right: -6px;
  top: 8px;
  width: 32px;
  height: 32px;
  content: "";
  background:
    linear-gradient(#ff1744, #ff1744) 8px 0 / 16px 32px no-repeat,
    linear-gradient(#ff1744, #ff1744) 0 8px / 32px 16px no-repeat,
    linear-gradient(#ffe600, #ffe600) 8px 8px / 16px 16px no-repeat;
  transform: scale(0);
  transform-origin: center bottom;
}

.plant span {
  position: absolute;
  right: -2px;
  bottom: 76px;
  width: 24px;
  height: 20px;
  background:
    linear-gradient(#00d85a, #00d85a) 0 8px / 24px 8px no-repeat,
    linear-gradient(#00d85a, #00d85a) 8px 0 / 8px 20px no-repeat;
}

.plant-one {
  left: 5%;
}

.plant-two {
  left: 17%;
  height: 96px;
}

.plant-three {
  left: 31%;
}

.plant-four {
  left: 45%;
  height: 104px;
}

.plant-five {
  left: 59%;
}

.plant-six {
  left: 72%;
  height: 92px;
}

.plant-seven {
  left: 84%;
}

.plant-eight {
  left: 94%;
  height: 100px;
}

.plant-two::after,
.plant-six::after {
  background:
    linear-gradient(#00a3ff, #00a3ff) 8px 0 / 16px 32px no-repeat,
    linear-gradient(#00a3ff, #00a3ff) 0 8px / 32px 16px no-repeat,
    linear-gradient(#ff00b8, #ff00b8) 8px 8px / 16px 16px no-repeat;
}

.plant-four::after,
.plant-eight::after {
  background:
    linear-gradient(#ff8a00, #ff8a00) 8px 0 / 16px 32px no-repeat,
    linear-gradient(#ff8a00, #ff8a00) 0 8px / 32px 16px no-repeat,
    linear-gradient(#ffe600, #ffe600) 8px 8px / 16px 16px no-repeat;
}

.show-bloom .plant {
  opacity: 1;
  animation: bloom-rise 760ms steps(5, end) forwards;
}

.show-bloom .plant::after {
  animation: flower-pop 760ms steps(4, end) forwards;
}

.show-bloom .plant-two,
.show-bloom .plant-five {
  animation-delay: 90ms;
}

.show-bloom .plant-three,
.show-bloom .plant-seven {
  animation-delay: 160ms;
}

.show-bloom .plant-four,
.show-bloom .plant-eight {
  animation-delay: 230ms;
}

.show-bloom .plant-two::after,
.show-bloom .plant-five::after {
  animation-delay: 90ms;
}

.show-bloom .plant-three::after,
.show-bloom .plant-seven::after {
  animation-delay: 160ms;
}

.show-bloom .plant-four::after,
.show-bloom .plant-eight::after {
  animation-delay: 230ms;
}

@keyframes bloom-rise {
  to {
    transform: translateY(0);
  }
}

@keyframes flower-pop {
  65%,
  100% {
    transform: scale(1);
  }
}

.chroma {
  position: relative;
  isolation: isolate;
  transition:
    text-shadow var(--ease),
    transform var(--ease);
}

.chroma:hover,
.chroma:focus-visible {
  text-shadow:
    -5px 0 0 #ff1744,
    5px 0 0 #00a3ff,
    -7px 0 0 #ff8a00,
    7px 0 0 #ff00b8,
    0 5px 0 #00d85a,
    0 -5px 0 #ffe600,
    9px 3px 0 #5f35ff;
}

.button.chroma:hover,
.button.chroma:focus-visible {
  text-shadow:
    -2px 0 0 #ff1744,
    2px 0 0 #00a3ff,
    0 2px 0 #00d85a;
}

@media (max-width: 900px) {
  .hero-grid,
  .section,
  .service-grid,
  .people-grid,
  .project-form {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    border-right: 0;
    border-bottom: var(--line);
  }

  .hero-mark span {
    min-height: 160px;
    border-right: var(--line);
    border-bottom: 0;
    font-size: 7rem;
  }

  .hero-mark span:last-child {
    border-right: 0;
  }

  .section-number {
    justify-content: flex-start;
    padding: 1rem;
    border-right: 0;
    border-bottom: var(--line);
  }

  .invert-section .section-number {
    border-right: 0;
    border-bottom: var(--reverse-line);
  }

  .section-body,
  .hero-copy {
    padding: 2rem;
  }

  .hero-logo-badge {
    width: min(180px, 54vw);
    margin-bottom: 1.4rem;
  }

  .hero-copy p {
    font-size: 1.55rem;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 1320px) {
  .service-block h3 {
    font-size: 2.8rem;
  }
}

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

  .service-block {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  body {
    background-size: 44px 44px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    align-content: start;
  }

  .hero-mark {
    width: min(280px, calc(100% - 2.4rem));
    margin: 1.2rem auto 0;
    border: var(--line);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .hero-mark span {
    aspect-ratio: 1 / 1;
    min-height: 98px;
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .hero-letter::before,
  .hero-letter::after {
    display: none;
  }

  .hero-copy {
    align-items: stretch;
    padding-top: 1.7rem;
  }

  .hero-logo-badge {
    width: min(150px, 56vw);
    align-self: center;
    margin: 0 auto 1.35rem;
    padding: 0.55rem;
  }

  .hero-copy p {
    width: 100%;
    margin: 1.2rem 0 1.8rem;
    font-size: 1.35rem;
  }

  .proof-strip {
    display: block;
  }

  .proof-belt {
    width: 400%;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .proof-strip span {
    min-height: 72px;
    border-bottom: var(--line);
    font-size: 0.95rem;
  }

  .proof-strip span:nth-last-child(-n + 4) {
    border-bottom: var(--line);
  }

  .proof-strip.invert-band span {
    border-bottom: var(--reverse-line);
  }

  .proof-strip.invert-band span:nth-last-child(-n + 4) {
    border-bottom: var(--reverse-line);
  }

  .section-body,
  .hero-copy {
    padding: 1.2rem;
  }

  .section-title {
    font-size: 2.7rem;
  }

  .service-block,
  .person {
    min-height: 190px;
  }

  .service-block h3,
  .person-name {
    font-size: 2.2rem;
  }

  .keep-line {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .gear {
    width: 82px;
    height: 82px;
  }

  .gear-one {
    top: -72px;
    right: -70px;
    width: 190px;
    height: 190px;
  }

  .gear-two {
    right: 74px;
    bottom: -38px;
  }

  .gear-three {
    right: 28px;
    bottom: 56px;
    width: 52px;
    height: 52px;
  }

  .belt-track {
    bottom: 18px;
    height: 50px;
  }

  .piston {
    top: 18px;
    height: 86px;
  }

  .piston-one {
    right: 40px;
  }

  .piston-two {
    right: 88px;
  }

  .field,
  .field-wide {
    min-height: 118px;
  }

  .button {
    width: 100%;
  }
}

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

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

  .chroma:hover,
  .chroma:focus-visible {
    text-shadow: none;
  }
}
