:root {
  --ink: #1b0d2d;
  --muted: rgba(0, 0, 0, 0.48);
  --paper: #fbfbfb;
  --line: #dedfe8;
  --accent: #ff325a;
  --shadow: 0 12px 24px rgba(27, 13, 45, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 7.25vw 0 3rem;
  color: #fff;
}

.site-header:not(.project-header) {
  left: 0;
  align-items: center;
  width: 100%;
  padding: 12px 32px 12px 24px;
  transform: none;
}

.brand {
  display: inline-flex;
  width: 80px;
  height: 70px;
  align-items: flex-start;
}

.brand img,
.logo-animation {
  width: 58px;
  height: auto;
}

.logo-animation {
  height: 54px;
  border: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-header:not(.project-header) .brand {
  width: 80px;
  height: 70px;
}

.site-header:not(.project-header) .logo-animation {
  width: 80px;
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-icon {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 160ms ease;
}

.nav-icon:hover {
  opacity: 1;
}

.nav-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.hero {
  position: sticky;
  top: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 440px 455px;
  column-gap: clamp(54px, 4vw, 86px);
  justify-content: center;
  align-items: start;
  height: clamp(700px, 86.7vh, 880px);
  padding: 172px 24px 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy {
  position: relative;
  z-index: 10;
  width: min(440px, 100%);
  margin-top: 32px;
}

.hero h1,
.project-detail h1,
.section-heading h2 {
  margin: 0;
  font-family: "Bree Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(44px, 4.6vw, 58px);
  line-height: 1.12;
}

.hero p {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero-illustration {
  position: relative;
  z-index: 1;
  overflow: visible;
  width: min(455px, 100%);
  height: 455px;
  justify-self: end;
  margin-top: -22px;
}

.hero-illustration iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Behind-blobs ─────────────────────────────────────────────────── */
.blob-cursor {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  opacity: 0.6;
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity 1.4s ease-in-out;
}

/* ── BLOB POSITION BACKUP (no cursor movement) ────────────────────────
.hero-blob.blob-1 { width: 118%; animation: blobFloat1 10s ease-in-out infinite; animation-delay: 0s; }
.hero-blob.blob-2 { width: 152%; animation: blobFloat2 13s ease-in-out infinite; animation-delay: -4s; }
.hero-blob.blob-3 { width: 214%; animation: blobFloat3 18s ease-in-out infinite; animation-delay: -9s; }
── END BACKUP ─────────────────────────────────────────────────────── */

/* Symmetric centering: each blob overflows the container equally on all sides.
   translate(-50%,-50%) in every keyframe keeps the center locked on the container midpoint. */
.hero-blob.blob-1 {
  width: 118%;
  animation: blobFloat1 10s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-blob.blob-2 {
  width: 152%;
  animation: blobFloat2 13s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-blob.blob-3 {
  width: 214%;
  animation: blobFloat3 18s ease-in-out infinite;
  animation-delay: -9s;
}

.hero-blob.blob-4 {
  width: 276%;
  animation: blobFloat4 22s ease-in-out infinite;
  animation-delay: -6s;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(-50%, -50%) translate(  0px,   0px) rotate( 0.0deg); }
  25%       { transform: translate(-50%, -50%) translate( -9px,  13px) rotate( 2.0deg); }
  55%       { transform: translate(-50%, -50%) translate( 12px,  -8px) rotate(-1.5deg); }
  80%       { transform: translate(-50%, -50%) translate( -5px, -10px) rotate( 1.0deg); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(-50%, -50%) translate(  0px,   0px) rotate( 0.0deg); }
  30%       { transform: translate(-50%, -50%) translate( 14px, -10px) rotate(-2.0deg); }
  60%       { transform: translate(-50%, -50%) translate(-10px,  11px) rotate( 1.5deg); }
  85%       { transform: translate(-50%, -50%) translate(  6px,  15px) rotate(-0.8deg); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, -50%) translate(  0px,   0px) rotate( 0.0deg); }
  20%       { transform: translate(-50%, -50%) translate(-14px,  10px) rotate( 1.5deg); }
  50%       { transform: translate(-50%, -50%) translate( 10px, -14px) rotate(-2.0deg); }
  75%       { transform: translate(-50%, -50%) translate( 16px,   8px) rotate( 1.0deg); }
}

@keyframes blobFloat4 {
  0%, 100% { transform: translate(-50%, -50%) translate(  0px,   0px) rotate( 0.0deg); }
  25%       { transform: translate(-50%, -50%) translate( 12px,  -8px) rotate(-1.0deg); }
  55%       { transform: translate(-50%, -50%) translate(-16px,  12px) rotate( 1.5deg); }
  80%       { transform: translate(-50%, -50%) translate(  8px,  16px) rotate(-0.5deg); }
}

/* ── Hero CTAs ────────────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 4px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.hero-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.hero-cta--filled {
  background: #E93B64;
  color: #fff;
  border: none;
}

.hero-cta--outline {
  background: transparent;
  color: #E93B64;
  border: 1.5px solid #E93B64;
}

/* ── CV modal ─────────────────────────────────────────────────────── */
.cv-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 4, 20, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cv-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cv-modal {
  position: relative;
  width: min(1200px, 96vw);
  height: 92vh;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: translateY(16px);
  transition: transform 220ms ease;
}

.cv-overlay.is-open .cv-modal {
  transform: translateY(0);
}

.cv-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cv-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}

.cv-close:hover { background: rgba(0,0,0,0.8); }

.contact-row {
  position: absolute;
  right: auto;
  bottom: 48px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, 92px);
  justify-content: space-between;
  width: min(calc(100% - 96px), 500px);
  gap: 0;
  transform: translateX(-50%);
}

.contact-button {
  display: grid;
  min-height: 54px;
  place-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: 2px;
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.contact-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.contact-button img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.work-section {
  position: relative;
  padding: 92px max(24px, 11.5vw) 24px;
  background: var(--paper);
}

.section-heading {
  position: relative;
  z-index: 2;
  margin: 0 auto 100px;
  text-align: center;
}

.section-heading h2 {
  color: #2a2144;
  font-size: 32px;
  line-height: 1.15;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.product-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 140px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 420px;
  gap: 35px;
  cursor: pointer;
  text-align: left;
  color: inherit;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.product-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-row--img-right { flex-direction: row; }
.product-row--img-left  { flex-direction: row-reverse; }

.product-row__text {
  flex: 0 0 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  padding: 48px 0 40px;
  transition: opacity 250ms ease;
}

.product-row__logo {
  width: auto;
  display: block;
}

.product-row__title {
  font-family: 'Bree Serif', serif;
  font-size: 24px;
  font-weight: 400;
  color: #39314B;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.product-row__desc {
  font-size: 15px;
  color: #39314B;
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
  text-align: left;
}

.product-row__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #EA3D67;
  color: #EA3D67;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  transition: background 160ms, color 160ms;
}

.product-row:hover .product-row__cta {
  background: #EA3D67;
  color: #fff;
}

.product-row__image {
  width: 635px;
  height: 420px;
  flex-shrink: 0;
  position: relative;
  will-change: transform;
}

.product-row__image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 300ms ease;
}

.product-row:hover .product-row__image-wrap { transform: scale(1.025); }

.product-row__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.08);
  pointer-events: none;
}

.product-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product-row__dot-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 635px;
  height: 420px;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
}

.product-row:hover .product-row__dot-svg {
  opacity: 1;
  transform: scale(1.025);
  transform-origin: 317.5px 210px;
}

.work-card {
  color: rgba(0, 0, 0, 0.48);
  text-align: center;
}

.graphic-card img,
.work-card:not(.product-row) img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:not(.product-row):not(.graphic-card):hover img {
  box-shadow: 0 18px 35px rgba(27, 13, 45, 0.14);
  transform: scale(1.035);
}

.graphic-card__img-wrap {
  transition: transform 180ms ease;
}

.graphic-card:hover .graphic-card__img-wrap {
  transform: scale(1.035);
}

.graphic-card:hover img {
  box-shadow: 0 18px 35px rgba(27, 13, 45, 0.14);
}

.work-card span {
  display: block;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.5;
}

.modal-open {
  overflow: hidden;
}

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

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 40px;
}

.project-modal.is-open {
  display: flex;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.project-modal-shell {
  position: relative;
  flex: 0 1 1440px;
  width: calc(100vw - 80px);
  max-width: 1440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 40px;
  border-radius: 14px;
  background: #fbfafc;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.project-modal-close {
  position: fixed;
  top: 60px;
  right: max(80px, calc((100vw - 1440px) / 2 + 40px));
  z-index: 82;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  cursor: pointer;
  font: 300 34px/1 Montserrat, Arial, sans-serif;
  opacity: 1;
  outline: none;
  transition: opacity 220ms ease;
}

.project-modal.is-close-idle .project-modal-close {
  pointer-events: none;
  opacity: 0;
}

.project-modal.is-close-idle .project-modal-close:focus-visible {
  pointer-events: auto;
  opacity: 1;
}

.project-modal-content {
  width: min(800px, 100%);
  margin: 0 auto;
  clear: none;
}

.project-modal.project-modal-wide .project-modal-content {
  width: 100%;
}

.project-modal.project-modal-wide .project-template {
  width: calc(100% + 80px);
  margin: -40px -40px 0;
}

.project-modal .project-title {
  margin: 0 0 40px;
}

.project-modal .project-original .projpage {
  width: 100%;
}

.project-modal .project-original iframe {
  min-height: 450px;
}

.project-modal-content img,
.project-detail img {
  cursor: zoom-in;
}

.project-template-hero-image img,
.project-template-competitor-logo-card img,
.project-template-image-card img {
  cursor: default;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: auto;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox.is-zoomed {
  display: block;
  text-align: center;
}

.image-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 3, 14, 0.88);
}

.image-lightbox-image {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 80px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  cursor: zoom-in;
}

.image-lightbox.is-zoomed .image-lightbox-image {
  display: inline-block;
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

.image-lightbox-close {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: 300 34px/1 Montserrat, Arial, sans-serif;
}

/* BLOB REPLICA — delete this block + #blob-replica HTML + JS section to revert */
#blob-replica {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 440px 455px;
  column-gap: clamp(54px, 4vw, 86px);
  justify-content: center;
  align-items: start;
  padding: 172px 24px 32px;
  z-index: 1;
  pointer-events: none;
  clip-path: inset(100% 0 0 0);
  overflow: visible;
}

#blob-replica .hero-illustration {
  grid-column: 2;
}
/* END BLOB REPLICA */

.work-section:not(.graphic-section) {
  padding-bottom: 200px;
}

.graphic-section {
  background: #E7EBF5;
  padding-top: 72px;
  padding-bottom: 92px;
}

.section-divider {
  max-width: 690px;
  padding-top: 0;
  border-top: none;
  margin-bottom: 40px;
}

.graphic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 984px;
  margin: 0 auto;
}

.graphic-column {
  display: grid;
  align-content: start;
  gap: 30px;
}

.graphic-card {
  width: 100%;
}

.graphic-card__img-wrap {
  position: relative;
  display: block;
  line-height: 0;
}

.graphic-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 3px;
  pointer-events: none;
}

.graphic-card__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #A57DD8;
  filter: drop-shadow(0 0 4px #A57DD8) drop-shadow(0 0 2px #A57DD8);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: graphic-dot-orbit 12s linear infinite;
  transition: opacity 300ms ease;
}

@keyframes graphic-dot-orbit {
  0%   { top: 0;    left: 0;    }
  25%  { top: 0;    left: 100%; }
  50%  { top: 100%; left: 100%; }
  75%  { top: 100%; left: 0;    }
  100% { top: 0;    left: 0;    }
}

.graphic-card:hover .graphic-card__dot { opacity: 0.4; }

.graphic-card img {
  object-fit: cover;
}

.project-header {
  position: relative;
  height: 73px;
  padding: 3px 0 0 100px;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--ink);
}

.project-header .brand {
  width: 80px;
  height: 70px;
}

.project-header .brand img,
.project-header .logo-animation {
  width: 80px;
  height: 70px;
}

.project-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 75px 0 96px;
}

.project-detail.is-wide-project {
  max-width: none;
  padding: 0 0 96px;
}

.project-detail .project-title {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 40px;
}

.title-accent {
  color: #dfb51f;
}

.project-main-image,
.project-gallery img {
  width: 100%;
}

.project-copy {
  margin-top: 44px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 19px;
  line-height: 1.22;
}

.project-copy p {
  margin: 0;
}

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

.project-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 76px;
  padding-top: 80px;
  border-top: 1px solid #d8d8d8;
}

.project-template {
  --template-line: #bdbdbd;
  --template-placeholder: #d6e0f0;
  --template-placeholder-line: #b9c5d7;
  width: 100%;
  background: #fbfafc;
  color: var(--project-ink-color);
  font-family: "Bree Serif", Georgia, serif;
}

.project-template-hero {
  position: relative;
  height: 732px;
  overflow: visible;
  background: transparent;
}

.project-template-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 732px;
  pointer-events: none;
}

.project-template-hero-copy {
  position: relative;
  z-index: 3;
  width: 70%;
  padding: 180px 0 0 140px;
  box-sizing: border-box;
}

.project-template-company {
  max-width: 750px;
  margin: 0 0 12px;
  color: var(--project-main-color);
  font-size: 62px;
  line-height: 0.95;
}

.project-template-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0;
  color: var(--project-ink-color);
  font-size: 62px;
  font-weight: 400;
  line-height: 0.95;
}

.project-template-hero-media {
  position: absolute;
  top: 0;
  right: 60px;
  z-index: 2;
  width: 712px;
  height: 806px;
}

.project-template-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--template-placeholder-line);
  background:
    linear-gradient(to top right, transparent calc(50% - 0.5px), var(--template-placeholder-line) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(to bottom right, transparent calc(50% - 0.5px), var(--template-placeholder-line) 50%, transparent calc(50% + 0.5px)),
    var(--template-placeholder);
  color: var(--project-ink-color);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
}

.project-template-placeholder-square {
  aspect-ratio: 1 / 1;
}

.project-template-placeholder-hero {
  width: 100%;
  height: 100%;
}

.project-template-sections {
  padding: 80px 140px 150px;
}

.project-template-section {
  margin-top: 0;
}

.project-template-section-reveal {
  opacity: 0;
  transition: opacity 300ms ease;
}

.project-template-section-reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .project-template-section-reveal {
    opacity: 1;
    transition: none;
  }

}

.project-template-section + .project-template-section {
  margin-top: 150px;
}

.project-template-section h2 {
  margin: 0;
  color: var(--project-ink-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.project-template-section-rule {
  position: relative;
  height: 1px;
  margin: 26px 0 56px;
  background: var(--template-line);
}

.project-template-section-rule span {
  display: block;
  width: 96px;
  height: 7px;
  background: var(--project-main-color);
}

.project-template-placeholder-wide {
  aspect-ratio: 3.35 / 1;
}

.project-template-placeholder-small {
  aspect-ratio: 1.6 / 1;
}

.project-template-image-block {
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.project-template-image-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.project-template-hero-image {
  max-width: 712px;
  width: 712px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.project-template-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-template-text-block {
  max-width: 580px;
  color: var(--project-ink-color);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.28;
}

.project-template-text-solution {
  max-width: 900px;
  margin: 40px auto 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--project-ink-color);
  font-family: "Montserrat", Arial, sans-serif;
}

.project-template-text-solution:first-child {
  margin-top: 0;
}

.project-template-text-solution ~ .project-template-text-solution {
  margin-top: 60px;
  margin-bottom: 20px;
}

.project-template-text-solution strong {
  font-weight: 600;
}


.project-template-text-previous-state-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--project-ink-color);
  font-family: "Montserrat", Arial, sans-serif;
}

.project-template-text-previous-state-intro strong {
  font-weight: 600;
}

.li-persona-card {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  border: 3px solid #C8DCEF;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.20);
  cursor: default;
}

.li-persona-bg {
  position: absolute;
  inset: -5%;

  background-size: cover;
  background-position: center;
  z-index: 0;
}

.li-persona-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  padding: 48px 56px;
}

.li-persona-text {
  flex: 1;
  min-width: 220px;
}

.li-persona-card .li-persona-name {
  font-family: "Bree Serif", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #53A9FF !important;
  line-height: 1.1;
  margin: 0 0 8px;
}

.li-persona-role {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #F9ECFE;
  margin: 0 0 20px;
}

.li-persona-bio {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #F9ECFE;
  line-height: 1.65;
  margin: 0 0 14px;
}

.li-persona-bio:last-child {
  margin-bottom: 0;
}

.li-persona-bio strong {
  font-weight: 600;
}

.li-persona-photo {
  flex: 0 0 250px;
}

.li-persona-photo img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

@media (max-width: 760px) {
  .li-persona-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px 40px;
    gap: 24px;
  }

  .li-persona-photo {
    order: -1;
    flex: 0 0 auto;
    align-self: flex-start;
  }
}

.li-user-image {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 3px solid #C8DCEF;
  border-radius: 23px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.20);
  cursor: default;
  pointer-events: none;
}

.solution-image {
  width: min(900px, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
}

.solution-image img {
  max-width: 100%;
}

.project-template-text-hypothesis {
  width: min(660px, 100%);
  max-width: 660px;
  margin: 70px auto 0;
  padding: 40px;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
  font-size: 16px;
}

.project-template-card {
  width: min(660px, 100%);
  margin: 40px auto 0;
  padding: 40px;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
  color: var(--project-ink-color);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}

.project-template-card-small {
  width: min(660px, 100%);
}

.project-template-card-large {
  width: min(900px, 100%);
}

.project-template-card-full {
  width: 100%;
}

.project-template-card p {
  margin: 0;
}

.project-template-card p + p,
.project-template-card-lead + p,
.project-template-card-points {
  margin-top: 1.35em;
}

.project-template-card-lead {
  font-weight: 600;
}

.project-template-card-points {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.project-template-card-points li {
  position: relative;
  padding-left: 22px;
}

.project-template-card-points li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--project-main-color);
  content: "";
}

.project-template-text-block p {
  margin: 0;
}

.project-template-text-block p + p {
  margin-top: 0;
}

.project-template-text-lead {
  font-weight: 600;
}

.project-template-text-lead + p {
  margin-top: 0;
}

.project-template-metric-group-outer {
  display: flex;
  justify-content: center;
  margin-top: 92px;
}

.project-template-metric-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: fit-content;
  max-width: 100%;
}

.project-template-metric-entry {
  display: flex;
  align-items: center;
  color: var(--project-ink-color);
  white-space: nowrap;
}

.project-template-metric-entry:nth-child(2) { margin-left: 150px; }
.project-template-metric-entry:nth-child(3) { margin-left: 300px; }
.project-template-metric-entry:nth-child(4) { margin-left: 450px; }
.project-template-metric-entry:nth-child(5) { margin-left: 600px; }

.project-template-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 150px;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 92px auto 0;
}

.project-template-metrics-outcome {
  flex-wrap: nowrap;
  width: min(660px, 100%);
  justify-content: space-between;
  gap: 20px;
  margin: 92px auto 60px;
}

.project-template-metrics-outcome .project-template-goal-number {
  margin-right: -48px;
}

.project-template-metric {
  display: flex;
  align-items: center;
  color: var(--project-ink-color);
  white-space: nowrap;
}

.project-template-goal-number,
.project-template-metric-value {
  margin-right: -18px;
  color: var(--project-main-color);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.15;
}

.project-template-goal-text,
.project-template-metric-label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.3;
}

.project-template-validation-summary {
  margin-top: 92px;
}

.project-template-validation-summary-metrics {
  position: relative;
  width: min(660px, 100%);
  min-height: 72px;
  margin: 0 auto;
}

.project-template-validation-summary-metric {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  color: var(--project-ink-color);
  white-space: nowrap;
}

.project-template-validation-summary-metric:nth-child(1) {
  left: 0;
}

.project-template-validation-summary-metric:nth-child(2) {
  right: 0;
}

.project-template-validation-summary-metric:nth-child(1) .project-template-goal-text {
  margin-left: -58px;
}

.project-template-validation-summary-metric:nth-child(2) .project-template-goal-text {
  margin-left: -13px;
}

.project-template-validation-summary-card {
  width: min(660px, 100%);
  margin: 60px auto 0;
  padding: 40px;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", Arial, sans-serif;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.project-template-validation-summary-card .project-template-validation-points {
  gap: 40px;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
}

.project-template-validation {
  margin-top: 70px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--project-ink-color);
}

.project-template-validation-intro {
  max-width: 900px;
  margin: 0 auto 42px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}

.project-template-validation-intro strong {
  font-weight: 600;
}

.project-template-validation-cards {
  display: grid;
  gap: 32px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.project-template-validation-card {
  overflow: hidden;
  padding: 0 40px 40px;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.project-template-validation-card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 102px;
  margin: 0 -40px;
  padding: 0 40px;
  border-bottom: 1px solid #ededed;
  background: #fbfafc;
}

.project-template-validation-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: contain;
}

.project-template-validation-card h3,
.project-template-validation-card p {
  margin: 0;
}

.project-template-validation-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.project-template-validation-card p {
  color: rgba(57, 49, 75, 0.6);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.project-template-validation-points {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

.project-template-validation-points {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.project-template-validation-points > li {
  position: relative;
  padding-left: 22px;
}

.project-template-validation-points > li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--project-main-color);
  content: "";
}

.project-template-validation-points ul {
  margin: 4px 0 0;
  padding-left: 0;
  list-style: none;
}

.project-template-validation-points ul li {
  position: relative;
  margin: 0;
  padding-left: 16px;
}

.project-template-validation-points ul li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--project-ink-color);
  content: "";
}

.project-template-competitors {
  margin-top: 70px;
}

.project-template-competitor-logo-card {
  position: relative;
  width: min(660px, 100%);
  margin: 26px auto 0;
  padding: 40px;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.project-template-competitor-logo-card figcaption,
.project-template-competitor-shot figcaption {
  margin: 0 0 18px;
  color: rgba(57, 49, 75, 0.44);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-align: center;
}

.project-template-competitor-logo-card figcaption {
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  margin: 0;
}

.project-template-competitor-logo-card img {
  display: block;
  width: min(420px, 100%);
  height: auto;
  margin: 0 auto;
}

.project-template-competitor-screenshots {
  position: relative;
  min-height: 2666px;
  margin-top: 100px;
}

.project-template-competitor-shot {
  position: absolute;
  overflow: visible;
}

.project-template-competitor-shot figcaption {
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
}

.project-template-competitor-shot img {
  border-radius: 20px;
}

.project-template-competitor-funnelio {
  top: 0;
  left: 70px;
  width: 520px;
}

.project-template-competitor-adobe {
  top: 937px;
  left: 520px;
  width: 620px;
}

.project-template-competitor-salesforce {
  top: 1386px;
  left: 120px;
  width: 640px;
}

.project-template-competitor-google {
  top: 1886px;
  left: 560px;
  width: 600px;
}

.project-template-image-stack {
  display: grid;
  gap: 100px;
  margin-top: 70px;
}

.project-template-image-stack-solution {
  margin-top: 0;
}

@media (max-width: 1280px) {
  .project-template-hero-overlap-big .project-template-hero-media {
    margin-top: -120px;
  }
}

.project-template-image-stack-explorations {
  width: min(840px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.project-template-image-stack-final-designs {
  width: min(840px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.project-template-image-stack-cwt-users,
.project-template-image-stack-cwt-previous-state,
.project-template-image-stack-cwt-explorations,
.project-template-image-stack-cwt-final-designs {
  width: min(900px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.project-template-image-stack-cwt-users {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.project-template-image-stack-cwt-users .project-template-image-block {
  width: 850px;
  max-width: 100%;
}

.project-template-image-stack-cwt-users .project-template-image-block:not(:first-child) {
  margin-top: -20px;
}

.project-template-image-stack-cwt-users .project-template-image-block:nth-child(odd) {
  align-self: flex-start;
}

.project-template-image-stack-cwt-users .project-template-image-block:nth-child(even) {
  align-self: flex-end;
}

.project-template-image-stack-li-previous-state {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.project-template-image-stack-li-previous-state .project-template-image-block {
  width: 860px;
  max-width: 100%;
}

.project-template-image-stack-li-previous-state .project-template-image-block:not(:first-child) {
  margin-top: -30px;
}

.project-template-image-stack-li-previous-state .project-template-image-block:nth-child(odd) {
  align-self: flex-start;
}

.project-template-image-stack-li-previous-state .project-template-image-block:nth-child(even) {
  align-self: flex-end;
}

.project-template-image-card-li-competitor-logos .project-template-image-card-img {
  max-width: 420px;
}

.li-vision-steps {
  display: flex;
  flex-direction: column;
}

.li-vision-step-group {
  position: relative;
}

.li-vision-step-connector {
  height: 100px;
  opacity: 1;
}

.li-vision-step-connector-line {
  border-left: 2px dashed rgba(10, 102, 194, 0.15);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms ease-in;
}

@media (min-width: 1024px) {
  .li-vision-step-connector-line {
    position: absolute;
    left: 30px;
    top: 65px;
    height: calc(100% - 60px);
  }
}

@media (max-width: 1023px) {
  .li-vision-step-connector-line {
    display: none;
  }
}

.li-vision-step-connector.is-visible .li-vision-step-connector-line {
  transform: scaleY(1);
}

.li-vision-step-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  max-width: 900px;
}

.li-vision-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(10, 102, 194, 0.3);
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 5px;
  pointer-events: none;
}

.li-vision-step-title {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A66C2;
  line-height: 1.3;
}

.li-vision-step-body {
  margin: 4px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--project-ink-color);
  line-height: 1.4;
}

.li-vision-step-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #ededed;
}

@media (min-width: 1024px) {
  .li-vision-step-image {
    margin-left: 80px;
    width: calc(100% - 80px);
  }
}

@media (max-width: 1023px) {
  .li-vision-step-connector {
    height: 60px;
  }

  .li-vision-step-header {
    flex-direction: column;
  }

  .li-vision-step-icon {
    margin-top: 0;
  }
}

.li-ia-wrap {
  margin-top: 70px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  container-type: inline-size;
}

.li-ia-map {
  background: #FBFAFC;
  outline: 1px solid rgba(10, 102, 194, 0.6);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.li-ia-cell {
  outline: 1px solid rgba(10, 102, 194, 0.6);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.li-ia-title {
  font-family: "Bree Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #0A66C2;
  line-height: 1.2;
}

.li-ia-subtitle {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.26px;
  color: rgba(10, 102, 194, 0.6);
  opacity: 0;
  transition: opacity 200ms ease;
}

.li-ia-cell:hover .li-ia-subtitle {
  opacity: 1;
}

.li-ia-cell:hover {
  box-shadow: 0 0 40px rgba(74, 165, 255, 0.25);
}

.li-ia-cell-muted {
  opacity: 0.6;
  pointer-events: none;
}

@container (max-width: 840px) {
  .li-ia-title {
    font-size: 18px;
  }
}

.li-ia-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.li-ia-cell-l {
  grid-column: 1;
}

.li-ia-cell-r {
  grid-column: 2;
  grid-row: 1 / span 5;
}

@media (max-width: 900px) {
  .li-ia-bottom {
    display: flex;
    flex-direction: column;
  }

  .li-ia-cell-l,
  .li-ia-cell-r {
    width: 100%;
  }

  .li-ia-title {
    font-size: 24px;
  }
}

.li-screen-flow-container {
  margin-top: 70px;
  pointer-events: none;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.li-screen-flow-screen-label {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--project-ink-color);
}

.li-screen-flow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.li-screen-flow-screen-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 456px;
  container-type: inline-size;
}

.li-screen-flow-descs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 8px;
}

.li-screen-flow-desc {
  flex: 1;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  color: var(--project-ink-color);
  line-height: 1.5;
}

.li-screen-flow-desc-spacer {
  flex-shrink: 0;
  width: 37px;
}

.li-screen-flow-desc-mobile {
  display: none;
}

.li-screen-flow-screen {
  position: relative;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(74, 165, 255, 0.25);
  outline: 1px solid rgba(10, 102, 194, 0.6);
  overflow: hidden;
}

.li-screen-flow-svg {
  display: block;
  width: 100%;
  height: auto;
}

.li-screen-flow-text {
  position: absolute;
  top: 7.2%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px 30px;
  text-align: center;
}

.li-screen-flow-level {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0A66C2;
  opacity: 0.6;
}

.li-screen-flow-name {
  font-family: "Bree Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #0A66C2;
  line-height: 1.15;
}

.li-screen-flow-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.li-screen-flow-arrow {
  width: 37px;
  height: auto;
}

@media (max-width: 900px) {
  .li-screen-flow {
    flex-direction: column;
    gap: 0;
  }

  .li-screen-flow-screen-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .li-screen-flow-arrow-wrap {
    width: 100%;
    justify-content: center;
    height: 57px;
  }

  .li-screen-flow-arrow {
    transform: rotate(90deg);
  }

  .li-screen-flow-descs {
    display: none;
  }

  .li-screen-flow-desc-mobile {
    display: block;
    margin-top: 8px;
  }

  .li-screen-flow-name {
    font-size: 26px;
  }

  .li-screen-flow-level {
    font-size: 16px;
  }
}

@container (max-width: 249px) {
  .li-screen-flow-name {
    font-size: 16px;
  }

  .li-screen-flow-level {
    font-size: 11px;
  }
}

.project-template-image-stack-li-competitors {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.project-template-image-stack-li-competitors .project-template-image-block,
.project-template-image-stack-li-competitors .project-template-image-stack-titled-item {
  width: 860px;
  max-width: 100%;
}

.project-template-image-stack-li-competitors .project-template-image-block:nth-child(odd),
.project-template-image-stack-li-competitors .project-template-image-stack-titled-item:nth-child(odd) {
  align-self: flex-start;
}

.project-template-image-stack-li-competitors .project-template-image-block:nth-child(even),
.project-template-image-stack-li-competitors .project-template-image-stack-titled-item:nth-child(even) {
  align-self: flex-end;
}

.project-template-image-stack-cwt-final-designs {
  width: min(840px, 100%);
}

.project-template-image-stack-cwt-previous-state {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  align-items: start;
}

.project-template-image-stack-cwt-explorations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px 40px;
  align-items: start;
}

.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(1),
.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(2),
.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(3),
.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(4),
.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(10) {
  max-width: 420px;
  justify-self: center;
}

.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(8),
.project-template-image-stack-cwt-explorations .project-template-image-block:nth-child(9) {
  grid-column: 1 / -1;
}

.project-template-image-stack-cwt-competitors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  margin-top: 40px;
}

.project-template-image-stack-cwt-competitors .project-template-image-block:nth-child(1) {
  background: #ffffff;
}

.project-template-image-stack-cwt-competitors .project-template-image-block:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.project-template-image-stack-cwt-explorations-stagger {
  display: flex;
  flex-direction: row;
  gap: 170px;
  justify-content: center;
  padding: 0 max(0px, calc((100% - 920px) / 2));
  margin-top: 70px;
}

.cwt-stagger-col {
  display: flex;
  flex-direction: column;
  gap: 170px;
  flex-shrink: 0;
}

.cwt-stagger-col .project-template-image-block {
  width: 375px;
  max-width: 100%;
}

.cwt-stagger-col .project-template-image-block img {
  width: 100%;
  height: auto;
}

.cwt-stagger-col-right {
  margin-top: 250px;
}

.project-template-section-subheader {
  max-width: 900px;
  margin: 0 auto 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--project-ink-color);
}

.project-template-section-subheader strong {
  font-weight: 600;
}

.project-template-image-card {
  margin-top: 70px;
}

.project-template-image-card-large {
  width: min(900px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.project-template-image-card-small {
  width: min(660px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.project-template-image-card-title {
  margin: 0 0 12px;
  color: rgba(57, 49, 75, 0.44);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.project-template-image-card-body {
  padding: 40px;
  overflow: hidden;
  border: 1px solid #ededed;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.project-template-image-card-img {
  display: block;
  width: 100%;
  max-width: 590px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

.project-template-image-card-explorations .project-template-image-card-img {
  max-width: 990px;
}

.project-template-point-label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-template-point-link {
  display: block;
  color: var(--project-ink-color);
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 6px;
}

.project-template-point-body {
  display: block;
  font-weight: 300;
}

.project-template-image-no-shadow {
  box-shadow: none;
}

.project-template-image-no-radius {
  border-radius: 0;
}

.project-template-split-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 36px;
  align-items: start;
}

.project-original {
  color: rgba(0, 0, 0, 0.82);
  font-size: 19px;
  line-height: 1.22;
}

.project-original .projpage {
  width: 800px;
  max-width: 100%;
}

.project-original .projtitle {
  margin: 0 0 40px;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
}

.project-original .oribi {
  color: #dfb51f;
}

.project-original .cwt {
  color: #ee7651;
}

.project-original .projectname {
  color: var(--ink);
}

.project-original img,
.project-original video,
.project-original iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
}

.project-original img,
.project-original video {
  height: auto;
}

.project-original iframe {
  min-height: 450px;
  border: 0;
}

.project-original p {
  margin: 44px 0 0;
}

.project-original h3 {
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.88);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 700;
}

.project-original hr {
  width: 70%;
  margin: 78px auto 96px;
  border: 0;
  border-top: 1px solid #d8d8d8;
}

.project-original .project-spacer {
  height: 78px;
}

.project-original .projsolution {
  margin-top: 44px;
}

.project-original [grid-row] {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
}

.project-original [grid-col="2"] {
  grid-column: span 2;
}

.project-original [grid-col="8"] {
  grid-column: span 8;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(300px, 390px) minmax(360px, 480px);
    column-gap: clamp(44px, 6vw, 70px);
    padding-inline: 24px;
  }

  .hero-illustration {
    width: min(480px, 100%);
    height: 480px;
  }
}

@media (min-width: 1024px) and (max-width: 1389px) {
  .project-template-hero-copy {
    width: 70%;
    max-width: 70%;
  }
}

@media (max-width: 1280px) {
  .project-template-hero {
    height: auto;
    padding-bottom: 0;
  }

  .project-template-sections {
    padding-top: 0;
  }

  .project-template-hero-copy {
    width: 100%;
    padding: 80px 60px 0;
  }

  .project-template-hero-media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 712px;
    height: auto;
    margin: -40px auto 0;
  }

  .project-template-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
  }

  .project-template-hero-background {
    inset: 0 auto auto 0;
    width: max(100%, 920px);
    min-width: 920px;
    height: auto;
    aspect-ratio: 1440 / 732;
  }
}

@media (max-width: 1023px) {
  .site-header {
    padding: 24px 24px 0;
  }

  .site-header:not(.project-header) {
    left: 0;
    width: 100%;
    transform: none;
  }

  .project-header {
    height: 73px;
    padding: 12px 0 0 24px;
  }

  .brand {
    width: 58px;
  }

  .brand img,
  .logo-animation {
    width: 48px;
    height: 45px;
  }

  .site-header:not(.project-header) .brand {
    width: 58px;
    height: 52px;
  }

  .site-header:not(.project-header) .logo-animation {
    width: 48px;
    height: 45px;
  }

  .project-header .brand img,
  .project-header .logo-animation {
    width: 58px;
    height: 52px;
  }

  .hero {
    display: block;
    height: auto;
    min-height: auto;
    padding: 130px 24px 34px;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-illustration {
    height: 320px;
    margin: 28px auto 0;
  }

  .hero-blob.blob-1 { width: 118%; }
  .hero-blob.blob-2 { width: 152%; }
  .hero-blob.blob-3 { width: 214%; }

  .contact-row {
    position: static;
    grid-template-columns: repeat(4, minmax(62px, 1fr));
    width: auto;
    gap: 10px;
    margin-top: 70px;
    transform: none;
  }

  .contact-button {
    min-height: 62px;
    padding: 8px 4px;
    font-size: 9px;
    letter-spacing: 0;
  }

  .product-grid {
    max-width: 520px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .graphic-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .work-section {
    padding-inline: 24px;
  }

  .project-modal {
    padding: 16px;
  }

  .project-modal-shell {
    width: 100%;
    max-width: 1440px;
    max-height: calc(100vh - 32px);
    padding: 32px 16px 40px;
    border-radius: 10px;
  }

  .project-modal-close {
    top: 40px;
    right: 32px;
    width: 36px;
    height: 36px;
    margin: 0;
    font-size: 28px;
  }

  .project-modal-content {
    width: min(100%, 800px);
  }

  .project-modal.project-modal-wide .project-modal-content {
    width: 100%;
  }

  .project-modal.project-modal-wide .project-template {
    width: calc(100% + 32px);
    margin: -32px -16px 0;
  }

  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox-image {
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 36px);
  }

  .image-lightbox-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

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

  .project-template-hero {
    padding: 48px 24px 0;
  }

  .project-template-hero-copy {
    padding: 0 0 28px;
  }

  .project-template-company,
  .project-template-hero h1 {
    font-size: clamp(38px, 10vw, 62px);
  }

  .project-template-hero-media {
    width: min(100%, 360px);
  }

  .project-template-placeholder-hero,
  .project-template-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 0.786 / 1;
  }

  .project-template-sections {
    padding: 64px 24px 150px;
  }

  .project-template-section h2 {
    font-size: 32px;
  }

  .project-template-section + .project-template-section {
    margin-top: 150px;
  }

  .project-template-metric-group-outer {
    margin-top: 64px;
  }

  .project-template-metric-group {
    min-height: auto;
    margin-top: 0;
  }

  .project-template-goal-number {
    flex: 0 0 auto;
    font-size: 60px;
  }

  .project-template-goal-text {
    font-size: 18px;
  }

  .project-template-competitor-screenshots {
    display: grid;
    gap: 64px;
    min-height: auto;
    margin-top: 80px;
  }

  .project-template-competitor-shot {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

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

  .project-modal {
    align-items: stretch;
    padding: 0;
  }

  .project-modal-shell {
    position: relative;
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    padding: 0;
    border-radius: 0;
  }

  .project-modal-close,
  .project-modal.is-close-idle .project-modal-close,
  .project-modal.is-close-idle .project-modal-close:focus-visible {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 90;
    width: 64px;
    height: 64px;
    font-size: 48px;
    pointer-events: auto;
    opacity: 1;
  }

  .project-modal-content {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 40px;
  }

  .project-modal.project-modal-wide .project-modal-content {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }

  .project-modal.project-modal-wide .project-template {
    width: 100%;
    min-height: 100vh;
    margin: 0;
  }

  .project-template-hero {
    display: flex;
    min-height: 0;
    height: auto;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }

  .project-template-hero-background {
    inset: 0 auto auto 0;
    width: max(100%, 920px);
    min-width: 920px;
    height: auto;
    aspect-ratio: 1440 / 732;
  }

  .project-template-hero-copy {
    width: fit-content;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    padding: 72px 0 0;
    text-align: left;
  }

  .project-template-company,
  .project-template-hero h1 {
    font-size: 50px;
    line-height: 1;
  }

  .project-template-hero-media {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 80px);
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }

  .project-template-hero-overlap-big .project-template-hero-media {
    margin-top: -40px;
  }

  .project-template-placeholder-hero,
  .project-template-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .project-template-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  @media (max-width: 699px) {
    .project-template-hero-copy {
      width: 70%;
      max-width: 70%;
      margin: 0 auto;
    }
  }

  .project-template-sections {
    padding: 60px 40px 150px;
  }

  .project-template-section + .project-template-section {
    margin-top: 150px;
  }

  .project-template-section-rule {
    margin: 18px 0 40px;
  }

  .project-template-text-hypothesis,
  .project-template-card,
  .project-template-validation,
  .project-template-validation-summary,
  .project-template-competitors,
  .project-template-image-stack,
  .project-template-image-card {
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .project-template-validation-cards,
  .project-template-validation-intro,
  .project-template-validation-summary-card,
  .project-template-competitor-logo-card,
  .project-template-image-stack-explorations,
  .project-template-image-stack-final-designs,
  .project-template-image-stack-cwt-users,
  .project-template-image-stack-cwt-previous-state,
  .project-template-image-stack-cwt-explorations,
  .project-template-image-stack-cwt-final-designs,
  .project-template-image-stack-cwt-competitors,
  .project-template-image-stack-cwt-explorations-stagger,
  .project-template-image-stack-li-previous-state,
  .project-template-section-subheader {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }

  .project-template-card {
    margin-top: 20px;
  }

  .project-template-image-stack-cwt-users .project-template-image-block {
    width: 100% !important;
    margin-top: 40px !important;
    align-self: stretch !important;
  }

  .project-template-image-stack-li-previous-state .project-template-image-block {
    width: 100% !important;
    margin-top: 0 !important;
    align-self: stretch !important;
  }

  .project-template-image-stack-cwt-previous-state,
  .project-template-image-stack-cwt-explorations,
  .project-template-image-stack-cwt-final-designs,
  .project-template-image-stack-cwt-competitors {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-template-image-stack-cwt-explorations-stagger {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .cwt-stagger-col-right {
    margin-top: 0;
  }

  .project-template-image-stack-cwt-explorations-stagger .project-template-image-block:nth-child(even) {
    margin-top: 0;
  }

  .project-template-image-stack-cwt-previous-state .project-template-image-block,
  .project-template-image-stack-cwt-explorations .project-template-image-block {
    grid-column: auto !important;
    max-width: none !important;
    margin-top: 0 !important;
  }

  .project-template-metric-group,
  .project-template-metric-group-success,
  .project-template-metrics {
    gap: 24px 40px;
    margin-top: 0;
  }

  .project-template-goal-number,
  .project-template-metric-value {
    flex: 0 0 auto;
    font-size: 72px;
  }

  .project-template-goal-text,
  .project-template-metric-label {
    font-size: 20px;
  }

  .project-template-validation-summary-metrics {
    position: static;
    display: grid;
    gap: 40px;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .project-template-validation-summary-metric,
  .project-template-validation-summary-metric:nth-child(1),
  .project-template-validation-summary-metric:nth-child(2) {
    position: static;
    display: flex;
    align-items: center;
  }

  .project-template-validation-summary-metric:nth-child(1) .project-template-goal-text,
  .project-template-validation-summary-metric:nth-child(2) .project-template-goal-text {
    margin-left: -18px;
  }

  .project-template-validation-summary-metric .project-template-goal-number {
    flex: 0 0 128px;
    width: 128px;
  }

  .project-template-validation-summary-metric .project-template-goal-text {
    flex: 0 1 auto;
    min-width: max-content;
    white-space: nowrap;
  }

  .project-template-validation-summary-card {
    margin-top: 60px;
  }

  .project-template-validation-card-header {
    align-items: flex-start;
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .project-template-competitor-screenshots {
    display: grid;
    gap: 100px;
    min-height: 0;
    margin-top: 100px;
  }

  .project-template-competitor-shot,
  .project-template-competitor-funnelio,
  .project-template-competitor-adobe,
  .project-template-competitor-salesforce,
  .project-template-competitor-google {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .project-template-image-stack {
    gap: 100px;
  }

  .project-template-image-stack-li-previous-state {
    gap: 40px;
  }

  .project-template-image-stack-li-competitors {
    margin-top: 40px;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p {
    font-size: 14px;
  }

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

  .project-detail {
    padding: 56px 24px 80px;
  }

  .project-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .project-copy {
    font-size: 16px;
    line-height: 1.35;
  }

  .project-original {
    font-size: 16px;
    line-height: 1.35;
  }

  .project-original .projtitle {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .project-original iframe {
    min-height: 220px;
  }

  .project-original [grid-row] {
    display: block;
  }

  .project-template-validation-summary-metric .project-template-goal-text {
    min-width: 0;
    white-space: normal;
  }

  .project-template-metrics-outcome {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 40px;
  }
}

@media (max-width: 1023px) {
  .project-template-metrics-outcome {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 40px;
  }
}

@media (max-width: 400px) {
  .project-template-company,
  .project-template-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 1023px) {
  .product-grid {
    padding: 0 24px;
    gap: 60px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .product-row,
  .product-row--img-right,
  .product-row--img-left {
    flex-direction: column-reverse;
    gap: 24px;
    justify-content: flex-start;
  }

  .product-row__image {
    width: 100%;
    height: auto;
    aspect-ratio: 635 / 420;
    transform: none !important;
  }

  .product-row__image-wrap {
    height: 100%;
  }

  .product-row__dot-svg {
    display: none;
  }

  .product-row__text {
    flex: 0 0 auto;
    width: 100%;
    padding: 16px 0 0;
    transform: none !important;
    opacity: 1 !important;
  }
}
