@font-face {
  font-family: "Helvetica Regular";
  src: url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.eot");
  src:
    url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.eot?#iefix") format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.woff2") format("woff2"),
    url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.woff") format("woff"),
    url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.ttf") format("truetype"),
    url("https://db.onlinewebfonts.com/t/a64ff11d2c24584c767f6257e880dc65.svg#Helvetica Regular") format("svg");
}

:root {
  --bg: #090909;
  --bg-soft: #101011;
  --panel: rgba(255, 248, 236, 0.05);
  --panel-strong: rgba(255, 248, 236, 0.09);
  --line: rgba(255, 248, 236, 0.11);
  --text: #f8f1e7;
  --muted: rgba(248, 241, 231, 0.72);
  --mint: #b8e6df;
  --gold: #e3be75;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Source Han Sans SC", "Source Han Sans CN", "Noto Sans SC",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 230, 223, 0.09), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(227, 190, 117, 0.1), transparent 22%),
    linear-gradient(180deg, #080808 0%, #0b0b0c 30%, #111112 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 52%);
}

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

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

button,
dialog {
  font: inherit;
}

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

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 3200;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  box-shadow: 0 0 18px rgba(116, 244, 216, 0.5);
}

.page-shell {
  position: relative;
  padding: 18px 0 120px;
}

.section,
.footer {
  width: var(--content-width);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(56px, 8vw, 104px) 0;
}

.hero.section {
  padding-top: clamp(32px, 4vw, 68px);
  padding-bottom: clamp(120px, 12vw, 220px);
  margin-bottom: clamp(84px, 12vw, 180px);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.agency-hero-shell {
  --agency-background: 213 45% 67%;
  --agency-foreground: 0 0% 100%;
  --agency-card: 213 45% 62%;
  --agency-secondary: 213 45% 72%;
  --agency-border: rgba(255, 255, 255, 0.2);
  --agency-glass-bg: rgba(255, 255, 255, 0.12);
  --agency-glass-border: rgba(255, 255, 255, 0.25);
  --agency-glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  --agency-glass-blur: 16px;
  position: relative;
  z-index: 2;
  width: 100vw;
  margin: -18px calc(50% - 50vw) 0;
  background: #000;
  color: #fff;
  overflow: visible;
}

.agency-liquid-glass,
.agency-liquid-glass-strong {
  position: relative;
  overflow: hidden;
  border: none;
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
}

.agency-liquid-glass {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.agency-liquid-glass-strong {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow:
    4px 4px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.agency-liquid-glass::before,
.agency-liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.metal-fx-btn {
  isolation: isolate;
  position: relative;
  overflow: visible;
}

.metal-fx-btn::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  padding: 3px;
  background-size: 240% 240%;
  background-position: 0% 50%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  filter: blur(9px);
  animation: metal-fx-flow 4.2s linear infinite;
  pointer-events: none;
}

.metal-fx-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1.5px;
  background-size: 240% 240%;
  background-position: 0% 50%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: metal-fx-flow 4.2s linear infinite;
  pointer-events: none;
}

.metal-fx-btn > * {
  position: relative;
  z-index: 1;
}

.metal-fx-btn--chromatic::after {
  background-image: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(245, 244, 255, 0.92) 12%,
    rgba(175, 220, 255, 0.88) 26%,
    rgba(225, 188, 255, 0.84) 42%,
    rgba(255, 225, 176, 0.82) 58%,
    rgba(192, 255, 242, 0.78) 72%,
    rgba(255, 255, 255, 0.08) 100%
  );
  filter:
    drop-shadow(0 0 10px rgba(190, 223, 255, 0.22))
    drop-shadow(0 0 20px rgba(231, 198, 255, 0.16));
}

.metal-fx-btn--chromatic::before {
  background-image: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(245, 244, 255, 0.42) 14%,
    rgba(175, 220, 255, 0.4) 30%,
    rgba(225, 188, 255, 0.34) 46%,
    rgba(255, 225, 176, 0.28) 62%,
    rgba(192, 255, 242, 0.26) 78%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.metal-fx-btn--gold::after {
  background-image: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 245, 215, 0.94) 12%,
    rgba(243, 209, 132, 0.96) 30%,
    rgba(255, 236, 188, 0.9) 46%,
    rgba(206, 163, 86, 0.82) 62%,
    rgba(255, 247, 224, 0.78) 78%,
    rgba(255, 255, 255, 0.06) 100%
  );
  filter:
    drop-shadow(0 0 10px rgba(242, 209, 132, 0.24))
    drop-shadow(0 0 20px rgba(242, 209, 132, 0.14));
}

.metal-fx-btn--gold::before {
  background-image: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 245, 215, 0.42) 14%,
    rgba(243, 209, 132, 0.4) 30%,
    rgba(255, 236, 188, 0.34) 46%,
    rgba(206, 163, 86, 0.3) 62%,
    rgba(255, 247, 224, 0.24) 78%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.metal-fx-btn:hover::after {
  animation-duration: 3s;
}

.metal-fx-btn:hover::before {
  animation-duration: 3s;
}

@keyframes metal-fx-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

.agency-hero {
  position: relative;
  overflow: visible;
  height: 1080px;
  background: #000;
}

.agency-nav {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}

.agency-nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.agency-nav-logo img {
  width: 48px;
  height: 48px;
  display: block;
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  color: #f8f1e7;
  background:
    radial-gradient(circle at 18% 14%, rgba(242, 209, 132, 0.14), transparent 22rem),
    radial-gradient(circle at 82% 78%, rgba(0, 229, 155, 0.12), transparent 24rem),
    rgba(0, 0, 0, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-nav-panel.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel__inner {
  position: relative;
  width: min(100%, 420px);
}

.mobile-nav-panel__close {
  position: absolute;
  top: -72px;
  right: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.mobile-nav-panel__links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav-panel__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 241, 229, 0.92);
  font-size: clamp(1.35rem, 6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mobile-nav-panel__links a:last-child {
  border-bottom: 0;
}

.mobile-nav-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 16px;
  margin-left: 8px;
  padding: 0 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dffdb 0%, #ffe082 46%, #ff6edb 100%);
  color: #07100d;
  font-family: "Barlow", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow:
    0 0 16px rgba(125, 255, 219, 0.42),
    0 0 22px rgba(255, 110, 219, 0.24);
}

body.mobile-nav-open {
  overflow: hidden;
}

.agency-nav-center {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 9999px;
}

.agency-nav-center a {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: visible;
}

.agency-nav-link--new {
  display: inline-flex;
  align-items: center;
}

.agency-nav-new-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 15px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dffdb 0%, #ffe082 46%, #ff6edb 100%);
  color: #07100d;
  font-family: "Barlow", sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 16px rgba(125, 255, 219, 0.45),
    0 0 22px rgba(255, 110, 219, 0.25);
  pointer-events: none;
}

.agency-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  border-radius: 9999px;
  background: #fff;
  color: #000 !important;
  padding-inline: 14px !important;
}

.agency-nav-cta--animated {
  position: relative;
  justify-content: center;
  gap: 10px;
  min-width: 132px;
  min-height: 38px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 10px 28px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.agency-nav-cta--animated::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 50%, rgba(153, 245, 214, 0.34), transparent 34%),
    radial-gradient(circle at 80% 50%, rgba(255, 222, 154, 0.28), transparent 34%),
    #fff;
  opacity: 0.92;
}

.agency-nav-cta--animated:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.agency-nav-cta-label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.agency-nav-cta-flow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 14px;
  overflow: hidden;
  flex: 0 0 24px;
}

.agency-nav-cta-flow i {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}

.agency-nav-cta-flow i:nth-child(1) {
  animation-delay: 0s;
}

.agency-nav-cta-flow i:nth-child(2) {
  animation-delay: 0.22s;
}

.agency-nav-cta-flow i:nth-child(3) {
  animation-delay: 0.44s;
}

.agency-nav-cta-flow--right i {
  transform: rotate(-135deg);
  animation: agencyNavArrowLeft 1.45s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.agency-nav-cta-flow--left i {
  transform: rotate(45deg);
  animation: agencyNavArrowRight 1.45s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.agency-nav-cta--animated:hover .agency-nav-cta-flow i {
  animation-duration: 1.05s;
}

@keyframes agencyNavArrowRight {
  0% {
    opacity: 0;
    transform: translateX(-12px) rotate(45deg);
  }
  24% {
    opacity: 0.95;
  }
  72% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translateX(12px) rotate(45deg);
  }
}

@keyframes agencyNavArrowLeft {
  0% {
    opacity: 0;
    transform: translateX(12px) rotate(-135deg);
  }
  24% {
    opacity: 0.95;
  }
  72% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translateX(-12px) rotate(-135deg);
  }
}

.agency-hero-video {
  position: absolute;
  left: 0;
  top: 49%;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.agency-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.05);
}

.agency-hero-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 300px;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
}

.agency-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding-top: 176px;
  padding-bottom: 72px;
  padding-inline: 24px;
  text-align: center;
}

.agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border-radius: 9999px;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
}

.agency-badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.agency-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.2em;
  max-width: 1120px;
  margin: 30px auto 0;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.8rem, 9vw, 5.5rem);
  font-style: italic;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.agency-blur-word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(50px);
  animation: agencyBlurIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--word-index) * 0.1s);
}

.agency-title .agency-blur-word:nth-child(2) {
  font-size: 1em;
}

.agency-subtext {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.18;
  opacity: 0;
  filter: none;
  transform: translateY(20px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  animation: agencySubtextReveal 0.45s ease forwards 0.8s;
}

.agency-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  animation: agencyFadeUp 0.6s ease forwards 1.1s;
}

.agency-workflow-shell {
  width: min(1180px, 100%);
  margin: 1.5rem auto 0;
  padding: 0;
}

.agency-workflow {
  position: relative;
  width: 100%;
  height: 430px;
  margin: 0 auto;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  animation: agencyFadeUp 0.6s ease forwards 1.25s;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 56% 38%, rgba(184, 230, 223, 0.13), transparent 28%),
    radial-gradient(circle at 32% 70%, rgba(227, 190, 117, 0.1), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.042) 1px, transparent 1px),
    rgba(6, 7, 7, 0.42);
  background-size:
    auto,
    auto,
    26px 26px,
    26px 26px,
    auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -56px 90px rgba(0, 0, 0, 0.24),
    0 24px 70px rgba(0, 0, 0, 0.22);
}

.agency-workflow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.agency-workflow-lines-mobile {
  display: none;
}

.agency-workflow-lines-tablet {
  display: none;
}

.agency-workflow-lines path {
  fill: none;
  stroke: rgba(226, 225, 216, 0.5);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(184, 230, 223, 0.18));
}

.agency-workflow-lines-tablet path {
  fill: none;
  stroke: rgba(226, 225, 216, 0.52);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(184, 230, 223, 0.2));
}

.agency-node {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(13, 14, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(227, 190, 117, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.agency-node::before,
.agency-node::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(184, 230, 223, 0.96);
  border: 2px solid rgba(10, 10, 10, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 15px rgba(184, 230, 223, 0.48);
}

.agency-node::selection {
  background: transparent;
}

.agency-node img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(5, 7, 7, 0.76);
}

.agency-node--rodin img {
  object-position: center 22%;
}

.agency-node--reference img {
  object-position: center 66%;
}

.agency-node--stable img,
.agency-node--video img {
  object-position: center 64%;
}

.agency-node--prompt img {
  object-position: center 50%;
}

.agency-node--hand img {
  object-position: center 34%;
}

.agency-node-label {
  position: absolute;
  top: 0.8rem;
  left: 0.9rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Barlow", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agency-node-label em {
  color: rgba(255, 255, 255, 0.56);
  font-style: normal;
  margin-left: 0.38rem;
}

.agency-node--rodin {
  top: 62px;
  left: 52px;
  width: 170px;
  height: 118px;
}

.agency-node--rodin::before {
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.agency-node--reference {
  top: 176px;
  left: 52px;
  bottom: auto;
  width: 170px;
  height: 104px;
}

.agency-node--reference::before {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.agency-node--stable {
  top: 116px;
  left: 420px;
  width: 260px;
  height: 190px;
}

.agency-node--stable::before {
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.agency-node--stable::after {
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.agency-node--prompt {
  top: 290px;
  left: 52px;
  width: 170px;
  height: 82px;
  border-radius: 1rem;
}

.agency-node--prompt::before {
  top: 50%;
  right: -5px;
  left: auto;
  transform: translateY(-50%);
}

.agency-node--prompt::after {
  display: none;
}

.agency-node--hand {
  top: 138px;
  left: 812px;
  width: 158px;
  height: 184px;
}

.agency-node--hand::before {
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.agency-node--hand::after {
  display: none;
}

.agency-node--video {
  top: 330px;
  right: auto;
  left: 450px;
  width: 230px;
  height: 72px;
}

.agency-node--video::before {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.agency-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  padding: 14px 22px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.agency-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.agency-play {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}

.agency-play::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}

.agency-partners {
  margin-top: 38px;
  padding-top: 0;
  padding-bottom: 32px;
}

.agency-partners-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
}

.agency-partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
}

.agency-partner-duplicate {
  display: none;
}

.agency-start-shell {
  position: relative;
  width: 100vw;
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 0 3rem;
  z-index: 4;
}

.agency-start {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 0;
  background: #000;
}

.agency-start-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) brightness(0.8);
}

.agency-start-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.agency-start-fade--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent);
}

.agency-start-fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.agency-start-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem 1.5rem;
  text-align: center;
}

.agency-start-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.agency-start-title {
  display: flex;
  max-width: 9.5em;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.06em 0.18em;
  margin: 0;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.agency-start-title .agency-blur-word {
  display: inline-block;
  white-space: nowrap;
}

.agency-start-copy {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  line-height: 1.45;
}

.agency-start-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 180ms ease, gap 180ms ease;
}

.agency-start-cta:hover {
  gap: 1rem;
  transform: translateY(-1px);
}

.agency-start-banner {
  overflow: hidden;
  margin: -4.5rem auto 0;
  border-radius: 1.6rem;
  max-width: 1320px;
  position: relative;
  z-index: 5;
}

.agency-start-banner picture,
.agency-start-banner img {
  display: block;
  width: 100%;
}

.agency-start-banner img {
  height: auto;
}

.agency-award-showcase {
  position: relative;
  z-index: 6;
  overflow: hidden;
  width: min(1320px, calc(100vw - 32px));
  margin: -4.5rem auto 2.4rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 18% 42%, rgba(28, 61, 57, 0.5), transparent 28%),
    radial-gradient(circle at 82% 44%, rgba(102, 78, 34, 0.28), transparent 30%),
    linear-gradient(90deg, #000 0%, #020303 16%, rgba(4, 8, 8, 0.92) 50%, #020303 84%, #000 100%);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.agency-award-showcase::before,
.agency-award-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.agency-award-showcase::before {
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 10%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 72%, rgba(0, 0, 0, 0.88) 90%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 20%, transparent 78%, rgba(0, 0, 0, 0.28));
}

.agency-award-showcase::after {
  opacity: 0.36;
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.08), transparent 25%),
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.06), transparent 25%);
  filter: blur(20px);
}

.agency-award-showcase img {
  position: relative;
  z-index: 0;
  display: block;
  width: min(520px, 100%);
  max-width: none;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.45);
}

.agency-section-shell {
  position: relative;
  padding: 2rem 2rem 3rem;
  z-index: 3;
}

.agency-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.agency-canvas-shell {
  max-width: 1320px;
  margin: 0 auto 2.5rem;
}

.agency-canvas-grid {
  margin-top: 1.4rem;
}

.agency-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.agency-section-title {
  margin: 0;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.agency-section-title--focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.24em;
  line-height: 1.18;
  margin: 1rem 0 3.35rem;
}

.agency-section-title--focus span {
  display: block;
}

.agency-section-title--focus span:last-child {
  max-width: 15.5em;
}

.agency-section-title--focus .prisma-word {
  display: block;
}

.prisma-suite.is-visible .agency-section-title--focus .prisma-word {
  opacity: 1;
  transform: translateY(0);
}

.agency-chess-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto 1.5rem;
}

.agency-chess-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
}

.agency-chess-copy,
.agency-chess-media {
  border-radius: 1.6rem;
}

.agency-chess-copy {
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.02);
}

.agency-chess-copy h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.agency-chess-copy p {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.agency-chess-media {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  aspect-ratio: 1.22 / 1;
  background: #000;
}

.agency-chess-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agency-compare {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.agency-compare-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.28);
}

.agency-compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.agency-compare-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, var(--compare-position, 50%) 0, var(--compare-position, 50%) 100%, 0 100%);
  z-index: 2;
}

.agency-compare-frame > .agency-compare-image {
  position: absolute;
  inset: 0;
}

.agency-compare-overlay .agency-compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.agency-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position, 50%);
  z-index: 4;
  width: 2px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.agency-compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.agency-compare-handle::before,
.agency-compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.62rem;
  height: 0.62rem;
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-right: 2px solid rgba(255, 255, 255, 0.92);
}

.agency-compare-handle::before {
  left: 0.82rem;
  transform: translateY(-50%) rotate(-135deg);
}

.agency-compare-handle::after {
  right: 0.82rem;
  transform: translateY(-50%) rotate(45deg);
}

.agency-compare-label {
  position: absolute;
  top: 1rem;
  z-index: 5;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.agency-compare-label--before {
  left: 1rem;
}

.agency-compare-label--after {
  right: 1rem;
}

.agency-compare-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
  appearance: none;
  -webkit-appearance: none;
}

.agency-compare-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 100%;
  background: transparent;
}

.agency-compare-range::-webkit-slider-thumb {
  width: 1px;
  height: 100%;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}

.agency-compare-range::-moz-range-track {
  width: 100%;
  height: 100%;
  background: transparent;
}

.agency-compare-range::-moz-range-thumb {
  width: 1px;
  height: 100%;
  border: 0;
  opacity: 0;
}

.agency-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1320px;
  margin: 0 auto;
}

.agency-why-stack {
  display: grid;
  gap: 1.5rem;
}

.agency-why-card {
  border-radius: 1.6rem;
  padding: 1.8rem;
}

.agency-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  color: #fff;
  font-size: 1.1rem;
}

.agency-why-card h3 {
  display: block;
  margin-top: 1.1rem;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.agency-why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
}

.agency-stats-shell,
.agency-footer-shell {
  position: relative;
  padding: 1rem 2rem 3rem;
  z-index: 3;
}

.agency-stats,
.agency-footer-cta {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: #000;
}

.agency-stats-video,
.agency-footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-stats-video {
  filter: saturate(0) brightness(0.72);
}

.agency-footer-video {
  filter: brightness(0.72);
}

.agency-stats-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
  border-radius: 2rem;
}

.agency-stats-card article {
  text-align: center;
}

.agency-stats-card strong {
  display: block;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
}

.agency-stats-card span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
}

.agency-footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}

.agency-footer-content--lumina {
  width: min(100%, 1280px);
  min-height: 115vh;
  justify-content: flex-end;
  gap: 2rem;
  padding: 4rem 1.5rem 2rem;
  font-family: "Helvetica Regular", "Barlow", sans-serif;
}

.agency-footer-hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.agency-footer-content h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  transform: translateY(-20%);
}

.agency-footer-content p {
  max-width: 42rem;
  margin: 1.2rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.agency-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  transform: translateY(-20%);
}

.agency-footer-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
}

.lumina-footer {
  width: 100%;
  margin-top: clamp(4rem, 9vw, 16rem);
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.lumina-footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2.5rem 3rem;
  margin-bottom: 2.5rem;
  justify-items: center;
}

.lumina-footer-brand {
  grid-column: span 5;
  text-align: center;
}

.lumina-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.lumina-footer-logo img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: block;
}

.lumina-footer-brand p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.65;
}

.lumina-footer-links-grid {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  width: 100%;
  text-align: center;
}

.lumina-footer-links-grid h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lumina-footer-links-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lumina-footer-links-grid li + li {
  margin-top: 0.6rem;
}

.lumina-footer-links-grid a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  transition: color 0.25s ease;
}

.lumina-footer-links-grid a:hover {
  color: #fff;
}

.lumina-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.lumina-footer-bottom p,
.lumina-footer-socials span {
  margin: 0;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  opacity: 0.5;
}

.lumina-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lumina-footer-social-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.lumina-footer-social-row a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.lumina-footer-social-row a:hover {
  color: #fff;
}

.lumina-footer-social-row svg {
  width: 16px;
  height: 16px;
  display: block;
}

.insights-page {
  min-height: 100vh;
  font-family: "Helvetica Regular", "Barlow", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #040404 0%, #0a0a0b 44%, #101011 100%);
  color: #f4f4f0;
}

.insights-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 64px 16px 100px;
}

.insights-hero h1 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.insights-hero p {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.insights-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.insights-card {
  border-radius: 1.5rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.02);
}

.insights-card h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insights-card p,
.insights-card li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.insights-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.agency-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
}

.agency-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.agency-footer-links a {
  color: inherit;
}

@keyframes agencyBlurIn {
  0% {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
  }

  60% {
    filter: blur(5px);
    opacity: 0.5;
    transform: translateY(-5px);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes agencyFadeUp {
  from {
    filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes agencySubtextReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.prisma-suite {
  width: 100vw;
  margin: -18px calc(50% - 50vw) 0;
  color: #e1e0cc;
  background: #000000;
  font-family: "Almarai", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", sans-serif;
}

.prisma-hero {
  min-height: 100svh;
  padding: 16px;
  background: #000000;
}

.prisma-hero-frame {
  position: relative;
  min-height: calc(100svh - 32px);
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}

.prisma-video,
.prisma-feature-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prisma-noise-overlay,
.prisma-bg-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.prisma-noise-overlay {
  z-index: 1;
  opacity: 0.7;
  mix-blend-mode: overlay;
}

.prisma-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 42%, rgba(0, 0, 0, 0.6));
}

.prisma-nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: calc(100% - 24px);
  padding: 10px 22px 12px;
  border-radius: 0 0 18px 18px;
  background: #000000;
  color: rgba(225, 224, 204, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
  transform: translateX(-50%);
  white-space: nowrap;
}

.prisma-nav a {
  transition: color 0.2s ease;
}

.prisma-nav a:hover {
  color: #e1e0cc;
}

.prisma-hero-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  align-items: end;
  gap: 28px;
  padding: 0 28px 26px;
}

.prisma-title {
  position: relative;
  margin: 0;
  color: #e1e0cc;
  font-size: 11rem;
  font-weight: 400;
  line-height: 0.85;
}

.prisma-title-a {
  position: relative;
  display: inline-block;
}

.prisma-title-a span {
  position: absolute;
  top: 0.65em;
  right: -0.3em;
  font-size: 0.31em;
  line-height: 1;
}

.prisma-hero-side {
  display: grid;
  gap: 20px;
  justify-items: start;
  max-width: 470px;
  padding-bottom: 14px;
}

.prisma-description {
  margin: 0;
  color: rgba(222, 219, 200, 0.7);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 700;
}

.prisma-about,
.prisma-features {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 16px;
  background: #000000;
}

.prisma-about-card {
  width: min(100%, 1152px);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) 24px;
  border-radius: 10px;
  background: #101010;
  text-align: center;
}

.prisma-label {
  margin: 0 0 24px;
  color: #dedbc8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.prisma-about-title,
.prisma-features-head h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.25em;
  margin: 0 auto;
  color: #e1e0cc;
  font-weight: 400;
}

.prisma-about-title {
  max-width: 780px;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-wrap: balance;
}

.prisma-about-copy,
.prisma-about-accent {
  display: inline;
}

.prisma-about-accent {
  color: #e9d28f;
}

.prisma-serif {
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.prisma-letter {
  opacity: 0.24;
  transition: opacity 0.24s ease;
}

.prisma-letter.is-lit {
  opacity: 1;
}

.prisma-features {
  min-height: 100svh;
  overflow: hidden;
}

.prisma-feature-banner {
  width: min(100%, 1180px);
  margin: 0 auto 36px;
}

.prisma-feature-banner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.prisma-feature-banner picture {
  display: block;
}

.prisma-bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  opacity: 0.15;
}

.prisma-features-head {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto 40px;
  text-align: center;
}

.prisma-features-head h2 {
  max-width: 760px;
  font-size: 2.35rem;
  line-height: 1.15;
}

.prisma-muted-word {
  color: #6b6b6b;
}

.prisma-gradient-word {
  color: transparent;
  background-image: linear-gradient(90deg, #ff79c7 0%, #ffb3d9 28%, #f0ddb0 62%, #ffd85a 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: prismaGradientShift 4.8s ease-in-out infinite;
}

.prisma-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  width: min(100%, 1180px);
  min-height: 480px;
  margin: 0 auto;
}

.prisma-feature-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 480px;
  padding: 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #212121;
  color: #e1e0cc;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--card-delay, 0s),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--card-delay, 0s);
}

.prisma-feature-card.is-visible {
  opacity: 1;
  transform: scale(1);
}

.prisma-feature-video {
  background: #000000;
}

.prisma-feature-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.58));
}

.prisma-feature-video-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.8vw, 1.15rem);
  padding: 24px;
  text-align: center;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.76);
}

.prisma-feature-video-title {
  margin: 0;
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.prisma-feature-video-subtitle {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  line-height: 1.45;
}

.prisma-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.prisma-feature-card h3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 28px 0 24px;
  color: #e1e0cc;
  font-size: 1.24rem;
  line-height: 1.1;
}

.prisma-feature-card h3 em {
  color: #6f6f6f;
  font-size: 0.72rem;
  font-style: normal;
}

.prisma-feature-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: #a8a8a8;
  font-size: 0.9rem;
  line-height: 1.35;
}

.prisma-feature-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
}

.prisma-check {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #dedbc8;
}

.prisma-check::before {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  margin: 4px 0 0 3px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.prisma-feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dedbc8;
  font-size: 0.9rem;
  font-weight: 700;
}

.prisma-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--word-delay, 0s),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) var(--word-delay, 0s);
}

.prisma-word.is-visible,
.prisma-suite.is-visible .prisma-title .prisma-word {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.intro .section-head {
  margin-bottom: clamp(48px, 7vw, 88px);
}

.intro .scope-grid {
  margin-top: clamp(8px, 2vw, 20px);
}

.section-head--narrow {
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.45vw, 5.5rem);
  line-height: 1.1;
  font-weight: 800;
  max-width: none;
}

.hero h1 span {
  color: var(--gold);
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.16;
  font-weight: 800;
  max-width: 14ch;
}

.section-copy,
.hero-lead,
.tool-card p,
.truth-card p,
.scope-body,
.point-card p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: grid;
  gap: 5px;
}

.brand-mark {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.88rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.22s ease, background-color 0.22s ease,
    border-color 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button--solid {
  border-color: transparent;
  background: linear-gradient(120deg, #eaf8df 0%, #bff3cb 25%, #7ee3c5 50%, #dff9e1 75%, #bff3cb 100%);
  background-size: 240% 240%;
  color: #0b0b0c;
  font-weight: 800;
  animation: buttonGradientFlow 5.5s ease-in-out infinite;
}

.button--mint {
  box-shadow: 0 14px 30px rgba(108, 224, 177, 0.18);
}

.button--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 46%, transparent 56%);
  transform: translateX(-160%);
  transition: transform 0.65s ease;
  z-index: 0;
}

.button--solid:hover::before,
.button--solid:focus-visible::before {
  transform: translateX(160%);
}

.button--solid > span {
  position: relative;
  z-index: 1;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.button--sm {
  min-height: 40px;
  padding-inline: 18px;
}

@media (hover: hover) {
  .button:hover,
  .tab:hover {
    transform: translateY(-2px);
  }

  .case-card:hover figure {
    border-color: rgba(184, 230, 223, 0.28);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  }

}

@keyframes buttonGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroGlassDrift {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes heroGlassSheen {
  0%,
  100% {
    opacity: 0.24;
    transform: translateX(-40%) skewX(-14deg);
  }
  50% {
    opacity: 0.52;
    transform: translateX(40%) skewX(-14deg);
  }
}

@keyframes truthGlowDrift {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.05);
  }
}

@keyframes truthSheen {
  0%,
  100% {
    opacity: 0.16;
    transform: translateX(-42%) skewX(-12deg);
  }
  50% {
    opacity: 0.34;
    transform: translateX(42%) skewX(-12deg);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  justify-items: center;
  min-height: clamp(56svh, 66vw, 760px);
}

.hero-copy {
  display: grid;
  gap: clamp(34px, 4vw, 48px);
  justify-items: center;
  text-align: center;
  width: min(100%, 860px);
  min-height: clamp(52svh, 60vw, 660px);
  padding: clamp(24px, 4vw, 40px) clamp(18px, 3vw, 32px)
    clamp(28px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-message {
  display: grid;
  gap: 18px;
  justify-items: center;
  width: min(100%, 720px);
  margin-top: clamp(18px, 3vw, 32px);
  padding-top: clamp(10px, 1.5vw, 18px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(178, 239, 222, 0.12) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(227, 190, 117, 0.1) 100%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  isolation: isolate;
}

.hero-message::before,
.hero-message::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  border-radius: inherit;
}

.hero-message::before {
  background:
    radial-gradient(circle at 18% 26%, rgba(184, 230, 223, 0.26), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(227, 190, 117, 0.2), transparent 30%),
    radial-gradient(circle at 42% 90%, rgba(126, 227, 197, 0.18), transparent 28%);
  filter: blur(18px);
  opacity: 0.85;
  animation: heroGlassDrift 14s ease-in-out infinite alternate;
}

.hero-message::after {
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 46%, transparent 62%);
  transform: translateX(-35%);
  animation: heroGlassSheen 8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-message > * {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 42ch;
  margin-inline: auto;
  line-height: 1.9;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-actions {
  margin-top: 4px;
}

.hero-carousel {
  position: relative;
  width: min(100%, 420px);
  margin-top: clamp(34px, 5vw, 72px);
}

.hero-carousel-stage {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  aspect-ratio: 0.52;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.hero-carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.hero-carousel-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.hero-carousel-button span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: width 0.22s ease, background-color 0.22s ease;
  cursor: pointer;
}

.hero-carousel-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--mint), var(--gold));
}

.product-showcase {
  position: relative;
  min-height: 100svh;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  isolation: isolate;
  padding: clamp(96px, 10vw, 142px) 0 clamp(88px, 9vw, 132px);
  background: #1f1f1f;
}

.product-jewelx-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 31, 31, 0.98) 0%, rgba(31, 31, 31, 0.96) 24%, rgba(31, 31, 31, 0.28) 48%, rgba(34, 91, 220, 0.62) 63%, rgba(245, 92, 220, 0.82) 80%, rgba(255, 97, 28, 0.94) 100%),
    radial-gradient(circle at 50% 36%, rgba(80, 145, 255, 0.95), transparent 38%),
    radial-gradient(circle at 18% 76%, rgba(247, 24, 156, 0.82), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(255, 111, 22, 0.9), transparent 38%),
    #1f1f1f;
}

.product-jewelx-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(105, 156, 255, 0.52), rgba(105, 156, 255, 0.16) 28%, transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 44%, rgba(0, 0, 0, 0.08));
  filter: blur(2px);
  animation: jewelxGlowDrift 9s ease-in-out infinite alternate;
}

.product-jewelx-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 22%, rgba(0, 0, 0, 0.9) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 22%, rgba(0, 0, 0, 0.9) 100%);
}

.product-jewelx-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.72;
  mix-blend-mode: screen;
}

.product-jewelx-orb--blue {
  width: 54vw;
  height: 42vw;
  left: 23%;
  top: 36%;
  background: rgba(48, 131, 255, 0.72);
  animation: jewelxOrbBlue 12s ease-in-out infinite alternate;
}

.product-jewelx-orb--pink {
  width: 56vw;
  height: 40vw;
  left: -9%;
  bottom: -12%;
  background: rgba(255, 51, 184, 0.64);
  animation: jewelxOrbPink 11s ease-in-out infinite alternate;
}

.product-jewelx-orb--orange {
  width: 48vw;
  height: 38vw;
  right: -8%;
  bottom: -10%;
  background: rgba(255, 105, 22, 0.76);
  animation: jewelxOrbOrange 10s ease-in-out infinite alternate;
}

.product-nav {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: min(100% - 48px, 1120px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.product-logo,
.product-nav-links,
.product-nav-actions {
  display: inline-flex;
  align-items: center;
}

.product-logo {
  gap: 8px;
}

.product-logo-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 35%, #ffffff 0 18%, transparent 19%),
    radial-gradient(circle at 68% 35%, #ffffff 0 18%, transparent 19%),
    radial-gradient(circle at 50% 70%, #ffffff 0 20%, transparent 21%);
}

.product-nav-links {
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.product-nav-actions {
  gap: 8px;
}

.product-nav-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #101014;
}

.product-nav-actions a:last-child {
  background: #7b39fc;
  color: #ffffff;
}

.product-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 0 16px;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 6px 16px 6px 6px;
  border-radius: 9999px;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}

.product-pill p {
  margin: 0;
  padding-right: 2px;
}

.product-title {
  margin: 22px 0 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  color: #ffffff;
  white-space: normal;
}

.product-title span {
  display: block;
}

.product-title em {
  display: inline-block;
  padding-inline: 0.08em;
  font-style: italic;
}

.product-copy {
  max-width: 662px;
  margin: 18px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
}

.product-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.product-ai-composer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100% - 88px, 1160px);
  min-height: 224px;
  margin: 46px auto 0;
  padding: 30px;
  border: 1px solid rgba(8, 18, 34, 0.82);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(39, 63, 82, 0.92), rgba(30, 45, 60, 0.86)),
    rgba(26, 42, 56, 0.9);
  box-shadow:
    0 34px 100px rgba(6, 14, 28, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.product-ai-input-shell {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 92px;
}

.product-ai-placeholder,
.product-ai-editor {
  grid-column: 1;
  grid-row: 1;
  min-height: 92px;
  padding: 4px 2px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.5;
  text-align: left;
}

.product-ai-placeholder {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.54);
  opacity: 1;
}

.product-ai-placeholder-prefix {
  color: rgba(255, 255, 255, 0.62);
}

[data-agent-placeholder-dynamic] {
  display: inline;
  transition: opacity 0.22s ease, transform 0.22s ease, filter 0.22s ease;
}

[data-agent-placeholder-dynamic].is-changing {
  opacity: 0;
  transform: translateY(4px);
  filter: blur(3px);
}

.product-ai-composer.has-input .product-ai-placeholder,
.product-ai-composer:focus-within.has-input .product-ai-placeholder {
  opacity: 0;
}

.product-ai-editor {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  outline: 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  caret-color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
  white-space: pre-wrap;
}

.product-ai-editor:empty::before {
  content: "";
}

.product-ai-editor:focus {
  outline: 0;
}

.product-ai-composer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.product-ai-tool,
.product-ai-send {
  border: 0;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.product-ai-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-ai-icon,
.product-ai-mic {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  font-size: 1.9rem;
  font-weight: 300;
}

.product-ai-mic {
  font-size: 1.2rem;
}

.product-ai-build {
  min-height: 36px;
  gap: 7px;
  padding: 0 14px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.product-ai-tool-icon {
  color: rgba(184, 230, 223, 0.95);
  font-size: 0.8rem;
}

.product-ai-tool:hover,
.product-ai-tool.is-active,
.product-ai-tool[aria-pressed="true"] {
  transform: translateY(-1px);
  opacity: 1;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.product-ai-send {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #151515;
  font-size: 1.1rem;
  font-weight: 650;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-ai-send:hover,
.product-ai-composer.has-input .product-ai-send {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(184, 230, 223, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.product-ai-feedback {
  min-height: 18px;
  margin: 12px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: left;
  color: rgba(255, 255, 255, 0.58);
}

.product-ai-feedback.is-visible {
  color: rgba(184, 230, 223, 0.9);
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 9999px;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-button--primary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.product-button--secondary {
  background: rgba(255, 255, 255, 0.01);
  color: #fff;
}

@media (hover: hover) {
  .product-button:hover {
    transform: translateY(-2px);
  }

  .product-button--primary:hover {
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.32),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }

  .product-button--secondary:hover {
    box-shadow:
      0 18px 44px rgba(184, 230, 223, 0.12),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
}

@media (min-width: 960px) {
  .product-title {
    font-size: 86px;
    line-height: 1.14;
  }
}

.product-dashboard {
  position: absolute;
  left: 50%;
  bottom: -132px;
  z-index: 1;
  width: min(100% - 56px, 820px);
  aspect-ratio: 4 / 3;
  height: auto;
  transform: translateX(-50%);
  border-radius: 22px;
  border: 1px solid rgba(164, 132, 215, 0.34);
  background: rgba(16, 13, 24, 0.58);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.product-dashboard::before {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(123, 57, 252, 0.32), transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(123, 57, 252, 0.12), rgba(32, 18, 58, 0.34), rgba(255, 255, 255, 0.04));
  filter: blur(16px);
  opacity: 0.9;
  animation: dashboardGlow 9s ease-in-out infinite alternate;
}

.product-dashboard::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 28%);
  opacity: 0.75;
}

.product-dashboard-carousel {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(123, 57, 252, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(7, 6, 12, 0.75), rgba(18, 16, 28, 0.52));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.product-dashboard-carousel::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 18%, rgba(123, 57, 252, 0.14) 40%, rgba(255, 255, 255, 0.06) 55%, transparent 72%);
  filter: blur(20px);
  animation: dashboardSweep 7s ease-in-out infinite;
}

.product-dashboard-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.product-dashboard-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-dashboard-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.42));
  user-select: none;
  pointer-events: none;
}

@keyframes dashboardGlow {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, 1.25%, 0) scale(1.04);
  }
}

@keyframes dashboardSweep {
  0% {
    transform: translateX(-12%) translateY(-4%) rotate(-8deg);
    opacity: 0.32;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: translateX(12%) translateY(4%) rotate(-8deg);
    opacity: 0.26;
  }
}

@keyframes jewelxGlowDrift {
  0% {
    transform: translate3d(-1.5%, -1.2%, 0) scale(1);
    opacity: 0.82;
  }

  100% {
    transform: translate3d(1.6%, 1.1%, 0) scale(1.05);
    opacity: 1;
  }
}

@keyframes jewelxOrbBlue {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1);
  }

  100% {
    transform: translate3d(4%, 4%, 0) scale(1.08);
  }
}

@keyframes jewelxOrbPink {
  0% {
    transform: translate3d(0, 2%, 0) scale(1);
  }

  100% {
    transform: translate3d(8%, -4%, 0) scale(1.12);
  }
}

@keyframes jewelxOrbOrange {
  0% {
    transform: translate3d(2%, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-7%, -5%, 0) scale(1.1);
  }
}

@keyframes prismaGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.scope-grid,
.tool-grid {
  display: grid;
  gap: 22px;
}

.scope-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.scope-card,
.scope-panel,
.truth-card,
.tool-card,
.point-card,
.contact-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.scope-card {
  padding: 28px;
}

.scope-kicker,
.tool-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 56ch;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scope-item {
  min-height: 88px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(246, 240, 232, 0.94);
  line-height: 1.45;
}

.scope-thumb {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.scope-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-thumb--icon {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at 30% 20%, rgba(227, 190, 117, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.scope-text {
  display: grid;
  gap: 5px;
}

.scope-text strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.scope-text small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.scope-panel {
  padding: 28px;
  display: grid;
  gap: 18px;
  align-content: center;
}

.scope-media,
.concierge-figure,
.contact-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}

.scope-media {
  margin-top: 6px;
  aspect-ratio: 1.18;
  background: rgba(255, 255, 255, 0.03);
}

.scope-media img,
.concierge-figure img,
.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-stat {
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.truth.section {
  position: relative;
}

.truth.section::before {
  content: "";
  position: absolute;
  inset: 6% 4% auto;
  height: 56%;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(184, 230, 223, 0.14), transparent 36%),
    radial-gradient(circle at 86% 10%, rgba(227, 190, 117, 0.12), transparent 32%),
    radial-gradient(circle at 44% 92%, rgba(126, 227, 197, 0.1), transparent 28%);
  filter: blur(24px);
  opacity: 0.8;
  animation: truthGlowDrift 16s ease-in-out infinite alternate;
}

.truth-grid,
.truth-card {
  position: relative;
  z-index: 1;
}

.truth-card,
.point-card {
  padding: 24px;
}

.truth-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(184, 230, 223, 0.09) 0%, rgba(255, 255, 255, 0.045) 46%, rgba(227, 190, 117, 0.08) 100%),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.truth-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.14) 50%, transparent 72%);
  opacity: 0.22;
  transform: translateX(-36%);
  animation: truthSheen 10s ease-in-out infinite;
}

.truth-card > * {
  position: relative;
  z-index: 1;
}

.truth-card h3,
.point-card h3,
.tool-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.3;
}

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

.tool-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.tool-card--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.tool-copy {
  display: grid;
  gap: 14px;
}

.tool-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.18;
  background: rgba(5, 6, 6, 0.96);
}

.tool-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050606;
}

.tool-media--banner {
  aspect-ratio: 2.76;
}

.tool-media--poster {
  aspect-ratio: 1.34;
  background: rgba(255, 255, 255, 0.02);
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.cases .tab-bar {
  position: sticky;
  top: 92px;
  z-index: 40;
  padding: 10px 0 12px;
  margin: 0 0 16px;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.88), rgba(9, 9, 9, 0.68));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tab {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease,
    background-color 0.22s ease;
}

.tab.is-active {
  background: rgba(184, 230, 223, 0.11);
  border-color: rgba(184, 230, 223, 0.35);
}

.case-grid {
  column-count: 2;
  column-gap: 20px;
}

.case-card {
  display: inline-grid;
  vertical-align: top;
  width: 100%;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  break-inside: avoid;
  background: none;
  border: 0;
  box-shadow: none;
}

.case-card.is-hidden {
  display: none;
}

.case-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1.06;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.case-card[data-size="tall"] figure {
  aspect-ratio: 0.72;
}

.case-card[data-size="wide"] figure {
  aspect-ratio: 1.32;
}

.case-card[data-size="poster"] figure {
  aspect-ratio: 0.5;
}

.case-meta {
  display: grid;
  gap: 7px;
  padding: 0 4px;
}

.case-tag {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.case-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.case-library-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(184, 230, 223, 0.11), rgba(227, 190, 117, 0.1)),
    rgba(255, 255, 255, 0.035);
}

.case-library-kicker {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-family: "Barlow", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-library-cta h3 {
  margin: 0;
  color: var(--text);
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.case-library-cta p {
  max-width: 46rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.case-library-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.concierge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.concierge-content {
  display: grid;
  gap: 18px;
}

.concierge-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.62fr);
  gap: 16px;
}

.concierge-figure {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.concierge-figure--main {
  aspect-ratio: 1.14;
}

.concierge-figure--side {
  aspect-ratio: 0.74;
}

.concierge-points {
  display: grid;
  gap: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.38;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.24s ease;
}

.faq-card[open] summary::after {
  transform: rotate(45deg);
}

.faq-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

.contact-shell {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.72fr) minmax(280px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.contact-intro,
.contact-copy {
  display: grid;
  gap: 18px;
}

.contact-rail {
  display: grid;
  gap: 12px;
}

.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-card--qr {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.contact-card--qr img {
  border-radius: 18px;
  object-fit: contain;
}

.contact-card--qr figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-card--trust {
  aspect-ratio: 1.05;
}

.contact-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 20px;
  color: rgba(246, 240, 232, 0.52);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: max(6px, env(safe-area-inset-bottom));
  z-index: 2800;
  width: min(560px, calc(100vw - 20px));
  transform: translateX(-50%);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(8, 8, 9, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.lightbox {
  width: min(1080px, calc(100vw - 24px));
  border: 0;
  padding: 0;
  background: rgba(9, 9, 9, 0.96);
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox-shell {
  position: relative;
  padding: 18px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.36);
  cursor: pointer;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
}

.lightbox-figure img {
  width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
  border-radius: 18px;
}

.lightbox-figure figcaption {
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .tab,
  .case-card,
  .prisma-word,
  .prisma-feature-card,
  .prisma-letter {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .prisma-word,
  .prisma-feature-card {
    opacity: 1;
    transform: none;
  }

  .prisma-letter {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .agency-nav {
    padding-inline: 24px;
  }

  .agency-nav-center {
    gap: 2px;
  }

  .agency-nav-center a {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .agency-hero {
    height: 980px;
  }

  .agency-partners-list {
    gap: 28px;
  }

  .agency-start-shell {
    margin-top: 0;
  }

  .agency-start {
    min-height: 500px;
  }

  .agency-start-banner {
    margin-top: -3.5rem;
  }

  .agency-chess-row,
  .agency-chess-row--reverse,
  .agency-why-grid,
  .agency-stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .scope-grid,
  .concierge-shell,
  .contact-shell,
  .tool-card--wide {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    grid-column: 1 / -1;
  }

  .tool-card--wide {
    grid-column: auto;
  }

  .tool-media--banner {
    aspect-ratio: 2.3;
  }

  .prisma-hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prisma-hero-side {
    max-width: 560px;
    justify-items: start;
  }

  .prisma-title {
    font-size: 9rem;
  }

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

@media (min-width: 761px) and (max-width: 1080px) {
  .agency-workflow {
    height: 430px;
  }

  .agency-workflow-lines {
    display: none;
  }

  .agency-workflow-lines-tablet {
    position: absolute;
    inset: 1.1rem;
    display: block;
    width: calc(100% - 2.2rem);
    height: calc(100% - 2.2rem);
    z-index: 1;
    pointer-events: none;
  }

  .agency-node {
    z-index: 2;
  }

  .agency-node--rodin {
    top: 58px;
    left: 6%;
    width: 22%;
    height: 112px;
  }

  .agency-node--reference {
    top: 170px;
    left: 6%;
    bottom: auto;
    width: 22%;
    height: 96px;
  }

  .agency-node--prompt {
    top: 284px;
    left: 6%;
    width: 22%;
    height: 82px;
  }

  .agency-node--stable {
    top: 134px;
    left: 39%;
    width: 27%;
    height: 176px;
  }

  .agency-node--hand {
    top: 150px;
    left: auto;
    right: 6%;
    width: 22%;
    height: 168px;
  }

  .agency-node--video {
    top: 338px;
    left: 40%;
    width: 30%;
    height: 70px;
  }

  .agency-node--reference::before,
  .agency-node--rodin::before,
  .agency-node--prompt::before {
    top: 50%;
    right: -5px;
    left: auto;
    transform: translateY(-50%);
  }

  .agency-node--reference::after,
  .agency-node--prompt::after,
  .agency-node--hand::after {
    display: none;
  }

  .agency-node--stable::before {
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
  }

  .agency-node--stable::after {
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
  }

  .agency-node--hand::before {
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
  }

  .agency-node--video::before {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .mobile-nav-panel {
    display: flex;
  }

  .agency-hero-shell {
    margin-top: -12px;
  }

  .agency-nav {
    top: 12px;
    padding-inline: 16px;
    padding-block: 10px;
  }

  .agency-nav-center {
    display: none;
  }

  .agency-hero {
    height: 1060px;
  }

  .agency-hero-video {
    top: 31%;
    height: 100%;
    object-fit: cover;
  }

  .agency-hero-content {
    padding-top: 104px;
    padding-bottom: 56px;
    padding-inline: 18px;
  }

  .agency-badge {
    gap: 8px;
    padding: 4px 10px 4px 4px;
    font-size: 0.78rem;
  }

  .agency-title {
    flex-direction: column;
    gap: 0.08em;
    font-size: clamp(3rem, 13vw, 4.35rem);
    line-height: 1.04;
    max-width: min(94vw, 340px);
  }

  .agency-title .agency-blur-word:nth-child(2) {
    font-size: 0.6em;
    font-style: normal;
    letter-spacing: -0.035em;
  }

  .agency-subtext {
    font-size: 1.12rem;
    line-height: 1.3;
    max-width: 320px;
  }

  .agency-actions {
    gap: 12px;
    margin-top: 50px;
    max-width: 340px;
    margin-inline: auto;
  }

  .agency-workflow {
    width: 100%;
    height: 390px;
    display: block;
    overflow: visible;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.45rem;
    background:
      radial-gradient(circle at 62% 38%, rgba(184, 230, 223, 0.17), transparent 28%),
      radial-gradient(circle at 36% 72%, rgba(227, 190, 117, 0.14), transparent 26%),
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      rgba(6, 7, 7, 0.56);
    background-size:
      auto,
      auto,
      18px 18px,
      18px 18px,
      auto;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -42px 70px rgba(0, 0, 0, 0.28),
      0 22px 60px rgba(0, 0, 0, 0.22);
  }

  .agency-workflow-shell {
    margin-top: 1.1rem;
    padding: 0;
  }

  .agency-workflow-lines {
    display: none;
  }

  .agency-workflow-lines-mobile {
    position: absolute;
    inset: 0.65rem;
    display: block;
    width: calc(100% - 1.3rem);
    height: calc(100% - 1.3rem);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
  }

  .agency-workflow-lines-mobile path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .agency-workflow-line-glow path {
    stroke: rgba(184, 230, 223, 0.2);
    stroke-width: 5.4;
    filter: blur(1.6px);
  }

  .agency-workflow-line-core path {
    stroke: rgba(226, 225, 216, 0.54);
    stroke-width: 1.15;
    filter: drop-shadow(0 0 5px rgba(184, 230, 223, 0.2));
  }

  .agency-node {
    position: absolute;
    inset: auto;
    z-index: 2;
    min-height: 0;
    border-radius: 0.9rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
      rgba(13, 14, 14, 0.74);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(227, 190, 117, 0.06),
      inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .agency-node img {
    opacity: 0.86;
    mix-blend-mode: screen;
  }

  .agency-node::before,
  .agency-node::after {
    display: block;
    width: 7px;
    height: 7px;
    border-width: 1px;
    background: rgba(184, 230, 223, 0.96);
    box-shadow:
      0 0 0 2px rgba(8, 8, 8, 0.8),
      0 0 14px rgba(184, 230, 223, 0.54);
  }

  .agency-node--rodin::before {
    top: 50%;
    right: -5px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .agency-node--rodin::after {
    display: none;
  }

  .agency-node--reference::before {
    top: 50%;
    left: -5px;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
  }

  .agency-node--reference::after {
    display: none;
  }

  .agency-node--stable::before {
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
  }

  .agency-node--stable::after {
    top: 50%;
    right: -5px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }

  .agency-node--prompt::before {
    top: 50%;
    right: -5px;
    left: auto;
    transform: translateY(-50%);
  }

  .agency-node--prompt::after {
    display: none;
  }

  .agency-node--hand::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .agency-node--hand::after {
    display: none;
  }

  .agency-node--video::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .agency-node-label {
    top: 0.48rem;
    left: 0.56rem;
    padding-left: 0.62rem;
    font-size: 0.48rem;
    letter-spacing: 0.075em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.62);
  }

  .agency-node-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: var(--mint);
    box-shadow: 0 0 9px rgba(184, 230, 223, 0.9);
    transform: translateY(-50%);
  }

  .agency-node-label em {
    margin-left: 0.24rem;
  }

  .agency-node--rodin {
    top: 36px;
    left: 4%;
    width: 24%;
    height: 76px;
  }

  .agency-node--reference {
    top: 126px;
    left: 4%;
    right: auto;
    bottom: auto;
    width: 24%;
    height: 76px;
  }

  .agency-node--stable {
    top: 118px;
    left: 37%;
    width: 29%;
    height: 122px;
  }

  .agency-node--prompt {
    top: 218px;
    left: 4%;
    width: 24%;
    height: 82px;
  }

  .agency-node--hand {
    top: 126px;
    right: 4%;
    left: auto;
    width: 24%;
    height: 112px;
  }

  .agency-node--video {
    top: 270px;
    right: auto;
    left: 34%;
    width: 35%;
    height: 68px;
  }

  .agency-cta,
  .agency-watch {
    min-height: 48px;
    justify-content: center;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .agency-watch {
    padding: 0.74rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .agency-partners {
    margin-top: 116px;
    padding-top: 0;
    padding-bottom: 104px;
  }

  .agency-partners-list {
    gap: 18px 26px;
    font-size: 1.8rem;
  }

  .agency-start-shell {
    margin-top: 0;
    padding: 0 0 2rem;
  }

  .agency-start {
    min-height: 430px;
    border-radius: 0;
  }

  .agency-start-video {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .agency-start-content {
    min-height: 430px;
    padding: 3.2rem 1.25rem;
  }

  .agency-start-title {
    max-width: min(94vw, 390px);
    font-size: clamp(1.25rem, 4.5vw, 1.55rem);
    letter-spacing: -0.07em;
    line-height: 1.02;
  }

  .agency-start-copy {
    max-width: 21rem;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .agency-start-cta {
    min-height: 3rem;
    padding: 0.78rem 1.3rem;
    font-size: 0.92rem;
  }

  .agency-start-banner {
    margin-top: -2.2rem;
    border-radius: 1.2rem;
  }

  .agency-award-showcase {
    width: 100%;
    margin: -2.2rem auto 1.2rem;
    border-radius: 1.2rem;
    background: #000;
  }

  .agency-award-showcase::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.22));
  }

  .agency-award-showcase::after {
    display: none;
  }

  .agency-award-showcase img {
    width: 100%;
  }

  .agency-section-shell,
  .agency-stats-shell,
  .agency-footer-shell {
    padding: 1rem 1rem 2rem;
  }

  .agency-section-head {
    margin-bottom: 1.75rem;
  }

  .agency-canvas-shell {
    margin-bottom: 1.75rem;
  }

  .agency-canvas-grid {
    margin-top: 1rem;
  }

  .agency-section-title,
  .agency-footer-content h2 {
    font-size: clamp(2.45rem, 10vw, 4rem);
  }

  .agency-section-title--focus {
    gap: 0.3em;
    line-height: 1.14;
    margin: 0.75rem 0 2.6rem;
  }

  .agency-section-title--focus span:last-child {
    max-width: 12.5em;
  }

  .agency-chess-row,
  .agency-chess-row--reverse,
  .agency-why-grid,
  .agency-stats-card {
    grid-template-columns: 1fr;
  }

  .agency-chess-copy,
  .agency-why-card {
    padding: 1.4rem;
  }

  .agency-why-stack .agency-chess-row--reverse .agency-chess-copy {
    order: -1;
  }

  .agency-chess-copy h3 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .agency-chess-media {
    min-height: 280px;
    aspect-ratio: 1.08 / 1;
  }

  .agency-chess-copy p,
  .agency-why-card p,
  .agency-footer-content p {
    font-size: 0.92rem;
  }

  .agency-stats-card {
    padding: 2rem 1.2rem;
  }

  .agency-footer-content {
    min-height: 620px;
    padding: 3rem 1.25rem 2rem;
  }

  .agency-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-shell {
    padding-top: 12px;
    padding-bottom: 88px;
  }

  .prisma-suite {
    margin-top: -12px;
  }

  .prisma-hero {
    padding: 16px;
  }

  .prisma-hero-frame {
    min-height: calc(100svh - 32px);
    border-radius: 24px;
  }

  .prisma-nav {
    gap: 14px;
    max-width: calc(100% - 20px);
    padding: 9px 14px 11px;
    overflow-x: auto;
    justify-content: flex-start;
    font-size: 0.64rem;
  }

  .prisma-nav::-webkit-scrollbar {
    display: none;
  }

  .prisma-hero-content {
    gap: 18px;
    padding: 0 18px 22px;
  }

  .prisma-title {
    font-size: 5.8rem;
  }

  .prisma-description {
    font-size: 0.9rem;
  }

  .prisma-cta {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .prisma-cta-icon {
    width: 36px;
    height: 36px;
  }

  .prisma-about,
  .prisma-features {
    padding: 56px 16px;
  }

  .prisma-about-card {
    padding: 54px 18px;
  }

  .prisma-about-title {
    font-size: 1.55rem;
    line-height: 1.42;
    max-width: 18ch;
    text-align: left;
    text-wrap: pretty;
  }

  .prisma-about-copy,
  .prisma-about-accent {
    display: inline;
  }

  .prisma-about-accent {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 1.08em;
    color: #f0ddb0;
    letter-spacing: 0;
  }

  .prisma-features-head {
    margin-bottom: 28px;
  }

  .prisma-features-head h2 {
    font-size: 1.5rem;
  }

  .prisma-feature-banner {
    margin-bottom: 24px;
  }

  .prisma-feature-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }

  .prisma-feature-card {
    min-height: 330px;
    padding: 22px;
  }

  .prisma-feature-banner {
    width: min(100%, 720px);
  }

  .prisma-feature-banner picture,
  .prisma-feature-banner img {
    width: 100%;
  }

  .hero.section {
    padding-top: 18px;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .hero-grid {
    min-height: auto;
  }

  .section,
  .footer {
    width: min(100vw - 28px, 1180px);
  }

  .section {
    padding: 34px 0;
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar .button {
    display: none;
  }

  .hero h1 {
    display: none;
  }

  .section h2 {
    font-size: clamp(1.72rem, 7vw, 2.5rem);
    line-height: 1.2;
    max-width: none;
  }

  .hero-lead,
  .section-copy,
  .tool-card p,
  .truth-card p,
  .scope-body,
  .point-card p,
  .contact-copy p,
  .case-note {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .hero-copy {
    width: min(100%, 100%);
    gap: 16px;
    min-height: auto;
    justify-content: center;
    padding: 16px 14px 18px;
    border-radius: 28px;
  }

  .hero-message {
    width: min(100%, 100%);
    margin-top: 10px;
    padding-top: 4px;
    gap: 12px;
    border-radius: 24px;
    padding: 14px 12px 12px;
    background:
      linear-gradient(135deg, rgba(178, 239, 222, 0.16) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(227, 190, 117, 0.14) 100%),
      rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .product-showcase {
    min-height: 100svh;
    padding: 78px 0 156px;
  }

  .product-nav {
    top: 18px;
    width: min(100% - 28px, 1120px);
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
  }

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

  .product-nav-actions a:first-child {
    display: none;
  }

  .product-nav-actions a {
    min-height: 30px;
    padding: 0 12px;
  }

  .product-content {
    width: min(100% - 28px, 920px);
    margin-top: 0;
    padding: 0;
  }

  .product-title {
    max-width: 100%;
    margin-top: 22px;
    font-size: clamp(2.1rem, 9.7vw, 2.45rem);
    line-height: 1.04;
    white-space: normal;
  }

  .product-title span {
    white-space: nowrap;
  }

  .product-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .product-actions {
    position: relative;
    z-index: 4;
    width: 100%;
    gap: 10px;
    margin-top: 28px;
  }

  .product-button {
    flex: 1 1 180px;
    min-height: 50px;
    padding: 0 18px;
  }

  .product-jewelx-bg {
    background:
      linear-gradient(180deg, rgba(31, 31, 31, 0.99) 0%, rgba(31, 31, 31, 0.95) 26%, rgba(31, 31, 31, 0.22) 48%, rgba(48, 129, 255, 0.72) 63%, rgba(248, 78, 211, 0.9) 80%, rgba(255, 98, 24, 0.98) 100%),
      radial-gradient(circle at 50% 38%, rgba(80, 145, 255, 0.9), transparent 40%),
      #1f1f1f;
  }

  .product-jewelx-bg::after {
    background-size: 52px 52px;
    opacity: 0.16;
  }

  .product-jewelx-orb {
    filter: blur(42px);
  }

  .product-jewelx-orb--blue {
    width: 94vw;
    height: 72vw;
    left: -2%;
    top: 41%;
  }

  .product-jewelx-orb--pink {
    width: 110vw;
    height: 70vw;
    left: -40%;
    bottom: -8%;
  }

  .product-jewelx-orb--orange {
    width: 105vw;
    height: 70vw;
    right: -44%;
    bottom: -10%;
  }

  .product-ai-composer {
    width: min(100% - 28px, 560px);
    min-height: 178px;
    margin-top: 24px;
    margin-bottom: 88px;
    padding: 18px;
    border-radius: 28px;
  }

  .product-ai-input-shell,
  .product-ai-placeholder,
  .product-ai-editor {
    min-height: 66px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .product-ai-composer-bottom {
    gap: 8px;
    margin-top: 22px;
  }

  .product-ai-icon {
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }

  .product-ai-build {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .product-ai-mic {
    display: none;
  }

  .product-ai-send {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .product-dashboard {
    bottom: -72px;
    width: min(100% - 12px, 560px);
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 18px;
  }

  .product-dashboard-carousel {
    inset: 8px;
    border-radius: 14px;
  }

  .product-dashboard-slide {
    padding: 2px;
  }

  .intro .section-head {
    margin-bottom: 40px;
  }

  .intro .scope-grid {
    margin-top: 0;
  }

  .cases {
    scroll-margin-top: 64px;
  }

  .cases.section,
  .concierge.section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cases .section-head {
    margin-bottom: 24px;
  }

  .cases .tab-bar {
    top: 92px;
    padding: 8px 0 10px;
    margin-bottom: 12px;
  }

  .scope-list,
  .truth-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 12px;
  }

  .faq-card {
    padding: 20px 18px 18px;
  }

  .faq-card summary {
    font-size: 1.08rem;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-count: auto;
    column-gap: 10px;
    row-gap: 18px;
  }

  .case-card {
    display: block;
    margin: 0;
  }

  .case-card figure,
  .case-card[data-size="tall"] figure,
  .case-card[data-size="wide"] figure,
  .case-card[data-size="poster"] figure {
    aspect-ratio: auto;
    border-radius: 14px;
  }

  .case-card img {
    height: auto;
    object-fit: contain;
  }

  .case-meta {
    gap: 4px;
    padding: 0 2px;
  }

  .case-tag {
    font-size: 0.68rem;
  }

  .case-title {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .case-note {
    display: none;
  }

  .case-library-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .case-library-actions {
    justify-content: center;
  }

  .scope-card,
  .scope-panel,
  .tool-card,
  .truth-card,
  .point-card {
    padding: 18px;
  }

  .truth.section::before {
    inset: 4% 2% auto;
    height: 62%;
    opacity: 0.94;
    filter: blur(20px);
  }

  .truth-card {
    background:
      linear-gradient(135deg, rgba(184, 230, 223, 0.14) 0%, rgba(255, 255, 255, 0.08) 46%, rgba(227, 190, 117, 0.12) 100%),
      rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }

  .tool-media--banner {
    aspect-ratio: 2.05;
  }

  .concierge-visual {
    grid-template-columns: 1fr;
  }

  .cases .tab-bar {
    top: 86px;
    padding: 10px 0 12px;
    margin: 0 -2px 14px;
  }

  .concierge-shell {
    gap: 16px;
  }

  .concierge-content {
    gap: 14px;
  }

  .concierge-points {
    gap: 12px;
  }

  .scope-item {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 80px;
    gap: 12px;
    padding: 9px;
  }

  .scope-thumb {
    width: 60px;
    height: 60px;
  }

  .scope-stat {
    font-size: 2.4rem;
  }

  .hero-carousel {
    width: 100%;
    margin-top: 14px;
  }

  .hero-carousel-stage {
    border-radius: 24px;
    aspect-ratio: 0.76;
  }

  .hero-carousel-controls {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-carousel-button {
    width: 36px;
    height: 36px;
  }

  .tab-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .cases .tab-bar {
    gap: 8px;
    padding: 10px 2px 12px;
  }

  .tab {
    min-width: 88px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .tab-bar::-webkit-scrollbar {
    display: none;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 10px;
  }

  .mobile-cta {
    display: grid;
    width: min(560px, calc(100vw - 28px));
  }

  .agency-footer-content--lumina {
    min-height: 100vh;
    gap: 1.5rem;
    padding: 3rem 1rem 1.5rem;
  }

  .lumina-footer {
    margin-top: 4rem;
    padding: 1.5rem;
    border-radius: 1.25rem;
  }

  .lumina-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lumina-footer-brand,
  .lumina-footer-links-grid {
    grid-column: auto;
    justify-items: center;
  }

  .lumina-footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lumina-footer-bottom,
  .lumina-footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }

  .insights-shell {
    padding: 48px 16px 88px;
  }
}

/* Reference-inspired hero workflow canvas. Only the workflow board is restyled. */
.agency-workflow-shell {
  width: min(1280px, 100%);
  margin-top: 1.15rem;
}

.agency-workflow {
  height: clamp(390px, 31vw, 500px);
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.42) 28%, rgba(0, 0, 0, 0) 58%),
    radial-gradient(rgba(255, 255, 255, 0.16) 0.6px, rgba(0, 0, 0, 0) 1.4px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.54));
  background-size: auto, 14px 14px, auto;
  box-shadow: none;
}

.agency-workflow::before,
.agency-workflow::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
}

.agency-workflow::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0) 64%),
    radial-gradient(circle at 30% 16%, rgba(184, 230, 223, 0.08), rgba(0, 0, 0, 0) 28%),
    radial-gradient(circle at 76% 54%, rgba(227, 190, 117, 0.08), rgba(0, 0, 0, 0) 30%);
}

.agency-workflow::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0.62));
}

.agency-workflow-lines,
.agency-workflow-lines-tablet,
.agency-workflow-lines-mobile {
  z-index: 1;
}

.agency-workflow-lines {
  inset: 0;
  opacity: 0.72;
}

.agency-workflow-lines path,
.agency-workflow-lines-tablet path {
  stroke: rgba(170, 170, 170, 0.34);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.08));
  vector-effect: non-scaling-stroke;
}

.agency-node {
  z-index: 3;
  overflow: visible;
  border: 0;
  border-radius: 1.25rem;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.agency-node:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.agency-node img {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  opacity: 0.96;
  mix-blend-mode: normal;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.agency-node-label {
  top: -1.45rem;
  left: 0.15rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
}

.agency-node-label em {
  float: right;
  color: rgba(255, 255, 255, 0.46);
  margin-left: 0.65rem;
}

.agency-node::before,
.agency-node::after {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(0, 0, 0, 0.78);
  background: rgba(184, 230, 223, 0.9);
  box-shadow: 0 0 13px rgba(184, 230, 223, 0.42);
}

.agency-node--rodin {
  top: 62px;
  left: 6.2%;
  width: 220px;
  height: 152px;
}

.agency-node--reference {
  top: 282px;
  left: 6.2%;
  width: 202px;
  height: 214px;
}

.agency-node--stable {
  top: 164px;
  right: 0;
  left: auto;
  width: min(430px, 34vw);
  height: 242px;
}

.agency-node--prompt {
  top: 96px;
  left: 48%;
  width: 210px;
  height: 128px;
}

.agency-node--hand {
  top: 278px;
  right: 31%;
  left: auto;
  width: 220px;
  height: 138px;
}

.agency-node--video {
  top: 386px;
  left: 44%;
  width: 280px;
  height: 74px;
}

.agency-node--rodin::before,
.agency-node--reference::before,
.agency-node--prompt::before {
  top: 50%;
  right: -4px;
  left: auto;
  transform: translateY(-50%);
}

.agency-node--rodin::after,
.agency-node--reference::after,
.agency-node--prompt::after,
.agency-node--hand::after,
.agency-node--video::after {
  display: none;
}

.agency-node--stable::before,
.agency-node--hand::before {
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
}

.agency-node--stable::after {
  top: 50%;
  right: -4px;
  left: auto;
  transform: translateY(-50%);
}

.agency-node--video::before {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 761px) and (max-width: 1080px) {
  .agency-workflow {
    height: 430px;
    background-size: auto, 13px 13px, auto;
  }

  .agency-workflow-lines-tablet {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.76;
  }

  .agency-node--rodin {
    top: 58px;
    left: 4%;
    width: 24%;
    height: 118px;
  }

  .agency-node--reference {
    top: 250px;
    left: 4%;
    width: 22%;
    height: 156px;
  }

  .agency-node--prompt {
    top: 84px;
    left: 45%;
    width: 22%;
    height: 108px;
  }

  .agency-node--stable {
    top: 150px;
    right: 0;
    width: 34%;
    height: 190px;
  }

  .agency-node--hand {
    top: 272px;
    right: 30%;
    width: 22%;
    height: 116px;
  }

  .agency-node--video {
    top: 352px;
    left: 42%;
    width: 27%;
    height: 62px;
  }
}

@media (max-width: 760px) {
  .agency-workflow-shell {
    margin-top: 0.72rem;
  }

  .agency-workflow {
    height: 382px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 52% 49%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.44) 32%, rgba(0, 0, 0, 0) 60%),
      radial-gradient(rgba(255, 255, 255, 0.16) 0.6px, rgba(0, 0, 0, 0) 1.35px),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.46));
    background-size: auto, 12px 12px, auto;
    box-shadow: none;
  }

  .agency-workflow-lines-mobile {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.82;
  }

  .agency-workflow-line-glow path {
    stroke: rgba(184, 230, 223, 0.13);
    stroke-width: 5;
  }

  .agency-workflow-line-core path {
    stroke: rgba(190, 190, 190, 0.42);
    stroke-width: 1;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08));
  }

  .agency-node img {
    opacity: 0.95;
  }

  .agency-node-label {
    top: -1.02rem;
    left: 0.08rem;
    padding-left: 0;
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }

  .agency-node-label::before {
    display: none;
  }

  .agency-node-label em {
    margin-left: 0.28rem;
  }

  .agency-node--rodin {
    top: 34px;
    left: 5%;
    width: 32%;
    height: 82px;
  }

  .agency-node--reference {
    top: 144px;
    left: 5%;
    width: 30%;
    height: 116px;
  }

  .agency-node--prompt {
    top: 286px;
    left: 5%;
    width: 32%;
    height: 64px;
  }

  .agency-node--stable {
    top: 118px;
    right: 5%;
    left: auto;
    width: 48%;
    height: 132px;
  }

  .agency-node--hand {
    top: 280px;
    right: 5%;
    left: auto;
    width: 45%;
    height: 80px;
  }

  .agency-node--video {
    display: none;
  }

  .agency-node::before,
  .agency-node::after {
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}

/* Final hero canvas rewrite: fewer nodes, clearer direction, more premium negative space. */
.agency-workflow-shell {
  width: min(1180px, 100%);
  margin: 1.25rem auto 0;
}

.agency-workflow {
  height: clamp(350px, 30vw, 460px);
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 51% 50%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.46) 32%, rgba(0, 0, 0, 0) 62%),
    radial-gradient(rgba(255, 255, 255, 0.3) 0.62px, rgba(0, 0, 0, 0) 1.45px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  background-size: auto, 13px 13px, auto;
  box-shadow: none;
}

.agency-workflow-focus {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(44rem, 54vw);
  height: min(21rem, 34vw);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 5, 5, 0.88), rgba(4, 5, 5, 0.44) 48%, rgba(4, 5, 5, 0) 72%),
    radial-gradient(circle at 52% 48%, rgba(184, 230, 223, 0.08), rgba(184, 230, 223, 0) 50%);
  transform: translate(-50%, -50%);
}

.agency-workflow-lines,
.agency-workflow-lines-tablet,
.agency-workflow-lines-mobile {
  z-index: 1;
}

.agency-workflow-lines {
  inset: 0;
  opacity: 1;
}

.agency-workflow-lines path,
.agency-workflow-lines-tablet path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.agency-workflow-line-base path {
  stroke: rgba(221, 226, 216, 0.44);
  stroke-width: 1.3;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.08));
}

.agency-workflow-line-pulse path {
  stroke: rgba(185, 244, 226, 0.95);
  stroke-width: 2.35;
  stroke-dasharray: 34 420;
  stroke-dashoffset: 454;
  filter:
    drop-shadow(0 0 4px rgba(185, 244, 226, 0.85))
    drop-shadow(0 0 12px rgba(185, 244, 226, 0.38));
  animation: agencyLineCurrent 2.9s linear infinite;
}

.agency-workflow-line-pulse path:nth-child(2) {
  animation-delay: 0.72s;
}

.agency-canvas-node {
  position: absolute;
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow", sans-serif;
  text-align: left;
  animation: agencyCanvasFloat 8s ease-in-out infinite;
  will-change: transform;
}

.agency-canvas-node:nth-of-type(odd) {
  animation-delay: -2s;
}

.agency-canvas-node:hover {
  animation-play-state: paused;
}

.agency-canvas-node-head {
  position: absolute;
  left: 0.18rem;
  right: 0.18rem;
  top: -1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
}

.agency-canvas-node-head em {
  color: rgba(255, 255, 255, 0.34);
  font-style: normal;
}

.agency-canvas-node img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.35rem;
  object-fit: cover;
  background: rgba(8, 9, 9, 0.74);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.agency-canvas-node::before,
.agency-canvas-node::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(184, 230, 223, 0.92);
  border: 1px solid rgba(7, 8, 8, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 14px rgba(184, 230, 223, 0.48);
}

.agency-canvas-node--source {
  top: 74px;
  left: 5.4%;
  width: 230px;
  height: 158px;
}

.agency-canvas-node--source::before,
.agency-canvas-node--prompt::before {
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
}

.agency-canvas-node--source::after,
.agency-canvas-node--prompt::after,
.agency-canvas-node--wear::after,
.agency-canvas-node--detail::after {
  display: none;
}

.agency-canvas-node--prompt {
  top: 282px;
  left: 5.4%;
  width: 245px;
  min-height: 118px;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(13, 14, 14, 0.68);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.agency-canvas-node--prompt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
}

.agency-canvas-node--result {
  top: 108px;
  right: 3.2%;
  width: min(450px, 38vw);
  height: 253px;
}

.agency-canvas-node--result img {
  border-radius: 1.55rem;
}

.agency-canvas-node--result::before {
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
}

.agency-canvas-node--result::after {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes agencyCanvasFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes agencyLineCurrent {
  from {
    stroke-dashoffset: 454;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .agency-workflow {
    height: 420px;
    background-size: auto, 12px 12px, auto;
  }

  .agency-workflow-lines-tablet {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.72;
  }

  .agency-canvas-node--source {
    top: 70px;
    left: 4%;
    width: 24%;
    height: 130px;
  }

  .agency-canvas-node--prompt {
    top: 265px;
    left: 4%;
    width: 27%;
    min-height: 108px;
  }

  .agency-canvas-node--result {
    top: 118px;
    right: 3%;
    width: 44%;
    height: 236px;
  }
}

@media (max-width: 760px) {
  .agency-workflow-shell {
    margin-top: 0.75rem;
  }

  .agency-workflow {
    height: 356px;
    background:
      radial-gradient(circle at 53% 47%, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.44) 34%, rgba(0, 0, 0, 0) 62%),
      radial-gradient(rgba(255, 255, 255, 0.28) 0.55px, rgba(0, 0, 0, 0) 1.25px),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44));
    background-size: auto, 11px 11px, auto;
  }

  .agency-workflow-focus {
    width: 88vw;
    height: 250px;
  }

  .agency-workflow-lines-mobile {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.75;
  }

  .agency-workflow-line-glow path {
    stroke: rgba(184, 230, 223, 0.13);
    stroke-width: 5;
  }

  .agency-workflow-line-core path {
    stroke: rgba(221, 226, 216, 0.48);
    stroke-width: 1.1;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.08));
  }

  .agency-workflow-line-pulse path {
    stroke-width: 1.9;
    stroke-dasharray: 10 120;
    stroke-dashoffset: 130;
    animation-duration: 2.6s;
  }

  .agency-canvas-node {
    animation-duration: 9s;
  }

  .agency-canvas-node-head {
    top: -1rem;
    font-size: 0.5rem;
    letter-spacing: 0.045em;
  }

  .agency-canvas-node img {
    border-radius: 1rem;
  }

  .agency-canvas-node::before,
  .agency-canvas-node::after {
    width: 6px;
    height: 6px;
  }

  .agency-canvas-node--source {
    top: 34px;
    left: 6%;
    width: 34%;
    height: 88px;
  }

  .agency-canvas-node--prompt {
    top: 226px;
    left: 6%;
    width: 36%;
    min-height: 82px;
    padding: 0.72rem 0.74rem 0.68rem;
    border-radius: 0.98rem;
  }

  .agency-canvas-node--prompt p {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .agency-canvas-node--result {
    top: 94px;
    right: 5%;
    width: 51%;
    height: 154px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agency-canvas-node {
    animation: none;
  }

  .agency-workflow-line-pulse path {
    animation: none;
    opacity: 0.58;
  }
}

/* Keep the team segment away from the canvas and make it readable on mobile. */
.agency-hero {
  height: 1160px;
}

.agency-partners {
  margin-top: 58px;
  overflow: hidden;
}

@keyframes agencyPartnersMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 760px) {
  .agency-hero {
    height: 1060px;
  }

  .agency-partners {
    width: 100%;
    margin-top: 116px;
    padding-bottom: 104px;
    overflow: hidden;
  }

  .agency-partners-list {
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2.2rem;
    font-size: 1.72rem;
    white-space: nowrap;
    animation: agencyPartnersMarquee 18s linear infinite;
    will-change: transform;
  }

  .agency-partner-duplicate {
    display: inline-block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agency-partners-list {
    animation: none;
  }
}
