:root {
  --black: #050505;
  --charcoal: #11100f;
  --night: #0a0808;
  --ivory: #f6efe3;
  --paper: #fbf7ef;
  --bone: #d9cfbf;
  --taupe: #82776a;
  --muted: #bfb4a6;
  --ink: #151310;
  --wine: #5b1018;
  --oxblood: #8b1f2c;
  --rose: #d3a0a6;
  --lime: #d9ff4a;
  --sky: #a7dcff;
  --blush: #f0b5c8;
  --blue: #5b73ff;
  --line: rgba(21, 19, 16, 0.13);
  --wline: rgba(246, 239, 227, 0.16);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --display: "Instrument Serif", Georgia, serif;
}
* {
  box-sizing: border-box;
  min-width: 0;
}
html {
  scroll-behavior: smooth;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
html,
body {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--wine);
  color: var(--ivory);
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--wline);
  backdrop-filter: blur(20px);
  color: var(--ivory);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand img {
  width: 22px;
  height: 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 20px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links a {
  color: rgba(246, 239, 227, 0.76);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ivory);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 17px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.nav-links .nav-cta,
.nav-cta {
  border: 1px solid var(--ivory);
  color: var(--ivory);
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--ivory);
  color: var(--black);
}
.btn {
  border: 1px solid currentColor;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--black);
}
.btn.dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--ivory);
}
.btn.wine {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}
.btn.ghost {
  color: var(--ivory);
  border-color: rgba(246, 239, 227, 0.32);
}
.paper .btn.ghost,
.btn.ghost.dark-text {
  color: var(--ink);
  border-color: rgba(21, 19, 16, 0.22);
}
.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 239, 227, 0.22);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.06);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile-panel {
  display: none;
  position: fixed;
  inset: 86px 12px auto;
  z-index: 69;
  border: 1px solid rgba(246, 239, 227, 0.18);
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.mobile-panel a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(246, 239, 227, 0.1);
  padding: 0 10px;
  color: rgba(246, 239, 227, 0.82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-panel a:last-child {
  border-bottom: 0;
}
.mobile-panel a.active {
  color: var(--ivory);
}
body.nav-open .mobile-panel {
  display: block;
}
body.nav-open .mobile-menu-button {
  background: var(--ivory);
  color: var(--black);
}
.hero {
  position: relative;
  min-height: min(840px, calc(100svh - 78px));
  overflow: hidden;
  background: var(--black);
  color: var(--ivory);
}
.hero.compact {
  min-height: 72svh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.8) contrast(1.06);
  transform: scale(1.03);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(91, 16, 24, 0.42), transparent 34%),
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96),
      rgba(5, 5, 5, 0.74) 45%,
      rgba(5, 5, 5, 0.26)
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), transparent 38%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: min(840px, calc(100svh - 78px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 4vw, 58px);
  padding: 46px clamp(18px, 5vw, 76px) 72px;
}
.hero.compact .hero-inner {
  min-height: 72svh;
  grid-template-columns: minmax(0, 760px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.eyebrow,
.label,
.mini,
.tag,
.metric span {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--bone);
  margin-bottom: 18px;
}
.label,
.mini {
  color: var(--oxblood);
}
.dark .label,
.dark .mini {
  color: var(--rose);
}
h1,
h2,
h3,
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.86;
  margin: 0;
  max-width: 650px;
}
h1 em,
h2 em {
  font-style: italic;
  color: var(--rose);
}
h2 {
  font-size: clamp(52px, 7vw, 116px);
  line-height: 0.88;
  margin: 0;
  max-width: 1040px;
}
h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.92;
  margin: 0;
}
.intro,
.hero-card p {
  font-size: 19px;
  line-height: 1.52;
  color: #d0c5b8;
  margin: 22px 0 0;
  max-width: 620px;
}
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.motion-wall {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 330px 210px;
  gap: 12px;
}
.tile,
.reel,
.media-tile {
  position: relative;
  overflow: hidden;
  background: #171413;
  border: 1px solid var(--wline);
}
.tile.big {
  grid-row: span 2;
}
.tile video,
.tile img,
.reel video,
.reel img,
.media-tile video,
.media-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}
.motion-wall video,
.case-card video,
.film-strip video,
.media-tile video {
  cursor: zoom-in;
}
.tile:after,
.reel span,
.media-tile .caption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
}
.tile:before,
.reel:after,
.media-tile:after,
.case-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(0, 0, 0, 0.88));
}
.tile:after {
  content: attr(data-label);
  right: auto;
  border: 1px solid rgba(246, 239, 227, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--wline);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
}
.ticker div {
  display: inline-block;
  padding: 14px 0 18px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  color: var(--ivory);
  animation: scroll 30s linear infinite;
}
.ticker i {
  color: var(--rose);
  font-style: italic;
  margin: 0 22px;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: clamp(78px, 9vw, 132px) clamp(18px, 5vw, 76px);
}
.paper {
  background: var(--paper);
  color: var(--ink);
}
.ivory {
  background: var(--ivory);
  color: var(--ink);
}
.dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.section-head {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 52px;
}
.section-copy {
  font-size: 20px;
  line-height: 1.56;
  color: #756b60;
  max-width: 820px;
  margin: 20px 0 0;
  overflow-wrap: break-word;
}
#growth-loop {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(48px, 6vw, 78px);
}
#growth-loop .section-head {
  display: grid;
  grid-template-columns: minmax(390px, 0.36fr) 1fr;
  justify-content: initial;
  margin-bottom: clamp(12px, 2vw, 18px);
  text-align: left;
}
#growth-loop .label {
  color: var(--wine);
  font-size: clamp(12px, 1.15vw, 15px);
  white-space: nowrap;
}
.growth-loop-title {
  display: grid;
  gap: 10px;
}
.growth-loop-title p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 0.94;
  white-space: nowrap;
}
.dark .section-copy {
  color: #c7bcaf;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: var(--wine);
  color: var(--ivory);
  padding: 15px 0;
  font-family: var(--display);
  font-size: 42px;
}
.marquee-track {
  display: inline-flex;
  gap: 34px;
  animation: scroll 30s linear infinite;
}
.marquee i {
  color: var(--rose);
  font-style: italic;
}
.service-grid,
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card,
.service-card {
  background: var(--paper);
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.card:hover,
.service-card:hover {
  transform: translateY(-4px);
  background: var(--ivory);
}
.card h3,
.service-card h3 {
  font-size: 42px;
}
.card p,
.service-card p,
.panel p,
.detail-card p,
.detail-card li,
.contact-routes span {
  color: #756b60;
  line-height: 1.55;
}
.dark .card,
.dark .service-card,
.dark .panel,
.dark .detail-card {
  background: #141110;
  color: var(--ivory);
  border-color: var(--wline);
}
.dark .card p,
.dark .service-card p,
.dark .panel p,
.dark .detail-card p,
.dark .detail-card li {
  color: #c7bcaf;
}
.num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--oxblood);
  line-height: 0.8;
}
.split,
.project-matrix,
.service-story,
.visual-band,
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel,
.detail-card,
.form-card,
.contact-routes a {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px;
}
.panel h3 {
  margin: 14px 0;
}
.film-strip,
.reel-grid,
.media-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.film-strip {
  height: 420px;
}
.film-strip .tile:nth-child(2),
.film-strip .tile:nth-child(4) {
  margin-top: 70px;
}
.film-strip .tile:nth-child(3) {
  margin-top: 30px;
}
.reel {
  min-height: 320px;
}
.reel span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}
.visual-band {
  align-items: stretch;
}
.visual-band .media-tile {
  min-height: 540px;
}
.visual-band .stack {
  display: grid;
  gap: 14px;
}
.visual-band .stack .media-tile {
  min-height: 263px;
}
.product-proof-hero .hero-inner {
  align-items: center;
}
.product-proof-panel {
  position: relative;
  min-height: clamp(480px, 55vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 16%, rgba(246, 239, 227, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(246, 239, 227, 0.16), rgba(21, 19, 16, 0.18));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}
.product-proof-panel img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(246, 239, 227, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}
.product-proof-main {
  right: clamp(18px, 4vw, 54px);
  top: 26px;
  width: min(48%, 360px);
  height: calc(100% - 52px);
  border-radius: 30px;
  object-position: center;
}
.product-proof-card {
  left: clamp(20px, 4vw, 54px);
  width: min(46%, 320px);
  height: 42%;
  border-radius: 24px;
}
.product-proof-card-a {
  top: 12%;
  transform: rotate(-4deg);
}
.product-proof-card-b {
  bottom: 10%;
  left: clamp(70px, 10vw, 140px);
  transform: rotate(5deg);
}
.caption strong {
  display: block;
  font-family: var(--display);
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.caption span {
  display: block;
  margin-top: 8px;
  color: rgba(246, 239, 227, 0.7);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.selected-case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.case-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #111;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--wline);
}
.case-card video,
.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.82) contrast(1.06);
}
.case-card-app {
  grid-column: 1 / -1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: stretch;
  justify-content: normal;
  padding: clamp(18px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(circle at 20% 84%, rgba(216, 178, 134, 0.24), transparent 32%),
    linear-gradient(140deg, rgba(246, 239, 227, 0.98), rgba(228, 209, 176, 0.9)),
    #f6efe3;
  color: var(--ink);
}
.case-card-app:after {
  content: none;
}
.app-showcase {
  position: relative;
  height: 100%;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.4), rgba(255, 252, 246, 0.12)),
    rgba(247, 237, 219, 0.54);
}
.app-showcase .app-screen {
  position: absolute;
  inset: auto;
  object-fit: cover;
  border: 1px solid rgba(21, 19, 16, 0.14);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(21, 19, 16, 0.18);
  opacity: 1;
  filter: saturate(0.96) contrast(1.02);
}
.app-showcase .app-screen-main {
  right: clamp(22px, 5vw, 80px);
  top: 18px;
  width: min(42%, 360px);
  height: calc(100% - 36px);
  z-index: 4;
  object-fit: contain;
  object-position: center;
}
.app-showcase .app-screen-flow,
.app-showcase .app-screen-memory {
  width: min(34%, 292px);
  height: 48%;
  z-index: 2;
}
.app-showcase .app-screen-flow {
  left: 5%;
  top: 9%;
  transform: rotate(-4deg);
  object-position: center 18%;
}
.app-showcase .app-screen-memory {
  left: 20%;
  bottom: 7%;
  transform: rotate(5deg);
  object-position: center 16%;
}
.app-showcase-system:before {
  content: "";
  position: absolute;
  inset: 54px 15% 40px 8%;
  border: 1px dashed rgba(91, 16, 24, 0.2);
  border-radius: 999px;
  transform: rotate(-8deg);
}
.app-showcase-system:after {
  content: "Prototype / product world / launch path";
  position: absolute;
  left: 8%;
  bottom: 24px;
  z-index: 4;
  max-width: 210px;
  color: rgba(91, 16, 24, 0.72);
  font: 900 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-card-app .body {
  align-self: center;
  max-width: 420px;
  margin: 0;
  border: 1px solid rgba(21, 19, 16, 0.12);
  background: rgba(255, 252, 246, 0.78);
  color: var(--ink);
}
.case-card-app .tag {
  border-color: rgba(91, 16, 24, 0.24);
  background: rgba(255, 252, 246, 0.72);
  color: var(--wine);
}
.case-card-app p {
  color: rgba(21, 19, 16, 0.7);
}
.case-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.case-mini-list span {
  border: 1px solid rgba(91, 16, 24, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.56);
  color: rgba(91, 16, 24, 0.82);
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-card-metrics {
  background:
    radial-gradient(circle at 74% 16%, rgba(246, 239, 227, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(91, 16, 24, 0.97), rgba(21, 19, 16, 0.96)),
    var(--wine);
}
.case-card-metrics:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246, 239, 227, 0.18);
  pointer-events: none;
}
.case-metrics,
.deliche-dashboard {
  position: absolute;
  z-index: 1;
  inset: 28px 24px auto;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 8px 12px;
  align-items: baseline;
}
.deliche-dashboard {
  inset: 22px 22px auto;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.deliche-stat {
  display: grid;
  align-content: end;
  min-height: 82px;
  border: 1px solid rgba(246, 239, 227, 0.16);
  background: rgba(246, 239, 227, 0.045);
  padding: 12px;
}
.deliche-stat.hero-stat {
  grid-column: 1/-1;
  min-height: 122px;
}
.case-metrics strong,
.deliche-stat strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.deliche-stat.hero-stat strong {
  font-size: clamp(58px, 6vw, 92px);
}
.case-metrics span,
.deliche-stat span {
  color: rgba(246, 239, 227, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.deliche-bars {
  grid-column: 1/-1;
  height: 54px;
  display: flex;
  align-items: end;
  gap: 7px;
  border: 1px solid rgba(246, 239, 227, 0.14);
  padding: 8px;
}
.deliche-bars i {
  display: block;
  flex: 1;
  height: var(--h);
  background: rgba(246, 239, 227, 0.72);
}
.case-card .body {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.tag {
  display: inline-flex;
  border: 1px solid rgba(246, 239, 227, 0.28);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--rose);
}
.case-card h3 {
  font-size: 44px;
  margin: 16px 0 10px;
}
.case-card p {
  color: #d0c5b8;
  line-height: 1.45;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}
.deliverables,
.detail-grid,
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.deliverables article {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px;
  min-height: 190px;
}
.deliverables strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-top: 34px;
}
.story-copy {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.story-copy h3 {
  font-size: 64px;
  margin: 14px 0;
}
.story-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.story-list div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 12px;
}
.story-list b {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.story-list span {
  line-height: 1.44;
  color: #302a25;
}
.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.story-visual .reel {
  min-height: 254px;
}
.story-visual .reel:first-child {
  grid-row: span 2;
  min-height: 520px;
}
.process {
  counter-reset: step;
  border-top: 1px solid var(--line);
}
.dark .process {
  border-color: var(--wline);
}
.process-row {
  counter-increment: step;
  display: grid;
  grid-template-columns: 0.18fr 0.42fr 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.dark .process-row {
  border-color: var(--wline);
}
.process-row:before {
  content: "0" counter(step);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--oxblood);
}
.dark .process-row:before {
  color: var(--rose);
}
.process-row h3 {
  font-size: 42px;
}
.process-row p {
  margin: 0;
  line-height: 1.56;
  color: #756b60;
  max-width: 720px;
}
.dark .process-row p {
  color: #c7bcaf;
}
.detail-card {
  min-height: 218px;
}
.detail-card h3 {
  font-size: 34px;
  margin: 14px 0;
}
.detail-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.contact-routes {
  margin-bottom: 18px;
}
.contact-routes a {
  min-height: 180px;
}
.contact-routes strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 850;
  margin-top: 28px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #342c27;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--ink);
  font: 16px/1.25 var(--sans);
  padding: 14px 15px;
}
textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}
.launch-filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.launch-filter label {
  display: block;
  cursor: pointer;
}
.launch-filter input {
  position: absolute;
  width: auto;
  opacity: 0;
  pointer-events: none;
}
.launch-filter span {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fffaf0;
  padding: 14px;
  color: #6f655c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.launch-filter b {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.launch-filter input:checked + span {
  border-color: var(--wine);
  background: var(--wine);
  color: rgba(246, 239, 227, 0.82);
}
.launch-filter input:checked + span b {
  color: var(--ivory);
}
.schedule-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(91, 16, 24, 0.18);
  background: rgba(91, 16, 24, 0.06);
  padding: 18px;
  margin: 20px 0;
}
.schedule-card strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.schedule-card span {
  color: #756b60;
  line-height: 1.45;
}
.note {
  font-size: 13px;
  color: #756b60;
  line-height: 1.45;
}
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
  color: var(--ivory);
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 76px)
    clamp(76px, 8vw, 118px);
}
.cta-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 110%,
    rgba(91, 16, 24, 0.7),
    transparent 54%
  );
}
.cta-band > * {
  position: relative;
}
.cta-path {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  color: rgba(211, 160, 166, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-path i {
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: rgba(246, 239, 227, 0.18);
}
.cta-band h2 {
  margin: 0 auto;
  max-width: 1080px;
}
.cta-band p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #c7bcaf;
  font-size: 20px;
  line-height: 1.45;
}
.footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(91, 16, 24, 0.28), transparent 42%), #050403;
  color: var(--ivory);
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 76px) 26px;
  border-top: 1px solid var(--wline);
}
.footer-lead {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 2.2fr) auto;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
}
.footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(246, 239, 227, 0.78);
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 70px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}
.footer-service-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
}
.footer-service-map div {
  display: grid;
  gap: 10px;
  min-height: 112px;
  align-content: start;
  border: 1px solid rgba(246, 239, 227, 0.14);
  background: rgba(246, 239, 227, 0.035);
  padding: 14px;
}
.footer-service-map span {
  color: rgba(211, 160, 166, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-service-map strong {
  color: rgba(246, 239, 227, 0.82);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.42;
}
.footer-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: stretch;
}
.footer a {
  color: rgba(246, 239, 227, 0.7);
}
.footer-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.footer-actions .footer-cta {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 5vw, 72px);
  align-self: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 239, 227, 0.16);
}
.footer h4 {
  margin: 0 0 16px;
  color: rgba(211, 160, 166, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-directory a {
  display: block;
  padding: 5px 0;
  color: rgba(246, 239, 227, 0.66);
  font-size: 14px;
  line-height: 1.35;
}
.footer a:hover {
  color: var(--ivory);
}
.footer .brand {
  display: flex;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(28px, 5vw, 72px);
  padding-top: 18px;
  border-top: 1px solid rgba(246, 239, 227, 0.12);
  color: rgba(246, 239, 227, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}
.video-lightbox.is-open {
  display: flex;
}
body.video-lightbox-open {
  overflow: hidden;
}
.video-lightbox__video {
  width: min(100%, 1180px);
  max-height: min(82svh, 820px);
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}
.video-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 44px;
  border: 1px solid rgba(246, 239, 227, 0.28);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.11);
  color: var(--ivory);
  padding: 0 16px;
  font: 900 11px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.video-lightbox__close:hover {
  background: var(--ivory);
  color: var(--black);
}
.nav-landing {
  position: sticky;
}
.content-day-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(30px, 4.5vw, 70px);
  min-height: auto;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(91, 16, 24, 0.48), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(216, 178, 134, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(21, 19, 16, 0.94));
  color: var(--ivory);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 76px);
}
.content-day-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.offer-pill,
.content-day-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(246, 239, 227, 0.2);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.08);
  color: rgba(246, 239, 227, 0.82);
  padding: 0 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.offer-pill {
  border-color: rgba(211, 160, 166, 0.4);
  background: rgba(91, 16, 24, 0.36);
  color: var(--rose);
}
.content-day-offer-card {
  display: grid;
  gap: 8px;
  width: min(100%, 470px);
  margin-top: 18px;
  border: 1px solid rgba(246, 239, 227, 0.2);
  background:
    radial-gradient(circle at 88% 12%, rgba(246, 239, 227, 0.2), transparent 34%),
    rgba(91, 16, 24, 0.42);
  padding: clamp(18px, 2.4vw, 28px);
}
.content-day-offer-card span,
.content-day-offer-card em {
  color: rgba(246, 239, 227, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.content-day-offer-card strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(78px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
}
.content-day-copy h1 {
  max-width: 9.8ch;
  margin: 18px 0 0;
  font-size: clamp(54px, 6.8vw, 104px);
}
.content-day-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d0c5b8;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.42;
}
.content-day-copy .content-day-assurance {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(246, 239, 227, 0.68);
  font-size: 14px;
  line-height: 1.45;
}
.content-day-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.content-day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.content-day-video-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 0.95fr) minmax(180px, 0.7fr);
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 14px;
  min-height: min(62svh, 620px);
}
.content-day-video-stage-single {
  display: block;
  min-height: min(62svh, 620px);
}
.content-day-reel {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.18);
  border-radius: 28px;
  background: var(--black);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}
.content-day-reel-main {
  grid-row: span 2;
  min-height: 700px;
}
.content-day-video-stage-single .content-day-reel-main {
  height: min(62svh, 620px);
  min-height: 430px;
}
.content-day-reel video,
.proof-reel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.content-day-reel:after,
.proof-reel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}
.content-day-reel span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  border: 1px solid rgba(246, 239, 227, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--ivory);
  padding: 9px 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.content-day-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.content-day-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.content-day-section {
  padding-top: clamp(70px, 8vw, 112px);
}
.content-day-included {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.content-day-included article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  padding: clamp(20px, 2.4vw, 30px);
}
.content-day-included span {
  color: var(--wine);
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.85;
}
.content-day-included h3 {
  max-width: 10ch;
  margin: auto 0 14px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 0.92;
}
.content-day-included p {
  margin: 0;
  color: #756b60;
  line-height: 1.48;
}
.content-video-groups {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(18px, 3vw, 34px);
}
.content-example-group {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}
.content-example-group-head {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(91, 16, 24, 0.16);
  background: rgba(255, 252, 246, 0.56);
  padding: clamp(18px, 2vw, 24px);
}
.content-example-group-head span {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.content-example-group-head h3 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.9;
}
.content-idea-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(18px, 3vw, 34px);
}
.content-example-group .content-idea-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}
.content-idea-strip article {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
  cursor: pointer;
}
.content-idea-strip article:before {
  content: "Full video";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(246, 239, 227, 0.42);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.42);
  color: var(--ivory);
  padding: 7px 9px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.content-idea-strip video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.content-idea-strip article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(0, 0, 0, 0.86));
}
.content-idea-strip span,
.content-idea-strip strong {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 2;
}
.content-idea-strip span {
  bottom: 82px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.content-idea-strip strong {
  bottom: 18px;
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.28;
}
.content-day-proof .section-copy {
  color: #c7bcaf;
}
.content-day-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 14px;
}
.content-day-proof-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}
.proof-reel-feature {
  min-height: 720px;
}
.proof-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(246, 239, 227, 0.12);
  background: rgba(246, 239, 227, 0.12);
}
.proof-notes-short {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-notes article {
  display: grid;
  align-content: start;
  gap: 16px;
  background: rgba(246, 239, 227, 0.045);
  padding: clamp(20px, 2.4vw, 30px);
}
.proof-notes span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.proof-notes strong {
  max-width: 12ch;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.proof-notes p {
  margin: 0;
  color: #c7bcaf;
  line-height: 1.5;
}
.proof-reel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.16);
  border-radius: 28px;
  background: #111;
}
.proof-reel.large {
  grid-row: span 2;
  min-height: 780px;
}
.proof-reel div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
.proof-reel span {
  display: inline-flex;
  border: 1px solid rgba(246, 239, 227, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--rose);
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.proof-reel strong {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.content-day-process .process {
  border-color: var(--line);
}
.content-day-form-shell {
  align-items: stretch;
}
.content-day-form-section .story-list {
  margin-top: 24px;
}
.content-day-form-section .form-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.content-day-form-section .form-intro span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.content-day-form-section .form-intro strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.content-day-form-section .btn.wine {
  width: 100%;
  border: 0;
  margin-top: 8px;
}
.landing-sticky-cta {
  display: none;
}
.landing-sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1180px) {
  .nav-links a:not(.nav-cta):nth-child(n + 7) {
    display: none;
  }
}
@media (max-width: 1080px) {
  .hero-inner,
  .section-head,
  .split,
  .project-matrix,
  .service-story,
  .visual-band,
  .form-shell,
  .footer {
    grid-template-columns: 1fr;
  }
  .footer {
    gap: 34px;
  }
  .footer-lead {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .footer-service-map {
    max-width: none;
  }
  .footer-service-map strong {
    font-size: 15px;
  }
  .footer-directory {
    align-self: auto;
  }
  .motion-wall {
    margin-top: 42px;
  }
  .service-grid,
  .services,
  .case-grid,
  .deliverables,
  .detail-grid,
  .proof-strip,
  .contact-routes {
    grid-template-columns: 1fr 1fr;
  }
  .film-strip,
  .reel-grid,
  .media-wall {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }
  .film-strip .tile {
    height: 280px;
    margin-top: 0 !important;
  }
  .story-copy {
    min-height: auto;
  }
  .story-visual .reel:first-child {
    grid-row: auto;
    min-height: 360px;
  }
  .product-proof-panel {
    min-height: 520px;
  }
  .content-day-hero,
  .content-day-proof-grid,
  .content-day-proof-split {
    grid-template-columns: 1fr;
  }
  .content-day-hero {
    min-height: 0;
  }
  .content-day-video-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .content-day-video-stage-single {
    display: block;
  }
  .content-day-reel-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 0.68;
  }
  .content-day-reel:not(.content-day-reel-main) {
    aspect-ratio: 0.74;
    min-height: 0;
  }
  .content-day-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .content-day-included {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-example-group {
    grid-template-columns: 1fr;
  }
  .content-example-group-head {
    min-height: auto;
    gap: 18px;
  }
  .content-example-group-head h3 {
    max-width: 14ch;
  }
  .content-idea-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-example-group .content-idea-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .content-idea-strip article {
    min-height: 260px;
  }
  .content-day-proof-grid {
    grid-template-rows: auto;
  }
  .proof-reel.large {
    grid-row: auto;
  }
  .proof-reel,
  .proof-reel.large {
    min-height: 520px;
    aspect-ratio: auto;
  }
}
@media (max-width: 840px) {
  .mobile-menu-button {
    display: inline-flex;
  }
  .nav-links {
    display: none;
  }
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 58px;
  }
  .hero-inner {
    padding-top: 42px;
  }
  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .motion-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 220px;
  }
  .marquee {
    font-size: 30px;
  }
  .footer-service-map div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .footer-service-map strong {
    font-size: 15px;
  }
}
@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .nav {
    padding-inline: 16px;
  }
  .brand {
    font-size: 26px;
  }
  .hero-inner,
  .section,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }
  .motion-wall,
  .service-grid,
  .services,
  .case-grid,
  .deliverables,
  .detail-grid,
  .proof-strip,
  .contact-routes,
  .film-strip,
  .reel-grid,
  .media-wall,
  .footer,
  .field-grid,
  .story-visual {
    grid-template-columns: 1fr;
  }
  .product-proof-panel {
    min-height: 520px;
  }
  .product-proof-main {
    left: 50%;
    right: auto;
    top: 18px;
    width: min(82%, 300px);
    height: calc(100% - 36px);
    transform: translateX(-50%);
  }
  .product-proof-card {
    display: none;
  }
  .tile,
  .reel,
  .media-tile {
    min-height: 250px;
  }
  .tile.big {
    grid-row: auto;
  }
  .motion-wall {
    grid-template-rows: auto;
  }
  .ctas .btn {
    width: 100%;
  }
  .cta-path {
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 24px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }
  .cta-path i {
    width: clamp(8px, 4vw, 20px);
    height: 1px;
    flex: 0 1 20px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(48px, 14.5vw, 58px);
    line-height: 0.9;
    letter-spacing: -0.045em;
  }
  h2 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 44px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }
  .intro,
  .hero-card p,
  .section-copy {
    font-size: 18px;
  }
  .footer {
    gap: 10px;
  }
  .footer-service-map {
    grid-template-columns: 1fr;
  }
  .footer-service-map div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .footer-service-map strong {
    font-size: 15px;
  }
  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 16px;
  }
  .footer-directory > div {
    min-width: 0;
    border: 1px solid rgba(246, 239, 227, 0.12);
    background: rgba(246, 239, 227, 0.025);
    padding: 14px;
  }
  .footer-directory > div:first-child {
    grid-column: 1 / -1;
  }
  .footer h4 {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .footer-directory > div:first-child {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 10px;
  }
  .footer-directory > div:first-child h4 {
    grid-column: 1 / -1;
  }
  .footer-directory a {
    padding: 4px 0;
    font-size: 13px;
    line-height: 1.25;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }
  .story-copy h3 {
    font-size: 44px;
  }
  .process-row h3,
  .card h3,
  .service-card h3 {
    font-size: 34px;
  }
}
/* Desktop deliverable rows use four equal cells so service menus do not leave a stranded final card. */
.deliverables {
  grid-template-columns: repeat(4, 1fr);
}
.deliverables strong {
  font-size: 30px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .deliverables {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .deliverables {
    grid-template-columns: 1fr;
  }
}

.insights-hero .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1180px;
}
.insights-hero .intro {
  max-width: 760px;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  align-items: stretch;
}
.insight-feature {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--black);
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--wline);
}
.insight-feature video,
.insight-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.82) contrast(1.05);
}
.insight-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.92));
}
.insight-feature .body {
  position: relative;
  z-index: 1;
  padding: 32px;
  max-width: 780px;
}
.insight-feature h2 {
  font-size: clamp(48px, 6.2vw, 96px);
  margin: 14px 0 16px;
}
.insight-stack {
  display: grid;
  gap: 14px;
}
.insight-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  background: var(--ivory);
}
.insight-card h3 {
  font-size: clamp(34px, 3.7vw, 54px);
  margin: 12px 0;
}
.insight-card p,
.insight-feature p {
  line-height: 1.56;
  color: inherit;
  opacity: 0.76;
}
.insight-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.insight-list .insight-card {
  border: 0;
  min-height: 300px;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 780px);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}
.article-meta {
  position: sticky;
  top: 112px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.article-meta p {
  color: #756b60;
  line-height: 1.5;
}
.article-body {
  font-size: 19px;
  line-height: 1.72;
  color: #302a25;
}
.article-body p {
  margin: 0 0 22px;
}
.article-body h2 {
  font-size: clamp(38px, 4.6vw, 68px);
  margin: 58px 0 18px;
  max-width: 760px;
}
.article-body h3 {
  font-size: clamp(30px, 3.3vw, 46px);
  margin: 34px 0 12px;
}
.article-body a {
  color: var(--oxblood);
  border-bottom: 1px solid rgba(139, 31, 44, 0.32);
}
.article-body ul {
  margin: 0 0 26px;
  padding-left: 20px;
}
.article-body li {
  margin: 8px 0;
}
.article-cta {
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--ivory);
  padding: 34px;
}
.article-cta p {
  color: #c7bcaf;
}
.article-cta .btn {
  margin-top: 12px;
}
@media (max-width: 1080px) {
  .editorial-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }
  .article-meta {
    position: static;
  }
  .insight-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .insight-feature {
    min-height: 460px;
  }
  .insight-feature .body,
  .insight-card,
  .article-cta {
    padding: 22px;
  }
  .insight-list {
    grid-template-columns: 1fr;
  }
  .article-body {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  body,
  .hero,
  .hero-inner {
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-inner {
    width: auto;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  h1 {
    font-size: 46px;
    line-height: 0.9;
    letter-spacing: -0.045em;
    max-width: 100%;
  }
  .hero h1,
  .hero .intro {
    max-width: 100%;
  }
  h2 {
    font-size: 40px;
    line-height: 0.92;
  }
  .intro,
  .hero-card p,
  .section-copy {
    font-size: 17px;
  }
  .hero-copy .eyebrow:last-child {
    margin-top: 18px;
  }
}

/* Homepage polish pass: stronger mark, cleaner editorial hero, better video hierarchy. */
.nav .brand {
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-wordmark-link {
  display: inline-flex;
  align-items: center;
}
.brand-wordmark-link .brand-wordmark {
  width: 176px;
  height: auto;
  max-width: none;
}
.nav .brand-wordmark-link .brand-wordmark {
  width: 192px;
}
.footer .brand-wordmark-link .brand-wordmark {
  width: 168px;
}
.hero-bg {
  opacity: 0.52;
  object-position: center 38%;
  filter: saturate(0.98) contrast(1.04);
}
.hero:after {
  background:
    radial-gradient(circle at 78% 8%, rgba(91, 16, 24, 0.26), transparent 34%),
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.92),
      rgba(5, 5, 5, 0.62) 45%,
      rgba(5, 5, 5, 0.08)
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78), transparent 38%);
}
.motion-wall {
  align-self: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(250px, 1fr);
  grid-template-rows: 228px 344px;
  gap: 16px;
}
.hero .tile {
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}
.motion-wall .tile.big video {
  object-position: center 24%;
}
.motion-wall .tile:nth-child(2) {
  transform: translateY(0);
}
.motion-wall .proof-tile {
  transform: translateY(0);
}
.motion-wall .launch-tile video {
  object-position: center 10%;
}
.motion-wall .proof-tile video {
  object-position: center 12%;
}
.motion-wall.compact-wall {
  max-width: 670px;
  margin-left: auto;
}
.tile.still img {
  filter: saturate(0.86) contrast(1.04);
}
.film-strip .tile {
  border-radius: 20px;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.proof-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background: var(--paper);
}
.proof-card span {
  color: var(--oxblood);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.proof-card h3 {
  font-size: clamp(42px, 5vw, 72px);
}
.proof-card p {
  max-width: 330px;
  margin: 0;
  color: #756b60;
  font-size: 17px;
  line-height: 1.45;
}
.growth-loop-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.growth-loop-line {
  max-width: none;
  color: var(--wine);
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.growth-orbit {
  position: relative;
  width: min(100%, 318px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  overflow: visible;
}
.growth-orbit:before {
  display: none;
}
.growth-orbit-ring {
  position: absolute;
}
.growth-orbit-ring-outer {
  inset: 5%;
  border: 1px solid rgba(91, 16, 24, 0.46);
  border-radius: 50%;
}
.growth-orbit-path {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  animation: orbitSpin 24s linear infinite;
}
.orbit-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(91, 16, 24, 0.24);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 0 0 10px rgba(91, 16, 24, 0.07);
}
.orbit-dot b {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(0deg) scale(var(--orbit-label-scale, 1));
  white-space: nowrap;
  animation: orbitLabelCounter 14s linear infinite;
  transform-origin: center;
}
.orbit-dot:after {
  display: none;
}
.orbit-dot-1 {
  right: -15px;
  top: calc(50% - 15px);
}
.orbit-dot-1 b {
  transform: translate(-50%, -50%) rotate(0deg) scale(var(--orbit-label-scale, 1));
}
.orbit-dot-2 {
  left: calc(25% - 15px);
  bottom: calc(6.7% - 15px);
}
.orbit-dot-3 {
  left: calc(25% - 15px);
  top: calc(6.7% - 15px);
}
.orbit-dot-2 b,
.orbit-dot-3 b {
  transform: translate(-50%, -50%) rotate(0deg) scale(var(--orbit-label-scale, 1));
}
.growth-orbit-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(50%, 136px);
  aspect-ratio: 1;
  border: 1px solid rgba(91, 16, 24, 0.16);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.46);
  color: var(--ink);
  text-align: center;
}
.growth-orbit-core span {
  max-width: 106px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.growth-loop-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.growth-loop-steps:before {
  display: none;
}
.growth-step {
  position: relative;
  min-height: 164px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: 4px clamp(18px, 2.4vw, 28px) clamp(12px, 2vw, 18px);
  border: 0;
  background: transparent;
}
.growth-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  justify-self: center;
  width: auto;
  min-width: 112px;
  height: 34px;
  border: 1px solid rgba(91, 16, 24, 0.22);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.growth-step span b {
  color: rgba(91, 16, 24, 0.48);
  font: inherit;
  letter-spacing: 0.08em;
}
.growth-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.92;
  text-align: center;
}
.growth-step p {
  margin: 0;
  color: #5f554c;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.42;
  text-align: center;
}
@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitLabelSpin {
  to {
    rotate: 360deg;
  }
}
@keyframes orbitLabelCounter {
  to {
    transform: translate(-50%, -50%) rotate(-360deg)
      scale(var(--orbit-label-scale, 1));
  }
}
.campaign-paths-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(58px, 6vw, 92px);
}
.campaign-paths-section .section-head h2 {
  font-size: clamp(54px, 6.8vw, 92px);
}
.campaign-paths-section .section-copy {
  max-width: 760px;
}
.service-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 980px;
  margin: -4px 0 34px auto;
  color: var(--wine);
}
.service-flow span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-flow i {
  display: block;
  flex: 1 1 54px;
  min-width: 34px;
  height: 1px;
  background: rgba(91, 16, 24, 0.24);
}
.campaign-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.outcome-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.campaign-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(21, 19, 16, 0.14);
  border-radius: 14px;
  padding: 22px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(21, 19, 16, 0.06);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}
.outcome-card {
  min-height: 390px;
  padding: 20px;
  gap: 12px;
}
.outcome-card .chip-row {
  display: none;
}
.campaign-card-wide {
  grid-column: span 3;
}
.campaign-card:not(.campaign-card-wide) {
  grid-column: span 2;
}
.outcome-cards .campaign-card,
.outcome-cards .campaign-card:not(.campaign-card-wide) {
  grid-column: auto;
}
.campaign-card:before {
  content: none;
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(21, 19, 16, 0.07);
  transition: transform 0.22s ease;
}
.campaign-card:hover {
  transform: translateY(-4px);
}
.campaign-card span {
  position: relative;
  z-index: 1;
  color: rgba(21, 19, 16, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.campaign-card:hover span {
  color: rgba(21, 19, 16, 0.88);
}
.campaign-card h3 {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 0.88;
}
.outcome-card h3 {
  max-width: 12ch;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 0.92;
}
.campaign-card-wide h3 {
  max-width: 12ch;
  font-size: clamp(50px, 5.4vw, 76px);
}
.campaign-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(21, 19, 16, 0.74);
  max-width: 520px;
  font-size: 16px;
  line-height: 1.48;
}
.campaign-card:hover p {
  color: rgba(21, 19, 16, 0.82);
}
.chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.campaign-card-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: start;
  border-top: 1px solid rgba(21, 19, 16, 0.16);
  padding-top: 12px;
  color: rgba(21, 19, 16, 0.74);
  font-size: 10px;
  line-height: 1.2;
}
.campaign-card-details strong {
  flex: 0 0 100%;
  color: rgba(21, 19, 16, 0.9);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.campaign-card-details span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(21, 19, 16, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.18);
  padding: 5px 8px;
  color: rgba(21, 19, 16, 0.72);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.chip-row em {
  display: inline-flex;
  border: 1px solid rgba(21, 19, 16, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.26);
  padding: 6px 8px;
  color: rgba(21, 19, 16, 0.76);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.campaign-card b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  min-height: 38px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.campaign-card:hover:before {
  transform: scale(1.18);
}
.card-lime {
  background: #d6d0ad;
}
.card-sky {
  background: #b8c7cf;
}
.card-blush {
  background: #d4b4ad;
}
.card-ink,
.card-wine,
.card-blue {
  color: var(--ivory);
}
.card-ink {
  background: #1c1713;
}
.card-wine {
  background: #4f1722;
}
.card-blue {
  background: #334074;
}
.card-olive {
  background: #737058;
  color: var(--ivory);
}
.card-cream {
  background: #eee1c9;
}
.card-ink span,
.card-ink p,
.card-wine span,
.card-wine p,
.card-blue span,
.card-blue p,
.card-olive span,
.card-olive p {
  color: rgba(246, 239, 227, 0.84);
}
.card-ink:hover span,
.card-ink:hover p,
.card-wine:hover span,
.card-wine:hover p,
.card-blue:hover span,
.card-blue:hover p,
.card-olive:hover span,
.card-olive:hover p {
  color: rgba(246, 239, 227, 0.88);
}
.card-ink .chip-row em,
.card-wine .chip-row em,
.card-blue .chip-row em {
  border-color: rgba(246, 239, 227, 0.24);
  background: rgba(246, 239, 227, 0.13);
  color: rgba(246, 239, 227, 0.9);
}
.card-ink .campaign-card-details,
.card-wine .campaign-card-details,
.card-blue .campaign-card-details {
  border-color: rgba(246, 239, 227, 0.24);
  color: rgba(246, 239, 227, 0.84);
}
.card-ink .campaign-card-details strong,
.card-wine .campaign-card-details strong,
.card-blue .campaign-card-details strong {
  color: rgba(246, 239, 227, 0.9);
}
.card-ink:before,
.card-wine:before,
.card-blue:before {
  background: rgba(246, 239, 227, 0.12);
}
.card-olive .chip-row em {
  border-color: rgba(246, 239, 227, 0.24);
  background: rgba(246, 239, 227, 0.13);
  color: rgba(246, 239, 227, 0.9);
}
.card-olive:before {
  background: rgba(246, 239, 227, 0.12);
}
.campaign-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}
@media (min-width: 1081px) {
  .campaign-card.card-ink,
  .campaign-card.card-olive {
    grid-column: span 3;
  }
  .campaign-card.card-cream {
    grid-column: span 6;
  }
}
@media (max-width: 1080px) {
  .motion-wall .tile:nth-child(2),
  .motion-wall .tile:nth-child(3) {
    transform: none;
  }
  .proof-cards {
    grid-template-columns: 1fr;
  }
  .growth-loop-card {
    grid-template-columns: 1fr;
  }
  .growth-step {
    grid-template-columns: 1fr;
  }
  .growth-step p {
    grid-column: auto;
  }
  .campaign-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcome-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .campaign-card:not(.campaign-card-wide) {
    grid-column: span 1;
  }
  .campaign-card-wide {
    grid-column: span 2;
  }
}
@media (max-width: 620px) {
  .nav .brand {
    padding: 0;
  }
  .nav .brand-wordmark-link .brand-wordmark {
    width: 128px;
  }
  .motion-wall {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    width: 100%;
    max-width: min(100%, 354px);
    margin-top: 22px;
  }
  .motion-wall .tile {
    min-height: 250px;
  }
  .motion-wall .tile.big {
    min-height: 310px;
  }
  .hero .tile,
  .film-strip .tile {
    border-radius: 16px;
  }
  .proof-card {
    min-height: 210px;
    padding: 24px;
  }
  .growth-orbit {
    width: min(100%, 236px);
    margin-bottom: 4px;
  }
  #growth-loop {
    padding-top: 42px;
  }
  #growth-loop .section-head {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }
  #growth-loop .label {
    font-size: 11px;
  }
  .growth-loop-title p {
    font-size: clamp(27px, 8vw, 34px);
  }
  .growth-loop-card {
    padding: 18px 18px 24px;
    gap: 22px;
  }
  .growth-step {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    align-items: start;
    gap: 10px;
    padding: 0 6px 22px;
  }
  .growth-loop-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .growth-step p {
    grid-column: 2;
    max-width: 270px;
    text-align: left;
  }
  .growth-step h3 {
    font-size: clamp(32px, 10vw, 42px);
    text-align: left;
  }
  .campaign-cards {
    grid-template-columns: 1fr;
  }
  .outcome-cards {
    grid-template-columns: 1fr;
  }
  .campaign-paths-section {
    padding-top: 58px;
  }
  .campaign-paths-section .section-head {
    margin-bottom: 22px;
  }
  .campaign-paths-section .section-head h2 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .campaign-paths-section .section-copy {
    font-size: 17px;
    line-height: 1.45;
  }
  .service-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: -2px 0 22px;
  }
  .service-flow i {
    display: none;
  }
  .service-flow span {
    display: inline-flex;
    border: 1px solid rgba(91, 16, 24, 0.18);
    border-radius: 999px;
    padding: 7px 8px;
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }
  .service-flow span:last-child:before {
    content: none;
  }
  .campaign-card:not(.campaign-card-wide) {
    grid-column: auto;
  }
  .campaign-card-wide {
    grid-column: auto;
  }
  .campaign-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }
  .campaign-card {
    min-height: 0;
    padding: 22px;
    gap: 16px;
  }
  .outcome-card {
    min-height: 0;
  }
  .campaign-card-details {
    font-size: 13px;
  }
  .campaign-paths-section .section-head {
    margin-bottom: 30px;
  }
  .campaign-card h3 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 0.94;
  }
  .campaign-card p {
    font-size: 15.5px;
    line-height: 1.5;
  }
  .campaign-card-details {
    font-size: 14px;
    line-height: 1.42;
  }
  .chip-row em {
    font-size: 9.5px;
    padding: 7px 8px;
  }
}

/* Software section: makes websites, apps, and automations feel like one offer. */
.system-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 5vw, 58px) 0;
}
.system-band h2 {
  font-size: clamp(44px, 6vw, 92px);
}
.system-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.system-list div {
  display: grid;
  gap: 14px;
  background: var(--paper);
  padding: 24px;
}
.system-list strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.system-list span {
  color: #756b60;
  line-height: 1.55;
}
.hero h1 {
  font-size: clamp(58px, 7.8vw, 126px);
  line-height: 0.91;
  letter-spacing: -0.048em;
  max-width: 900px;
}
@media (max-width: 1080px) {
  .system-band {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .nav {
    min-height: 68px;
    gap: 10px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .nav .brand {
    flex: 0 1 auto;
  }
  .mobile-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
    width: auto;
    min-width: 74px;
    padding: 0 14px;
  }
  .mobile-panel {
    inset: 76px 10px auto;
    max-height: calc(100svh - 88px);
    overflow: auto;
  }
  .hero,
  .hero-inner {
    min-height: auto;
  }
  .hero-inner {
    width: auto;
    padding-top: 28px;
    padding-bottom: 74px;
  }
  .hero-copy {
    max-width: 100%;
    width: min(100%, calc(100vw - 32px));
  }
  .hero-copy .eyebrow:last-child {
    margin-top: 14px;
    margin-bottom: 0;
  }
  .eyebrow,
  .label,
  .mini,
  .tag,
  .metric span,
  .btn,
  .nav-cta {
    letter-spacing: 0.1em;
  }
  .ctas {
    margin-top: 20px;
  }
  .hero h1 {
    font-size: 46px;
    line-height: 0.92;
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  .hero .intro {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    margin-top: 18px;
  }
  .section-head,
  .section-head > *,
  .hero-copy,
  .intro,
  .section-copy,
  .card,
  .campaign-card,
  .footer,
  .footer * {
    max-width: 100%;
  }
  .section-head h2,
  .section-copy {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  .footer a,
  .footer p {
    overflow-wrap: anywhere;
  }
  .motion-wall .tile {
    min-height: 210px;
  }
  .motion-wall .tile.big {
    min-height: 250px;
  }
  .tile:after {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
    gap: 10px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
    width: auto;
    min-width: 74px;
    padding: 0 14px;
  }
  .mobile-panel {
    inset: 76px 10px auto;
    max-height: calc(100svh - 88px);
    overflow: auto;
  }
  .hero,
  .hero-inner {
    min-height: auto;
  }
  .hero-inner {
    width: auto;
    max-width: 100%;
    grid-template-columns: 1fr;
    padding: 28px 16px 54px;
  }
  .hero-copy,
  .hero h1,
  .hero .intro,
  .section-head h2,
  .section-copy {
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  .hero h1 {
    font-size: clamp(46px, 9vw, 72px);
    line-height: 0.92;
  }
  .hero .intro,
  .section-copy {
    font-size: 17px;
  }
  .motion-wall {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    margin-top: 22px;
  }
  .motion-wall .tile {
    min-height: 210px;
  }
  .motion-wall .tile.big {
    min-height: 250px;
  }
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .content-day-copy h1 {
    max-width: 11.6ch;
    font-size: clamp(48px, 13vw, 62px);
    line-height: 0.9;
  }
  .content-day-copy p {
    font-size: 18px;
  }
  .content-day-hero {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
  }
  .content-day-video-stage {
    gap: 10px;
  }
  .content-day-video-stage-single .content-day-reel-main {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.03;
  }
  .content-day-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-day-strip span {
    min-height: 52px;
    padding: 0 8px;
    font-size: 10px;
  }
  .content-day-included {
    grid-template-columns: 1fr;
  }
  .content-example-group {
    grid-template-columns: 1fr;
  }
  .content-example-group-head {
    min-height: auto;
    gap: 28px;
    padding: 18px;
  }
  .content-example-group-head h3 {
    max-width: 12ch;
    font-size: 38px;
  }
  .content-idea-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    padding: 0;
  }
  .content-example-group .content-idea-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-idea-strip article {
    min-height: 236px;
  }
  .content-idea-strip span,
  .content-idea-strip strong {
    left: 10px;
    right: 10px;
  }
  .content-idea-strip span {
    bottom: 70px;
    font-size: 9px;
  }
  .content-idea-strip strong {
    bottom: 14px;
    font-size: 13px;
    line-height: 1.22;
  }
  .content-day-included article {
    min-height: 0;
    gap: 24px;
  }
  .content-day-included h3 {
    max-width: none;
  }
  .proof-reel div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .proof-reel strong {
    font-size: clamp(34px, 11vw, 46px);
  }
  .proof-reel-feature {
    min-height: 520px;
  }
  .proof-notes strong {
    max-width: none;
    font-size: clamp(32px, 10vw, 42px);
  }
  .proof-notes-short {
    grid-template-columns: 1fr;
  }
  .landing-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(246, 239, 227, 0.38);
    border-radius: 999px;
    background: var(--ivory);
    color: var(--black);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }
  .content-day-form-section,
  .footer {
    scroll-margin-bottom: 86px;
  }
}

@media (max-width: 360px) {
  .content-idea-strip {
    grid-template-columns: 1fr;
  }
  .content-example-group .content-idea-strip {
    grid-template-columns: 1fr;
  }
  .content-idea-strip article {
    min-height: 360px;
  }
  .content-idea-strip span {
    bottom: 82px;
    font-size: 10px;
  }
  .content-idea-strip strong {
    bottom: 16px;
    font-size: 15px;
    line-height: 1.18;
  }
}

/* V1 responsive refinement: navigation, hero wrapping, and growth-loop motion. */
.hero-copy {
  justify-content: flex-start;
}
.case-card-metrics {
  justify-content: space-between;
}
.case-card-metrics .deliche-food-photo {
  position: relative;
  inset: auto;
  width: calc(100% - 36px);
  height: clamp(190px, 24vw, 250px);
  margin: 18px 18px 0;
  border: 1px solid rgba(246, 239, 227, 0.16);
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(0.92) contrast(1.02);
}
.case-card-metrics .deliche-dashboard {
  position: relative;
  inset: auto;
  margin: 22px 22px 0;
}
.case-card-metrics .body {
  padding-top: 18px;
}
.hero-inner {
  gap: clamp(28px, 5vw, 72px);
}
.motion-wall {
  width: min(100%, 670px);
}
.growth-loop-card {
  grid-template-columns: minmax(250px, 0.72fr) minmax(320px, 1fr);
  width: min(100%, 980px);
  max-width: 980px;
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(12px, 2vw, 26px);
}
.growth-orbit {
  width: min(100%, 360px);
}
.growth-orbit-ring-outer {
  border-color: rgba(91, 16, 24, 0.52);
  box-shadow:
    inset 0 0 0 10px rgba(91, 16, 24, 0.025),
    0 28px 80px rgba(91, 16, 24, 0.08);
}
.growth-orbit-path {
  animation-duration: 14s;
}
.orbit-dot {
  width: 30px;
  height: 30px;
  box-shadow:
    0 0 0 9px rgba(91, 16, 24, 0.08),
    0 0 0 18px rgba(91, 16, 24, 0.035);
}
.growth-orbit-core {
  width: min(54%, 156px);
  background: rgba(255, 252, 246, 0.74);
}
.growth-loop-steps {
  grid-template-columns: 1fr;
  align-self: center;
  gap: 10px;
}
.growth-step {
  min-height: 0;
  grid-template-columns: 104px minmax(0, 1fr);
  justify-items: start;
  align-items: start;
  gap: 12px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(91, 16, 24, 0.16);
  animation: growthStepPulse 14s ease-in-out infinite;
}
.growth-step:last-child {
  border-bottom: 1px solid rgba(91, 16, 24, 0.16);
}
.growth-step:nth-child(2) {
  animation-delay: 4.66s;
}
.growth-step:nth-child(3) {
  animation-delay: 9.32s;
}
.growth-step span {
  justify-self: start;
}
.growth-step p {
  grid-column: 2;
  max-width: 430px;
  font-size: clamp(15px, 1.45vw, 18px);
  text-align: left;
}
.case-card-app img {
  object-position: center top;
  opacity: 0.9;
}
.case-card-app .body p {
  color: rgba(21, 19, 16, 0.72);
}
@keyframes growthStepPulse {
  0%,
  22%,
  100% {
    opacity: 0.58;
    transform: translateX(0);
  }
  8%,
  16% {
    opacity: 1;
    transform: translateX(8px);
  }
}
@media (min-width: 761px) {
  .nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    overflow: visible;
  }
  .nav-links {
    display: flex;
    justify-content: flex-end;
    gap: clamp(8px, 0.85vw, 16px);
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-links a:not(.nav-cta) {
    display: inline-flex;
  }
  .nav-links a {
    font-size: clamp(9px, 0.72vw, 11px);
    letter-spacing: 0.11em;
  }
  .nav-links .nav-cta {
    min-height: 40px;
    padding: 0 13px;
  }
  .mobile-menu-button {
    display: none;
  }
}
@media (min-width: 981px) and (max-width: 1240px) {
  .hero-inner {
    grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 0.78fr);
  }
  .motion-wall {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.82fr);
    grid-template-rows: 210px 300px;
  }
  .hero h1 {
    font-size: clamp(58px, 7vw, 96px);
  }
}
@media (min-width: 761px) and (max-width: 900px) {
  .nav {
    padding-inline: 14px;
    align-items: start;
  }
  .nav .brand {
    padding: 8px 10px;
  }
  .nav .brand-wordmark-link .brand-wordmark {
    width: 128px;
  }
  .nav-links {
    gap: 8px;
    flex-wrap: wrap;
    align-content: center;
    row-gap: 7px;
    overflow: visible;
  }
  .nav-links a:not(.nav-cta):nth-child(n + 7) {
    display: inline-flex;
  }
  .nav-links a {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .nav-links .nav-cta {
    min-height: 36px;
    padding: 0 10px;
  }
}
@media (max-width: 980px) {
  .hero-copy {
    gap: 0;
  }
  .motion-wall.compact-wall {
    margin-left: 0;
  }
}
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .motion-wall {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: 220px 220px;
  }
  .motion-wall .tile.big {
    grid-row: span 2;
  }
  .growth-loop-card {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .growth-orbit {
    width: min(100%, 300px);
  }
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-button {
    display: inline-flex;
  }
  .case-card h3 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 0.94;
  }
  .case-card p {
    font-size: 16px;
  }
  #selected-work {
    overflow: hidden;
  }
  .selected-case-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .selected-case-grid .case-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
  }
  .case-card-app {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
    gap: 14px;
  }
  .case-card-app .body {
    max-width: none;
    width: 100%;
  }
  .app-showcase {
    order: -1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 0.72;
    overflow: hidden;
    border-radius: 24px;
  }
  .app-showcase .app-screen-main {
    left: 50%;
    right: auto;
    top: 16px;
    width: min(82%, 310px);
    height: calc(100% - 32px);
    transform: translateX(-50%);
  }
  .app-showcase .app-screen-flow,
  .app-showcase .app-screen-memory {
    display: none;
  }
  .app-showcase-system:before {
    inset: 18px;
    border-style: solid;
    opacity: 0.28;
    transform: none;
  }
  .app-showcase-system:after {
    display: none;
  }
}
@media (max-width: 620px) {
  .selected-case-grid .case-card:not(.case-card-app):not(.case-card-metrics) {
    display: grid;
    grid-template-rows: auto auto;
    background: var(--black);
  }
  .selected-case-grid .case-card:not(.case-card-app):not(.case-card-metrics):before,
  .selected-case-grid .case-card:not(.case-card-app):not(.case-card-metrics):after {
    content: none;
  }
  .selected-case-grid .case-card:not(.case-card-app):not(.case-card-metrics) video,
  .selected-case-grid .case-card:not(.case-card-app):not(.case-card-metrics) img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: clamp(330px, 112vw, 500px);
    object-fit: cover;
    opacity: 0.9;
  }
  .selected-case-grid .case-card:not(.case-card-app):not(.case-card-metrics) .body {
    position: relative;
    background:
      linear-gradient(180deg, rgba(21, 19, 16, 0.94), rgba(5, 5, 5, 0.98)),
      var(--black);
    border-top: 1px solid rgba(246, 239, 227, 0.12);
  }
  .case-card-metrics {
    min-height: 0;
    padding-bottom: 0;
  }
  .launch-filter {
    grid-template-columns: 1fr;
  }
  .launch-filter span {
    min-height: 0;
  }
  .deliche-dashboard {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 18px 18px 0;
  }
  .deliche-stat.hero-stat {
    grid-column: 1/-1;
    min-height: 96px;
  }
  .deliche-stat {
    min-height: 86px;
    padding: 10px;
  }
  .deliche-stat strong {
    font-size: clamp(34px, 10vw, 48px);
  }
  .deliche-stat.hero-stat strong {
    font-size: clamp(52px, 16vw, 68px);
  }
  .deliche-stat span {
    margin-bottom: 4px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .deliche-bars {
    height: 46px;
  }
  .growth-step {
    grid-template-columns: 1fr;
  }
  .growth-step p {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  .motion-wall {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .motion-wall .tile.big {
    grid-row: auto;
  }
  .growth-orbit {
    width: min(100%, 270px);
  }
  .orbit-dot b {
    --orbit-label-scale: 0.9;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .orbit-dot-1 b {
    transform: translate(-50%, -50%) rotate(0deg) scale(var(--orbit-label-scale));
  }
  .orbit-dot-2 b,
  .orbit-dot-3 b {
    transform: translate(-50%, -50%) rotate(0deg) scale(var(--orbit-label-scale));
  }
}
@media (max-width: 860px) {
  .hero .motion-wall.compact-wall {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    margin-top: 34px;
  }
  .hero .motion-wall.compact-wall .tile,
  .hero .motion-wall.compact-wall .tile.big {
    grid-row: auto;
    width: 100%;
    min-height: 0;
    border-radius: 24px;
    border-color: rgba(246, 239, 227, 0.22);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  }
  .hero .motion-wall.compact-wall .tile.big {
    aspect-ratio: 0.82;
  }
  .hero .motion-wall.compact-wall .launch-tile,
  .hero .motion-wall.compact-wall .proof-tile {
    aspect-ratio: 1.45;
    min-height: 300px;
  }
  .hero .motion-wall.compact-wall video {
    filter: saturate(1.06) contrast(1.08);
  }
  .hero .motion-wall.compact-wall .tile.big video {
    object-position: center 28%;
  }
  .hero .motion-wall.compact-wall .launch-tile video {
    object-position: center 34%;
  }
  .hero .motion-wall.compact-wall .proof-tile video {
    object-position: center 48%;
  }
  .hero .motion-wall.compact-wall .tile:after {
    left: 14px;
    bottom: 14px;
    padding: 10px 12px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.36);
  }
}
@media (max-width: 620px) {
  .hero .motion-wall.compact-wall {
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-top: 34px;
  }
  .hero .motion-wall.compact-wall .tile {
    width: 100%;
    min-height: 0;
    border-radius: 24px;
    border-color: rgba(246, 239, 227, 0.22);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  }
  .hero .motion-wall.compact-wall .tile.big {
    grid-row: auto;
    aspect-ratio: 0.72;
    min-height: min(520px, 126vw);
  }
  .hero .motion-wall.compact-wall .launch-tile,
  .hero .motion-wall.compact-wall .proof-tile {
    aspect-ratio: 1.18;
    min-height: 280px;
  }
  .hero .motion-wall.compact-wall video {
    filter: saturate(1.06) contrast(1.08);
  }
  .hero .motion-wall.compact-wall .tile.big video {
    object-position: center 30%;
  }
  .hero .motion-wall.compact-wall .launch-tile video {
    object-position: center 38%;
  }
  .hero .motion-wall.compact-wall .proof-tile video {
    object-position: center 48%;
  }
  .hero .motion-wall.compact-wall .tile:after {
    left: 14px;
    bottom: 14px;
    padding: 10px 12px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.36);
  }
}
@media (prefers-reduced-motion: reduce) {
  .growth-orbit-path,
  .growth-step {
    animation: none;
  }
}
