@font-face {
  font-family: "Inter";
  src: url("../assets/font/static/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/font/static/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/font/static/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #141414;
  --white: #ffffff;
  --white-hover: #f1f1f1;
  --muted-80: rgba(255, 255, 255, 0.8);
  --muted-70: rgba(255, 255, 255, 0.7);
  --muted-60: rgba(255, 255, 255, 0.6);
  --muted-50: rgba(255, 255, 255, 0.5);
  --line-40: rgba(255, 255, 255, 0.4);
  --line-20: rgba(255, 255, 255, 0.2);
  --line-10: rgba(255, 255, 255, 0.1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  overflow-x: clip;
}

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

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

main {
  width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  height: 40vh;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0) 0%,
    rgba(20, 20, 20, 0.72) 64%,
    #141414 100%
  );
  opacity: 1;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.page.is-past-top::after {
  opacity: 0;
}

.figma-container {
  width: min(1400px, calc(100vw - 136px));
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  width: 100%;
  height: 54px;
  border-bottom: 1px solid var(--line-20);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.cta-mobile-break
{
  display: none;
}

.topbar-inner {
  width: min(1400px, calc(100vw - 136px));
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.nav-contact {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-mobile-contact {
  display: none;
}

.nav-contact {
  height: 34px;
  border: 1px solid var(--line-40);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-resume {
  min-height: 34px;
  padding-right: 0px;
}

.hero {
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-title-group {
  display: flex;
  align-items: center;
  gap: 36px;
}

.portrait {
  width: 174px;
  height: 174px;
  border-radius: 24px;
  object-fit: cover;
  object-position: bottom;
  flex: 0 0 auto;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1 {
  width: 623px;
  font-size: 32px;
  line-height: normal;
  font-weight: 600;
}

.hero-copy {
  width: 433px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted-80);
  font-size: 16px;
  line-height: 1;
  margin-top: 8px;
  margin-bottom: -8px;
}

.hero-location-pin {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.92;
}

.hero-copy p {
  color: var(--muted-60);
  font-size: 16px;
  font-weight: 400;
}

.button-pair {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.figma-button,
.figma-link-button,
.resume-link {
  min-height: 34px;
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
  white-space: nowrap;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.figma-button {
  cursor: pointer;
}

.figma-button img,
.resume-link img {
  width: 16px;
  height: 16px;
}

.figma-button-fill {
  background: var(--white);
  color: #141414;
}

.case-study:first-child .figma-button {
  border: 1px solid var(--line-40);
  color: var(--white);
}

.case-study:not(:first-child) .figma-button,
.case-study.is-active .figma-button {
  background: var(--white);
  border-color: var(--white);
  color: #141414;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.figma-link-button {
  text-decoration: underline;
  text-underline-position: from-font;
}

.figma-button:hover,
.nav-contact:hover,
.case-modal-next:hover,
.contact-form button:hover {
  background: var(--white-hover);
  border-color: var(--white-hover);
  color: #141414;
}

.body-shell {
  margin-top: 112px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.side-column {
  width: 348px;
  align-self: stretch;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 104px;
}

.side-card {
  width: 300.09px;
  min-height: 100vh;
  padding: 32px;
  padding-left: 16px !important;
  padding-bottom: 32px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
}

.side-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.06) 8%,
    rgba(255, 255, 255, 0.16) 24%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.16) 76%,
    rgba(255, 255, 255, 0.06) 92%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.side-nav-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.side-nav {
  width: 204px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
}

.side-nav a {
  color: var(--muted-50);
}

.side-nav a.active {
  color: var(--white);
}

.side-progress {
  width: 28px;
  height: 269px;
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.notch {
  display: block;
  width: var(--notch-width, 8px);
  height: 2px;
  min-height: 2px;
  max-height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, var(--notch-opacity, 0.42));
  transform-origin: right center;
  transition:
    width 140ms linear,
    background-color 140ms linear;
}

.side-actions {
  width: 236.09px;
  display: flex;
  gap: 10px;
  opacity: 1;
  transition: opacity 220ms ease;
}

.side-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.mobile-bottom-bar {
  display: none;
}

.side-contact {
  flex: 1;
  min-width: 0;
  background: var(--line-20);
  color: var(--white);
}

.resume-link {
  gap: 2px;
}

.resume-link img {
  transform: translateY(1px);
}

.main-column {
  width: 1052px;
  display: flex;
  flex-direction: column;
  gap: 160px;
  padding-top: 64px;
}

.work-stack {
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.case-study {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.case-copy {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-copy.tall {
  height: auto;
}

.case-copy h2 {
  color: var(--white);
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
  transition: color 180ms ease;
}

.case-study:first-child:not(.is-active) .case-copy h2 {
  color: var(--muted-70);
}

.case-study.is-active .case-copy h2 {
  color: var(--white);
}

.case-copy p {
  width: 100%;
  color: var(--muted-60);
  font-size: 16px;
  line-height: 1.3;
}

.project-card {
  --project-glow-rgb: 228, 203, 84;
  width: 1052px;
  height: 531.686px;
  border: 1px solid var(--line-10);
  border-radius: 16px;
  background: #202020;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 12px;
  box-shadow: -20px -120px 200px -120px rgba(var(--project-glow-rgb), 0.4);
  cursor: pointer;
}

.project-card > img {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 1127px;
  height: 569.592px;
  max-width: none;
  border-radius: 16px;
  object-fit: cover;
}

.project-card figcaption {
  position: relative;
  z-index: 1;
  height: 44px;
  padding: 8px 16px 8px 8px;
  border-radius: 20px;
  background: #333333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: normal;
  white-space: nowrap;
}

.project-card figcaption span {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-40);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card figcaption img {
  width: 10px;
  height: 20px;
  transform: rotate(180deg) scaleY(-1);
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 73px 68px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.case-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.case-modal-sheet {
  position: relative;
  width: min(1400px, calc(100vw - 48px));
  height: min(900px, calc(100vh - 56px));
  min-height: 560px;
  padding: 8px;
  padding-bottom: 0px;
  border-radius: 24px 24px 0 0;
  background: #141414;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateY(42px);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-modal.is-open .case-modal-sheet {
  transform: translateY(0);
}

.case-modal-sidebar {
  width: 306px;
  height: 100%;
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
  overflow: hidden;
  min-height: 0;
}

.case-modal-sidebar-main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding-right: 8px;
}

.case-modal-sidebar-actions {
  width: 100%;
  flex: 0 0 auto;
}

.case-modal-sidebar-main::-webkit-scrollbar {
  width: 8px;
}

.case-modal-sidebar-main::-webkit-scrollbar-track {
  background: transparent;
}

.case-modal-sidebar-main::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.case-modal-back,
.case-modal-next,
.case-modal-carousel button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.case-modal-back {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 0;
  font-size: 15px;
}

.case-modal-back:focus,
.case-modal-back:focus-visible {
  outline: none;
}

.case-modal-back img {
  width: 10px;
  height: 20px;
  transform: rotate(-90deg);
}

.case-modal-logo {
  width: 130px;
  height: 41px;
  min-height: 41px;
  margin-top: 32px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.case-modal-logo[hidden],
.case-modal-results[hidden] {
  display: none;
}

.case-modal-logo img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-modal-logo-art {
  position: relative;
  width: 130px;
  height: 22.645px;
  overflow: hidden;
}

.case-modal-logo-art img {
  position: absolute;
  max-width: none;
  display: block;
}

.logo-m {
  left: 45.37%;
  top: 3.64%;
  width: 8.8%;
  height: 54.53%;
}

.logo-u {
  left: 56.37%;
  top: 3.64%;
  width: 7.32%;
  height: 54.97%;
}

.logo-u-2 {
  left: 65.86%;
  top: 3.64%;
  width: 7.32%;
  height: 54.97%;
}

.logo-t {
  left: 74.72%;
  top: 3.64%;
  width: 7.44%;
  height: 54.53%;
}

.logo-o {
  left: 82.86%;
  top: 2.87%;
  width: 9.1%;
  height: 56.07%;
}

.logo-s {
  left: 93.04%;
  top: 2.76%;
  width: 6.79%;
  height: 56.18%;
}

.logo-d {
  left: 45.6%;
  top: 72.85%;
  width: 3.41%;
  height: 23.95%;
}

.logo-i {
  left: 52.78%;
  top: 72.85%;
  width: 0.38%;
  height: 23.95%;
}

.logo-g {
  left: 56.96%;
  top: 72.74%;
  width: 3.45%;
  height: 24.39%;
}

.logo-i-2 {
  left: 64.22%;
  top: 72.85%;
  width: 0.38%;
  height: 23.95%;
}

.logo-t-small {
  left: 68.3%;
  top: 73.07%;
  width: 3.14%;
  height: 23.62%;
}

.logo-a {
  left: 74.49%;
  top: 72.85%;
  width: 3.47%;
  height: 24.06%;
}

.logo-l {
  left: 81.59%;
  top: 72.85%;
  width: 2.45%;
  height: 23.95%;
}

.logo-mark-left {
  left: 12.77%;
  top: 0.33%;
  width: 23.03%;
  height: 99.45%;
}

.logo-mark-right {
  left: 0.2%;
  top: 0.22%;
  width: 19.51%;
  height: 99.56%;
}

.case-modal-summary {
  padding: 16px 0 24px;
  flex: 0 0 auto;
}

.case-modal-summary h2,
.case-modal-results h3 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
}

.case-modal-summary p {
  margin: 10px 0 0;
  color: var(--muted-60);
  font-size: 15px;
  line-height: 1.3;
}

.case-modal-summary-lead {
  color: var(--muted-80);
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.case-modal-results {
  margin-top: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-20);
  flex: 0 0 auto;
  min-height: 0;
  overflow: visible;
}

.case-modal-results ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--muted-60);
  font-size: 16px;
  line-height: 1.3;
}

.case-modal-next {
  width: 100%;
  min-height: 43px;
  margin-top: 0;
  padding: 12px;
  border-radius: 12px;
  background: var(--white);
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 15px;
  flex: 0 0 auto;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-modal-next img {
  width: 16px;
  height: 16px;
}

.case-modal-preview {
  position: relative;
  width: min(1064px, 100%);
  height: calc(100% + 21px);
  flex: 1 1 auto;
}

.case-modal-preview-scroll {
  position: relative;
  height: 100%;
  border: 1px solid var(--line-20);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  background: #202020;
}

.case-modal-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.018) 24%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.018) 76%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, #1b1b1b 0%, #171717 100%);
  background-size: 320px 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -320px 0, 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.case-modal-preview-scroll.is-loading .case-modal-loader {
  opacity: 1;
  transition: none;
}

.case-modal-preview-scroll.is-loading.is-loader-animating .case-modal-loader {
  animation: case-modal-skeleton 1.1s ease-in-out infinite;
}

.case-modal-preview-scroll img {
  position: relative;
  z-index: 0;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 0;
  max-width: none;
  display: block;
}

@keyframes case-modal-skeleton {
  0% {
    background-position: -220px 0, 0 0;
  }
  100% {
    background-position: calc(100% + 220px) 0, 0 0;
  }
}

.case-modal-carousel {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  min-width: 136px;
  height: 44px;
  padding: 8px;
  border-radius: 20px;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-modal-carousel button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line-40);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-modal-carousel button:first-child img {
  width: 10px;
  height: 20px;
  transform: rotate(-90deg) scale(1);
  transition: transform 120ms ease;
}

.case-modal-carousel button:last-child img {
  width: 10px;
  height: 20px;
  transform: rotate(90deg) scale(1);
  transition: transform 120ms ease;
}

.case-modal-carousel button:first-child:active img {
  transform: rotate(-90deg) scale(0.6);
}

.case-modal-carousel button:last-child:active img {
  transform: rotate(90deg) scale(0.6);
}

.case-modal-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.case-modal-dots button {
  width: 4px;
  height: 4px;
  min-width: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-40);
  cursor: pointer;
  transition:
    width 330ms cubic-bezier(0.16, 1, 0.3, 1),
    min-width 330ms cubic-bezier(0.16, 1, 0.3, 1),
    background 270ms ease;
}

.case-modal-dots button:hover,
.case-modal-dots button:focus-visible {
  background: var(--muted-80);
  outline: none;
}

.case-modal-dots button.is-active {
  width: 16px;
  min-width: 16px;
  background: var(--white);
}

body.case-modal-open {
  overflow: hidden;
}

.skills-section {
  height: 590px;
  padding-left: 32px;
}

.skills-section > h2 {
  width: 472px;
  color: var(--white);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 600;
}

.skills-grid {
  width: 832px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 370px 370px;
  column-gap: 92px;
  row-gap: 92px;
}

.skills-grid article {
  width: 370px;
  height: 165px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skills-grid img {
  width: 32px;
  height: 32px;
}

.skills-grid h3 {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
}

.skills-grid p {
  margin-top: 10px;
  color: var(--muted-60);
  font-size: 16px;
  line-height: 1.3;
}

.audience-section {
  height: 514.105px;
  display: grid;
  grid-template-columns: 518px 518px;
  gap: 16px;
}

.audience-card {
  height: 514.105px;
  padding: 92px 32px 0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #292626;
}

.audience-card.agency {
  background-image:
    linear-gradient(rgba(41, 38, 38, 0.4) 0%, rgba(41, 38, 38, 0) 100%),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 518 514.11' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%25' width='100%25' fill='url(%23grad)' opacity='0.20000000298023224'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(4.5472e-15 -15.238 39.262 6.7005e-16 259 514.58)'><stop stop-color='rgba(255,122,34,1)' offset='0'/><stop stop-color='rgba(255,122,34,0)' offset='1'/></radialGradient></defs></svg>"),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 518 514.11' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%25' width='100%25' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(-5.5617e-14 -60.758 91.335 -1.9678e-13 259 608.05)'><stop stop-color='rgba(187,1,255,1)' offset='0'/><stop stop-color='rgba(186,2,255,0.99161)' offset='0.1179'/><stop stop-color='rgba(181,4,255,0.96759)' offset='0.21384'/><stop stop-color='rgba(174,8,255,0.9296)' offset='0.2912'/><stop stop-color='rgba(165,13,255,0.87935)' offset='0.35336'/><stop stop-color='rgba(153,19,255,0.81852)' offset='0.4037'/><stop stop-color='rgba(140,27,255,0.7488)' offset='0.4456'/><stop stop-color='rgba(126,34,255,0.67188)' offset='0.48243'/><stop stop-color='rgba(111,43,255,0.58945)' offset='0.51757'/><stop stop-color='rgba(95,52,255,0.5032)' offset='0.5544'/><stop stop-color='rgba(78,61,255,0.41481)' offset='0.5963'/><stop stop-color='rgba(62,70,255,0.32599)' offset='0.64664'/><stop stop-color='rgba(45,79,255,0.2384)' offset='0.7088'/><stop stop-color='rgba(30,87,255,0.15375)' offset='0.78616'/><stop stop-color='rgba(15,95,255,0.073719)' offset='0.8821'/><stop stop-color='rgba(1,103,255,0)' offset='1'/></radialGradient></defs></svg>"),
    linear-gradient(90deg, #292626 0%, #292626 100%);
}

.audience-card.business {
  background-image:
    linear-gradient(rgba(41, 38, 38, 0.4) 15.526%, rgba(41, 38, 38, 0) 113.05%),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 518 514.11' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%25' width='100%25' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(1.187e-14 -10.564 27.218 3.9375e-14 259 514.58)'><stop stop-color='rgba(255,175,113,1)' offset='0'/><stop stop-color='rgba(255,175,113,0)' offset='1'/></radialGradient></defs></svg>"),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 518 514.11' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%25' width='100%25' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(-1.6634e-16 -66.647 100.19 -1.6863e-13 259 666.94)'><stop stop-color='rgba(255,191,1,1)' offset='0'/><stop stop-color='rgba(253,192,2,0.99161)' offset='0.1179'/><stop stop-color='rgba(247,194,7,0.96759)' offset='0.21384'/><stop stop-color='rgba(237,196,13,0.9296)' offset='0.2912'/><stop stop-color='rgba(224,199,22,0.87935)' offset='0.35336'/><stop stop-color='rgba(209,203,32,0.81852)' offset='0.4037'/><stop stop-color='rgba(191,207,45,0.7488)' offset='0.4456'/><stop stop-color='rgba(172,212,58,0.67188)' offset='0.48243'/><stop stop-color='rgba(151,218,72,0.58945)' offset='0.51757'/><stop stop-color='rgba(129,223,87,0.5032)' offset='0.5544'/><stop stop-color='rgba(106,229,103,0.41481)' offset='0.5963'/><stop stop-color='rgba(84,234,118,0.32599)' offset='0.64664'/><stop stop-color='rgba(62,240,133,0.2384)' offset='0.7088'/><stop stop-color='rgba(40,245,148,0.15375)' offset='0.78616'/><stop stop-color='rgba(20,250,162,0.073719)' offset='0.8821'/><stop stop-color='rgba(1,255,175,0)' offset='1'/></radialGradient></defs></svg>"),
    linear-gradient(90deg, #292626 0%, #292626 100%);
}

.audience-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 16px;
  background: var(--line-20);
  box-shadow: 0 10px 40px rgba(0, 8, 123, 0.2);
  backdrop-filter: blur(20px);
}

.audience-icon img {
  width: 32px;
  height: 32px;
}

.audience-card h2 {
  margin-top: 44px;
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
}

.audience-card p {
  width: 370px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.3;
}

.communication-section {
  width: 1052px;
  height: 1145px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.communication-top {
  height: 588px;
  padding: 56px 0 0 32px;
  position: relative;
}

.communication-copy {
  width: 472px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.communication-copy h2 {
  width: 472px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 600;
}

.communication-copy p {
  width: 378px;
  color: var(--muted-60);
  font-size: 16px;
  line-height: 1.3;
}

.communication-copy .figma-button {
  width: fit-content;
}

.communication-art {
  position: absolute;
  left: 0;
  top: 40.49px;
  width: 1080px;
  height: 548px;
  /*overflow: hidden;*/
}

.comm-ground {
  position: absolute;
  left: 178px;
  top: 324.19px;
  width: 669px;
  height: 224px;
}

.comm-circle {
  position: absolute;
  left: 464px;
  top: 31px;
  width: 616px;
  height: 517px;
}

.comm-pole {
  position: absolute;
  left: 839px;
  top: 95.69px;
  width: 7px;
  height: 225.812px;
}

.comm-flag {
  position: absolute;
  left: 637px;
  top: 82px;
  width: 209px;
  height: 114px;
}

.comm-fade {
  position: absolute;
  left: 81px;
  top: 210px;
  width: 999px;
  height: 340px;
  background: linear-gradient(
    rgba(20, 20, 20, 0) 36.4%,
    rgba(20, 20, 20, 0.12) 58.8%,
    rgba(20, 20, 20, 0.5) 71.6%,
    #141414 100%
  );
}

.reviews-section {
  height: 547px;
  padding: 36px 0 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding-top: 80px;
}

.quote-block {
  width: 623px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.quote-block > img {
  width: 93px;
  height: 93px;
  margin-right: 12px;
}

.quote-block blockquote {
  width: 623px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 36px;
  line-height: normal;
  font-weight: 600;
  will-change: opacity, transform;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.64)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviewer-row {
  --reviewer-gap: 24px;
  display: flex;
  align-items: center;
  gap: var(--reviewer-gap);
  isolation: isolate;
}

.reviewer-row .avatar-wrap {
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviewer-row .avatar {
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: filter, opacity;
  transition:
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviewer-row button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease;
}

.reviewer-row button:first-child:hover {
  transform: translateX(-3px);
}

.reviewer-row button:last-child:hover {
  transform: translateX(3px);
}

.reviewer-row button:first-child img {
  transform: rotate(90deg) scaleY(-1);
  transition: transform 120ms ease;
}

.reviewer-row button:last-child img {
  transform: rotate(90deg);
  transition: transform 120ms ease;
}

.reviewer-row button img {
  width: 10px;
  height: 20px;
}

.reviewer-row button:first-child:active img {
  transform: rotate(90deg) scaleY(-1) scale(0.6);
}

.reviewer-row button:last-child:active img {
  transform: rotate(90deg) scale(0.6);
}

.avatar,
.avatar-wrap {
  object-fit: cover;
}

.avatar-wrap {
  position: relative;
  z-index: 1;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transform-origin: center;
  transform: scale(0.6875);
  opacity: 0.72;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.avatar-wrap.small {
  transform: scale(0.6875);
  opacity: 0.72;
}

.avatar-wrap .avatar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.avatar-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.avatar-wrap.large {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.avatar-wrap .avatar {
  opacity: 0.6;
  filter: brightness(0.74) contrast(0.96) saturate(0.9);
}

.avatar-wrap.is-active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.avatar-wrap.is-active .avatar {
  opacity: 1;
  filter: brightness(1.12) contrast(1.04) saturate(1.04);
}

.reviewer-copy {
  width: 1020px;
  text-align: center;
  font-size: 16px;
  line-height: normal;
}

.reviewer-copy p:first-child {
  font-weight: 600;
  will-change: opacity, transform;
}

.reviewer-copy p:last-child {
  width: 370px;
  margin: 8px auto 0;
  color: var(--muted-60);
  will-change: opacity, transform;
}

.contact-outer {
  width: 100%;
  padding-top: 308px;
}

.contact-panel {
  width: 100%;
  min-height: 904px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 144px;
  padding-bottom: 20px;
  isolation: isolate;
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 1536 904' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%25' width='100%25' fill='url(%23grad)' opacity='0.20000000298023224'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(1.3484e-14 -26.795 116.42 1.1782e-15 768 904.83)'><stop stop-color='rgba(255,122,34,1)' offset='0'/><stop stop-color='rgba(255,122,34,0)' offset='1'/></radialGradient></defs></svg>"),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 1536 904' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%25' width='100%25' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(3.3248e-14 -95.333 241.67 1.1824e-13 768 954.17)'><stop stop-color='rgba(187,1,255,1)' offset='0'/><stop stop-color='rgba(186,2,255,0.99161)' offset='0.1179'/><stop stop-color='rgba(181,4,255,0.96759)' offset='0.21384'/><stop stop-color='rgba(174,8,255,0.9296)' offset='0.2912'/><stop stop-color='rgba(165,13,255,0.87935)' offset='0.35336'/><stop stop-color='rgba(153,19,255,0.81852)' offset='0.4037'/><stop stop-color='rgba(140,27,255,0.7488)' offset='0.4456'/><stop stop-color='rgba(126,34,255,0.67188)' offset='0.48243'/><stop stop-color='rgba(111,43,255,0.58945)' offset='0.51757'/><stop stop-color='rgba(95,52,255,0.5032)' offset='0.5544'/><stop stop-color='rgba(78,61,255,0.41481)' offset='0.5963'/><stop stop-color='rgba(62,70,255,0.32599)' offset='0.64664'/><stop stop-color='rgba(45,79,255,0.2384)' offset='0.7088'/><stop stop-color='rgba(30,87,255,0.15375)' offset='0.78616'/><stop stop-color='rgba(15,95,255,0.073719)' offset='0.8821'/><stop stop-color='rgba(1,103,255,0)' offset='1'/></radialGradient></defs></svg>");
}

.contact-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(-250px + var(--cta-glow-rise, 0px));
  z-index: 0;
  width: min(1400px, 100vw);
  height: 520px;
  transform: translateX(-50%);
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(187, 1, 255, 0.34),
      transparent 62%
    ),
    radial-gradient(
      ellipse at 48% 100%,
      rgba(255, 122, 34, 0.2),
      transparent 46%
    );
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
  transition: bottom 80ms linear;
}

.contact-content {
  width: 646px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.contact-intro {
  width: 646px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-intro h2,
.contact-intro p {
  opacity: 0;
  filter: blur(22px);
  transform: translateY(18px);
  transition:
    opacity 780ms ease,
    filter 900ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-intro h2 {
  width: 623px;
  margin: 0 auto;
  font-size: 36px;
  line-height: normal;
  font-weight: 600;
}

.contact-intro p {
  width: 646px;
  color: var(--muted-80);
  font-size: 16px;
  line-height: 1.3;
  transition-delay: 90ms;
}

.contact-form {
  width: 432px;
  padding: 32px 52px 48px;
  border: 1px solid var(--line-20);
  border-radius: 24px;
  background: #252636;
  backdrop-filter: blur(100px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 680ms ease,
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 280ms;
}

.contact-outer.is-visible .contact-intro h2,
.contact-outer.is-visible .contact-intro p {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.contact-outer.is-form-visible .contact-form {
  opacity: 1;
  transform: translateY(0);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form label > span:first-child {
  width: 300px;
  height: 32px;
  color: var(--white);
  font-size: 16px;
  line-height: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 328px;
  border: 0;
  border-radius: 12px;
  background: #393a49;
  color: var(--white);
  font-size: 16px;
  line-height: normal;
  padding: 12px 16px;
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease,
    outline-color 180ms ease;
}

.contact-form input {
  height: 43px;
}

.contact-form textarea {
  height: 147px;
  resize: none;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.contact-form label.is-invalid input,
.contact-form label.is-invalid textarea,
.privacy-row.is-invalid input {
  box-shadow: 0 0 0 1px rgba(255, 130, 130, 0.9);
  background: #433241;
}

.field-error {
  min-height: 18px;
  padding-top: 6px;
  color: #ffb4b4;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transition: opacity 160ms ease;
}

.field-error.is-visible {
  opacity: 1;
}

.privacy-row {
  padding-top: 12px;
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
}

.privacy-row input {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid white;
  border-radius: 999px;
  appearance: none;
  background: transparent;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.privacy-row input::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  transform: scale(0);
  transition: transform 160ms ease;
}

.privacy-row input:checked::after {
  transform: scale(1);
}

.privacy-row input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.privacy-row span {
  width: 303px;
  color: var(--muted-60);
  font-size: 16px;
  line-height: normal;
}

.privacy-row a {
  color: var(--muted-80);
  text-decoration: underline;
  text-underline-position: from-font;
}

.field-error-privacy {
  width: 328px;
  margin-top: -2px;
}

.contact-form button {
  width: 328px;
  height: 43px;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.contact-form button:disabled {
  background: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.72);
  cursor: wait;
}

.contact-form button.is-success {
  background: #7edc92;
  color: #102315;
}

.contact-form button.is-success::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
  flex: 0 0 auto;
}

.form-status {
  width: 328px;
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted-60);
}

.form-status.is-success {
  color: #d8f7d8;
}

.form-status.is-error {
  color: #ffb4b4;
}

.footer-strip {
  width: min(1312px, calc(100% - 224px));
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 16px;
  line-height: normal;
  position: relative;
  z-index: 1;
}

.footer-strip span,
.footer-strip a {
  width: 300px;
}

.footer-strip a:nth-child(2) {
  text-align: center;
}

.footer-strip a:nth-child(3) {
  text-align: right;
}

@media (max-width: 1200px) {
  main {
    padding-bottom: 0;
  }

  .figma-container,
  .topbar-inner {
    width: calc(100vw - 40px);
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .hero,
  .body-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-title-group {
    align-items: flex-start;
  }

  h1 {
    width: min(623px, calc(100vw - 250px));
  }

  .hero-copy {
    width: min(560px, 100%);
  }

  .body-shell {
    margin-top: 80px;
  }

  .side-column {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 16px max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    border-top: 1px solid var(--line-20);
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 16px));
    transition:
      opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
  }

  .mobile-bottom-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-bottom-bar::after {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    bottom: 0;
    width: 58px;
    z-index: 2;
    background: linear-gradient(270deg, #141414 0%, rgba(20, 20, 20, 0) 100%);
    pointer-events: none;
  }

  .mobile-progress {
    height: 18px;
    width: 100%;
    padding-left: 8px;
    padding-right: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  .mobile-progress .notch {
    width: 2px;
    min-width: 2px;
    max-width: 2px;
    height: var(--notch-height, 6px);
    min-height: 0;
    max-height: none;
    transform-origin: center bottom;
    transition:
      height 140ms linear,
      background-color 140ms linear;
  }

  .mobile-bottom-scroll {
    width: 100%;
    min-height: 50px;
    padding-right: 42px;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-bottom-scroll::-webkit-scrollbar {
    display: none;
  }

  .mobile-bottom-scroll a {
    display: flex;
    align-items: center;
    min-height: 50px;
    color: var(--muted-50);
    font-size: 16px;
    line-height: normal;
    white-space: nowrap;
    transition: color 180ms ease;
  }

  .mobile-bottom-scroll a.active {
    color: var(--muted-80);
  }

  .main-column {
    gap: 120px;
  }

  .main-column,
  .project-card,
  .communication-section,
  .audience-section {
    width: 100%;
  }

  .work-stack {
    padding-top: 0px;
  }

  .case-study:first-child .figma-button {
    background: var(--white);
    border-color: var(--white);
    color: #141414;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
  }

  .case-study:first-child:not(.is-active) .case-copy h2 {
    color: var(--white);
  }

  .case-copy,
  .case-copy.tall,
  .case-copy p {
    width: min(560px, 100%);
    height: auto;
  }

  .project-card {
    height: auto;
    aspect-ratio: 1052 / 532;
    min-height: 320px;
  }

  .project-card > img {
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    transform: none;
    object-fit: contain;
    object-position: center top;
  }

  .skills-section {
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .skills-section > h2 {
    width: min(560px, 100%);
  }

  .skills-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 56px;
  }

  .skills-grid article {
    width: auto;
    height: auto;
  }

  .audience-section {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card {
    width: auto;
    height: auto;
    min-height: 430px;
  }

  .audience-card p {
    width: min(370px, 100%);
  }

  .communication-section {
    height: auto;
  }

  .communication-top {
    width: 100%;
    height: clamp(500px, 55vw, 588px);
    padding-left: 0;
    overflow: hidden;
  }

  .communication-copy,
  .communication-copy h2 {
    width: min(472px, 100%);
  }

  .communication-copy p {
    width: min(378px, 100%);
  }

  .communication-art {
    left: max(0px, calc(100% - 1080px));
    width: 1080px;
    max-width: none;
  }

  .reviews-section {
    width: 100%;
    height: auto;
    min-height: 520px;
    padding-left: 0;
  }

  .quote-block,
  .quote-block blockquote {
    width: min(760px, 100%);
  }

  .reviewer-copy {
    width: 100%;
  }

  .contact-outer {
    padding-top: 220px;
  }

  .contact-content,
  .contact-intro,
  .contact-intro p {
    width: min(646px, calc(100vw - 40px));
  }

  .contact-intro h2 {
    width: min(623px, 100%);
  }

  .footer-strip {
    width: calc(100% - 40px);
  }

  .case-modal {
    padding: 64px 20px 0;
  }

  .case-modal-sheet {
    width: 100%;
    height: calc(100dvh - 64px);
    min-height: 0;
  }

  .case-modal-sidebar {
    width: 300px;
    padding: 16px 24px 24px;
  }

  .case-modal-sidebar-main {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-gutter: stable;
    padding-right: 8px;
  }

  .case-modal-sidebar-actions {
    width: 100%;
  }
}

@media (max-width: 820px) {
  main {
    padding-bottom: 0;
  }

  html,
  body {
    overflow-x: clip;
  }

  .communication-section,
  .communication-top,
  .communication-graphic {
    overflow: visible !important;
    clip-path: none !important;
    contain: none !important;
  }

  .page::after {
    height: 32vh;
  }

  .figma-container,
  .topbar-inner {
    width: calc(100vw - 48px);
  }

  .topbar-actions {
    gap: 6px;
  }

  .hero {
    gap: 32px;
  }

  .hero-title-group {
    flex-direction: column;
    gap: 24px;
  }

  .portrait {
    width: 128px;
    height: 128px;
    border-radius: 20px;
  }

  h1 {
    width: 100%;
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-copy {
    gap: 20px;
  }

  .body-shell {
    margin-top: 64px;
  }

  .main-column {
    gap: 96px;
  }

  .work-stack {
    gap: 80px;
  }

  .case-study {
    gap: 24px;
  }

  .case-copy {
    gap: 18px;
  }

  .case-copy h2 {
    font-size: 22px;
  }

  .case-copy p,
  .skills-grid p,
  .audience-card p,
  .communication-copy p,
  .contact-intro p {
    font-size: 15px;
  }

  .button-pair {
    flex-wrap: wrap;
  }

  .project-card {
    min-height: 260px;
    border-radius: 14px;
  }

  .project-card > img {
    border-radius: 14px;
  }

  .project-card figcaption {
    height: 40px;
    font-size: 14px;
  }

  .skills-section > h2,
  .communication-copy h2,
  .contact-intro h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .skills-section,
  .communication-section {
    padding-top: 80px;
  }

  .skills-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .audience-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    min-height: 360px;
    padding: 64px 24px 48px;
  }

  .audience-card h2 {
    margin-top: 32px;
  }

  .communication-top {
    height: auto;
    min-height: 620px;
    padding-top: 0;
  }

  .communication-copy {
    gap: 24px;
  }

  .comm-ground {
    left: 100px;
    top: 254px;
    width: 520px;
    height: auto;
  }

  .comm-circle {
    left: 300px;
    top: 42px;
    width: 430px;
    height: auto;
  }

  .comm-pole {
    left: 590px;
    top: 92px;
    height: 170px;
  }

  .comm-flag {
    left: 440px;
    top: 82px;
    width: 160px;
    height: auto;
  }

  .comm-fade {
    left: 0;
    top: 172px;
    width: 760px;
    height: 260px;
  }

  .reviews-section {
    min-height: 500px;
    gap: 36px;
  }

  .quote-block {
    gap: 48px;
  }

  .quote-block > img {
    width: 72px;
    height: 72px;
  }

  .quote-block blockquote {
    font-size: 30px;
    line-height: 1.12;
  }

  .contact-outer {
    padding-top: 160px;
  }

  .contact-panel {
    min-height: auto;
    gap: 96px;
  }

  .contact-form {
    width: min(432px, 100%);
  }

  .footer-strip {
    height: auto;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-strip span,
  .footer-strip a,
  .footer-strip a:nth-child(2),
  .footer-strip a:nth-child(3) {
    width: auto;
    text-align: center;
  }

  .case-modal {
    padding: max(56px, calc(env(safe-area-inset-top, 0px) + 40px)) 12px 0;
  }

  .case-modal-sheet {
    height: calc(
      100dvh - max(56px, calc(env(safe-area-inset-top, 0px) + 40px))
    );
    flex-direction: column;
    overflow-y: auto;
  }

  .case-modal-sidebar {
    width: 100%;
    height: auto;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    overflow: visible;
  }

  .case-modal-sidebar-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .case-modal-sidebar-actions {
    width: 100%;
    flex: 0 0 auto;
  }

  .case-modal-logo,
  .case-modal-summary,
  .case-modal-results {
    margin-top: 0;
    padding-block: 0;
  }

  .case-modal-results {
    margin-top: 0;
    border-left: 0;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line-20);
  }

  .case-modal-results ul {
    gap: 12px;
    margin-top: 12px;
  }

  .case-modal-next {
    width: 100%;
  }

  .case-modal-preview {
    width: 100%;
    height: 68vh;
    min-height: 360px;
    flex: 0 0 auto;
  }

  .case-modal-preview-scroll img {
    width: 100%;
    margin-left: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .case-modal-preview-scroll {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) rgba(255, 255, 255, 0.1);
  }

  .case-modal-preview-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .case-modal-preview-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
  }

  .case-modal-preview-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
  }

  .case-modal-carousel {
    bottom: 40px;
  }
}

@media (max-width: 560px) {
  main {
    padding-bottom: 0;
  }

  .figma-container,
  .topbar-inner {
    width: calc(100vw - 36px);
  }

  .cta-mobile-break
  {
    display: block;
  }

  .topbar-inner {
    height: auto;
  }

  .brand {
    font-size: 15px;
  }

  .topbar-mobile-contact {
    display: inline-flex;
  }

  .topbar-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 260ms ease,
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .topbar.is-past-hero .topbar-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-contact {
    height: 32px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .hero {
    padding-top: 36px;
  }

  .portrait {
    width: 104px;
    height: 104px;
    border-radius: 18px;
  }

  h1 {
    font-size: 26px;
  }

  .figma-button,
  .figma-link-button,
  .resume-link {
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .topbar-actions .header-resume {
    padding-right: 0;
  }

  .main-column {
    gap: 80px;
  }

  .work-stack {
    gap: 112px;
  }

  .case-copy h2 {
    font-size: 21px;
  }

  .project-card {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .project-card > img {
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    transform: none;
    object-fit: contain;
    object-position: center top;
  }

  .project-card figcaption {
    max-width: calc(100% - 24px);
  }

  .skills-section > h2,
  .communication-copy h2,
  .contact-intro h2 {
    font-size: 26px;
  }

  .audience-card {
    min-height: 330px;
  }

  .communication-top {
    min-height: 560px;
  }

  .communication-art {
    top: 190px;
    transform: translateX(-55%) scale(0.88);
    transform-origin: top center;
    margin-right: -40px;
  }

  /*.communication-art img
  {
    width: 100%;
    display: block;
  }*/

  .quote-block > img {
    width: 58px;
    height: 58px;
  }

  .quote-block blockquote {
    font-size: 24px;
  }

  .reviewer-row {
    --reviewer-gap: 14px;
  }

  .contact-content,
  .contact-intro,
  .contact-intro p {
    width: calc(100vw - 36px);
  }

  .contact-panel {
    min-height: auto;
    gap: 56px;
    padding-bottom: 28px;
  }

  .contact-form {
    padding: 24px 20px 32px;
  }

  .contact-form label > span:first-child {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
  }

  .contact-form .privacy-row input {
    width: 15px;
    height: 15px;
  }

  .privacy-row span {
    width: auto;
    min-width: 0;
  }

  .case-modal {
    padding: max(56px, calc(env(safe-area-inset-top, 0px) + 32px)) 8px 0;
  }

  .case-modal-sheet {
    height: calc(
      100dvh - max(56px, calc(env(safe-area-inset-top, 0px) + 32px))
    );
    border-radius: 18px 18px 0 0;
  }

  .case-modal-sidebar {
    padding: 14px 16px 24px;
    flex-direction: column;
    gap: 24px;
  }

  .case-modal-sidebar-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .case-modal-sidebar-actions {
    width: 100%;
    flex: 0 0 auto;
  }

  .case-modal-results {
    border-left: 0;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line-20);
  }

  .case-modal-preview {
    height: 58vh;
    min-height: 300px;
  }

  .case-modal-carousel {
    bottom: 24px;
  }

  .topbar {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .topbar.is-hidden-on-cta {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }

  .skills-grid {
    margin-top: 80px;
    row-gap: 64px;
  }

  .communication-graphic .communication-art {
    position: absolute !important;
    left: 50% !important;
    top: 40% !important;
    width: 760px !important;
    height: 420px !important;
    transform: translate(-55%, 0px) scale(0.8) !important;
    transform-origin: top center !important;
  }
}
