/* ── Gotham ── */
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-BookItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #888888;
  --accent: #C8502A;
  --hero-bg: #1c1c1c;
  --max-w: 1200px;
  --gutter: 24px;
  /* Section spacing: each section's own top/bottom padding is half this
     value, so two stacked sections combine to the full --space-section gap. */
  --space-section: 80px;
  --space-section-half: 40px;
}

@media (max-width: 700px) {
  :root {
    --space-section: 40px;
    --space-section-half: 20px;
  }
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Gotham', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--gutter);
}

.nav-logo {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--fg);
  margin-left: 40px;
  text-decoration: none;
  line-height: 1.15;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin-right: 40px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
}

.nav-links a:hover { opacity: 0.55; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-hamburger img {
  display: block;
  width: 24px;
  height: 24px;
}

/* ── Mobile menu ── */
.nav-menu {
  display: none;
}

/* ── Hero ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Scroll cue ── */
.scroll-cue {
  display: flex;
  justify-content: center;
  padding: 92px 0 69px;
  font-size: 1.1rem;
  color: #bbb;
}

/* ── Work ── */
.work {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}

.work-label {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}

/* ── Cards grid ── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 48px;
}

.card-wag     { grid-column: 1 / -1; }
.card-paway   { grid-column: 1 / 2; }
.card-mentorcam { grid-column: 2 / 3; }
.card-sidepilot { grid-column: 1 / 2; }

/* ── Card ── */
.card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-image {
  width: 100%;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

.card:hover .card-image img { transform: scale(1.02); }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 60px;
  background: var(--bg);
}

.card-meta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.card-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}

.card-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  white-space: nowrap;
}

.card-tags {
  font-size: 15px;
  font-weight: 400;
  color: var(--fg);
  white-space: nowrap;
}

.card-arrow {
  flex-shrink: 0;
  margin-left: 16px;
  margin-top: 6px;
  transition: transform 0.2s ease;
}

.card-arrow img {
  display: block;
}

.card:hover .card-arrow { transform: translateX(3px); }

/* ── About hero ── */
.about-hero-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero {
  display: flex;
  align-items: center;
  gap: 64px;
  background: #f4f6f7;
  border-radius: 30px;
  height: 600px;
  overflow: visible;
}

.about-hero-photo {
  flex-shrink: 0;
  align-self: flex-start;
  padding: 97px 0 97px 48px;
}

.about-hero-photo img {
  display: block;
  width: auto;
  height: 406px;
}

.about-hero-text {
  flex: 1;
  padding: 48px 48px 48px 0;
}

.about-hero-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-hero-p {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 16px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.btn-linkedin-circle img {
  display: block;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  background: var(--fg);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 27px;
  white-space: nowrap;
  line-height: 1.15;
}

.btn-pill-wide {
  padding: 0 40px;
}

/* ── Experience ── */
.experience {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px;
}

.experience-label {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.15;
}

.experience-card {
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  padding: 40px 40px 24px;
  margin-bottom: 20px;
  height: 215px;
  box-sizing: border-box;
  overflow: hidden;
}

.experience-company {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.15;
}

.experience-role {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 24px;
}

.experience-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
}

.experience .btn-pill-wide {
  margin-top: 20px;
}

/* ── Footer ── */
.footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: #e8e6e2;
}

.footer-copy {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg);
}

.footer-linkedin img {
  display: block;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .nav { padding: 20px; }
  .nav-logo { font-size: 18px; margin-left: 0; }
  .nav-links { display: none; margin-right: 0; }
  .nav-hamburger { display: block; }

  .hero { padding: 0 20px; }

  .scroll-cue { padding: 40px 0; }

  .work { padding: 0 20px 60px; }

  .work-label { font-size: 24px; margin-bottom: 20px; }

  .cards { grid-template-columns: 1fr; gap: 0; }
  .card-wag, .card-paway, .card-mentorcam, .card-sidepilot {
    grid-column: 1 / -1;
  }

  .card-title { font-size: 24px; }

  .card-desc, .card-tags { white-space: normal; }

  .card-meta { padding: 24px 0 40px; }
  .card-meta-left { gap: 8px; }

  .nav-menu:not([hidden]) {
    display: block;
    position: fixed;
    top: 12px;
    left: 10px;
    right: 10px;
    z-index: 100;
    background: var(--bg);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
    padding: 20px;
  }

  .nav-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu-logo {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--fg);
  line-height: 1.15;
  }

  .nav-menu-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .nav-menu-close img {
    display: block;
    width: 24px;
    height: 24px;
  }

  .nav-menu-links {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .nav-menu-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--fg);
    text-decoration: none;
  }

  .about-hero {
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: auto;
    overflow: hidden;
    padding: 32px 20px 40px;
  }

  .about-hero-photo {
    align-self: center;
    padding: 0;
    margin-bottom: 32px;
  }

  .about-hero-photo img {
    height: 321px;
    width: auto;
  }

  .about-hero-text {
    padding: 0;
    width: 100%;
  }

  .about-hero-title { font-size: 24px; }

  .about-actions { flex-wrap: wrap; }

  .experience { padding: 60px 20px; }

  .experience-label { font-size: 24px; }

  .experience-card { padding: 28px 24px; height: auto; }

  .experience-company { font-size: 24px; }

  .experience .btn-pill-wide {
    width: 100%;
    text-align: center;
  }
}

/* ── Case study: Wag! ── */
.section-label {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-label-year {
  color: #727272;
  font-weight: 400;
}

.section-label-light {
  color: #fff;
}

.section-label-year-light {
  color: #aaaaaa;
}

.wag-body-p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--fg);
  margin-bottom: 12px;
}

/* Hero */
.wag-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.wag-hero-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Overview + meta grid */
.wag-overview-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 30px 20px 0;
}

.wag-overview-p {
  font-size: 16px;
  line-height: 24px;
  color: var(--fg);
  margin-bottom: 30px;
}

.wag-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 30px;
}

.wag-meta-divider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: var(--space-section-half);
}

.wag-final-divider {
  margin-bottom: 0;
}

.wag-meta-divider hr {
  border: none;
  border-top: 1px solid #e8e6e2;
  margin: 0;
}

.wag-filters-divider {
  margin-top: 24px;
  margin-bottom: 24px;
}

.wag-filters-divider hr {
  width: 209px;
  margin: 0 auto;
}

.wag-filters-divider + .wag-caption-p {
  margin-top: 0;
}

.wag-meta-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
}

.wag-meta-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg);
  line-height: 24px;
}

/* Challenge + pain points */
.wag-challenge-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px 0;
  display: flex;
  gap: 74px;
  align-items: flex-start;
}

.wag-challenge-text {
  flex: 1;
  min-width: 0;
}

.wag-pain-points-card {
  flex-shrink: 0;
  width: 509px;
  height: 204px;
  background: #f4f6f7;
  border-radius: 26px;
  padding: 30px 25px 30px 30px;
  box-sizing: border-box;
}

.paway-pain-points-card {
  width: 516px;
  height: 171px;
}

.wag-pain-points-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 16px;
}

.wag-pain-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wag-pain-points-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 22px;
  color: var(--fg);
}

.wag-pain-points-list li:first-child {
  white-space: nowrap;
}

.wag-pain-points-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg);
}

/* Approach */
.wag-approach-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px var(--space-section-half);
}

.wag-approach-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  overflow-x: auto;
}

.wag-approach-card {
  flex: 1;
  min-width: 180px;
  background: #f4f6f7;
  border-radius: 26px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.wag-approach-card p {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  line-height: 24px;
}

.wag-approach-arrow {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 18px;
}

.wag-body-p-nowrap {
  max-width: none;
  white-space: nowrap;
}

/* Exploration */
.wag-exploration-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px;
}

.wag-exploration-panel {
  margin-top: 30px;
  background: #f4f6f7;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
}

.wag-exploration-panel img {
  display: block;
  width: 100%;
  height: auto;
}

/* Key decisions */
.wag-key-decisions-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px;
}

.wag-key-decisions-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.wag-key-decisions-card {
  background: #f4f6f7;
  border-radius: 26px;
  padding: 24px 18px;
  text-align: center;
  height: 151px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wag-key-decisions-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
}

.wag-key-decisions-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--fg);
}

/* Mock grids (final solutions) */
.wag-final-solution-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px;
}

.wag-final-solution-2019-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 20px var(--space-section-half);
}

.wag-mock-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.wag-mock-row-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 72px;
}

.wag-mock-row-2 .wag-mock {
  flex: 0 0 auto;
  width: 207px;
}

.wag-share-icon {
  display: block;
  width: 25px;
  height: 16px;
  flex-shrink: 0;
}

.wag-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wag-mock img {
  display: block;
  width: 100%;
  height: auto;
}

.wag-mock figcaption {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg);
  text-align: center;
}

.wag-filters-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 80px;
}

.wag-filters-figure img {
  display: block;
  width: 1000px;
  max-width: 100%;
  height: auto;
}

.wag-filters-figure figcaption {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg);
  text-align: center;
}

.wag-caption-p {
  margin-top: 30px;
  margin-bottom: 0;
  max-width: 100%;
  text-align: center;
}

.wag-caption-line-2 {
  display: block;
  margin-top: 0;
}

/* Impact stats */
.wag-impact-section,
.wag-final-impact-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px;
}

.wag-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.wag-stat-card {
  background: #f4f6f7;
  border-radius: 26px;
  padding: 28px 32px;
}

.wag-stat-num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.wag-stat-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--fg);
}

.wag-stats-grid-dark .wag-stat-card-dark {
  background: #111111;
}

.wag-stat-card-dark .wag-stat-num,
.wag-stat-card-dark p {
  color: #fff;
}

/* Reflection */
.wag-reflection-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px;
}

.wag-reflection-section .section-label {
  margin-bottom: 15px;
}

.wag-reflection-section .wag-body-p {
  margin-bottom: 0;
}

/* Five years later divider */
.wag-divider-banner {
  background: #111111;
  height: 84px;
  display: flex;
  align-items: center;
  margin-top: var(--space-section-half);
  margin-bottom: 0;
}

.wag-divider-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.wag-divider-inner .section-label {
  margin-bottom: 0;
}

/* CTA */
.case-study-cta-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-section-half) 20px 60px;
  display: flex;
  justify-content: flex-start;
}

.case-study-cta {
  gap: 10px;
}

.case-study-cta img {
  display: block;
  width: 20px;
  height: 20px;
}

/* ── MentorCam-specific ── */
.mc-challenge-section {
  display: block;
}

.mc-challenge-mock {
  position: relative;
  margin-top: 30px;
}

.mc-before-label {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}

.mc-challenge-mock img {
  display: block;
  width: 100%;
  height: auto;
}

.mc-directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.mc-direction-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
}

.mc-direction-col .wag-body-p {
  font-size: 15px;
  margin-bottom: 24px;
}

.mc-design-directions-section {
  padding-top: var(--space-section);
}

.mc-direction-col img {
  display: block;
  width: 100%;
  height: auto;
}

.mc-direction-col:first-child picture {
  display: block;
  padding-top: 24px;
}

.mc-landing-pages-section {
  padding-top: var(--space-section-half);
}

.mc-landing-pages-img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 30px;
}

.mc-videocall-section .wag-body-p {
  margin-bottom: 30px;
}

.mc-videocall-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.mc-videocall-section picture:last-child .mc-videocall-img {
  margin-bottom: 0;
}

/* ── SidePilot-specific ── */
.sidepilot-pain-points-card {
  width: 516px;
  height: auto;
  justify-content: flex-start;
}

.sidepilot-flow-caption {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
  margin-top: 24px;
  margin-bottom: 24px;
}

.sidepilot-figjam-btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.sidepilot-explore-divider {
  border: none;
  border-top: 1px solid #e8e6e2;
  margin: 10px 0 -40px;
}

.sidepilot-exploration-panel picture,
.sidepilot-exploration-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.sidepilot-final-mock {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.sidepilot-small-mockups {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 64px;
}

.sidepilot-impact-card {
  width: 376px;
  height: 157px;
}

.sidepilot-reflection-p {
  font-size: 15.5px;
}

/* ── Responsive: Wag! ── */
@media (max-width: 700px) {
  .wag-hero { padding: 0 20px; }

  .wag-overview-section { padding: 40px 20px 0; }
  .wag-overview-p { margin-bottom: 30px; }

  .wag-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding-bottom: 40px;
  }

  .wag-pain-points-card {
    width: 335px;
    height: 284px;
    padding: 30px 20px 30px 20px;
  }

  .paway-pain-points-card,
  .sidepilot-pain-points-card {
    height: 265px;
  }

  .wag-pain-points-list li:first-child {
    white-space: normal;
  }

  .wag-challenge-section {
    flex-direction: column;
    padding: var(--space-section-half) 20px;
    gap: 24px;
  }

  .wag-body-p-nowrap {
    white-space: normal;
  }

  .wag-explore-break {
    display: none;
  }

  .wag-approach-section,
  .wag-exploration-section,
  .wag-key-decisions-section,
  .wag-final-solution-section,
  .wag-final-solution-2019-section,
  .wag-impact-section,
  .wag-final-impact-section,
  .wag-reflection-section {
    padding: var(--space-section-half) 20px;
  }

  .wag-approach-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .wag-approach-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .wag-approach-card {
    min-width: 0;
    height: auto;
    padding: 20px 16px;
  }

  .wag-exploration-panel { padding: 56px 20px; }

  .sidepilot-exploration-panel {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-top: 16px;
  }

  .sidepilot-flow-caption {
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .sidepilot-explore-divider {
    margin: 40px 0 0;
  }

  .wag-key-decisions-cards {
    grid-template-columns: 1fr;
  }

  .wag-key-decisions-card {
    padding: 24px 4px;
  }

  .sidepilot-impact-card {
    width: auto;
    height: auto;
  }

  .wag-mock-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .wag-mock-grid .wag-mock {
    width: 207px;
  }

  .wag-filters-figure img {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
  }

  .wag-mock-row-2 {
    flex-direction: column;
    gap: 40px;
  }

  .wag-mock-row-2 .wag-mock {
    width: 207px;
  }

  .wag-mock-row-2 .wag-share-icon {
    display: none;
  }

  .wag-stats-grid {
    grid-template-columns: 1fr;
  }

  .wag-stat-num {
    font-size: 32px;
    white-space: normal;
  }

  .wag-final-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-label { font-size: 24px; }

  .case-study-cta-section { padding: var(--space-section-half) 20px; justify-content: center; }

  .mc-directions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mc-direction-col:first-child picture {
    padding-top: 0;
  }

  .mc-design-directions-section {
    padding-top: var(--space-section-half);
  }

  .mc-directions-year {
    display: none;
  }

  .mc-before-label {
    font-size: 20px;
  }
}

