@font-face {
  font-family: "Departure Mono";
  src: url("../../public/fonts/DepartureMono-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-feature-settings: "ss02" 1;
}
@font-face {
  font-family: "Funnel Sans";
  src: url("../../public/fonts/FunnelSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Funnel Sans";
  src: url("../../public/fonts/FunnelSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
/* Enables centered asterisk, classic ampersand, and oldstyle figures */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
}

body {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a,
[role=button] {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid #ff1f5f;
  outline-offset: 3px;
}

::-moz-selection {
  background: #ff1f5f;
  color: #ffffff;
}

::selection {
  background: #ff1f5f;
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 0.9 !important;
  margin: 0;
}

.t-pixel {
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000000;
}

span[aria-hidden=true] {
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

p {
  margin: 0;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-decoration: none;
  transition: transform 120ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 120ms cubic-bezier(0.2, 0.9, 0.2, 1), background 120ms, color 120ms;
}
.c-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 0 #000000;
  cursor: pointer !important;
}
.c-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 #000000;
}
.c-btn--primary {
  background: #ff1f5f;
  color: #ffffff;
}
.c-btn--primary:hover {
  background: #e0124e;
}
.c-btn--ghost {
  background: transparent;
}
.c-btn--ghost:hover {
  background: #000000;
  color: #ffffff;
}
.c-btn--ghost-onpink {
  background: #ffffff;
  color: #000000;
}
.c-btn--ghost-onpink:hover {
  background: #000000;
  color: #ffffff;
}
.c-btn--ink-block {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: none;
  width: 100%;
  justify-content: flex-start;
  padding: 14px 18px;
}
.c-btn--ink-block:hover {
  background: #ff1f5f;
  box-shadow: none;
  transform: none;
}
.c-btn--ink-block:active {
  transform: none;
  box-shadow: none;
}

.c-card {
  background: #ffffff;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 0 #000000;
  padding: 32px;
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.c-card--service:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 0 #000000;
}
.c-card--service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
}
@media (max-width: 600px) {
  .c-card--service {
    padding: 24px;
  }
}
.c-card--service__meta {
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-size: 24px;
  line-height: 1;
  color: #000000;
}
.c-card--service__meta span {
  color: #ff1f5f;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .c-card--service__sep {
    display: none;
  }
}
@media (max-width: 600px) {
  .c-card--service__meta span:last-child {
    display: block;
  }
}
.c-card--service__title {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 35px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: #000000;
}
.c-card--service__body {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.3;
  margin: 12px 0 0;
  color: #000000;
}

.c-tile {
  position: relative;
  aspect-ratio: 4/3;
  border: 3px solid #000000;
  background: #ffffff;
  overflow: hidden;
  text-align: left;
  display: block;
  box-shadow: 6px 6px 0 0 #000000;
  text-decoration: none;
  color: #000000;
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.c-tile:is(a):hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 0 #000000;
}
.c-tile__cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.c-tile__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32%;
  max-width: 140px;
  opacity: 0.92;
}
.c-tile__screenshot {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 400ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.c-tile__screenshot.align-top {
  -o-object-position: top center;
     object-position: top center;
}
.c-tile__screenshot.align-center {
  -o-object-position: center center;
     object-position: center center;
}
.c-tile__screenshot.align-bottom {
  -o-object-position: bottom center;
     object-position: bottom center;
}
.c-tile:is(a):hover .c-tile__screenshot {
  transform: scale(1.04);
}
.c-tile__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 24px;
  background: #ffffff;
  border-top: 3px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-tile__client {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.c-tile__row {
  display: flex;
  flex-wrap: wrap;
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-size: 19px;
  color: #4d4d4d;
  text-transform: uppercase;
}
.c-tile__row span + span::before {
  margin-left: 8px;
  margin-right: 8px;
  content: "*";
}
@media (max-width: 600px) {
  .c-tile__row {
    flex-direction: column;
  }
  .c-tile__row span + span::before {
    display: none;
  }
}
.c-tile__desc {
  margin-top: 8px;
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  line-height: 1.4;
  color: #4d4d4d;
}
.c-tile__desc p + p {
  margin-top: 4px;
}
.c-tile__desc ul,
.c-tile__desc ol {
  padding-left: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-tile__desc ul {
  list-style: disc;
}
.c-tile__desc ol {
  list-style: decimal;
}
.c-tile:has(.c-tile__screenshot) {
  aspect-ratio: unset;
  display: flex;
  flex-direction: column;
}
.c-tile:has(.c-tile__screenshot) .c-tile__cover {
  position: relative;
  inset: unset;
  flex-shrink: 0;
  aspect-ratio: 2/1;
}
.c-tile:has(.c-tile__screenshot) .c-tile__meta {
  position: relative;
  inset: unset;
}
.c-tile--pink .c-tile__cover {
  background: #ff1f5f;
}
.c-tile--ink .c-tile__cover {
  background: #000000;
}
.c-tile--cream .c-tile__cover {
  background: #fff8f2;
}
.c-tile--pink .c-tile__mark, .c-tile--ink .c-tile__mark {
  filter: brightness(0) invert(1);
}

.c-form {
  background: #ffffff;
  color: #000000;
  border: 3px solid #000000;
  box-shadow: 10px 10px 0 0 #000000;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-form__field label {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #000000;
}
.c-form__field input,
.c-form__field textarea {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 12px 12px;
  background: transparent;
  color: #000000;
  border: 2px solid #000000;
  outline: none;
  resize: vertical;
  transition: border-color 120ms;
}
.c-form__field input:focus,
.c-form__field textarea:focus {
  border-color: #ff1f5f;
}
.c-form__status {
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-size: clamp(14px, 1.3vw, 20px);
  color: #000000;
  margin: 0;
}
.c-form__status.is-success {
  color: #00a86b;
}
.c-form__status.is-error {
  color: #e0124e;
}

.c-ticker {
  overflow: hidden;
  width: 100vw;
}
.c-ticker__track {
  display: inline-flex;
  white-space: nowrap;
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.4;
  color: #000000;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
  text-transform: uppercase;
}
.c-ticker__track > span {
  flex-shrink: 0;
  padding-right: 4px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.l-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 84px);
  background: #ffffff;
}
.l-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff1f5f;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}
.l-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.l-nav__logo {
  height: 48px;
  width: auto;
  display: block;
}
.l-nav__word {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #000000;
}
.l-nav__cta {
  display: inline-block;
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 22px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  white-space: nowrap;
  transition: transform 120ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 120ms cubic-bezier(0.2, 0.9, 0.2, 1), background 120ms, color 120ms;
}
.l-nav__cta:hover {
  background: #ff1f5f;
  color: #ffffff;
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 0 #000000;
}
@media (max-width: 600px) {
  .l-nav {
    padding: 16px clamp(20px, 4vw, 66px);
  }
  .l-nav__word {
    font-size: 28px;
  }
  .l-nav__cta {
    display: none;
  }
}

.l-footer {
  background: #000000;
  color: #ffffff;
  width: 100%;
  overflow: hidden;
}
.l-footer__checker {
  display: block;
  width: 100vw;
  height: clamp(80px, 8vw, 124px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.l-footer__inner {
  padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 84px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
}
@media (max-width: 1000px) {
  .l-footer__inner {
    grid-template-columns: 1fr;
  }
}
.l-footer__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.l-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.l-footer__brand img {
  height: 56px;
  width: auto;
}
.l-footer__word {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
}
.l-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-footer__legal p {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
}
.l-footer__legal a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.l-footer__legal a:hover {
  color: #ff1f5f;
}
.l-footer__italic {
  font-style: italic;
}
.l-footer__pattern {
  display: block;
  height: 10rem;
  -o-object-position: center;
     object-position: center;
  margin-left: auto;
}
@media (max-width: 600px) {
  .l-footer__pattern {
    display: none;
  }
}

.s-hero {
  position: relative;
  padding: 0 clamp(20px, 4vw, 66px);
  padding-top: 3rem;
}
.s-hero .c-ticker {
  margin: 0 calc(clamp(20px, 4vw, 66px) * -1) 12px;
}
.s-hero__headline {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ff1f5f;
  margin: 0;
  margin-bottom: 5rem;
}
@media (max-width: 1100px) {
  .s-hero__headline {
    margin-bottom: 3rem;
  }
}
.s-hero__grid {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1100px) {
  .s-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.s-hero__services {
  padding: 24px 32px;
}
@media (max-width: 600px) {
  .s-hero__services {
    padding: 12px;
  }
}
.s-hero__services ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  color: #000000;
  text-transform: uppercase;
}
.s-hero__services ul li {
  color: black;
}
.s-hero__services ul li:hover {
  color: #ff1f5f;
}
@media (max-width: 1000px) {
  .s-hero__intro {
    font-size: 24px;
  }
}
.s-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 24px;
}
.s-hero__intro .c-btn {
  align-self: flex-start;
}
.s-hero__lead {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  max-width: 560px;
}
.s-hero__body {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.35;
  max-width: 560px;
}

.s-manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  padding: 0 clamp(20px, 4vw, 66px);
  margin-top: -5rem;
  padding-bottom: 3rem;
  align-items: end;
  background: #ffffff;
}
@media (max-width: 1000px) {
  .s-manifesto {
    margin-top: -2rem;
  }
}
@media (max-width: 600px) {
  .s-manifesto {
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 4rem;
    padding-bottom: 1rem;
  }
}
.s-manifesto__left, .s-manifesto__pink {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.s-manifesto__left {
  color: #000000;
}
.s-manifesto__pink {
  color: #ff1f5f;
  text-align: right;
}
.s-manifesto__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
@media (max-width: 600px) {
  .s-manifesto__right {
    align-items: flex-end;
  }
}
.s-manifesto__rocket {
  width: clamp(180px, 22vw, 320px);
  transform-origin: center;
  animation: rocket-bob 2.4s ease-in-out infinite;
}

@keyframes rocket-bob {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(-20px);
  }
}
.s-about {
  background: #ff1f5f;
  color: #ffffff;
  padding: clamp(3rem, 5vw, 130px) clamp(20px, 4vw, 66px);
  display: grid;
  grid-template-columns: minmax(280px, 530px) 1fr;
  gap: 8rem;
  align-items: center;
  padding-left: clamp(20px, 4vw, 84px);
  padding-right: clamp(20px, 4vw, 84px);
}
@media (max-width: 1000px) {
  .s-about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .s-about {
    gap: 3rem;
  }
}
.s-about__left {
  position: relative;
}
.s-about__headshot {
  width: calc(100% - 5rem);
  max-width: 530px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #000000;
  box-shadow: 6px 6px 0 0 #000000;
  background: #fff8f2;
  margin-left: 3rem;
}
.s-about__tag {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 8px 12px;
  position: absolute;
  bottom: 24px;
  left: 0rem;
}
@media (max-width: 1000px) {
  .s-about__tag {
    left: 16px;
  }
}
.s-about__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s-about__right .c-btn {
  align-self: flex-start;
  margin-top: 12px;
}
.s-about__headline {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .s-about__headline {
    margin-bottom: 1rem;
  }
}
.s-about__lead {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.3;
  color: #ffffff;
}
.s-about__body {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.4;
  color: #ffffff;
  max-width: 640px;
}

.s-services {
  background: #ffffff;
  color: #000000;
  padding: clamp(3rem, 5vw, 130px) clamp(20px, 4vw, 66px);
}
.s-services__eyebrow {
  margin-bottom: 16px;
}
.s-services__title {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(40px, 5vw, 80px);
  max-width: 1000px;
}
.s-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 40px);
  padding-right: 12px;
  padding-bottom: 12px;
}
@media (max-width: 1000px) {
  .s-services__grid {
    grid-template-columns: 1fr;
  }
}

.s-work {
  background: #f1f1f1;
  color: #000000;
  padding: clamp(3rem, 5vw, 130px) clamp(20px, 4vw, 66px);
}
.s-work__eyebrow {
  margin-bottom: 16px;
}
.s-work__title {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  margin: 0 0 clamp(40px, 5vw, 80px);
}
.s-work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  padding-right: 12px;
  padding-bottom: 12px;
}
@media (max-width: 600px) {
  .s-work__grid {
    grid-template-columns: 1fr;
  }
}
.s-work__grid:not(:has(*)) {
  display: none;
}
.s-work__catalog {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: clamp(40px, 5vw, 80px);
}
.s-work__catalog__grid:not(:has(*)) + .s-work__catalog {
  margin-top: 0;
}

.c-work-entry {
  border-top: 2px solid #000000;
}
.c-work-entry:last-child {
  border-bottom: 2px solid #000000;
}
.c-work-entry__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  text-decoration: none;
  color: #000000;
  width: 100%;
}
.c-work-entry__header:is(a) {
  transition: color 120ms;
}
.c-work-entry__header:is(a):hover .c-work-entry__client {
  color: #ff1f5f;
}
.c-work-entry__header:is(a):hover .c-work-entry__arrow {
  transform: translateX(4px);
}
.c-work-entry__client {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.01em;
  transition: color 120ms;
}
.c-work-entry__tags {
  display: flex;
  flex-wrap: wrap;
  font-family: "Departure Mono", "VT323", "Courier New", monospace;
  font-size: clamp(14px, 1.3vw, 20px);
  color: #4d4d4d;
  text-transform: uppercase;
}
.c-work-entry__tags span + span::before {
  margin-left: 8px;
  margin-right: 8px;
  content: "*";
}
.c-work-entry__arrow {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  transition: transform 120ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.c-work-entry__desc {
  padding-bottom: 16px;
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: #4d4d4d;
  max-width: 720px;
}
.c-work-entry__desc p + p {
  margin-top: 8px;
}
.c-work-entry__desc ul,
.c-work-entry__desc ol {
  padding-left: 24px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-work-entry__desc ul {
  list-style: disc;
}
.c-work-entry__desc ol {
  list-style: decimal;
}

.s-contact {
  background: #ff1f5f;
  color: #ffffff;
  padding: clamp(3rem, 5vw, 130px) clamp(20px, 4vw, 66px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: stretch;
  padding-left: clamp(20px, 4vw, 84px);
  padding-right: clamp(20px, 4vw, 84px);
}
@media (max-width: 1000px) {
  .s-contact {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.s-contact__left {
  display: flex;
  flex-direction: column;
}
.s-contact__eyebrow {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: clamp(20px, 2vw, 28px);
}
.s-contact__headline {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
.s-contact__company {
  margin-top: 1rem;
  padding-top: 1rem;
}
@media (max-width: 600px) {
  .s-contact__company {
    margin-bottom: 1rem;
  }
}
.s-contact__company {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s-contact__company p,
.s-contact__company a {
  font-family: "Funnel Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.s-contact__company a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #000000;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
  display: inline-block;
}
.s-contact__company a:hover {
  color: #000000;
}/*# sourceMappingURL=main.css.map */