:root {
  --paper: #f8f4ed;
  --paper-deep: #eee5d8;
  --ink: #211c17;
  --muted: rgba(33, 28, 23, .56);
  --line: rgba(33, 28, 23, .16);
  --accent: #a85e30;
  --night: #100b08;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Karla', sans-serif; overflow-x: hidden; }
a { color: inherit; }
img, video { display: block; width: 100%; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 72px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font: 600 11px/1 'Karla', sans-serif; letter-spacing: .25em; text-decoration: none; }
.site-header nav { display: flex; align-items: center; gap: clamp(24px, 4vw, 52px); }
.site-header nav a { padding: 8px 0; color: var(--muted); font: 500 9px/1.2 'Karla', sans-serif; letter-spacing: .13em; text-transform: uppercase; text-decoration: none; transition: color .2s ease; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--accent); }
.site-header a:focus-visible { outline: 1px solid var(--accent); outline-offset: 6px; }

main { width: min(1180px, calc(100% - 72px)); margin: 0 auto; }
.hero { min-height: 540px; padding: 112px 0 90px; display: grid; grid-template-columns: 1fr minmax(260px, .55fr); grid-template-rows: auto auto 1fr auto; column-gap: 64px; align-items: start; }
.eyebrow, .section-heading > p { margin: 0; color: var(--accent); font: 500 9px/1.2 'Karla', sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { grid-column: 1; margin: 24px 0 0; font: 300 clamp(68px, 10vw, 142px)/.82 'Fraunces', serif; letter-spacing: -.055em; }
.hero-copy { grid-column: 2; grid-row: 2 / span 2; max-width: 430px; margin: 18px 0 0; color: #63452f; font: 300 clamp(20px, 2.2vw, 31px)/1.25 'Fraunces', serif; }
.edition { align-self: end; margin: 72px 0 0; color: var(--muted); font: 400 10px/1.4 'Karla', sans-serif; letter-spacing: .08em; text-transform: uppercase; }

.animation-section { padding: 92px 0 120px; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 150px minmax(260px, .8fr) minmax(280px, 1fr); gap: 28px; align-items: baseline; margin-bottom: 54px; }
.section-heading h2 { margin: 0; font: 300 clamp(40px, 5vw, 68px)/1 'Fraunces', serif; letter-spacing: -.035em; }
.section-heading > span { max-width: 54ch; color: var(--muted); font: 300 13px/1.65 'Karla', sans-serif; }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.video-card { min-width: 0; }
.video-frame { aspect-ratio: 16 / 9; background: var(--night); overflow: hidden; }
.video-frame video { height: 100%; object-fit: contain; background: var(--night); }
.video-meta { min-height: 98px; padding: 18px 0 0; display: grid; grid-template-columns: 76px 1fr; gap: 18px; border-top: 1px solid var(--line); }
.video-meta span, .workflow-card figcaption > span { color: var(--accent); font: 500 8px/1.4 'Karla', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.video-meta p { max-width: 42ch; margin: 0; color: var(--muted); font: 300 12px/1.55 'Karla', sans-serif; }

.workflow-section { padding: 106px 0 144px; border-top: 1px solid var(--line); }
.workflow-heading { margin-bottom: 64px; }
.workflow-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 88px 22px; }
.workflow-card { min-width: 0; margin: 0; }
.workflow-card img { height: auto; object-fit: contain; border: 1px solid rgba(33, 28, 23, .24); background: var(--paper-deep); transition: transform .45s ease; }
.workflow-card:hover img { transform: translateY(-4px); }
.workflow-card figcaption { padding: 20px 0 0; display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 9px 22px; }
.workflow-card h3 { margin: 0; font: 300 27px/1.12 'Fraunces', serif; letter-spacing: -.02em; }
.workflow-card figcaption p { grid-column: 2; max-width: 52ch; margin: 0; color: var(--muted); font: 300 12px/1.6 'Karla', sans-serif; }

footer { width: min(1180px, calc(100% - 72px)); min-height: 136px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font: 500 9px/1.3 'Karla', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
footer a { padding-bottom: 4px; border-bottom: 1px solid var(--line); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 850px) {
  .site-header, main, footer { width: min(100% - 40px, 680px); }
  .site-header { height: 76px; }
  .site-header nav a:not(:last-child) { display: none; }
  .hero { min-height: auto; padding: 88px 0 82px; grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero h1, .hero-copy { grid-column: 1; grid-row: auto; }
  .hero h1 { font-size: clamp(62px, 20vw, 104px); }
  .hero-copy { margin-top: 44px; }
  .edition { margin-top: 64px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .video-grid, .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid { gap: 70px; }
}

@media (max-width: 520px) {
  .site-header, main, footer { width: calc(100% - 28px); }
  .animation-section, .workflow-section { padding: 76px 0 96px; }
  .video-grid { gap: 52px; }
  .video-meta { grid-template-columns: 62px 1fr; }
  .workflow-card figcaption { grid-template-columns: 1fr; }
  .workflow-card figcaption p { grid-column: 1; }
  footer { min-height: 150px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .workflow-card img { transition: none; }
}
/* Other Works annotation pass - 2026-07-19 */
.site-header, main, footer { width: min(1207px, calc(100% - 72px)); }
.hero { min-height: 420px; padding-top: 76px; padding-bottom: 60px; }
.edition { margin-top: 44px; }
.animation-section { padding-top: 72px; padding-bottom: 48px; }
.workflow-section { padding-top: 42px; border-top: 0; }
.workflow-heading { margin-bottom: 40px; }
.workflow-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 12px; }
.workflow-card img { height: clamp(170px, 17vw, 215px); object-fit: contain; object-position: center; }
.workflow-card figcaption { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; }
.workflow-card h3 { font-size: clamp(18px, 1.65vw, 22px); }
.workflow-card figcaption p { grid-column: 1; font-size: 10.5px; line-height: 1.55; }
.ai-process { margin-top: 104px; }
.ai-process-heading { display: grid; grid-template-columns: 150px minmax(280px, .8fr) minmax(280px, 1fr); gap: 28px; align-items: baseline; margin-bottom: 34px; }
.ai-process-heading > p { margin: 0; color: var(--accent); font: 500 9px/1.2 'Karla', sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.ai-process-heading h3 { margin: 0; font: 300 clamp(34px, 4.3vw, 58px)/1 'Fraunces', serif; letter-spacing: -.035em; }
.ai-process-heading > span { max-width: 54ch; color: var(--muted); font: 300 13px/1.65 'Karla', sans-serif; }
.ai-process-visual { margin: 0; overflow: hidden; background: #fbf6ec; }
.ai-process-visual img { aspect-ratio: 1824 / 861; object-fit: cover; }
.ai-process-steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 22px 0 0; list-style: none; }
.ai-process-steps li { min-width: 0; }
.ai-process-steps li > span { display: block; margin-bottom: 9px; color: var(--accent); font: 500 8px/1 'Karla', sans-serif; letter-spacing: .14em; }
.ai-process-steps strong { display: block; color: var(--ink); font: 400 13px/1.25 'Karla', sans-serif; }
.ai-process-steps p { margin: 7px 0 0; color: var(--muted); font: 300 10.5px/1.5 'Karla', sans-serif; }
@media (max-width: 980px) {
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px 16px; }
  .workflow-card img { height: clamp(210px, 32vw, 280px); }
  .ai-process-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 18px; }
}
@media (max-width: 850px) {
  .site-header, main, footer { width: min(100% - 40px, 680px); }
  .hero { padding-top: 64px; padding-bottom: 56px; }
  .workflow-section { padding-top: 32px; }
  .ai-process-heading { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 520px) {
  .site-header, main, footer { width: calc(100% - 28px); }
  .workflow-grid { grid-template-columns: 1fr; gap: 58px; }
  .workflow-card img { height: min(66vw, 260px); }
  .ai-process { margin-top: 82px; }
  .ai-process-visual img { min-height: 250px; object-fit: cover; object-position: center; }
  .ai-process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
}
/* End Other Works annotation pass */

/* AI editing study - 2026-07-20 */
.editing-study { margin-top: 148px; }
.editing-study-heading {
  display: grid;
  grid-template-columns: 150px minmax(320px, .9fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: baseline;
  margin-bottom: 38px;
}
.editing-study-heading > p {
  margin: 0;
  color: var(--accent);
  font: 500 9px/1.2 'Karla', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.editing-study-heading h3 {
  margin: 0;
  font: 300 clamp(34px, 4.3vw, 58px)/1 'Fraunces', serif;
  letter-spacing: -.035em;
}
.editing-study-heading > span {
  max-width: 57ch;
  color: var(--muted);
  font: 300 13px/1.65 'Karla', sans-serif;
}
.editing-study-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.editing-reel { min-width: 0; margin: 0; }
.editing-reel video,
.editing-collage {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.editing-reel video {
  object-fit: contain;
  background: var(--night);
}
.editing-reel figcaption {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding-top: 16px;
}
.editing-reel figcaption span,
.editing-workflow span {
  color: var(--accent);
  font: 500 8px/1.3 'Karla', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.editing-reel figcaption p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font: 300 11px/1.55 'Karla', sans-serif;
}
.editing-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 5px;
  overflow: hidden;
  background: var(--paper-deep);
}
.editing-collage figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}
.editing-collage-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.editing-collage img {
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.editing-collage figure:hover img { transform: scale(1.025); }
.editing-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}
.editing-workflow article {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.editing-workflow h4 {
  margin: 12px 0 0;
  font: 400 15px/1.3 'Karla', sans-serif;
}
.editing-workflow p {
  margin: 9px 0 0;
  color: var(--muted);
  font: 300 10.5px/1.55 'Karla', sans-serif;
}
@media (max-width: 980px) {
  .editing-study-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .editing-study-media {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editing-workflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
  }
}
@media (max-width: 520px) {
  .editing-study { margin-top: 108px; }
  .editing-collage { aspect-ratio: 4 / 3; }
  .editing-reel figcaption { grid-template-columns: 64px 1fr; }
  .editing-workflow {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .editing-collage img { transition: none; }
}
/* End AI editing study */

/* Compact AI workflow note - 2026-07-20 */
.ai-workflow-note {
  display: grid;
  grid-template-columns: 150px minmax(0, 680px);
  gap: 28px;
  margin-top: 70px;
  align-items: start;
}
.ai-workflow-note span {
  color: var(--accent);
  font: 500 9px/1.2 'Karla', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ai-workflow-note p {
  margin: 0;
  color: var(--muted);
  font: 300 13px/1.7 'Karla', sans-serif;
}
.editing-study { margin-top: 112px; }
@media (max-width: 980px) {
  .ai-workflow-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .ai-workflow-note { margin-top: 54px; }
}
/* End compact AI workflow note */

/* Workflow hierarchy annotation pass - 2026-07-20 */
.workflow-heading h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}
.workflow-heading > span {
  font-size: 12px;
  line-height: 1.55;
}
.ai-workflow-note {
  margin-top: 36px;
}
.editing-study {
  margin-top: 64px;
  padding-top: 66px;
  border-top: 1px solid var(--line);
}
@media (max-width: 520px) {
  .workflow-heading h2 {
    font-size: 32px;
  }
  .ai-workflow-note {
    margin-top: 30px;
  }
  .editing-study {
    margin-top: 54px;
    padding-top: 52px;
  }
}
/* End workflow hierarchy annotation pass */

/* Numberless two-part hierarchy - 2026-07-20 */
.clean-heading {
  grid-template-columns: minmax(260px, .8fr) minmax(280px, 1fr);
}
.video-meta {
  grid-template-columns: 1fr;
}
.workflow-card figcaption {
  grid-template-columns: 1fr;
}
.workflow-card figcaption p {
  grid-column: 1;
}
.ai-workflow-note {
  grid-template-columns: minmax(0, 760px);
}
.editing-study-heading {
  grid-template-columns: minmax(320px, .9fr) minmax(280px, 1fr);
}
.editing-study-heading h2 {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  font: 300 clamp(40px, 5vw, 68px)/1 'Fraunces', 'Songti SC', serif;
  letter-spacing: -.035em;
}
.editing-workflow h4 {
  margin-top: 0;
}
@media (max-width: 980px) {
  .clean-heading,
  .editing-study-heading {
    grid-template-columns: 1fr;
  }
  .editing-study-heading h2 {
    margin-bottom: 8px;
  }
}
/* End numberless two-part hierarchy */
/* Workflow belongs to AI Animation, not a third main section */
.workflow-heading h3 {
  margin: 0;
  font: 300 clamp(30px, 3.4vw, 44px)/1 'Fraunces', serif;
  letter-spacing: -.035em;
}
@media (max-width: 520px) {
  .workflow-heading h3 {
    font-size: 32px;
  }
}
/* Animation-to-workflow grouping refinement - 2026-07-20 */
.animation-section {
  padding-bottom: 28px;
}
.workflow-section {
  padding-top: 22px;
}
@media (max-width: 850px) {
  .workflow-section {
    padding-top: 18px;
  }
}
/* End animation-to-workflow grouping refinement */

/* K&K Bakery vibe-coded venture */
.vibe-app-section { padding: 92px 0 120px; border-top: 1px solid var(--line); }
.vibe-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(54px, 8vw, 110px); align-items: end; }
.vibe-story { max-width: 710px; }
.vibe-story h3 { max-width: 15ch; margin: 22px 0 28px; font: 300 clamp(38px, 5.2vw, 66px)/.98 'Fraunces', serif; letter-spacing: -.04em; }
.vibe-story > p:not(.eyebrow) { max-width: 66ch; margin: 0 0 18px; color: var(--muted); font: 300 13px/1.72 'Karla', sans-serif; }
.vibe-facts { margin: 0; border-top: 1px solid var(--line); }
.vibe-facts > div { display: grid; grid-template-columns: 82px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.vibe-facts dt { color: var(--accent); font: 500 8px/1.4 'Karla', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.vibe-facts dd { margin: 0; color: var(--muted); font: 300 11px/1.5 'Karla', sans-serif; }
.app-shot-grid { width: min(980px, 100%); margin: 64px auto 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px 16px; }
.app-shot-card { min-width: 0; margin: 0; }
.app-shot-card button { width: 100%; padding: 0; border: 0; border-radius: 16px; background: #f2e8d8; box-shadow: 0 12px 34px rgba(65, 46, 31, .08); overflow: hidden; cursor: zoom-in; }
.app-shot-card img { height: clamp(280px, 31vw, 390px); object-fit: cover; object-position: top center; border: 1px solid rgba(82, 58, 40, .16); border-radius: 16px; transition: transform .35s ease; }
.app-shot-card button:hover img, .app-shot-card button:focus-visible img { transform: scale(1.018); }
.app-shot-card button:focus-visible { outline: 1px solid var(--accent); outline-offset: 5px; }
.app-shot-card figcaption { padding: 12px 3px 0; color: var(--muted); font: 500 8px/1.4 'Karla', sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.app-lightbox { width: min(580px, calc(100% - 32px)); max-height: 92svh; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: 0 24px 90px rgba(22, 15, 10, .28); }
.app-lightbox::backdrop { background: rgba(20, 14, 10, .72); backdrop-filter: blur(8px); }
.app-lightbox > img { max-height: 76svh; object-fit: contain; border-radius: 10px; background: var(--paper-deep); }
.app-lightbox-close { display: block; margin: 0 0 10px auto; padding: 8px 0; border: 0; background: transparent; color: var(--muted); font: 500 9px/1 'Karla', sans-serif; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.app-lightbox-footer { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding-top: 12px; }
.app-lightbox-footer button { padding: 7px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); font: 500 9px/1 'Karla', sans-serif; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.app-lightbox-footer p { margin: 0; color: var(--muted); font: 300 11px/1.4 'Karla', sans-serif; text-align: center; }
@media (max-width: 850px) {
  .vibe-intro { grid-template-columns: 1fr; align-items: start; }
  .app-shot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .vibe-app-section { padding: 76px 0 96px; }
  .app-shot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 10px; margin-top: 48px; }
  .app-shot-card img { height: min(82vw, 320px); border-radius: 12px; }
  .app-shot-card button { border-radius: 12px; }
  .app-lightbox-footer { gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .app-shot-card img { transition: none; }
}
/* End K&K Bakery venture */

/* Compact K&K Bakery screen row - 2026-07-20 */
.vibe-app-section { padding: 68px 0 82px; }
.vibe-app-section .section-heading { margin-bottom: 38px; }
.vibe-intro { gap: clamp(38px, 6vw, 76px); }
.vibe-story h3 { margin: 16px 0 20px; font-size: clamp(34px, 4.25vw, 54px); }
.vibe-story > p:not(.eyebrow) { margin-bottom: 13px; line-height: 1.62; }
.vibe-facts > div { padding: 13px 0; }
.app-shot-grid { width: 100%; margin-top: 42px; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 10px; }
.app-shot-card img { height: clamp(220px, 21vw, 286px); border-radius: 12px; }
.app-shot-card button { border-radius: 12px; }
.app-shot-card figcaption { padding-top: 9px; font-size: 7px; letter-spacing: .1em; }
@media (max-width: 980px) {
  .app-shot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 10px; }
  .app-shot-card img { height: clamp(250px, 42vw, 340px); }
}
@media (max-width: 520px) {
  .vibe-app-section { padding: 58px 0 72px; }
  .app-shot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
  .app-shot-card img { height: min(82vw, 320px); }
}
/* End compact K&K Bakery screen row */

/* K&K Bakery live app entry - 2026-07-20 */
.vibe-side { min-width: 0; }
.vibe-live-link { margin-top: 18px; padding: 18px 20px 17px; display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; align-items: end; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); text-decoration: none; transition: color .3s ease, background .3s ease, transform .3s ease; }
.vibe-live-link span { grid-column: 1 / -1; color: rgba(248,244,237,.58); font: 500 8px/1.2 'Karla', sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.vibe-live-link strong { font: 300 clamp(21px, 2.1vw, 29px)/1.05 'Fraunces', serif; letter-spacing: -.025em; }
.vibe-live-link small { padding-bottom: 3px; color: rgba(248,244,237,.64); font: 500 8px/1.2 'Karla', sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.vibe-live-link:hover, .vibe-live-link:focus-visible { color: var(--ink); background: var(--paper-deep); transform: translateY(-2px); }
.vibe-live-link:hover :is(span,small), .vibe-live-link:focus-visible :is(span,small) { color: var(--muted); }
.vibe-live-link:focus-visible { outline: 1px solid var(--accent); outline-offset: 5px; }
@media (max-width: 520px) {
  .vibe-live-link { grid-template-columns: 1fr; }
  .vibe-live-link small { padding-bottom: 0; }
}
/* End K&K Bakery live app entry */


/* Unified header + compact right-side Vibe Coding App copy - 2026-07-20 */
.vibe-app-section { padding-top: 52px; padding-bottom: 66px; }
.vibe-app-section .section-heading { margin-bottom: 28px; }
.vibe-intro { align-items: start; gap: clamp(42px, 7vw, 92px); }
.vibe-story h3 { max-width: 12ch; margin: 15px 0 0; font-size: clamp(34px, 4vw, 52px); line-height: .94; }
.vibe-copy { padding: 0 0 10px; }
.vibe-copy p { max-width: 58ch; margin: 0 0 10px; color: var(--muted); font: 300 11.5px/1.55 'Karla', sans-serif; }
.vibe-facts > div { padding: 10px 0; }
.vibe-live-link { margin-top: 12px; padding: 14px 16px 13px; }
.app-shot-grid { margin-top: 32px; }
@media (max-width: 850px) {
  .vibe-app-section { padding-top: 46px; }
  .vibe-intro { gap: 28px; }
  .vibe-story h3 { max-width: 15ch; }
}
@media (max-width: 520px) {
  .vibe-app-section { padding: 40px 0 58px; }
  .vibe-app-section .section-heading { margin-bottom: 24px; }
  .vibe-story h3 { font-size: clamp(32px, 11vw, 44px); }
  .vibe-copy p { font-size: 11px; }
}
/* End unified header + compact right-side Vibe Coding App copy */


/* Annotation alignment pass - 2026-07-20 */
.vibe-app-section { padding-top: 44px; padding-bottom: 58px; }
.vibe-app-section .section-heading { margin-bottom: 22px; grid-template-columns: 1fr; }
.vibe-intro { align-items: start; }
.vibe-story h3 { width: min(375px, 100%); max-width: none; margin-top: 12px; font-size: 42px; line-height: .94; }
.vibe-story .vibe-live-link { width: min(470px, 100%); margin-top: 22px; }
.vibe-side { padding-top: 26px; }
.vibe-summary { max-width: 58ch; margin: 0 0 22px; color: var(--muted); font: 300 11.5px/1.55 'Karla', sans-serif; }
.vibe-copy { padding-bottom: 6px; }
.vibe-copy p { margin-bottom: 8px; }
.vibe-facts > div { padding: 9px 0; }
.app-shot-grid { margin-top: 22px; }
@media (max-width: 850px) {
  .vibe-app-section { padding-top: 40px; }
  .vibe-side { padding-top: 0; }
  .vibe-summary { margin-bottom: 18px; }
  .vibe-story .vibe-live-link { margin-top: 18px; }
}
@media (max-width: 520px) {
  .vibe-app-section { padding: 36px 0 52px; }
  .vibe-story h3 { width: 100%; font-size: clamp(34px, 10.5vw, 42px); }
  .app-shot-grid { margin-top: 26px; }
}
/* End annotation alignment pass */


/* Embedded AI Animation players - 2026-07-20 */
.video-frame iframe { width: 100%; height: 100%; display: block; border: 0; background: var(--night); }
/* End embedded AI Animation players */





/* Merged Workflow row - 2026-07-20 */
.workflow-grid { row-gap: 54px; }
.process-step-card img { background: var(--night); }
/* End merged Workflow row */
