:root {
  --ink: #141415;
  --soft-ink: #3d3a36;
  --muted: #746f67;
  --paper: #f3f4ee;
  --warm-paper: #fffdf7;
  --line: rgba(20, 20, 21, 0.12);
  --teal: #0f766e;
  --teal-deep: #083f3b;
  --coral: #c75b45;
  --gold: #b7812f;
  --olive: #6d7855;
  --charcoal: #20201f;
  --shadow: 0 18px 50px rgba(22, 18, 13, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf7 0%, #f4f1e8 38%, #e9eee7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 4vw;
  border-bottom: 1px solid rgba(20, 20, 21, 0.08);
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(16px);
  max-width: 100vw;
}

.brand,
.topbar nav,
.hero-actions,
.signal-strip,
.hero-gallery,
.lane-grid,
.package-grid,
.service-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.72rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(20, 20, 21, 0.18);
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 253, 247, 0.34), transparent 32%),
    linear-gradient(145deg, #111312 0%, #173632 52%, #091716 100%);
  color: #fffaf2;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 63, 59, 0.22);
}

.brand-logo {
  width: 1.72rem;
  height: 1.72rem;
  overflow: visible;
}

.logo-ring,
.logo-spark,
.logo-anvil {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.logo-ring {
  stroke: rgba(255, 250, 242, 0.82);
  stroke-width: 2.7;
}

.logo-spark {
  fill: rgba(255, 250, 242, 0.92);
  stroke: rgba(183, 129, 47, 0.86);
  stroke-width: 1.5;
}

.logo-anvil {
  fill: rgba(199, 91, 69, 0.92);
  stroke: rgba(255, 250, 242, 0.8);
  stroke-width: 1.2;
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.24rem;
  font-size: 1.03rem;
  letter-spacing: 0;
}

.brand-wordmark span:first-child {
  color: var(--ink);
}

.brand-wordmark span:last-child {
  color: var(--teal-deep);
}

.topbar nav {
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
}

.topbar-actions {
  position: relative;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.topbar nav a,
.nav-cta,
.button,
.account-menu summary {
  border: 1px solid rgba(20, 20, 21, 0.14);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.45);
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

.nav-cta,
.button.primary {
  border-color: transparent;
  background: var(--ink);
  color: #fffaf2;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-avatar {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.14);
  color: var(--teal-deep);
  font-size: 0.64rem;
  font-weight: 900;
}

.account-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.85rem;
  width: min(24rem, calc(100vw - 2rem));
  border: 1px solid rgba(20, 20, 21, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.98);
  padding: 1rem;
  box-shadow: 0 22px 55px rgba(22, 18, 13, 0.18);
}

.account-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.account-panel-head span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.account-tabs button,
.account-form input,
.account-form textarea {
  border: 1px solid rgba(20, 20, 21, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: inherit;
}

.account-tabs button {
  padding: 0.55rem 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 850;
}

.account-form {
  display: grid;
  gap: 0.7rem;
}

.account-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.account-form input,
.account-form textarea {
  width: 100%;
  padding: 0.68rem 0.72rem;
  text-transform: none;
}

.account-form textarea {
  resize: vertical;
}

.account-status {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  text-transform: none;
}

.button.secondary {
  background: rgba(255, 250, 242, 0.6);
}

.topbar nav a:hover,
.nav-cta:hover,
.button:hover,
.account-menu summary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(20, 20, 21, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1fr);
  gap: 3rem;
  align-items: start;
  min-height: auto;
  padding: clamp(2.25rem, 4vh, 3.75rem) 4vw 3rem;
  max-width: 100vw;
}

.hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 42rem;
  padding-top: clamp(0.25rem, 1.2vh, 1rem);
}

.eyebrow,
.group-kicker,
.work-card span,
.service-list span {
  margin: 0 0 0.65rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.15rem;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

.hero-text {
  width: 100%;
  max-width: 40rem;
  color: var(--soft-ink);
  font-size: 1.1rem;
  line-height: 1.65;
  overflow-wrap: normal;
}

.hero-actions,
.hero-proof {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-proof {
  display: flex;
  margin-top: 1rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 39rem;
  margin: 1.25rem 0 0;
}

.hero-metrics div {
  border-left: 2px solid rgba(15, 118, 110, 0.38);
  padding: 0.15rem 0 0.1rem 0.75rem;
}

.hero-metrics dt {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  grid-template-rows: minmax(12.5rem, 0.8fr) minmax(12.5rem, 0.8fr) auto;
  gap: 0.75rem;
  align-items: stretch;
  align-self: start;
}

.hero-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.hero-tile img {
  height: 100%;
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
}

.hero-tile-large {
  grid-row: span 2;
}

.hero-tile-wide {
  grid-column: 1 / -1;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 4vw;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
}

.signal-strip div {
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  margin-bottom: 0.35rem;
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-block {
  padding: 6rem 4vw 0;
}

.audit-lab-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(22rem, 1fr);
  gap: 1.6rem;
  align-items: stretch;
  padding-top: 4.25rem;
}

.audit-lab-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(142deg, rgba(255, 253, 247, 0.95), rgba(232, 241, 234, 0.82)),
    rgba(255, 255, 255, 0.6);
  padding: clamp(1.35rem, 2.2vw, 2rem);
}

.audit-lab-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.04;
}

.audit-lab-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  line-height: 1.68;
}

.audit-lab-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.audit-lab-board article {
  display: grid;
  align-content: end;
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 18%, rgba(15, 118, 110, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(255, 253, 247, 0.94), rgba(242, 234, 219, 0.86));
  padding: 1.1rem;
  box-shadow: 0 16px 38px rgba(22, 18, 13, 0.09);
}

.audit-lab-board article:nth-child(2) {
  background:
    radial-gradient(circle at 24% 18%, rgba(183, 129, 47, 0.18), transparent 34%),
    linear-gradient(150deg, rgba(255, 253, 247, 0.95), rgba(237, 243, 231, 0.86));
}

.audit-lab-board article:nth-child(3) {
  background:
    radial-gradient(circle at 24% 18%, rgba(199, 91, 69, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(255, 253, 247, 0.96), rgba(232, 241, 236, 0.88));
}

.audit-lab-board span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-lab-board strong {
  margin-top: 0.4rem;
  font-size: 1.35rem;
}

.audit-lab-board p {
  color: var(--muted);
  line-height: 1.52;
}

.audit-lab-cta {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.buyer-fit-section {
  display: grid;
  gap: 1.4rem;
  padding-top: 4.25rem;
}

.fit-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(20rem, 0.58fr);
  gap: 2rem;
  align-items: end;
}

.fit-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 1.04;
}

.fit-copy p:not(.eyebrow) {
  margin-bottom: 0.15rem;
  color: var(--soft-ink);
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.fit-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 253, 247, 0.88), rgba(235, 244, 238, 0.7)),
    rgba(255, 250, 242, 0.72);
  padding: 1.25rem;
  box-shadow: 0 14px 34px rgba(22, 18, 13, 0.08);
}

.fit-grid span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.34rem 0.56rem;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fit-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.fit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.surface-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  border: 1px solid rgba(20, 20, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0.8rem;
}

.surface-strip span {
  border: 1px solid rgba(183, 129, 47, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  padding: 0.45rem 0.65rem;
  color: #745217;
  font-size: 0.82rem;
  font-weight: 800;
}

.studio-manifest {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 4rem 4vw 0;
  padding: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 244, 238, 0.72)),
    #f5f6ef;
}

.studio-manifest h2 {
  margin-bottom: 0;
  font-size: 2.45rem;
  line-height: 1.06;
}

.manifest-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

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

.manifest-grid article,
.process-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.15rem;
}

.manifest-grid span,
.process-grid span,
.contact-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.manifest-grid h3,
.process-grid h3 {
  margin-bottom: 0.45rem;
}

.manifest-grid p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0.9rem;
  font-size: 2.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--soft-ink);
  line-height: 1.65;
}

.diagnostic-lab {
  padding-top: 5rem;
}

.lab-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.72fr);
  gap: 1.25rem;
  align-items: stretch;
}

.lab-visual-stage,
.lab-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 21, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.8), rgba(231, 238, 229, 0.76)),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.lab-visual-stage {
  min-height: 34rem;
  padding: 1rem;
}

.lab-flow-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 0.45rem;
  width: min(20rem, 42%);
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.88);
  padding: 1.05rem;
  box-shadow: 0 18px 44px rgba(22, 18, 13, 0.14);
}

.lab-flow-card span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lab-flow-card strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.lab-flow-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lab-source-card {
  left: 1.5rem;
  top: 2rem;
}

.lab-diagnosis-card {
  right: 2rem;
  top: 10rem;
}

.lab-output-card {
  left: 18%;
  bottom: 2.1rem;
}

.lab-node-map {
  position: absolute;
  inset: 1rem;
  z-index: 2;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 24%, rgba(15, 118, 110, 0.18), transparent 18%),
    radial-gradient(circle at 76% 42%, rgba(183, 129, 47, 0.18), transparent 18%),
    radial-gradient(circle at 42% 76%, rgba(199, 91, 69, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.62), rgba(230, 238, 231, 0.86));
}

.node,
.node-line {
  position: absolute;
  display: block;
}

.node {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 253, 247, 0.92);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 10px rgba(15, 118, 110, 0.09), 0 10px 28px rgba(22, 18, 13, 0.16);
}

.node-a {
  left: 24%;
  top: 28%;
}

.node-b {
  right: 22%;
  top: 43%;
  background: var(--gold);
}

.node-c {
  left: 44%;
  bottom: 26%;
  background: var(--coral);
}

.node-d {
  right: 15%;
  bottom: 17%;
}

.node-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0), rgba(15, 118, 110, 0.58), rgba(183, 129, 47, 0));
  transform-origin: left center;
}

.node-line-a {
  left: 26%;
  top: 31%;
  width: 46%;
  transform: rotate(14deg);
}

.node-line-b {
  left: 46%;
  top: 47%;
  width: 28%;
  transform: rotate(117deg);
}

.node-line-c {
  left: 46%;
  bottom: 29%;
  width: 36%;
  transform: rotate(-13deg);
}

.scan-grid {
  position: absolute;
  inset: 1rem;
  z-index: 3;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 118, 110, 0.1) 1px, transparent 1px);
  background-size: 4.8rem 4.8rem;
  mix-blend-mode: multiply;
}

.scan-grid span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(15, 118, 110, 0.42);
  animation: scanSweep 7s ease-in-out infinite;
}

.scan-grid span:nth-child(2) {
  animation-delay: -2.2s;
}

.scan-grid span:nth-child(3) {
  animation-delay: -4.6s;
}

@keyframes scanSweep {
  0%,
  100% {
    top: 8%;
    opacity: 0.1;
  }
  50% {
    top: 86%;
    opacity: 0.55;
  }
}

.lab-console {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.2rem;
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.console-header span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.console-header strong {
  font-size: 1.05rem;
}

.console-stack {
  display: grid;
  gap: 0.75rem;
}

.console-stack article {
  border: 1px solid rgba(20, 20, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1rem;
}

.console-stack span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.console-stack h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.console-stack p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.signal-bars {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.signal-bars div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.signal-bars span {
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 820;
}

.signal-bars i {
  display: block;
  height: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 20, 21, 0.08);
}

.signal-bars i::before {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  content: "";
}

.portfolio-group {
  padding: 2rem 0 3.2rem;
  border-top: 1px solid var(--line);
}

.group-intro {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.group-intro h3 {
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}

.group-intro p:last-child {
  color: var(--muted);
  line-height: 1.55;
}

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

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

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

.outcome-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.outcome-card,
.quality-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(22, 18, 13, 0.06);
}

.outcome-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(183, 129, 47, 0.12);
  color: #745217;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.outcome-card h3,
.quality-grid h3 {
  margin-bottom: 0.5rem;
}

.outcome-card p,
.quality-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quality-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.quality-showcase img {
  height: clamp(13rem, 18vw, 20rem);
  object-fit: cover;
}

.quality-showcase figure:first-child img {
  height: clamp(16rem, 24vw, 24rem);
}

.quality-showcase figcaption {
  padding: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.quality-showcase figcaption span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.08);
}

.work-card.text-card,
.service-card.text-card,
.playbook-grid article.text-card,
.package-grid article.text-card,
.lane-grid article.text-card,
.intake-card.text-card {
  --card-accent: var(--teal);
  --card-accent-soft: rgba(15, 118, 110, 0.16);
  --card-wash: rgba(237, 247, 241, 0.82);
  --card-wash-2: rgba(255, 250, 242, 0.82);
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  background:
    linear-gradient(135deg, var(--card-wash-2), var(--card-wash)),
    radial-gradient(circle at 90% 8%, var(--card-accent-soft), transparent 28%),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 32px rgba(22, 18, 13, 0.08);
}

.work-card.text-card::before,
.service-card.text-card::before,
.playbook-grid article.text-card::before,
.package-grid article.text-card::before,
.lane-grid article.text-card::before,
.intake-card.text-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--card-accent), rgba(183, 129, 47, 0.62));
  content: "";
}

.card-sigil {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--card-accent-soft, rgba(15, 118, 110, 0.2));
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), var(--card-accent-soft, rgba(15, 118, 110, 0.12)));
  color: var(--card-accent, var(--teal-deep));
  font-size: 0.82rem;
  font-weight: 900;
}

.text-card .card-sigil + span,
.text-card > span:not(.card-sigil) {
  color: var(--card-accent, var(--teal));
}

.work-card img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  background: rgba(20, 20, 21, 0.04);
}

.feature-card {
  grid-column: span 1;
}

.work-card.study-card img,
.work-grid.compact .work-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: rgba(20, 20, 21, 0.04);
}

.work-grid > .work-card:not(.study-card) img {
  height: clamp(13.5rem, 18vw, 18rem);
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
}

.culture-gallery {
  display: grid;
  gap: 2rem;
}

.sample-showcase {
  padding-bottom: 3.6rem;
}

.sample-rail {
  display: grid;
  grid-auto-columns: minmax(20rem, 30rem);
  grid-auto-flow: column;
  gap: 1rem;
  align-items: start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.2rem 0 0.85rem;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: inline proximity;
  scrollbar-color: rgba(15, 118, 110, 0.45) rgba(20, 20, 21, 0.08);
  scrollbar-width: thin;
}

.sample-rail::-webkit-scrollbar {
  height: 0.62rem;
}

.sample-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(20, 20, 21, 0.08);
}

.sample-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.42);
}

.sample-card {
  scroll-snap-align: start;
}

.sample-card img {
  width: 100%;
  height: auto;
  max-height: 24rem;
  object-fit: contain;
  object-position: center top;
}

.section-media {
  overflow: hidden;
  display: grid;
  margin: 0 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 14px 34px rgba(22, 18, 13, 0.09);
}

.section-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 4;
  object-fit: contain;
  background: rgba(20, 20, 21, 0.04);
}

.section-media-wide img {
  max-height: 34rem;
}

.section-media-inline {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  align-items: stretch;
}

.section-media-inline img {
  height: 100%;
  object-fit: cover;
}

.section-media figcaption {
  padding: 1.1rem 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.section-media figcaption span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.culture-cluster {
  display: grid;
  gap: 1rem;
}

.culture-cluster-heading {
  display: grid;
  gap: 0.35rem;
}

.culture-cluster-heading span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.culture-cluster-heading h4 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.culture-rail {
  display: grid;
  grid-auto-columns: minmax(24rem, 36rem);
  grid-auto-flow: column;
  gap: 1rem;
  align-items: start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.2rem 0 0.85rem;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: inline proximity;
  scrollbar-color: rgba(15, 118, 110, 0.45) rgba(20, 20, 21, 0.08);
  scrollbar-width: thin;
}

.culture-rail::-webkit-scrollbar {
  height: 0.62rem;
}

.culture-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(20, 20, 21, 0.08);
}

.culture-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.42);
}

.culture-rail .study-card {
  scroll-snap-align: start;
}

.culture-rail .study-card img {
  width: 100%;
  height: clamp(19rem, 30vw, 31rem);
  margin: 0 auto;
  object-fit: contain;
  object-position: center top;
  background: rgba(20, 20, 21, 0.04);
}

.work-card div {
  padding: 1rem;
}

.work-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.work-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.service-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
}

.service-list article,
.package-grid article,
.lane-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.74), rgba(238, 243, 235, 0.62)),
    rgba(255, 255, 255, 0.55);
  padding: 1.25rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(11rem, 0.46fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0 !important;
}

.service-card.text-card {
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1.25rem !important;
}

.service-list .service-card.text-card:nth-child(1) {
  --card-accent: #0f766e;
  --card-accent-soft: rgba(15, 118, 110, 0.15);
  --card-wash: rgba(231, 244, 239, 0.86);
}

.service-list .service-card.text-card:nth-child(2) {
  --card-accent: #b7812f;
  --card-accent-soft: rgba(183, 129, 47, 0.18);
  --card-wash: rgba(250, 239, 216, 0.86);
}

.service-list .service-card.text-card:nth-child(3) {
  --card-accent: #315f73;
  --card-accent-soft: rgba(49, 95, 115, 0.15);
  --card-wash: rgba(230, 241, 244, 0.86);
}

.service-card img {
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  min-height: 10.5rem;
  object-fit: cover;
}

.service-card span,
.service-card h3,
.service-card p {
  margin-left: 0;
}

.service-card > span,
.service-card > h3,
.service-card > p {
  grid-column: 2;
  padding-right: 1.1rem;
}

.service-card.text-card > span,
.service-card.text-card > h3,
.service-card.text-card > p {
  grid-column: auto;
  padding-right: 0;
}

.service-card > span {
  align-self: end;
  margin-top: 1rem;
}

.service-card > p {
  align-self: start;
  margin-bottom: 1rem;
}

.service-list h3,
.package-grid h3,
.lane-grid h3 {
  margin-bottom: 0.45rem;
}

.service-list p,
.package-grid p,
.lane-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.service-orbit-visual {
  position: relative;
  overflow: hidden;
  min-height: 21rem;
  margin-top: 1.35rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.16), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(183, 129, 47, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(235, 244, 238, 0.78));
  box-shadow: 0 18px 42px rgba(22, 18, 13, 0.09);
}

.service-orbit-visual::before,
.service-orbit-visual::after {
  position: absolute;
  inset: 3.4rem;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 50%;
  content: "";
}

.service-orbit-visual::after {
  inset: 5.6rem;
  border-color: rgba(183, 129, 47, 0.18);
}

.orbit-core,
.orbit-surface {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 12px 26px rgba(22, 18, 13, 0.09);
}

.orbit-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 10.5rem;
  min-height: 7.2rem;
  place-items: center;
  padding: 1rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-core span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fffaf2;
  font-size: 0.72rem;
  font-weight: 900;
}

.orbit-core strong,
.orbit-surface span {
  font-size: 0.95rem;
}

.orbit-surface {
  display: grid;
  gap: 0.55rem;
  width: 8.4rem;
  padding: 0.8rem;
}

.orbit-surface span {
  color: var(--teal-deep);
  font-weight: 850;
}

.orbit-surface i {
  display: block;
  height: 3rem;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.72), rgba(183, 129, 47, 0.62)),
    rgba(20, 20, 21, 0.08);
}

.surface-a {
  top: 1rem;
  left: 1.2rem;
}

.surface-b {
  top: 1rem;
  right: 1.2rem;
}

.surface-c {
  bottom: 1rem;
  left: 1.2rem;
}

.surface-d {
  right: 1.2rem;
  bottom: 1rem;
}

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

.merchant-pack-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.merchant-pack-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 16px 36px rgba(22, 18, 13, 0.09);
}

.merchant-pack-featured {
  grid-row: span 2;
}

.merchant-pack-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 45 / 28;
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
}

.merchant-pack-featured img {
  aspect-ratio: 45 / 31;
}

.merchant-pack-card div {
  padding: 1.05rem 1.15rem 1.15rem;
}

.merchant-pack-card span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.merchant-pack-card h3 {
  margin-bottom: 0.4rem;
}

.merchant-pack-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.playbook-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.07);
}

.playbook-grid article.text-card:nth-child(1) {
  --card-accent: #c75b45;
  --card-accent-soft: rgba(199, 91, 69, 0.15);
  --card-wash: rgba(255, 241, 232, 0.84);
  --card-wash-2: rgba(255, 252, 244, 0.92);
}

.playbook-grid article.text-card:nth-child(2) {
  --card-accent: #8b6532;
  --card-accent-soft: rgba(183, 129, 47, 0.18);
  --card-wash: rgba(252, 242, 220, 0.86);
  --card-wash-2: rgba(255, 253, 247, 0.92);
}

.playbook-grid article.text-card:nth-child(3) {
  --card-accent: #6b6f95;
  --card-accent-soft: rgba(107, 111, 149, 0.16);
  --card-wash: rgba(238, 239, 249, 0.86);
  --card-wash-2: rgba(255, 253, 247, 0.92);
}

.playbook-grid article.text-card:nth-child(4) {
  --card-accent: #7a6f52;
  --card-accent-soft: rgba(122, 111, 82, 0.17);
  --card-wash: rgba(246, 241, 226, 0.86);
  --card-wash-2: rgba(255, 253, 247, 0.92);
}

.playbook-grid article.text-card:nth-child(5) {
  --card-accent: #315f73;
  --card-accent-soft: rgba(49, 95, 115, 0.16);
  --card-wash: rgba(231, 241, 243, 0.86);
  --card-wash-2: rgba(255, 253, 247, 0.92);
}

.playbook-grid article.text-card:nth-child(6) {
  --card-accent: #92703a;
  --card-accent-soft: rgba(146, 112, 58, 0.18);
  --card-wash: rgba(248, 238, 213, 0.86);
  --card-wash-2: rgba(255, 253, 247, 0.92);
}

.playbook-grid article > img {
  height: 12rem;
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
}

.playbook-grid article div {
  padding: 1.2rem;
}

.playbook-grid article.text-card div {
  padding: 1.35rem;
}

.playbook-grid span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.playbook-id {
  margin-right: 0.45rem;
  background: rgba(15, 118, 110, 0.1);
  border-radius: 999px;
  padding: 0.32rem 0.52rem;
  color: var(--teal-deep) !important;
}

.playbook-grid h3 {
  margin-bottom: 0.45rem;
}

.playbook-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.package-grid article.text-card:nth-child(1) {
  --card-accent: #0f766e;
  --card-accent-soft: rgba(15, 118, 110, 0.15);
  --card-wash: rgba(231, 244, 239, 0.86);
}

.package-grid article.text-card:nth-child(2) {
  --card-accent: #b7812f;
  --card-accent-soft: rgba(183, 129, 47, 0.18);
  --card-wash: rgba(250, 239, 216, 0.86);
}

.package-grid article.text-card:nth-child(3) {
  --card-accent: #c75b45;
  --card-accent-soft: rgba(199, 91, 69, 0.16);
  --card-wash: rgba(255, 239, 232, 0.86);
}

.package-grid article.text-card:nth-child(4) {
  --card-accent: #4e6650;
  --card-accent-soft: rgba(78, 102, 80, 0.17);
  --card-wash: rgba(234, 242, 231, 0.86);
}

.package-grid article,
.lane-grid article {
  padding: 0;
}

.package-grid article.text-card,
.lane-grid article.text-card {
  padding: 1.35rem;
}

.lane-grid article.text-card:nth-child(1) {
  --card-accent: #6d7855;
  --card-accent-soft: rgba(109, 120, 85, 0.17);
  --card-wash: rgba(238, 244, 231, 0.86);
}

.lane-grid article.text-card:nth-child(2) {
  --card-accent: #315f73;
  --card-accent-soft: rgba(49, 95, 115, 0.15);
  --card-wash: rgba(230, 241, 244, 0.86);
}

.lane-grid article.text-card:nth-child(3) {
  --card-accent: #8b6532;
  --card-accent-soft: rgba(183, 129, 47, 0.18);
  --card-wash: rgba(250, 239, 216, 0.86);
}

.package-grid article img,
.lane-grid article img {
  height: 10.75rem;
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
}

.package-grid article h3,
.package-grid article .price,
.package-grid article p:not(.price),
.lane-grid article h3,
.lane-grid article p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.package-grid article.text-card h3,
.package-grid article.text-card .price,
.package-grid article.text-card p:not(.price),
.lane-grid article.text-card h3,
.lane-grid article.text-card p {
  padding-left: 0;
  padding-right: 0;
}

.package-grid article h3,
.lane-grid article h3 {
  padding-top: 1.1rem;
}

.package-grid article.text-card h3,
.lane-grid article.text-card h3 {
  padding-top: 0;
}

.package-grid article p:last-child,
.lane-grid article p:last-child {
  padding-bottom: 1.2rem;
}

.package-grid article.text-card p:last-child,
.lane-grid article.text-card p:last-child {
  padding-bottom: 0;
}

.price {
  margin-bottom: 0.7rem;
  color: var(--coral) !important;
  font-size: 1.45rem;
  font-weight: 850;
}

.package-points {
  display: grid;
  gap: 0.38rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.package-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.42;
}

.package-points li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--card-accent, var(--teal));
  content: "";
}

.package-ladder-visual {
  display: grid;
  grid-template-columns: minmax(18rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 20, 21, 0.92), rgba(8, 63, 59, 0.92)),
    var(--charcoal);
  padding: 1rem;
  color: #fffaf2;
  box-shadow: 0 18px 42px rgba(22, 18, 13, 0.12);
}

.ladder-copy {
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
  padding: 1.25rem;
}

.ladder-copy span,
.package-ladder-visual article span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #8fd0c8;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ladder-copy strong {
  display: block;
  max-width: 22rem;
  font-size: 1.4rem;
  line-height: 1.15;
}

.ladder-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: end;
  min-height: 16rem;
}

.package-ladder-visual article {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 100%;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.07);
  padding: 1rem;
}

.package-ladder-visual article strong {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.package-ladder-visual article i {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  height: var(--h);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(183, 129, 47, 0.74)),
    rgba(255, 250, 242, 0.24);
}

.intake-section {
  padding-top: 5rem;
}

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

.intake-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.08);
}

.intake-card img {
  height: clamp(13rem, 18vw, 18rem);
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
}

.intake-card div {
  padding: 1.15rem;
}

.intake-card.text-card div {
  padding: 1.35rem;
}

.intake-grid .intake-card.text-card:nth-child(1) {
  --card-accent: #0f766e;
  --card-accent-soft: rgba(15, 118, 110, 0.15);
  --card-wash: rgba(231, 244, 239, 0.86);
}

.intake-grid .intake-card.text-card:nth-child(2) {
  --card-accent: #315f73;
  --card-accent-soft: rgba(49, 95, 115, 0.15);
  --card-wash: rgba(230, 241, 244, 0.86);
}

.intake-grid .intake-card.text-card:nth-child(3) {
  --card-accent: #b7812f;
  --card-accent-soft: rgba(183, 129, 47, 0.18);
  --card-wash: rgba(250, 239, 216, 0.86);
}

.intake-card span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  padding: 0.34rem 0.56rem;
  background: var(--card-accent-soft, rgba(15, 118, 110, 0.1));
  color: var(--card-accent, var(--teal-deep));
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intake-card h3 {
  margin-bottom: 0.5rem;
}

.intake-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.intake-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.82), rgba(233, 241, 234, 0.72)),
    rgba(255, 255, 255, 0.64);
  padding: 1rem;
}

.intake-proof-row article {
  border-left: 2px solid rgba(15, 118, 110, 0.34);
  padding: 0.2rem 0 0.2rem 0.9rem;
}

.intake-proof-row strong {
  display: block;
  margin-bottom: 0.35rem;
}

.intake-proof-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.future-lanes {
  padding-bottom: 4rem;
}

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

.expansion-map-visual {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  margin-top: 1rem;
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 118, 110, 0.18), transparent 26%),
    radial-gradient(circle at 18% 22%, rgba(183, 129, 47, 0.18), transparent 22%),
    radial-gradient(circle at 78% 76%, rgba(199, 91, 69, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(235, 244, 238, 0.78));
  box-shadow: 0 16px 38px rgba(22, 18, 13, 0.08);
}

.expansion-core,
.expansion-node {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.86);
  padding: 1rem;
  box-shadow: 0 13px 30px rgba(22, 18, 13, 0.1);
}

.expansion-core {
  top: 50%;
  left: 50%;
  width: min(22rem, 42%);
  text-align: center;
  transform: translate(-50%, -50%);
}

.expansion-core span,
.expansion-node span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.expansion-core strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
}

.expansion-node {
  width: 13rem;
}

.expansion-node strong {
  display: block;
  line-height: 1.2;
}

.node-market {
  top: 1.2rem;
  left: 1.2rem;
}

.node-creator {
  top: 1.2rem;
  right: 1.2rem;
}

.node-private {
  right: 50%;
  bottom: 1.2rem;
  transform: translateX(50%);
}

.expansion-line {
  position: absolute;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.18), rgba(15, 118, 110, 0.72), rgba(183, 129, 47, 0.45));
  transform-origin: center left;
}

.line-market {
  top: 42%;
  left: 17%;
  width: 35%;
  transform: rotate(21deg);
}

.line-creator {
  top: 43%;
  right: 17%;
  width: 35%;
  transform: rotate(159deg);
}

.line-private {
  right: 50%;
  bottom: 31%;
  width: 20%;
  transform: rotate(90deg);
}

.process-section {
  padding-top: 5rem;
}

.quality-section {
  padding-top: 5rem;
}

.project-route-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.2rem minmax(0, 1fr) 2.2rem minmax(0, 1fr) 2.2rem minmax(0, 1fr);
  gap: 0;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(235, 244, 238, 0.74)),
    rgba(255, 250, 242, 0.72);
  padding: 1rem;
  box-shadow: 0 16px 38px rgba(22, 18, 13, 0.08);
}

.route-panel {
  min-height: 10.2rem;
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 242, 0.74)),
    rgba(255, 255, 255, 0.48);
  padding: 1rem;
}

.route-panel span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.route-panel strong {
  display: block;
  min-height: 2.7rem;
  font-size: 1rem;
  line-height: 1.25;
}

.route-panel i {
  display: block;
  height: 4.3rem;
  margin-top: 0.85rem;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(183, 129, 47, 0.18)),
    repeating-linear-gradient(90deg, rgba(20, 20, 21, 0.08) 0 1px, transparent 1px 18px),
    rgba(20, 20, 21, 0.04);
}

.route-read i {
  background:
    radial-gradient(circle at 34% 34%, rgba(15, 118, 110, 0.55), transparent 8%),
    radial-gradient(circle at 66% 58%, rgba(183, 129, 47, 0.55), transparent 9%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.8), rgba(235, 244, 238, 0.72));
}

.route-proof i {
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(255, 250, 242, 0.9) 16% 84%, transparent 84%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.52), rgba(183, 129, 47, 0.45));
}

.route-package i {
  background:
    linear-gradient(90deg, rgba(20, 20, 21, 0.12) 0 32%, transparent 32% 36%, rgba(15, 118, 110, 0.36) 36% 64%, transparent 64% 68%, rgba(183, 129, 47, 0.38) 68% 100%),
    rgba(255, 250, 242, 0.72);
}

.route-connector {
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.2), rgba(15, 118, 110, 0.78), rgba(183, 129, 47, 0.45));
}

.route-connector::after {
  display: block;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: -0.28rem;
  margin-left: auto;
  border-top: 2px solid rgba(15, 118, 110, 0.78);
  border-right: 2px solid rgba(15, 118, 110, 0.78);
  content: "";
  transform: rotate(45deg);
}

.process-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  counter-reset: project-step;
}

.process-grid article {
  --step-accent: var(--teal);
  --step-soft: rgba(15, 118, 110, 0.14);
  --step-wash: rgba(237, 247, 241, 0.82);
  position: relative;
  min-height: 13rem;
  border-color: rgba(20, 20, 21, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), var(--step-wash)),
    radial-gradient(circle at 88% 12%, var(--step-soft), transparent 28%);
  padding: 1.3rem;
  box-shadow: 0 16px 34px rgba(22, 18, 13, 0.08);
  counter-increment: project-step;
}

.process-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--step-accent), rgba(183, 129, 47, 0.62));
  content: "";
}

.process-grid article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.78rem;
  z-index: 1;
  width: 1.34rem;
  height: 1.34rem;
  border-top: 2px solid rgba(15, 118, 110, 0.46);
  border-right: 2px solid rgba(15, 118, 110, 0.46);
  background: var(--paper);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.process-grid article:nth-child(1) {
  --step-accent: #0f766e;
  --step-soft: rgba(15, 118, 110, 0.15);
  --step-wash: rgba(232, 246, 240, 0.86);
}

.process-grid article:nth-child(2) {
  --step-accent: #315f73;
  --step-soft: rgba(49, 95, 115, 0.15);
  --step-wash: rgba(230, 241, 244, 0.86);
}

.process-grid article:nth-child(3) {
  --step-accent: #b7812f;
  --step-soft: rgba(183, 129, 47, 0.18);
  --step-wash: rgba(250, 239, 216, 0.86);
}

.process-grid article:nth-child(4) {
  --step-accent: #c75b45;
  --step-soft: rgba(199, 91, 69, 0.15);
  --step-wash: rgba(255, 238, 232, 0.86);
}

.process-visual-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.process-visual-strip figure,
.quality-showcase figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.07);
}

.process-grid span {
  border: 1px solid var(--step-soft, rgba(199, 91, 69, 0.16));
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), var(--step-soft, rgba(199, 91, 69, 0.12)));
  padding: 0.4rem 0.58rem;
  color: var(--step-accent, var(--coral));
}

.process-grid h3 {
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.text-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.82), rgba(236, 241, 232, 0.74)),
    rgba(255, 250, 242, 0.72);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.07);
}

.text-strip strong {
  display: block;
  margin-bottom: 0.4rem;
}

.text-strip p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quality-board-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(15rem, 0.62fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 16%, rgba(199, 91, 69, 0.13), transparent 20%),
    radial-gradient(circle at 82% 72%, rgba(15, 118, 110, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(235, 244, 238, 0.76));
  padding: 1rem;
  box-shadow: 0 16px 38px rgba(22, 18, 13, 0.08);
}

.quality-board-input,
.quality-board-gate,
.quality-board-output {
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  padding: 1rem;
}

.quality-board-input span,
.quality-board-gate span,
.quality-board-output span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quality-board-input {
  position: relative;
  min-height: 13rem;
}

.quality-board-input i {
  position: absolute;
  display: block;
  width: 42%;
  height: 7rem;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.8), rgba(183, 129, 47, 0.22)),
    rgba(20, 20, 21, 0.06);
  box-shadow: 0 12px 24px rgba(22, 18, 13, 0.12);
}

.quality-board-input i:nth-of-type(1) {
  left: 1rem;
  bottom: 1rem;
}

.quality-board-input i:nth-of-type(2) {
  left: 29%;
  bottom: 2.15rem;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(255, 250, 242, 0.9)),
    rgba(20, 20, 21, 0.05);
}

.quality-board-input i:nth-of-type(3) {
  right: 1rem;
  bottom: 3.3rem;
  background:
    linear-gradient(135deg, rgba(199, 91, 69, 0.14), rgba(255, 250, 242, 0.85)),
    rgba(20, 20, 21, 0.05);
}

.quality-board-gate {
  display: grid;
  align-content: center;
  background: rgba(8, 63, 59, 0.93);
  color: #fffaf2;
}

.quality-board-gate span {
  color: #8fd0c8;
}

.quality-board-gate strong {
  display: flex;
  align-items: center;
  min-height: 2.3rem;
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  color: #fffaf2;
  font-size: 0.95rem;
}

.quality-board-gate strong:last-child {
  border-bottom: 0;
}

.quality-board-output div {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 11rem;
}

.quality-board-output i {
  display: block;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.5), rgba(183, 129, 47, 0.42)),
    rgba(20, 20, 21, 0.06);
}

.quality-board-output i:first-child {
  grid-row: span 2;
}

.quality-board-output i:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(15, 118, 110, 0.28)),
    rgba(20, 20, 21, 0.05);
}

.quality-board-output i:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(199, 91, 69, 0.25)),
    rgba(20, 20, 21, 0.05);
}

.systems-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 24%, rgba(15, 118, 110, 0.14), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(183, 129, 47, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(235, 244, 238, 0.76));
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(22, 18, 13, 0.08);
}

.qa-system-visual {
  grid-template-columns: minmax(0, 0.8fr) minmax(12rem, 0.45fr) minmax(0, 0.8fr);
  align-items: center;
}

.system-card,
.system-gate,
.package-system-visual article,
.intake-system-visual article {
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(22, 18, 13, 0.07);
}

.system-card span,
.system-gate span,
.package-system-visual span,
.intake-system-visual span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.system-card strong,
.package-system-visual strong,
.intake-system-visual strong {
  display: block;
  font-size: 1.15rem;
}

.system-gate {
  display: grid;
  gap: 0.5rem;
  background: rgba(8, 63, 59, 0.92);
  color: #fffaf2;
}

.system-gate span {
  color: #8fd0c8;
}

.system-gate i {
  display: block;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #8fd0c8, #f3c66a);
}

.system-gate i:nth-child(3) {
  width: 82%;
}

.system-gate i:nth-child(4) {
  width: 64%;
}

.package-system-visual {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-system-visual article,
.intake-system-visual article {
  min-height: 8.5rem;
}

.package-system-visual article:nth-child(2),
.intake-system-visual article:nth-child(2) {
  background: rgba(242, 231, 207, 0.82);
}

.package-system-visual article:nth-child(3),
.intake-system-visual article:nth-child(3) {
  background: rgba(226, 238, 232, 0.84);
}

.intake-system-visual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-visual-strip img {
  height: clamp(9rem, 12vw, 13rem);
  object-fit: cover;
}

.process-visual-strip figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-section {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(23rem, 0.5fr);
  gap: 2rem;
  align-items: start;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid rgba(20, 20, 21, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(235, 244, 238, 0.76)),
    rgba(255, 253, 247, 0.72);
  box-shadow: 0 24px 60px rgba(22, 18, 13, 0.11);
}

.contact-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.36rem;
  background: linear-gradient(180deg, var(--teal), var(--gold), var(--coral));
  content: "";
}

.contact-panel h2 {
  max-width: 46rem;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.08;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-lede {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.contact-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.contact-routes span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid rgba(183, 129, 47, 0.22);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(255, 255, 255, 0.52);
  color: #745217;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-case-board {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(13rem, 0.58fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  margin-top: 1.35rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(235, 244, 238, 0.75)),
    rgba(255, 250, 242, 0.72);
  padding: 0.85rem;
  box-shadow: 0 14px 34px rgba(22, 18, 13, 0.08);
}

.contact-case-board figure,
.contact-case-board article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(20, 20, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 10px 24px rgba(22, 18, 13, 0.07);
}

.contact-case-board figure:not(:last-child)::after,
.contact-case-board article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.64rem;
  z-index: 2;
  width: 1.08rem;
  height: 1.08rem;
  border-top: 2px solid rgba(15, 118, 110, 0.5);
  border-right: 2px solid rgba(15, 118, 110, 0.5);
  background: var(--paper);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.contact-case-board img {
  width: 100%;
  height: clamp(8.5rem, 12vw, 11.75rem);
  object-fit: cover;
  background: rgba(20, 20, 21, 0.05);
}

.case-source-card img {
  filter: saturate(0.9) contrast(0.96);
}

.contact-case-board figcaption,
.case-needs-card {
  padding: 0.9rem;
}

.contact-case-board span {
  display: inline-flex;
  margin-bottom: 0.48rem;
  border-radius: 999px;
  padding: 0.34rem 0.52rem;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-source-card span {
  background: rgba(199, 91, 69, 0.11);
  color: var(--coral);
}

.case-package-card span {
  background: rgba(183, 129, 47, 0.14);
  color: #745217;
}

.contact-case-board strong,
.case-needs-card h3 {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.25;
}

.contact-case-board p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.52;
}

.case-needs-card {
  display: grid;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(20, 20, 21, 0.93), rgba(8, 63, 59, 0.92)),
    var(--charcoal) !important;
  color: #fffaf2;
}

.case-needs-card span {
  background: rgba(143, 208, 200, 0.13);
  color: #8fd0c8;
}

.case-needs-card h3 {
  color: #fffaf2;
}

.case-needs-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.case-needs-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.86rem;
  line-height: 1.42;
}

.case-needs-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #8fd0c8;
  content: "";
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-proof-grid article {
  border: 1px solid rgba(20, 20, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.64);
  padding: 1rem;
}

.contact-proof-grid strong {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-proof-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 850;
}

.contact-proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.brief-card {
  position: relative;
  z-index: 1;
  border-color: rgba(8, 63, 59, 0.24);
  background:
    linear-gradient(160deg, rgba(20, 20, 21, 0.94), rgba(8, 63, 59, 0.94)),
    var(--charcoal);
  color: #fffaf2;
  box-shadow: 0 18px 40px rgba(20, 20, 21, 0.18);
}

.brief-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.brief-card-top .contact-label {
  margin-bottom: 0;
  color: #8fd0c8;
}

.brief-card-top > span {
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-fields {
  display: grid;
  gap: 0.7rem;
}

.brief-fields article {
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
  padding: 0.85rem;
}

.brief-fields span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-fields strong {
  color: #fffaf2;
  font-size: 0.96rem;
  line-height: 1.35;
}

.request-builder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.request-builder label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.request-builder select,
.request-builder textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2;
  font: inherit;
  text-transform: none;
}

.request-builder select {
  min-height: 2.85rem;
  padding: 0.65rem 0.72rem;
}

.request-builder textarea {
  resize: vertical;
  min-height: 5.8rem;
  padding: 0.7rem 0.78rem;
}

.request-builder option {
  color: var(--ink);
}

.builder-wide,
.builder-output,
.request-builder .brief-copy {
  grid-column: 1 / -1;
}

.builder-output {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.builder-output span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(143, 208, 200, 0.24);
  border-radius: 999px;
  background: rgba(143, 208, 200, 0.1);
  padding: 0.42rem 0.62rem;
  color: #8fd0c8;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.builder-output pre {
  overflow-x: auto;
  min-height: 11rem;
  margin: 0;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
  padding: 0.85rem;
  color: rgba(255, 250, 242, 0.86);
  font: 0.84rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.brief-copy {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.brief-card .button.primary {
  background: #fffaf2;
  color: var(--ink);
}

.copy-status {
  margin: 0.8rem 0 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--soft-ink);
  line-height: 1.65;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.closing-cta {
  margin: 0 4vw 4rem;
  padding: 3rem;
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(20, 20, 21, 0.94), rgba(8, 63, 59, 0.94)),
    var(--charcoal);
  color: #fffaf2;
}

.closing-cta h2 {
  max-width: 46rem;
  font-size: 2.5rem;
  line-height: 1.05;
}

.closing-cta .eyebrow {
  color: #8fd0c8;
}

.closing-cta .button.primary {
  display: inline-flex;
  background: #fffaf2;
  color: var(--ink);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.75fr);
  gap: 3rem;
  align-items: end;
  padding: 6rem 4vw 3rem;
}

.case-hero h1 {
  max-width: 13ch;
}

.case-hero p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.7;
}

.before-after-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 4vw 2rem;
}

.before-after-summary article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 1.35rem;
}

.before-after-summary span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.before-after-summary h2 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.before-after-summary p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.repair-lab-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  margin: 0 4vw 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.08);
}

.repair-lab-copy h2 {
  margin-bottom: 0.7rem;
  font-size: 2rem;
  line-height: 1.1;
}

.repair-lab-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--soft-ink);
  line-height: 1.65;
}

.repair-slider {
  --split: 54%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 21, 0.14);
  border-radius: 8px;
  background: rgba(20, 20, 21, 0.06);
  box-shadow: var(--shadow);
}

.repair-slider img {
  height: auto;
}

.repair-base {
  filter: saturate(1.03) contrast(1.02);
}

.repair-before-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: var(--split);
}

.repair-before-panel img {
  width: auto;
  max-width: none;
  height: 100%;
  filter: saturate(0.92) contrast(0.95);
}

.repair-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 2;
  width: 2px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.28), 0 0 30px rgba(15, 118, 110, 0.28);
}

.repair-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.3);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.92);
  color: var(--teal-deep);
  content: "↔";
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.repair-slider input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.repair-tags {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.repair-tags span {
  border: 1px solid rgba(255, 253, 247, 0.42);
  border-radius: 999px;
  padding: 0.4rem 0.62rem;
  background: rgba(20, 20, 21, 0.62);
  color: #fffaf2;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-section {
  display: grid;
  gap: 2rem;
  padding: 2rem 4vw 0;
}

.comparison-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.45fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.08);
}

.comparison-card.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
}

.comparison-card.reverse .comparison-copy {
  order: 2;
}

.comparison-copy h2 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1.1;
}

.comparison-copy p {
  color: var(--soft-ink);
  line-height: 1.65;
}

.case-points {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.case-points li {
  border-left: 2px solid rgba(15, 118, 110, 0.35);
  padding-left: 0.7rem;
}

.case-source {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.comparison-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}

.comparison-pair figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 20, 21, 0.04);
}

.comparison-pair figure span {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 250, 242, 0.88);
}

.comparison-pair img {
  height: auto;
  object-fit: contain;
}

.comparison-card.principle-card {
  align-items: stretch;
}

.comparison-note-panel {
  align-self: stretch;
  border: 1px solid rgba(183, 129, 47, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(235, 244, 238, 0.72)),
    rgba(255, 255, 255, 0.66);
  padding: 1.35rem;
}

.comparison-note-panel span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(183, 129, 47, 0.13);
  color: #745217;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-note-panel p {
  margin-bottom: 0.9rem;
  color: var(--soft-ink);
  line-height: 1.65;
}

.comparison-note-panel p:last-child {
  margin-bottom: 0;
}

.before-after-cta {
  margin: 3rem 4vw 4rem;
  padding: 3rem;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(20, 20, 21, 0.94), rgba(8, 63, 59, 0.92)),
    var(--charcoal);
  color: #fffaf2;
}

.before-after-cta h2 {
  max-width: 42rem;
  font-size: 2.4rem;
  line-height: 1.08;
}

.before-after-cta p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(255, 250, 242, 0.78);
  line-height: 1.65;
}

.before-after-cta .eyebrow {
  color: #8fd0c8;
}

.before-after-cta .button.primary {
  display: inline-flex;
  background: #fffaf2;
  color: var(--ink);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer p {
  margin-bottom: 0;
}

footer a {
  color: var(--teal-deep);
  font-weight: 800;
}

.service-proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.service-proof-strip figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 30px rgba(22, 18, 13, 0.08);
}

.service-proof-strip img {
  width: 100%;
  height: clamp(11rem, 17vw, 17rem);
  object-fit: cover;
  object-position: center;
}

.service-proof-strip figcaption {
  padding: 0.85rem 1rem;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quality-proof-wall {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.78fr;
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
}

.quality-proof-wall img {
  width: 100%;
  height: clamp(13rem, 22vw, 25rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: rgba(20, 20, 21, 0.04);
  box-shadow: 0 14px 34px rgba(22, 18, 13, 0.09);
}

.quality-proof-wall img:nth-child(3) {
  object-fit: contain;
  background: rgba(255, 250, 242, 0.72);
}

@media (max-width: 1280px) and (min-width: 761px) {
  .topbar {
    gap: 0.75rem;
    padding: 0.75rem 3vw;
  }

  .brand {
    gap: 0.55rem;
  }

  .topbar nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .topbar-actions {
    justify-content: flex-end;
  }

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

  .topbar nav a,
  .nav-cta,
  .button,
  .account-menu summary {
    padding: 0.55rem 0.75rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1fr);
    gap: 2rem;
    padding: 2.1rem 3vw 2.4rem;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(3.05rem, 4.8vw, 3.75rem);
    line-height: 1;
  }

  .hero-text {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-gallery {
    grid-template-rows: minmax(10.5rem, 0.75fr) minmax(10.5rem, 0.75fr) auto;
    gap: 0.65rem;
  }

  .hero-proof span {
    padding: 0.38rem 0.62rem;
    font-size: 0.78rem;
  }

  .hero-metrics {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-metrics dt {
    font-size: 1.18rem;
  }

  .signal-strip {
    margin: 0 3vw;
  }

  .section-block {
    padding: 4.5rem 3vw 0;
  }

  .studio-manifest,
  .before-after-summary,
  .repair-lab-section,
  .comparison-section,
  .before-after-cta {
    margin-left: 3vw;
    margin-right: 3vw;
  }

  .work-grid > .work-card:not(.study-card) img {
    height: clamp(12.5rem, 16vw, 16rem);
  }

  .culture-rail,
  .sample-rail {
    grid-auto-columns: minmax(22rem, 32rem);
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(21rem, 0.5fr);
    padding: 2rem;
  }
}

@media (max-height: 780px) and (min-width: 900px) {
  .topbar {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }

  .hero {
    padding-top: 1.65rem;
    padding-bottom: 2rem;
  }

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

  h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.9rem, 4.3vw, 3.55rem);
  }

  .hero-text {
    line-height: 1.5;
  }

  .hero-actions,
  .hero-proof {
    margin-top: 1rem;
  }

  .hero-metrics {
    margin-top: 0.85rem;
  }

  .hero-gallery {
    grid-template-rows: minmax(9.5rem, 0.7fr) minmax(9.5rem, 0.7fr) auto;
  }

  .section-block {
    padding-top: 4rem;
  }
}

@media (max-width: 1050px) {
  .hero,
  .split-section,
  .group-intro,
  .fit-copy,
  .audit-lab-section,
  .studio-manifest,
  .lab-board,
  .repair-lab-section,
  .case-hero,
  .comparison-card,
  .comparison-card.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .merchant-pack-showcase {
    grid-template-columns: 1fr;
  }

  .project-route-visual,
  .quality-board-visual,
  .package-ladder-visual,
  .contact-case-board {
    grid-template-columns: 1fr;
  }

  .route-connector {
    width: 2px;
    height: 1.8rem;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.2), rgba(15, 118, 110, 0.78), rgba(183, 129, 47, 0.45));
  }

  .route-connector::after {
    margin-top: auto;
    margin-left: -0.28rem;
    transform: rotate(135deg);
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }

  .contact-case-board figure:not(:last-child)::after,
  .contact-case-board article:not(:last-child)::after {
    display: none;
  }

  .merchant-pack-featured {
    grid-row: auto;
  }

  .comparison-card.reverse .comparison-copy {
    order: 0;
  }

  h1 {
    max-width: 14ch;
    font-size: 3.4rem;
  }

  .audit-lab-board,
  .package-grid,
  .fit-grid,
  .ladder-steps,
  .intake-grid,
  .intake-proof-row,
  .contact-proof-grid,
  .process-grid,
  .process-visual-strip,
  .package-system-visual,
  .intake-system-visual,
  .manifest-grid,
  .quality-grid,
  .quality-showcase,
  .before-after-summary,
  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .service-proof-strip,
  .quality-proof-wall {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    column-gap: 0.8rem;
    row-gap: 0.62rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .topbar nav {
    grid-area: nav;
  }

  .topbar-actions {
    grid-area: actions;
    justify-content: flex-end;
    gap: 0.42rem;
  }

  .account-panel {
    right: auto;
    left: 0;
  }

  .topbar nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.32rem;
    padding-bottom: 0.18rem;
  }

  .nav-cta {
    width: max-content;
    padding-inline: 0.72rem;
  }

  .topbar nav a,
  .nav-cta,
  .account-menu summary {
    padding: 0.48rem 0.68rem;
    font-size: 0.78rem;
  }

  .account-menu summary span:last-child {
    display: none;
  }

  .account-avatar {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.58rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 2.25rem 1.25rem 3rem;
  }

  .hero-copy,
  .hero-text,
  .section-heading,
  .group-intro,
  .work-card,
  .playbook-grid article {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .hero-text {
    width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 2rem;
  }

  .lab-visual-stage {
    min-height: 26rem;
  }

  .lab-flow-card {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0.75rem 0 0;
  }

  .lab-node-map,
  .scan-grid {
    display: none;
  }

  .signal-bars div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero-tile-large,
  .hero-tile-wide,
  .feature-card {
    grid-column: auto;
    grid-row: auto;
  }

  .signal-strip,
  .audit-lab-board,
  .fit-grid,
  .ladder-steps,
  .request-builder,
  .package-grid,
  .intake-grid,
  .intake-proof-row,
  .qa-system-visual,
  .package-system-visual,
  .intake-system-visual,
  .work-grid,
  .work-grid.compact,
  .work-grid.two-up,
  .outcome-grid,
  .quality-grid,
  .quality-showcase,
  .playbook-grid,
  .manifest-grid,
  .process-grid,
  .process-visual-strip,
  .contact-proof-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .service-orbit-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-height: auto;
    padding: 1rem;
  }

  .service-orbit-visual::before,
  .service-orbit-visual::after {
    display: none;
  }

  .orbit-core,
  .orbit-surface {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .orbit-core {
    min-height: auto;
  }

  .package-ladder-visual,
  .project-route-visual,
  .quality-board-visual {
    padding: 0.85rem;
  }

  .quality-board-input {
    min-height: 12rem;
  }

  .expansion-map-visual {
    display: grid;
    gap: 0.75rem;
    min-height: auto;
    padding: 1rem;
  }

  .expansion-core,
  .expansion-node {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .expansion-line {
    display: none;
  }

  .culture-rail,
  .sample-rail {
    grid-auto-columns: minmax(18rem, 86vw);
    margin-right: -1.25rem;
    padding-right: 1.25rem;
  }

  .section-media-inline {
    grid-template-columns: 1fr;
  }

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

  .service-card img,
  .service-card > span,
  .service-card > h3,
  .service-card > p {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card > span,
  .service-card > h3,
  .service-card > p {
    padding-left: 1.1rem;
  }

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

  .signal-strip div,
  .signal-strip div:nth-child(2),
  .signal-strip div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .section-block {
    padding-top: 4rem;
  }

  .case-hero {
    padding: 4rem 1.25rem 2rem;
  }

  .closing-cta {
    padding: 2rem;
  }

  .studio-manifest,
  .contact-panel {
    padding: 2rem;
  }

  .closing-cta h2,
  .before-after-cta h2,
  .section-heading h2,
  .studio-manifest h2,
  .contact-panel h2 {
    font-size: 2rem;
  }

  .before-after-summary,
  .comparison-pair {
    grid-template-columns: 1fr;
  }

  .comparison-section {
    padding: 2rem 1.25rem 0;
  }

  .comparison-card,
  .before-after-cta {
    padding: 1.25rem;
  }

  .before-after-summary,
  .before-after-cta {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .topbar,
  .hero,
  .section-block,
  .studio-manifest,
  .contact-panel,
  .closing-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .topbar nav a,
  .nav-cta,
  .button,
  .account-menu summary {
    padding: 0.42rem 0.56rem;
    font-size: 0.74rem;
  }

  .topbar nav a {
    min-width: max-content;
  }

  .nav-cta {
    padding-inline: 0.68rem;
  }

  .account-menu summary span:last-child {
    display: none;
  }

  .account-avatar {
    width: 1.18rem;
    height: 1.18rem;
    font-size: 0.58rem;
  }

  .account-panel {
    width: calc(100vw - 2rem);
  }

  .brand-mark {
    width: 1.95rem;
    height: 1.95rem;
  }

  .brand-wordmark {
    font-size: 0.94rem;
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.02;
  }

  .hero-copy,
  .hero-text {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .hero-text,
  .contact-lede,
  .work-card p,
  .playbook-grid p,
  .package-grid p,
  .lane-grid p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .sample-rail,
  .culture-rail {
    grid-auto-columns: minmax(17rem, 88vw);
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .contact-panel,
  .studio-manifest,
  .before-after-cta,
  .comparison-card {
    padding: 1.15rem;
  }

  .contact-routes {
    gap: 0.45rem;
  }

  .contact-proof-grid article,
  .brief-fields article {
    padding: 0.78rem;
  }

  .closing-cta h2,
  .before-after-cta h2,
  .section-heading h2,
  .studio-manifest h2,
  .contact-panel h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }
}
