:root {
  color-scheme: light;
  --paper: #f1f2ed;
  --paper-deep: #e6e8e0;
  --surface: #fafbf7;
  --surface-muted: #e9ece3;
  --ink: #171913;
  --ink-soft: #34372f;
  --muted: #666b60;
  --line: #cfd4c8;
  --line-strong: #aeb7a5;
  --accent: #68724f;
  --accent-dark: #37402c;
  --accent-soft: #dce2d2;
  --corner-brew-bg: #e7d9c2;
  --shadow: 0 28px 70px rgb(35 39 28 / 0.12);
  --radius: 4px;
  --max: 1280px;
  --nav-height: 72px;
  --sans: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  --display: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  display: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 40;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav-height);
  border-bottom: 1px solid rgb(23 26 22 / 0.1);
  background: rgb(246 247 243 / 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
}

.brand-symbol span {
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: -0.15em;
}

.brand-symbol span:first-child {
  border-right: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.brand-symbol span:last-child {
  background: var(--surface);
  color: var(--accent);
}

.brand-wordmark {
  display: inline-grid;
  justify-items: center;
  align-content: center;
}

.brand-name {
  color: var(--ink);
  font-size: 17px;
  line-height: 0.94;
  font-weight: 720;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 5.7px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 720;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgb(23 26 22 / 0.18);
}

.nav-cta:hover,
.btn.primary:hover {
  background: var(--accent-dark);
}

.nav-links .nav-cta {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 30px rgb(23 26 22 / 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--accent-dark);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

main {
  overflow: hidden;
}

.section {
  padding: 112px 0;
}

.section.compact {
  padding: 80px 0;
}

.section.hero-section {
  padding: 72px 0 92px;
}

.section.band {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(860px, calc(100% - 40px));
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 11em;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 720;
}

h2 {
  max-width: 920px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 680;
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.04;
  font-weight: 760;
}

h4 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 760;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
}

.small-copy {
  color: var(--muted);
  font-size: 15px;
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.wide {
  max-width: 1040px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100dvh - var(--nav-height) - 64px);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-copy .lead {
  max-width: 670px;
}

.hero-actions,
.cta-actions,
.card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 760;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 42px rgb(23 26 22 / 0.18);
}

.btn.secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn.secondary:hover {
  border-color: var(--line-strong);
  background: #fafbf8;
}

.btn.text {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--accent-dark);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric-strip div {
  min-height: 88px;
  padding: 16px;
  background: rgb(255 255 255 / 0.7);
}

.metric-strip strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.visual-board {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.82), rgb(255 255 255 / 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.visual-board::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: inherit;
  background: rgb(89 99 74 / 0.16);
  transform: rotate(-1.6deg);
}

.audit-board {
  padding: 18px;
  background: #fffefa;
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 2px 14px;
  border-bottom: 1px solid var(--line);
}

.board-top strong {
  font-size: 15px;
}

.board-top span {
  color: var(--muted);
  font-size: 13px;
}

.document-code {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 760;
}

.board-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 12px;
  padding-top: 14px;
}

.audit-document {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.audit-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audit-pane {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.audit-pane > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
}

.audit-pane .image-slot {
  min-height: 0;
  aspect-ratio: 4 / 3.08;
  border-radius: 6px;
}

.audit-pane.is-after .image-slot {
  background:
    linear-gradient(135deg, rgb(89 99 74 / 0.15), transparent 34%),
    linear-gradient(0deg, rgb(21 23 19 / 0.04), transparent),
    #f7f8f2;
}

.audit-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 142px);
  gap: 12px;
}

.issue-list {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.issue-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.issue-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 10px;
}

.issue-list li {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.review-stamp {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.review-stamp strong {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 42px);
  line-height: 0.9;
  font-weight: 520;
}

.review-stamp span {
  color: rgb(246 247 243 / 0.72);
  font-size: 13px;
}

.review-stamp em {
  margin-top: 6px;
  color: rgb(246 247 243 / 0.66);
  font-size: 11px;
  font-style: normal;
}

.audit-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.audit-note p {
  max-width: 24ch;
  color: var(--muted);
  font-size: 13px;
}

.slot-stack {
  display: grid;
  gap: 12px;
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(98 111 76 / 0.08), transparent 38%),
    linear-gradient(0deg, rgb(23 26 22 / 0.035), transparent),
    var(--surface-muted);
}

.image-slot.tall {
  aspect-ratio: 3 / 4;
}

.image-slot.wide {
  aspect-ratio: 16 / 10;
}

.image-slot::before {
  content: attr(data-label);
  max-width: 18ch;
  color: rgb(23 26 22 / 0.5);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgb(23 26 22 / 0.18);
  border-radius: 6px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.problem-item,
.service-card,
.work-card,
.detail-card,
.method-card,
.value-card,
.form-panel,
.plain-panel {
  background: var(--surface);
  border-radius: var(--radius);
}

.problem-item {
  min-height: 172px;
  padding: 24px;
  display: grid;
  align-content: space-between;
}

.problem-item span,
.index-number,
.tag,
.price-note {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.problem-item p {
  max-width: 18rem;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  font-weight: 760;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.service-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.service-card.featured .small-copy,
.service-card.featured .price-note {
  color: rgb(246 247 243 / 0.72);
}

.service-card .top {
  display: grid;
  gap: 16px;
}

.service-card .price {
  font-size: 30px;
  line-height: 1;
  font-weight: 820;
}

.service-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.featured .pill {
  background: rgb(246 247 243 / 0.12);
  color: rgb(246 247 243 / 0.82);
}

.before-after-grid {
  display: grid;
  gap: 18px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.comparison-copy {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 8px;
}

.comparison-copy p {
  color: var(--muted);
}

.comparison-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.method-card {
  min-height: 236px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.method-card p,
.detail-card p,
.work-card p,
.value-card p {
  color: var(--muted);
}

.review-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.review-panel p {
  margin-top: 10px;
  color: rgb(246 247 243 / 0.72);
}

.review-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.review-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgb(246 247 243 / 0.15);
  color: rgb(246 247 243 / 0.86);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
}

.work-card-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-band {
  padding: 56px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-band p {
  max-width: 680px;
  margin-top: 16px;
  color: rgb(246 247 243 / 0.72);
  font-size: 18px;
}

.cta-band .btn.primary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.cta-band .btn.secondary {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgb(246 247 243 / 0.35);
}

.site-footer {
  padding: 54px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.35fr));
  gap: 32px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 14px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-title {
  margin-bottom: 14px;
  font-weight: 760;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: 82px 0 70px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.42fr);
  gap: 54px;
  align-items: end;
}

.page-hero h1 {
  max-width: 13em;
  font-size: clamp(48px, 5.2vw, 76px);
}

.page-hero .lead {
  margin-top: 24px;
}

.quick-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.quick-facts div {
  padding: 18px;
  background: var(--surface);
}

.quick-facts span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.quick-facts strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.compare-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

td strong {
  display: block;
  margin-bottom: 4px;
}

tr:last-child td {
  border-bottom: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 8px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tier-group {
  display: grid;
  gap: 12px;
}

.tier-heading {
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.tier-heading .tag {
  color: rgb(246 247 243 / 0.68);
}

.tier-heading h3 {
  margin-top: 12px;
}

.tier-card {
  min-height: 164px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  gap: 12px;
  align-content: start;
}

.tier-card strong {
  font-size: 19px;
  line-height: 1.1;
}

.tier-card span {
  color: var(--accent);
  font-weight: 780;
}

.tier-card p {
  color: var(--muted);
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
}

.service-overview-card {
  align-content: start;
  gap: 15px;
  padding: 20px;
}

.service-overview-card h3 {
  font-size: clamp(21px, 1.8vw, 25px);
}

.service-overview-card p {
  min-height: 56px;
  font-size: 13px;
}

.service-overview-card .btn {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
}

.definition-list {
  display: grid;
  gap: 14px;
}

.definition-list div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.definition-list dt {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.definition-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.service-overview-card .definition-list {
  gap: 8px;
}

.service-overview-card .definition-list div {
  gap: 3px;
  padding-top: 8px;
}

.service-overview-card .definition-list dt {
  font-size: 11px;
}

.service-overview-card .definition-list dd {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 32px;
  align-items: start;
}

.plain-panel {
  padding: 28px;
  border: 1px solid var(--line);
}

.plain-panel.dark {
  background: var(--ink);
  color: var(--paper);
}

.plain-panel.dark p,
.plain-panel.dark li {
  color: rgb(246 247 243 / 0.72);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-grid li,
.simple-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.dark .check-grid li,
.dark .simple-list li {
  border-color: rgb(246 247 243 / 0.14);
}

.steps-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.step-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  background: var(--surface);
}

.step-row span {
  color: var(--accent);
  font-weight: 820;
}

.upgrade-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  align-content: space-between;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  white-space: nowrap;
}

.filter-button.is-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.case-row[hidden] {
  display: none;
}

.case-copy {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 8px;
}

.case-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case-details div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.case-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
}

.founder-strip {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.founder-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.project-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fbfcf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
.filter-button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgb(98 111 76 / 0.28);
  outline-offset: 2px;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 720;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #f5d8d3;
  color: #8f2519;
}

.project-form button[disabled],
.project-form button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.68;
}

.intake-admin-v3 {
  background: var(--paper);
}

.intake-admin-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 72px) 0 clamp(64px, 8vw, 120px);
}

.intake-admin-header {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  padding-bottom: clamp(30px, 5vw, 62px);
  border-bottom: 1px solid var(--ink);
}

.intake-admin-header h1 {
  max-width: 9em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 7vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.intake-admin-login {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  gap: 14px;
  align-items: end;
  max-width: 680px;
  padding: clamp(26px, 4vw, 42px) 0;
}

.intake-admin-login label {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.intake-admin-login input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.intake-admin-login .small-copy {
  grid-column: 1 / -1;
  max-width: 58ch;
  color: var(--muted);
}

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

.intake-card,
.intake-empty {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.intake-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intake-card h2 {
  max-width: 16em;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.intake-card dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}

.intake-card dl div {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.intake-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intake-card dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .intake-admin-shell {
    width: min(100% - 28px, 1180px);
  }

  .intake-admin-header,
  .intake-admin-login,
  .intake-card dl div {
    grid-template-columns: 1fr;
  }

  .intake-admin-login .journal-button {
    width: 100%;
  }
}

.side-note {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: grid;
  gap: 18px;
}

.mini-method {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.mini-method div {
  padding: 16px;
  background: var(--surface);
}

.mini-method span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.mini-method strong {
  display: block;
  margin-top: 3px;
}

/* Homepage: premium service studio direction */
.home-hero {
  padding: 66px 0 72px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: auto;
}

.hero-stage .hero-copy {
  gap: 28px;
}

.hero-stage h1 {
  max-width: 9em;
  font-size: clamp(60px, 5vw, 76px);
}

.hero-stage .lead {
  max-width: 580px;
}

.hero-proof {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-proof-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.proof-image {
  margin: 0;
  padding: 8px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 54px rgb(35 39 28 / 0.12);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.proof-image figcaption {
  padding-top: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.proof-after {
  transform: translateY(-28px);
}

.hero-proof-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
}

.hero-proof-caption strong {
  color: var(--ink);
}

.hero-proof-caption a,
.text-link {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.audience-band {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
}

.audience-layout > p {
  font-weight: 760;
}

.audience-layout ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 14px;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}

.diagnostic-intro {
  position: sticky;
  top: calc(var(--nav-height) + 36px);
  display: grid;
  gap: 24px;
}

.diagnostic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 148px;
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
}

.diagnostic-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.diagnostic-list p {
  max-width: 25ch;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.12;
  font-weight: 700;
}

.service-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.service-path {
  display: grid;
  gap: 24px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(320px, 1fr) auto;
  gap: 44px;
  align-items: center;
  padding: 34px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
}

.service-feature-copy {
  display: grid;
  gap: 14px;
}

.service-kicker,
.service-expansion-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.service-feature-copy > p:last-child,
.service-expansion-grid p {
  color: var(--muted);
}

.service-feature-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.service-feature-facts div {
  display: grid;
  gap: 4px;
}

.service-feature-facts span {
  color: var(--muted);
  font-size: 11px;
}

.service-feature-facts strong {
  font-size: 14px;
  line-height: 1.3;
}

.service-expansion-grid {
  display: grid;
}

.service-expansion-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.6fr) minmax(220px, 0.9fr) minmax(300px, 1.35fr) auto;
  gap: 28px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.service-expansion-grid h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

.service-expansion-grid a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  white-space: nowrap;
}

.case-feature-head {
  display: grid;
  gap: 20px;
  max-width: 820px;
  margin-bottom: 48px;
}

.case-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.case-media figure {
  margin: 0;
}

.case-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.case-media figcaption {
  max-width: 58ch;
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.case-outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  margin-bottom: 28px;
}

.case-outcomes div {
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
}

.case-outcomes span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.case-outcomes p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.method-section {
  display: grid;
  gap: 42px;
}

.method-sequence {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.method-sequence li {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.method-sequence li:first-child {
  border-left: 1px solid var(--line);
}

.method-sequence > li > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.method-sequence h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.method-sequence p {
  color: var(--muted);
  font-size: 14px;
}

.review-standard {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line-strong);
  background: var(--accent-soft);
}

.review-standard strong {
  font-size: 18px;
}

.review-standard p {
  color: var(--ink-soft);
}

.editorial-cta {
  padding: 52px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.editorial-cta p {
  color: var(--muted);
}

.editorial-cta .btn.primary {
  background: var(--ink);
  color: var(--paper);
}

.editorial-cta .btn.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.work-hero-image {
  margin: 0;
}

.work-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.work-hero-image figcaption,
.featured-case-media figcaption {
  padding-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.case-row.featured-case {
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 0 0 58px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
}

.featured-case-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.featured-case-media figure {
  margin: 0;
}

.featured-case-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.featured-case-copy {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
}

.case-list > .case-row:not(.featured-case) {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.fix-proof {
  display: grid;
  gap: 14px;
}

.fix-proof-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
}

.fix-proof-head span {
  color: var(--muted);
}

.fix-proof-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.fix-proof-images figure {
  margin: 0;
}

.fix-proof-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgb(35 39 28 / 0.1);
}

.fix-proof-images figcaption {
  padding-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

@media (hover: hover) {
  .service-card,
  .service-overview-card,
  .work-card,
  .value-card,
  .tier-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .service-card:hover,
  .service-overview-card:hover,
  .work-card:hover,
  .value-card:hover,
  .tier-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 18px 44px rgb(22 26 19 / 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .method-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .services-grid,
  .method-grid,
  .tier-grid,
  .service-overview-grid,
  .upgrade-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid,
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .side-note {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-height: 66px;
  }

  .site-header {
    height: var(--nav-height);
  }

  .nav-shell,
  .container,
  .container.narrow {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--nav-height) + 10px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-links {
    display: grid;
    gap: 4px;
  }

  .brand-wordmark {
    justify-items: start;
  }

  .brand-sub {
    display: none;
  }

  .nav-links a,
  .nav-links .nav-cta {
    justify-content: flex-start;
    width: 100%;
  }

  .section,
  .section.hero-section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 58px 0 46px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .board-grid,
  .comparison-row,
  .comparison-slots,
  .two-col,
  .case-row,
  .founder-strip,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .services-grid,
  .method-grid,
  .tier-grid,
  .work-grid,
  .problem-grid,
  .detail-grid,
  .upgrade-grid,
  .value-grid,
  .footer-grid,
  .case-details,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-overview-card p {
    min-height: auto;
  }

  .method-card {
    min-height: 190px;
  }

  .cta-band {
    padding: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-name {
    max-width: none;
    white-space: nowrap;
    line-height: 0.94;
  }

  .hero-actions,
  .cta-actions,
  .card-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 0 16px;
  }

  .visual-board {
    padding: 12px;
  }

  .project-form {
    padding: 20px;
  }
}

@media (max-width: 1080px) {
  .hero-stage,
  .diagnostic-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-stage .hero-copy,
  .hero-proof {
    max-width: 820px;
  }

  .diagnostic-intro {
    position: static;
    max-width: 760px;
  }

  .service-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .service-expansion-grid article {
    grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  }

  .service-expansion-grid article p,
  .service-expansion-grid article a {
    grid-column: 2;
  }

  .case-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-case-copy {
    grid-template-columns: 1fr;
  }

  .method-sequence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding: 34px 0 52px;
  }

  .hero-stage {
    gap: 48px;
  }

  .hero-stage h1 {
    max-width: none;
    font-size: clamp(46px, 12vw, 58px);
  }

  .proof-after {
    transform: translateY(-12px);
  }

  .audience-layout,
  .service-feature,
  .review-standard {
    grid-template-columns: 1fr;
  }

  .audience-layout ul {
    justify-content: flex-start;
  }

  .diagnostic-list {
    grid-template-columns: 1fr;
  }

  .diagnostic-list li {
    min-height: auto;
  }

  .service-feature .btn {
    grid-column: auto;
  }

  .service-expansion-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-expansion-grid article p,
  .service-expansion-grid article a {
    grid-column: auto;
  }

  .case-media {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .case-media figure {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .featured-case-media {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .featured-case-media figure {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .case-outcomes,
  .method-sequence {
    grid-template-columns: 1fr;
  }

  .method-sequence li {
    min-height: 148px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .review-standard {
    gap: 12px;
  }

  .editorial-cta {
    padding: 38px 0;
  }
}

@media (max-width: 480px) {
  .hero-proof-images {
    gap: 8px;
  }

  .proof-image {
    padding: 5px 5px 9px;
  }

  .hero-proof-caption {
    display: grid;
    gap: 8px;
  }

  .service-feature-facts {
    grid-template-columns: 1fr;
  }
}

/* Homepage 2026: productised studio with restrained colour-field motion */
.home-v2 {
  --paper: #f2f3ef;
  --paper-deep: #e6e8e2;
  --surface: #fbfcf8;
  --surface-muted: #e9ebe6;
  --ink: #121410;
  --ink-soft: #30332d;
  --muted: #656a61;
  --line: #cdd1c8;
  --line-strong: #9ca39a;
  --accent: #4059c7;
  --accent-dark: #293b91;
  --accent-soft: #dce2fa;
  background: var(--paper);
}

.home-v2 .site-header {
  background: rgb(242 243 239 / 0.9);
}

.home-v2 .brand-symbol,
.home-v2 .nav-links .nav-cta,
.home-v2 .btn.primary {
  background: var(--ink);
}

.home-v2 .nav-links .nav-cta:hover,
.home-v2 .nav-links .nav-cta:focus-visible,
.home-v2 .btn.primary:hover {
  background: var(--accent-dark);
}

.home-v2 .btn,
.home-v2 .nav-cta {
  box-shadow: none;
}

.home-v2 .btn.secondary {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.home-opening {
  min-height: calc(100dvh - var(--nav-height) - 65px);
  padding: 56px 0 64px;
  display: grid;
  align-items: center;
}

.opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.7fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
}

.opening-copy {
  display: grid;
  gap: 26px;
  align-content: center;
}

.opening-copy .eyebrow {
  margin: 0;
  color: var(--accent);
}

.opening-copy h1 {
  max-width: 10em;
  font-size: clamp(64px, 6.25vw, 90px);
  line-height: 0.9;
  font-weight: 730;
}

.opening-copy .lead {
  max-width: 570px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.opening-visual {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 0.86;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(84px, 0.3fr);
  grid-template-rows: minmax(0, 1fr) minmax(110px, 0.32fr);
  gap: 10px;
}

.colour-panel {
  min-width: 0;
  min-height: 0;
  border-radius: 2px;
  will-change: transform;
}

.colour-panel-main {
  grid-row: 1 / 3;
  background: #4059c7;
}

.colour-panel-side {
  background: #d9e56f;
}

.colour-panel-small {
  background: #d45e46;
}

.offer-rail {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}

.offer-rail-grid {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 0.75fr)) auto;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.offer-rail-grid strong {
  font-size: 15px;
}

.offer-rail-grid span {
  color: var(--muted);
}

.offer-rail-grid a {
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.entry-section {
  background: var(--surface);
}

.entry-layout {
  display: grid;
  gap: 58px;
}

.entry-intro {
  display: grid;
  gap: 20px;
  max-width: 870px;
}

.entry-intro h2 {
  max-width: 12em;
}

.fix-offer {
  display: grid;
  grid-template-columns: minmax(170px, 0.46fr) minmax(300px, 0.9fr) minmax(340px, 1fr) auto;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: 34px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
}

.fix-offer-price {
  display: grid;
  gap: 3px;
}

.fix-offer-price span {
  color: var(--muted);
  font-size: 12px;
}

.fix-offer-price strong {
  color: var(--accent);
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1;
}

.fix-offer-main {
  display: grid;
  gap: 12px;
}

.fix-offer-main p {
  color: var(--muted);
}

.fix-offer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.fix-offer-facts div {
  display: grid;
  gap: 6px;
}

.fix-offer-facts dt,
.service-panel dt {
  color: var(--muted);
  font-size: 11px;
}

.fix-offer-facts dd,
.service-panel dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 680;
}

.work-showcase {
  background: var(--paper);
}

.showcase-heading {
  display: grid;
  gap: 16px;
  max-width: 650px;
  margin-bottom: 44px;
}

.showcase-heading p {
  color: var(--muted);
  font-size: 15px;
}

.colour-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 34px 14px;
}

.colour-work {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 13px;
}

.colour-work-large {
  grid-row: 1 / 3;
}

.project-field {
  width: 100%;
  min-height: 280px;
  border-radius: 2px;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.colour-work-large .project-field {
  min-height: 720px;
}

.field-cobalt {
  background: #4059c7;
}

.field-coral {
  background: #d45e46;
}

.field-moss {
  background: #768066;
}

.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.project-caption strong {
  font-size: clamp(18px, 1.8vw, 24px);
}

.project-caption small {
  color: var(--muted);
  font-size: 12px;
}

.showcase-link {
  display: inline-block;
  margin-top: 34px;
}

.services-home {
  border-top: 1px solid var(--line);
  background: var(--surface-muted);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 8vw, 116px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  display: grid;
  gap: 22px;
}

.service-accordion {
  border-top: 2px solid var(--ink);
}

.service-accordion details {
  border-bottom: 1px solid var(--line-strong);
}

.service-accordion summary {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 28px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 730;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.summary-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease;
}

.summary-icon::before {
  content: "+";
}

.service-accordion details[open] .summary-icon {
  transform: rotate(45deg);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 22px 42px;
  padding: 0 52px 30px 0;
}

.service-panel > p {
  max-width: 45ch;
  color: var(--muted);
}

.service-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.service-panel dl div {
  display: grid;
  gap: 4px;
}

.service-panel > a {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.method-story {
  padding-bottom: 40px;
  background: var(--paper);
}

.method-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 9vw, 128px);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: calc(var(--nav-height) + 36px);
  display: grid;
  gap: 22px;
}

.method-intro p {
  max-width: 46ch;
  color: var(--muted);
}

.method-colour {
  width: min(100%, 390px);
  aspect-ratio: 1.45;
  margin-top: 18px;
  border-radius: 2px;
  background: var(--accent);
  transform-origin: left center;
  will-change: transform;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  min-height: max(310px, 36vh);
  display: grid;
  align-content: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.method-steps li:first-child {
  border-top: 2px solid var(--ink);
}

.method-steps h3 {
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 700;
}

.method-steps p {
  max-width: 42ch;
  color: var(--muted);
  font-size: 18px;
}

.trust-band {
  padding: 34px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.trust-grid div {
  display: grid;
  gap: 5px;
}

.trust-grid strong {
  font-size: 16px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 13px;
}

.home-final {
  background: var(--accent-soft);
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
}

.final-layout > div:first-child {
  display: grid;
  gap: 18px;
}

.final-layout h2 {
  max-width: 11em;
}

.final-layout p {
  color: var(--ink-soft);
}

.home-v2 :focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (hover: hover) {
  .colour-work:hover .project-field {
    transform: scale(0.985);
  }

  .service-accordion summary:hover {
    color: var(--accent-dark);
  }
}

@media (max-width: 1120px) {
  .opening-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
    gap: 46px;
  }

  .offer-rail-grid {
    grid-template-columns: 1.2fr repeat(2, minmax(140px, 0.8fr)) auto;
  }

  .offer-rail-grid span:nth-of-type(2) {
    display: none;
  }

  .fix-offer {
    grid-template-columns: minmax(150px, 0.4fr) minmax(280px, 0.8fr) minmax(0, 1fr);
  }

  .fix-offer .btn {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .home-opening {
    min-height: auto;
    padding: 42px 0 48px;
  }

  .opening-grid,
  .entry-layout,
  .services-layout,
  .method-story-grid,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .opening-grid {
    gap: 42px;
  }

  .opening-copy h1 {
    max-width: none;
    font-size: clamp(52px, 15vw, 72px);
  }

  .opening-visual {
    max-height: none;
    aspect-ratio: 2.1;
    grid-template-columns: minmax(0, 1fr) minmax(72px, 0.28fr);
    grid-template-rows: minmax(0, 1fr) minmax(74px, 0.3fr);
  }

  .opening-copy .hero-actions {
    flex-wrap: nowrap;
  }

  .home-v2 .opening-copy .btn {
    width: auto;
    flex: 1 1 0;
  }

  .offer-rail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .offer-rail-grid span:nth-of-type(2) {
    display: block;
  }

  .offer-rail-grid span:nth-of-type(1) {
    display: none;
  }

  .offer-rail-grid a {
    grid-column: 1 / -1;
  }

  .entry-layout {
    gap: 38px;
  }

  .fix-offer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fix-offer-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fix-offer .btn {
    grid-column: auto;
  }

  .colour-work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 38px;
  }

  .colour-work-large {
    grid-row: auto;
  }

  .project-field,
  .colour-work-large .project-field {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .services-intro,
  .method-intro {
    position: static;
  }

  .service-panel {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .method-story-grid {
    gap: 52px;
  }

  .method-colour {
    width: 100%;
    aspect-ratio: 2.2;
  }

  .method-steps li {
    min-height: 240px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .final-layout {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .opening-copy {
    gap: 22px;
  }

  .opening-copy h1 {
    font-size: clamp(48px, 14.2vw, 64px);
  }

  .opening-copy .lead {
    font-size: 18px;
  }

  .offer-rail-grid {
    grid-template-columns: 1fr;
  }

  .offer-rail-grid span,
  .offer-rail-grid a {
    grid-column: auto;
  }

  .fix-offer-facts {
    grid-template-columns: 1fr;
  }

  .project-caption {
    display: grid;
    gap: 4px;
  }

  .service-accordion summary {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 12px;
    font-size: 22px;
  }

  .summary-price {
    grid-column: 1;
    grid-row: 2;
  }

  .summary-icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .method-steps h3 {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .colour-panel,
  .project-field,
  .method-colour {
    will-change: auto;
  }
}

/* Homepage 2026: OpenAI-inspired service journal */
.home-v3 {
  --paper: #f7f7f4;
  --paper-deep: #ededeb;
  --surface: #ffffff;
  --surface-muted: #f0f0ee;
  --ink: #050506;
  --ink-soft: #202124;
  --muted: #636363;
  --line: #d5d5cf;
  --line-strong: #9c9c96;
  --accent: #1846f2;
  --accent-dark: #0c32ca;
  --accent-soft: #f0f1f4;
  --radius: 0;
  --max: 1720px;
  --ambient-progress: 0;
  --ambient-x: 50%;
  --ambient-y: 28%;
  background:
    linear-gradient(180deg, rgb(247 247 244 / 0.96), rgb(247 247 244 / 0.9)),
    var(--paper);
  color: var(--ink);
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgb(24 70 242 / 0.1), transparent 28rem),
    radial-gradient(circle at 8% 20%, rgb(24 70 242 / 0.075), transparent 34rem),
    linear-gradient(180deg, rgb(255 255 255 / 0.32), transparent 48%, rgb(221 227 255 / 0.22));
  opacity: 0.96;
}

.ambient-field::before,
.ambient-field::after,
.ambient-orb {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ambient-field::before {
  inset: -24px;
  background-image:
    linear-gradient(rgb(5 5 6 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(5 5 6 / 0.035) 1px, transparent 1px);
  background-size: 168px 168px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  opacity: calc(0.58 - (var(--ambient-progress) * 0.18));
  transform: translate3d(0, calc(var(--ambient-progress) * -34px), 0);
}

.ambient-field::after {
  inset: auto -10% -28%;
  height: 52%;
  background:
    radial-gradient(ellipse at 24% 35%, rgb(24 70 242 / 0.11), transparent 48%),
    radial-gradient(ellipse at 78% 42%, rgb(88 164 255 / 0.08), transparent 50%);
  filter: blur(18px);
  opacity: calc(0.45 + (var(--ambient-progress) * 0.22));
  transform: translate3d(0, calc(var(--ambient-progress) * -48px), 0);
}

.ambient-orb {
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.34;
  transform: translate3d(0, calc(var(--ambient-progress) * -28px), 0);
  mix-blend-mode: multiply;
}

.ambient-orb-one {
  top: 6%;
  left: -13%;
  background: rgb(24 70 242 / 0.2);
}

.ambient-orb-two {
  right: -17%;
  top: 30%;
  background: rgb(104 140 255 / 0.16);
  transform: translate3d(0, calc(var(--ambient-progress) * 42px), 0);
}

.ambient-orb-three {
  left: 38%;
  bottom: -22%;
  background: rgb(255 255 255 / 0.72);
  opacity: 0.58;
  mix-blend-mode: normal;
}

.home-v3 main,
.home-v3 .site-footer {
  position: relative;
  z-index: 1;
}

.home-v3 .site-header {
  background: rgb(247 247 244 / 0.92);
  border-bottom-color: var(--line);
}

.home-v3 .nav-shell {
  width: min(100%, var(--max));
  padding-left: 28px;
  padding-right: 0;
}

.home-v3 .brand-name {
  max-width: none;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.home-v3 .brand-symbol {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: var(--surface);
}

.home-v3 .nav-links {
  height: 100%;
  gap: 0;
}

.home-v3 .nav-links a {
  min-height: var(--nav-height);
  padding: 0 30px;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 0;
  color: var(--ink);
  font-size: 14px;
}

.home-v3 .nav-links a:hover,
.home-v3 .nav-links a:focus-visible {
  background: var(--surface);
  box-shadow: none;
  border-color: var(--line);
}

.home-v3 .nav-links .nav-cta {
  min-height: var(--nav-height);
  padding: 0 36px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: none;
  font-weight: 690;
}

.home-v3 .nav-links .nav-cta:hover,
.home-v3 .nav-links .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface);
}

.journal-frame {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.journal-hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-height));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(247 247 244 / 0.78), rgb(247 247 244 / 0.68) 56%, rgb(247 247 244 / 0.9)),
    var(--paper);
  isolation: isolate;
}

.home-light-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.86;
}

.home-light-rays::before {
  content: "";
  position: absolute;
  inset: -18% -10% -6%;
  background:
    radial-gradient(ellipse at 14% 0%, rgb(24 70 242 / 0.24), transparent 42%),
    radial-gradient(ellipse at 52% 16%, rgb(24 70 242 / 0.12), transparent 48%),
    linear-gradient(112deg, transparent 0 30%, rgb(24 70 242 / 0.075) 42%, transparent 60%),
    linear-gradient(128deg, transparent 0 42%, rgb(24 70 242 / 0.052) 52%, transparent 70%);
  filter: blur(10px);
  opacity: 0.9;
}

.home-light-rays canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.52;
  mix-blend-mode: normal;
}

.home-light-rays[data-light-rays-state="live"]::before {
  opacity: 0.42;
}

.journal-hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100dvh - var(--nav-height));
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) minmax(330px, 390px);
  align-items: stretch;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.journal-rail {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: clamp(104px, 18vh, 180px);
  padding: 42px 28px;
  border-right: 1px solid var(--line);
}

.journal-rail p {
  max-width: 120px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.journal-rail a {
  align-self: end;
  color: var(--ink);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.journal-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(38px, 5vw, 68px) clamp(38px, 4vw, 48px) 38px;
}

.journal-hero-copy h1 {
  max-width: 9.1em;
  margin-bottom: 30px;
  font-size: clamp(78px, 8vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 780;
}

.journal-hero-copy p {
  max-width: 600px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.journal-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.journal-button,
.journal-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 680;
}

.journal-button {
  padding: 0 28px;
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
}

.journal-button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--surface);
}

.journal-button-primary:hover,
.journal-button-primary:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.journal-link {
  min-height: auto;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.journal-offer-card {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 3vw, 38px);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgb(255 255 255 / 0.88), rgb(255 255 255 / 0.68)),
    rgb(255 255 255 / 0.74);
  box-shadow: inset 1px 0 0 rgb(255 255 255 / 0.58);
  backdrop-filter: blur(16px);
}

.journal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 760;
}

.journal-kicker span {
  width: 13px;
  height: 13px;
  background: var(--accent);
}

.journal-offer-card h2 {
  max-width: 7em;
  margin-bottom: 18px;
  font-size: clamp(42px, 3.7vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 780;
}

.journal-price {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.journal-price span {
  color: var(--muted);
  font-size: 18px;
}

.journal-price strong {
  color: var(--accent);
  font-size: clamp(58px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 790;
}

.journal-offer-card > p:not(.journal-kicker) {
  max-width: 330px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 16px;
}

.offer-specs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
}

.offer-specs div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.offer-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 690;
}

.journal-section {
  position: relative;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(247 247 244 / 0.88), rgb(247 247 244 / 0.82)),
    transparent;
  isolation: isolate;
}

.journal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 12%, rgb(24 70 242 / 0.045), transparent 24rem),
    linear-gradient(90deg, transparent, rgb(255 255 255 / 0.32) 44%, transparent);
  opacity: 0.72;
  pointer-events: none;
}

.journal-start::before,
.journal-proof::before {
  background:
    radial-gradient(circle at 18% 8%, rgb(24 70 242 / 0.06), transparent 26rem),
    radial-gradient(circle at 78% 78%, rgb(24 70 242 / 0.04), transparent 30rem);
}

.journal-labeled-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.journal-side-label {
  padding: 54px 28px;
  border-right: 1px solid var(--line);
}

.journal-side-label span {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  display: block;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 760;
}

.journal-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
  gap: 14px;
  padding: clamp(48px, 6vw, 86px) clamp(34px, 5vw, 48px);
}

.journal-work .journal-content-block {
  padding-right: 0;
  padding-left: 0;
}

.journal-work .journal-section-copy {
  padding-right: clamp(34px, 5vw, 52px);
  padding-left: clamp(34px, 5vw, 52px);
}

.work-feature,
.work-stack-item {
  color: inherit;
}

.work-feature img,
.work-stack-item img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--surface-muted);
}

.work-feature {
  min-height: 760px;
  display: block;
  overflow: hidden;
}

.work-stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-stack-item {
  display: grid;
  grid-template-columns: minmax(160px, 0.95fr) minmax(150px, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.work-stack-item img {
  aspect-ratio: 4 / 3;
  max-height: 218px;
}

.work-stack-item p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 760;
}

.work-stack-item h3 {
  margin-bottom: 17px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 720;
}

.work-stack-item a,
.service-index-panel a {
  display: inline-block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 680;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.selected-work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
}

.selected-work-tile {
  --work-parallax: 0px;
  position: relative;
  min-height: clamp(280px, 22vw, 430px);
  display: block;
  overflow: hidden;
  background: var(--surface-muted);
  color: var(--surface);
  isolation: isolate;
}

.selected-work-tile::before,
.selected-work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
}

.selected-work-tile::before {
  background:
    linear-gradient(180deg, rgb(5 5 6 / 0.02) 22%, rgb(5 5 6 / 0.2) 62%, rgb(5 5 6 / 0.64)),
    radial-gradient(circle at 16% 88%, rgb(24 70 242 / 0.34), transparent 46%);
}

.selected-work-tile::after {
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgb(24 70 242 / 0.2));
  mix-blend-mode: screen;
}

.selected-work-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--work-parallax), 0) scale(1.025);
  filter: saturate(0.96) contrast(0.98);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.selected-work-overlay {
  position: absolute;
  left: clamp(22px, 2.2vw, 34px);
  right: clamp(22px, 2.2vw, 34px);
  bottom: clamp(22px, 2.2vw, 34px);
  z-index: 2;
  width: auto;
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--surface);
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  text-shadow: 0 1px 18px rgb(5 5 6 / 0.42);
}

.selected-work-overlay::before {
  content: "";
  width: 44px;
  height: 2px;
  background: rgb(97 137 255 / 0.9);
}

.selected-work-overlay strong {
  color: rgb(247 247 244 / 0.96);
  font-size: clamp(28px, 3vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.selected-work-overlay small {
  color: rgb(176 197 255 / 0.92);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 760;
}

@media (hover: hover) {
  .selected-work-tile:hover img,
  .selected-work-tile:focus-visible img {
    transform: translate3d(0, var(--work-parallax), 0) scale(1.07);
    filter: saturate(0.86) contrast(0.88) brightness(0.82);
  }

  .selected-work-tile:hover::before,
  .selected-work-tile:hover::after,
  .selected-work-tile:focus-visible::before,
  .selected-work-tile:focus-visible::after {
    opacity: 1;
  }

  .selected-work-tile:hover .selected-work-overlay,
  .selected-work-tile:focus-visible .selected-work-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

.journal-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  padding: clamp(48px, 6vw, 86px) clamp(34px, 5vw, 48px);
}

.service-index h2,
.process-content h2,
.journal-cta h2 {
  max-width: 12em;
  margin-bottom: 48px;
  font-size: clamp(44px, 4.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 760;
}

.service-index {
  border-top: 1px solid var(--ink);
}

.service-index h2 {
  margin-top: 44px;
}

.service-index details {
  border-bottom: 1px solid var(--line-strong);
}

.service-index summary {
  min-height: 75px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.04em;
  font-weight: 680;
}

.service-index summary small {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 650;
  white-space: nowrap;
}

.service-index-panel {
  display: grid;
  gap: 18px;
  max-width: 620px;
  padding: 0 0 28px;
  color: var(--muted);
}

.service-index details[open] summary span {
  color: var(--accent);
}

.service-image {
  margin: 0;
  position: sticky;
  top: calc(var(--nav-height) + 34px);
  height: min(62vw, 600px);
  overflow: hidden;
  background: var(--surface-muted);
}

.process-content {
  padding: clamp(48px, 6vw, 86px) clamp(34px, 5vw, 48px);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-row li {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px 30px 28px 24px;
  border-right: 1px solid var(--line);
}

.process-row li + li {
  padding-left: 30px;
}

.process-row li:last-child {
  border-right: 0;
}

.process-row span {
  font-size: clamp(34px, 4.4vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 660;
}

.process-row h3 {
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 740;
}

.process-row p {
  max-width: 24ch;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.journal-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(42px, 5vw, 72px) 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgb(24 70 242 / 0.28), transparent 34rem),
    radial-gradient(circle at 88% 64%, rgb(118 177 255 / 0.12), transparent 28rem),
    linear-gradient(135deg, #050506, #08101f 58%, #04060b);
  color: rgb(247 247 244 / 0.96);
}

.journal-cta::before,
.journal-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.journal-cta::before {
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.055) 1px, transparent 1px);
  background-size: 132px 132px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0.34;
  transform: translate3d(0, calc(var(--cta-drift, 0) * -24px), 0);
}

.journal-cta::after {
  inset: -20% -12%;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0 36%, rgb(72 114 255 / 0.18) 48%, transparent 62%),
    linear-gradient(128deg, transparent 0 52%, rgb(205 229 255 / 0.08) 59%, transparent 70%);
  filter: blur(2px);
  opacity: 0.72;
}

.journal-cta-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgb(255 255 255 / 0.14);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.035)),
    rgb(255 255 255 / 0.035);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.16),
    0 30px 90px rgb(0 0 0 / 0.28);
  backdrop-filter: blur(20px);
}

.journal-cta .journal-kicker {
  margin-bottom: 28px;
  color: rgb(205 216 255 / 0.72);
}

.journal-cta .journal-kicker span {
  background: rgb(72 114 255);
}

.journal-cta h2 {
  margin-bottom: 0;
  color: rgb(247 247 244 / 0.98);
}

.journal-cta .journal-button-primary {
  border-color: rgb(72 114 255);
  background: rgb(72 114 255);
  color: #ffffff;
}

.journal-cta .journal-button-primary:hover,
.journal-cta .journal-button-primary:focus-visible {
  border-color: rgb(149 181 255);
  background: rgb(149 181 255);
  color: #050506;
}

.journal-cta .journal-link {
  color: rgb(247 247 244 / 0.92);
}

.journal-cta .journal-link:hover,
.journal-cta .journal-link:focus-visible {
  color: rgb(149 181 255);
}

.home-v3 .site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.home-v3 .footer-grid {
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(140px, 0.75fr));
}

.home-v3 :focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (hover: hover) {
  .home-v3 .work-feature img,
  .home-v3 .work-stack-item img,
  .home-v3 .service-image img {
    transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .home-v3 .work-feature:hover img,
  .home-v3 .work-stack-item:hover img,
  .home-v3 .service-image:hover img {
    transform: scale(1.025);
  }

  .home-v3 .journal-link:hover,
  .home-v3 .work-stack-item a:hover,
  .home-v3 .service-index-panel a:hover {
    color: var(--accent);
  }
}

@media (max-width: 1180px) {
  .home-v3 .nav-links a {
    padding-left: 18px;
    padding-right: 18px;
  }

  .journal-hero-grid,
  .journal-labeled-grid {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .journal-hero-grid {
    grid-template-areas:
      "rail copy"
      "rail offer";
  }

  .journal-rail {
    grid-area: rail;
  }

  .journal-hero-copy {
    grid-area: copy;
    min-height: 640px;
  }

  .journal-offer-card {
    grid-area: offer;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journal-work-grid,
  .journal-services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    position: static;
    height: 480px;
  }
}

@media (max-width: 820px) {
  .ambient-field {
    opacity: 0.58;
  }

  .ambient-orb {
    display: none;
  }

  .home-light-rays {
    display: none;
  }

  .home-v3 .nav-shell {
    width: min(100% - 28px, var(--max));
    padding-right: 0;
    padding-left: 0;
  }

  .home-v3 .nav-toggle {
    display: grid;
    place-items: center;
  }

  .home-v3 .nav-links {
    height: auto;
  }

  .home-v3 .nav-links a,
  .home-v3 .nav-links .nav-cta {
    min-height: 48px;
    padding: 0 16px;
  }

  .journal-frame {
    width: min(100% - 28px, var(--max));
  }

  .journal-hero,
  .journal-hero-grid {
    min-height: auto;
  }

  .journal-hero-grid,
  .journal-labeled-grid {
    display: block;
    border-left: 0;
    border-right: 0;
  }

  .journal-rail,
  .journal-side-label {
    display: none;
  }

  .journal-hero-copy {
    min-height: calc(100dvh - var(--nav-height));
    padding: 54px 0 48px;
  }

  .journal-hero-copy h1 {
    max-width: 8.5em;
    margin-bottom: 24px;
    font-size: clamp(60px, 16vw, 94px);
    line-height: 0.92;
    letter-spacing: -0.032em;
  }

  .journal-hero-copy p {
    margin-bottom: 34px;
    font-size: clamp(20px, 5vw, 26px);
  }

  .journal-offer-card {
    padding: 42px 0;
    border-top: 1px solid var(--line);
  }

  .journal-kicker {
    margin-bottom: 32px;
  }

  .journal-offer-card h2,
  .service-index h2,
  .process-content h2,
  .journal-cta h2 {
    font-size: clamp(40px, 10vw, 58px);
  }

  .journal-price strong {
    font-size: clamp(70px, 18vw, 102px);
  }

  .offer-specs {
    display: block;
  }

  .offer-specs div,
  .work-stack-item,
  .service-index summary,
  .journal-cta-grid {
    grid-template-columns: 1fr;
  }

  .journal-work-grid,
  .journal-services-grid,
  .process-content {
    padding: 56px 0;
  }

  .work-feature {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .work-stack {
    grid-template-rows: none;
    gap: 30px;
  }

  .work-stack-item {
    gap: 15px;
    padding-bottom: 26px;
  }

  .work-stack-item img {
    height: auto;
    max-height: none;
  }

  .service-index summary {
    min-height: 82px;
    gap: 6px;
  }

  .service-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .process-row {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--ink);
  }

  .process-row li,
  .process-row li + li {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-row li:last-child {
    border-bottom: 0;
  }

  .journal-cta-grid {
    padding: 38px 0;
    background: transparent;
  }

  .home-v3 .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .journal-actions {
    width: 100%;
    align-items: stretch;
  }

  .journal-button,
  .journal-link {
    width: 100%;
  }

  .journal-link {
    justify-content: flex-start;
    min-height: 44px;
  }

  .journal-hero-copy h1 {
    font-size: clamp(54px, 17vw, 76px);
    letter-spacing: -0.028em;
  }

  .journal-hero-copy p {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-field::before,
  .ambient-field::after,
  .ambient-orb,
  .journal-cta::before {
    transform: none;
  }

  .home-light-rays canvas {
    display: none;
  }

  .home-v3 .work-feature img,
  .home-v3 .work-stack-item img,
  .home-v3 .service-image img {
    transition: none;
  }
}

/* Shared first-screen hero motion field */
.hero-motion-field {
  --hero-motion-x: 50%;
  --hero-motion-y: 36%;
  --hero-motion-shift-x: 0px;
  --hero-motion-shift-y: 0px;
  --hero-motion-scroll-y: 0px;
  --hero-motion-active: 0.16;
  --hero-motion-accent: 24 70 242;
  --hero-motion-secondary: 104 114 79;
  --hero-motion-line: 23 25 19;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-motion-field[data-hero-motion-tone="sana"] {
  --hero-motion-accent: 85 98 76;
  --hero-motion-secondary: 243 225 166;
  --hero-motion-line: 46 42 38;
}

.hero-motion-field[data-hero-motion-tone="portfolio"] {
  --hero-motion-accent: 24 70 242;
  --hero-motion-secondary: 85 98 76;
  --hero-motion-line: 23 25 19;
}

.hero-motion-field[data-hero-motion-tone="electric"],
.hero-motion-field[data-hero-motion-tone="dark"] {
  --hero-motion-accent: 61 130 255;
  --hero-motion-secondary: 10 30 82;
  --hero-motion-line: 92 151 255;
}

.hero-motion-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-motion-layer-glow {
  background:
    radial-gradient(circle at var(--hero-motion-x) var(--hero-motion-y), rgb(var(--hero-motion-accent) / 0.23), transparent min(46vw, 640px)),
    radial-gradient(ellipse at 84% 12%, rgb(var(--hero-motion-secondary) / 0.14), transparent 45%),
    linear-gradient(135deg, rgb(255 255 255 / 0.32), transparent 54%, rgb(var(--hero-motion-accent) / 0.045));
  opacity: var(--hero-motion-active);
  mix-blend-mode: multiply;
  transform: translate3d(var(--hero-motion-shift-x), calc(var(--hero-motion-scroll-y) + var(--hero-motion-shift-y)), 0) scale(1.04);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.hero-motion-layer-grid {
  inset: -2px;
  background-image:
    linear-gradient(rgb(var(--hero-motion-line) / 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--hero-motion-line) / 0.052) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 45%, rgb(var(--hero-motion-accent) / 0.05) 45% 45.4%, transparent 45.4%);
  background-size:
    clamp(96px, 10vw, 154px) clamp(96px, 10vw, 154px),
    clamp(96px, 10vw, 154px) clamp(96px, 10vw, 154px),
    100% 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  opacity: 0.54;
  transform: translate3d(var(--hero-motion-shift-x), var(--hero-motion-scroll-y), 0);
  transition: transform 300ms ease;
}

.hero-motion-layer-grain {
  background-image:
    radial-gradient(circle at 20% 30%, rgb(var(--hero-motion-line) / 0.06) 0 1px, transparent 1.2px),
    radial-gradient(circle at 78% 58%, rgb(255 255 255 / 0.18) 0 1px, transparent 1.2px);
  background-size: 42px 42px, 54px 54px;
  opacity: 0.18;
  mix-blend-mode: multiply;
  transform: translate3d(0, var(--hero-motion-scroll-y), 0);
}

.journal-hero > .journal-frame,
.page-v3-hero > .page-v3-shell,
.sana-case-hero > .sana-case-shell,
.pulse-hero-cover-v3 > .pulse-hero-shell-v3,
.thread-hero-v3 > .case-showcase-shell,
.thread-hero-v3 > .thread-hero-spec-v3 {
  position: relative;
  z-index: 1;
}

.pulse-hero-cover-v3 .hero-motion-layer,
.thread-hero-v3 .hero-motion-layer {
  mix-blend-mode: screen;
}

.pulse-hero-cover-v3 .hero-motion-layer-glow,
.thread-hero-v3 .hero-motion-layer-glow {
  opacity: 0.46;
  background:
    radial-gradient(circle at var(--hero-motion-x) var(--hero-motion-y), rgb(var(--hero-motion-accent) / 0.38), transparent min(42vw, 660px)),
    radial-gradient(ellipse at 82% 14%, rgb(var(--hero-motion-secondary) / 0.46), transparent 46%),
    linear-gradient(135deg, rgb(61 130 255 / 0.18), transparent 58%);
}

.pulse-hero-cover-v3 .hero-motion-layer-grid,
.thread-hero-v3 .hero-motion-layer-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgb(var(--hero-motion-line) / 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--hero-motion-line) / 0.13) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 44%, rgb(var(--hero-motion-accent) / 0.12) 44% 44.35%, transparent 44.35%);
}

.thread-hero-v3 .hero-motion-layer {
  z-index: -1;
}

.sana-case-hero .hero-motion-layer-glow {
  opacity: 0.34;
  background:
    radial-gradient(circle at var(--hero-motion-x) var(--hero-motion-y), rgb(85 98 76 / 0.2), transparent min(45vw, 620px)),
    radial-gradient(ellipse at 76% 12%, rgb(243 225 166 / 0.24), transparent 48%),
    linear-gradient(145deg, rgb(255 255 255 / 0.34), transparent 54%, rgb(85 98 76 / 0.04));
}

@media (max-width: 820px) {
  .hero-motion-layer-grid {
    background-size: 86px 86px, 86px 86px, 100% 100%;
    opacity: 0.24;
  }

  .hero-motion-layer-glow {
    opacity: 0.18;
  }

  .pulse-hero-cover-v3 .hero-motion-layer-glow,
  .thread-hero-v3 .hero-motion-layer-glow {
    opacity: 0.28;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-layer {
    transform: none !important;
    transition: none !important;
  }

  .hero-motion-layer-glow {
    opacity: 0.2;
  }

  .hero-motion-layer-grid {
    opacity: 0.22;
  }
}

/* Homepage commercial content restoration */
.journal-hero-copy-long h1 {
  max-width: 12em;
  margin-bottom: 20px;
  font-size: clamp(50px, 5.1vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.journal-hero-copy .hero-eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 760;
}

.journal-hero-copy .hero-proof {
  max-width: 520px;
  margin-top: 26px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}

.journal-content-block {
  padding: clamp(54px, 6vw, 90px) clamp(34px, 5vw, 52px);
}

.journal-section-copy {
  max-width: 920px;
  margin-bottom: clamp(38px, 5vw, 66px);
}

.journal-section-copy h2 {
  max-width: 12.5em;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.042em;
  font-weight: 760;
}

.journal-section-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
}

/* React Bits-inspired BorderGlow, adapted for the static YL site */
.border-glow-card {
  --border-glow-x: 50%;
  --border-glow-y: 50%;
  --border-glow-angle: 45deg;
  --border-glow-edge-alpha: 0;
  --border-glow-color-alpha: 0;
  --border-glow-edge-sensitivity: 34;
  --border-glow-radius: 0px;
  --border-glow-padding: 34px;
  --border-glow-fill-opacity: 0.09;
  --border-glow-hsl: 228deg 92% 62%;
  --border-glow-c1: #2f53f4;
  --border-glow-c2: #67d9ff;
  --border-glow-c3: #f3f6ff;

  position: relative;
  isolation: isolate;
  overflow: visible;
  transform: translate3d(0, 0, 0.01px);
}

.border-glow-card-dark {
  --border-glow-edge-sensitivity: 28;
  --border-glow-fill-opacity: 0.18;
  --border-glow-hsl: 206deg 92% 72%;
  --border-glow-c1: #72d7ff;
  --border-glow-c2: #3157ff;
  --border-glow-c3: #eef6ff;
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-edge-light {
  content: "";
  position: absolute;
  border-radius: var(--border-glow-radius);
  pointer-events: none;
  transition: opacity 220ms ease-out;
}

.border-glow-card::before,
.border-glow-card::after {
  inset: 0;
  z-index: 1;
}

.border-glow-card::before {
  padding: 1px;
  background:
    radial-gradient(at 80% 55%, var(--border-glow-c1) 0, transparent 48%),
    radial-gradient(at 18% 12%, var(--border-glow-c2) 0, transparent 45%),
    radial-gradient(at 50% 4%, var(--border-glow-c3) 0, transparent 36%),
    conic-gradient(
      from var(--border-glow-angle),
      transparent 0deg,
      var(--border-glow-c2) 28deg,
      var(--border-glow-c1) 58deg,
      transparent 86deg,
      transparent 274deg,
      var(--border-glow-c3) 305deg,
      var(--border-glow-c2) 334deg,
      transparent 360deg
    );
  opacity: max(0.16, calc(var(--border-glow-color-alpha) * 0.82));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.border-glow-card::after {
  background:
    radial-gradient(
      circle at var(--border-glow-x) var(--border-glow-y),
      color-mix(in srgb, var(--border-glow-c2) 34%, transparent),
      transparent min(56%, 440px)
    );
  mix-blend-mode: soft-light;
  opacity: calc(max(0.14, var(--border-glow-color-alpha)) * var(--border-glow-fill-opacity));
}

.border-glow-edge-light {
  inset: calc(var(--border-glow-padding) * -1);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: calc(var(--border-glow-edge-alpha) * 0.72);
  -webkit-mask-image:
    conic-gradient(
      from var(--border-glow-angle) at center,
      black 2.5%,
      transparent 10%,
      transparent 90%,
      black 97.5%
    );
  mask-image:
    conic-gradient(
      from var(--border-glow-angle) at center,
      black 2.5%,
      transparent 10%,
      transparent 90%,
      black 97.5%
    );
}

.border-glow-edge-light::before {
  content: "";
  position: absolute;
  inset: var(--border-glow-padding);
  border-radius: var(--border-glow-radius);
  box-shadow:
    inset 0 0 0 1px hsl(var(--border-glow-hsl) / 0.58),
    inset 0 0 10px 0 hsl(var(--border-glow-hsl) / 0.2),
    inset 0 0 28px 0 hsl(var(--border-glow-hsl) / 0.08),
    0 0 1px 0 hsl(var(--border-glow-hsl) / 0.5),
    0 0 10px 0 hsl(var(--border-glow-hsl) / 0.24),
    0 0 26px 2px hsl(var(--border-glow-hsl) / 0.12),
    0 0 52px 4px hsl(var(--border-glow-hsl) / 0.06);
}

.border-glow-card:hover::before,
.border-glow-card:focus-within::before {
  opacity: max(0.56, calc(var(--border-glow-color-alpha) * 0.9));
}

.border-glow-card:hover::after,
.border-glow-card:focus-within::after {
  opacity: calc(max(0.22, var(--border-glow-color-alpha)) * var(--border-glow-fill-opacity));
}

.border-glow-card:hover > .border-glow-edge-light,
.border-glow-card:focus-within > .border-glow-edge-light {
  opacity: max(0.32, calc(var(--border-glow-edge-alpha) * 0.78));
}

.border-glow-card > *:not(.border-glow-edge-light) {
  position: relative;
  z-index: 2;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .border-glow-card::before,
  .border-glow-card::after,
  .border-glow-edge-light {
    display: none;
  }
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.problem-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  min-height: 116px;
  align-items: center;
  padding: 26px 32px 26px 0;
  border-bottom: 1px solid var(--line);
}

.problem-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.problem-list li:nth-child(even) {
  padding-left: 32px;
}

.problem-list span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 720;
}

.problem-list p {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 720;
}

.fix-fold-section {
  overflow: clip;
}

.fix-fold-content {
  padding-top: clamp(44px, 5vw, 76px);
  padding-bottom: clamp(44px, 5vw, 76px);
}

.fix-fold-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.fix-fold-copy {
  align-content: center;
}

.fix-fold-copy h2 {
  max-width: 9.5em;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.048em;
  font-weight: 780;
}

.fix-fold-copy p:not(.journal-kicker) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
}

.fix-fold-progress {
  width: min(100%, 360px);
  height: 1px;
  margin-top: clamp(28px, 4vw, 54px);
  background: rgb(10 10 10 / 0.15);
  overflow: hidden;
}

.fix-fold-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0.18);
  transform-origin: left center;
}

.fix-fold-card-stack {
  display: grid;
  gap: 14px;
}

.fix-fold-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 0.78fr);
  min-height: clamp(420px, 38vw, 560px);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.fix-fold-panel figure {
  min-height: 100%;
  margin: 0;
  background: var(--surface-muted);
  overflow: hidden;
}

.fix-fold-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fix-fold-panel img[src*="corner-brew-"],
.proof-board img[src*="corner-brew-"],
.compare-image {
  object-fit: contain;
  background: var(--corner-brew-bg);
}

.fix-fold-panel figure:has(img[src*="corner-brew-home-"]),
.proof-board figure:has(img[src*="corner-brew-home-"]) {
  background: var(--corner-brew-bg);
}

.fix-fold-panel img[src*="corner-brew-home-"],
.proof-board img[src*="corner-brew-home-"] {
  object-fit: cover;
  background: var(--corner-brew-bg);
}

.fix-fold-panel:not(.fix-fold-diagnosis) {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.58fr);
}

.fix-fold-panel-copy,
.fix-fold-diagnosis-sheet {
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3.4vw, 42px);
}

.fix-fold-panel-copy span,
.fix-fold-diagnosis-sheet > span {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 800;
}

.fix-fold-panel-copy h3,
.fix-fold-diagnosis-sheet h3 {
  max-width: 8.6em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 780;
}

.fix-fold-panel-copy p {
  max-width: 32ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.42;
}

.fix-fold-diagnosis {
  grid-template-columns: 1fr;
  background:
    linear-gradient(135deg, rgb(47 83 244 / 0.08), transparent 42%),
    var(--paper);
}

.fix-fold-diagnosis-sheet {
  min-height: 100%;
  border: 1px solid var(--ink);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(255 255 255 / 0.74)),
    var(--surface);
}

.fix-fold-diagnosis-sheet ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.fix-fold-diagnosis-sheet li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fix-fold-diagnosis-sheet li:last-child {
  border-bottom: 0;
}

.fix-fold-diagnosis-sheet strong {
  color: var(--accent);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.fix-fold-diagnosis-sheet li span {
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 720;
}

.fix-fold-stage.is-fold-animated {
  min-height: min(760px, calc(100dvh - var(--nav-height)));
}

.fix-fold-stage.is-fold-animated .fix-fold-card-stack {
  position: relative;
  min-height: clamp(440px, 42vw, 590px);
}

.fix-fold-stage.is-fold-animated .fix-fold-panel {
  position: absolute;
  inset: 0;
  min-height: 100%;
  will-change: transform, opacity, filter;
}

.fix-fold-stage.is-fold-animated .fix-fold-before {
  z-index: 1;
}

.fix-fold-stage.is-fold-animated .fix-fold-diagnosis {
  z-index: 2;
}

.fix-fold-stage.is-fold-animated .fix-fold-after {
  z-index: 3;
}

.fix-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 6vw, 80px);
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.86), rgb(255 255 255 / 0.64)),
    rgb(255 255 255 / 0.72);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.72),
    0 26px 80px rgb(24 70 242 / 0.06);
  backdrop-filter: blur(16px);
}

.fix-summary-card .journal-kicker {
  margin-bottom: 28px;
}

.fix-summary-card h3 {
  max-width: 9em;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.5vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 780;
}

.fix-summary-card p:not(.journal-kicker) {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.35;
}

.fix-summary-card dl {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}

.fix-summary-card dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(0, 1.35fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fix-summary-card dt,
.service-index-panel dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 760;
}

.fix-summary-card dd,
.service-index-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 690;
}

.upgrade-row-list {
  margin-top: 18px;
  border-top: 1px solid var(--ink);
}

.upgrade-row-list a {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.15fr) minmax(110px, auto);
  gap: 30px;
  align-items: center;
  min-height: 98px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.upgrade-row-list strong {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.upgrade-row-list span {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.upgrade-row-list em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 680;
  text-align: right;
  white-space: nowrap;
}

.proof-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.95fr)) minmax(250px, 0.56fr);
  gap: clamp(16px, 1.4vw, 24px);
  align-items: stretch;
}

.proof-board figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  margin: 0;
  min-width: 0;
}

.proof-board img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  background: var(--surface-muted);
  box-shadow: 0 24px 70px rgb(5 5 6 / 0.08);
}

.proof-board figcaption {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  min-height: 46px;
  padding: 13px 2px 0;
  border-top: 1px solid rgb(5 5 6 / 0.18);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.proof-board figcaption span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 820;
}

.proof-board figcaption strong {
  color: var(--ink);
  font-size: clamp(14px, 0.9vw, 16px);
  letter-spacing: -0.025em;
  font-weight: 780;
  text-align: left;
  white-space: nowrap;
}

.proof-notes {
  display: grid;
  grid-template-rows: 1fr auto;
  align-self: stretch;
  gap: 28px;
  padding-left: clamp(22px, 2.2vw, 38px);
  border-left: 1px solid var(--line);
}

.proof-notes h3 {
  max-width: 9.8em;
  margin: 15px 0 14px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.048em;
  font-weight: 780;
}

.proof-note-label,
.proof-criteria span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-diagnosis p {
  max-width: 26ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.proof-notes ol,
.proof-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.diagnosis-list {
  display: grid;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.25;
}

.proof-notes ol {
  counter-reset: proof;
}

.proof-notes ol li {
  counter-increment: proof;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.proof-notes ol li::before {
  content: counter(proof, decimal-leading-zero);
  color: var(--accent);
  font-weight: 760;
}

.proof-criteria {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.proof-criteria ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.proof-criteria li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 680;
}

.journal-work-grid-with-heading {
  padding: 0;
}

.work-feature {
  position: relative;
}

.work-feature > span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-top: 14px;
}

.work-feature strong {
  font-size: clamp(24px, 2.4vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.work-feature small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.service-index-intro {
  max-width: 640px;
  margin: -24px 0 38px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.service-index-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-index-panel dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
}

.process-row-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-row-five li {
  padding-right: 22px;
}

.process-row-five li + li {
  padding-left: 22px;
}

.process-row-five p {
  max-width: 26ch;
}

.journal-cta-grid > div:first-child > p:not(.journal-kicker) {
  max-width: 650px;
  margin-top: 18px;
  color: rgb(225 230 245 / 0.74);
  font-size: 18px;
  line-height: 1.4;
}

.journal-cta-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
  gap: clamp(34px, 5vw, 78px);
}

.journal-cta-grid > div:first-child {
  min-width: 0;
  max-width: 900px;
}

.journal-cta-grid > .journal-button,
.journal-cta-grid > .journal-link {
  justify-self: end;
  align-self: center;
}

.journal-cta h2 {
  max-width: 12.8em;
  font-size: clamp(38px, 3.45vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.journal-cta-grid > div:first-child > p:not(.journal-kicker) {
  max-width: 640px;
  margin-top: clamp(20px, 2vw, 26px);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.45;
}

.journal-cta .journal-actions {
  justify-content: flex-end;
  gap: 18px 24px;
}

.journal-cta .journal-button,
.journal-cta .journal-link {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .journal-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .journal-cta-grid > .journal-button,
  .journal-cta-grid > .journal-link {
    justify-self: start;
  }

  .journal-cta .journal-actions {
    justify-content: flex-start;
  }

  .journal-cta h2 {
    max-width: 10.8em;
  }
}

.home-v3 .page-hero,
.home-v3 .section.band,
.home-v3 .site-footer {
  background: var(--paper);
}

.home-v3 .detail-card,
.home-v3 .plain-panel,
.home-v3 .value-card,
.home-v3 .tier-card,
.home-v3 .tier-group,
.home-v3 .compare-table,
.home-v3 .cta-band {
  border-radius: 0;
}

/* Editorial rhythm refinement: preserve the current visual language, but make the commercial path faster to scan. */
@media (min-width: 821px) {
  body.home-v3:not(.page-v3) .journal-content-block {
    padding: clamp(44px, 5vw, 74px) clamp(34px, 5vw, 52px);
  }

  body.home-v3:not(.page-v3) .journal-work .journal-content-block {
    padding-right: 0;
    padding-left: 0;
  }

  body.home-v3:not(.page-v3) .journal-work .journal-section-copy {
    padding-right: clamp(34px, 5vw, 52px);
    padding-left: clamp(34px, 5vw, 52px);
  }

  body.home-v3:not(.page-v3) .journal-section-copy {
    margin-bottom: clamp(28px, 4vw, 48px);
  }

  body.home-v3:not(.page-v3) .journal-section-copy h2 {
    font-size: clamp(38px, 4vw, 64px);
  }

  body.home-v3:not(.page-v3) .journal-section-copy p {
    font-size: clamp(17px, 1.35vw, 21px);
  }

  body.home-v3:not(.page-v3) .problem-list li {
    min-height: 96px;
    padding: 21px 28px 21px 0;
  }

  body.home-v3:not(.page-v3) .problem-list li:nth-child(even) {
    padding-left: clamp(42px, 4.2vw, 64px);
  }

  body.home-v3:not(.page-v3) .fix-summary-card {
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(28px, 4vw, 46px);
  }

  body.home-v3:not(.page-v3) .fix-summary-card h3 {
    max-width: 10.5em;
    font-size: clamp(42px, 4.8vw, 76px);
  }

  body.home-v3:not(.page-v3) .fix-summary-card p:not(.journal-kicker) {
    margin-bottom: 24px;
  }

  body.home-v3:not(.page-v3) .fix-summary-card dl div {
    padding: 16px 0;
  }

  body.home-v3:not(.page-v3) .upgrade-row-list a {
    min-height: 78px;
    padding: 16px 0;
  }

  body.home-v3:not(.page-v3) .proof-board img {
    min-height: 420px;
  }

  body.home-v3:not(.page-v3) .proof-notes {
    padding-left: 26px;
  }

  body.home-v3:not(.page-v3) .journal-work-grid,
  body.home-v3:not(.page-v3) .journal-services-grid {
    padding: clamp(40px, 5vw, 68px) clamp(34px, 5vw, 48px);
  }

  body.home-v3:not(.page-v3) .work-feature {
    min-height: 620px;
  }

  body.home-v3:not(.page-v3) .work-stack-item {
    gap: 18px;
  }

  body.home-v3:not(.page-v3) .work-stack-item img {
    max-height: 176px;
  }

  body.home-v3:not(.page-v3) .work-stack-item h3 {
    margin-bottom: 12px;
    font-size: clamp(22px, 1.9vw, 30px);
  }

  body.home-v3:not(.page-v3) .service-index h2,
  body.home-v3:not(.page-v3) .process-content h2,
  body.home-v3:not(.page-v3) .journal-cta h2 {
    margin-bottom: 36px;
    font-size: clamp(40px, 4vw, 66px);
  }
}

/* Shared CTA refinement: keeps every bottom CTA readable across Home, Services, Visual Fix, Studio and Work. */
.journal-cta .journal-cta-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.journal-cta .journal-cta-grid > div:first-child {
  min-width: 0;
  max-width: 900px;
}

.journal-cta h2,
body.home-v3:not(.page-v3) .journal-cta h2 {
  max-width: 12.8em;
  margin-bottom: 0;
  font-size: clamp(38px, 3.45vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.journal-cta .journal-cta-grid > div:first-child > p:not(.journal-kicker) {
  max-width: 640px;
  margin-top: clamp(20px, 2vw, 26px);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.45;
}

.journal-cta .journal-cta-grid > .journal-button,
.journal-cta .journal-cta-grid > .journal-link {
  justify-self: end;
  align-self: center;
}

.journal-cta .journal-actions {
  justify-content: flex-end;
  gap: 18px 24px;
}

.journal-cta .journal-button,
.journal-cta .journal-link {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .journal-cta .journal-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .journal-cta .journal-cta-grid > .journal-button,
  .journal-cta .journal-cta-grid > .journal-link {
    justify-self: start;
  }

  .journal-cta .journal-actions {
    justify-content: flex-start;
  }

  .journal-cta h2,
  body.home-v3:not(.page-v3) .journal-cta h2 {
    max-width: 10.8em;
  }
}

@media (hover: hover) {
  .upgrade-row-list a:hover,
  .upgrade-row-list a:focus-visible {
    color: var(--accent);
  }
}

@media (max-width: 1180px) {
  .fix-fold-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fix-fold-copy h2 {
    max-width: 11em;
  }

  .fix-fold-copy p:not(.journal-kicker) {
    max-width: 620px;
  }

  .fix-summary-card,
  .proof-board {
    grid-template-columns: 1fr;
  }

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

  .proof-board img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .proof-notes {
    grid-template-rows: auto auto;
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-diagnosis p {
    max-width: 44ch;
  }

  .process-row-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-row-five li:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .journal-hero-copy-long h1 {
    font-size: clamp(44px, 12.2vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  .journal-hero-copy .hero-eyebrow {
    margin-bottom: 20px;
  }

  .journal-content-block {
    padding: 56px 0;
  }

  .journal-section-copy h2 {
    font-size: clamp(36px, 9.5vw, 52px);
  }

  .journal-section-copy p {
    font-size: 18px;
  }

  .problem-list,
  .fix-fold-panel,
  .fix-summary-card,
  .upgrade-row-list a,
  .service-index-panel dl div {
    grid-template-columns: 1fr;
  }

  .fix-fold-content {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .fix-fold-stage {
    min-height: auto;
  }

  .fix-fold-card-stack {
    gap: 16px;
  }

  .fix-fold-panel {
    min-height: auto;
  }

  .fix-fold-panel figure {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .fix-fold-panel-copy,
  .fix-fold-diagnosis-sheet {
    padding: 26px 0 30px;
  }

  .fix-fold-diagnosis-sheet {
    border-left: 0;
    border-right: 0;
  }

  .problem-list li,
  .problem-list li:nth-child(even) {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 22px 0;
    border-right: 0;
  }

  .fix-summary-card {
    padding: 32px 0;
    border-left: 0;
    border-right: 0;
  }

  .fix-summary-card dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .upgrade-row-list a {
    gap: 10px;
  }

  .upgrade-row-list em {
    text-align: left;
  }

  .selected-work-gallery {
    grid-template-columns: 1fr;
  }

  .selected-work-tile {
    min-height: min(86vw, 430px);
  }

  .selected-work-tile::before {
    opacity: 0.78;
    background: linear-gradient(180deg, rgb(5 5 6 / 0.02), rgb(5 5 6 / 0.52));
  }

  .selected-work-overlay {
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    opacity: 1;
    transform: none;
  }

  .work-feature > span {
    display: grid;
  }

  .process-row-five {
    grid-template-columns: 1fr;
  }

  .process-row-five li,
  .process-row-five li + li {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .journal-hero-copy-long h1 {
    font-size: clamp(39px, 11.7vw, 54px);
  }

  .problem-list li,
  .problem-list li:nth-child(even) {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .problem-list p {
    font-size: 20px;
  }

  .fix-fold-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .fix-fold-panel-copy h3,
  .fix-fold-diagnosis-sheet h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .fix-summary-card h3 {
    font-size: 42px;
  }
}

/* Inner pages: homepage-aligned editorial system */
.page-v3 {
  background: var(--paper);
}

.page-v3 main {
  background: var(--paper);
}

.page-v3-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.page-v3-hero {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-v3-hero-grid,
.fix-hero-grid,
.start-hero-grid {
  min-height: clamp(620px, calc(78dvh - var(--nav-height)), 720px);
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) minmax(340px, 430px);
  align-items: stretch;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.fix-hero-grid {
  grid-template-columns: 168px minmax(360px, 0.82fr) minmax(520px, 660px);
}

.start-hero-grid {
  grid-template-columns: 168px minmax(0, 1fr) minmax(340px, 460px);
}

.page-v3-rail {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: clamp(120px, 20vh, 220px);
  padding: 48px 28px;
  border-right: 1px solid var(--line);
}

.page-v3-rail span,
.page-v3-side span {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 760;
}

.page-v3-rail a {
  align-self: end;
  color: var(--ink);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.page-v3-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(48px, 5.8vw, 86px) clamp(44px, 5vw, 82px);
}

.page-label {
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
}

.page-v3-copy h1 {
  max-width: 11.2em;
  margin-bottom: 26px;
  font-size: clamp(56px, 5.8vw, 100px);
  line-height: 0.93;
  letter-spacing: -0.05em;
  font-weight: 780;
}

.work-v3 .page-v3-copy h1,
.studio-v3 .page-v3-copy h1 {
  max-width: 12.4em;
  font-size: clamp(54px, 5.6vw, 96px);
}

.start-v3 .page-v3-copy h1 {
  max-width: 9.8em;
  font-size: clamp(54px, 5.55vw, 96px);
}

.visual-fix-v3 .page-v3-copy h1 {
  max-width: 10.6em;
  font-size: clamp(52px, 5.35vw, 92px);
}

.page-v3-copy p:not(.page-label) {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 29px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.page-v3-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(38px, 4vw, 64px);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.page-v3-panel .journal-kicker {
  margin-bottom: 28px;
}

.offer-panel h2,
.start-summary-card h2 {
  max-width: 8em;
  margin-bottom: 30px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 780;
}

.studio-system-card,
.start-offer-card {
  align-content: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.studio-system-card {
  background: var(--ink);
  color: var(--surface);
}

.studio-system-card figure,
.start-offer-card figure,
.start-side-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.studio-system-card img,
.start-offer-card img,
.start-side-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--surface-muted);
}

.studio-system-card img {
  min-height: 280px;
  aspect-ratio: 16 / 10;
}

.studio-system-copy,
.start-offer-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 3vw, 40px);
}

.studio-system-copy span,
.start-offer-copy > span,
.brief-intro-strip span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 760;
}

.studio-system-copy h2,
.start-offer-copy h2 {
  max-width: 8.5em;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 780;
}

.studio-system-copy p {
  max-width: 390px;
  color: rgb(247 247 244 / 0.78);
  font-size: 16px;
  line-height: 1.42;
}

.start-offer-card img {
  aspect-ratio: 16 / 8;
}

.start-offer-copy p {
  max-width: 380px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.38;
}

.start-offer-price {
  margin: 0;
  color: var(--muted);
}

.start-offer-price strong {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: clamp(54px, 5.1vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 790;
}

.start-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 2px;
}

.start-offer-actions .journal-button {
  min-width: 150px;
}

.start-text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.start-summary-card p:not(.journal-kicker),
.offer-panel p:not(.journal-kicker) {
  max-width: 360px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.42;
}

.studio-philosophy-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.studio-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.studio-philosophy-grid article {
  min-height: 164px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.studio-philosophy-grid article:last-child {
  border-right: 0;
}

.studio-philosophy-grid span {
  color: var(--ink);
  font-size: clamp(25px, 2.2vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 760;
}

.studio-philosophy-grid p {
  max-width: 30ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.page-v3-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-v3-section-grid {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.page-v3-side {
  padding: 54px 28px;
  border-right: 1px solid var(--line);
}

.page-v3-side span {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
  display: block;
}

.page-v3-content {
  padding: clamp(48px, 6vw, 88px) clamp(34px, 5vw, 54px);
}

.page-v3-heading {
  max-width: 940px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.page-v3-heading h2,
.page-v3 .plain-panel h2,
.founder-copy h2 {
  max-width: 12em;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.044em;
  font-weight: 760;
}

.page-v3-heading p,
.page-v3 .plain-panel > p,
.founder-copy .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.38;
}

.service-path-list {
  border-top: 1px solid var(--ink);
}

.service-path-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(260px, 0.86fr) minmax(230px, 0.7fr) auto;
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  min-height: 156px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-path-list article > div:first-child span,
.service-path-list dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 760;
}

.service-path-list h3 {
  margin-top: 12px;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-path-list p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.service-path-list dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.service-path-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.service-path-list a,
.case-row a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 7px;
  white-space: nowrap;
}

.service-tier-grid {
  gap: 12px;
}

.service-tier-grid .tier-heading,
.service-tier-grid .tier-card {
  border-radius: 0;
}

.split-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(18px, 3vw, 34px);
}

.split-panel-grid .plain-panel,
.included-grid .plain-panel {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 100%;
}

.page-v3 .check-grid,
.page-v3 .simple-list {
  margin-top: 8px;
}

.trust-note-panel {
  margin: clamp(18px, 3vw, 34px) 0 clamp(30px, 5vw, 58px);
}

.trust-note-panel h3,
.page-v3 .plain-panel h3 {
  max-width: 16em;
  color: var(--ink);
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.042em;
  font-weight: 760;
}

.trust-note-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.delivery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.delivery-preview-grid div {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-preview-grid div:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.delivery-preview-grid div:nth-child(even) {
  padding-left: 24px;
}

.delivery-preview-grid span,
.faq-list summary::after {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 760;
}

.delivery-preview-grid strong {
  max-width: 14em;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 25px 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 740;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 860px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.page-v3 .plain-panel.dark a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.page-v3 .plain-panel.dark .journal-button {
  color: var(--ink);
  text-decoration: none;
}

.problem-grid-v3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  background: transparent;
}

.problem-grid-v3 .problem-item {
  min-height: 170px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.problem-grid-v3 .problem-item:nth-child(3n) {
  border-right: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.steps-list-v3 {
  border-radius: 0;
}

.steps-list-v3 .step-row {
  background: var(--paper);
}

.fix-scope-panel .journal-button {
  justify-self: start;
  border-color: rgb(247 247 244 / 0.88);
  background: var(--paper);
  color: var(--ink);
}

.fix-proof.page-v3-panel {
  align-content: center;
  padding: clamp(24px, 2.6vw, 38px);
}

.fix-proof.page-v3-panel .fix-proof-head,
.fix-proof.page-v3-panel .fix-proof-images {
  width: 100%;
}

.fix-proof.page-v3-panel .fix-proof-images img {
  aspect-ratio: 4 / 5;
}

.fix-intake-hero .page-v3-copy {
  align-content: start;
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.fix-intake-hero .page-v3-copy h1 {
  max-width: 9.4em;
}

.fix-payment-note {
  width: 100%;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(18px, 3vw, 34px);
  border-top: 1px solid var(--ink);
}

.fix-payment-note div {
  min-height: 108px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px 18px 0 0;
  border-right: 1px solid var(--line);
}

.fix-payment-note div + div {
  padding-left: 18px;
}

.fix-payment-note div:last-child {
  border-right: 0;
}

.fix-payment-note span,
.fix-form-head .journal-kicker {
  color: var(--accent);
}

.fix-payment-note span {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 760;
}

.fix-payment-note strong {
  color: var(--ink);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.fix-overview-panel {
  align-content: space-between;
  gap: clamp(28px, 4vw, 56px);
  background: var(--surface);
}

.fix-overview-panel h2 {
  max-width: 8.6em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 780;
}

.fix-overview-panel > p:not(.journal-kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.fix-overview-meta {
  width: 100%;
  border-top: 1px solid var(--ink);
}

.fix-overview-meta div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fix-overview-meta div:last-child {
  border-bottom: 0;
}

.fix-overview-meta span {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 760;
}

.fix-overview-meta strong {
  max-width: 22em;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.24;
  letter-spacing: -0.015em;
}

.fix-intake-panel {
  align-content: start;
  padding: clamp(26px, 3vw, 42px);
  background: var(--surface);
}

.fix-brief-form {
  width: 100%;
}

.fix-form-head {
  display: grid;
  gap: 15px;
  padding-bottom: 24px;
}

.fix-form-head .journal-kicker {
  margin-bottom: 0;
}

.fix-form-head h2 {
  max-width: 9em;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 780;
}

.fix-form-head p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.project-form-v3 .fix-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-form-v3 .fix-field-grid .field {
  padding: 18px;
}

.project-form-v3 .fix-field-grid textarea {
  min-height: 112px;
}

.field-help {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.file-field {
  position: relative;
  align-content: start;
}

.project-form-v3 input[type="file"].file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.file-picker {
  display: grid;
  grid-template-columns: minmax(118px, 0.32fr) minmax(0, 1fr);
  min-height: 54px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.file-picker span {
  display: grid;
  place-items: center start;
  min-height: 54px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.file-picker strong {
  display: grid;
  place-items: center start;
  min-width: 0;
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-weight: 560;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-picker:hover span,
.file-picker:focus-within span,
.project-form-v3 input[type="file"].file-input:focus-visible + .file-picker span {
  color: var(--accent);
}

.project-form-v3 input[type="file"].file-input:focus-visible + .file-picker {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.fix-brief-form .small-copy {
  max-width: 520px;
  margin: 14px 0 0;
}

.fix-brief-form .journal-button {
  margin-top: 18px;
}

.work-hero-image {
  align-content: center;
}

.work-v3 .work-hero-image,
.studio-v3 .studio-hero-image {
  padding: clamp(28px, 3.2vw, 48px);
}

.work-hero-image img,
.studio-hero-image img,
.studio-process-image img,
.case-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--surface-muted);
}

.work-hero-image img {
  aspect-ratio: 4 / 3;
}

.studio-hero-image img,
.studio-process-image img {
  aspect-ratio: 3 / 4;
}

.studio-hero-image figcaption,
.work-hero-image figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.case-list-v3 {
  gap: 0;
  border-top: 1px solid var(--ink);
}

.case-list-v3 .case-row {
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(34px, 5vw, 58px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.case-list-v3 .case-row.featured-case {
  grid-template-columns: 1fr;
  padding-top: 0;
}

.case-list-v3 .featured-case-media,
.case-list-v3 .featured-case-copy {
  width: min(100%, 1080px);
}

.case-list-v3 .featured-case-media img {
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-position: center top;
}

.case-image {
  margin: 0;
  overflow: hidden;
}

.case-image img {
  aspect-ratio: 16 / 10;
}

.case-list-v3 .case-copy {
  padding: 0;
}

.case-list-v3 h3 {
  margin-top: 14px;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.case-list-v3 .small-copy {
  margin-top: 16px;
  max-width: 58ch;
}

.case-list-v3 .case-details {
  gap: 18px;
}

.client-notes-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.client-notes-heading h2 {
  font-size: clamp(40px, 4.1vw, 70px);
}

.editorial-testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.34fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.editorial-testimonial-slides {
  position: relative;
  display: grid;
  min-height: clamp(286px, 25vw, 360px);
  border-right: 1px solid var(--line);
}

.testimonial-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(106px, 0.2fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  padding: clamp(22px, 3vw, 38px) clamp(22px, 3.6vw, 48px) clamp(22px, 2.8vw, 36px) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-number {
  margin: 0;
  color: rgb(10 10 10 / 0.08);
  font-size: clamp(76px, 8.4vw, 142px);
  line-height: 0.78;
  letter-spacing: -0.08em;
  font-weight: 520;
  font-variant-numeric: tabular-nums;
}

.testimonial-copy {
  padding-top: clamp(4px, 1vw, 16px);
}

.testimonial-package {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 clamp(16px, 2.2vw, 26px);
  color: var(--accent);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 800;
}

.testimonial-package span {
  color: var(--muted);
}

.testimonial-copy blockquote {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.056em;
  font-weight: 760;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 52px minmax(110px, max-content) auto;
  align-items: center;
  column-gap: 15px;
  max-width: min(100%, 620px);
  margin-top: clamp(18px, 2.3vw, 28px);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 820;
}

.testimonial-person strong,
.testimonial-person div > span {
  display: block;
}

.testimonial-person strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 760;
}

.testimonial-person div > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.testimonial-inline-nav {
  justify-self: start;
  margin-left: clamp(10px, 1.7vw, 26px);
}

.testimonial-nav {
  display: grid;
  grid-template-columns: minmax(150px, 220px) auto auto;
  align-items: center;
  justify-content: start;
  column-gap: clamp(18px, 3vw, 42px);
  grid-column: 1;
  min-height: 70px;
  padding: 14px clamp(22px, 3.6vw, 42px) 14px clamp(128px, 14vw, 188px);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgb(10 10 10 / 0.018)),
    var(--paper);
}

.testimonial-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  width: 100%;
}

.testimonial-line {
  position: relative;
  width: 100%;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.testimonial-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(10 10 10 / 0.18);
  transform: translateY(-50%);
  transition: height 220ms ease, background-color 220ms ease, opacity 220ms ease;
}

.testimonial-line:hover::before {
  background: rgb(10 10 10 / 0.42);
}

.testimonial-line.is-active::before {
  height: 2px;
  background: var(--accent);
}

.testimonial-status {
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 760;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.testimonial-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-arrows button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(10 10 10 / 0.18);
  background: var(--surface);
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.testimonial-arrows button:hover,
.testimonial-arrows button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.testimonial-arrows button:active {
  transform: translateY(1px);
}

.testimonial-feedback-note {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.8vw, 22px);
  min-height: 100%;
  padding: clamp(26px, 2.8vw, 36px);
  background: var(--accent-soft);
}

.feedback-note-label {
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 820;
}

.testimonial-feedback-note h3 {
  max-width: 8.4em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.046em;
  font-weight: 760;
}

.testimonial-feedback-note p {
  max-width: 26ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.testimonial-feedback-note a {
  justify-self: start;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.studio-method-row {
  border-top-color: var(--ink);
}

.studio-method-row li {
  min-height: clamp(176px, 16vw, 230px);
  gap: clamp(14px, 1.5vw, 20px);
}

.studio-method-row span {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 820;
}

.studio-method-row h3 {
  max-width: 8em;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.studio-method-row p {
  max-width: 27ch;
}

.studio-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.studio-values article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--line);
}

.studio-values article + article {
  padding-left: 24px;
}

.studio-values article:last-child {
  border-right: 0;
}

.studio-values-v4 {
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(0, 1fr));
}

.studio-values-v4 article.is-featured {
  padding-left: 24px;
  background: var(--ink);
  color: var(--surface);
}

.studio-values-v4 article.is-featured span {
  color: var(--surface);
}

.studio-values-v4 article.is-featured h3,
.studio-values-v4 article.is-featured p {
  color: var(--surface);
}

.studio-values-v4 article.is-featured p {
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.42;
  color: rgb(247 247 244 / 0.74);
}

.studio-values span,
.operating-rules span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 760;
}

.studio-values h3 {
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 720;
}

.founder-strip-v3 {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.8fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.studio-process-image {
  margin: 0;
}

.founder-copy {
  align-content: start;
}

.operating-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--ink);
}

.operating-rules div {
  min-height: 96px;
  display: grid;
  align-content: start;
  gap: 42px;
  padding: 20px 22px 18px;
  border-right: 1px solid var(--line);
}

.operating-rules div + div {
  padding-left: 22px;
}

.operating-rules div:last-child {
  border-right: 0;
}

.operating-rules strong {
  max-width: 16em;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.form-layout-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.project-form-v3 {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brief-intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: var(--surface);
}

.brief-intro-strip div {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.brief-intro-strip div:last-child {
  border-right: 0;
}

.brief-intro-strip strong {
  color: var(--ink);
  font-size: clamp(19px, 1.7vw, 28px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.project-form-v3 .field-grid {
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-form-v3 .field {
  gap: 10px;
  padding: 22px;
  background: var(--surface);
}

.project-form-v3 input,
.project-form-v3 textarea,
.project-form-v3 select {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.project-form-v3 .journal-button {
  justify-self: start;
}

.start-side {
  display: grid;
  gap: 16px;
}

.start-side-image img {
  aspect-ratio: 4 / 3;
}

.start-side .mini-method {
  margin: 0;
}

.start-side .plain-panel {
  background: var(--surface);
}

.start-side .plain-panel.dark {
  background: var(--ink);
}

.page-v3 .plain-panel.dark h3,
.page-v3 .plain-panel.dark h2 {
  color: var(--paper);
}

.page-v3 .plain-panel.dark p,
.page-v3 .plain-panel.dark li {
  color: rgb(247 247 244 / 0.82);
}

@media (min-width: 821px) {
  .services-v3 .page-v3-hero-grid,
  .work-v3 .page-v3-hero-grid {
    min-height: clamp(660px, calc(82dvh - var(--nav-height)), 720px);
  }

  .services-v3 .page-v3-content,
  .work-v3 .page-v3-content,
  .start-v3 .page-v3-content {
    padding-top: clamp(54px, 5.5vw, 78px);
    padding-bottom: clamp(54px, 5.5vw, 78px);
  }
}

.decision-tier-grid .tier-heading {
  min-height: 150px;
  align-content: start;
  gap: 12px;
}

.decision-tier-grid .tier-heading p {
  max-width: 26ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.decision-tier-grid .tier-card {
  min-height: 132px;
  padding: 18px;
  gap: 8px;
}

.case-overview-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 72px);
  margin: 26px 0 34px;
  padding: 8px 0 2px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.case-overview-strip div {
  min-height: auto;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 7px;
  padding: 20px 0 22px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.case-overview-strip div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.case-overview-strip span,
.case-overview-strip small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
}

.case-overview-strip span {
  grid-row: 1 / span 2;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-overview-strip strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.case-overview-strip small {
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.34;
  font-weight: 620;
}

.case-list-v3 .case-row {
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(26px, 3.5vw, 42px) 0;
}

.case-list-v3 h3 {
  font-size: clamp(26px, 2.25vw, 40px);
}

.case-list-v3 .small-copy {
  max-width: 54ch;
}

.case-list-v3 .case-details {
  gap: 12px;
}

.case-list-v3 .case-details div {
  font-size: 13px;
  line-height: 1.35;
}

.case-image img {
  aspect-ratio: 16 / 8.8;
}

.brief-intro-strip div {
  min-height: 96px;
  padding: 18px;
  gap: 12px;
}

.project-form-v3 .field {
  padding: 18px;
  gap: 8px;
}

.project-form-v3 textarea {
  min-height: 104px;
}

.start-side {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
}

.start-side-image img {
  aspect-ratio: 4 / 2.75;
}

@media (max-width: 1180px) {
  .case-overview-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-overview-strip div:nth-child(2n) {
    border-right: 0;
  }

  .case-list-v3 .case-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .delivery-preview-grid {
    grid-template-columns: 1fr;
  }

  .delivery-preview-grid div,
  .delivery-preview-grid div:nth-child(even),
  .delivery-preview-grid div:nth-child(odd) {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
  }

  .faq-list summary {
    padding: 22px 0;
  }

  .case-overview-strip {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .case-overview-strip div,
  .case-overview-strip div:nth-child(2n) {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-overview-strip div:last-child {
    border-bottom: 0;
  }

  .decision-tier-grid .tier-heading,
  .decision-tier-grid .tier-card {
    min-height: auto;
  }

  .project-form-v3 textarea {
    min-height: 120px;
  }
}

@media (hover: hover) {
  .case-image img,
  .work-hero-image img,
  .studio-hero-image img,
  .studio-process-image img,
  .studio-system-card img,
  .start-offer-card img,
  .start-side-image img {
    transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .case-row:hover .case-image img,
  .work-hero-image:hover img,
  .studio-hero-image:hover img,
  .studio-process-image:hover img,
  .studio-system-card:hover img,
  .start-offer-card:hover img,
  .start-side-image:hover img {
    transform: scale(1.025);
  }

  .service-path-list a:hover,
  .service-path-list a:focus-visible {
    color: var(--accent);
  }
}

@media (max-width: 1180px) {
  .page-v3-hero-grid,
  .fix-hero-grid,
  .start-hero-grid,
  .page-v3-section-grid {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .page-v3-hero-grid,
  .fix-hero-grid,
  .start-hero-grid {
    grid-template-areas:
      "rail copy"
      "rail panel";
  }

  .page-v3-rail {
    grid-area: rail;
  }

  .page-v3-copy {
    grid-area: copy;
    min-height: 560px;
  }

  .page-v3-panel {
    grid-area: panel;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-path-list article,
  .included-grid,
  .split-panel-grid,
  .case-list-v3 .case-row,
  .founder-strip-v3,
  .form-layout-v3 {
    grid-template-columns: 1fr;
  }

  .studio-values,
  .operating-rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fix-payment-note div:nth-child(2n) {
    border-right: 0;
  }

  .fix-payment-note div:nth-child(n + 3) {
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .studio-philosophy-grid,
  .brief-intro-strip {
    grid-template-columns: 1fr;
  }

  .studio-philosophy-grid article,
  .brief-intro-strip div {
    min-height: auto;
  }

  .studio-philosophy-grid article,
  .studio-philosophy-grid article:last-child,
  .brief-intro-strip div,
  .brief-intro-strip div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-philosophy-grid article:last-child,
  .brief-intro-strip div:last-child {
    border-bottom: 0;
  }

  .studio-values article:nth-child(2n),
  .operating-rules div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .page-v3-shell {
    width: min(100% - 28px, var(--max));
  }

  .page-v3-hero-grid,
  .fix-hero-grid,
  .start-hero-grid,
  .page-v3-section-grid {
    display: block;
    border-left: 0;
    border-right: 0;
  }

  .page-v3-rail,
  .page-v3-side {
    display: none;
  }

  .page-v3-copy {
    min-height: auto;
    padding: 54px 0 48px;
  }

  .page-v3-copy h1,
  .work-v3 .page-v3-copy h1,
  .studio-v3 .page-v3-copy h1,
  .start-v3 .page-v3-copy h1 {
    max-width: 9em;
    font-size: clamp(46px, 12vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.036em;
  }

  .page-v3-copy p:not(.page-label) {
    margin-bottom: 30px;
    font-size: 19px;
  }

  .page-v3-panel {
    padding: 40px 0;
    border-left: 0;
  }

  .studio-system-card,
  .start-offer-card {
    padding: 0;
  }

  .studio-system-copy,
  .start-offer-copy {
    padding: 30px 0 40px;
  }

  .studio-system-card img,
  .start-offer-card img {
    min-height: auto;
  }

  .studio-philosophy-grid {
    border-left: 0;
    border-right: 0;
  }

  .studio-philosophy-grid article,
  .brief-intro-strip div {
    padding-left: 0;
    padding-right: 0;
  }

  .page-v3-content {
    padding: 56px 0;
  }

  .page-v3-heading h2,
  .page-v3 .plain-panel h2,
  .founder-copy h2 {
    font-size: clamp(36px, 9.5vw, 54px);
  }

  .problem-grid-v3,
  .studio-values,
  .operating-rules,
  .service-tier-grid,
  .brief-intro-strip {
    grid-template-columns: 1fr;
  }

  .problem-grid-v3 .problem-item,
  .problem-grid-v3 .problem-item:nth-child(3n),
  .studio-values article,
  .studio-values article + article,
  .operating-rules div,
  .operating-rules div + div {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .problem-grid-v3 .problem-item {
    min-height: auto;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background: transparent;
  }

  .problem-grid-v3 .problem-item p {
    margin: 0;
    font-size: 19px;
    line-height: 1.08;
  }

  .case-list-v3 .case-row {
    padding: 34px 0;
  }

  .case-list-v3 .case-details,
  .project-form-v3 .field-grid {
    grid-template-columns: 1fr;
  }

  .editorial-testimonial {
    grid-template-columns: 1fr;
  }

  .editorial-testimonial-slides,
  .testimonial-nav {
    border-right: 0;
  }

  .testimonial-nav {
    grid-template-columns: minmax(150px, 1fr) auto auto;
    column-gap: 18px;
    min-height: 66px;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-feedback-note {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
    border-top: 1px solid var(--line);
  }

  .fix-payment-note {
    grid-template-columns: 1fr;
  }

  .fix-payment-note div,
  .fix-payment-note div + div,
  .fix-payment-note div:nth-child(n + 3) {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .fix-payment-note div:last-child {
    border-bottom: 0;
  }

  .brief-intro-strip {
    border-left: 0;
    border-right: 0;
  }

  .start-side-image {
    display: none;
  }

  .featured-case-copy {
    grid-template-columns: 1fr;
  }

  .featured-case-media {
    grid-template-columns: 1fr;
  }

  .fix-proof-images {
    grid-template-columns: 1fr 1fr;
  }

  .journal-cta-grid {
    width: min(100% - 28px, var(--max));
  }

  .fix-intake-hero .fix-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .fix-intake-panel {
    order: 1;
    padding: 32px 0 44px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .fix-intake-hero .page-v3-copy {
    order: 2;
    padding-top: 44px;
  }

  .fix-form-head h2 {
    font-size: clamp(38px, 10vw, 54px);
  }
}

@media (max-width: 520px) {
  .fix-overview-meta div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-v3-copy h1,
  .work-v3 .page-v3-copy h1,
  .studio-v3 .page-v3-copy h1,
  .start-v3 .page-v3-copy h1 {
    font-size: clamp(39px, 11.2vw, 56px);
  }

  .offer-panel h2,
  .start-summary-card h2,
  .start-offer-copy h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .start-offer-price strong {
    font-size: clamp(52px, 17vw, 76px);
  }

  .fix-proof-images,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-right: 0;
  }

  .testimonial-number {
    font-size: clamp(62px, 19vw, 96px);
    letter-spacing: -0.07em;
  }

  .testimonial-copy blockquote {
    font-size: clamp(30px, 9vw, 42px);
  }

  .testimonial-person {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .testimonial-inline-nav {
    grid-column: 2;
    margin-top: 10px;
    margin-left: 0;
    justify-content: flex-start;
  }
}

/* Global left rail removal */
.journal-rail,
.journal-side-label,
.page-v3-rail,
.page-v3-side {
  display: none !important;
}

.journal-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
}

.journal-labeled-grid,
.page-v3-section-grid {
  grid-template-columns: minmax(0, 1fr);
}

.page-v3-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
}

.fix-hero-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 660px);
}

.start-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
}

@media (max-width: 1180px) and (min-width: 821px) {
  .journal-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "offer";
  }

  .page-v3-hero-grid,
  .fix-hero-grid,
  .start-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "panel";
  }

  .journal-labeled-grid,
  .page-v3-section-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-image img,
  .work-hero-image img,
  .studio-hero-image img,
  .studio-process-image img {
    transition: none;
  }

  .testimonial-slide,
  .testimonial-line::before,
  .testimonial-arrows button {
    transition: none;
  }
}

/* Work proof page */
.work-proof-hero .page-v3-copy {
  align-self: center;
}

.work-proof-hero .page-v3-copy h1 {
  max-width: 10.5em;
  font-size: clamp(52px, 5.5vw, 92px);
}

.work-proof-hero .page-v3-copy > p:not(.page-label) {
  max-width: 560px;
}

.work-proof-hero .work-hero-image {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #e8ded0;
}

.work-proof-hero .work-hero-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(600px, calc(82dvh - var(--nav-height)), 720px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border: 0;
  border-radius: 0;
  background: #e8ded0;
}

.work-proof-hero .work-hero-image figcaption {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  max-width: min(72%, 310px);
  padding: 9px 11px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 999px;
  background: rgb(246 241 232 / 0.78);
  color: #332e25;
  font-size: 12px;
  line-height: 1.1;
  backdrop-filter: blur(14px);
}

.work-hero-actions {
  margin-top: clamp(26px, 3vw, 38px);
}

.work-proof-heading {
  max-width: 780px;
  margin-bottom: clamp(24px, 3.8vw, 46px);
}

.work-proof-heading h2,
.receive-heading h2 {
  max-width: 12.2em;
}

.problem-filter {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.work-proof-strip {
  margin-top: 0;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.work-proof-strip div {
  align-content: start;
}

.work-proof-strip span {
  letter-spacing: 0;
  text-transform: none;
}

.case-fold-stack {
  --fold-top: calc(var(--nav-height) + 24px);
  display: grid;
  gap: clamp(42px, 9vh, 92px);
  padding: clamp(12px, 2vw, 22px) 0 clamp(72px, 10vw, 132px);
  border-top: 0;
}

.case-fold-stack .case-row,
.case-fold-stack .case-row.featured-case {
  position: sticky;
  top: calc(var(--fold-top) + var(--fold-offset, 0px));
  z-index: var(--fold-layer, 20);
  min-height: min(760px, calc(100dvh - var(--nav-height) - 52px));
  padding: clamp(54px, 5vw, 74px) clamp(22px, 3vw, 38px) clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.72), transparent 34%),
    var(--paper);
  box-shadow: 0 26px 80px rgb(10 10 10 / 0.055);
  transform: translateY(14px) scale(0.986);
  transform-origin: center top;
  opacity: 0.9;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  overflow: hidden;
}

.case-fold-stack .case-row.is-fold-active {
  box-shadow: 0 34px 110px rgb(10 10 10 / 0.08);
  transform: translateY(0) scale(1);
  opacity: 1;
}

.case-fold-stack .case-row::before {
  content: attr(data-fold-label);
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 clamp(22px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(24 70 242 / 0.09), transparent 36%),
    var(--surface);
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 780;
}

.case-fold-stack .case-row:nth-child(1) {
  --fold-offset: 0px;
  --fold-layer: 21;
}

.case-fold-stack .case-row:nth-child(2) {
  --fold-offset: 10px;
  --fold-layer: 22;
}

.case-fold-stack .case-row:nth-child(3) {
  --fold-offset: 20px;
  --fold-layer: 23;
}

.case-fold-stack .case-row:nth-child(4) {
  --fold-offset: 30px;
  --fold-layer: 24;
}

.case-fold-stack .case-row:nth-child(5) {
  --fold-offset: 40px;
  --fold-layer: 25;
}

.case-fold-stack .case-row:nth-child(6) {
  --fold-offset: 50px;
  --fold-layer: 26;
}

.case-fold-stack .case-row[hidden] {
  display: none;
}

.case-fold-stack .case-copy {
  align-self: stretch;
}

.case-fold-stack h3 {
  text-wrap: balance;
}

.case-fold-stack .case-details {
  align-self: end;
}

.case-list-v3 .work-featured-proof {
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.case-list-v3 .work-compare-panel,
.case-list-v3 .work-featured-proof .featured-case-copy {
  width: min(100%, 960px);
}

.case-list-v3 .work-compare-panel {
  width: min(100%, 560px);
  margin-inline: auto;
}

.work-compare-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.case-list-v3 .work-compare-panel img {
  max-height: none;
  aspect-ratio: auto;
}

.before-after-compare {
  --compare-split: 52%;
  position: relative;
  min-height: 280px;
  max-height: 560px;
  background: var(--corner-brew-bg);
  aspect-ratio: 16 / 10;
  max-height: none;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: ew-resize;
  isolation: isolate;
}

.compare-image,
.compare-after-wrap {
  position: absolute;
  inset: 0;
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #ead8bf;
}

.case-list-v3 .work-compare-panel .compare-image {
  object-fit: contain;
}

.compare-after-wrap {
  clip-path: inset(0 0 0 var(--compare-split));
  border-left: 1px solid rgb(255 255 255 / 0.92);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-split);
  z-index: 2;
  width: 2px;
  background: rgb(255 255 255 / 0.95);
  box-shadow: 0 0 0 1px rgb(5 5 6 / 0.16), 0 0 28px rgb(24 70 242 / 0.22);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 0.92);
  background: var(--accent);
  box-shadow: 0 14px 36px rgb(5 5 6 / 0.22);
  transform: translate(-50%, -50%);
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 10px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-compare:focus-within .compare-handle::before {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.work-featured-proof .before-after-compare {
  align-self: start;
  height: auto;
  max-height: 560px;
  aspect-ratio: 16 / 10;
}

.compare-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-featured-proof .service-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 980px) {
  .case-list-v3 .case-row.work-featured-proof {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
    gap: clamp(34px, 4.2vw, 64px);
  }

  .case-list-v3 .work-featured-proof .work-compare-panel {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
  }

  .case-list-v3 .work-featured-proof .featured-case-copy {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: clamp(24px, 3vw, 38px);
    padding-top: 4px;
  }

  .work-featured-proof .service-proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-featured-proof .service-proof-grid div {
    display: grid;
    grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
    gap: 16px;
    padding: 15px 0;
  }

  .work-featured-proof .service-proof-grid span {
    margin-bottom: 0;
  }
}

.case-list-v3 .service-case {
  align-items: stretch;
}

.case-list-v3 .service-case .case-image img {
  aspect-ratio: 16 / 10;
  max-height: 420px;
  object-position: center;
}

.case-list-v3 .service-case .case-copy {
  min-height: 100%;
}

.case-list-v3 .service-case .case-details {
  margin-top: clamp(22px, 2.6vw, 34px);
}

.case-list-v3 .case-details a {
  color: var(--ink);
}

.proof-note-carousel .testimonial-copy blockquote {
  max-width: 780px;
}

.proof-note-carousel .testimonial-person strong {
  letter-spacing: -0.01em;
}

.receive-section {
  border-top: 1px solid var(--line);
}

.receive-heading {
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.receive-grid article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(20px, 2.8vw, 34px);
  border-right: 1px solid var(--line);
}

.receive-grid article:last-child {
  border-right: 0;
}

.receive-grid span {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.receive-grid h3 {
  max-width: 10em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.receive-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
}

.scope-panel {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
}

.scope-panel h2 {
  margin-bottom: 0;
}

.scope-panel p {
  margin: 0;
}

.scope-panel .journal-link {
  justify-self: start;
}

.work-v3 .journal-cta .journal-actions {
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .case-fold-stack {
    gap: clamp(22px, 4vw, 34px);
    padding-bottom: clamp(36px, 7vw, 72px);
  }

  .case-fold-stack .case-row,
  .case-fold-stack .case-row.featured-case {
    position: relative;
    top: auto;
    min-height: auto;
    box-shadow: 0 18px 54px rgb(10 10 10 / 0.045);
    transform: none;
    opacity: 1;
    will-change: auto;
  }

  .work-featured-proof .service-proof-grid,
  .receive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .receive-grid article:nth-child(2n) {
    border-right: 0;
  }

  .receive-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .work-proof-hero .page-v3-copy h1 {
    max-width: 9.2em;
    font-size: clamp(42px, 11vw, 66px);
  }

  .work-proof-hero .work-hero-image img {
    height: auto;
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }

  .before-after-compare {
    min-height: 220px;
    aspect-ratio: 1 / 1;
  }

  .case-fold-stack {
    gap: 18px;
    padding-top: 0;
  }

  .case-fold-stack .case-row,
  .case-fold-stack .case-row.featured-case {
    padding: 52px 16px 22px;
  }

  .work-featured-proof .service-proof-grid,
  .receive-grid {
    grid-template-columns: 1fr;
  }

  .receive-grid article,
  .receive-grid article:nth-child(2n),
  .receive-grid article:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .receive-grid article:last-child {
    border-bottom: 0;
  }

  .work-v3 .journal-cta .journal-actions {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compare-handle,
  .compare-after-wrap,
  .case-fold-stack .case-row {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* Principle style work fold */
.work-v3 main {
  overflow: visible;
}

@media (min-width: 1181px) {
  .work-v3 .work-proof-hero .page-v3-shell,
  .work-v3 .work-proof-section .page-v3-shell {
    width: min(calc(100% - clamp(48px, 5vw, 96px)), 1760px);
  }

  .work-v3 .work-proof-section .page-v3-content {
    --work-fold-gutter: clamp(34px, 5vw, 54px);
  }
}

.case-list-v3.principle-fold-stack {
  --fold-top: calc(var(--nav-height) - 1px);
  --fold-header-height: 54px;
  --work-fold-gutter: clamp(34px, 5vw, 54px);
  display: block;
  padding: 0 0 clamp(96px, 12vw, 176px);
  border-top: 1px solid var(--ink);
  isolation: isolate;
}

@media (min-width: 1181px) {
  .case-list-v3.principle-fold-stack {
    margin-inline: calc(var(--work-fold-gutter) * -1);
  }
}

.case-list-v3.principle-fold-stack .case-row,
.case-list-v3.principle-fold-stack .case-row.featured-case {
  position: sticky;
  top: calc(var(--fold-top) + var(--fold-offset, 0px));
  z-index: var(--fold-layer, 20);
  min-height: max(660px, calc(100dvh - var(--fold-top) - var(--fold-offset, 0px)));
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(480px, 0.56fr);
  align-self: start;
  align-items: start;
  gap: clamp(46px, 5.4vw, 104px);
  padding: calc(var(--fold-header-height) + clamp(34px, 4.4vw, 72px)) 0 clamp(44px, 5vw, 82px);
  border: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(246 247 243 / 0.98), var(--paper) 74%),
    var(--paper);
  box-shadow:
    0 -1px 0 var(--line),
    0 -18px 52px rgb(18 20 17 / 0.045);
  opacity: 1;
  transform: none;
  overflow: visible;
  transition: background-color 260ms ease;
  will-change: auto;
}

@media (min-width: 1181px) {
  .case-list-v3.principle-fold-stack .case-row,
  .case-list-v3.principle-fold-stack .case-row.featured-case {
    padding-right: var(--work-fold-gutter);
    padding-left: var(--work-fold-gutter);
  }
}

.case-list-v3.principle-fold-stack .case-row::before {
  content: attr(data-fold-title);
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: var(--fold-header-height);
  display: flex;
  align-items: center;
  padding: 0 min(42vw, 420px) 0 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: clamp(26px, 2.28vw, 42px);
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: -0.07em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

@media (min-width: 1181px) {
  .case-list-v3.principle-fold-stack .case-row::before {
    padding-right: calc(min(42vw, 420px) + var(--work-fold-gutter));
    padding-left: var(--work-fold-gutter);
  }

  .case-list-v3.principle-fold-stack .case-row::after {
    padding-right: var(--work-fold-gutter);
  }
}

.case-list-v3.principle-fold-stack .case-row::after {
  content: attr(data-fold-label);
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 5;
  height: var(--fold-header-height);
  display: flex;
  align-items: center;
  padding-left: 28px;
  background: linear-gradient(90deg, transparent, var(--paper) 22px);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 220ms ease;
}

.case-list-v3.principle-fold-stack .case-row.is-fold-active::after {
  opacity: 0.72;
}

.case-list-v3.principle-fold-stack .case-row[hidden] {
  display: none;
}

.case-list-v3.principle-fold-stack .case-copy,
.case-list-v3.principle-fold-stack .featured-case-copy {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: clamp(22px, 2.8vw, 40px);
  padding: 0;
  transform: translateY(10px);
  opacity: 0.9;
  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease;
}

.case-list-v3.principle-fold-stack .case-copy > div:first-child,
.case-list-v3.principle-fold-stack .featured-case-copy > div:first-child {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
}

.case-list-v3.principle-fold-stack .case-row.is-fold-active .case-copy,
.case-list-v3.principle-fold-stack .case-row.is-fold-active .featured-case-copy {
  transform: translateY(0);
  opacity: 1;
}

.case-list-v3.principle-fold-stack .work-meta {
  display: flex;
  flex-wrap: wrap;
  order: 2;
  gap: 8px;
  margin: 0;
}

.case-list-v3.principle-fold-stack .pill {
  border-color: var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.case-list-v3.principle-fold-stack h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.case-list-v3.principle-fold-stack h3 a {
  color: inherit;
  text-decoration-thickness: 0.04em;
  text-underline-offset: 0.08em;
}

.case-list-v3.principle-fold-stack .small-copy {
  order: 1;
  max-width: 25.5em;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.78vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.case-list-v3.principle-fold-stack .case-details,
.case-list-v3.principle-fold-stack .service-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(18px, 2.5vw, 34px);
  max-width: 760px;
  margin-top: clamp(8px, 1vw, 16px);
  border-top: 1px solid var(--line);
}

.case-list-v3.principle-fold-stack .case-details div,
.case-list-v3.principle-fold-stack .service-proof-grid div {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.case-list-v3.principle-fold-stack .case-details span,
.case-list-v3.principle-fold-stack .service-proof-grid span {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.case-list-v3.principle-fold-stack .case-details a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.case-list-v3.principle-fold-stack .case-image,
.case-list-v3.principle-fold-stack .work-compare-panel {
  align-self: start;
  width: 100%;
  min-height: clamp(390px, 58vh, 690px);
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transform: translateY(18px);
  clip-path: inset(0 0 7% 0);
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-list-v3.principle-fold-stack .case-row.is-fold-active .case-image,
.case-list-v3.principle-fold-stack .case-row.is-fold-active .work-compare-panel {
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.case-list-v3.principle-fold-stack .case-image img,
.case-list-v3.principle-fold-stack .before-after-compare {
  width: 100%;
  height: clamp(390px, 58vh, 690px);
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}

.case-list-v3.principle-fold-stack .case-image img {
  display: block;
}

#pulse-after-dark .case-image img,
#thread-tide .case-image img {
  object-position: left center;
}

.case-list-v3.principle-fold-stack .work-compare-panel {
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
}

.case-list-v3.principle-fold-stack .work-compare-panel .before-after-compare {
  min-height: clamp(390px, 58vh, 690px);
  border: 1px solid var(--line);
  background: var(--corner-brew-bg);
}

.case-list-v3.principle-fold-stack .work-compare-panel .compare-image {
  object-fit: contain;
}

.case-list-v3.principle-fold-stack .compare-labels {
  padding-top: 2px;
  color: var(--muted);
}

@media (min-width: 981px) {
  .case-list-v3.principle-fold-stack .case-row.work-featured-proof {
    grid-template-columns: minmax(0, 0.44fr) minmax(480px, 0.56fr);
    gap: clamp(46px, 5.4vw, 104px);
  }

  .case-list-v3.principle-fold-stack .work-featured-proof .work-compare-panel,
  .case-list-v3.principle-fold-stack .service-case .case-image {
    grid-column: 2;
    grid-row: 1;
  }

  .case-list-v3.principle-fold-stack .work-featured-proof .featured-case-copy,
  .case-list-v3.principle-fold-stack .service-case .case-copy {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (min-width: 1500px) {
  .work-proof-section .page-v3-content {
    padding-inline: 50px;
    --work-fold-gutter: 50px;
  }

  .case-list-v3.principle-fold-stack {
    --fold-header-height: 56px;
  }

  .case-list-v3.principle-fold-stack .case-row,
  .case-list-v3.principle-fold-stack .case-row.featured-case {
    min-height: max(700px, calc(100dvh - var(--fold-top) - var(--fold-offset, 0px)));
    grid-template-columns: minmax(0, 0.43fr) minmax(560px, 0.57fr);
    gap: clamp(78px, 5.2vw, 118px);
    padding-top: calc(var(--fold-header-height) + 58px);
    padding-bottom: 68px;
  }

  .case-list-v3.principle-fold-stack .case-row.work-featured-proof {
    grid-template-columns: minmax(0, 0.43fr) minmax(560px, 0.57fr);
    gap: clamp(78px, 5.2vw, 118px);
  }

  .case-list-v3.principle-fold-stack .case-row::before {
    font-size: clamp(30px, 1.9vw, 38px);
  }

  .case-list-v3.principle-fold-stack .small-copy {
    max-width: 30em;
    font-size: clamp(25px, 1.48vw, 29px);
    line-height: 1.1;
  }

  .case-list-v3.principle-fold-stack .case-details div,
  .case-list-v3.principle-fold-stack .service-proof-grid div {
    padding: 13px 0;
    font-size: 14px;
  }

  .case-list-v3.principle-fold-stack .case-image,
  .case-list-v3.principle-fold-stack .work-compare-panel {
    min-height: clamp(450px, 56vh, 710px);
  }

  .case-list-v3.principle-fold-stack .case-image img,
  .case-list-v3.principle-fold-stack .before-after-compare {
    height: clamp(450px, 56vh, 710px);
  }

  .case-list-v3.principle-fold-stack .work-compare-panel .before-after-compare {
    min-height: clamp(450px, 56vh, 710px);
  }
}

@media (max-width: 1180px) {
  .case-list-v3.principle-fold-stack {
    --fold-header-height: 46px;
    gap: 0;
    padding-bottom: clamp(54px, 8vw, 96px);
  }

  .case-list-v3.principle-fold-stack .case-row,
  .case-list-v3.principle-fold-stack .case-row.featured-case {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: clamp(26px, 5vw, 42px);
    padding: calc(var(--fold-header-height) + 28px) 0 clamp(34px, 6vw, 54px);
  }

  .case-list-v3.principle-fold-stack .case-row::before {
    color: var(--ink);
    font-size: clamp(20px, 4.8vw, 30px);
  }

  .case-list-v3.principle-fold-stack .case-row.is-fold-active::before {
    color: var(--ink);
    border-bottom-color: var(--line);
  }

  .case-list-v3.principle-fold-stack .case-row::after {
    display: none;
  }

  .case-list-v3.principle-fold-stack .case-copy,
  .case-list-v3.principle-fold-stack .featured-case-copy,
  .case-list-v3.principle-fold-stack .case-image,
  .case-list-v3.principle-fold-stack .work-compare-panel {
    transform: none;
    clip-path: none;
    opacity: 1;
  }

  .case-list-v3.principle-fold-stack .case-details,
  .case-list-v3.principle-fold-stack .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .case-list-v3.principle-fold-stack .case-image img,
  .case-list-v3.principle-fold-stack .before-after-compare {
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .case-list-v3.principle-fold-stack .work-compare-panel .before-after-compare {
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .case-list-v3.principle-fold-stack h3 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .case-list-v3.principle-fold-stack .small-copy {
    font-size: clamp(19px, 5.3vw, 25px);
  }

  .case-list-v3.principle-fold-stack .case-row,
  .case-list-v3.principle-fold-stack .case-row.featured-case {
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-list-v3.principle-fold-stack .case-copy,
  .case-list-v3.principle-fold-stack .featured-case-copy,
  .case-list-v3.principle-fold-stack .case-image,
  .case-list-v3.principle-fold-stack .work-compare-panel {
    transition: none;
    transform: none;
    clip-path: none;
    opacity: 1;
  }
}

/* Sana Ritual case study */
.case-image-link {
  display: block;
  color: inherit;
}

.case-image-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.sana-case-v3 {
  --paper: #f3ede1;
  --paper-deep: #e8dfd1;
  --surface: #fbf7ef;
  --surface-muted: #e7e2d6;
  --ink: #2e2a26;
  --ink-soft: #514b43;
  --muted: #746e64;
  --line: #d7d0c1;
  --line-strong: #bdb5a4;
  --accent: #55624c;
  --accent-dark: #35412d;
  --accent-soft: #d7dccd;
  background:
    radial-gradient(circle at 12% 3%, rgb(255 255 255 / 0.72), transparent 25rem),
    var(--paper);
}

.sana-case-v3 .site-header {
  border-bottom-color: rgb(46 42 38 / 0.12);
  background: rgb(243 237 225 / 0.9);
}

.sana-case-shell {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.sana-case-hero {
  padding: clamp(46px, 6vw, 84px) 0 clamp(42px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(251 247 239 / 0.58), rgb(243 237 225 / 0.92)),
    var(--paper);
}

.sana-case-hero-copy {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) minmax(280px, 430px);
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 18px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.sana-back-link {
  grid-row: 1 / span 3;
  align-self: start;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 690;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.sana-case-label,
.sana-section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
}

.sana-case-label {
  grid-column: 2;
  max-width: 44ch;
}

.sana-case-hero-copy h1 {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(76px, 11.2vw, 168px);
  line-height: 0.83;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.sana-case-hero-copy > p:not(.sana-case-label) {
  grid-column: 3;
  grid-row: 2 / span 2;
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.sana-hero-media,
.sana-media-wide,
.sana-media-panel {
  margin: 0;
}

.sana-hero-media img,
.sana-media-wide img,
.sana-media-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgb(46 42 38 / 0.1);
  background: var(--surface-muted);
  box-shadow: 0 30px 90px rgb(55 64 44 / 0.12);
}

.sana-hero-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.sana-case-section {
  padding: clamp(56px, 8vw, 118px) 0;
  border-bottom: 1px solid var(--line);
}

.sana-snapshot-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.sana-snapshot h2,
.sana-section-header h2,
.sana-case-cta h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 720;
}

.sana-snapshot-copy {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.sana-snapshot-copy > p,
.sana-section-header > p:not(.sana-section-kicker):not(.sana-micro-line) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.sana-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--ink);
}

.sana-fact-grid div {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sana-fact-grid div:nth-child(2n) {
  padding-left: 20px;
  border-right: 0;
}

.sana-fact-grid dt {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

.sana-fact-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.36;
  font-weight: 660;
}

.sana-section-header {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(26px, 4.6vw, 58px);
}

.sana-section-header h2 {
  max-width: 9.8em;
  margin-top: 0;
}

.sana-media-wide img {
  object-fit: contain;
}

.sana-editorial-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 5.8vw, 86px);
  align-items: center;
}

.sana-editorial-grid-reverse {
  grid-template-columns: minmax(0, 0.64fr) minmax(280px, 0.36fr);
}

.sana-editorial-grid .sana-section-header {
  margin-bottom: 0;
}

.sana-media-panel img {
  object-fit: cover;
}

.sana-packaging-section .sana-media-panel img {
  object-fit: contain;
}

.sana-micro-line {
  max-width: 36ch;
  color: var(--accent-dark);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 760;
}

.sana-retail-section {
  background:
    linear-gradient(180deg, rgb(251 247 239 / 0.52), rgb(232 223 209 / 0.5)),
    var(--paper);
}

.sana-case-cta {
  padding: clamp(54px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.sana-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.sana-case-cta h2 {
  max-width: 9.6em;
  margin-top: 16px;
}

.sana-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .sana-case-hero-copy,
  .sana-snapshot-grid,
  .sana-editorial-grid,
  .sana-editorial-grid-reverse,
  .sana-cta-grid {
    grid-template-columns: 1fr;
  }

  .sana-back-link,
  .sana-case-label,
  .sana-case-hero-copy h1,
  .sana-case-hero-copy > p:not(.sana-case-label) {
    grid-column: auto;
    grid-row: auto;
  }

  .sana-case-hero-copy > p:not(.sana-case-label) {
    max-width: 620px;
  }

  .sana-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .sana-case-shell {
    width: min(100% - 32px, 1360px);
  }

  .sana-case-hero {
    padding-top: 36px;
  }

  .sana-case-hero-copy h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .sana-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .sana-fact-grid {
    grid-template-columns: 1fr;
  }

  .sana-fact-grid div,
  .sana-fact-grid div:nth-child(2n) {
    padding-left: 0;
    border-right: 0;
  }

  .sana-snapshot h2,
  .sana-section-header h2,
  .sana-case-cta h2 {
    font-size: clamp(36px, 12vw, 54px);
  }
}

/* Imported case-study pages: Pulse After Dark and Thread & Tide */
.case-showcase-shell {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.case-showcase-hero,
.case-showcase-section,
.case-showcase-cta {
  border-bottom: 1px solid var(--line);
}

.case-showcase-hero {
  padding: clamp(42px, 5vw, 72px) 0 clamp(48px, 6vw, 92px);
}

.case-showcase-copy {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) minmax(260px, 410px);
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 18px;
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.case-back-link {
  grid-row: 1 / span 3;
  align-self: start;
  width: max-content;
  color: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 690;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.case-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
}

.case-showcase-copy .case-kicker {
  grid-column: 2;
  max-width: 48ch;
}

.case-showcase-copy h1 {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(68px, 9vw, 142px);
  line-height: 0.84;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.case-showcase-copy > p:not(.case-kicker) {
  grid-column: 3;
  grid-row: 2 / span 2;
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.case-hero-media,
.case-wide-media,
.case-editorial-grid figure {
  margin: 0;
}

.case-hero-media img,
.case-wide-media img,
.case-editorial-grid figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.case-hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-showcase-section {
  padding: clamp(58px, 8vw, 118px) 0;
}

.case-snapshot-grid,
.case-editorial-grid,
.case-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.case-editorial-grid {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
}

.case-editorial-grid-reverse {
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
}

.case-snapshot-grid h2,
.case-section-header h2,
.case-showcase-cta h2,
.thread-final-v3 h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(40px, 4.8vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.052em;
  font-weight: 740;
}

.case-copy-stack,
.case-section-header {
  display: grid;
  gap: 18px;
}

.case-copy-stack > p,
.case-section-header > p:not(.case-kicker) {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.case-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(12px, 2vw, 24px) 0 0;
  border-top: 1px solid var(--ink);
}

.case-fact-grid div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 20px 20px 20px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-fact-grid div:nth-child(2n) {
  padding-left: 20px;
  border-right: 0;
}

.case-fact-grid dt {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
}

.case-fact-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.36;
  font-weight: 660;
}

.case-showcase-cta {
  padding: clamp(54px, 7vw, 96px) 0;
}

.case-cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.case-showcase-cta h2 {
  max-width: 10em;
}

.case-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: flex-end;
}

.pulse-case-v3 {
  --paper: #06070b;
  --surface: #0c1018;
  --surface-muted: #111827;
  --ink: #f7f8fb;
  --ink-soft: rgb(247 248 251 / 0.78);
  --muted: rgb(247 248 251 / 0.58);
  --line: rgb(255 255 255 / 0.15);
  --accent: #2f6dff;
  --accent-dark: #8fb1ff;
  background: #06070b;
  color: var(--ink);
}

.pulse-case-v3 .site-header {
  border-bottom-color: rgb(255 255 255 / 0.12);
  background: rgb(6 7 11 / 0.84);
}

.pulse-case-v3 .brand-symbol {
  background: rgb(247 248 251 / 0.92);
  color: #06070b;
}

.pulse-case-v3 .brand-mark,
.pulse-case-v3 .nav-links a,
.pulse-case-v3 .nav-toggle {
  color: var(--ink);
}

.pulse-hero-v3 {
  background:
    radial-gradient(circle at 74% 16%, rgb(47 109 255 / 0.26), transparent 28rem),
    linear-gradient(180deg, #090c15, #05060a);
}

.pulse-case-v3 .case-hero-media img,
.pulse-case-v3 .case-wide-media img,
.pulse-poster-grid-v3 figure,
.pulse-social-grid-v3 figure {
  border-color: rgb(255 255 255 / 0.14);
  box-shadow: 0 34px 100px rgb(0 0 0 / 0.34);
}

.pulse-system-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pulse-system-grid-v3 article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.06), rgb(255 255 255 / 0.015)),
    #080b12;
}

.pulse-system-grid-v3 span,
.pulse-system-grid-v3 strong {
  color: var(--accent-dark);
}

.pulse-system-grid-v3 strong {
  display: block;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pulse-system-grid-v3 p {
  margin: 0;
  color: var(--ink-soft);
}

.pulse-poster-grid-v3,
.pulse-social-grid-v3 {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

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

.pulse-social-grid-v3 {
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  align-items: stretch;
}

.pulse-poster-grid-v3 figure,
.pulse-social-grid-v3 figure {
  margin: 0;
  background: #080b12;
}

.pulse-poster-grid-v3 img,
.pulse-social-grid-v3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pulse-poster-grid-v3 figcaption,
.pulse-social-grid-v3 figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
}

.pulse-materials-v3 {
  background:
    linear-gradient(180deg, rgb(47 109 255 / 0.08), transparent 32%),
    #070910;
}

.pulse-materials-v3 .case-wide-media img {
  object-fit: cover;
}

.pulse-case-v3 .case-showcase-cta {
  background: #0a0d14;
}

.pulse-case-v3 .journal-button-primary {
  background: var(--accent);
  color: #fff;
}

.nue-case-v3 {
  --paper: #f6f2e9;
  --surface: #fffdf8;
  --surface-muted: #ede7dc;
  --ink: #14110e;
  --ink-soft: rgb(20 17 14 / 0.74);
  --muted: rgb(20 17 14 / 0.52);
  --line: rgb(20 17 14 / 0.14);
  --accent: #2450ff;
  --accent-dark: #6f5f33;
  background: var(--paper);
  color: var(--ink);
}

.nue-hero-cover {
  padding: calc(var(--nav-height) + clamp(28px, 5vw, 70px)) 0 clamp(34px, 5vw, 72px);
}

.nue-hero-media,
.nue-wide-media,
.nue-panel-media,
.nue-menu-media,
.nue-social-grid figure,
.nue-story-grid figure {
  margin: 0;
}

.nue-hero-media img,
.nue-wide-media img,
.nue-panel-media img,
.nue-menu-media img,
.nue-social-grid img,
.nue-story-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  box-shadow: 0 26px 80px rgb(52 39 24 / 0.11);
}

.nue-hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.nue-opening {
  padding-top: clamp(24px, 4vw, 56px);
}

.nue-meta-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.nue-meta-band span {
  display: grid;
  gap: 10px;
  min-height: 104px;
  padding: 20px 20px 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.34;
  font-weight: 650;
}

.nue-meta-band span:last-child {
  border-right: 0;
}

.nue-meta-band strong {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nue-wide-media figcaption,
.nue-social-grid figcaption {
  max-width: 560px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.nue-principle-grid,
.nue-rules-grid,
.nue-reflection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vw, 54px);
  border-top: 1px solid var(--ink);
}

.nue-principle-grid article,
.nue-rules-grid article,
.nue-reflection-grid article {
  min-height: 148px;
  padding: 20px 22px 20px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nue-principle-grid article:last-child,
.nue-rules-grid article:last-child,
.nue-reflection-grid article:last-child {
  border-right: 0;
}

.nue-principle-grid span,
.nue-rules-grid strong,
.nue-reflection-grid span {
  display: block;
  color: var(--accent);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 780;
}

.nue-principle-grid p,
.nue-rules-grid p,
.nue-reflection-grid p {
  max-width: 30ch;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.42;
}

.nue-panel-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.nue-menu-section {
  background: rgb(255 253 248 / 0.64);
}

.nue-menu-media {
  justify-self: center;
  width: min(100%, 420px);
}

.nue-menu-media img {
  border-color: rgb(20 17 14 / 0.18);
}

.nue-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
}

.nue-social-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.nue-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
  width: min(100%, 960px);
  margin: clamp(30px, 4vw, 56px) auto 0;
}

.nue-story-grid img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.nue-reflection-section {
  background: rgb(255 253 248 / 0.58);
}

.nue-case-v3 .case-showcase-cta {
  background: var(--surface);
}

@media (max-width: 980px) {
  .nue-meta-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nue-meta-band span:nth-child(2n) {
    border-right: 0;
  }

  .nue-meta-band span:last-child {
    grid-column: 1 / -1;
  }

  .nue-principle-grid,
  .nue-rules-grid,
  .nue-reflection-grid {
    grid-template-columns: 1fr;
  }

  .nue-principle-grid article,
  .nue-rules-grid article,
  .nue-reflection-grid article {
    min-height: 0;
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .nue-hero-cover {
    padding-top: calc(var(--nav-height) + 24px);
  }

  .nue-meta-band,
  .nue-social-grid,
  .nue-story-grid {
    grid-template-columns: 1fr;
  }

  .nue-meta-band {
    width: min(100% - 30px, 1260px);
  }

  .nue-meta-band span {
    min-height: 0;
    border-right: 0;
  }

  .nue-menu-media {
    width: min(100%, 340px);
  }
}

/* Nue Ground editorial case refresh */
.nue-case-v3 {
  --paper: #f3eee4;
  --surface: #fffaf0;
  --surface-muted: #e9dfd1;
  --ink: #14110e;
  --ink-soft: rgb(20 17 14 / 0.74);
  --muted: rgb(20 17 14 / 0.52);
  --line: rgb(20 17 14 / 0.14);
  --accent: #2450ff;
  --accent-dark: #6d6032;
  --nue-hero-ink: #fff8ea;
  background:
    radial-gradient(circle at 18% 18%, rgb(205 188 151 / 0.24), transparent 32rem),
    linear-gradient(180deg, #f3eee4, #fbf7ed 34%, #efe7da);
  color: var(--ink);
}

.nue-case-v3 .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom-color: rgb(255 248 234 / 0.2);
  background: rgb(17 13 9 / 0.38);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.nue-case-v3 .brand-mark,
.nue-case-v3 .nav-links a,
.nue-case-v3 .nav-toggle {
  color: var(--nue-hero-ink);
}

.nue-case-v3 .nav-toggle {
  background: rgb(255 248 234 / 0.12);
  box-shadow: inset 0 0 0 1px rgb(255 248 234 / 0.34);
}

.nue-case-v3 .brand-name {
  color: var(--nue-hero-ink);
}

.nue-case-v3 .brand-sub {
  color: rgb(255 248 234 / 0.58);
}

.nue-case-v3 .brand-symbol {
  background: rgb(255 250 238 / 0.94);
  color: #111;
}

.nue-case-v3 .nav-links a[aria-current="page"] {
  background: rgb(255 248 234 / 0.1);
}

.nue-case-v3 .nav-cta {
  background: rgb(10 8 6 / 0.86);
  color: #fff;
}

.nue-case-v3 .site-header.is-nue-light {
  border-bottom-color: rgb(20 17 14 / 0.12);
  background: rgb(255 253 248 / 0.9);
}

.nue-case-v3 .site-header.is-nue-light .brand-mark,
.nue-case-v3 .site-header.is-nue-light .nav-links a,
.nue-case-v3 .site-header.is-nue-light .nav-toggle {
  color: var(--ink);
}

.nue-case-v3 .site-header.is-nue-light .brand-name {
  color: var(--ink);
}

.nue-case-v3 .site-header.is-nue-light .brand-sub {
  color: var(--muted);
}

.nue-case-v3 .site-header.is-nue-light .nav-toggle {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.nue-case-v3 .site-header.is-nue-light .brand-symbol {
  background: #111;
  color: #fff;
}

.nue-case-v3 .site-header.is-nue-light .nav-cta {
  background: rgb(10 8 6 / 0.94);
  color: #fff;
}

.nue-case-v3 .site-header.is-nue-light .nav-links a.nav-cta {
  background: rgb(10 8 6 / 0.94);
  color: #fff;
}

.nue-hero-cover {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: stretch;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #15100b;
}

.nue-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.nue-hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.96) contrast(1.08) brightness(0.82);
  transform: scale(1.045);
  box-shadow: none;
}

.nue-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgb(255 236 190 / 0.26), transparent 30rem),
    linear-gradient(90deg, rgb(8 6 4 / 0.86), rgb(8 6 4 / 0.45) 42%, rgb(8 6 4 / 0.18) 70%, rgb(8 6 4 / 0.62)),
    linear-gradient(180deg, rgb(8 6 4 / 0.34), transparent 28%, rgb(8 6 4 / 0.82));
}

.nue-hero-content {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(1680px, calc(100% - clamp(36px, 6vw, 120px)));
  min-height: 100dvh;
  margin: 0 auto;
  padding: calc(var(--nav-height) + clamp(24px, 4vw, 60px)) 0 clamp(30px, 4vw, 64px);
  color: var(--nue-hero-ink);
}

.nue-hero-topline {
  display: flex;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}

.nue-hero-topline .case-back-link,
.nue-hero-topline .case-kicker {
  color: rgb(255 248 234 / 0.86);
}

.nue-hero-topline .case-back-link {
  border-bottom-color: rgb(255 248 234 / 0.58);
}

.nue-hero-lockup {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.24fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: end;
  align-self: end;
  padding-bottom: clamp(28px, 5vh, 60px);
}

.nue-hero-lockup h1 {
  max-width: 9.6em;
  margin: 0;
  color: var(--nue-hero-ink);
  font-size: clamp(56px, 8.4vw, 148px);
  line-height: 0.86;
  letter-spacing: -0.064em;
  font-weight: 760;
  text-wrap: balance;
}

.nue-hero-lockup p {
  max-width: 430px;
  margin: 0 0 0.16em;
  color: rgb(255 248 234 / 0.86);
  font-size: clamp(20px, 1.5vw, 27px);
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.nue-hero-facts {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.15fr;
  border-top: 1px solid rgb(255 248 234 / 0.52);
  border-bottom: 1px solid rgb(255 248 234 / 0.2);
}

.nue-hero-facts span {
  display: grid;
  gap: 10px;
  min-height: 86px;
  padding: 18px 22px 16px 0;
  border-right: 1px solid rgb(255 248 234 / 0.2);
  color: rgb(255 248 234 / 0.92);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 680;
}

.nue-hero-facts span:nth-child(n + 2) {
  padding-left: 22px;
}

.nue-hero-facts span:last-child {
  border-right: 0;
}

.nue-hero-facts strong {
  color: rgb(255 248 234 / 0.58);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nue-meta-band {
  margin-top: 0;
  background: rgb(255 253 248 / 0.46);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nue-brief-section {
  padding-top: clamp(78px, 10vw, 150px);
}

.nue-case-v3 .case-showcase-section {
  position: relative;
}

.nue-atmosphere-section,
.nue-launch-section,
.nue-reflection-section {
  background:
    linear-gradient(180deg, rgb(255 253 248 / 0.42), rgb(222 211 194 / 0.3)),
    transparent;
}

.nue-identity-section,
.nue-details-section {
  background:
    radial-gradient(circle at 82% 20%, rgb(36 80 255 / 0.06), transparent 28rem),
    transparent;
}

.nue-packaging-section {
  background:
    linear-gradient(115deg, rgb(116 98 61 / 0.12), transparent 44%),
    transparent;
}

.nue-wide-media,
.nue-panel-media,
.nue-menu-media,
.nue-social-grid figure,
.nue-story-grid figure {
  overflow: hidden;
}

.nue-wide-media img,
.nue-panel-media img,
.nue-menu-media img,
.nue-social-grid img,
.nue-story-grid img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
  will-change: transform;
}

.nue-wide-media:hover img,
.nue-panel-media:hover img,
.nue-menu-media:hover img,
.nue-social-grid figure:hover img,
.nue-story-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.03) contrast(1.04);
}

.nue-principle-grid,
.nue-rules-grid,
.nue-reflection-grid {
  background: rgb(255 253 248 / 0.38);
}

.nue-atmosphere-section {
  padding-bottom: clamp(44px, 6vw, 84px);
}

.nue-principle-grid {
  grid-template-columns: 0.84fr 1.08fr 1fr;
  column-gap: clamp(20px, 4vw, 76px);
  row-gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(18px, 3vw, 42px);
  padding: clamp(22px, 3vw, 38px) 0 clamp(10px, 1.6vw, 20px);
  border-top: 1px solid rgb(20 17 14 / 0.74);
  border-bottom: 1px solid rgb(20 17 14 / 0.12);
  background: transparent;
}

.nue-principle-grid article {
  position: relative;
  min-height: auto;
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 0;
  border-right: 0;
  border-bottom: 0;
}

.nue-principle-grid article + article {
  padding-left: clamp(18px, 2.4vw, 36px);
  border-left: 1px solid rgb(20 17 14 / 0.1);
}

.nue-principle-grid span {
  max-width: 12ch;
  color: var(--accent);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 820;
}

.nue-principle-grid p {
  max-width: 29ch;
  margin: 0;
  color: rgb(20 17 14 / 0.7);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.38;
  letter-spacing: -0.012em;
}

@media (max-width: 980px) {
  .nue-principle-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0;
  }

  .nue-principle-grid article,
  .nue-principle-grid article + article {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid rgb(20 17 14 / 0.12);
  }

  .nue-principle-grid article:last-child {
    border-bottom: 0;
  }

  .nue-principle-grid p {
    max-width: 42ch;
  }
}

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

.nue-rules-grid article {
  border-right: 1px solid var(--line);
}

.nue-rules-grid article:last-child {
  border-right: 0;
}

.nue-menu-section {
  background:
    radial-gradient(circle at 24% 50%, rgb(36 80 255 / 0.08), transparent 23rem),
    rgb(255 253 248 / 0.68);
}

.nue-menu-section .case-editorial-grid-reverse {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
}

.nue-social-section {
  background:
    linear-gradient(180deg, transparent, rgb(17 13 9 / 0.05) 46%, transparent),
    var(--paper);
}

.nue-story-grid figure:nth-child(2) {
  margin-top: clamp(22px, 4vw, 62px);
}

.nue-story-grid figure:nth-child(3) {
  margin-top: clamp(44px, 7vw, 108px);
}

.nue-case-v3 .case-showcase-cta {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 20%, rgb(36 80 255 / 0.08), transparent 26rem),
    var(--surface);
}

/* Bloom Lane Clinic case study */
.bloom-case-v3 {
  --paper: #f4f5f2;
  --surface: #fffefb;
  --surface-muted: #eceeeb;
  --ink: #101113;
  --ink-soft: rgb(16 17 19 / 0.74);
  --muted: rgb(16 17 19 / 0.52);
  --line: rgb(16 17 19 / 0.14);
  --line-strong: rgb(16 17 19 / 0.32);
  --accent: #0f4dff;
  --accent-soft: rgb(15 77 255 / 0.08);
  background:
    linear-gradient(90deg, rgb(16 17 19 / 0.035) 1px, transparent 1px) 0 0 / clamp(74px, 7vw, 132px) 100%,
    linear-gradient(180deg, #f6f7f4, #fbfbf8 42%, #eff1ed);
  color: var(--ink);
}

.bloom-case-v3 .site-header {
  background: rgb(250 251 248 / 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
}

.bloom-hero-v3 {
  position: relative;
  min-height: calc(100dvh - var(--nav-height));
  padding: clamp(46px, 5vw, 82px) 0 clamp(30px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.bloom-hero-v3::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(6px, 0.7vw, 12px);
  background: var(--accent);
  transform-origin: top;
  opacity: 0.96;
}

.bloom-hero-grid-v3,
.bloom-shell-v3,
.bloom-hero-facts-v3 {
  width: min(1680px, calc(100% - clamp(34px, 6vw, 112px)));
  margin-inline: auto;
}

.bloom-hero-grid-v3 {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(42px, 6vw, 112px);
  align-items: end;
}

.bloom-hero-copy-v3 {
  display: grid;
  align-content: end;
  min-height: clamp(560px, 70dvh, 820px);
  padding-bottom: clamp(22px, 4vw, 64px);
}

.bloom-hero-copy-v3 .case-back-link {
  justify-self: start;
  margin-bottom: clamp(44px, 8vw, 122px);
}

.bloom-hero-copy-v3 .case-kicker,
.bloom-section-heading-v3 .case-kicker {
  color: var(--accent);
}

.bloom-hero-copy-v3 h1 {
  max-width: 8.9em;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(58px, 7.6vw, 138px);
  line-height: 0.88;
  letter-spacing: -0.068em;
  font-weight: 760;
}

.bloom-hero-copy-v3 > p:not(.case-kicker) {
  max-width: 510px;
  margin: clamp(24px, 3vw, 42px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(21px, 1.55vw, 29px);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.bloom-hero-actions-v3 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: clamp(28px, 4vw, 54px);
}

.bloom-hero-actions-v3 .journal-link {
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

.bloom-hero-media-v3,
.bloom-image-frame-v3 {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.96), rgb(241 243 239 / 0.86)),
    var(--surface);
  box-shadow: 0 28px 76px rgb(16 17 19 / 0.11);
}

.bloom-hero-media-v3::before,
.bloom-result-media-v3::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(28px, 4vw, 64px);
  z-index: 1;
  width: 3px;
  height: clamp(58px, 8vw, 120px);
  background: var(--accent);
}

.bloom-hero-media-v3 img,
.bloom-image-frame-v3 img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 760ms ease;
  will-change: transform;
}

.bloom-hero-facts-v3 {
  display: grid;
  grid-template-columns: 0.75fr 0.58fr 1fr 1.25fr;
  margin-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.bloom-hero-facts-v3 div {
  display: grid;
  gap: 10px;
  min-height: 96px;
  padding: 18px 22px 18px 0;
  border-right: 1px solid var(--line);
}

.bloom-hero-facts-v3 div:nth-child(n + 2) {
  padding-left: 22px;
}

.bloom-hero-facts-v3 div:last-child {
  border-right: 0;
}

.bloom-hero-facts-v3 dt,
.bloom-mini-spec-v3 dt {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 820;
}

.bloom-hero-facts-v3 dd,
.bloom-mini-spec-v3 dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.32;
  font-weight: 660;
}

.bloom-section-v3 {
  scroll-margin-top: calc(var(--nav-height) + 24px);
  padding: clamp(68px, 9vw, 138px) 0;
  border-bottom: 1px solid var(--line);
}

.bloom-overview-grid-v3,
.bloom-editorial-grid-v3,
.bloom-change-grid-v3,
.bloom-deliverables-grid-v3 {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
}

.bloom-editorial-grid-reverse-v3 {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
}

.bloom-section-heading-v3 {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.bloom-section-heading-v3 h2 {
  max-width: 11.2em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 760;
}

.bloom-section-heading-v3 > p:not(.case-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.bloom-copy-stack-v3 {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.bloom-copy-stack-v3 > p {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.bloom-mini-spec-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(16px, 2.4vw, 32px) 0 0;
  border-top: 1px solid var(--ink);
}

.bloom-mini-spec-v3 div {
  display: grid;
  gap: 12px;
  min-height: 128px;
  padding: 20px 18px 20px 0;
  border-right: 1px solid var(--line);
}

.bloom-mini-spec-v3 div:nth-child(n + 2) {
  padding-left: 18px;
}

.bloom-mini-spec-v3 div:last-child {
  border-right: 0;
}

.bloom-original-v3,
.bloom-result-v3,
.bloom-deliverables-v3 {
  background: rgb(255 254 251 / 0.52);
}

.bloom-before-frame-v3 {
  transform: rotate(-1.2deg);
}

.bloom-diagnosis-heading-v3,
.bloom-result-heading-v3 {
  max-width: 1120px;
  margin-bottom: clamp(30px, 5vw, 72px);
}

.bloom-diagnosis-heading-v3 h2,
.bloom-result-heading-v3 h2 {
  max-width: 10.8em;
}

.bloom-diagnosis-grid-v3 {
  display: grid;
  grid-template-columns: minmax(320px, 0.45fr) minmax(420px, 0.55fr);
  gap: clamp(38px, 5.6vw, 88px);
  align-items: start;
}

.bloom-diagnosis-crop-v3 {
  align-self: start;
  background: #f2f3f0;
}

.bloom-diagnosis-crop-v3 img {
  height: 100%;
  aspect-ratio: 0.88 / 1;
  object-position: 0% 50%;
}

.bloom-diagnosis-list-v3,
.bloom-direction-list-v3,
.bloom-change-list-v3,
.bloom-deliverable-list-v3 {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--ink);
}

.bloom-diagnosis-list-v3 article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 2px clamp(18px, 2vw, 28px);
  padding: clamp(19px, 2vw, 28px) 0;
  border-bottom: 1px solid var(--line);
}

.bloom-diagnosis-list-v3 span,
.bloom-direction-list-v3 span {
  width: 46px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(15 77 255 / 0.32);
  background: rgb(15 77 255 / 0.06);
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 820;
}

.bloom-diagnosis-list-v3 h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.bloom-diagnosis-list-v3 p {
  grid-column: 2;
  max-width: 46ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.46;
}

.bloom-direction-v3 {
  background:
    linear-gradient(90deg, transparent, rgb(15 77 255 / 0.045) 50%, transparent),
    var(--paper);
}

.bloom-direction-layout-v3 {
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
}

.bloom-direction-layout-v3 .bloom-section-heading-v3 {
  position: sticky;
  top: calc(var(--nav-height) + clamp(24px, 4vw, 54px));
}

.bloom-direction-layout-v3 .bloom-section-heading-v3 h2 {
  max-width: 9.4em;
}

.bloom-direction-panel-v3 {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.bloom-direction-list-v3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0;
}

.bloom-direction-list-v3 article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px clamp(18px, 2vw, 26px);
  min-height: clamp(154px, 14vw, 214px);
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
}

.bloom-direction-list-v3 article:nth-child(2n + 1) {
  padding-right: clamp(22px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.bloom-direction-list-v3 article:nth-child(2n) {
  padding-left: clamp(22px, 3vw, 44px);
}

.bloom-direction-list-v3 article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.bloom-direction-list-v3 strong {
  color: var(--ink);
  font-size: clamp(25px, 2vw, 42px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.bloom-direction-list-v3 p {
  grid-column: 2;
  max-width: 42ch;
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.46;
}

.bloom-result-media-v3 {
  box-shadow: 0 34px 108px rgb(16 17 19 / 0.13);
}

.bloom-change-list-v3 article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 90px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 30px);
  align-items: start;
  padding: clamp(22px, 2.5vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.bloom-change-list-v3 span,
.bloom-change-list-v3 strong {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 820;
}

.bloom-change-list-v3 p {
  max-width: 34ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.26;
  letter-spacing: -0.03em;
}

.bloom-deliverable-list-v3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bloom-deliverable-list-v3 span {
  min-height: 98px;
  display: grid;
  align-items: center;
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(20px, 1.38vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 720;
}

.bloom-deliverable-list-v3 span:nth-child(2n) {
  border-right: 0;
}

.bloom-cta-v3 {
  background:
    linear-gradient(90deg, rgb(15 77 255 / 0.06), transparent 38%),
    var(--surface);
}

#bloom-lane .case-image {
  background: #f4f5f2;
}

#bloom-lane .case-image img {
  object-fit: contain;
}

@media (hover: hover) {
  .bloom-hero-media-v3:hover img,
  .bloom-image-frame-v3:hover img,
  #bloom-lane .case-image:hover img {
    transform: scale(1.024);
    filter: contrast(1.03) saturate(0.98);
  }
}

@media (max-width: 1180px) {
  .bloom-hero-grid-v3,
  .bloom-overview-grid-v3,
  .bloom-editorial-grid-v3,
  .bloom-editorial-grid-reverse-v3,
  .bloom-direction-layout-v3,
  .bloom-diagnosis-grid-v3,
  .bloom-change-grid-v3,
  .bloom-deliverables-grid-v3 {
    grid-template-columns: 1fr;
  }

  .bloom-direction-layout-v3 .bloom-section-heading-v3 {
    position: static;
  }

  .bloom-hero-copy-v3 {
    min-height: auto;
    padding-bottom: 0;
  }

  .bloom-hero-copy-v3 .case-back-link {
    margin-bottom: clamp(34px, 7vw, 72px);
  }

  .bloom-hero-facts-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bloom-hero-facts-v3 div:nth-child(2n) {
    border-right: 0;
  }

  .bloom-mini-spec-v3 {
    grid-template-columns: 1fr;
  }

  .bloom-mini-spec-v3 div,
  .bloom-mini-spec-v3 div:nth-child(n + 2) {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bloom-change-list-v3 article {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .bloom-change-list-v3 strong {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .bloom-hero-v3 {
    min-height: auto;
    padding: 36px 0 34px;
  }

  .bloom-hero-v3::before {
    width: 5px;
  }

  .bloom-hero-grid-v3,
  .bloom-shell-v3,
  .bloom-hero-facts-v3 {
    width: min(100% - 30px, 1680px);
  }

  .bloom-hero-copy-v3 h1 {
    font-size: clamp(46px, 14.8vw, 68px);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .bloom-hero-copy-v3 > p:not(.case-kicker) {
    font-size: 18px;
    line-height: 1.28;
  }

  .bloom-hero-actions-v3 {
    display: grid;
    gap: 12px;
  }

  .bloom-hero-actions-v3 .journal-button {
    width: 100%;
    justify-self: stretch;
  }

  .bloom-hero-actions-v3 .journal-link {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 17px;
    text-decoration: none;
  }

  .bloom-hero-facts-v3 {
    grid-template-columns: 1fr;
  }

  .bloom-hero-facts-v3 div,
  .bloom-hero-facts-v3 div:nth-child(n + 2) {
    min-height: 0;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bloom-section-v3 {
    padding: 54px 0;
  }

  .bloom-section-heading-v3 h2 {
    font-size: clamp(36px, 10vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.048em;
  }

  .bloom-copy-stack-v3 > p,
  .bloom-section-heading-v3 > p:not(.case-kicker) {
    font-size: 17px;
    line-height: 1.38;
  }

  .bloom-before-frame-v3 {
    transform: none;
  }

  .bloom-diagnosis-list-v3 article,
  .bloom-direction-list-v3 article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0 14px;
  }

  .bloom-diagnosis-list-v3 span,
  .bloom-direction-list-v3 span {
    width: 40px;
    height: 28px;
    font-size: 11px;
  }

  .bloom-diagnosis-list-v3 p,
  .bloom-direction-list-v3 p {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .bloom-diagnosis-crop-v3 img {
    aspect-ratio: 0.96 / 1;
  }

  .bloom-direction-list-v3 {
    grid-template-columns: 1fr;
  }

  .bloom-direction-list-v3 article,
  .bloom-direction-list-v3 article:nth-child(2n),
  .bloom-direction-list-v3 article:nth-child(2n + 1) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bloom-direction-list-v3 article:last-child {
    border-bottom: 0;
  }

  .bloom-change-list-v3 article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bloom-deliverable-list-v3 {
    grid-template-columns: 1fr;
  }

  .bloom-deliverable-list-v3 span {
    min-height: 78px;
    border-right: 0;
  }
}

@media (max-width: 1180px) {
  .nue-hero-lockup {
    grid-template-columns: 1fr;
    align-content: end;
  }

  .nue-hero-lockup p {
    max-width: 580px;
  }

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

  .nue-rules-grid article:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .nue-case-v3 .site-header {
    background: rgb(17 13 9 / 0.34);
  }

  .nue-case-v3 .brand-mark,
  .nue-case-v3 .nav-links a,
  .nue-case-v3 .nav-toggle {
    color: var(--nue-hero-ink);
  }

  .nue-case-v3 .brand-name {
    color: var(--nue-hero-ink);
  }

  .nue-case-v3 .brand-sub {
    color: rgb(255 248 234 / 0.58);
  }

  .nue-case-v3 .brand-symbol {
    background: rgb(255 250 238 / 0.94);
    color: #111;
  }

  .nue-case-v3 .site-header.is-nue-light {
    background: rgb(255 253 248 / 0.92);
  }

  .nue-case-v3 .site-header.is-nue-light .brand-mark,
  .nue-case-v3 .site-header.is-nue-light .nav-links a,
  .nue-case-v3 .site-header.is-nue-light .nav-toggle {
    color: var(--ink);
  }

  .nue-case-v3 .site-header.is-nue-light .brand-name {
    color: var(--ink);
  }

  .nue-case-v3 .site-header.is-nue-light .brand-sub {
    color: var(--muted);
  }

  .nue-case-v3 .site-header.is-nue-light .brand-symbol {
    background: #111;
    color: #fff;
  }

  .nue-hero-cover,
  .nue-hero-content {
    min-height: 100svh;
  }

  .nue-hero-media img {
    object-position: 56% 50%;
  }

  .nue-hero-content {
    width: min(100% - 30px, 1680px);
    padding-top: calc(var(--nav-height) + 28px);
  }

  .nue-hero-topline {
    display: grid;
    justify-content: start;
  }

  .nue-hero-lockup h1 {
    font-size: clamp(48px, 16vw, 72px);
    line-height: 0.88;
  }

  .nue-hero-lockup p {
    font-size: 18px;
  }

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

  .nue-hero-facts span,
  .nue-hero-facts span:nth-child(n + 2) {
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 248 234 / 0.18);
  }

  .nue-rules-grid {
    grid-template-columns: 1fr;
  }

  .nue-rules-grid article {
    border-right: 0;
  }

  .nue-story-grid figure:nth-child(n) {
    margin-top: 0;
  }
}

/* Nue Ground identity rule strip refinement */
.nue-rules-grid {
  grid-template-columns: 0.94fr 0.82fr 1.12fr 1fr;
  column-gap: clamp(18px, 3vw, 58px);
  row-gap: clamp(18px, 2.6vw, 32px);
  margin-top: clamp(18px, 3vw, 42px);
  padding: clamp(20px, 2.6vw, 34px) 0 clamp(8px, 1.2vw, 18px);
  border-top: 1px solid rgb(20 17 14 / 0.74);
  border-bottom: 1px solid rgb(20 17 14 / 0.12);
  background: transparent;
}

.nue-rules-grid article {
  min-height: auto;
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.5vw, 22px);
  padding: 0;
  border-right: 0;
  border-bottom: 0;
}

.nue-rules-grid article + article {
  padding-left: clamp(18px, 2.2vw, 34px);
  border-left: 1px solid rgb(20 17 14 / 0.1);
}

.nue-rules-grid strong {
  max-width: 13ch;
  color: var(--accent);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 820;
}

.nue-rules-grid p {
  max-width: 28ch;
  margin: 0;
  color: rgb(20 17 14 / 0.7);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

@media (max-width: 1180px) {
  .nue-rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(22px, 4vw, 54px);
    row-gap: 0;
  }

  .nue-rules-grid article,
  .nue-rules-grid article:nth-child(2n) {
    border-right: 0;
  }

  .nue-rules-grid article:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .nue-rules-grid article:nth-child(2n) {
    padding-left: clamp(18px, 2.8vw, 34px);
    border-left: 1px solid rgb(20 17 14 / 0.1);
  }

  .nue-rules-grid article:nth-child(n + 3) {
    margin-top: clamp(18px, 2.5vw, 28px);
    padding-top: clamp(18px, 2.5vw, 28px);
    border-top: 1px solid rgb(20 17 14 / 0.12);
  }
}

@media (max-width: 720px) {
  .nue-rules-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0;
  }

  .nue-rules-grid article,
  .nue-rules-grid article:nth-child(2n),
  .nue-rules-grid article:nth-child(n + 3) {
    margin-top: 0;
    padding: 18px 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid rgb(20 17 14 / 0.12);
  }

  .nue-rules-grid article:last-child {
    border-bottom: 0;
  }

  .nue-rules-grid p {
    max-width: 42ch;
  }
}

.thread-case-v3 {
  --paper: #030405;
  --surface: #080a0d;
  --surface-muted: #101419;
  --ink: #f3f5f4;
  --ink-soft: rgb(243 245 244 / 0.76);
  --muted: rgb(243 245 244 / 0.56);
  --line: rgb(255 255 255 / 0.14);
  --accent: #2c7dff;
  --accent-dark: #8eb9ff;
  background: #030405;
  color: var(--ink);
}

.thread-case-v3 .site-header {
  border-bottom-color: rgb(255 255 255 / 0.12);
  background: rgb(3 4 5 / 0.78);
}

.thread-case-v3 .brand-symbol {
  background: rgb(243 245 244 / 0.92);
  color: #030405;
}

.thread-case-v3 .brand-mark,
.thread-case-v3 .nav-links a,
.thread-case-v3 .nav-toggle {
  color: var(--ink);
}

.thread-hero-v3 {
  position: relative;
  min-height: min(920px, calc(100dvh - var(--nav-height)));
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(120px, 13vw, 180px) 0 clamp(40px, 5vw, 72px);
  background: #030405;
}

.thread-hero-video-v3 {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  filter: saturate(0.86) contrast(1.12) brightness(0.78);
}

.thread-hero-shade-v3 {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(3 4 5 / 0.94), rgb(3 4 5 / 0.62) 46%, rgb(3 4 5 / 0.2)),
    linear-gradient(0deg, rgb(3 4 5 / 0.92), transparent 58%),
    radial-gradient(circle at 72% 52%, rgb(44 125 255 / 0.24), transparent 30%);
}

.thread-hero-copy-v3 {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.thread-hero-copy-v3 h1 {
  max-width: 9em;
  margin: 0;
  color: #fff;
  font-size: clamp(70px, 10vw, 156px);
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.thread-hero-copy-v3 > p:not(.case-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.thread-hero-spec-v3 {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(34px, 5vw, 68px) auto 0;
  border: 1px solid var(--line);
  background: rgb(3 4 5 / 0.58);
  backdrop-filter: blur(16px);
}

.thread-hero-spec-v3 span {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 780;
}

.thread-hero-spec-v3 span:last-child {
  border-right: 0;
}

.thread-hero-spec-v3 strong {
  color: var(--accent-dark);
  font-size: 11px;
  text-transform: uppercase;
}

.thread-opening-v3,
.thread-social-section-v3 {
  background:
    radial-gradient(circle at 78% 10%, rgb(44 125 255 / 0.12), transparent 30rem),
    #05070a;
}

.thread-fact-grid dt {
  color: var(--accent-dark);
  font-size: 34px;
}

.thread-product-grid-v3 {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: 14px;
  align-items: start;
}

.thread-product-grid-v3 figure,
.thread-feed-wall-v3 figure,
.thread-story-strip-v3 figure,
.thread-final-v3 {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.055), rgb(255 255 255 / 0.018)),
    #07090c;
  box-shadow: 0 34px 90px rgb(0 0 0 / 0.28);
}

.thread-product-grid-v3 figure {
  display: flex;
  flex-direction: column;
}

.thread-product-grid-v3 img,
.thread-feed-wall-v3 img,
.thread-story-strip-v3 img,
.thread-wide-media-v3 img,
.thread-final-v3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.thread-product-grid-v3 img {
  height: auto;
}

.thread-product-grid-v3 figure:first-child img {
  aspect-ratio: 8 / 9;
  object-position: 50% 52%;
}

.thread-product-grid-v3 figure:last-child img {
  aspect-ratio: 2 / 3;
}

.thread-product-grid-v3 figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
}

.thread-social-system-v3 {
  display: grid;
  gap: 24px;
}

.thread-feed-wall-v3 {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 10px;
  padding: 14px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 6%, rgb(44 125 255 / 0.18), transparent 24%),
    #040609;
}

.thread-feed-wall-v3 figure {
  min-width: 140px;
}

.thread-feed-wall-v3 img {
  aspect-ratio: 1 / 1;
}

.thread-story-deck-v3 {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #07090c;
}

.thread-story-deck-v3 strong {
  display: block;
  max-width: 360px;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.thread-story-strip-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.thread-story-strip-v3 img {
  aspect-ratio: 9 / 16;
}

.thread-packaging-section-v3,
.thread-final-v3 {
  background: #06080b;
}

.thread-final-v3 {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 52px);
  border-left: 0;
  border-right: 0;
}

.thread-final-v3 img {
  aspect-ratio: 16 / 10;
}

.thread-final-v3 > div {
  display: grid;
  gap: 22px;
  align-content: center;
}

.thread-case-v3 .journal-button-primary {
  width: max-content;
  background: var(--accent);
  color: #fff;
}

@media (max-width: 980px) {
  .case-showcase-copy,
  .case-snapshot-grid,
  .case-editorial-grid,
  .case-editorial-grid-reverse,
  .case-cta-grid,
  .pulse-social-grid-v3,
  .thread-product-grid-v3,
  .thread-story-deck-v3,
  .thread-final-v3 {
    grid-template-columns: 1fr;
  }

  .case-back-link,
  .case-showcase-copy .case-kicker,
  .case-showcase-copy h1,
  .case-showcase-copy > p:not(.case-kicker) {
    grid-column: auto;
    grid-row: auto;
  }

  .case-showcase-copy > p:not(.case-kicker) {
    max-width: 660px;
  }

  .pulse-system-grid-v3,
  .pulse-poster-grid-v3 {
    grid-template-columns: 1fr;
  }

  .thread-hero-spec-v3,
  .thread-story-strip-v3 {
    grid-template-columns: 1fr;
  }

  .thread-hero-spec-v3 span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .thread-hero-spec-v3 span:last-child {
    border-bottom: 0;
  }

  .case-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .case-showcase-shell,
  .thread-hero-spec-v3 {
    width: min(100% - 32px, 1360px);
  }

  .case-showcase-copy h1,
  .thread-hero-copy-v3 h1 {
    font-size: clamp(54px, 16vw, 84px);
  }

  .case-fact-grid {
    grid-template-columns: 1fr;
  }

  .case-fact-grid div,
  .case-fact-grid div:nth-child(2n) {
    padding-left: 0;
    border-right: 0;
  }

  .thread-hero-v3 {
    min-height: 720px;
  }
}

/* Case motion restoration: Pulse After Dark and Thread & Tide */
.pulse-case-v3 {
  --pulse-audio-level: 0;
  --pulse-beat-glow: 0;
}

.pulse-audio-toggle {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 80;
  display: inline-grid;
  grid-template-columns: auto 28px;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 9px 10px 9px 16px;
  border: 1px solid rgb(61 130 255 / 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgb(22 103 255 / 0.24), rgb(2 3 6 / 0.72)),
    rgb(2 3 6 / 0.76);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.12),
    0 18px 52px rgb(0 0 0 / 0.42),
    0 0 calc(18px + var(--pulse-audio-level) * 32px) rgb(22 103 255 / 0.22);
  font-family: "Segoe UI Mono", Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pulse-audio-toggle i {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid rgb(232 231 222 / 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgb(61 130 255 / 0.95) 0 18%, transparent 19%),
    conic-gradient(from 90deg, rgb(61 130 255 / 0.98), rgb(255 255 255 / 0.24), rgb(22 103 255 / 0.18), rgb(61 130 255 / 0.98));
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pulse-audio-toggle:hover,
.pulse-audio-toggle:focus-visible,
.pulse-audio-toggle[aria-pressed="true"] {
  border-color: rgb(61 130 255 / 0.72);
  background:
    linear-gradient(135deg, rgb(22 103 255 / 0.32), rgb(2 3 6 / 0.82)),
    rgb(2 3 6 / 0.86);
  outline: none;
  transform: translateY(-2px);
}

.pulse-audio-toggle[aria-pressed="true"] i {
  opacity: 1;
  box-shadow: 0 0 22px rgb(61 130 255 / 0.76);
  transform: scale(calc(1 + var(--pulse-beat-glow) * 0.18));
}

.pulse-audio-toggle.needs-tap {
  border-color: rgb(255 255 255 / 0.46);
}

.pulse-hero-cover-v3 {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 58px) 24px 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(22 103 255 / 0.12), transparent 36%),
    radial-gradient(circle at 72% 30%, rgb(22 103 255 / 0.18), transparent 32%),
    #020306;
}

.pulse-hero-cover-v3::before,
.pulse-opening-v3::before,
.pulse-social-section-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgb(61 130 255 / 0.1) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 0.035) 0 1px, transparent 1px 18px);
  opacity: 0.24;
  mix-blend-mode: screen;
}

.pulse-hero-shell-v3 {
  position: relative;
  z-index: 1;
  width: min(1760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgb(61 130 255 / 0.28);
  border-radius: 8px;
  background: #010205;
  box-shadow:
    0 28px 90px rgb(0 0 0 / 0.5),
    0 0 70px rgb(22 103 255 / 0.2);
}

.pulse-hero-shell-v3 img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
}

.pulse-scanline-v3 {
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgb(92 151 255 / 0.28), transparent);
  transform: skewX(-10deg);
  mix-blend-mode: screen;
  animation: pulseSignalSweepV3 5.2s linear infinite;
}

.pulse-opening-v3 {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(22 103 255 / 0.13), transparent 42%),
    linear-gradient(180deg, #05070c, #020306);
}

.pulse-opening-grid-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}

.pulse-opening-copy-v3 h1 {
  margin: 12px 0 0;
  max-width: 12em;
  color: var(--ink);
  font-size: clamp(48px, 7.4vw, 126px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  font-weight: 760;
}

.pulse-event-card-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgb(61 130 255 / 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0%, rgb(61 130 255 / 0.24), transparent 28%),
    rgb(6 9 16 / 0.78);
  box-shadow: 0 30px 78px rgb(0 0 0 / 0.42);
}

.pulse-event-card-v3 span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-event-card-v3 strong {
  color: var(--accent-dark);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.pulse-meta-band-v3 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.pulse-meta-band-v3 span {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 20px clamp(18px, 3vw, 34px);
  background: #070a11;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.pulse-meta-band-v3 strong {
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pulse-poster-triptych-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
  align-items: start;
}

.pulse-poster-triptych-v3::before {
  content: "";
  position: absolute;
  inset: 9% -4% auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgb(22 103 255 / 0.72), rgb(244 245 240 / 0.26), transparent);
  box-shadow: 0 0 46px rgb(22 103 255 / 0.34);
  opacity: 0.7;
}

.pulse-poster-card-v3 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(244 245 240 / 0.16);
  border-radius: 8px;
  background: #020306;
  box-shadow:
    0 32px 76px rgb(0 0 0 / 0.56),
    0 0 0 1px rgb(22 103 255 / 0.12);
  transform: translateZ(0);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.pulse-poster-card-v3 img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1086 / 1448;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08);
  transform: scale(1.002);
  transition:
    filter 260ms ease,
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.pulse-poster-card-v3::before,
.pulse-poster-card-v3::after {
  content: "";
  position: absolute;
  inset: 0 0 52px;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.pulse-poster-card-v3 figcaption {
  position: relative;
  z-index: 3;
  min-height: 52px;
  padding: 12px 14px 13px;
  border-top: 1px solid rgb(244 245 240 / 0.1);
  background:
    linear-gradient(90deg, rgb(22 103 255 / 0.12), transparent 38%),
    rgb(2 3 6 / 0.96);
  color: rgb(244 245 240 / 0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.poster-card-announce-v3::before {
  background:
    repeating-linear-gradient(90deg, rgb(61 130 255 / 0.14) 0 1px, transparent 1px 44px),
    linear-gradient(90deg, transparent 0 18%, rgb(61 130 255 / 0.18) 45%, rgb(255 255 255 / 0.26) 50%, rgb(61 130 255 / 0.2) 56%, transparent 84%);
  opacity: 0.28;
  animation: pulsePosterGridDriftV3 8s linear infinite;
}

.poster-card-announce-v3::after {
  top: 46%;
  right: -16%;
  bottom: auto;
  left: -16%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(49 122 255 / 0.26), rgb(255 255 255 / 0.9), rgb(49 122 255 / 0.3), transparent);
  box-shadow:
    0 0 22px rgb(22 103 255 / 0.86),
    0 0 76px rgb(22 103 255 / 0.52);
  animation: pulsePosterWaveAV3 1.75s steps(2, end) infinite;
}

.poster-card-program-v3::before {
  right: auto;
  bottom: 52px;
  left: 50%;
  width: 3.5%;
  background:
    linear-gradient(180deg, transparent, rgb(255 255 255 / 0.26) 44%, rgb(22 103 255 / 0.76) 50%, rgb(255 255 255 / 0.22) 56%, transparent),
    linear-gradient(90deg, transparent, rgb(61 130 255 / 0.54), transparent);
  box-shadow:
    0 0 24px rgb(61 130 255 / 0.64),
    0 0 70px rgb(22 103 255 / 0.34);
  opacity: 0.74;
  animation: pulsePosterBeamBV3 2.3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.poster-card-program-v3::after {
  inset: 9% 6% 58px;
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgb(61 130 255 / 0.24) 16px 17px, transparent 17px 34px),
    repeating-linear-gradient(0deg, transparent 0 5px, rgb(255 255 255 / 0.08) 5px 6px, transparent 6px 14px),
    radial-gradient(circle at 48% 52%, rgb(61 130 255 / 0.24), transparent 44%);
  opacity: 0.48;
  animation: pulsePosterMatrixBV3 3.8s linear infinite;
}

.poster-card-tickets-v3::before {
  inset: 7% 6% 64px;
  border: 1px solid rgb(61 130 255 / 0.36);
  box-shadow:
    inset 0 0 28px rgb(61 130 255 / 0.18),
    0 0 38px rgb(61 130 255 / 0.22);
  animation: pulsePosterEdgeCV3 1.3s steps(2, end) infinite;
}

.poster-card-tickets-v3::after {
  right: -20%;
  top: 24%;
  bottom: auto;
  left: auto;
  width: 54%;
  height: 46%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgb(255 255 255 / 0.34) 0 4%, rgb(61 130 255 / 0.78) 5% 10%, transparent 52%),
    conic-gradient(from 220deg, transparent, rgb(61 130 255 / 0.58), transparent 34%);
  opacity: 0.76;
  filter: blur(1px);
  animation: pulsePosterTicketCV3 2.05s ease-in-out infinite;
}

.pulse-social-pair-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pulse-asset-frame-v3 {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(244 245 240 / 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(22 103 255 / 0.14), transparent 42%),
    #05070d;
  box-shadow:
    0 30px 80px rgb(0 0 0 / 0.45),
    0 0 42px rgb(22 103 255 / 0.12);
}

.pulse-asset-frame-v3 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pulse-asset-frame-v3 figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 6px;
  background: rgb(2 3 6 / 0.72);
  color: rgb(244 245 240 / 0.76);
  font-size: 0.86rem;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.pulse-materials-grid-v3 {
  display: grid;
  grid-template-columns: minmax(320px, 0.54fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.pulse-proof-list-v3 {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.pulse-proof-list-v3 li {
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgb(255 255 255 / 0.045);
  color: var(--muted);
}

.pulse-material-frame-v3 img {
  aspect-ratio: 1448 / 1086;
  object-fit: cover;
}

@media (hover: hover) {
  .pulse-poster-card-v3:hover,
  .pulse-poster-card-v3:focus-within {
    border-color: rgb(61 130 255 / 0.72);
    box-shadow:
      0 38px 92px rgb(0 0 0 / 0.62),
      0 0 74px rgb(22 103 255 / 0.26);
    transform: translateY(-6px);
  }

  .pulse-poster-card-v3:hover img,
  .pulse-poster-card-v3:focus-within img {
    filter: contrast(1.12) saturate(1.16);
    transform: scale(1.026);
  }
}

.thread-feed-stage-v3 {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  background:
    radial-gradient(circle at 88% 6%, rgb(44 125 255 / 0.18), transparent 24%),
    linear-gradient(145deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.015)),
    #040609;
}

.thread-feed-stage-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgb(255 255 255 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.thread-social-label-v3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  color: rgb(255 255 255 / 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thread-social-label-v3 span {
  color: var(--accent);
}

.thread-social-label-v3 strong {
  color: #fff;
}

.thread-social-label-v3 em {
  margin-left: auto;
  color: rgb(255 255 255 / 0.48);
  font-style: normal;
}

.thread-feed-wall-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.thread-feed-wall-v3 figure {
  min-width: 0;
}

.thread-post-card-v3 {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: #05070a;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.28);
}

.thread-post-card-v3 img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.thread-post-card-v3 figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
  color: rgb(255 255 255 / 0.78);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgb(0 0 0 / 0.8);
}

.thread-post-card-v3 figcaption span {
  color: var(--accent);
}

.thread-story-deck-v3 {
  position: relative;
  grid-template-columns: minmax(220px, 0.27fr) minmax(0, 0.73fr);
  gap: 22px;
  align-items: end;
  padding: 22px;
  overflow: hidden;
  border-color: rgb(44 125 255 / 0.2);
  background:
    radial-gradient(circle at 70% 12%, rgb(44 125 255 / 0.2), transparent 32%),
    linear-gradient(145deg, rgb(44 125 255 / 0.12), rgb(255 255 255 / 0.025)),
    #05070a;
}

.thread-story-deck-v3::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -1px;
  left: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(44 125 255 / 0.9), transparent);
  box-shadow: 0 0 34px rgb(44 125 255 / 0.5);
}

.thread-story-copy-v3 {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0 0 20px;
}

.thread-story-copy-v3 p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.thread-story-copy-v3 strong {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.05;
}

.thread-story-card-v3 {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  background: #020306;
  box-shadow: 0 24px 68px rgb(0 0 0 / 0.34);
}

.thread-story-card-v3:nth-child(2) {
  transform: translateY(-26px);
}

.thread-story-card-v3:nth-child(3) {
  transform: translateY(-52px);
}

.thread-story-card-v3 img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 494 / 910;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

@media (hover: hover) {
  .thread-post-card-v3:hover img {
    transform: scale(1.045);
    filter: saturate(1.02) contrast(1.08);
  }
}

@keyframes pulseSignalSweepV3 {
  0% {
    translate: 0 0;
    opacity: 0;
  }

  10%,
  72% {
    opacity: 1;
  }

  100% {
    translate: 390% 0;
    opacity: 0;
  }
}

@keyframes pulsePosterGridDriftV3 {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 96px 0, 0 42px;
  }
}

@keyframes pulsePosterWaveAV3 {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.82);
  }

  48% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

@keyframes pulsePosterBeamBV3 {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(-8%) scaleY(0.74);
  }

  48% {
    opacity: 1;
    transform: translateY(8%) scaleY(1.16);
  }
}

@keyframes pulsePosterMatrixBV3 {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 0, 0 0;
  }
}

@keyframes pulsePosterEdgeCV3 {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.992);
  }

  50% {
    opacity: 0.94;
    transform: scale(1.006);
  }
}

@keyframes pulsePosterTicketCV3 {
  0%,
  100% {
    opacity: 0.28;
    transform: rotate(-8deg) scale(0.9);
  }

  52% {
    opacity: 0.86;
    transform: rotate(2deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-scanline-v3,
  .pulse-poster-card-v3::before,
  .pulse-poster-card-v3::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .pulse-opening-grid-v3,
  .pulse-materials-grid-v3,
  .pulse-social-pair-v3,
  .thread-story-deck-v3 {
    grid-template-columns: 1fr;
  }

  .pulse-meta-band-v3,
  .pulse-poster-triptych-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thread-feed-wall-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thread-story-card-v3:nth-child(2),
  .thread-story-card-v3:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .pulse-hero-cover-v3 {
    padding-inline: 16px;
  }

  .pulse-audio-toggle {
    right: 16px;
    bottom: 16px;
  }

  .pulse-audio-toggle span {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pulse-meta-band-v3,
  .pulse-poster-triptych-v3,
  .thread-feed-wall-v3,
  .thread-story-strip-v3 {
    grid-template-columns: 1fr;
  }

  .pulse-opening-copy-v3 h1 {
    font-size: clamp(44px, 14vw, 74px);
  }
}

/* Wide-screen correction for visual case-study pages */
.pulse-case-v3 .case-showcase-shell,
.thread-case-v3 .case-showcase-shell,
.thread-case-v3 .thread-hero-spec-v3 {
  width: min(1680px, calc(100% - clamp(40px, 6vw, 112px)));
}

.pulse-hero-shell-v3 {
  width: min(1760px, calc(100% - clamp(32px, 4vw, 80px)));
}

.pulse-materials-v3 {
  scroll-margin-top: calc(var(--nav-height) + 28px);
  padding-top: clamp(86px, 8vw, 136px);
  padding-bottom: clamp(74px, 7vw, 118px);
}

.pulse-materials-grid-v3 {
  grid-template-columns: minmax(560px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
}

.pulse-materials-v3 .case-section-header {
  padding-top: clamp(4px, 1vw, 18px);
}

.pulse-materials-v3 .case-section-header h2 {
  max-width: 9.2em;
  font-size: clamp(46px, 4.5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.pulse-materials-v3 .case-section-header > p:not(.case-kicker) {
  max-width: 620px;
}

.pulse-material-frame-v3 img {
  min-height: clamp(500px, 44vw, 720px);
}

@media (max-width: 1180px) {
  .pulse-materials-grid-v3 {
    grid-template-columns: minmax(420px, 0.72fr) minmax(0, 1fr);
  }

  .pulse-materials-v3 .case-section-header h2 {
    font-size: clamp(42px, 5.4vw, 64px);
  }
}

@media (max-width: 980px) {
  .pulse-case-v3 .case-showcase-shell,
  .thread-case-v3 .case-showcase-shell,
  .thread-case-v3 .thread-hero-spec-v3 {
    width: min(100% - 40px, 1680px);
  }

  .pulse-materials-grid-v3 {
    grid-template-columns: 1fr;
  }

  .pulse-material-frame-v3 img {
    min-height: 0;
  }
}

/* Unified intake form cards */
.book-fix-v3 .fix-intake-hero .fix-hero-grid {
  width: min(1540px, calc(100% - clamp(72px, 8vw, 184px)));
  min-height: calc(100dvh - var(--nav-height));
  grid-template-columns: minmax(520px, 0.94fr) minmax(600px, 0.86fr);
  justify-content: space-between;
  gap: clamp(64px, 6.8vw, 124px);
  align-items: start;
  padding-top: clamp(72px, 8vh, 108px);
  padding-bottom: clamp(76px, 8vh, 116px);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.book-fix-v3 .fix-intake-panel {
  align-self: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.book-fix-v3 .fix-intake-hero .page-v3-copy {
  max-width: none;
  padding: clamp(8px, 1.8vw, 26px) 0 0 clamp(42px, 4.4vw, 72px);
}

.book-fix-v3 .fix-intake-hero .page-v3-copy h1 {
  max-width: 9.5em;
  margin-bottom: clamp(24px, 2.8vw, 36px);
  font-size: clamp(54px, 4.15vw, 78px);
  line-height: 1;
  letter-spacing: -0.036em;
  text-wrap: balance;
}

.book-fix-v3 .fix-intake-hero .page-v3-copy > p:not(.page-label) {
  max-width: 520px;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.24;
  letter-spacing: -0.018em;
}

.book-fix-v3 .book-fix-studio-visual {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 1.32;
  margin: clamp(34px, 5vh, 60px) 0 0;
  overflow: hidden;
  border: 1px solid rgb(10 10 10 / 0.14);
  border-radius: 16px;
  background: rgb(247 247 244 / 0.82);
  box-shadow: 0 24px 70px rgb(10 10 10 / 0.07);
}

.book-fix-v3 .book-fix-studio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.book-fix-v3 .book-fix-studio-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 43%;
  filter: saturate(0.92) contrast(1.04);
}

.book-fix-v3 .fix-payment-note {
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-fix-v3 .fix-payment-note div {
  min-height: 92px;
  gap: 14px;
  padding: 17px 18px 16px;
}

.book-fix-v3 .fix-payment-note div:nth-child(2n) {
  border-right: 0;
}

.book-fix-v3 .fix-payment-note div:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.book-fix-v3 .fix-payment-note strong {
  max-width: 13em;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.08;
  text-wrap: balance;
}

.start-v3 .form-layout-v3 {
  grid-template-columns: minmax(520px, 760px) minmax(280px, 360px);
  justify-content: center;
  gap: clamp(30px, 4.5vw, 64px);
}

.book-fix-v3 .project-form-v3,
.start-v3 .project-form-v3 {
  width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgb(10 10 10 / 0.14);
  border-radius: 16px;
  background: rgb(255 255 252 / 0.92);
  box-shadow: 0 24px 80px rgb(10 10 10 / 0.045);
}

.book-fix-v3 .project-form-v3 {
  max-width: 640px;
  padding: clamp(28px, 3.2vw, 40px);
}

.start-v3 .project-form-v3 {
  max-width: 760px;
}

.book-fix-v3 .fix-form-head {
  gap: 10px;
  padding-bottom: clamp(18px, 2.4vw, 28px);
}

.book-fix-v3 .fix-form-head h2 {
  max-width: 11em;
  font-size: clamp(34px, 2.75vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.book-fix-v3 .fix-form-head p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.45;
}

.start-v3 .brief-intro-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 30px);
  border: 0;
  background: transparent;
}

.start-v3 .brief-intro-strip div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgb(10 10 10 / 0.1);
  border-radius: 12px;
  background: rgb(247 247 244 / 0.72);
}

.start-v3 .brief-intro-strip div:last-child {
  border-right: 1px solid rgb(10 10 10 / 0.1);
}

.start-v3 .brief-intro-strip strong {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.08;
}

.book-fix-v3 .project-form-v3 .field-grid,
.start-v3 .project-form-v3 .field-grid {
  gap: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 20px);
  border: 0;
  background: transparent;
}

.book-fix-v3 .project-form-v3 .fix-field-grid,
.start-v3 .project-form-v3 .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-fix-v3 .project-form-v3 .field,
.start-v3 .project-form-v3 .field {
  gap: 8px;
  padding: 0;
  background: transparent;
}

.book-fix-v3 .project-form-v3 label,
.start-v3 .project-form-v3 label {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 720;
}

.book-fix-v3 .project-form-v3 input,
.book-fix-v3 .project-form-v3 textarea,
.book-fix-v3 .project-form-v3 select,
.start-v3 .project-form-v3 input,
.start-v3 .project-form-v3 textarea,
.start-v3 .project-form-v3 select {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgb(10 10 10 / 0.14);
  border-radius: 9px;
  background: rgb(255 255 255 / 0.72);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.68);
}

.book-fix-v3 .project-form-v3 input,
.book-fix-v3 .project-form-v3 select {
  min-height: 48px;
}

.book-fix-v3 .project-form-v3 textarea,
.start-v3 .project-form-v3 textarea {
  min-height: 112px;
}

.book-fix-v3 .project-form-v3 textarea {
  min-height: 96px;
}

.book-fix-v3 .project-form-v3 input::placeholder,
.book-fix-v3 .project-form-v3 textarea::placeholder,
.start-v3 .project-form-v3 input::placeholder,
.start-v3 .project-form-v3 textarea::placeholder {
  color: rgb(25 28 35 / 0.48);
}

.book-fix-v3 .project-form-v3 input:focus,
.book-fix-v3 .project-form-v3 select:focus,
.book-fix-v3 .project-form-v3 textarea:focus,
.start-v3 .project-form-v3 input:focus,
.start-v3 .project-form-v3 select:focus,
.start-v3 .project-form-v3 textarea:focus {
  border-color: rgb(24 70 242 / 0.62);
  outline: 3px solid rgb(24 70 242 / 0.12);
  outline-offset: 1px;
  background: #ffffff;
}

.book-fix-v3 .project-form-v3 .field-help,
.start-v3 .project-form-v3 .field-help {
  max-width: 62ch;
  margin-top: 0;
  color: rgb(25 28 35 / 0.56);
  font-size: 12px;
  line-height: 1.4;
}

.book-fix-v3 .project-form-v3 .file-picker,
.start-v3 .project-form-v3 .file-picker {
  min-height: 50px;
  overflow: hidden;
  border: 1px solid rgb(10 10 10 / 0.14);
  border-radius: 9px;
  background: rgb(255 255 255 / 0.72);
}

.book-fix-v3 .project-form-v3 .file-picker span,
.start-v3 .project-form-v3 .file-picker span {
  min-height: 50px;
  border-right: 1px solid rgb(10 10 10 / 0.12);
  background: rgb(247 247 244 / 0.82);
}

.book-fix-v3 .project-form-v3 .file-picker strong,
.start-v3 .project-form-v3 .file-picker strong {
  min-height: 50px;
}

.book-fix-v3 .project-form-v3 .form-status,
.start-v3 .project-form-v3 .form-status {
  margin-top: clamp(16px, 2vw, 22px);
  border-radius: 10px;
}

.book-fix-v3 .project-form-v3 .small-copy,
.start-v3 .project-form-v3 .small-copy {
  max-width: 58ch;
  margin: clamp(16px, 2vw, 22px) 0 0;
  color: rgb(25 28 35 / 0.58);
}

.book-fix-v3 .project-form-v3 .journal-button,
.start-v3 .project-form-v3 .journal-button {
  width: 100%;
  min-height: 52px;
  justify-self: stretch;
  margin-top: clamp(18px, 2.5vw, 26px);
  border-color: var(--ink);
  border-radius: 9px;
  background: var(--ink);
  color: var(--paper);
}

.book-fix-v3 .project-form-v3 .journal-button:hover,
.book-fix-v3 .project-form-v3 .journal-button:focus-visible,
.start-v3 .project-form-v3 .journal-button:hover,
.start-v3 .project-form-v3 .journal-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .book-fix-v3 .fix-intake-hero .fix-hero-grid,
  .start-v3 .form-layout-v3 {
    grid-template-columns: 1fr;
  }

  .book-fix-v3 .fix-intake-hero .fix-hero-grid {
    width: min(100% - 48px, 920px);
    min-height: auto;
    gap: 42px;
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .book-fix-v3 .fix-intake-hero .page-v3-copy {
    padding-left: 0;
  }

  .book-fix-v3 .book-fix-studio-visual {
    display: none;
  }

  .book-fix-v3 .project-form-v3,
  .start-v3 .project-form-v3 {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .book-fix-v3 .fix-intake-hero .fix-hero-grid {
    width: min(100% - 28px, 920px);
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .book-fix-v3 .fix-intake-panel {
    order: 2;
  }

  .book-fix-v3 .fix-intake-hero .page-v3-copy {
    order: 1;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .book-fix-v3 .fix-intake-hero .page-v3-copy h1 {
    max-width: 8.4em;
    font-size: clamp(44px, 11.5vw, 58px);
    line-height: 1.02;
  }

  .book-fix-v3 .project-form-v3,
  .start-v3 .project-form-v3 {
    padding: 24px;
    border-radius: 14px;
  }

  .book-fix-v3 .project-form-v3 .fix-field-grid,
  .start-v3 .project-form-v3 .field-grid,
  .start-v3 .brief-intro-strip {
    grid-template-columns: 1fr;
  }

  .start-v3 .brief-intro-strip div,
  .start-v3 .brief-intro-strip div:last-child {
    min-height: auto;
    border-right: 1px solid rgb(10 10 10 / 0.1);
    border-bottom: 1px solid rgb(10 10 10 / 0.1);
  }

  .book-fix-v3 .project-form-v3 .file-picker,
  .start-v3 .project-form-v3 .file-picker {
    grid-template-columns: 1fr;
  }

  .book-fix-v3 .project-form-v3 .file-picker span,
  .start-v3 .project-form-v3 .file-picker span {
    border-right: 0;
    border-bottom: 1px solid rgb(10 10 10 / 0.12);
  }
}

/* Final shared CTA spacing lock */
body.home-v3 .journal-cta {
  padding-block: clamp(54px, 7vw, 92px);
}

body.home-v3 .journal-cta .journal-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(230px, 0.32fr);
  gap: clamp(38px, 5vw, 88px);
  align-items: center;
  padding: clamp(42px, 5vw, 68px);
}

body.home-v3 .journal-cta .journal-cta-grid > div:first-child {
  min-width: 0;
  max-width: 920px;
  display: grid;
  gap: clamp(20px, 2vw, 30px);
}

body.home-v3 .journal-cta .journal-kicker {
  margin: 0;
}

body.home-v3 .journal-cta h2,
body.home-v3:not(.page-v3) .journal-cta h2 {
  max-width: 12.4em;
  margin: 0;
  color: rgb(247 247 244 / 0.98);
  font-size: clamp(36px, 3.1vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.054em;
  text-wrap: balance;
}

body.home-v3 .journal-cta .journal-cta-grid > div:first-child > p:not(.journal-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgb(225 230 245 / 0.76);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.5;
}

body.home-v3 .journal-cta .journal-actions,
body.home-v3 .journal-cta .work-cta-actions {
  justify-self: end;
  justify-content: flex-end;
  align-self: center;
  gap: 18px 24px;
}

body.home-v3 .journal-cta .journal-cta-grid > .journal-button,
body.home-v3 .journal-cta .journal-cta-grid > .journal-link {
  justify-self: end;
  align-self: center;
}

body.home-v3 .journal-cta .journal-button,
body.home-v3 .journal-cta .journal-link {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  body.home-v3 .journal-cta .journal-cta-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  body.home-v3 .journal-cta .journal-actions,
  body.home-v3 .journal-cta .work-cta-actions,
  body.home-v3 .journal-cta .journal-cta-grid > .journal-button,
  body.home-v3 .journal-cta .journal-cta-grid > .journal-link {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  body.home-v3 .journal-cta {
    padding-block: 48px;
  }

  body.home-v3 .journal-cta .journal-cta-grid {
    padding: 36px 28px;
    gap: 30px;
  }

  body.home-v3 .journal-cta .journal-cta-grid > div:first-child {
    gap: 18px;
  }

  body.home-v3 .journal-cta h2,
  body.home-v3:not(.page-v3) .journal-cta h2 {
    max-width: 11.2em;
    font-size: clamp(32px, 6.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.048em;
  }

  body.home-v3 .journal-cta .journal-cta-grid > div:first-child > p:not(.journal-kicker) {
    max-width: 54ch;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 520px) {
  body.home-v3 .journal-cta .journal-cta-grid {
    padding: 30px 22px;
  }

  body.home-v3 .journal-cta h2,
  body.home-v3:not(.page-v3) .journal-cta h2 {
    font-size: clamp(30px, 9.2vw, 38px);
  }
}

/* Legibility pass for small editorial labels */
.fix-payment-note span,
.case-overview-strip span,
.case-list-v3.principle-fold-stack .case-details span,
.case-list-v3.principle-fold-stack .service-proof-grid span,
.compare-labels {
  font-size: clamp(14px, 0.85vw, 15px);
  line-height: 1.15;
  font-weight: 820;
}

.fix-payment-note span,
.case-overview-strip span,
.case-list-v3.principle-fold-stack .case-details span,
.case-list-v3.principle-fold-stack .service-proof-grid span {
  letter-spacing: 0.01em;
}

.case-overview-strip div {
  grid-template-columns: minmax(76px, 0.22fr) minmax(0, 1fr);
}

.case-overview-strip span {
  max-width: 9ch;
}

.compare-labels {
  padding-top: 6px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.case-list-v3.principle-fold-stack .pill {
  min-height: 34px;
  padding: 0 13px;
  color: var(--ink-soft);
  font-size: clamp(14px, 0.85vw, 15px);
  line-height: 1.1;
}

@media (max-width: 720px) {
  .fix-payment-note span,
  .case-overview-strip span,
  .case-list-v3.principle-fold-stack .case-details span,
  .case-list-v3.principle-fold-stack .service-proof-grid span,
  .compare-labels {
    font-size: 13.5px;
  }

  .case-overview-strip div {
    grid-template-columns: minmax(74px, 0.24fr) minmax(0, 1fr);
  }
}

/* Typography spacing pass: loosen oversized display type without changing layout */
.journal-hero-title,
.journal-section-copy h2,
.page-v3-copy h1,
.page-v3-copy h2,
.page-v3-heading h2,
.plain-panel h2,
.plain-panel h3,
.featured-case-copy h3,
.case-copy h3,
.fix-form-head h2,
.fix-summary-card h3,
.service-index h2,
.work-proof-hero .page-v3-copy h1,
.work-proof-heading h2,
.case-section-header h2,
.case-intro-v3 h1,
.case-result-card h2,
.case-related h2 {
  letter-spacing: -0.024em;
  word-spacing: 0.018em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.journal-cta h2,
body.home-v3 .journal-cta h2,
body.home-v3:not(.page-v3) .journal-cta h2 {
  line-height: 1.12;
  letter-spacing: -0.014em;
  word-spacing: 0.055em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.pulse-hero-title-v3,
.thread-hero-title-v3,
.sana-hero-title-v3 {
  letter-spacing: -0.032em;
  word-spacing: 0.02em;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

.journal-cta p,
.page-v3-copy > p:not(.page-label):not(.journal-kicker),
.plain-panel p,
.case-copy p,
.featured-case-copy p {
  letter-spacing: -0.006em;
  word-spacing: 0.012em;
}

@media (max-width: 820px) {
  .journal-hero-title,
  .journal-section-copy h2,
  .page-v3-copy h1,
  .page-v3-copy h2,
  .page-v3-heading h2,
  .plain-panel h2,
  .plain-panel h3,
  .featured-case-copy h3,
  .case-copy h3,
  .fix-form-head h2,
  .fix-summary-card h3,
  .service-index h2,
  .work-proof-hero .page-v3-copy h1,
  .work-proof-heading h2,
  .case-section-header h2,
  .case-intro-v3 h1,
  .case-result-card h2,
  .case-related h2,
  .journal-cta h2,
  body.home-v3 .journal-cta h2,
  body.home-v3:not(.page-v3) .journal-cta h2 {
    letter-spacing: -0.012em;
    word-spacing: 0.035em;
  }
}

/* Final display tracking guardrail */
body .journal-hero-copy h1,
body .journal-hero-title,
body .journal-offer-card h2,
body .journal-section-copy h2,
body .fix-fold-copy h2,
body .fix-fold-panel-copy h3,
body .fix-fold-diagnosis-sheet h3,
body .page-v3-copy h1,
body .page-v3-copy h2,
body .page-v3-heading h2,
body .page-v3-panel h2,
body .plain-panel h2,
body .plain-panel h3,
body .service-path-list h3,
body .service-index h2,
body .studio-system-copy h2,
body .start-offer-copy h2,
body .fix-form-head h2,
body .fix-summary-card h3,
body .fix-overview-panel h2,
body .fix-scope-panel h3,
body .featured-case-copy h3,
body .case-copy h3,
body .work-proof-heading h2,
body .case-section-header h2,
body .case-intro-v3 h1,
body .case-result-card h2,
body .case-related h2,
body .case-showcase-shell h2,
body .case-snapshot-grid h2,
body .case-cta-grid h2,
body .sana-section-header h2,
body .sana-snapshot-grid h2,
body .sana-cta-grid h2,
body .thread-final-v3 h2 {
  letter-spacing: -0.024em !important;
  word-spacing: 0.018em !important;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body .journal-cta h2,
body.home-v3 .journal-cta h2,
body.home-v3:not(.page-v3) .journal-cta h2 {
  line-height: 1.12 !important;
  letter-spacing: -0.014em !important;
  word-spacing: 0.055em !important;
}

body .pulse-opening-copy-v3 h1,
body .pulse-hero-title-v3,
body .sana-case-hero-copy h1,
body .sana-hero-title-v3,
body .thread-hero-copy-v3 h1,
body .thread-hero-title-v3 {
  letter-spacing: -0.032em !important;
  word-spacing: 0.022em !important;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

@media (max-width: 820px) {
  body .journal-hero-copy h1,
  body .journal-hero-title,
  body .journal-offer-card h2,
  body .journal-section-copy h2,
  body .fix-fold-copy h2,
  body .fix-fold-panel-copy h3,
  body .fix-fold-diagnosis-sheet h3,
  body .page-v3-copy h1,
  body .page-v3-copy h2,
  body .page-v3-heading h2,
  body .page-v3-panel h2,
  body .plain-panel h2,
  body .plain-panel h3,
  body .service-path-list h3,
  body .service-index h2,
  body .studio-system-copy h2,
  body .start-offer-copy h2,
  body .fix-form-head h2,
  body .fix-summary-card h3,
  body .fix-overview-panel h2,
  body .fix-scope-panel h3,
  body .featured-case-copy h3,
  body .case-copy h3,
  body .work-proof-heading h2,
  body .case-section-header h2,
  body .case-intro-v3 h1,
  body .case-result-card h2,
  body .case-related h2,
  body .case-showcase-shell h2,
  body .case-snapshot-grid h2,
  body .case-cta-grid h2,
  body .sana-section-header h2,
  body .sana-snapshot-grid h2,
  body .sana-cta-grid h2,
  body .thread-final-v3 h2,
  body .journal-cta h2,
  body.home-v3 .journal-cta h2,
  body.home-v3:not(.page-v3) .journal-cta h2 {
    letter-spacing: -0.012em !important;
    word-spacing: 0.03em !important;
  }
}

/* Visual Fix polish: targeted editorial refinement for the diagnostic grid and service ladder. */
.visual-fix-v3 .problem-grid-v3 {
  --problem-gap: clamp(12px, 1.2vw, 20px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--problem-gap);
  padding-top: clamp(18px, 2vw, 30px);
  border: 0;
  border-top: 1px solid var(--ink);
  background:
    linear-gradient(90deg, rgb(5 5 6 / 0.05) 1px, transparent 1px) 0 0 / calc(100% / 6) 100%,
    transparent;
}

.visual-fix-v3 .problem-grid-v3 .problem-item {
  grid-column: span 2;
  position: relative;
  min-height: clamp(188px, 17vw, 250px);
  padding: clamp(22px, 2.1vw, 34px);
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-top-color: rgb(5 5 6 / 0.62);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.78), rgb(247 247 244 / 0.58)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
  overflow: hidden;
}

.visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(2),
.visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(5) {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.58), rgb(240 241 244 / 0.78)),
    var(--accent-soft);
}

.visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(6) {
  background:
    linear-gradient(180deg, rgb(18 20 16 / 0.96), rgb(18 20 16 / 0.9)),
    var(--ink);
}

.visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(6) p {
  color: var(--surface);
}

.visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(6) small {
  color: rgb(247 247 244 / 0.72);
}

.visual-fix-v3 .problem-grid-v3 .problem-item::after {
  content: "";
  position: absolute;
  top: clamp(58px, 5vw, 76px);
  left: clamp(22px, 2.1vw, 34px);
  right: clamp(22px, 2.1vw, 34px);
  height: 1px;
  background: currentColor;
  opacity: 0.13;
}

.visual-fix-v3 .problem-grid-v3 .problem-item span {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 820;
}

.visual-fix-v3 .problem-grid-v3 .problem-item p {
  max-width: 10.8em;
  margin: clamp(44px, 4vw, 64px) 0 0;
  color: var(--ink);
  font-size: clamp(28px, 2.35vw, 44px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.visual-fix-v3 .problem-grid-v3 .problem-item small {
  display: block;
  max-width: 24ch;
  margin-top: clamp(18px, 1.8vw, 26px);
  color: var(--muted);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.38;
}

.service-tier-grid {
  gap: clamp(14px, 1.4vw, 24px);
}

.service-tier-grid .tier-group {
  position: relative;
  gap: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.74), rgb(247 247 244 / 0.52)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.72);
}

.service-tier-grid .tier-heading,
.service-tier-grid .tier-card {
  border: 0;
  border-radius: 0;
}

.service-tier-grid .tier-heading {
  position: relative;
  min-height: clamp(178px, 14vw, 224px);
  display: grid;
  align-content: end;
  padding: clamp(24px, 2.25vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgb(64 89 199 / 0.24), transparent 34%),
    linear-gradient(145deg, #050506, #111317 58%, #171913);
  color: var(--surface);
  overflow: hidden;
}

.service-tier-grid .tier-heading::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgb(247 247 244 / 0.14);
  pointer-events: none;
}

.service-tier-grid .tier-heading .tag {
  position: relative;
  color: rgb(247 247 244 / 0.68);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: 760;
}

.service-tier-grid .tier-heading h3 {
  position: relative;
  max-width: 11em;
  margin: 16px 0 0;
  color: var(--surface);
  font-size: clamp(34px, 2.6vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.service-tier-grid .tier-heading p,
.decision-tier-grid .tier-heading p {
  position: relative;
  max-width: 27ch;
  margin: 14px 0 0;
  color: rgb(247 247 244 / 0.72);
  font-size: 14px;
  line-height: 1.42;
}

.service-tier-grid .tier-card {
  min-height: clamp(142px, 11vw, 170px);
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(20px, 1.7vw, 28px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(64 89 199 / 0.08) 0 2px, transparent 2px),
    transparent;
}

.service-tier-grid .tier-card strong {
  color: var(--ink);
  font-size: clamp(21px, 1.45vw, 28px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-tier-grid .tier-card span {
  justify-self: start;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 820;
}

.service-tier-grid .tier-card p {
  max-width: 32ch;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

@media (hover: hover) {
  .visual-fix-v3 .problem-grid-v3 .problem-item,
  .service-tier-grid .tier-group {
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item:hover,
  .service-tier-grid .tier-group:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 20px 54px rgb(5 5 6 / 0.08), inset 0 1px 0 rgb(255 255 255 / 0.72);
  }
}

@media (max-width: 1180px) {
  .visual-fix-v3 .problem-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: transparent;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .visual-fix-v3 .problem-grid-v3 {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item,
  .visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(3n) {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: auto;
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
    background: transparent;
    box-shadow: none;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item::after {
    display: none;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item p {
    margin: 0;
    font-size: 22px;
    line-height: 1;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item small {
    grid-column: 2;
    margin-top: 8px;
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(6) p {
    color: var(--ink);
  }

  .visual-fix-v3 .problem-grid-v3 .problem-item:nth-child(6) small {
    color: var(--muted);
  }

  .service-tier-grid .tier-heading {
    min-height: auto;
  }

  .service-tier-grid .tier-heading::before {
    inset: 10px;
  }

  .service-tier-grid .tier-card {
    min-height: auto;
  }
}

/* Visible commercial-system upgrade: clearer buying paths and work depth. */
.commercial-path-section {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 244, 0.98)),
    var(--paper);
}

.commercial-path-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 42px);
}

.commercial-path-heading h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.commercial-path-heading p {
  margin: 0;
  max-width: 42ch;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.42;
}

.commercial-path-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.commercial-path-card,
.work-routing-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: clamp(250px, 30vw, 400px);
  padding: clamp(22px, 3.4vw, 44px);
  color: #050505;
  text-decoration: none;
  overflow: hidden;
}

.commercial-path-card + .commercial-path-card {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.commercial-path-card::after,
.work-routing-card::after {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  width: clamp(48px, 9vw, 120px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 999px 999px 0 0;
  opacity: 0.13;
  transform: translateY(34%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

.commercial-path-card-primary,
.work-routing-card-primary {
  background: #050505;
  color: #f7f7f2;
}

.commercial-path-card-primary::before,
.work-routing-card-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 70, 242, 0.28), transparent 38%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 28%);
  opacity: 0.88;
  pointer-events: none;
}

.commercial-path-index,
.commercial-path-label,
.work-routing-card span,
.commercial-path-card em,
.work-routing-card em {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-path-index {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(20px, 3vw, 40px);
  color: currentColor;
  opacity: 0.26;
  font-size: clamp(3.6rem, 9vw, 9rem);
  letter-spacing: -0.1em;
}

.commercial-path-label {
  color: #1846f2;
}

.commercial-path-card-primary .commercial-path-label {
  color: #f7f7f2;
  opacity: 0.68;
}

.commercial-path-card strong,
.work-routing-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 13ch;
  margin-top: clamp(42px, 8vw, 108px);
  font-size: clamp(2.15rem, 5vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.commercial-path-card small,
.work-routing-card small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 46ch;
  margin-top: clamp(18px, 2.4vw, 30px);
  color: currentColor;
  opacity: 0.62;
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.42;
}

.commercial-path-card em,
.work-routing-card em {
  z-index: 1;
  width: fit-content;
  margin-top: clamp(28px, 4vw, 54px);
  padding-bottom: 0.34rem;
  border-bottom: 1px solid currentColor;
  font-style: normal;
}

@media (hover: hover) {
  .commercial-path-card:hover::after,
  .commercial-path-card:focus-visible::after,
  .work-routing-card:hover::after,
  .work-routing-card:focus-visible::after {
    opacity: 0.28;
    transform: translateY(18%);
  }
}

.work-routing-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  margin: clamp(22px, 3vw, 40px) 0 clamp(20px, 3vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
}

.work-routing-card {
  min-height: clamp(210px, 22vw, 310px);
}

.work-routing-card + .work-routing-card {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.work-routing-card span {
  color: #1846f2;
}

.work-routing-card-primary span {
  color: #f7f7f2;
  opacity: 0.72;
}

.work-routing-card strong {
  max-width: 12ch;
  margin-top: clamp(34px, 5vw, 72px);
  font-size: clamp(1.9rem, 3.2vw, 3.9rem);
}

.work-routing-card small {
  font-size: clamp(0.92rem, 1.05vw, 1.04rem);
}

@media (max-width: 900px) {
  .commercial-path-heading,
  .commercial-path-grid,
  .work-routing-grid {
    grid-template-columns: 1fr;
  }

  .commercial-path-card + .commercial-path-card,
  .work-routing-card + .work-routing-card {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
  }

  .commercial-path-card,
  .work-routing-card {
    min-height: 250px;
  }
}

/* Second visible upgrade: decision clarity and case proof bands. */
.service-decision-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 244, 0.9), rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.service-decision-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 42px);
}

.service-decision-head h2 {
  margin: 0;
  max-width: 930px;
  font-size: clamp(2.65rem, 5.6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.service-decision-head p {
  margin: 0;
  max-width: 44ch;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.42;
}

.service-decision-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
}

.service-decision-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: clamp(250px, 25vw, 360px);
  padding: clamp(24px, 3.5vw, 46px);
  color: #050505;
  text-decoration: none;
  overflow: hidden;
}

.service-decision-card + .service-decision-card {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.service-decision-card::after {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  width: clamp(58px, 10vw, 128px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 999px 999px 0 0;
  opacity: 0.12;
  transform: translateY(30%);
  pointer-events: none;
}

.service-decision-card-dark {
  color: #f7f7f2;
  background:
    linear-gradient(120deg, rgba(24, 70, 242, 0.26), transparent 40%),
    #050505;
}

.service-decision-card span,
.brief-route-panel span,
.fix-route-note span,
.case-proof-band-v4 span {
  display: block;
  color: #1846f2;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.service-decision-card-dark span {
  color: rgba(247, 247, 242, 0.72);
}

.service-decision-card strong {
  display: block;
  max-width: 12ch;
  margin-top: clamp(48px, 7vw, 88px);
  font-size: clamp(2rem, 4.4vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.service-decision-card small {
  display: block;
  max-width: 46ch;
  margin-top: clamp(18px, 2.4vw, 30px);
  color: currentColor;
  opacity: 0.62;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.45;
}

.service-decision-card em {
  width: fit-content;
  margin-top: clamp(28px, 4vw, 52px);
  padding-bottom: 0.34rem;
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brief-route-panel,
.fix-route-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  margin-bottom: clamp(18px, 3vw, 30px);
  padding: clamp(18px, 2.5vw, 30px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(135deg, rgba(24, 70, 242, 0.07), transparent 46%),
    rgba(255, 255, 255, 0.82);
}

.fix-route-note {
  grid-template-columns: 1fr;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  background: rgba(246, 247, 244, 0.92);
}

.brief-route-panel strong,
.fix-route-note strong {
  display: block;
  margin-top: 0.52rem;
  max-width: 16ch;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.brief-route-panel p,
.fix-route-note p {
  margin: 0;
  max-width: 54ch;
  color: rgba(0, 0, 0, 0.62);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.45;
}

.brief-route-panel a,
.fix-route-note a {
  color: #1846f2;
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.case-proof-band-v4 {
  width: min(calc(100% - 48px), 1580px);
  margin: clamp(18px, 3.5vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 247, 244, 0.86));
  color: #050505;
}

.case-proof-band-v4 div {
  min-height: clamp(132px, 12vw, 188px);
  padding: clamp(18px, 2.4vw, 30px);
}

.case-proof-band-v4 div + div {
  border-left: 1px solid rgba(0, 0, 0, 0.14);
}

.case-proof-band-v4 strong,
.case-proof-band-v4 a {
  display: block;
  margin-top: clamp(18px, 2.6vw, 34px);
  max-width: 22ch;
  color: currentColor;
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.case-proof-band-v4 a {
  width: fit-content;
  color: #1846f2;
  font-weight: 780;
}

.pulse-case-v3 .case-proof-band-v4,
.thread-case-v3 .case-proof-band-v4 {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(24, 70, 242, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.04);
  color: #f7f7f2;
}

.pulse-case-v3 .case-proof-band-v4 div + div,
.thread-case-v3 .case-proof-band-v4 div + div {
  border-left-color: rgba(255, 255, 255, 0.14);
}

.pulse-case-v3 .case-proof-band-v4 span,
.thread-case-v3 .case-proof-band-v4 span,
.pulse-case-v3 .case-proof-band-v4 a,
.thread-case-v3 .case-proof-band-v4 a {
  color: #4f7dff;
}

@media (max-width: 1000px) {
  .service-decision-head,
  .service-decision-grid,
  .brief-route-panel {
    grid-template-columns: 1fr;
  }

  .service-decision-card + .service-decision-card {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
  }

  .case-proof-band-v4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-proof-band-v4 div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .case-proof-band-v4 div:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .pulse-case-v3 .case-proof-band-v4 div:nth-child(3),
  .thread-case-v3 .case-proof-band-v4 div:nth-child(3),
  .pulse-case-v3 .case-proof-band-v4 div:nth-child(4),
  .thread-case-v3 .case-proof-band-v4 div:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .case-proof-band-v4 {
    width: min(calc(100% - 28px), 1580px);
    grid-template-columns: 1fr;
  }

  .case-proof-band-v4 div,
  .case-proof-band-v4 div + div,
  .case-proof-band-v4 div:nth-child(3),
  .case-proof-band-v4 div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }

  .case-proof-band-v4 div:first-child {
    border-top: 0;
  }

  .pulse-case-v3 .case-proof-band-v4 div,
  .pulse-case-v3 .case-proof-band-v4 div + div,
  .thread-case-v3 .case-proof-band-v4 div,
  .thread-case-v3 .case-proof-band-v4 div + div {
    border-left: 0;
    border-top-color: rgba(255, 255, 255, 0.14);
  }
}

/* Third visible upgrade: shared case-study opening rhythm and conversion system. */
.case-study-v4 {
  --case-wide-v4: min(1680px, calc(100% - clamp(34px, 6vw, 112px)));
  --case-readable-v4: min(1480px, calc(100% - clamp(34px, 6vw, 112px)));
}

.case-study-v4 .case-showcase-shell,
.case-study-v4 .sana-case-shell,
.case-study-v4 .bloom-shell-v3,
.case-study-v4 .bloom-hero-grid-v3,
.case-study-v4 .bloom-hero-facts-v3,
.case-study-v4 .nue-meta-band,
.case-study-v4 .thread-hero-spec-v3 {
  width: var(--case-readable-v4);
}

.case-study-v4 .nue-hero-content {
  width: var(--case-wide-v4);
}

.case-study-v4 .case-proof-band-v4 {
  width: var(--case-readable-v4);
  margin-top: 0;
  border-top: 0;
}

.case-study-v4 .sana-case-hero,
.case-study-v4 .bloom-hero-v3,
.case-study-v4 .thread-hero-v3 {
  min-height: clamp(640px, calc(100dvh - var(--nav-height)), 900px);
}

.case-study-v4 .sana-case-hero,
.case-study-v4 .bloom-hero-v3 {
  display: grid;
  align-items: center;
}

.case-study-v4 .sana-case-hero {
  padding: clamp(34px, 4.6vw, 68px) 0;
}

.case-study-v4 .sana-case-hero > .sana-case-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: end;
}

.case-study-v4 .sana-case-hero-copy {
  grid-template-columns: 1fr;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.case-study-v4 .sana-back-link,
.case-study-v4 .sana-case-label,
.case-study-v4 .sana-case-hero-copy h1,
.case-study-v4 .sana-case-hero-copy > p:not(.sana-case-label) {
  grid-column: auto;
  grid-row: auto;
}

.case-study-v4 .sana-case-hero-copy h1 {
  font-size: clamp(68px, 7.8vw, 126px);
}

.case-study-v4 .sana-case-hero-copy > p:not(.sana-case-label) {
  max-width: 470px;
}

.case-study-v4 .sana-hero-media img {
  height: min(68dvh, 620px);
  aspect-ratio: auto;
  object-fit: cover;
}

.case-study-v4 .bloom-hero-v3 {
  padding: clamp(32px, 4vw, 62px) 0;
}

.case-study-v4 .bloom-hero-copy-v3 {
  min-height: 0;
  padding-bottom: 0;
}

.case-study-v4 .bloom-hero-copy-v3 .case-back-link {
  margin-bottom: clamp(24px, 4vw, 54px);
}

.case-study-v4 .bloom-hero-actions-v3 {
  margin-top: clamp(18px, 2.4vw, 30px);
}

.case-study-v4 .bloom-hero-media-v3 img {
  height: min(58dvh, 520px);
  aspect-ratio: auto;
  object-fit: cover;
}

.case-study-v4 .bloom-hero-facts-v3 {
  margin-top: clamp(18px, 2.6vw, 32px);
}

.case-study-v4 .bloom-hero-facts-v3 div {
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.case-study-v4 .nue-hero-cover,
.case-study-v4 .nue-hero-content {
  min-height: clamp(660px, 100dvh, 900px);
}

.case-study-v4 .nue-hero-content {
  padding-bottom: clamp(24px, 3.6vw, 52px);
}

.case-study-v4 .nue-hero-lockup {
  padding-bottom: clamp(18px, 3.2vh, 42px);
}

.case-study-v4 .thread-hero-v3 {
  padding-top: clamp(104px, 11vw, 156px);
}

.case-study-v4 .pulse-hero-cover-v3 {
  padding: clamp(28px, 4vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.case-study-v4 .pulse-hero-shell-v3 {
  width: var(--case-readable-v4);
  aspect-ratio: 16 / 9;
}

.case-study-v4 .pulse-hero-shell-v3 img {
  height: 100%;
  object-fit: cover;
}

.case-study-v4 .pulse-opening-v3 {
  padding-top: clamp(54px, 7vw, 104px);
}

.case-study-v4 .case-conversion-v4 {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.case-study-v4 .case-conversion-v4::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(24, 70, 242, 0.08), transparent 38%),
    radial-gradient(circle at 88% 16%, rgba(24, 70, 242, 0.1), transparent 24rem);
  opacity: 0.82;
}

.case-study-v4 .case-conversion-v4 > * {
  position: relative;
  z-index: 1;
}

.case-study-v4 .case-conversion-v4 .case-cta-grid,
.case-study-v4 .case-conversion-v4.sana-case-cta .sana-cta-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  align-items: center;
}

.case-study-v4 .case-conversion-copy-v4 {
  max-width: 56ch;
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.case-study-v4 .case-conversion-v4 .case-cta-actions {
  justify-content: flex-end;
}

.case-study-v4 .case-conversion-v4 .case-cta-actions::before {
  content: "Choose route";
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.pulse-case-v3.case-study-v4 .case-conversion-v4,
.thread-case-v3.case-study-v4 .case-conversion-v4 {
  background:
    linear-gradient(135deg, rgba(24, 70, 242, 0.16), transparent 46%),
    #06080d;
}

.pulse-case-v3.case-study-v4 .case-conversion-copy-v4,
.thread-case-v3.case-study-v4 .case-conversion-copy-v4 {
  color: rgba(247, 248, 251, 0.7);
}

.pulse-case-v3.case-study-v4 .case-conversion-v4 .case-cta-actions::before,
.thread-case-v3.case-study-v4 .case-conversion-v4 .case-cta-actions::before {
  color: rgba(247, 248, 251, 0.52);
}

.thread-case-v3.case-study-v4 .thread-final-v3.case-conversion-v4 {
  width: var(--case-readable-v4);
  margin: 0 auto;
  border: 1px solid var(--line);
}

.thread-case-v3.case-study-v4 .thread-final-v3.case-conversion-v4 > div {
  gap: clamp(16px, 2vw, 24px);
}

.sana-case-v3.case-study-v4 .case-conversion-copy-v4 {
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .case-study-v4 .case-conversion-v4 .case-cta-grid,
  .case-study-v4 .case-conversion-v4.sana-case-cta .sana-cta-grid {
    grid-template-columns: 1fr;
  }

  .case-study-v4 .case-conversion-v4 .case-cta-actions {
    justify-content: flex-start;
  }

  .case-study-v4 .case-conversion-v4 .case-cta-actions::before {
    text-align: left;
  }

  .case-study-v4 .sana-case-hero > .sana-case-shell {
    grid-template-columns: 1fr;
  }

  .case-study-v4 .sana-hero-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .case-study-v4 {
    --case-wide-v4: min(100% - 28px, 1680px);
    --case-readable-v4: min(100% - 28px, 1480px);
  }

  .case-study-v4 .sana-case-hero,
  .case-study-v4 .bloom-hero-v3,
  .case-study-v4 .thread-hero-v3,
  .case-study-v4 .nue-hero-cover,
  .case-study-v4 .nue-hero-content {
    min-height: auto;
  }

  .case-study-v4 .pulse-hero-shell-v3 {
    aspect-ratio: 4 / 3;
  }

  .case-study-v4 .bloom-hero-media-v3 img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* Fourth visible upgrade: Work entry actions and shared case-study mid-page framing. */
.work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4 {
  --entry-lift: 0px;
}

.work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4.is-fold-active {
  --entry-lift: -2px;
}

.work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4 .case-image,
.work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4 .work-compare-panel {
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.7) inset,
    0 30px 90px rgb(10 10 10 / 0.08);
}

.work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4 .case-image-link {
  outline-offset: 8px;
}

.work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4 .case-image-link img {
  transform: scale(1);
  transition:
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease;
}

@media (hover: hover) {
  .work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4:hover .case-image-link img,
  .work-entry-v4 .case-list-v3.principle-fold-stack .work-case-entry-v4:focus-within .case-image-link img {
    transform: scale(1.026);
    filter: saturate(1.02) contrast(1.03);
  }
}

.work-entry-action-v4 {
  order: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 44px;
  margin-top: clamp(4px, 1vw, 14px);
  padding: 0 0 0.42rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  line-height: 1;
  font-weight: 790;
  text-decoration: none;
  letter-spacing: -0.015em;
  transform: translateY(var(--entry-lift));
  transition:
    transform 220ms ease,
    color 220ms ease,
    gap 220ms ease;
}

.work-entry-v4 .case-list-v3.principle-fold-stack .case-details,
.work-entry-v4 .case-list-v3.principle-fold-stack .service-proof-grid {
  order: 3;
}

.work-entry-action-v4::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.work-entry-action-v4:hover,
.work-entry-action-v4:focus-visible {
  color: var(--accent);
  gap: 1rem;
}

.work-entry-action-v4:hover::after,
.work-entry-action-v4:focus-visible::after {
  transform: translateX(2px) rotate(45deg);
}

.work-entry-action-v4:active {
  transform: translateY(1px);
}

.work-entry-v4 .testimonial-inline-nav {
  margin-left: clamp(12px, 2vw, 30px);
}

.work-entry-v4 .testimonial-inline-nav button {
  width: auto;
  min-width: 58px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.case-study-v4 .case-section-header,
.case-study-v4 .sana-section-header,
.case-study-v4 .bloom-section-heading-v3 {
  max-width: 980px;
}

.case-study-v4 .case-section-header h2,
.case-study-v4 .sana-section-header h2,
.case-study-v4 .bloom-section-heading-v3 h2 {
  max-width: 11.5em;
  text-wrap: balance;
}

.case-study-v4 .case-section-header > p:not(.case-kicker),
.case-study-v4 .sana-section-header > p:not(.sana-section-kicker):not(.sana-micro-line),
.case-study-v4 .bloom-section-heading-v3 > p:not(.case-kicker) {
  max-width: 62ch;
}

.case-study-v4 .case-wide-media,
.case-study-v4 .sana-media-wide,
.case-study-v4 .sana-media-panel,
.case-study-v4 .nue-wide-media,
.case-study-v4 .nue-panel-media,
.case-study-v4 .bloom-image-frame-v3,
.case-study-v4 .pulse-asset-frame-v3,
.case-study-v4 .pulse-poster-card-v3,
.case-study-v4 .thread-product-grid-v3 figure,
.case-study-v4 .thread-feed-wall-v3 figure,
.case-study-v4 .thread-story-strip-v3 figure {
  position: relative;
}

.case-study-v4 .case-wide-media img,
.case-study-v4 .sana-media-wide img,
.case-study-v4 .sana-media-panel img,
.case-study-v4 .nue-wide-media img,
.case-study-v4 .nue-panel-media img,
.case-study-v4 .bloom-image-frame-v3 img,
.case-study-v4 .pulse-asset-frame-v3 img,
.case-study-v4 .pulse-poster-card-v3 img,
.case-study-v4 .thread-product-grid-v3 img {
  border-color: color-mix(in srgb, var(--line) 88%, transparent);
}

.case-study-v4 figcaption {
  max-width: 58ch;
  margin: 0;
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.case-study-v4 .case-wide-media figcaption,
.case-study-v4 .nue-wide-media figcaption,
.case-study-v4 .pulse-asset-frame-v3 figcaption {
  padding-left: 2px;
}

.pulse-case-v3.case-study-v4 figcaption,
.thread-case-v3.case-study-v4 figcaption {
  color: rgb(247 248 251 / 0.56);
}

@media (max-width: 980px) {
  .work-entry-action-v4 {
    margin-top: 0;
  }

  .work-entry-v4 .testimonial-inline-nav {
    margin-left: 0;
  }
}

/* Start page intake layout repair */
.start-v3 .start-brief-section-v5 {
  padding-top: clamp(58px, 7vw, 108px);
  background:
    radial-gradient(circle at 76% 12%, rgba(24, 70, 242, 0.055), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 244, 0.98));
}

.start-v3 .start-brief-section-v5 .page-v3-shell {
  width: min(1720px, calc(100% - clamp(48px, 6vw, 112px)));
}

.start-v3 .start-brief-section-v5 .page-v3-section-grid {
  grid-template-columns: minmax(94px, 0.08fr) minmax(0, 1fr);
}

.start-v3 .start-brief-section-v5 .page-v3-side {
  display: block !important;
}

.start-v3 .start-brief-section-v5 .page-v3-content {
  grid-column: 2;
  min-width: 0;
  padding-top: 0;
  padding-bottom: clamp(72px, 8vw, 132px);
}

.start-v3 .start-brief-section-v5 .form-layout-v3 {
  display: grid;
  grid-template-columns: minmax(470px, 0.5fr) minmax(540px, 0.5fr);
  gap: clamp(32px, 4.2vw, 72px);
  align-items: start;
  justify-content: stretch;
}

.start-v3 .start-brief-section-v5 .brief-route-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  min-height: clamp(500px, 62vh, 680px);
  margin: 0;
  padding: clamp(34px, 4.4vw, 62px);
  border: 1px solid rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(135deg, rgba(24, 70, 242, 0.07), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 244, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.start-v3 .start-brief-section-v5 .brief-route-panel span {
  color: #1846f2;
}

.start-v3 .start-brief-section-v5 .brief-route-panel strong {
  max-width: 10.2ch;
  font-size: clamp(4.35rem, 5.7vw, 7.25rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.start-v3 .start-brief-section-v5 .brief-route-panel p {
  max-width: 38ch;
  margin-top: clamp(42px, 7vw, 96px);
  font-size: clamp(1.05rem, 1.14vw, 1.22rem);
  line-height: 1.45;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 3.1vw, 46px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 251, 248, 0.92));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.075);
}

.start-v3 .start-brief-section-v5 .brief-intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 34px);
  border: 0;
  background: transparent;
}

.start-v3 .start-brief-section-v5 .brief-intro-strip div,
.start-v3 .start-brief-section-v5 .brief-intro-strip div:last-child {
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.start-v3 .start-brief-section-v5 .brief-intro-strip strong {
  max-width: 8.5ch;
  font-size: clamp(1.35rem, 1.68vw, 2.05rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 .field-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 20px;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 .field {
  grid-column: span 3;
  min-width: 0;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 .field.full {
  grid-column: 1 / -1;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 .field:nth-child(7) {
  grid-column: 1 / -1;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 label {
  max-width: 24ch;
  min-height: auto;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.88rem;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 input,
.start-v3 .start-brief-section-v5 .start-project-form-v5 select,
.start-v3 .start-brief-section-v5 .start-project-form-v5 textarea {
  min-height: 58px;
  border-radius: 14px;
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.35;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 textarea {
  min-height: 138px;
  resize: vertical;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 #need {
  min-height: 154px;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 .file-picker {
  border-radius: 14px;
}

.start-v3 .start-brief-section-v5 .start-project-form-v5 .file-picker span {
  border-radius: 14px 0 0 14px;
}

.start-v3 .start-brief-section-v5 .start-side {
  grid-column: 1 / -1;
  position: static;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(260px, 0.56fr) minmax(280px, 0.72fr);
  gap: 18px;
  margin-top: clamp(26px, 4vw, 54px);
}

.start-v3 .start-brief-section-v5 .start-side .plain-panel,
.start-v3 .start-brief-section-v5 .start-side .start-side-image,
.start-v3 .start-brief-section-v5 .start-side .mini-method {
  min-width: 0;
}

.start-v3 .start-brief-section-v5 .start-side-image img {
  height: 100%;
  min-height: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.start-v3 .start-brief-section-v5 .start-side .mini-method {
  align-content: stretch;
}

@media (max-width: 1440px) {
  .start-v3 .start-brief-section-v5 .page-v3-section-grid,
  .start-v3 .start-brief-section-v5 .form-layout-v3 {
    grid-template-columns: 1fr;
  }

  .start-v3 .start-brief-section-v5 .page-v3-side {
    display: none !important;
  }

  .start-v3 .start-brief-section-v5 .brief-route-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .start-v3 .start-brief-section-v5 .brief-route-panel strong {
    max-width: 12ch;
    font-size: clamp(3.2rem, 8vw, 6.2rem);
  }

  .start-v3 .start-brief-section-v5 .brief-route-panel p {
    margin-top: clamp(26px, 4vw, 42px);
  }

  .start-v3 .start-brief-section-v5 .start-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .start-v3 .start-brief-section-v5 .page-v3-shell {
    width: min(100% - 28px, 1720px);
  }

  .start-v3 .start-brief-section-v5 .page-v3-content {
    padding-bottom: clamp(48px, 12vw, 72px);
  }

  .start-v3 .start-brief-section-v5 .brief-route-panel,
  .start-v3 .start-brief-section-v5 .start-project-form-v5 {
    padding: 24px;
    border-radius: 20px;
  }

  .start-v3 .start-brief-section-v5 .brief-route-panel strong {
    font-size: clamp(3.1rem, 13vw, 4.8rem);
  }

  .start-v3 .start-brief-section-v5 .brief-intro-strip,
  .start-v3 .start-brief-section-v5 .start-project-form-v5 .field-grid {
    grid-template-columns: 1fr;
  }

  .start-v3 .start-brief-section-v5 .start-project-form-v5 .field {
    grid-column: 1 / -1;
  }

  .start-v3 .start-brief-section-v5 .brief-intro-strip div,
  .start-v3 .start-brief-section-v5 .brief-intro-strip div:last-child {
    min-height: auto;
  }

  .start-v3 .start-brief-section-v5 .start-project-form-v5 .file-picker {
    grid-template-columns: 1fr;
  }

  .start-v3 .start-brief-section-v5 .start-project-form-v5 .file-picker span {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px 14px 0 0;
  }
}
