@font-face {
  font-family: "Author Handwriting";
  src: url("author_handwriting/Author Handwriting.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #FFF7E6;
  --color-text: #27272a;
  --color-muted-block: #e4e4e7;
  --color-tag: #FEF08A;
  --color-accent: #2dd4bf;
  --color-black: #111111;
  --color-white: #ffffff;
  --radius-card: 12px;
  --radius-tag: 6px;
  --shadow-page: 0 0 1px rgba(24, 24, 27, 0.3), 0 2px 4px rgba(24, 24, 27, 0.1);
  --page-pad: 20px;
  --content-max: 440px;
  --phone-frame-width: 100%;
  --phone-frame-gap: 24px;
  --phone-frame-radius: 12px;
}

html.page-spender {
  --color-bg: #F0FDFA;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.js .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.js body {
  opacity: 0;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js.page-loaded body {
  opacity: 1;
}

.js.page-exiting body {
  opacity: 0;
}

html {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  min-height: 100vh;
  margin: 0 auto;
  background: var(--color-bg);
  color: var(--color-text);
}

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

button {
  font: inherit;
}

.handwriting,
.brand {
  font-family: "Author Handwriting", "Comic Sans MS", cursive;
  font-weight: 400;
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 20px var(--page-pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-size: 24px;
  line-height: 30px;
  white-space: nowrap;
  transform: translateY(0) rotate(0deg);
  transform-origin: 48% 70%;
  transition:
    color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:focus-visible {
  color: #DBA739;
  transform: translateY(-1px) rotate(-0.4deg);
}

html.page-spender .brand:focus-visible {
  color: #0d9488;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 285px;
  font-size: 16px;
  line-height: 24px;
}

.nav-links a {
  position: relative;
  transition: opacity 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  clip-path: inset(0 100% 0 0);
  content: "";
  transition: clip-path 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:focus-visible {
  opacity: 1;
}

.nav-links a[aria-current="page"]::after,
.nav-links a:focus-visible::after {
  clip-path: inset(0 0 0 0);
}

.footer-group a {
  display: inline-flex;
  justify-self: start;
  position: relative;
  opacity: 0.4;
  transition:
    opacity 160ms ease;
}

.footer-group a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  clip-path: inset(0 100% 0 0);
  content: "";
  transition: clip-path 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-contact a {
  justify-self: end;
  opacity: 1;
}

.footer-group a[aria-current="page"],
.footer-group a:focus-visible {
  opacity: 1;
}

.footer-group a[aria-current="page"]::after,
.footer-group a:focus-visible::after {
  clip-path: inset(0 0 0 0);
}

.nav-links-desktop {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  position: absolute;
  top: 70px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 180px;
  min-height: 231px;
  padding: 30px;
  border-radius: 10px;
  background: var(--color-bg);
  border: 1px solid rgba(39, 39, 42, 0.2);
  box-shadow: var(--shadow-page);
  font-size: 16px;
  line-height: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(39, 39, 42, 0.2);
  border-radius: 6px;
  background: #FEF08A;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(39, 39, 42, 0.55);
  content: "";
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.home-hero {
  display: grid;
  gap: 24px;
  width: min(100% - 80px, 400px);
  margin: 48px auto 0;
}

.home-hero h1 {
  display: grid;
  gap: 0;
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
}

.home-hero h1 span {
  display: block;
}

.js.page-work .home-hero h1 > span,
.js.page-work .home-hero p {
  opacity: 0;
  transform: translateY(8px);
}

.js.page-loaded.page-work .home-hero h1 > span,
.js.page-loaded.page-work .home-hero p {
  animation: home-hero-enter 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js.page-loaded.page-work .home-hero h1 > span:nth-child(2) {
  animation-delay: 180ms;
}

.js.page-loaded.page-work .home-hero h1 > span:nth-child(3) {
  animation-delay: 340ms;
}

.js.page-loaded.page-work .home-hero p {
  animation-delay: 520ms;
}

@keyframes home-hero-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.js.page-work .project-grid .project-thumb,
.js.page-work .project-grid .project-content {
  opacity: 0;
  transform: translateY(12px);
}

.js.page-loaded.page-work .project-grid .project-thumb,
.js.page-loaded.page-work .project-grid .project-content {
  animation: home-card-enter 960ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js.page-loaded.page-work .project-card:nth-child(1) .project-thumb {
  animation-delay: 760ms;
}

.js.page-loaded.page-work .project-card:nth-child(1) .project-content {
  animation-delay: 860ms;
}

.js.page-loaded.page-work .project-card:nth-child(2) .project-thumb {
  animation-delay: 920ms;
}

.js.page-loaded.page-work .project-card:nth-child(2) .project-content {
  animation-delay: 1020ms;
}

@keyframes home-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.home-hero .hero-name {
  display: inline-block;
  color: inherit;
  font-size: 58px;
  line-height: 0.78;
  transform: translateY(0) rotate(0deg);
  transform-origin: 48% 70%;
  transition:
    color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

.project-grid {
  display: grid;
  gap: 70px;
  width: min(100% - 40px, var(--content-max));
  margin: 48px auto 48px;
}

.project-card {
  display: grid;
  gap: 21px;
  color: var(--color-text);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .project-card.scroll-reveal.is-visible {
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

a.project-card {
  cursor: pointer;
}

a.project-card:focus-visible {
  border-radius: var(--radius-card);
  outline: 2px solid var(--color-accent);
  outline-offset: 8px;
}

.project-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  background: var(--color-muted-block);
  box-shadow: 0 0 0 rgba(24, 24, 27, 0);
  transition: box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.project-thumb-spender {
  background-image: url("assets/spender/spender-hero-image.webp");
  background-position: center;
  background-size: cover;
}

.project-thumb-spender::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/spender/spender-hero-image.webp");
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-content {
  display: grid;
  gap: 21px;
}

.project-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.project-title-text {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1.5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-meta {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-tag);
  background: var(--color-tag);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

a.project-card:focus-visible .project-title-text {
  background-size: 100% 1.5px;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    color: #DBA739;
    transform: translateY(-1px) rotate(-0.4deg);
  }

  html.page-spender .brand:hover {
    color: #0d9488;
  }

  .nav-links a:hover,
  .footer-group a:hover {
    opacity: 1;
  }

  .nav-links a:hover::after,
  .footer-group a:hover::after {
    clip-path: inset(0 0 0 0);
  }

  .home-hero .hero-name:hover {
    color: #DBA739;
    transform: translateY(-1px) rotate(-1.25deg);
  }

  a.project-card:hover .project-title-text {
    background-size: 100% 1.5px;
  }

  .project-card-placeholder:hover {
    cursor: url("assets/spender/cursor.svg") 8 8, auto;
  }

  a.project-card:hover,
  a.project-card:focus-visible,
  .js a.project-card.scroll-reveal.is-visible:hover,
  .js a.project-card.scroll-reveal.is-visible:focus-visible {
    transform: translateY(-6px);
  }

  a.project-card:hover .project-thumb,
  a.project-card:focus-visible .project-thumb {
    box-shadow: 0 18px 42px rgba(24, 24, 27, 0.16);
  }

  a.project-card:hover .project-thumb img,
  a.project-card:hover .project-thumb video,
  a.project-card:hover .project-thumb-spender::before,
  a.project-card:focus-visible .project-thumb img,
  a.project-card:focus-visible .project-thumb video,
  a.project-card:focus-visible .project-thumb-spender::before {
    transform: scale(1.035);
  }

  a.project-card:hover .tag,
  a.project-card:focus-visible .tag {
    transform: translateY(-2px);
  }

  a.project-card:hover .tag:nth-child(2),
  a.project-card:focus-visible .tag:nth-child(2) {
    transition-delay: 30ms;
  }

  a.project-card:hover .tag:nth-child(3),
  a.project-card:focus-visible .tag:nth-child(3) {
    transition-delay: 60ms;
  }
}

.about-main {
  padding-bottom: 64px;
}

.play-main {
  padding-bottom: 64px;
}

.play-hero {
  display: grid;
  gap: 24px;
  width: min(100% - 80px, 400px);
  margin: 48px auto 0;
  text-align: center;
}

.play-hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
}

.play-hero p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 392px) and (max-width: 451px) {
  .play-intro-break {
    display: none;
  }
}

.play-gallery {
  display: grid;
  gap: 30px;
  margin-top: 48px;
}

.play-gallery,
.play-gallery-stack,
.play-row {
  width: 100%;
}

.play-gallery-stack,
.play-row {
  display: grid;
  gap: 30px;
}

.play-row-squares,
.play-row-wide,
.play-row-mosaic,
.play-row-photos {
  grid-template-columns: 1fr;
}

.play-tile {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-muted-block);
}

.play-tile picture,
.play-tile img {
  display: block;
  width: 100%;
  height: 100%;
}

.play-tile img {
  object-fit: cover;
}

.play-tile-lead {
  position: relative;
  aspect-ratio: 480 / 1095;
}

.play-tile-overlay {
  display: none;
}

.play-lightbox {
  display: none;
}

.play-lightbox-open {
  overflow: hidden;
}

.play-row-squares .play-tile {
  aspect-ratio: 1;
}

.play-row-wide .play-tile:first-child {
  aspect-ratio: 987 / 984;
}

.play-row-wide .play-tile:last-child {
  aspect-ratio: 2271 / 1605;
}

.play-row-mosaic .play-tile:nth-child(1),
.play-row-mosaic .play-tile:nth-child(2) {
  aspect-ratio: 1000 / 1545;
}

.play-row-mosaic .play-tile:nth-child(1) {
  order: 1;
}

.play-row-mosaic .play-tile:nth-child(2) {
  order: 2;
}

.play-row-mosaic .play-tile:nth-child(3) {
  order: 6;
  aspect-ratio: 900 / 1364;
}

.play-row-mosaic .play-tile:nth-child(4) {
  order: 3;
}

.play-row-mosaic .play-tile:nth-child(5) {
  order: 5;
}

.play-row-mosaic .play-tile:nth-child(6) {
  order: 4;
}

.play-row-mosaic .play-tile:nth-child(4),
.play-row-mosaic .play-tile:nth-child(5),
.play-row-mosaic .play-tile:nth-child(6) {
  aspect-ratio: 9 / 16;
}

.play-row-photos .play-tile:first-child {
  aspect-ratio: 480 / 574.8148;
}

.play-row-photos .play-tile:last-child {
  aspect-ratio: 480 / 593.8738;
}

.about-hero {
  display: grid;
  gap: 32px;
  width: min(100% - 80px, 400px);
  margin: 48px auto 0;
}

.about-hero h1 {
  order: 1;
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: 0;
}

.about-hero h1 .handwriting {
  font-size: 48px;
  line-height: 44px;
}

.about-intro {
  display: contents;
}

.about-photo {
  order: 2;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-muted-block);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  order: 3;
  display: grid;
  gap: 24px;
  font-size: 16px;
  line-height: 24px;
}

.about-copy p,
.about-detail-section p,
.about-detail-section ul {
  margin: 0;
}

.about-details {
  display: grid;
  gap: 46px;
  width: min(100% - 80px, 396px);
  margin: 64px auto 0;
}

.about-detail-section {
  display: grid;
  gap: 18px;
  font-size: 16px;
  line-height: 24px;
}

.about-detail-section h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.experience-list {
  display: grid;
  gap: 11.5px;
}

.experience-row {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 24px;
  font-size: 16px;
  line-height: 24px;
}

.experience-company,
.detail-lead {
  font-weight: 500;
}

.experience-line {
  display: block;
  height: 1px;
  background: var(--color-text);
  opacity: 0.72;
}

.experience-role {
  text-align: right;
}

.about-detail-section ul {
  padding-left: 24px;
}

.education-content {
  display: grid;
  gap: 6px;
}

@media (max-width: 1279px) {
  .tools-section {
    order: 3;
  }

  .education-section {
    order: 4;
  }

  .languages-section {
    order: 5;
  }
}

.spender-main {
  padding-bottom: 80px;
}

.spender-hero,
.case-study {
  width: min(100% - 80px, 400px);
  margin-inline: auto;
}

.spender-hero {
  display: grid;
  gap: 21px;
  margin-top: 32px;
}

.spender-hero-media {
  display: grid;
  width: 100%;
  aspect-ratio: 830 / 852;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-muted-block);
  place-items: center;
}

.spender-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.spender-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spender-hero h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 10px;
  border-radius: 8px;
  background: #ccfbf1;
}

.project-details div {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.project-details dt {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.project-details dd {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}

.case-study {
  display: grid;
  gap: 44px;
  margin-top: 64px;
}

.case-section {
  display: grid;
  gap: 12px;
}

.case-section h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
}

.case-section h3,
.case-section h4,
.case-section p,
.case-section ul,
.case-section ol,
.case-section dl,
.case-section figure {
  margin: 0;
}

.case-section p,
.case-section li,
.case-section dd {
  font-size: 16px;
  line-height: 24px;
}

.case-section ul,
.case-section ol {
  padding-left: 24px;
}

.visual-section {
  gap: 24px;
}

.empathy-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid #60a5fa;
  border-radius: 10px;
  background: #dbeafe;
}

.empathy-map::before,
.empathy-map::after {
  position: absolute;
  background: #60a5fa;
  content: "";
}

.empathy-map::before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
}

.empathy-map::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
}

.note {
  position: absolute;
  z-index: 2;
  display: grid;
  align-items: center;
  width: 30%;
  min-height: 42px;
  padding: 5px;
  border-radius: 5px;
  background: #eff6ff;
  text-align: center;
  font-size: 11px;
  line-height: 15px;
}

.note:nth-of-type(even) {
  background: #bfdbfe;
}

.note-1 {
  top: 4%;
  left: 5%;
  transform: rotate(-6deg);
}

.note-2 {
  top: 5%;
  right: 8%;
  transform: rotate(-1deg);
}

.note-3 {
  top: 28%;
  left: 7%;
  transform: rotate(-1deg);
}

.note-4 {
  top: 29%;
  right: 9%;
  transform: rotate(2deg);
}

.note-5 {
  bottom: 26%;
  left: 9%;
  transform: rotate(4deg);
}

.note-6 {
  right: 5%;
  bottom: 27%;
  transform: rotate(-2deg);
}

.note-7 {
  bottom: 6%;
  left: 10%;
  transform: rotate(-4deg);
}

.note-8 {
  right: 8%;
  bottom: 7%;
  transform: rotate(1deg);
}

.empathy-person {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  place-items: center;
  transform: translate(-50%, -50%);
}

.map-label {
  position: absolute;
  z-index: 4;
  font-size: 18px;
  font-weight: 600;
}

.says {
  top: 45%;
  left: 27%;
}

.thinks {
  top: 45%;
  right: 22%;
}

.does {
  bottom: 43%;
  left: 27%;
}

.feels {
  right: 25%;
  bottom: 43%;
}

.empathy-map-image {
  display: block;
  width: min(100%, 550px);
  height: auto;
  justify-self: center;
}

.user-personas-image {
  display: block;
  width: 100%;
  height: auto;
}

.user-personas-combined {
  display: none;
}

.user-personas-stack {
  display: grid;
  gap: 24px;
}

.user-personas-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.journey-assets {
  display: grid;
  justify-items: center;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background: #FEF08A;
}

.journey-image {
  display: block;
  height: auto;
}

.journey-image-desktop {
  display: none;
}

.journey-image-mobile {
  width: 100%;
  max-width: none;
  justify-self: center;
}

.flow-assets {
  display: grid;
  justify-items: center;
}

.flow-image {
  display: block;
  width: 100%;
  height: auto;
}

.flow-image-tablet,
.flow-image-desktop {
  display: none;
}

@media (min-width: 659px) and (max-width: 767px) {
  .journey-image-mobile {
    width: 80%;
  }
}

.persona-grid {
  display: grid;
  gap: 24px;
}

.persona-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 18px;
  border: 2px solid #60a5fa;
  border-radius: 12px;
  background: #dbeafe;
}

.persona-card-yellow {
  border-color: #facc15;
  background: #fef9c3;
}

.persona-avatar {
  display: grid;
  align-self: start;
  width: 100%;
  aspect-ratio: 0.64;
  border-radius: 8px;
  background: #fafafa;
  color: var(--color-text);
  font-weight: 700;
  place-items: center;
}

.persona-summary h3 {
  margin: 2px 0 4px;
  font-size: 20px;
  line-height: 28px;
}

.persona-summary p,
.persona-card dd {
  margin: 0;
}

.persona-label,
.persona-card dt {
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
}

.persona-card dl {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.journey-panel,
.problem-statement,
.flow-panel,
.automation-card,
.takeaway-list article {
  border-radius: 8px;
}

.journey-panel {
  display: grid;
  gap: 24px;
  padding: 16px;
  background: #f4f4f5;
}

.journey-panel h3 {
  font-size: 18px;
  line-height: 28px;
}

.journey-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.journey-steps span {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-black);
  font-weight: 700;
  place-items: center;
}

.journey-insights {
  display: grid;
  gap: 16px;
}

.journey-insights div {
  padding: 12px;
  border: 1px solid rgba(39, 39, 42, 0.22);
  border-radius: 8px;
  background: var(--color-bg);
}

.journey-insights h4 {
  font-size: 16px;
  line-height: 24px;
}

.problem-statement {
  padding: 20px;
  background: #ccfbf1;
}

.flow-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: #f4f4f5;
}

.flow-node,
.flow-column span {
  display: grid;
  min-height: 39px;
  padding: 8px;
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(39, 39, 42, 0.18);
  text-align: center;
  place-items: center;
}

.flow-column {
  display: grid;
  gap: 12px;
}

.flow-main span:first-child,
.flow-node {
  background: #ccfbf1;
}

.screen-card-grid {
  display: flex;
  gap: 0;
  transform: translateX(var(--slider-x, 0));
  transition: transform 260ms ease;
}

.screen-card-grid.is-dragging,
.desktop-slider-track.is-dragging {
  transition: none;
}

.screen-card-slider {
  display: grid;
  gap: 16px;
  width: 100%;
}

.screen-card-window {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.screen-card-slide {
  flex: 0 0 100%;
  min-width: 0;
}

@keyframes slider-page-fade {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

[data-slider] [data-slider-slide].is-active,
[data-slider] .desktop-slide.is-active {
  animation: slider-page-fade 220ms ease both;
}

.screen-card-grid figure {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 16px;
}

.screen-card-grid figcaption {
  align-self: start;
  font-size: 14px;
  line-height: 20px;
}

.screen-card,
.phone-preview {
  overflow: hidden;
  border-radius: var(--phone-frame-radius);
  background: #111111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen-card {
  height: 500px;
  background:
    linear-gradient(90deg, #18181b 0 22%, transparent 22%),
    linear-gradient(135deg, rgba(45, 212, 191, 0.72), rgba(17, 17, 17, 0.2)),
    #111111;
}

.screen-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-user-drag: none;
}

.screen-card-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.screen-card-lightbox.is-open,
.screen-card-lightbox.is-settled {
  opacity: 1;
  pointer-events: auto;
}

.screen-card-lightbox:focus {
  outline: 0;
}

.screen-card-lightbox-content {
  width: min(43vw, 390px, calc((100vh - 96px) * 251 / 500));
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.screen-card-lightbox.is-open .screen-card-lightbox-content,
.screen-card-lightbox.is-settled .screen-card-lightbox-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.screen-card-lightbox.is-settled,
.screen-card-lightbox.is-settled .screen-card-lightbox-content {
  transition: none;
}

.screen-card-lightbox-card {
  width: 100%;
  aspect-ratio: 251 / 500;
  height: auto;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.brand-image-lightbox .screen-card-lightbox-content {
  width: auto;
  max-width: min(88vw, 1280px);
  max-height: calc(100vh - 96px);
}

.brand-image-lightbox img {
  display: block;
  width: auto;
  max-width: min(88vw, 1280px);
  max-height: calc(100vh - 96px);
  height: auto;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.screen-card-lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .js body {
    opacity: 1;
    transition: none;
  }

  .js .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js.page-work .home-hero h1 > span,
  .js.page-work .home-hero p,
  .js.page-work .project-grid .project-thumb,
  .js.page-work .project-grid .project-content,
  .js.page-loaded.page-work .home-hero h1 > span,
  .js.page-loaded.page-work .home-hero p,
  .js.page-loaded.page-work .project-grid .project-thumb,
  .js.page-loaded.page-work .project-grid .project-content {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .play-gallery-stack .play-tile,
  .play-lightbox,
  .play-lightbox img,
  .brand,
  .footer-group a,
  .footer-group a::after,
  .nav-links a,
  .nav-links a::after,
  .mobile-menu,
  .home-hero .hero-name,
  .project-card,
  .project-thumb,
  .project-thumb::before,
  .project-thumb img,
  .project-thumb video,
  .project-title-text,
  .tag {
    transition: none;
  }

  .project-card,
  .brand,
  .footer-group a,
  .mobile-menu,
  .home-hero .hero-name,
  .project-thumb::before,
  .project-thumb img,
  .project-thumb video,
  .tag {
    transform: none;
  }

  .screen-card-lightbox,
  .screen-card-lightbox-content {
    transition: none;
  }

  [data-slider] [data-slider-slide].is-active,
  [data-slider] .desktop-slide.is-active {
    animation: none;
  }
}

@media (max-width: 769px) {
  .screen-card {
    aspect-ratio: 251 / 500;
    height: auto;
  }
}

@media (min-width: 770px) {
  .screen-card-slider {
    gap: 0;
  }

  .screen-card-window {
    overflow: visible;
  }

  .screen-card-grid {
    display: grid;
    gap: 24px;
    transform: none;
  }

  .screen-card-slide {
    flex: initial;
  }

  [data-screen-card-popup] {
    cursor: zoom-in;
  }

  [data-screen-card-popup]:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
  }

  .brand-mockup[data-brand-lightbox] {
    cursor: zoom-in;
  }

  .brand-mockup[data-brand-lightbox]:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
  }

  .screen-card-slider-controls {
    display: none;
  }
}

@media (min-width: 770px) and (max-width: 992px) {
  .screen-card {
    aspect-ratio: 251 / 500;
    height: auto;
  }
}

.screen-transactions {
  background:
    repeating-linear-gradient(180deg, #27272a 0 24px, #111111 24px 48px),
    #111111;
}

.screen-wallets {
  background:
    radial-gradient(circle at 70% 22%, #2dd4bf 0 12%, transparent 13%),
    linear-gradient(90deg, #18181b 0 22%, transparent 22%),
    #111111;
}

.desktop-product-panel {
  min-height: 260px;
  overflow: hidden;
  border-radius: 10px;
  background: #111111;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px;
}

.desktop-sidebar,
.desktop-row,
.desktop-grid span,
.desktop-table {
  border-radius: 8px;
}

.desktop-sidebar {
  background: #18181b;
}

.desktop-content {
  display: grid;
  gap: 14px;
}

.desktop-row {
  background: #2dd4bf;
}

.desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.desktop-grid span {
  min-height: 80px;
  background: #27272a;
}

.desktop-table {
  min-height: 86px;
  background: repeating-linear-gradient(180deg, #27272a 0 16px, #111111 16px 32px);
}

.desktop-product-slider {
  display: grid;
  gap: 26px;
  justify-items: center;
  width: 100%;
  border-radius: 6px;
}

.desktop-slider-window {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  touch-action: pan-y;
  user-select: none;
}

.desktop-slider-track {
  display: flex;
  gap: 0;
  transform: translateX(var(--slider-x, 0));
  transition: transform 260ms ease;
}

.desktop-slide {
  flex: 0 0 100%;
  margin: 0;
}

.desktop-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 596;
  object-fit: cover;
  -webkit-user-drag: none;
}

.wireframe-slider .desktop-slide img {
  aspect-ratio: 1475 / 1117;
  object-fit: contain;
}

.wireframe-slider,
.wireframe-slider .desktop-slider-window {
  border-radius: 0;
}

.desktop-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.desktop-slider-button,
.desktop-slider-dot {
  padding: 0;
  border: 0;
  cursor: pointer;
}

.desktop-slider-button {
  display: grid;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #99f6e4;
  color: #0f766e;
  font-size: 16px;
  line-height: 1;
  place-items: center;
}

.desktop-slider-button svg {
  display: block;
}

.desktop-slider-button[data-slider-prev] svg {
  transform: rotate(180deg);
}

.desktop-slider-dots {
  display: flex;
  gap: 14px;
  align-items: center;
}

.desktop-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #99f6e4;
}

.desktop-slider-dot.is-active {
  background: #0c5d56;
}

@media (min-width: 770px) {
  .screen-card-slider-controls {
    display: none;
  }
}

.feature-section {
  gap: 24px;
}

.feature-layout {
  display: grid;
  gap: 24px;
}

.phone-preview {
  justify-self: center;
  width: var(--phone-frame-width);
  min-height: 520px;
  background:
    linear-gradient(#2dd4bf 0 56px, transparent 56px),
    repeating-linear-gradient(180deg, #27272a 0 42px, #111111 42px 84px);
}

.phone-preview img,
.bill-annotation {
  display: block;
  width: 100%;
  height: auto;
}

.phone-preview img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.tall-phone {
  min-height: 680px;
}

.split-phone {
  min-height: 0;
  background: transparent;
  box-shadow: none;
}

.inter-phone {
  position: relative;
  min-height: 0;
  margin-bottom: 34px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.split-copy {
  display: grid;
  gap: 24px;
  align-content: start;
  width: 100%;
}

.inter-copy {
  display: grid;
  gap: 24px;
  align-content: start;
  width: 100%;
}

.bill-annotation {
  justify-self: center;
  max-width: 100%;
}

.inter-callout {
  display: none;
  justify-items: center;
  gap: 18px;
}

.inter-phone .inter-presenter-mobile {
  position: absolute;
  right: -53px;
  bottom: -34px;
  z-index: 1;
  display: block;
  width: min(62.4%, 247px);
  max-width: none;
  height: auto;
  pointer-events: none;
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 505px) {
  .inter-phone .inter-presenter-mobile {
    display: none;
  }
}

.inter-callout img {
  display: block;
  width: min(100%, 240px);
  height: auto;
}

.inter-speech-bubble {
  position: relative;
  display: grid;
  width: min(100%, 201px);
  aspect-ratio: 201 / 159;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  place-items: center;
}

.inter-speech-bubble svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.inter-speech-bubble span {
  position: relative;
  z-index: 1;
  width: 132px;
  line-height: 1.35;
}

.transfer-phone {
  min-height: 470px;
}

.split-phone img,
.inter-phone img {
  border-radius: var(--phone-frame-radius);
  height: auto;
  object-fit: contain;
}

.inter-phone .inter-presenter-mobile {
  border-radius: 0;
}

.transfer-phone.inter-phone {
  min-height: 0;
}

.telegram-phone {
  min-height: 520px;
}

.bill-placeholder {
  display: grid;
  min-height: 300px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #f4f4f5;
  color: #a1a1aa;
  font-size: 18px;
  place-items: center;
}

.feature-copy-illustrated {
  display: grid;
  gap: 24px;
  align-content: start;
}

.speech-note {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(39, 39, 42, 0.16);
}

.automation-flow {
  display: grid;
  gap: 24px;
}

.automation-card-grid {
  display: none;
}

.automation-mobile-graphic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 118px;
  padding: 16px;
  border: 3px dashed #14b8a6;
  border-radius: 10px;
  background: #ccfbf1;
}

.automation-mobile-graphic > img:first-child {
  width: 50px;
}

.automation-mobile-graphic > img:last-child {
  width: 40px;
}

.automation-arrow {
  display: block;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
}

.automation-button {
  position: relative;
  display: inline-grid;
  min-width: clamp(122px, 36vw, 151px);
  min-height: clamp(44px, 10vw, 51px);
  padding: 10px 14px;
  border-radius: 4px;
  background: #0d9488;
  color: var(--color-white);
  font-weight: 500;
  line-height: 24px;
  place-items: center;
  white-space: nowrap;
}

.automation-button img {
  position: absolute;
  right: -13px;
  bottom: -16px;
  width: 39px;
  max-width: none;
  height: auto;
}

.automation-mobile-copy {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.automation-mobile-copy li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 24px;
}

.automation-mobile-copy strong {
  color: #0d9488;
  font-weight: 500;
  white-space: nowrap;
}

.automation-demo {
  display: grid;
  gap: 28px;
  margin-top: 8px;
}

.automation-video-frame {
  position: relative;
  display: grid;
  justify-self: center;
  width: var(--phone-frame-width);
  aspect-ratio: 886 / 1920;
  margin: 0;
  overflow: hidden;
  border-radius: var(--phone-frame-radius);
  background: #d4d4d8;
}

.automation-video-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #d4d4d8;
  object-fit: cover;
}

.automation-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(24, 24, 27, 0.24);
  cursor: pointer;
  place-items: center;
  transform: translate(-50%, -50%);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.automation-video-play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #0d9488;
  content: "";
}

.automation-video-play:hover,
.automation-video-play:focus-visible {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.04);
}

.automation-video-frame.is-playing .automation-video-play {
  opacity: 0;
  pointer-events: none;
}

.automation-testimonial {
  display: none;
}

.automation-testimonial p {
  position: relative;
  display: grid;
  width: min(100%, 344px);
  min-height: 116px;
  margin: 0;
  padding: 20px 28px;
  border: 3px solid #14b8a6;
  border-radius: 32px;
  background: #ffffff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  place-items: center;
}

.automation-testimonial p::before,
.automation-testimonial p::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.automation-testimonial p::before {
  bottom: -27px;
  width: 33px;
  height: 27px;
  background: #14b8a6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.automation-testimonial p::after {
  bottom: -20px;
  width: 21px;
  height: 20px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.automation-testimonial img {
  display: block;
  width: min(100%, 192px);
  height: auto;
}

@media (max-width: 360px) {
  .automation-mobile-graphic {
    min-height: 96px;
    padding: 12px;
  }

  .automation-mobile-graphic > img:first-child {
    width: 42px;
  }

  .automation-mobile-graphic > img:last-child {
    width: 34px;
  }

  .automation-arrow {
    width: 22px;
    height: 22px;
  }

  .automation-button {
    min-width: 104px;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .automation-button img {
    right: -9px;
    bottom: -12px;
    width: 32px;
  }
}

.wireframe-section {
  display: none;
}

.prototype-frame {
  display: grid;
  justify-items: start;
  justify-self: center;
  width: var(--phone-frame-width);
  overflow: hidden;
  border: 1px solid rgba(39, 39, 42, 0.16);
  border-radius: var(--phone-frame-radius);
  background: #f4f4f5;
}

.prototype-showcase {
  display: grid;
  gap: 28px;
}

.prototype-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 844;
  height: auto;
  border: 0;
}

.prototype-callout {
  display: none;
  justify-items: center;
  gap: 64px;
}

.prototype-callout p {
  position: relative;
  display: grid;
  width: min(100%, 286px);
  min-height: 164px;
  padding: 30px 22px;
  border: 3px solid #14b8a6;
  border-radius: 32px;
  background: #ffffff;
  text-align: center;
  place-items: center;
}

.prototype-callout p::before,
.prototype-callout p::after {
  position: absolute;
  left: 50%;
  content: "";
  transform: translateX(-50%);
}

.prototype-callout p::before {
  bottom: -38px;
  width: 34px;
  height: 38px;
  background: #14b8a6;
  clip-path: polygon(20% 0, 80% 0, 50% 100%);
}

.prototype-callout p::after {
  bottom: -29px;
  width: 22px;
  height: 29px;
  background: #ffffff;
  clip-path: polygon(20% 0, 80% 0, 50% 100%);
}

.prototype-callout img {
  display: block;
  width: min(100%, 223px);
  height: auto;
}

.branding-grid,
.brand-mockups {
  display: grid;
  gap: 20px;
}

.brand-panel {
  display: grid;
  min-height: 184px;
  padding: 20px;
  border-radius: 0;
  background: #111111;
  color: var(--color-white);
  place-items: center;
}

.brand-logo-panel {
  min-height: 310px;
  padding: 20px;
}

.brand-logo-panel img {
  display: block;
  width: min(70%, 270px);
  height: auto;
}

.brand-symbol {
  display: block;
  width: 28px;
  aspect-ratio: 141.6 / 196.6;
  background: #2dd4bf;
  -webkit-mask: url("assets/spender/spender logo_final_S.svg") center / contain no-repeat;
  mask: url("assets/spender/spender logo_final_S.svg") center / contain no-repeat;
}

.brand-people-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 24, 27, 0.6), rgba(24, 24, 27, 0.6)),
    url("assets/spender/branding-people.webp") center / cover;
}

.brand-people-panel img {
  position: relative;
  z-index: 1;
  width: 92px;
  height: auto;
}

.brand-system-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  min-height: 419px;
  padding: 20px;
  background: #111111;
  color: #ffffff;
  place-items: initial;
}

.typography-panel {
  display: block;
}

.typography-panel strong {
  display: block;
  color: #2dd4bf;
  font-size: clamp(92px, 29vw, 116px);
  font-weight: 400;
  line-height: 0.86;
}

.brand-type-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  margin-top: 17px;
  gap: 16px;
}

.type-sample-lines,
.font-weight-panel {
  display: grid;
  align-content: start;
  min-width: 0;
}

.type-sample-lines span {
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.font-weight-panel {
  justify-items: end;
  text-align: right;
}

.font-weight-panel span:nth-child(1) {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
}

.font-weight-panel span:nth-child(2) {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.font-weight-panel span:nth-child(3) {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.font-weight-panel span:nth-child(4) {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.color-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: auto;
  gap: 29px;
}

.color-panel span {
  display: grid;
  min-width: 0;
  min-height: 99px;
  align-content: start;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.color-panel span:nth-child(1) {
  background: #2dd4bf;
}

.color-panel span:nth-child(2) {
  background: #ffffff;
  color: #27272a;
}

.color-panel span:nth-child(3) {
  background: #111111;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.brand-mockup {
  margin: 0;
}

.brand-mockup picture {
  display: block;
}

.brand-mockup-poster {
  display: none;
}

.brand-mockup-wide {
  display: none;
}

.brand-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-poster-pan {
  display: none;
}

.brand-poster-pan img {
  display: block;
}

@media (max-width: 767px) {
  .brand-poster-pan {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .brand-poster-pan img {
    width: 849px;
    max-width: none;
    height: auto;
    transform: translate3d(var(--poster-pan-x, 0px), 0, 0);
    will-change: transform;
  }
}

.takeaways-section h2 {
  color: #0d9488;
}

.takeaway-list {
  display: grid;
  gap: 18px;
}

.takeaway-list article {
  display: grid;
  gap: 7px;
  padding: 20px;
  background: #14b8a6;
  color: var(--color-white);
}

.takeaway-list h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.takeaway-list p {
  color: #f0fdfa;
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 264px;
  padding: 20px var(--page-pad);
  border-top: 1px solid var(--color-text);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.footer-group {
  display: grid;
  gap: 20px;
}

.footer-group h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.footer-group nav,
.footer-group address {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
}

.footer-contact {
  width: 210px;
  text-align: right;
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

@media (max-width: 440px) {
  .spender-hero,
  .case-study {
    width: min(100% - 40px, 400px);
  }

  .project-details {
    grid-template-columns: 1fr;
  }

  .brand-system-panel {
    gap: 20px;
  }

  .brand-type-details {
    gap: 12px;
  }

  .type-sample-lines span {
    font-size: 14px;
    line-height: 1.3;
  }

  .color-panel {
    gap: 12px;
  }

  .color-panel span {
    min-height: 86px;
    padding: 12px;
    font-size: 13px;
  }
}

@media (max-width: 374px) {
  .home-hero {
    width: min(100% - 40px, 400px);
  }

  .home-hero h1 {
    font-size: 38px;
  }

  .home-hero .hero-name {
    font-size: 50px;
  }

  .project-title {
    font-size: 22px;
    line-height: 30px;
  }

  .tag {
    font-size: 12px;
  }

  .about-hero,
  .about-details {
    width: min(100% - 40px, 400px);
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero h1 .handwriting {
    font-size: 43px;
  }

  .note {
    font-size: 9px;
    line-height: 13px;
  }

  .map-label {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .experience-row {
    grid-template-columns: auto minmax(32px, 1fr);
    row-gap: 2px;
  }

  .experience-role {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (min-width: 768px) {
  :root {
    --page-pad: 26px;
    --content-max: 716px;
    --phone-frame-width: 280px;
    --phone-frame-gap: 36px;
  }

  .site-nav {
    height: 70px;
    padding-block: 20px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links-desktop {
    display: flex;
    font-size: 14px;
    line-height: 20px;
  }

  .nav-links a {
    opacity: 0.4;
  }

  .nav-links a[aria-current="page"],
  .nav-links a:hover,
  .nav-links a:focus-visible {
    opacity: 1;
  }

  .mobile-menu {
    display: none;
  }

  .home-hero {
    width: 504px;
    margin-top: 51px;
    gap: 24px;
  }

  .home-hero h1 {
    min-height: 136px;
    font-size: 44px;
    line-height: 1.03;
  }

  .home-hero .hero-name {
    font-size: 58px;
  }

  .home-hero p {
    line-height: 24px;
  }

  .project-grid {
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 91px;
  }

  .project-title {
    min-height: 64px;
  }

  .about-main {
    padding-bottom: 91px;
  }

  .play-main {
    padding-bottom: 128px;
  }

  .play-hero {
    width: 504px;
    margin-top: 51px;
  }

  .play-gallery {
    margin-top: 29px;
  }

  .play-gallery-stack {
    width: min(75.6vw, 580.5605px);
    margin-inline: auto;
  }

  .play-tile-lead {
    aspect-ratio: 768 / 428;
  }

  .play-row-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    gap: 40px;
    width: 600px;
    margin-top: 60px;
  }

  .about-photo {
    justify-self: center;
    width: 380px;
  }

  .about-details {
    justify-items: start;
    width: 600px;
    margin-top: 64px;
  }

  .about-detail-section {
    width: 396px;
  }

  .spender-main {
    padding-bottom: 91px;
  }

  .spender-hero,
  .case-study {
    width: 600px;
  }

  .spender-hero {
    margin-top: 40px;
  }

  .spender-hero-media {
    width: 120%;
    max-width: none;
    margin-inline: -10%;
    aspect-ratio: 2000 / 1499;
    min-height: auto;
  }

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

  .case-study {
    gap: 54px;
  }

  .empathy-map {
    justify-self: center;
    width: 550px;
  }

  .user-personas-combined {
    display: block;
    width: 120%;
    max-width: none;
    margin-inline: -10%;
  }

  .user-personas-stack {
    display: none;
  }

  .journey-assets {
    width: 100%;
    margin-left: 0;
    margin-inline: 0;
    background: transparent;
    transform: none;
  }

  .journey-image-desktop {
    display: block;
    width: 120%;
    max-width: none;
    margin-inline: -10%;
  }

  .journey-image-mobile {
    display: none;
  }

  .flow-image-mobile {
    display: none;
  }

  .flow-image-tablet {
    display: block;
  }

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

  .persona-card {
    grid-template-columns: 1fr;
  }

  .journey-insights,
  .journey-insights {
    grid-template-columns: 1fr 2fr;
  }

  .screen-card-grid,
  .wireframe-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wireframe-section {
    display: grid;
  }

  .feature-layout {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    align-items: start;
    gap: var(--phone-frame-gap);
  }

  .prototype-frame {
    border: 0;
    background: transparent;
  }

  .prototype-showcase {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    align-items: end;
    gap: var(--phone-frame-gap);
    width: 100%;
  }

  .prototype-frame iframe {
    width: 100%;
    height: auto;
    border: 1px solid rgba(39, 39, 42, 0.16);
    border-radius: var(--phone-frame-radius);
  }

  .prototype-callout {
    display: grid;
    min-width: 0;
  }

  .prototype-callout p {
    width: min(100%, 240px);
    min-height: 150px;
    padding: 24px 18px;
  }

  .prototype-callout img {
    width: min(100%, 190px);
  }

  .automation-demo {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    align-items: end;
    gap: var(--phone-frame-gap);
  }

  .automation-testimonial {
    display: grid;
    justify-items: center;
    align-self: end;
    gap: 30px;
  }

  .automation-testimonial p {
    width: min(100%, 286px);
    min-height: 108px;
    padding: 18px 22px;
  }

  .automation-testimonial img {
    width: min(100%, 163px);
  }

  .split-transaction-layout {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    gap: var(--phone-frame-gap);
  }

  .inter-wallet-layout {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    align-items: stretch;
    gap: var(--phone-frame-gap);
  }

  .inter-phone {
    margin-bottom: 0;
  }

  .inter-phone .inter-presenter-mobile {
    display: none;
  }

  .inter-copy {
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    height: 100%;
  }

  .inter-callout {
    position: relative;
    display: block;
    align-self: end;
    width: 100%;
    min-height: 240px;
  }

  .inter-callout img {
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 196px;
    max-width: none;
  }

  .inter-speech-bubble {
    position: absolute;
    top: 92px;
    right: -8px;
    width: 154px;
    height: 122px;
  }

  .inter-speech-bubble span {
    width: 100px;
    font-size: 14px;
    line-height: 1.28;
  }

  .phone-preview {
    min-height: 520px;
  }

  .tall-phone {
    min-height: 640px;
  }

  .case-section.branding-section {
    gap: 20px;
  }

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

  .brand-logo-panel,
  .brand-people-panel {
    min-height: 240px;
  }

  .brand-logo-panel img {
    width: min(68%, 220px);
  }

  .brand-people-panel img {
    width: 118px;
  }

  .brand-system-panel {
    position: relative;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: start;
    min-height: 297px;
    padding: 36px 30px;
    column-gap: 40px;
    row-gap: 34px;
    overflow: hidden;
  }

  .brand-system-panel::after {
    content: "Aa";
    grid-column: 3;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    color: #ffffff;
    font-size: clamp(96px, 13vw, 132px);
    font-weight: 700;
    line-height: 0.72;
  }

  .typography-panel {
    grid-column: 1;
    grid-row: 1;
  }

  .typography-panel strong {
    font-size: clamp(96px, 14.4vw, 128px);
    line-height: 0.78;
  }

  .brand-type-details {
    grid-column: 2 / 4;
    grid-row: 1;
    align-self: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 0;
    gap: 18px;
  }

  .type-sample-lines span {
    font-size: 14px;
    line-height: 1.25;
  }

  .font-weight-panel span:nth-child(1) {
    font-size: 12px;
  }

  .font-weight-panel span:nth-child(2) {
    font-size: 14px;
  }

  .font-weight-panel span:nth-child(3) {
    font-size: 18px;
  }

  .font-weight-panel span:nth-child(4) {
    font-size: 20px;
  }

  .color-panel {
    grid-column: 1 / 3;
    grid-row: 2;
    align-self: end;
    width: min(100%, 336px);
    margin-top: 0;
    gap: 16px;
  }

  .color-panel span {
    min-height: 100px;
    font-size: 16px;
  }

  .brand-mockup-mobile-only {
    display: none;
  }

  .brand-mockup-wide {
    display: block;
  }

  .brand-mockup-poster {
    display: block;
  }

  .site-footer {
    padding-inline: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .brand-people-panel img {
    width: clamp(66px, 9vw, 72px);
  }

  .brand-system-panel {
    grid-template-columns: 190px minmax(0, 1fr) auto;
    column-gap: 34px;
  }

  .typography-panel strong {
    font-size: clamp(78px, 11vw, 92px);
    line-height: 0.82;
  }

  .type-sample-lines span {
    font-size: 12px;
    line-height: 1.28;
  }

  .font-weight-panel span:nth-child(1) {
    font-size: 11px;
  }

  .font-weight-panel span:nth-child(2) {
    font-size: 13px;
  }

  .font-weight-panel span:nth-child(3) {
    font-size: 16px;
  }

  .font-weight-panel span:nth-child(4) {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  :root {
    --page-pad: 46px;
    --content-max: 900px;
    --phone-frame-width: 383px;
    --phone-frame-gap: 52px;
  }

  .nav-links-desktop {
    font-size: 16px;
    line-height: 24px;
  }

  .home-hero {
    grid-template-columns: 438px 1fr;
    align-items: end;
    width: min(100% - 92px, 900px);
    margin-top: 52px;
  }

  .home-hero h1 {
    min-height: 136px;
    font-size: 36px;
    line-height: 45px;
  }

  .home-hero .hero-name {
    font-size: 48px;
  }

  .home-hero p {
    padding-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
    width: min(100% - 92px, 900px);
    margin-top: 52px;
    margin-bottom: 75px;
  }

  .project-card {
    gap: 16px;
  }

  .project-content {
    gap: 21px;
  }

  .project-title {
    min-height: 64px;
  }

  .about-hero {
    margin-top: 60px;
  }

  .about-details {
    margin-top: 64px;
  }

  .spender-hero,
  .case-study {
    width: 798px;
  }

  .spender-hero-media {
    min-height: auto;
  }

  .case-section h2 {
    font-size: 14px;
    line-height: 20px;
  }

  .visual-section h2 {
    font-size: 14px;
    line-height: 20px;
  }

  .brand-logo-panel,
  .brand-people-panel {
    min-height: 300px;
  }

  .brand-people-panel img {
    width: 92px;
  }

  .brand-system-panel {
    grid-template-columns: 300px minmax(0, 1fr) auto;
    column-gap: 44px;
  }

  .brand-type-details {
    gap: 14px;
  }

  .type-sample-lines span {
    font-size: 13px;
    line-height: 1.24;
  }

  .flow-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .flow-node {
    grid-column: 1 / -1;
    justify-self: center;
    width: 140px;
  }

  .automation-flow {
    padding: 20px;
    border-radius: 10px;
    background: #ccfbf1;
  }

  .automation-mobile-graphic,
  .automation-mobile-copy {
    display: none;
  }

  .automation-card-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .automation-card {
    display: grid;
    grid-template-rows: 92px auto 1fr;
    gap: 6px;
    align-items: start;
    width: 226px;
    height: 300px;
    padding: 12px;
    border: 2px dashed #5eead4;
    border-radius: 10px;
    background: #fafafa;
    text-align: center;
  }

  .automation-visual {
    position: relative;
    display: grid;
    justify-self: center;
    width: 180px;
    height: 92px;
    place-items: center;
  }

  .automation-gmail {
    width: 50px;
  }

  .automation-card .automation-telegram {
    width: 40px;
  }

  .automation-card .automation-button {
    min-width: 140px;
    min-height: 36px;
    padding: 8px 15px;
    font-size: 12px;
    line-height: 18px;
  }

  .automation-card .automation-button img {
    right: -15px;
    bottom: -19px;
    width: 39px;
  }

  .automation-card-grid > .automation-arrow {
    flex: 0 0 auto;
    width: 29px;
    height: 29px;
  }

  .automation-card h3 {
    margin: 0;
    color: #0d9488;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
  }

  .automation-card p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .automation-demo {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    align-items: end;
    justify-self: center;
    width: min(calc(100vw - 92px), 842px);
    gap: var(--phone-frame-gap);
    margin-top: 8px;
  }

  .automation-testimonial {
    align-self: end;
    gap: 40px;
  }

  .automation-testimonial p {
    width: min(100%, 407px);
    min-height: 137px;
    padding: 24px 33px;
  }

  .automation-testimonial img {
    width: min(100%, 227px);
  }

  .inter-callout {
    min-height: 384px;
  }

  .inter-callout img {
    bottom: 0;
    left: 0;
    width: 282px;
  }

  .inter-speech-bubble {
    top: 162px;
    right: 0;
    width: 201px;
    height: 159px;
  }

  .inter-speech-bubble span {
    width: 132px;
    font-size: 16px;
    line-height: 1.35;
  }

  .site-footer {
    padding-inline: 46px;
  }
}

@media (min-width: 1000px) {
  .project-details {
    min-height: 96px;
    align-items: start;
    font-size: 16px;
  }

  .project-details dt,
  .project-details dd {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 992px) {
  .play-main {
    padding-bottom: 150px;
  }

  .play-gallery {
    gap: 26.2136px;
    width: 900px;
    margin: 52px auto 0;
  }

  .play-gallery-stack,
  .play-row {
    gap: 26.2136px;
  }

  .play-gallery-stack {
    width: 100%;
  }

  .play-tile-lead {
    justify-self: center;
    width: calc(100% - 0.88%);
    aspect-ratio: 1021 / 569;
  }

  .play-row-squares,
  .play-row-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-row-wide {
    grid-template-columns: 362.804fr 510.906fr;
  }

  .play-row-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .play-row-mosaic .play-tile:nth-child(3) {
    order: 3;
  }

  .play-row-mosaic .play-tile:nth-child(4) {
    order: 4;
  }

  .play-row-mosaic .play-tile:nth-child(5) {
    order: 5;
  }

  .play-row-mosaic .play-tile:nth-child(6) {
    order: 6;
  }

  .play-row-photos {
    grid-template-columns: 437.767fr 423.786fr;
  }

  .prototype-frame {
    width: var(--phone-frame-width);
  }

  .prototype-showcase {
    grid-template-columns: var(--phone-frame-width) minmax(0, 286px);
    gap: var(--phone-frame-gap);
    width: min(100%, calc(var(--phone-frame-width) + var(--phone-frame-gap) + 286px));
  }

  .prototype-frame iframe {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1280px) {
  :root {
    --page-pad: 128px;
    --content-max: 1024px;
  }

  body {
    max-width: 1280px;
  }

  .flow-image-tablet {
    display: none;
  }

  .flow-image-desktop {
    display: block;
  }

  .home-hero {
    grid-template-columns: 515.7px 1fr;
    width: 1024px;
    margin-top: 52px;
  }

  .home-hero h1 {
    height: 169px;
    font-size: 44.735px;
    line-height: 54.676px;
  }

  .home-hero .hero-name {
    font-size: 59.647px;
  }

  .home-hero p {
    font-size: 18px;
    line-height: 28px;
  }

  .project-grid {
    width: 1024px;
    gap: 46px;
    margin-top: 52px;
    margin-bottom: 75px;
  }

  .about-main {
    padding-bottom: 91px;
  }

  .play-main {
    padding-bottom: 159px;
  }

  .play-gallery {
    gap: 30px;
    width: 1030px;
    margin-top: 51px;
  }

  .play-gallery-stack,
  .play-row {
    gap: 30px;
  }

  .play-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
    background: rgba(24, 23, 49, 0.81);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .play-tile-lead:hover .play-tile-overlay,
  .play-tile-lead:focus-within .play-tile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .play-overlay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 163px;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    transition:
      background-color 160ms ease,
      color 160ms ease;
  }

  .play-overlay-button-case {
    background: #E7DBFE;
    color: #4D1D7E;
  }

  .play-overlay-button-site {
    background: #F9E24A;
    color: #785D08;
  }

  .play-overlay-button:hover,
  .play-overlay-button:focus-visible {
    background: #FFFFFF;
  }

  .play-gallery-stack {
    isolation: isolate;
  }

  .play-gallery-stack .play-tile {
    position: relative;
    z-index: 0;
    cursor: pointer;
    transform: scale(1);
    transform-origin: center;
    transition: transform 100ms cubic-bezier(0.2, 0, 0.2, 1);
    will-change: transform;
  }

  .play-gallery-stack .play-tile:hover,
  .play-gallery-stack .play-tile:focus-visible {
    z-index: 5;
    transform: scale(1.06);
  }

  .play-gallery-stack .play-tile:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
  }

  .play-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 40px;
    background: rgba(24, 23, 49, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  .play-lightbox[hidden] {
    display: none;
  }

  .play-lightbox.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .play-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
  }

  .play-lightbox-close::before,
  .play-lightbox-close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #181731;
    content: "";
  }

  .play-lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .play-lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .play-lightbox-close:hover,
  .play-lightbox-close:focus-visible {
    background: #FFFFFF;
  }

  .play-lightbox img {
    display: block;
    width: auto;
    max-width: min(86vw, 1080px);
    max-height: 82vh;
    height: auto;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(24, 23, 49, 0.32);
    opacity: 0;
    transform: scale(0.98);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .play-lightbox.is-visible img {
    opacity: 1;
    transform: scale(1);
  }

  .play-row-wide {
    grid-template-columns: 415.209fr 584.703fr;
  }

  .play-row-photos {
    grid-template-columns: 501fr 485fr;
  }

  .about-hero {
    grid-template-columns: 400px 1fr;
    align-items: center;
    column-gap: 40px;
    min-height: 400px;
    width: 1024px;
    margin-top: 60px;
  }

  .about-intro {
    display: grid;
    grid-column: 2;
    gap: 40px;
  }

  .about-hero h1 {
    order: initial;
    text-align: left;
  }

  .about-photo {
    order: initial;
    grid-column: 1;
    grid-row: 1;
    width: 400px;
  }

  .about-copy {
    order: initial;
    font-size: 18px;
    line-height: 28px;
  }

  .about-details {
    grid-template-columns: repeat(2, 447px);
    align-items: start;
    gap: 46px;
    width: 1024px;
    margin-top: 88px;
  }

  .about-detail-section {
    width: 447px;
    font-size: 18px;
    line-height: 28px;
  }

  .about-detail-section h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .experience-section {
    grid-column: 1;
    grid-row: 1;
  }

  .education-section {
    grid-column: 2;
    grid-row: 1;
  }

  .skills-section {
    grid-column: 1;
    grid-row: 2 / span 2;
  }

  .tools-section {
    grid-column: 2;
    grid-row: 2;
  }

  .languages-section {
    grid-column: 2;
    grid-row: 3;
  }

  .experience-list {
    gap: 11.5px;
  }

  .experience-row {
    min-height: 28px;
    font-size: 18px;
    line-height: 28px;
  }

  .about-detail-section ul {
    padding-left: 27px;
  }

  .spender-main {
    padding-bottom: 91px;
  }

  .spender-hero,
  .case-study {
    width: 800px;
  }

  .spender-hero {
    margin-top: 40px;
  }

  .spender-hero h1 {
    min-height: 64px;
  }

  .project-details {
    min-height: 96px;
    align-items: start;
    font-size: 16px;
  }

  .project-details dt,
  .project-details dd {
    font-size: 16px;
    line-height: 24px;
  }

  .case-study {
    gap: 54px;
    margin-top: 64px;
  }

  .case-section {
    gap: 12px;
  }

  .visual-section {
    gap: 24px;
  }

  .screen-card-slider + p {
    margin-top: 12px;
  }

  .empathy-map {
    width: 550px;
  }

  .note {
    min-height: 56px;
    font-size: 14px;
    line-height: 20px;
  }

  .map-label {
    font-size: 20px;
    line-height: 30px;
  }

  .persona-card {
    min-height: 530px;
  }

  .journey-panel {
    padding: 16px;
  }

  .journey-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .journey-steps li {
    grid-template-columns: 1fr;
  }

  .feature-layout {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    gap: var(--phone-frame-gap);
  }

  .split-transaction-layout {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    gap: var(--phone-frame-gap);
  }

  .inter-wallet-layout {
    grid-template-columns: var(--phone-frame-width) minmax(0, 1fr);
    align-items: stretch;
    gap: var(--phone-frame-gap);
  }

  .split-copy {
    justify-self: start;
    max-width: none;
  }

  .inter-copy {
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    justify-self: start;
    max-width: none;
    height: 100%;
  }

  .inter-callout {
    position: relative;
    display: block;
    align-self: end;
    width: 100%;
    min-height: 384px;
  }

  .inter-callout img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 282px;
    max-width: none;
  }

  .inter-speech-bubble {
    position: absolute;
    top: 162px;
    right: 0;
    width: 201px;
    height: 159px;
  }

  .bill-placeholder {
    min-height: 439px;
  }

  .prototype-frame {
    border: 0;
    background: transparent;
  }

  .prototype-showcase {
    align-items: end;
    width: calc(var(--phone-frame-width) + var(--phone-frame-gap) + 286px);
  }

  .brand-mockups {
    gap: 20px;
  }

  .poster-panel {
    min-height: 600px;
  }

  .site-footer {
    padding-inline: 128px;
  }
}

@media (min-width: 1281px) {
  .branding-section .branding-grid,
  .branding-section .brand-mockups {
    width: 120%;
    margin-inline: -10%;
    gap: 24px;
  }

  .branding-section .brand-logo-panel,
  .branding-section .brand-people-panel {
    min-height: 360px;
  }

  .branding-section .brand-logo-panel img {
    width: min(68%, 264px);
  }

  .branding-section .brand-people-panel img {
    width: 110px;
  }

  .branding-section .brand-system-panel {
    grid-template-columns: 360px minmax(0, 1fr) auto;
    min-height: 367px;
    padding: 43px 36px;
    column-gap: 53px;
    row-gap: 41px;
  }

  .branding-section .typography-panel strong {
    font-size: 154px;
  }

  .branding-section .brand-type-details {
    gap: 17px;
  }

  .branding-section .type-sample-lines span {
    font-size: 16px;
    line-height: 1.24;
  }

  .branding-section .font-weight-panel span:nth-child(1) {
    font-size: 14px;
  }

  .branding-section .font-weight-panel span:nth-child(2) {
    font-size: 17px;
  }

  .branding-section .font-weight-panel span:nth-child(3) {
    font-size: 22px;
  }

  .branding-section .font-weight-panel span:nth-child(4) {
    font-size: 24px;
  }

  .branding-section .brand-system-panel::after {
    font-size: 158px;
  }

  .branding-section .color-panel {
    width: min(100%, 403px);
    gap: 19px;
  }

  .branding-section .color-panel span {
    min-height: 120px;
    font-size: 19px;
  }
}
