.grid-demo {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background-color: dodgerblue;
  padding: 5px;
}

.grid-demo div {
  background-color: white;
  padding: 10px;
}

.grid-demo div.header {
  grid-area: header;
  text-align: center;
}

.grid-demo div.menu {
  grid-area: menu;
}

.grid-demo div.content {
  grid-area: content;
}

.grid-demo div.footer {
  grid-area: footer;
  text-align: center;
}

.site-header {
  width: 100%;
  height: 0;
}

.site-footer {
  position: relative;
  width: 100%;
  background-color: #000;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  padding-top: 240px;
  padding-bottom: 240px;
  text-align: center;
}

.thanks {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 10vw, 144px);
  line-height: normal;
  letter-spacing: -0.04em;
  text-align: center;
  cursor: text;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, text-shadow 280ms ease, letter-spacing 280ms ease;
  will-change: filter, text-shadow;
}

.thanks:hover {
  animation: thanks-blur-hover 2600ms ease-in-out infinite;
}

.thanks-credit {
  margin: 10px 0 0;
  color: #8f8f8f;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
}

.footer-socials {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 16px;
  z-index: 1000;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-social-link img {
  display: block;
  width: 30px;
  height: 30px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.08);
}

.back-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 30px;
  height: 30px;
  padding-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0b5ee2;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: transform 180ms ease, opacity 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px) scale(1.03);
  opacity: 1;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 0;
}

.menu-button {
  position: fixed;
  top: 30px;
  right: 30px;
  float: right;
  width: 25px;
  height: 21px;
  z-index: 1000;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  mix-blend-mode: difference;
}

.menu-button img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-button.is-swapping img {
  opacity: 0.3;
  transform: scale(0.92);
}

.menu-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 33.333vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 120px 40px 40px;
  background: #f5f5f5;
  box-shadow: -12px 0 24px -18px rgba(0, 0, 0, 0.35);
  z-index: 999;
  opacity: 1;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 280ms ease, visibility 0s linear 280ms;
}

.site-header.is-menu-open .menu-nav {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 280ms ease, visibility 0s;
}

.menu-nav a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  padding: 0.25rem 0;
}

.intro-copy {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: normal;
  letter-spacing: -0.04em;
  text-align: left;
}

.intro-name {
  color: #0b5ee2;
}

.intro-copy-body {
  margin-top: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.intro-copy-body p {
  margin: 0 0 1rem;
}

.intro-copy-body p:last-child {
  margin-bottom: 0;
}

.home-ask-form {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-ask-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.home-ask-input-wrap {
  position: relative;
  min-width: 320px;
  max-width: 520px;
  flex: 1 1 320px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  background: #fff;
  box-shadow: inset 1px 2px 4px 0 rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.home-ask-input-wrap input {
  width: 100%;
  height: 50px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0 16px 0 46px;
}

.home-ask-input-wrap input::placeholder {
  color: #777;
  opacity: 1;
}

.home-ask-badge {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #0a66c2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  pointer-events: none;
}

.home-ask-submit {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: #0b5ee2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-ask-submit:hover,
.home-ask-submit:focus-visible {
  background: #0a55cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11, 94, 226, 0.3);
}

.home-ask-disclaimer {
  margin: 10px 0 0;
  color: #7a7a7a;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.home-ask-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 0s linear 360ms;
}

.home-ask-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 360ms ease, visibility 0s linear 0s;
}

.home-ask-overlay.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 0s linear 0s;
}

.home-ask-overlay-card {
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 14px;
  border: 1px solid #d9d9d9;
  background: #efefef;
  color: #111;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  overflow: auto;
}

.home-ask-overlay-loader {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #d2d2d2;
  border-top-color: #0b5ee2;
  margin: 0 auto 14px;
  opacity: 0;
  animation: home-ask-spin 700ms linear infinite;
}

.home-ask-overlay.is-loading .home-ask-overlay-loader {
  display: block;
  opacity: 1;
}

@keyframes home-ask-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-ask-overlay-message {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000;
  text-align: left;
}

.home-ask-overlay-message a {
  color: #0b5ee2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-ask-overlay-response {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-ask-overlay-avatar {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.home-ask-overlay-followup {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;
}

.home-ask-input-wrap-overlay {
  flex: 1 1 260px;
  min-width: 0;
  max-width: none;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
  box-shadow: inset 1px 2px 4px 0 rgba(0, 0, 0, 0.07);
}

.home-ask-input-wrap-overlay input {
  height: 40px;
  font-size: 14px;
  color: #111;
  padding-left: 40px;
}

.home-ask-input-wrap-overlay:focus-within {
  border-color: #1a5ddf;
  box-shadow: 0 0 0 2px rgba(26, 93, 223, 0.25);
}

.home-ask-submit-overlay {
  height: 40px;
  min-height: 40px;
  min-width: 150px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  align-self: stretch;
}

.home-ask-overlay-close {
  margin-top: 18px;
  min-width: 96px;
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  border: 0;
  background: #111;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-ask-overlay-close:hover,
.home-ask-overlay-close:focus-visible {
  background: #000;
  color: #fff;
}

.contact-form-wrap {
  max-width: 700px;
}

.contact-form-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: normal;
  letter-spacing: -0.04em;
  text-align: left;
  color: #000;
}

.contact-form-intro {
  margin: 26px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  color: #23252c;
}

.contact-form {
  margin-top: 28px;
}

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

.contact-success,
.contact-error {
  margin-top: 18px;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}

.contact-success {
  background: #e9f8ee;
  border: 1px solid #b7e4c3;
  color: #0f5132;
  opacity: 0;
  transform: translateY(6px) scale(0.985);
}

.contact-success-visible {
  animation: contact-success-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards, contact-success-pulse 900ms ease-out 560ms 1;
}

@keyframes contact-success-enter {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contact-success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 81, 50, 0.16);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(15, 81, 50, 0);
  }
}

.contact-error {
  background: #fdecec;
  border: 1px solid #f5b8b8;
  color: #8a1f1f;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #f6f6f6;
  box-shadow: inset 1px 2px 4px 0 rgba(0, 0, 0, 0.07);
  color: #999999;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0;
  padding: 20px 24px;
  text-align: left;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999999;
  opacity: 1;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-input:not(:placeholder-shown),
.contact-textarea:not(:placeholder-shown) {
  color: #000;
}

.contact-input {
  margin: 0 0 14px;
  max-width: 360px;
  max-height: 50px;
}

.contact-textarea {
  margin: 0;
  min-height: 220px;
  resize: vertical;
}

.contact-submit {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 30px;
  border: 0;
  border-radius: 10px;
  background: #0b5ee2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #0a55cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 94, 226, 0.28);
}

.contact-linkedin-wrap {
  padding-top: 24px;
}

.contact-linkedin-link {
  display: inline-flex;
  align-items: center;
  color: #0274b3;
  font-weight: 700;
  text-decoration: none;
}

.contact-linkedin-link:hover,
.contact-linkedin-link:focus-visible {
  text-decoration: underline;
}

.contact-linkedin-icon {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

.left-column-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  animation: left-column-bg-cycle 12000ms ease-in-out infinite alternate;
}

.contact-page .left-column-panel {
  animation: none;
  background-color: #fff;
  padding-top: calc(3rem + 30px) !important;
  padding-bottom: calc(3rem + 30px) !important;
}

.contact-page .right-column-bg {
  display: flex;
}

.contact-page .right-column-bg .home-profile-img {
  flex: 1 1 auto;
  max-height: none;
}

@keyframes left-column-bg-cycle {
  0% {
    background-color: #fff;
  }

  100% {
    background-color: #ebebeb;
  }
}

.left-column-inner {
  width: 100%;
  max-width: 580px;
}

.right-column-bg {
  background-color: #f9f9f9;
}

.home-hero {
  background-color: #f9f9f9;
}

.home-hero-white {
  background-color: #fff;
}

.home-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
}

.home-hero-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.home-hero-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home-hero-grid-col {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-hero-grid-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.home-hero-grid-col:nth-child(2) {
  background-color: #ececec;
}

.home-hero-grid-col:nth-child(3) {
  background-color: #f6f6f6;
}

.home-hero-grid-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  transition: transform 320ms ease, filter 320ms ease;
}

.home-hero-grid-col-featured {
  display: block;
}

.home-hero-grid-col-featured .home-hero-grid-link {
  display: block;
}

.home-hero-grid-col-cta {
  background-color: #f9f9f9;
}

.home-hero-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 15px 30px;
  box-sizing: border-box;
  background-color: #0b5ee2;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-hero-grid-col-cta:hover,
.home-hero-grid-col-cta:focus-within {
  transform: none;
  box-shadow: none;
}

.home-hero-cta-link:hover,
.home-hero-cta-link:focus-visible {
  background-color: #0a55cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 94, 226, 0.28);
}

.home-hero-grid-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: transform 220ms ease, opacity 220ms ease;
}

.home-hero-text-only .home-hero-grid-col {
  background-color: #fff;
}

.home-hero-text-only .home-hero-grid {
  margin-top: 0;
}

.home-hero-text-only .home-hero-grid-link {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
}

.home-hero-grid-top-text {
  margin: 0;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.home-hero-grid-text-wrap {
  display: flex;
  flex-direction: column;
}

.home-hero-grid-subtext {
  margin: 12px 0 0;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.home-hero-grid-snapshot {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}

.home-hero-grid-col:not(.home-hero-grid-col-cta):hover,
.home-hero-grid-col:not(.home-hero-grid-col-cta):focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.home-hero-grid-col:not(.home-hero-grid-col-cta):hover .home-hero-grid-img,
.home-hero-grid-col:not(.home-hero-grid-col-cta):focus-within .home-hero-grid-img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.home-hero-grid-col:not(.home-hero-grid-col-cta):hover .home-hero-grid-overlay,
.home-hero-grid-col:not(.home-hero-grid-col-cta):focus-within .home-hero-grid-overlay {
  transform: translateY(-4px);
  opacity: 1;
}

.home-profile-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: cover;
}

.project-detail-page {
  width: 100%;
}

.project-media-band {
  width: 100%;
}

.project-media-band-title-wrap {
  padding: 80px 0 40px;
}

.project-media-band img {
  display: block;
  width: 100%;
  height: auto;
}

.project-inline-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: #0d0d0d;
  overflow: hidden;
}

.project-video-trigger,
.project-video-embed {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-video-trigger {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transition: opacity 600ms ease;
  will-change: opacity;
}

.project-video-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.project-video-trigger:hover img,
.project-video-trigger:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.86) saturate(1.06);
}

.project-video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 72%);
  opacity: 0.3;
  transition: opacity 280ms ease;
}

.project-video-trigger:hover::after,
.project-video-trigger:focus-visible::after {
  opacity: 0.55;
}

.project-video-embed {
  display: none;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
  will-change: opacity;
  overflow: hidden;
}

.project-video-embed iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-inline-video.is-playing .project-video-trigger {
  display: none;
}

.project-inline-video.is-playing .project-video-embed {
  display: block;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.project-media-band-hero img {
  animation: project-hero-fade-in 700ms ease-out both;
}

@keyframes project-hero-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.project-text-band {
  width: 100%;
  background: #2d2e32;
}

.project-text-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
}

.project-text-light,
.project-text-bold {
  margin: 0 auto;
  max-width: 640px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  text-align: left;
}

.project-text-light {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
}

.project-text-bold {
  margin-top: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.project-detail-page-oyster .project-text-container {
  max-width: 700px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.project-detail-page-oyster .project-detail-heading,
.project-detail-page-oyster .project-detail-copy,
.project-detail-page-oyster .project-detail-tags,
.project-detail-page-oyster .project-detail-launch,
.project-detail-page-oyster .project-detail-actions {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.project-detail-page-oyster .project-detail-link {
  margin-left: 0;
  margin-right: 0;
}

.project-detail-heading {
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.project-detail-heading,
.project-detail-copy,
.project-detail-tags,
.project-detail-launch,
.project-detail-actions {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.project-detail-heading-strong {
  font-weight: 700;
}

.project-detail-copy {
  margin-top: 6px;
  margin-bottom: 26px;
  color: #d6d8de;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
}

.project-detail-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-detail-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 24px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  color: #f5f5f5;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0;
}

.project-detail-launch {
  margin-top: 30px;
  margin-bottom: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.project-detail-link {
  margin-top: 16px;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 30px;
  border-radius: 10px;
  background: #0b5ee2;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.project-detail-link:hover,
.project-detail-link:focus-visible {
  background: #0a55cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 94, 226, 0.28);
}

.typewriter-host {
  position: relative;
  color: transparent !important;
}

.typewriter-sizer {
  visibility: hidden;
  white-space: pre-wrap;
}

.typewriter-typed {
  position: absolute;
  inset: 0;
  color: var(--typewriter-color, #fff);
  white-space: pre-wrap;
  pointer-events: none;
}

.project-bottom-grid-section {
  background: #fff;
}

.project-bottom-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
}

.project-bottom-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.project-bottom-grid-col {
  min-height: 160px;
  border-radius: 30px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-bottom-grid-col-featured {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-bottom-grid-col-featured:hover,
.project-bottom-grid-col-featured:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.project-bottom-grid-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.project-bottom-grid-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  transition: transform 320ms ease, filter 320ms ease;
}

.project-bottom-grid-col-featured:hover .project-bottom-grid-img,
.project-bottom-grid-col-featured:focus-within .project-bottom-grid-img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.project-bottom-grid-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 22px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.project-bottom-grid-col-cta {
  background-color: #f9f9f9 !important;
  border-radius: 30px;
  padding: 18px;
  box-sizing: border-box;
}

.project-bottom-grid-col-cta .home-hero-cta-link {
  font-size: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.project-sticky-nav {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  --project-nav-lift: 0px;
  transform: translateY(calc(8px - var(--project-nav-lift)));
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-sticky-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(calc(0px - var(--project-nav-lift)));
}

.project-sticky-nav-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
  letter-spacing: 0;
  text-transform: none;
  mix-blend-mode: difference;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.project-sticky-nav-icon {
  display: inline-block;
  line-height: 1;
  transform-origin: center;
}

.project-sticky-nav-icon-prev {
  transform: translateX(2px) rotate(-90deg);
}

.project-sticky-nav-icon-next {
  transform: translateX(-2px) rotate(90deg);
}

.project-sticky-nav-btn:hover,
.project-sticky-nav-btn:focus-visible {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.about-hero-left {
  animation: none;
  background: #fff;
}

.about-block {
  width: 100%;
}

.about-block-light {
  background: #f9f9f9;
}

.about-block-white {
  background: #fff;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
}

.about-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.about-lead {
  margin: 14px 0 0;
  max-width: 760px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #111;
}

.about-logo-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 44px;
  align-items: center;
}

.about-brand-grid {
  margin-top: 22px;
  gap: 0;
}

.about-tools-grid {
  gap: 0;
}

.about-logo-grid img {
  max-width: 100%;
  height: auto;
}

.about-experience-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.about-experience-col h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  letter-spacing: 0;
  color: #000;
  text-align: left;
}

.about-experience-col h3 img {
  width: 18px;
  height: 18px;
}

.about-experience-col ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.about-experience-col li {
  margin: 0 0 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0;
  color: #000;
  text-align: left;
}

.about-experience-col li:last-child {
  margin-bottom: 0;
}

.about-tools-grid img {
  max-width: 100%;
  height: auto;
}

.section-shadow-band {
  height: 180px;
  box-shadow: inset 0 12px 18px -14px rgba(0, 0, 0, 0.22), inset 0 -12px 18px -14px rgba(0, 0, 0, 0.22);
}

.scroll-reveal {
  opacity: 0;
  transform: none;
  transition: opacity 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-in-view {
  opacity: 1;
  transform: none;
}

.thanks.scroll-reveal.is-in-view:hover {
  animation: thanks-blur-hover 2600ms ease-in-out infinite;
}

@keyframes thanks-blur-hover {
  0% {
    filter: blur(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 0);
  }

  77% {
    filter: blur(1.8px);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.28), 0 0 34px rgba(255, 255, 255, 0.16);
  }

  100% {
    filter: blur(0);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-in-view {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .thanks,
  .thanks.scroll-reveal.is-in-view {
    animation: none;
    filter: none;
    text-shadow: none;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .menu-button {
    top: 20px;
    right: 20px;
  }

  .footer-inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .thanks {
    font-size: clamp(42px, 14vw, 64px);
  }

  .thanks-credit {
    margin-top: 8px;
    font-size: 10px;
  }

  .footer-socials {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .back-to-top {
    left: 20px;
    bottom: 20px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .project-sticky-nav {
    right: 20px;
    bottom: 20px;
    gap: 8px;
  }

  .project-sticky-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .footer-social-link img {
    width: 24px;
    height: 24px;
  }

  .left-column-panel {
    padding: 30px !important;
  }

  .intro-copy {
    font-size: 32px;
  }

  .intro-copy-body {
    font-size: 16px;
  }

  .home-ask-form {
    margin-top: 18px;
    gap: 10px;
  }

  .home-ask-input-wrap {
    min-width: 100%;
    flex-basis: 100%;
  }

  .home-ask-submit {
    width: 100%;
  }

  .home-ask-disclaimer {
    margin-top: 8px;
    font-size: 10px;
  }

  .home-ask-overlay-card {
    padding: 18px;
    border-radius: 12px;
  }

  .home-ask-overlay-message {
    font-size: 17px;
  }

  .home-ask-overlay-followup {
    margin-top: 12px;
  }

  .home-ask-input-wrap-overlay {
    min-width: 0;
    flex-basis: 100%;
    height: 40px;
  }

  .home-ask-input-wrap-overlay input {
    height: 40px;
    font-size: 14px;
  }

  .home-ask-submit-overlay {
    width: 100%;
    min-width: 0;
    height: 40px;
    font-size: 12px;
  }

  .home-ask-overlay-close {
    margin-top: 14px;
    min-width: 96px;
    height: 38px;
    border-radius: 8px;
    font-size: 12px;
  }

  .contact-form-title {
    font-size: 32px;
  }

  .contact-form-intro {
    margin-top: 18px;
    font-size: 16px;
  }

  .contact-form {
    margin-top: 22px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 18px;
    padding: 16px 18px;
  }

  .contact-input {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .contact-textarea {
    min-height: 170px;
  }

  .home-hero-content {
    padding: 30px;
  }

  .about-container {
    padding: 30px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .about-experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-hero-title {
    font-size: 26px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .project-media-band-title-wrap {
    padding: 30px 30px 40px;
  }

  .home-hero-grid-overlay {
    font-size: 18px;
    padding: 20px;
  }

  .home-hero-grid-top-text {
    font-size: 26px;
  }

  .home-hero-grid-subtext {
    font-size: 15px;
  }

  .home-hero-cta-link {
    font-size: 14px;
  }

  .menu-nav {
    width: 100vw;
    padding: 100px 30px 30px;
  }

  .menu-nav a {
    font-size: 2rem;
  }

  .section-shadow-band {
    height: 120px;
    box-shadow: inset 0 8px 14px -10px rgba(0, 0, 0, 0.2), inset 0 -8px 14px -10px rgba(0, 0, 0, 0.2);
  }

  .project-text-container {
    padding: 80px 30px;
  }

  .project-detail-heading {
    font-size: 18px;
  }

  .project-detail-copy {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .project-detail-tag {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .project-bottom-grid-container {
    padding: 30px;
  }

  .project-bottom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .home-hero-content,
  .about-container,
  .footer-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .home-hero-grid-overlay {
    font-size: 18px;
    line-height: 1.2;
    padding: 20px;
  }

  .project-text-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-bottom-grid-container {
    padding-left: 30px;
    padding-right: 30px;
  }

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

@media (min-width: 1200px) and (max-width: 1279.98px) {
  .home-hero-content,
  .about-container,
  .footer-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-text-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .project-bottom-grid-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
