:root {
  --site-bg-pattern:
    radial-gradient(circle at 18% 18%, rgba(92, 200, 105, 0.06), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(196, 181, 245, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92));
}

body.nuvo.site-subpage {
  margin: 0;
  background: var(--nuvo-bg);
  color: var(--nuvo-ink);
}

.site-subpage {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--nuvo-line);
  background: rgba(253, 253, 250, 0.9);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .site-header {
  background: rgba(14, 15, 12, 0.88);
}

.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--nuvo-font-display);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  letter-spacing: -0.03em;
  color: var(--nuvo-ink);
}

.site-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-brand__logo--dark {
  display: none !important;
}

[data-theme="dark"] .site-brand__logo--light {
  display: none !important;
}

[data-theme="dark"] .site-brand__logo--dark {
  display: block !important;
}

.site-brand span {
  font-family: var(--nuvo-font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-links a,
.site-mobile-panel a {
  color: var(--nuvo-ink-mute);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s ease;
}

.site-nav-links a:hover,
.site-mobile-panel a:hover,
.site-nav-links a.is-active,
.site-mobile-panel a.is-active {
  color: var(--nuvo-ink);
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-theme-toggle,
.site-menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--nuvo-line);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--nuvo-ink-soft);
  background: transparent;
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.site-theme-toggle:hover,
.site-menu-toggle:hover {
  color: var(--nuvo-ink);
  border-color: var(--nuvo-line-strong);
  background: var(--nuvo-bg-soft);
}

.site-theme-toggle .sun {
  display: none;
}

[data-theme="dark"] .site-theme-toggle .sun {
  display: block;
}

[data-theme="dark"] .site-theme-toggle .moon {
  display: none;
}

.site-menu-toggle {
  display: none;
  border-radius: 12px;
}

.site-mobile-panel {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid var(--nuvo-line);
  background: var(--nuvo-bg);
}

.site-mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.site-mobile-panel .nuvo-btn {
  width: 100%;
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--site-bg-pattern);
  pointer-events: none;
}

[data-theme="dark"] .page-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 200, 105, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(196, 181, 245, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(14, 15, 12, 0.8), rgba(14, 15, 12, 0.94));
}

.page-hero__inner,
.page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.page-hero__frame {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 7vw, 82px) 0 clamp(38px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.page-hero__content h1 {
  margin: 14px 0 18px;
  font-family: var(--nuvo-font-display);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  max-width: 11ch;
}

.page-hero__content p {
  margin: 0 0 28px;
  max-width: 58ch;
  color: var(--nuvo-ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nuvo-stack-sm { margin-top: 14px; }
.nuvo-stack-md { margin-top: 18px; }
.nuvo-stack-lg { margin-top: 20px; }

.page-hero__media {
  position: relative;
}

.page-hero__image {
  min-height: 430px;
  border: 1px solid var(--nuvo-line);
  border-radius: var(--nuvo-radius-lg);
  overflow: hidden;
  box-shadow: var(--nuvo-shadow-lg);
  background: var(--nuvo-bg-card);
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.page-hero__pills {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 10px;
}

.page-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(20, 21, 15, 0.76);
  color: #f4f4ec;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.page-main {
  padding-top: 10px;
  padding-bottom: clamp(42px, 6vw, 74px);
}

.page-section {
  padding: clamp(26px, 4vw, 42px) 0;
}

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

.section-frame {
  display: grid;
  gap: 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-head__copy {
  max-width: 62ch;
}

.section-head h2 {
  margin: 12px 0 8px;
  font-family: var(--nuvo-font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-head p {
  margin: 0;
  color: var(--nuvo-ink-soft);
}

.two-col,
.three-col,
.story-grid,
.industry-grid,
.article-grid,
.resource-grid,
.founder-grid,
.stats-grid,
.quote-grid,
.contact-layout,
.impact-grid,
.timeline-grid,
.process-strip {
  display: grid;
  gap: 18px;
}

.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.founder-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid,
.industry-grid,
.quote-grid,
.impact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.process-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-layout { grid-template-columns: 0.82fr 1.18fr; align-items: start; }

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nuvo-ink-mute);
  font-family: var(--nuvo-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-row::before {
  content: "/";
  opacity: 0.55;
}

.story-card,
.icon-card,
.founder-card,
.resource-card,
.article-card,
.testimonial-card,
.impact-card,
.contact-card,
.timeline-card,
.process-card,
.highlight-card,
.industry-card {
  border: 1px solid var(--nuvo-line);
  border-radius: var(--nuvo-radius-md);
  background: var(--nuvo-bg-card);
}

.story-card,
.icon-card,
.resource-card,
.article-card,
.testimonial-card,
.impact-card,
.contact-card,
.timeline-card,
.process-card,
.highlight-card,
.industry-card {
  padding: 24px;
}

.story-card--soft,
.highlight-card,
.contact-card--soft {
  background: var(--nuvo-bg-soft);
}

.story-card h3,
.icon-card h3,
.founder-card h3,
.resource-card h3,
.article-card h3,
.testimonial-card h3,
.impact-card h3,
.contact-card h3,
.timeline-card h3,
.process-card h3,
.highlight-card h3,
.industry-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--nuvo-ink);
}

.story-card p,
.icon-card p,
.resource-card p,
.article-card p,
.testimonial-card p,
.impact-card p,
.contact-card p,
.timeline-card p,
.process-card p,
.highlight-card p,
.industry-card p {
  margin: 0;
  color: var(--nuvo-ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.metric-value,
.impact-number,
.stat-value {
  margin: 0 0 6px;
  font-family: var(--nuvo-font-display);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--nuvo-green);
}

.stat-label,
.impact-label {
  color: var(--nuvo-ink);
  font-weight: 600;
}

.stat-sub,
.impact-sub {
  display: block;
  margin-top: 6px;
  color: var(--nuvo-ink-mute);
  font-size: 13px;
  line-height: 1.55;
}

.founder-card {
  overflow: hidden;
  padding: 0;
}

.founder-card__photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--nuvo-line);
}

.founder-card__photo--emp-1 { background-image: url("./assets/images/EMP1.png"); }
.founder-card__photo--emp-2 { background-image: url("./assets/images/EMP2.png"); }
.founder-card__photo--emp-3 { background-image: url("./assets/images/EMP3.png"); }

.founder-card__body {
  padding: 20px;
}

.founder-card__role {
  display: block;
  margin-bottom: 10px;
  color: var(--nuvo-green);
  font-family: var(--nuvo-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.list-checks,
.list-plain {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list-checks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--nuvo-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.list-checks li svg {
  margin-top: 2px;
  color: var(--nuvo-green);
}

.process-card__step {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid var(--nuvo-line-strong);
  color: var(--nuvo-green);
  font-family: var(--nuvo-font-mono);
  font-size: 12px;
}

.highlight-band,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--nuvo-line);
  border-radius: var(--nuvo-radius-lg);
  background: linear-gradient(135deg, rgba(22, 41, 27, 0.98), rgba(13, 36, 25, 0.98));
  color: var(--nuvo-footer-ink, #e8efe6);
}

.highlight-band {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 0;
}

.highlight-band__copy,
.highlight-band__visual,
.cta-band {
  padding: clamp(24px, 4vw, 40px);
}

.highlight-band__copy h3,
.cta-band h3 {
  margin: 12px 0 12px;
  color: #f4f4ec;
  font-family: var(--nuvo-font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.highlight-band__copy p,
.cta-band p {
  color: rgba(232, 239, 230, 0.8);
  margin: 0;
}

.highlight-band__visual {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(92, 200, 105, 0.2), transparent 36%);
}

.result-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 239, 230, 0.84);
  font-size: 14px;
}

.quote-callout {
  padding: 18px 20px;
  border-left: 2px solid var(--nuvo-green);
  background: var(--nuvo-bg-soft);
  color: var(--nuvo-ink-soft);
  font-style: italic;
}

.industry-card {
  overflow: hidden;
  padding: 0;
}

.industry-card__image {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--nuvo-line);
}

.industry-card__image--professional { background-image: url("./assets/images/brand-and-people/Emp-Client-Office.png"); }
.industry-card__image--home-services { background-image: url("./assets/images/brand-and-people/Emp-Solo-2.png"); }
.industry-card__image--industrial { background-image: url("./assets/images/brand-and-people/Emp-Client-Factory.png"); }
.industry-card__image--construction { background-image: url("./assets/images/brand-and-people/Emp-Client-Factory-2.png"); }
.industry-card__image--healthcare { background-image: url("./assets/images/brand-and-people/Emp-Solo-1.png"); }
.industry-card__image--logistics { background-image: url("./assets/images/brand-and-people/TAL-Emp1.png"); }

.contact-form-title {
  margin: 12px 0 6px;
  font-size: 2rem;
}

.industry-card__body {
  padding: 20px;
}

.resource-card,
.article-card {
  overflow: hidden;
  padding: 0;
}

.resource-card__media,
.article-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--nuvo-bg-soft);
  overflow: hidden;
}

.resource-card__media img,
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card__tag,
.article-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
}

.resource-card__body,
.article-card__body {
  padding: 20px;
}

.testimonial-card__quote {
  margin: 0 0 18px;
  color: var(--nuvo-ink-soft);
  font-size: 15px;
}

.testimonial-card__meta {
  color: var(--nuvo-ink-mute);
  font-size: 13px;
}

.avatar-badge {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--nuvo-bg-soft);
  border: 1px solid var(--nuvo-line);
  color: var(--nuvo-green);
  font-family: var(--nuvo-font-mono);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form__grid .is-full {
  grid-column: 1 / -1;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-form__note,
.helper-copy {
  color: var(--nuvo-ink-mute);
  font-size: 13px;
}

.contact-success {
  display: none;
}

.contact-success.is-visible {
  display: block;
}

.contact-form.is-hidden {
  display: none;
}

.site-footer {
  padding: 32px clamp(20px, 4vw, 40px) 36px;
  border-top: 1px solid var(--nuvo-line);
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--nuvo-ink-mute);
  font-size: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1080px) {
  .process-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .founder-grid,
  .stats-grid,
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .site-nav-links,
  .site-nav .site-nav-actions .nuvo-btn {
    display: none;
  }

  .site-menu-toggle {
    display: inline-grid;
  }

  .page-hero__frame,
  .story-grid,
  .two-col,
  .highlight-band,
  .contact-layout,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .highlight-band__visual {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .site-nav {
    min-height: 68px;
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-brand {
    gap: 9px;
    flex: 1 1 auto;
    font-size: clamp(1rem, 4.7vw, 1.22rem);
  }

  .site-brand img {
    width: 34px;
    height: 34px;
  }

  .site-brand span {
    font-size: 17px;
  }

  .site-theme-toggle,
  .site-menu-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .page-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .page-hero__actions .nuvo-btn {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    white-space: normal;
    text-align: center;
  }

  .process-strip,
  .founder-grid,
  .stats-grid,
  .resource-grid,
  .article-grid,
  .impact-grid,
  .quote-grid,
  .industry-grid,
  .three-col,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__image,
  .page-hero__image img {
    min-height: 320px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-nav,
  .page-hero__inner,
  .page-main,
  .site-footer__inner {
    width: 390px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .page-hero__frame,
  .page-hero__content,
  .page-hero__media,
  .page-hero__image,
  .section-frame,
  .story-grid,
  .industry-grid,
  .article-grid,
  .resource-grid,
  .founder-grid,
  .stats-grid,
  .quote-grid,
  .contact-layout,
  .impact-grid,
  .timeline-grid,
  .process-strip,
  .three-col,
  .two-col {
    min-width: 0;
    max-width: 100%;
  }

  .page-hero__content p,
  .section-head p,
  .story-card p,
  .industry-card p,
  .article-card p,
  .resource-card p,
  .founder-card p,
  .contact-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

/* Invoice processing case-study Nuvo page additions */
.case-study-page {
      background: var(--nuvo-bg);
      font-family: var(--nuvo-font-body);
      overflow-x: hidden;
      --case-shell: 1080px;
      --case-left: 170px;
      --case-right: 280px;
      --case-gap: clamp(24px, 2.6vw, 34px);
    }

    .case-study-page .site-nav {
      max-width: 1200px;
    }

    .case-study-shell {
      max-width: var(--case-shell);
      margin: 0 auto;
      padding: 0 clamp(16px, 2.5vw, 28px);
    }

    .case-study-hero {
      position: relative;
      margin: 0 auto;
      border-bottom: 1px solid var(--nuvo-line);
      background: var(--nuvo-bg);
      overflow: hidden;
    }

    [data-theme="dark"] .case-study-hero {
      background: var(--nuvo-bg);
    }

    .case-study-animation-enabled .case-study-hero {
      isolation: isolate;
    }

    .case-study-dot-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 0;
      pointer-events: none;
    }

    .case-study-animation-enabled .case-study-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 52% 44% at 28% 52%, rgba(253, 253, 250, 0.96) 0%, rgba(253, 253, 250, 0.82) 38%, rgba(253, 253, 250, 0.18) 70%, rgba(253, 253, 250, 0) 100%),
        linear-gradient(90deg, rgba(253, 253, 250, 0.92) 0%, rgba(253, 253, 250, 0.68) 38%, rgba(253, 253, 250, 0.22) 68%, rgba(253, 253, 250, 0.6) 100%);
    }

    [data-theme="dark"] .case-study-animation-enabled .case-study-hero::before {
      background:
        radial-gradient(ellipse 52% 44% at 28% 52%, rgba(14, 15, 12, 0.96) 0%, rgba(14, 15, 12, 0.82) 38%, rgba(14, 15, 12, 0.18) 70%, rgba(14, 15, 12, 0) 100%),
        linear-gradient(90deg, rgba(14, 15, 12, 0.92) 0%, rgba(14, 15, 12, 0.68) 38%, rgba(14, 15, 12, 0.24) 68%, rgba(14, 15, 12, 0.62) 100%);
    }

    .case-study-animation-enabled .case-study-hero .case-study-shell {
      position: relative;
      z-index: 2;
    }

    .case-study-hero__frame {
      position: relative;
      min-height: clamp(250px, 25vw, 320px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(38px, 4.8vw, 56px) clamp(28px, 4vw, 48px);
      border-left: 1px solid var(--nuvo-line-strong);
      border-right: 1px solid var(--nuvo-line-strong);
    }

    .case-study-hero__frame::before,
    .case-study-hero__frame::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--nuvo-line-strong);
    }

    .case-study-hero__frame::before { top: 0; }
    .case-study-hero__frame::after { bottom: 0; }

    .corner {
      position: absolute;
      width: 18px;
      height: 18px;
      pointer-events: none;
    }

    .corner::before,
    .corner::after {
      content: "";
      position: absolute;
      background: var(--nuvo-ink-mute);
      opacity: 0.7;
    }

    .corner::before { width: 18px; height: 2px; }
    .corner::after { width: 2px; height: 18px; }
    .corner--tl { left: -1px; top: -1px; }
    .corner--tr { right: -1px; top: -1px; transform: rotate(90deg); }
    .corner--bl { left: -1px; bottom: -1px; transform: rotate(-90deg); }
    .corner--br { right: -1px; bottom: -1px; transform: rotate(180deg); }

    .case-label {
      color: var(--nuvo-ink-mute);
      font-family: var(--nuvo-font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .case-label::before {
      content: "/  ";
      opacity: .65;
    }

    .case-study-hero h1 {
      max-width: 720px;
      margin: 18px 0 18px;
      color: var(--nuvo-ink);
      font-family: var(--nuvo-font-display);
      font-size: clamp(38px, 4.4vw, 56px);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.06;
    }

    .case-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--nuvo-ink-mute);
      font-size: 13px;
    }

    .case-meta span + span::before {
      content: "/";
      margin-right: 12px;
      color: var(--nuvo-ink-mute);
    }

    .case-study-main {
      display: grid;
      grid-template-columns: var(--case-left) minmax(0, 1fr) var(--case-right);
      gap: var(--case-gap);
      align-items: start;
      border-left: 1px solid var(--nuvo-line);
      border-right: 1px solid var(--nuvo-line);
      border-bottom: 1px solid var(--nuvo-line);
    }

    .case-study-toc,
    .case-study-cta {
      position: sticky;
      top: 92px;
      align-self: start;
      padding-top: 34px;
    }

    .case-study-toc {
      border-right: 1px solid var(--nuvo-line);
      padding-left: clamp(18px, 2vw, 28px);
      padding-right: 24px;
      height: fit-content;
    }

    .case-study-toc h2 {
      margin: 0 0 22px;
      color: var(--nuvo-ink-mute);
      font-family: var(--nuvo-font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .case-study-toc h2::before {
      content: "/  ";
      opacity: .65;
    }

    .case-study-toc nav {
      display: grid;
      gap: 16px;
      padding-left: 18px;
      border-left: 1px solid var(--nuvo-line);
    }

    .case-study-toc a {
      position: relative;
      display: block;
      color: var(--nuvo-ink-mute);
      font-size: 14px;
      line-height: 1.45;
    }

    .case-study-toc a:hover {
      color: var(--nuvo-ink);
    }

    .case-study-toc a.is-active {
      color: var(--nuvo-ink);
      font-weight: 600;
    }

    .case-study-toc a.is-active::before {
      content: "";
      position: absolute;
      width: 2px;
      height: 1.7em;
      margin-left: -19px;
      background: var(--nuvo-green);
    }

    .case-study-article {
      min-width: 0;
      padding: 34px 0 clamp(50px, 6vw, 72px);
    }

    .case-study-article section + section {
      margin-top: clamp(34px, 4.5vw, 50px);
    }

    .case-study-article p,
    .case-study-article li {
      color: var(--nuvo-ink-soft);
      font-size: clamp(14.5px, 1.08vw, 16px);
      line-height: 1.62;
    }

    .case-study-article p {
      margin: 0 0 18px;
    }

    .case-study-article strong {
      color: var(--nuvo-ink);
      font-weight: 700;
    }

    .case-study-article h2 {
      margin: 0 0 16px;
      color: var(--nuvo-ink);
      font-family: var(--nuvo-font-display);
      font-size: clamp(28px, 3.1vw, 38px);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .case-study-article h3 {
      margin: 24px 0 8px;
      color: var(--nuvo-ink);
      font-size: clamp(16px, 1.35vw, 18px);
      line-height: 1.2;
    }

    .case-study-article ul {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
      padding-left: 1.15em;
    }

    .case-flow {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      margin-top: 22px;
      border: 1px solid var(--nuvo-line);
      background: var(--nuvo-bg-card);
      overflow: hidden;
    }

    .case-flow__step {
      min-width: 0;
      padding: clamp(14px, 1.5vw, 18px);
      border-right: 1px solid var(--nuvo-line);
    }

    .case-flow__step:last-child {
      border-right: 0;
    }

    .case-flow__step span {
      display: block;
      margin-bottom: 14px;
      color: var(--nuvo-green);
      font-family: var(--nuvo-font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
    }

    .case-flow__step h3 {
      margin: 0 0 10px;
      font-size: 1.05rem;
    }

    .case-flow__step p {
      margin: 0;
      font-size: 13.5px;
      line-height: 1.55;
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: 22px;
      background: var(--nuvo-line);
      border: 1px solid var(--nuvo-line);
    }

    .result-tile {
      padding: clamp(16px, 1.6vw, 20px);
      background: var(--nuvo-bg-card);
    }

    .result-tile strong {
      display: block;
      margin-bottom: 8px;
      color: var(--nuvo-green);
      font-family: var(--nuvo-font-display);
      font-size: clamp(25px, 2.2vw, 32px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1;
      white-space: nowrap;
    }

    .result-plus {
      font-size: .72em;
    }

    .result-unit {
      display: inline-block;
      margin-left: .08em;
      font-size: .52em;
      line-height: 1;
      vertical-align: baseline;
    }

    .result-tile span {
      color: var(--nuvo-ink-soft);
      font-size: 13px;
      line-height: 1.5;
    }

    .case-study-cta {
      border-left: 1px solid var(--nuvo-line);
      padding-left: 24px;
      padding-right: clamp(18px, 2vw, 28px);
      height: fit-content;
    }

    .case-study-cta__card {
      padding: 24px;
      background: var(--nuvo-footer-bg);
      color: #f4f4ec;
    }

    .case-study-cta__card .case-label {
      color: rgba(244, 244, 236, 0.66);
    }

    .case-study-cta__card h2 {
      margin: 20px 0 12px;
      color: #fff;
      font-family: var(--nuvo-font-display);
      font-size: 24px;
      font-weight: 500;
      line-height: 1.2;
    }

    .case-study-cta__card p {
      margin: 0 0 26px;
      color: rgba(244, 244, 236, 0.76);
      font-size: 14px;
      line-height: 1.6;
    }

    .case-study-cta__card .nuvo-btn {
      width: 100%;
      justify-content: center;
      background: var(--nuvo-lavender);
      color: #111;
      min-width: 0;
      padding-left: 14px;
      padding-right: 14px;
      text-align: center;
      white-space: normal;
    }

    @media (max-width: 1080px) {
      .case-study-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
      }

      .case-study-toc,
      .case-study-cta {
        position: static;
        min-height: 0;
        padding: 28px 0;
        border: 0;
      }

      .case-study-toc {
        border-bottom: 1px solid var(--nuvo-line);
      }

      .case-study-toc nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-study-toc a {
        font-size: 16px;
      }

      .case-study-article {
        padding-top: 34px;
      }

      .case-study-cta {
        border-top: 1px solid var(--nuvo-line);
      }
    }

    @media (max-width: 720px) {
      .case-study-shell {
        padding: 0 18px;
      }

      .case-study-hero__frame {
        min-height: 0;
        padding: 40px 20px;
      }

      .case-study-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
      }

      .case-meta {
        display: grid;
        gap: 8px;
      }

      .case-meta span + span::before {
        content: none;
      }

      .case-study-toc nav,
      .results-grid {
        grid-template-columns: 1fr;
      }

      .case-flow {
        grid-template-columns: 1fr;
      }

      .case-flow__step {
        border-right: 0;
        border-bottom: 1px solid var(--nuvo-line);
      }
    }

