:root {
  --color-ink: #000000;
  --color-heading: #222222;
  --color-paper: rgba(247, 247, 251, 0.90);
  --color-muted: rgba(247, 247, 251, 0.68);
  --font-serif: "adobe-garamond-pro", "Adobe Garamond Pro", Garamond, Georgia, serif;
  --page-gutter: clamp(1rem, 1.67vw, 1.5rem);
  --panel-radius: 2.5rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--color-ink);
  overflow-x: hidden;
}

body.is-project-open {
  overflow: hidden;
}

main {
  min-height: 100vh;
  opacity: 1;
}

.site-menu {
  --nav-link-color: rgba(255, 255, 255, 0.72);
  --nav-link-hover-color: #ffffff;
  width: 100%;
  padding: var(--page-gutter);
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

[data-theme-nav="light"] .site-menu {
  --nav-link-color: rgba(7, 7, 7, 0.68);
  --nav-link-hover-color: #070707;
}

[data-theme-nav="dark"] .site-menu {
  --nav-link-color: rgba(255, 255, 255, 0.72);
  --nav-link-hover-color: #ffffff;
}

.glass-menu {
  -webkit-backdrop-filter: saturate(120%) blur(.75em);
  backdrop-filter: saturate(120%) blur(.75em);
  min-height: 3.5em;
  border-radius: 50em;
  padding: 0.35em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75em, 4vw, 4.5em);
  position: relative;
  color: #070707;
  pointer-events: auto;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.glass-effect {
  -webkit-backdrop-filter: saturate(120%) blur(.75em);
  backdrop-filter: saturate(120%) blur(.75em);
  pointer-events: none;
  isolation: isolate;
  color: #201d1d;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.glass-effect__fill {
  opacity: 1;
  border-radius: inherit;
  background-color: #d4d4d426;
  position: absolute;
  inset: 0;
}

.glass-effect__fill-burn {
  opacity: .05;
  mix-blend-mode: color-burn;
  border-radius: inherit;
  background-color: currentColor;
  position: absolute;
  inset: 0;
}

.glass-effect__highlight-soft {
  mix-blend-mode: overlay;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  box-shadow: inset -.28125em -.28125em .09375em -.328125em #ffffff80;
}

.glass-effect__highlight-strong {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  box-shadow: inset .28125em .28125em .09375em -.328125em #fffc;
}

.glass-effect__edge-light {
  border-radius: inherit;
  mix-blend-mode: plus-lighter;
  position: absolute;
  inset: 0;
  box-shadow: inset .1875em .28125em .09375em -.1875em #b3b3b380;
}

.glass-effect__edge-dark {
  mix-blend-mode: overlay;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  box-shadow: inset -.1875em -.28125em .09375em -.1875em #b3b3b34d;
}

.glass-effect__inner-glow {
  mix-blend-mode: darken;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 1.75em #f2f2f24d;
}

.glass-menu a {
  min-height: 2.8em;
  padding: 0 1.1em;
  border-radius: 50em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--nav-link-color);
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: color 220ms ease;
}

.glass-menu a:hover,
.glass-menu a:focus-visible {
  color: var(--nav-link-hover-color);
}

.glass-menu__brand {
  white-space: nowrap;
}

.glass-menu__links {
  --active-x: 0px;
  --active-width: 0px;
  display: flex;
  align-items: center;
  gap: 0.25em;
  position: relative;
  z-index: 1;
}

.glass-menu__pill {
  width: var(--active-width);
  height: 2.8em;
  border-radius: 50em;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
  opacity: var(--active-opacity, 0);
  transform: translate3d(var(--active-x), -50%, 0);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    width 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  will-change: transform, width;
}

.glass-menu a.is-active {
  color: #070707 !important;
}

@media (min-width: 768px) {
  .site-menu {
    top: -0.35rem;
  }
}

.sticky-title-wrapper {
  width: 100%;
  height: 700vh;
  position: relative;
  background: var(--color-ink);
}

.sticky-title-container {
  width: 100%;
  height: 100vh;
  min-height: 35rem;
  padding: var(--page-gutter);
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: sticky;
  top: 0;
}

.sticky-title-panel {
  -webkit-backdrop-filter: saturate(110%) blur(.35em);
  backdrop-filter: saturate(110%) blur(.35em);
  width: 100%;
  min-height: 100%;
  border-radius: var(--panel-radius);
  background: #000;
  color: var(--color-heading);
  box-shadow:
    inset .125rem .125rem .0625rem rgba(255, 255, 255, 0.72),
    inset -.25rem -.25rem .125rem rgba(0, 0, 0, 0.045),
    inset 0 0 2.25rem rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 7vw, 6.75rem);
}

.is-static .sticky-title-panel {
  background: var(--color-paper);
}

.sticky-title-inner {
  width: 100%;
  max-width: 74rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sticky-title-el {
  margin: 0;
  color: currentColor;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.15vw, 4.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.sticky-title-el.is--stacked {
  visibility: hidden;
  position: absolute;
  inset: auto;
}

.sticky-title-wrapper:not(.is-animated) .sticky-title-el.is--stacked {
  visibility: hidden !important;
}

.sticky-title-word {
  display: inline-block;
  white-space: nowrap;
}

.sticky-title-char {
  display: inline-block;
}

.work-section,
.content-section {
  background: var(--color-ink);
  color: var(--color-paper);
  position: relative;
}

.content-section {
  min-height: 100dvh;
  padding: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content-panel {
  -webkit-backdrop-filter: saturate(110%) blur(.35em);
  backdrop-filter: saturate(110%) blur(.35em);
  width: 100%;
  min-height: calc(100dvh - (var(--page-gutter) * 2));
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--panel-radius);
  background: var(--color-paper);
  color: var(--color-heading);
  box-shadow:
    inset .125rem .125rem .0625rem rgba(255, 255, 255, 0.72),
    inset -.25rem -.25rem .125rem rgba(0, 0, 0, 0.045),
    inset 0 0 2.25rem rgba(255, 255, 255, 0.28);
  padding: clamp(2rem, 7vw, 6.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-kicker {
  margin: 0 0 0.9rem;
  color: rgba(34, 34, 34, 0.52);
  font-size: 0.85rem;
  letter-spacing: 0;
  line-height: 1;
}

.section-title {
  margin: 0;
  color: currentColor;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.section-title--story {
  max-width: 74rem;
  font-size: clamp(3rem, 5.15vw, 4.6rem);
  line-height: 1.2;
}

.work-section {
  min-height: 100dvh;
  padding: var(--page-gutter);
}

.work-panel {
  width: 100%;
  min-height: calc(100dvh - (var(--page-gutter) * 2));
  border-radius: var(--panel-radius);
  background: rgba(225, 225, 228, 0.95);
  padding: clamp(1.25rem, 2.78vw, 2.5rem);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.work-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: none;
  gap: 1.5rem;
  align-content: start;
}

.blog-panel {
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  align-items: stretch;
  justify-content: stretch;
}

.blog-list {
  width: 100%;
  max-height: calc(100dvh - (var(--page-gutter) * 2) - clamp(3rem, 5.6vw, 5rem));
  border-radius: clamp(1.6rem, 3.1vw, 2.8rem);
  background: rgba(248, 248, 252, 0.72);
  overflow-y: auto;
  padding: 0 clamp(1rem, 1.65vw, 1.5rem);
  text-align: left;
  box-shadow:
    inset .1rem .1rem .06rem rgba(255, 255, 255, 0.72),
    inset -.2rem -.2rem .12rem rgba(0, 0, 0, 0.035);
}

.blog-list::-webkit-scrollbar {
  width: 0;
}

.blog-post {
  width: 100%;
  min-height: auto;
  border: 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.12);
  background: transparent;
  color: rgba(20, 20, 20, 0.23);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.9rem 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-post:last-child {
  border-bottom: 0;
}

.blog-post__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.blog-post__title span {
  color: rgba(20, 20, 20, 0.96);
  transition: color 0.2s ease;
}

.blog-post__date {
  color: rgba(20, 20, 20, 0.72);
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.blog-post:hover .blog-post__title,
.blog-post:focus-visible .blog-post__title,
.blog-post:hover .blog-post__title span,
.blog-post:focus-visible .blog-post__title span {
  color: rgba(20, 20, 20, 0.96);
}

.project-card {
  min-width: 0;
  min-height: 0;
  border-radius: clamp(1.45rem, 2.78vw, 2.5rem);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 11.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  align-self: start;
  position: relative;
  overflow: hidden;
  color: #161616;
  text-decoration: none;
  background: rgba(247, 247, 251, 0.84);
  box-shadow:
    inset .08rem .08rem .05rem rgba(255, 255, 255, 0.72),
    inset -.18rem -.18rem .1rem rgba(0, 0, 0, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-1px);
  background: rgba(250, 250, 253, 0.92);
  box-shadow:
    inset .08rem .08rem .05rem rgba(255, 255, 255, 0.82),
    inset -.18rem -.18rem .1rem rgba(0, 0, 0, 0.03),
    0 1rem 2.4rem rgba(0, 0, 0, 0.08);
}

.project-card__media {
  width: 11.25rem;
  height: 12.5rem;
  border-radius: clamp(1.1rem, 2vw, 2rem);
  display: block;
  position: relative;
  overflow: hidden;
  background: #050505;
}

.project-card__media img,
.project-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.project-card:hover .project-card__media img,
.project-card:focus-visible .project-card__media img,
.project-card:hover .project-card__media video,
.project-card:focus-visible .project-card__media video {
  transform: scale(1.2);
}

.project-card[data-project="sales-champ"] .project-card__media video {
  transform: scaleX(-1);
}

.project-card[data-project="sales-champ"]:hover .project-card__media video,
.project-card[data-project="sales-champ"]:focus-visible .project-card__media video {
  transform: scaleX(-1) scale(1.2);
}

.project-card__inner {
  min-width: 0;
  padding-top: 0.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.project-card__title {
  color: currentColor;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.project-card[data-project="hack-the-box"] .project-card__title {
  white-space: nowrap;
}

.project-card__description {
  color: rgba(22, 22, 22, 0.66);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.25;
}

@media (min-width: 1280px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, max-content);
    align-content: end;
  }
}

.project-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(0.75rem, 1.65vw, 1.5rem) var(--page-gutter) 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.project-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

.project-overlay__backdrop {
  -webkit-backdrop-filter: blur(0) saturate(100%);
  backdrop-filter: blur(0) saturate(100%);
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  opacity: 0;
  will-change: opacity, backdrop-filter;
}

.project-overlay__panel {
  -webkit-backdrop-filter: saturate(118%) blur(0.8em);
  backdrop-filter: saturate(118%) blur(0.8em);
  width: min(68rem, calc(100vw - (var(--page-gutter) * 2)));
  max-height: calc(100dvh - clamp(0.75rem, 1.65vw, 1.5rem));
  border: 0;
  border-radius: 1.7rem 1.7rem 0 0;
  background: rgba(247, 247, 251, 0.92);
  color: #141414;
  position: relative;
  z-index: 1;
  overflow: hidden;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1.8rem 6rem rgba(0, 0, 0, 0.26);
  outline: 0;
  will-change: transform, opacity;
}

.project-overlay__body::-webkit-scrollbar {
  width: 0;
}

.project-overlay__handle {
  display: none;
}

.project-overlay__topbar {
  -webkit-backdrop-filter: saturate(118%) blur(0.8em);
  backdrop-filter: saturate(118%) blur(0.8em);
  min-height: 6.3rem;
  padding: 1.85rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  background: rgba(247, 247, 251, 0.82);
}

.project-overlay__progress {
  height: 2px;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.project-overlay__progress span {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.32);
  display: block;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.project-overlay__body {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.project-overlay__name {
  margin: 0;
  color: rgba(20, 20, 20, 0.86);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1;
}

.project-overlay__close {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #141414;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset .08rem .08rem .05rem rgba(255, 255, 255, 0.82),
    0 .75rem 1.8rem rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.project-overlay__close span {
  width: 1.2rem;
  height: 0.13rem;
  border-radius: 50em;
  background: currentColor;
  position: absolute;
}

.project-overlay__close span:first-child {
  transform: rotate(45deg);
}

.project-overlay__close span:last-child {
  transform: rotate(-45deg);
}

.project-overlay__media {
  aspect-ratio: 16 / 9;
  background: #dedede;
  overflow: hidden;
  display: block;
}

.project-overlay__media img,
.project-overlay__media video,
.project-overlay__gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-overlay__content {
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2rem, 4.2vw, 5rem);
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.project-overlay__meta {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 7rem);
}

.project-overlay__meta > span {
  width: fit-content;
  min-height: 1.55rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 50em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(20, 20, 20, 0.56);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.project-overlay__meta dl,
.project-overlay__meta div {
  margin: 0;
}

.project-overlay__meta dl {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
}

.project-overlay__meta dt,
.project-overlay__meta dd,
.project-overlay__story p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.28;
}

.project-overlay__meta dt {
  color: rgba(20, 20, 20, 0.9);
}

.project-overlay__meta dd,
.project-overlay__story p {
  color: rgba(20, 20, 20, 0.58);
}

.project-overlay__story h2 {
  margin: 0 0 0.15em;
  color: rgba(20, 20, 20, 0.96);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.project-overlay__lead {
  max-width: 12ch;
  margin-bottom: clamp(2rem, 3vw, 3.25rem) !important;
  font-size: clamp(2.7rem, 4.2vw, 4.5rem) !important;
  line-height: 1.02 !important;
}

.project-overlay__story p:not(.project-overlay__lead) {
  max-width: 38rem;
  margin-top: 1.4rem;
}

.project-overlay__gallery {
  padding: 0 clamp(2rem, 4.2vw, 5rem) clamp(3rem, 5vw, 5rem);
  display: grid;
  gap: 60px;
}

.project-overlay__gallery img {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}

.project-overlay__case-study {
  display: none;
}

.project-overlay.is-case-study .project-overlay__content,
.project-overlay.is-case-study .project-overlay__gallery {
  display: none;
}

.project-overlay.is-case-study .project-overlay__media {
  aspect-ratio: var(--project-hero-aspect, 16 / 9);
}

.project-overlay.is-case-study .project-overlay__case-study {
  display: block;
}

.project-case-study__section {
  width: min(100%, 64rem);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
}

.project-case-study__section--intro {
  width: min(100%, 64rem);
}

.project-overlay[data-project="hack-the-box"] .project-case-study__section:not(.project-case-study__section--intro) {
  border-top: 1px solid rgba(20, 20, 20, 0.13);
}

.project-case-study__section--intro h2 {
  display: none;
}

.project-case-study__section h2,
.project-case-study__section h3 {
  margin: 0;
  color: rgba(20, 20, 20, 0.96);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.project-case-study__section h2 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.92;
}

.project-case-study__section h3 {
  width: 100%;
  max-width: none;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  font-size: clamp(2rem, 5.5vw, 2.625rem);
  line-height: 1.3;
}

.project-case-study__lead {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(3rem, 5vw, 4.5rem);
  padding: 0;
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 2.625rem);
  line-height: 1.3;
  white-space: pre-line;
}

@media (min-width: 721px) {
  .project-case-study__lead,
  .project-case-study__section h3 {
    font-size: 42px;
    line-height: 1.3;
  }

  .project-overlay[data-project="cyberlab"] .project-case-study__section p:not(.project-case-study__lead):not(.project-case-study__eyebrow) {
    font-size: 42px;
    line-height: 1.3;
  }
}

.project-case-study__details {
  width: 100%;
  margin: 0 0 clamp(3rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 2.5vw, 2rem) 0;
  border-top: 1px solid rgba(20, 20, 20, 0.22);
  border-bottom: 1px solid rgba(20, 20, 20, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.project-case-study__meta {
  width: 100%;
  min-width: 0;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.project-case-study__meta div {
  display: flex;
  gap: 0.35rem;
  white-space: nowrap;
}

.project-case-study__meta dt,
.project-case-study__meta dd,
.project-case-study__section p:not(.project-case-study__lead):not(.project-case-study__eyebrow),
.project-case-study__section li {
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.45;
}

.project-case-study__meta dt,
.project-case-study__meta dd {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.4;
}

.project-case-study__meta dt {
  color: rgba(20, 20, 20, 0.56);
}

.project-case-study__meta dd {
  margin: 0;
  color: rgba(20, 20, 20, 0.92);
}

.project-case-study__link,
.project-case-study__type {
  width: fit-content;
  margin: 0;
  display: block;
  flex: 0 0 auto;
  color: rgba(20, 20, 20, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.project-case-study__link {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
}

.project-case-study__section blockquote {
  margin: 0 0 2rem;
  color: rgba(20, 20, 20, 0.94);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 2.625rem);
  line-height: 1.3;
}

@media (min-width: 721px) {
  .project-case-study__section blockquote {
    font-size: 42px;
    line-height: 1.3;
  }
}

.project-case-study__section p + p {
  margin-top: 0;
}

.project-case-study__paragraph-break {
  width: 100%;
  height: 1lh;
}

.project-case-study__section--intro blockquote,
.project-case-study__section--intro > p:last-child {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.project-case-study__section p:not(.project-case-study__lead):not(.project-case-study__eyebrow),
.project-case-study__section li {
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.85vw, 1.375rem);
  line-height: 1.475;
}

.project-case-study__eyebrow {
  margin: 0 0 1.1rem !important;
  color: rgba(20, 20, 20, 0.42) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-case-study__section ol {
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: project-feature;
}

.project-case-study__section li {
  padding: 1.15rem 0 1.15rem 3.2rem;
  border-top: 1px solid rgba(20, 20, 20, 0.13);
  position: relative;
  counter-increment: project-feature;
}

.project-case-study__section li::before {
  content: counter(project-feature, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.3rem;
  color: rgba(20, 20, 20, 0.38);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.project-case-study__visual {
  margin: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.project-case-study__visual + .project-case-study__visual {
  margin-top: 60px;
}

.project-case-study__visual:last-child {
  margin-bottom: 60px;
}

.project-case-study__visual img,
.project-case-study__visual video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}

.project-case-study__visual > a {
  display: block;
}

@media (max-width: 720px) {
  .project-case-study__details,
  .project-case-study__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-case-study__meta div {
    display: grid;
    grid-template-columns: 4rem 1fr;
  }

  .project-case-study__section {
    padding: 3rem 1.5rem;
  }

  .project-case-study__visual {
    padding-inline: 0.75rem;
  }
}

.project-overlay.is-blog-post .project-overlay__media,
.project-overlay.is-blog-post .project-overlay__meta,
.project-overlay.is-blog-post .project-overlay__gallery {
  display: none;
}

.project-overlay.is-blog-post .project-overlay__panel {
  background: rgba(255, 255, 255, 0.92);
}

.project-overlay.is-blog-post .project-overlay__topbar {
  background: rgba(255, 255, 255, 0.9);
}

.project-overlay.is-blog-post .project-overlay__content {
  display: block;
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2rem, 5vw, 5.25rem) clamp(4rem, 6vw, 6rem);
  text-align: left;
}

.project-overlay.is-blog-post .project-overlay__story {
  max-width: min(100%, 59rem);
  margin: 0 auto;
}

.project-overlay.is-blog-post .project-overlay__story h2 {
  color: #000;
  max-width: 100%;
  margin-bottom: 2.5rem;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
}

.project-overlay.is-blog-post .project-overlay__lead {
  max-width: none;
  margin-bottom: 2.5rem !important;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.22);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.95vw, 1.75rem) !important;
  font-style: italic;
  line-height: 1.475 !important;
  color: #000;
}

.project-overlay.is-blog-post [data-project-copy-one],
.project-overlay.is-blog-post [data-project-copy-two] {
  display: none;
}

.project-overlay.is-blog-post .project-overlay__story p:not(.project-overlay__lead) {
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.85vw, 1.375rem);
  line-height: 1.475;
  color: #000;
}

.project-overlay__article {
  display: grid;
  gap: 2.5rem;
}

.project-overlay__article-section {
  display: grid;
  gap: 1.25rem;
}

.project-overlay__article-section h3 {
  margin: 0;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.22);
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.625rem);
  font-weight: 400;
  line-height: 1.25;
}

.project-overlay__article-section p {
  white-space: pre-line;
}

.project-overlay__article-footer {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.project-overlay__article-footer h3 {
  margin: 0;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.22);
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.625rem);
  font-weight: 400;
  line-height: 1.25;
}

.project-overlay__article-footer p {
  margin: 0;
  color: #000;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.85vw, 1.375rem);
  line-height: 1.475;
  white-space: pre-line;
}

@media (min-width: 721px) {
  .project-overlay:not(.is-blog-post) .project-case-study__lead,
  .project-overlay:not(.is-blog-post):not(.is-case-study) .project-overlay__lead {
    max-width: none;
    font-size: 42px !important;
    line-height: 1.3 !important;
  }
}

.project-overlay__scroll-indicator {
  display: none;
}

.project-overlay__scroll-indicator span {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid #141414;
  border-bottom: 2px solid #141414;
  transform: translateY(-0.1rem) rotate(45deg);
}

.contact-link {
  min-height: 3.5em;
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  padding: 0 1.65em;
  border: 0;
  border-radius: 50em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #070707;
  background: #fff;
  box-shadow:
    inset .08rem .08rem .05rem rgba(255, 255, 255, 0.86),
    0 .75rem 2rem rgba(0, 0, 0, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #000;
  transform: translateY(-1px);
  box-shadow:
    inset .08rem .08rem .05rem rgba(255, 255, 255, 0.86),
    0 1rem 2.4rem rgba(0, 0, 0, 0.11);
}

.contact-footer {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: clamp(2rem, 4.5vh, 3rem);
  padding: 0 clamp(2rem, 3vw, 3rem);
}

.contact-note {
  max-width: 26rem;
  margin: 0;
  color: #070707;
  font-size: 1rem;
  line-height: 1.38;
  text-align: left;
}

.contact-socials {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(2.6rem, 4vw, 4rem);
  position: static;
  left: auto;
  bottom: clamp(2.5rem, 5.5vh, 4rem);
  transform: none;
}

.contact-socials a {
  color: #070707;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  opacity: 0.58;
}

@media (max-width: 767px) {
  .sticky-title-wrapper {
    height: 680vh;
  }

  .sticky-title-container {
    height: 100vh;
    min-height: 31rem;
  }

  .sticky-title-panel {
    padding: 2rem 1.25rem;
  }

  .sticky-title-el {
    font-size: clamp(2.3rem, 11.4vw, 3.7rem);
    line-height: 1.08;
  }

  .glass-menu {
    width: 100%;
    gap: 0.4em;
    align-items: stretch;
    flex-direction: column;
    border-radius: var(--panel-radius) var(--panel-radius) 1.75em 1.75em;
  }

  .glass-menu__brand {
    width: 100%;
  }

  .glass-menu__links {
    width: 100%;
  }

  .glass-menu a {
    flex: 1;
    min-width: 0;
    padding: 0 0.6em;
    font-size: 0.88rem;
  }

  .content-section {
    min-height: 100dvh;
    padding: var(--page-gutter);
  }

  .content-panel {
    min-height: calc(100dvh - (var(--page-gutter) * 2));
    padding: 2rem 1.25rem;
  }

  .blog-panel {
    padding: 1.25rem;
  }

  .blog-list {
    max-height: calc(100dvh - (var(--page-gutter) * 2) - 2.5rem);
    border-radius: 1.5rem;
  }

  .blog-post {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    row-gap: 0.65rem;
    padding: 1.9rem 0;
  }

  .blog-post__title {
    font-size: 1.375rem;
    line-height: 1.38;
  }

  .blog-post__date {
    display: none;
  }

  .contact-socials {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  .contact-socials a {
    font-size: 1rem;
  }

  .contact-footer {
    bottom: 1.5rem;
    padding: 0 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .contact-note {
    font-size: 1rem;
  }

  .work-section {
    min-height: auto;
    padding: var(--page-gutter);
  }

  .work-panel {
    min-height: auto;
    padding: 1.25rem;
  }

  .project-card {
    min-height: 9.5rem;
    border-radius: 1.5rem;
    padding: 0.85rem;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    justify-items: stretch;
    order: 10;
  }

  .project-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 10;
  }

  .project-card__inner {
    width: 100%;
    gap: 0.55rem;
  }

  .project-card__title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .project-card__description {
    font-size: 1rem;
    line-height: 1.25;
  }

  .project-card[data-project="hack-the-box"] {
    order: 1;
  }

  .project-card[data-project="cyberlab"] {
    order: 2;
  }

  .project-card[data-project="sales-champ"] {
    order: 3;
  }

  .project-card[data-project="lightstudio"] {
    order: 4;
  }

  .project-overlay {
    padding: 0.75rem 0 0;
  }

  .project-overlay__panel {
    width: 100%;
    max-height: calc(100dvh - 0.75rem);
    border-radius: 1.4rem 1.4rem 0 0;
  }

  .project-overlay__name {
    line-height: 1.18;
  }

  .project-overlay__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem 1.25rem;
  }

  .project-overlay.is-blog-post .project-overlay__content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .project-overlay__meta {
    gap: 2rem;
  }

  .project-overlay__media {
    aspect-ratio: 4 / 3;
  }

  .project-overlay__lead {
    max-width: 10ch;
  }

  .project-overlay__gallery {
    padding: 0 1.25rem 2.5rem;
  }

  .section-title--story {
    font-size: clamp(2.3rem, 11.4vw, 3.7rem);
    line-height: 1.08;
  }
}

@media (max-width: 520px) {
  .project-card {
    justify-items: start;
  }

  .project-card__media {
    width: 100%;
  }
}
