/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #faf8fd;
  --text: #14141e;
  --text-muted: #5a5a72;
  --violet-50: #f7f3fc;
  --violet-100: #ece4f5;
  --violet-200: #dad0ec;
  --violet-accent: #6b46c1;
  --violet-deep: #4721fb;
  --border: #ece9f1;

  --radius: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

::selection { background: var(--violet-100); color: var(--text); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.brand {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}
.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
  font-weight: 500;
}
.nav a:hover { color: var(--violet-deep); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet-deep);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 88px;
  padding-bottom: 24px;
}
.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 56px;
  transition: color 0.2s ease;
  font-weight: 500;
}
.back-link:hover { color: var(--violet-deep); }

.display {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2.75rem, 7.2vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-top: 28px;
  max-width: 20ch;
}
.display em {
  font-style: italic;
  color: var(--violet-deep);
  font-weight: 400;
  font-optical-sizing: auto;
}

.lede {
  max-width: 640px;
  margin-top: 36px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
}

/* ---------- Meta strip ---------- */
.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 64px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meta-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
}
.meta-value {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- Feature image ---------- */
.feature-image {
  padding-top: 64px;
}
.feature-image > .eyebrow {
  margin-bottom: 28px;
}
.feature-card--titled {
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
.feature-card--titled .eyebrow {
  align-self: flex-start;
}
.feature-card--titled .feature-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card--titled .feature-card-row.feature-card-row--two {
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
}
.feature-card--titled .feature-card-row img {
  width: 100%;
  min-width: 0;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.feature-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--violet-50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px;
}
.story-grid + .feature-card {
  margin-top: 56px;
}
.feature-card img {
  max-height: 580px;
  width: auto;
  object-fit: contain;
}
.feature-card video {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}
.wide-figure video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.feature-card.feature-card--row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card.feature-card--row-three {
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
}
.feature-card.feature-card--row-two {
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
}
.feature-card-cell {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card-cell img {
  width: 100%;
  min-width: 0;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}
.feature-card-cell figcaption {
  margin-top: 16px;
  padding: 0 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}
.feature-card-cell figcaption strong {
  font-weight: 600;
  font-style: italic;
}
.feature-card--row img {
  width: 100%;
  min-width: 0;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* ---------- Story sections ---------- */
.story {
  padding-top: 120px;
  padding-bottom: 24px;
}
.story-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 96px;
  max-width: calc(var(--container) - 80px);
  margin: 0 auto;
}
.story-label {
  position: sticky;
  top: 110px;
  align-self: start;
}
.story-label .index {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--violet-deep);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}
.story-label h2 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.story-body {
  max-width: 660px;
}
.story-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
}
.story-body p:last-child { margin-bottom: 0; }

.story-body p.first-para {
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text);
}
.story-body strong {
  font-weight: 600;
  color: var(--text);
}
.story-body p strong {
  background-image: linear-gradient(180deg, transparent 63%, var(--violet-100) 63%);
  padding: 0 2px;
  border-radius: 2px;
}

/* Sub-headings inside story-body */
.story-body .sub-heading {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
}
.story-body .sub-heading:first-child { margin-top: 0; }

/* ---------- Numbered list ---------- */
.numbered-list {
  list-style: none;
  counter-reset: numbered;
  margin-top: 32px;
}
.numbered-list li {
  counter-increment: numbered;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 28px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
}
.numbered-list li::before {
  content: "0" counter(numbered);
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  color: var(--violet-deep);
  font-size: 18px;
  flex-shrink: 0;
  width: 32px;
  font-weight: 500;
}
.numbered-list li:last-child {
  border-bottom: 1px solid var(--border);
}

/* ---------- Key takeaways: 3-column grouped layout ---------- */
.takeaways-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin: 72px auto 0;
  max-width: calc(var(--container) - 80px);
}
.takeaways-columns > div {
  padding: 0;
}
.takeaways-columns .sub-heading {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
}
.takeaways-columns > div > p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
.takeaways-columns .numbered-list {
  margin-top: 16px;
}
.takeaways-columns .numbered-list li {
  padding: 14px 0;
  font-size: 15.5px;
  line-height: 1.55;
  gap: 14px;
}
.takeaways-columns .numbered-list li:first-child { border-top: none; }
.takeaways-columns .numbered-list li:last-child { border-bottom: none; }
.takeaways-columns .numbered-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-deep);
  margin-top: 9px;
  flex-shrink: 0;
}

/* ---------- Intent grid (3 lavender cards side by side) ---------- */
.intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.intent-grid .segment-header {
  width: auto;
  padding: 40px 36px;
}

/* ---------- Pull quote (problem statement) ---------- */
.problem-statement {
  max-width: calc(var(--container) - 80px);
  margin: 72px auto 0;
}
.problem-statement.problem-statement--inline {
  max-width: none;
  margin: 48px 0 0;
}
.problem-statement--inline .pull-quote {
  font-size: 26px;
}
.problem-statement .index {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--violet-deep);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}
.pull-quote {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.pull-quote::first-letter {
  color: var(--violet-deep);
}

/* ---------- Timeline list ---------- */
.timeline-list {
  list-style: none;
  counter-reset: timeline;
  padding-left: 0;
  margin-top: 32px;
  position: relative;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--border);
}
.timeline-list li {
  counter-increment: timeline;
  position: relative;
  padding: 0 0 32px 56px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
}
.timeline-list li:last-child { padding-bottom: 0; }
.timeline-list li::before {
  content: "0" counter(timeline);
  position: absolute;
  left: 0;
  top: -4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--violet-deep);
  font-weight: 500;
}

/* ---------- Bento grid for workshop photos ---------- */
.bento {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.bento-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--violet-50);
  aspect-ratio: 4 / 3;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-item.bento-lg {
  grid-row: span 2;
  aspect-ratio: auto;
}
.bento-item.bento-fit {
  background: #fff;
  border: 1px solid var(--border);
}
.bento-item.bento-fit img {
  object-fit: contain;
  background: #fff;
}
.bento.bento--two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px;
  align-items: start;
}
.bento--two figure.bento-item {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bento--two figure.bento-item img {
  border-radius: var(--radius-md);
  background: var(--violet-50);
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bento--two figure.bento-item figcaption {
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}

/* ---------- Wide figure (structure) ---------- */
.wide-figure {
  margin-top: 88px;
  background: var(--violet-50);
  border-radius: var(--radius);
  padding: 64px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wide-figure img {
  width: 100%;
  max-width: 920px;
}
.wide-figure figcaption {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}

/* ---------- Segments ---------- */
.segment {
  margin-top: 72px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.segment-header {
  flex: 0 0 auto;
  width: 520px;
  max-width: 100%;
  scroll-snap-align: start;
  padding: 40px 44px;
  background: var(--violet-50);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.segment-tag {
  display: inline-block;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  color: var(--violet-deep);
  font-size: 13.5px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  font-weight: 500;
}
.segment-header h3 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}
.segment-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 12px;
}
.segment-header p:last-child { margin-bottom: 0; }
.segment-header p.segment-goal {
  color: var(--text-muted);
}
.segment-header p.segment-goal strong {
  font-weight: 600;
  color: var(--text-muted);
}

/* Wireframe with hotspots (directional designs) */
.wireframe-set {
  margin-top: 64px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.wireframe-set + .wireframe-set {
  margin-top: 48px;
}
.wireframe-header {
  grid-column: 1 / -1;
  padding: 0 4px 8px;
}
.wireframe-header .segment-tag {
  display: inline-block;
  margin-bottom: 10px;
}
.wireframe-header h3 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}
.wireframe-header .hotspot-hint {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
}
.wireframe-hotspot {
  position: relative;
  background: var(--violet-50);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.wireframe-hotspot img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--violet-deep);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(71, 33, 251, 0.4);
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.hotspot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(71, 33, 251, 0.18);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.6s ease;
  z-index: -1;
}
.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 14px rgba(71, 33, 251, 0.55);
  outline: none;
}
.hotspot:hover::before,
.hotspot.is-active::before {
  opacity: 1;
  transform: scale(1.4);
}

.hotspot-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  width: 240px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  box-shadow: 0 10px 36px rgba(20, 20, 30, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 3;
  pointer-events: none;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0;
}
.hotspot--left .hotspot-tooltip {
  left: auto;
  right: calc(100% + 14px);
}
.hotspot:hover .hotspot-tooltip,
.hotspot:focus-visible .hotspot-tooltip,
.hotspot.is-active .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 720px) {
  .feature-card.feature-card--row,
  .feature-card--titled .feature-card-row {
    grid-template-columns: 1fr;
  }
  .hotspot { width: 14px; height: 14px; }
  .hotspot-tooltip,
  .hotspot--left .hotspot-tooltip {
    left: 50%;
    right: auto;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: min(220px, 65vw);
    font-size: 13px;
    padding: 12px 14px;
  }
}
.segment-figures {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--violet-200) transparent;
}
.segment-figures::-webkit-scrollbar {
  height: 8px;
}
.segment-figures::-webkit-scrollbar-track {
  background: transparent;
}
.segment-figures::-webkit-scrollbar-thumb {
  background: var(--violet-200);
  border-radius: 4px;
}
.segment-figures::-webkit-scrollbar-thumb:hover {
  background: var(--violet-accent);
}
.segment-figures figure {
  flex: 0 0 auto;
  width: 750px;
  max-width: 100%;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin: 0;
  box-sizing: border-box;
}
.segment-figures figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Gallery two-up ---------- */
.gallery-group {
  margin-top: 72px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gallery-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.gallery-two figure {
  border-radius: var(--radius-md);
  background: var(--violet-50);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-two figure img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.gallery-two figure.device {
  padding: 32px;
  aspect-ratio: 3 / 4;
}
.gallery-two figure .zoomable {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.gallery-two figure .zoomable:hover {
  opacity: 0.85;
}
.gallery-two figure:has(figcaption) {
  display: block;
  background: transparent;
  padding: 0;
  overflow: visible;
  aspect-ratio: auto;
  border-radius: 0;
}
.gallery-two figure:has(figcaption) > .zoomable,
.gallery-two figure:has(figcaption) > img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 24px;
  width: 100%;
}
.gallery-two figure:has(figcaption) > img {
  max-width: 100%;
}
.gallery-two figure figcaption {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}

/* ---------- Project grid (work landing) ---------- */
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: calc(var(--container) - 80px);
  margin: 0 auto;
}
.project-card {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.project-card:hover {
  border-color: var(--violet-deep);
  transform: translateY(-2px);
  background: var(--violet-50);
}
.project-card-eyebrow {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--violet-deep);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.project-card-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 14px;
}
.project-card-description {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 24px;
  flex-grow: 1;
}
.project-card-cta {
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--violet-deep);
  font-weight: 500;
}

/* ---------- Gallery three-up (research / screenshots) ---------- */
.gallery-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.gallery-three figure {
  margin: 0;
  background: var(--violet-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-three figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* ---------- Idea grid (2x2 image + caption) ---------- */
.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  margin-top: 56px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.idea-grid .idea {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.idea-grid .idea-image {
  background: var(--violet-50);
  border-radius: var(--radius-md);
  padding: 32px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.idea-grid .idea-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.idea-grid figcaption {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
}
.idea-grid .idea-tag {
  display: block;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-style: italic;
  color: var(--violet-deep);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Story grid variant — second inner grid inside the same section */
.story-grid + .story-grid--findings,
.bento + .story-grid--findings,
.gallery-two + .story-grid--findings,
.gallery-three + .story-grid--findings,
.feature-image + .story-grid--findings,
.feature-card + .story-grid--findings,
.problem-statement + .story-grid--findings {
  margin-top: 72px;
}

/* ---------- Company block (homepage selected work) ---------- */
.company-block {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin: 0;
}
.company-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.company-block:last-child {
  border-bottom: 1px solid var(--border);
}
.company-name {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  line-height: 1.2;
}
.company-logo {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}
.company-blurb {
  margin: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
}
.company-blurb + .company-blurb {
  font-size: 16px;
  color: var(--text-muted);
}
.company-projects {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-projects li {
  margin-bottom: 10px;
}
.company-projects li:last-child {
  margin-bottom: 0;
}
.company-projects a {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--violet-deep);
  text-decoration: none;
}
.company-projects a:hover {
  text-decoration: underline;
}
.company-projects-coming {
  margin: 0;
  color: var(--text-muted);
  font-style: italic;
  font-size: 15.5px;
}

/* ---------- Engagement / Ways to work (about page drafts) ---------- */
.draft-banner {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-deep);
  background: var(--violet-50);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 24px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.engagement-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
}
.engagement-card .engagement-tag {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-deep);
  font-weight: 600;
}
.engagement-card h3 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.3;
}
.engagement-card .engagement-who {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.55;
}
.engagement-card ul {
  margin: 0;
  padding-left: 20px;
}
.engagement-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.engagement-card--accent {
  background: var(--violet-50);
  border-color: transparent;
}
.engagement-card--accent p {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
.craft-note {
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .engagement-grid { grid-template-columns: 1fr; }
}

/* ---------- Hi-fi gallery strip ---------- */
.hifi-strip {
  background: var(--violet-50);
  padding: 96px 40px;
  margin-top: 88px;
}
.hifi-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.hifi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.hifi-row.hifi-row--three {
  grid-template-columns: repeat(3, 1fr);
}
.hifi-item {
  min-width: 0;
  margin: 0;
}
.hifi-item img {
  max-height: 500px;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hifi-item figcaption {
  margin-top: 16px;
  padding: 0 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}
.hifi-item figcaption strong {
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 960px) {
  .hifi-strip {
    padding: 64px 20px;
    margin-top: 64px;
  }
  .hifi-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .hifi-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Results ---------- */
.results {
  background: var(--violet-100);
  padding: 128px 0;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
.results::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(71, 33, 251, 0.14), transparent);
  pointer-events: none;
}
.section-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 28px;
  max-width: 20ch;
  color: var(--text);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}
.stats.stats--inline {
  margin-top: 0;
  gap: 12px;
}
.stats.stats--inline .stat {
  padding: 24px;
  min-height: 180px;
}
.stats.stats--inline .stat-num {
  font-size: 56px;
  margin-bottom: 16px;
}
.stats.stats--inline .stat p {
  font-size: 14.5px;
  line-height: 1.45;
}
.stat {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 40px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 80px;
  font-weight: 400;
  color: var(--violet-deep);
  line-height: 0.9;
  display: block;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}
.stat p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  margin-top: auto;
}
.stat p em {
  color: var(--violet-deep);
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-size: 17px;
}

/* ---------- Guidelines 2-col cards ---------- */
.guidelines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  max-width: calc(var(--container) - 80px);
  margin-left: auto;
  margin-right: auto;
}
.guidelines-card {
  background: var(--violet-50);
  border-radius: var(--radius);
  padding: 64px 44px;
}
.guidelines-card h3 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.guidelines-card .numbered-list {
  margin-top: 8px;
}
.guidelines-card .numbered-list li {
  padding: 10px 0;
  font-size: 15.5px;
  line-height: 1.5;
  gap: 20px;
  color: var(--text-muted);
  border-top: none;
}
.guidelines-card .numbered-list li:last-child {
  border-bottom: none;
}
.guidelines-card .numbered-list li::before {
  font-size: 15px;
  width: 28px;
}

/* ---------- Shipped features (paginated tabs) ---------- */
.shipped {
  background: var(--violet-100);
  padding: 128px 0 0;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
.shipped::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(71, 33, 251, 0.14), transparent);
  pointer-events: none;
}
.shipped-heading {
  max-width: 640px;
  margin-bottom: 80px;
}
.shipped-heading .section-title {
  margin-top: 28px;
}
.shipped-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.shipped-slides {
  position: relative;
  min-height: 180px;
}
.shipped-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.shipped-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.shipped-slide .stat-num {
  margin-bottom: 24px;
}
.shipped-slide p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  max-width: 320px;
  margin: 0;
}
.shipped-slide p em {
  color: var(--violet-deep);
  font-style: italic;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-size: 17px;
}
.shipped-dots {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.shipped-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}
.shipped-dot:hover { transform: scale(1.15); }
.shipped-dot.is-active {
  background: var(--violet-deep);
}
.shipped-credit {
  margin-top: 56px;
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 320px;
}
.shipped-media {
  position: relative;
  aspect-ratio: 746 / 560;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  background: #ffffff;
}
.shipped-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.shipped-image.is-active {
  opacity: 1;
  pointer-events: auto;
}
.shipped-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Learnings ---------- */
.learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.learning-grid article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  background: #ffffff;
}
.learning-grid article:hover {
  border-color: var(--violet-deep);
  transform: translateY(-2px);
  background: var(--violet-50);
}
.learning-grid h4 {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.learning-grid p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* 4-col flat variant with dividers (no cards) */
.learning-grid.learning-grid--flat {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}
.learning-grid.learning-grid--flat article {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 28px;
  border-left: 1px solid var(--border);
  transition: none;
}
.learning-grid.learning-grid--flat article:first-child {
  border-left: none;
  padding-left: 0;
}
.learning-grid.learning-grid--flat article:last-child {
  padding-right: 0;
}
.learning-grid.learning-grid--flat article:hover {
  background: transparent;
  transform: none;
  border-color: var(--border);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0;
  margin-top: 120px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.next-project {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: color 0.2s ease;
}
.next-project:hover { color: var(--violet-deep); }
.next-project .next-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.copyright {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: auto;
}

/* ---------- Concept pager (2-image paginated, no bg) ---------- */
.concept-pager {
  max-width: calc(var(--container) - 80px);
  margin: 56px auto 0;
}
.concept-pager-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
}
.concept-pager-image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.concept-pager-image.is-active {
  opacity: 1;
  pointer-events: auto;
}
.concept-pager-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.concept-pager-dots {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}
.concept-pager-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.concept-pager-dot:hover { transform: scale(1.15); }
.concept-pager-dot.is-active { background: var(--violet-deep); }
.concept-pager-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  padding: 0;
}
.concept-pager-arrow:hover {
  background: var(--violet-deep);
  color: #ffffff;
  border-color: var(--violet-deep);
}
.concept-pager-arrow--prev { left: 16px; }
.concept-pager-arrow--next { right: 16px; }

.concept-pager--borderless .concept-pager-stage { border: none; }

/* ---------- Positioning card (lavender block with eyebrow, title, pager) ---------- */
.positioning-card {
  background: var(--violet-50);
  border-radius: var(--radius);
  padding: 72px 64px;
  margin: 72px auto 0;
  max-width: calc(var(--container) - 80px);
}
.positioning-card .eyebrow {
  margin: 0 0 28px;
}
.positioning-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 48px;
  max-width: 640px;
}
.concept-pager--in-card {
  margin: 0;
  max-width: none;
}

/* ---------- Split columns (2-col text section) ---------- */
.split-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin: 72px auto 0;
  max-width: calc(var(--container) - 80px);
}
.split-cols.split-cols--2 { grid-template-columns: 1fr 1fr; gap: 64px; }
.split-cols .sub-heading {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
}
.split-cols p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}
.split-cols p + p {
  margin-top: 14px;
}
.findings-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.findings-list li {
  position: relative;
  padding: 0 0 0 22px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}
.findings-list li:last-child { margin-bottom: 0; }
.findings-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-deep);
}
.findings-list li strong {
  color: var(--text);
  font-weight: 600;
  background-image: linear-gradient(180deg, transparent 63%, var(--violet-100) 63%);
  padding: 0 2px;
  border-radius: 2px;
}

.split-cols .dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.split-cols .dash-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.55;
}
.split-cols .dash-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet-deep);
  margin-top: 8px;
  flex-shrink: 0;
}
.split-cols .dash-list em {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-style: italic;
}

/* ---------- Tinkering / posts list ---------- */
.story.story--tight { padding-top: 40px; }
.posts-list {
  display: flex;
  flex-direction: column;
  max-width: calc(var(--container) - 80px);
  margin: 0 auto;
}
.posts-empty {
  color: var(--text-muted);
  font-size: 16px;
}
.post-card {
  display: block;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.post-card:last-child { border-bottom: 1px solid var(--border); }
.post-card:hover { opacity: 0.75; }
.post-date {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.post-title {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  font-optical-sizing: auto;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
}
.post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.post-link {
  font-size: 13px;
  color: var(--violet-deep);
  font-weight: 500;
}

/* ---------- Experience list (about page) ---------- */
.experience-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.experience-list li {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.experience-list li:last-child { border-bottom: 1px solid var(--border); }
.experience-list .experience-date {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.experience-list .sub-heading {
  margin: 0 0 8px;
  font-size: 22px;
}
.experience-list p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.contact-link {
  color: var(--violet-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--violet-deep);
  padding-bottom: 1px;
}
.contact-link:hover { opacity: 0.75; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .container { padding: 0 28px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-label { position: static; }
  .story-label h2 { font-size: 26px; }
  .meta-strip { grid-template-columns: 1fr 1fr; gap: 36px 28px; padding-top: 44px; padding-bottom: 44px; margin-bottom: 32px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-item.bento-lg { grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery-two, .gallery-three, .guidelines-grid, .idea-grid, .intent-grid, .learning-grid, .stats, .wireframe-set, .takeaways-columns, .split-cols { grid-template-columns: 1fr; }
  .learning-grid.learning-grid--flat { grid-template-columns: 1fr; }
  .learning-grid.learning-grid--flat article {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 24px 0;
  }
  .learning-grid.learning-grid--flat article:first-child {
    padding-top: 0;
    border-top: none;
  }
  .learning-grid.learning-grid--flat article:last-child {
    padding-bottom: 0;
  }
  .split-cols { gap: 40px; margin-top: 48px; }
  .concept-pager { margin-top: 40px; }
  .concept-pager-stage { aspect-ratio: 4 / 3; }
  .positioning-card { padding: 48px 32px; margin-top: 56px; }
  .positioning-title { font-size: 34px; margin-bottom: 36px; }
  .takeaways-columns { gap: 32px; }
  .guidelines-card { padding: 28px; }
  .guidelines-card h3 { font-size: 26px; }
  .feature-card { padding: 28px; }
  .feature-card.feature-card--row,
  .feature-card--titled .feature-card-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .wide-figure { padding: 32px; }
  .results { padding: 88px 0; }
  .shipped { padding: 88px 0 0; margin-top: 80px; }
  .shipped-heading { margin-bottom: 40px; }
  .shipped-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .shipped-slides { min-height: auto; }
  .shipped-slide {
    position: static;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .shipped-slide.is-active { display: block; }
  .shipped-slide .stat-num { font-size: 48px; margin-bottom: 16px; }
  .shipped-slide p { max-width: none; }
  .shipped-dots { margin-top: 28px; }
  .shipped-credit { margin-top: 32px; max-width: none; }
  .shipped-media { aspect-ratio: 16 / 10; }
  .story { padding-top: 80px; }
  .story-label { padding-top: 24px; }
  .segment-header { padding: 28px; }
  .segment-header h3 { font-size: 26px; }
  .segment-figures figure { padding: 20px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { gap: 20px; }
  .nav a { font-size: 13px; }
  .hero { padding-top: 56px; }
  .project-grid { grid-template-columns: 1fr; gap: 16px; }
  .project-card { padding: 28px 24px; }
  .project-card-title { font-size: 24px; }
  .back-link { margin-bottom: 36px; }
  .meta-strip { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; padding-bottom: 28px; }
  .feature-card { padding: 20px 14px; }
  .feature-card img { max-height: 440px; }
  .positioning-card { padding: 36px 22px; }
  .positioning-title { font-size: 28px; margin-bottom: 28px; }
  .lede { font-size: 17px; }
  .story-body p.first-para { font-size: 19px; }
  .story-body p { font-size: 17px; }
  .stat { padding: 28px; min-height: 0; }
  .stat-num { font-size: 64px; margin-bottom: 20px; }
  .footer-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .bento { grid-template-columns: 1fr; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
