:root {
  --page: #F7F9FC;
  --header: #234A73;
  --panel: #FFFFFF;
  --paper: #ffffff;
  --paper-warm: #FFFFFF;
  --ink: #2F343B;
  --muted: #667085;
  --accent: #1E88E5;
  --border: #B8C2CC;
  --soft-border: #B8C2CC;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --paper-shadow: 0 10px 24px rgba(67, 55, 39, 0.12);
  --max: 1000px;
  --rotate-left: -1.4deg;
  --rotate-right: 1.2deg;
  --rotate-soft-left: -0.8deg;
  --rotate-soft-right: 0.9deg;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 24px 24px, rgba(34, 34, 34, 0.025) 1px, transparent 1.4px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 36%),
    var(--page);
  background-size: 38px 38px, auto, auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(34, 34, 34, 0.32); outline-offset: 3px; }

.site-header { background: var(--header); border-bottom: 1px solid rgba(255, 255, 255, 0.24); position: relative; z-index: 10; }
.header-inner, .section-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: #FFFFFF; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 48px; height: 38px; display: inline-grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 2px; font-size: 0.78rem; letter-spacing: 0.08em; }
.brand-name { color: #FFFFFF; font-size: 1.18rem; font-weight: 400; }
.site-nav { display: flex; align-items: center; gap: 20px; font-family: Inter, Arial, sans-serif; font-size: 0.9rem; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.menu-toggle { display: none; border: 1px solid rgba(34, 34, 34, 0.32); background: rgba(255, 255, 255, 0.25); color: #FFFFFF; min-height: 40px; padding: 8px 14px; font: inherit; }


.hero-landing {
  min-height: auto;
  padding: 54px 0 38px;
  background: #3B78B5;
  color: #FFFFFF;
}


.hero-text-panel {
  grid-column: 1;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 34%),
    #3B78B5;
  color: #FFFFFF;
}
.hero-landing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  text-align: left;
}

.hero-kicker {
  margin: 0 0 20px;
  color: #FFFFFF;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.4;
}

.hero-text-panel h1 {
  max-width: 620px;
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.16;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(240, 221, 200, 0.12);
}

.hero-cycle {
  min-height: 116px;
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-bottom: 24px;
  font-family: "Courier New", Courier, monospace;
}

.hero-cycle-line {
  margin: 0;
  width: 22ch;
  min-height: 1.35em;
  text-align: left;
  white-space: nowrap;
  color: #FFFFFF;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
  transition: color 220ms ease, text-shadow 220ms ease, opacity 220ms ease;
}

.hero-cycle-line:nth-child(2) {
  margin-left: 2.2ch;
}

.hero-cycle-line:nth-child(3) {
  margin-left: 4.4ch;
}

.hero-cycle-line.is-active {
  color: #FFFFFF;
  text-shadow: 0 0 14px rgba(255, 198, 128, 0.28);
}

.hero-cycle-line.is-empty {
  opacity: 0;
}

.hero-cycle-cursor::after {
  content: "|";
  margin-left: 0.08em;
  color: #FFFFFF;
}

.hero-action-list {
  width: min(520px, 100%);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  text-align: left;
}

.hero-action-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.25;
}

.hero-action-list a {
  text-decoration: none;
}

.hero-action-list a:hover,
.hero-action-list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 7px;
}

.hero-action-icon {
  display: inline-grid;
  place-items: center;
  color: #FFFFFF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15em;
  line-height: 1;
}
.section { padding: 46px 0; }
.journey-section, .stories-explore-section, .tagline-transition, .where-section, .motion-section, .explore-section, .principle-section, .settle-section { background: #D9ECFA; }
.workspace-scene { position: relative; }
.hero { padding-top: 60px; padding-bottom: 34px; }
.hero-workspace { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr); gap: clamp(28px, 6vw, 76px); align-items: center; }
.hero-copy-block { max-width: 610px; }
.eyebrow, .label, .entry-type { color: var(--accent); font-family: Inter, Arial, sans-serif; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 10px; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: #1F2A44; max-width: 620px; font-size: clamp(1.65rem, 3vw, 2.25rem); line-height: 1.16; letter-spacing: 0; margin-bottom: 24px; font-weight: 400; }
h2 { color: #1F2A44; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.18; margin-bottom: 16px; font-weight: 400; }
h3 { color: #1F2A44; font-size: 1.08rem; line-height: 1.3; margin-bottom: 10px; font-weight: 400; }
.hero-copy { max-width: 640px; color: #FFFFFF; font-size: clamp(1.05rem, 1.6vw, 1.22rem); margin-bottom: 22px; }
.hero-note, .section-note, .card-note { color: #667085; font-size: 0.98rem; }
.hero-note { color: #FFFFFF; max-width: 560px; margin: 22px 0 0; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 22px; border: 1px solid var(--ink); border-radius: 4px; text-decoration: none; font-family: Inter, Arial, sans-serif; font-size: 0.94rem; position: relative; z-index: 3; }
.button:hover { background: rgba(255, 255, 255, 0.4); }
.button-solid { background: var(--accent); border-color: var(--accent); color: #ffffff; }
.button-solid:hover { background: #1565C0; border-color: #1565C0; }
.button-outline { background: #ffffff; color: var(--accent); }
.button-plain { border-color: transparent; color: var(--accent); padding-left: 4px; padding-right: 4px; text-decoration: underline; text-underline-offset: 4px; }

.hero-materials { min-height: 410px; position: relative; }
.hero-landing .hero-materials { grid-column: 2; grid-row: 1 / span 3; }
.hero-landing h1,
.hero-landing .hero-cycle,
.hero-landing .hero-action-list { grid-column: 1; }
.workspace-paper, .workspace-note, .workspace-sketch, .workspace-card, .connection-slip, .explore-block { position: relative; }
.paper-bg, .note-bg, .sketch-bg { display: block; width: 100%; height: auto; pointer-events: none; user-select: none; }
.paper-content, .note-content, .sketch-content { color: #243447; position: absolute; inset: 16% 12% 14% 16%; z-index: 2; }
.notebook-paper { filter: drop-shadow(0 8px 12px rgba(67, 55, 39, 0.1)); }
.hero-paper { width: min(100%, 440px); margin: 42px 0 0 auto; }
.hero-sticky { width: 150px; position: absolute; top: 4px; left: 0; transform: rotate(-3deg); z-index: 4; }
.folded-corner { width: 64px; position: absolute; right: 26px; top: 25px; pointer-events: none; }
.annotation-crop { position: absolute; overflow: hidden; pointer-events: none; opacity: 0.78; z-index: 4; }
.annotation-crop img { display: block; width: 520px; max-width: none; }
.annotation-keep { width: 170px; height: 72px; right: 4px; bottom: 32px; transform: rotate(2deg); z-index: 7; }
.annotation-keep img { transform: translate(-278px, -214px); }

.rotate-left { transform: rotate(var(--rotate-left)); }
.rotate-right { transform: rotate(var(--rotate-right)); }
.rotate-left-soft { transform: rotate(var(--rotate-soft-left)); }
.rotate-right-soft { transform: rotate(var(--rotate-soft-right)); }

.section-heading { max-width: 660px; margin-bottom: 26px; }
.section-heading p:not(.label) { color: var(--ink); }
.offset-heading { margin-left: clamp(0px, 8vw, 78px); }
.narrow-heading { max-width: 590px; }

.journey-section { padding-top: 70px; }
.journey-cluster { min-height: 640px; position: relative; margin-top: 12px; }
.workspace-connector { position: absolute; pointer-events: none; opacity: 0.28; z-index: 0; }
.journey-connector { width: 520px; left: 245px; top: 150px; transform: rotate(6deg); }
.annotation-inspired { width: 230px; height: 76px; left: 310px; top: 102px; transform: rotate(-5deg); }
.annotation-inspired img { transform: translate(-18px, -12px); }
.origin-paper { width: 360px; position: absolute; left: 0; top: 34px; z-index: 2; }
.origin-paper .paper-content { inset: 17% 12% 14% 17%; }
.workspace-card { background: var(--paper); border: 1px solid var(--border); border-radius: 5px; box-shadow: var(--paper-shadow); padding: 28px 30px; }
.story-card { width: 365px; position: absolute; left: 330px; top: 182px; z-index: 3; }
.story-clip { width: 48px; position: absolute; top: -24px; left: -18px; transform: rotate(-12deg); pointer-events: none; }
.workspace-sketch { filter: drop-shadow(0 10px 14px rgba(67, 55, 39, 0.1)); }
.sketch-card { width: 340px; position: absolute; right: 8px; top: 38px; z-index: 2; }
.sketch-content { inset: 24% 14% 17% 13%; text-align: center; }
.workspace-tape { position: absolute; pointer-events: none; z-index: 4; }
.tape-one { width: 118px; top: -2px; left: 108px; transform: rotate(5deg); }
.companion-note { width: 320px; position: absolute; right: 92px; bottom: 18px; z-index: 3; }
.note-content { inset: 20% 14% 16% calc(14% + 1ch); }
.section-note { text-align: center; margin: 0 auto; max-width: 560px; }

.stories-explore-section { padding-top: 28px; padding-bottom: 34px; }
.stories-explore-heading { margin-bottom: 18px; }
.homepage-story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.homepage-story-card { display: flex; min-width: 0; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: 5px; box-shadow: var(--shadow); padding: 22px 24px; }
.homepage-story-card h3 { margin-bottom: 8px; overflow-wrap: anywhere; }
.homepage-story-author { color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; }
.homepage-story-description { display: -webkit-box; overflow: hidden; margin-bottom: 16px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.homepage-story-placeholder { margin: auto 0; color: var(--muted); }
.homepage-story-card .button { align-self: flex-start; margin-top: auto; }
.homepage-stories-empty { margin: 0; color: var(--muted); }

@media (max-width: 760px) {
  .homepage-story-grid { grid-template-columns: 1fr; }
}
.illustration-opportunities-section { padding-top:34px; padding-bottom:34px; background:#d9ecfa; }
.illustration-opportunities-heading { max-width:none; margin-bottom:18px; text-align:center; }
.illustration-opportunity-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.illustration-opportunity-card { display:flex; min-width:0; flex-direction:column; padding:22px 24px; border:1px solid var(--border); border-radius:5px; background:var(--paper); box-shadow:var(--shadow); }
.illustration-opportunity-card h3 { margin-bottom:6px; overflow-wrap:anywhere; }
.illustration-opportunity-author { margin-bottom:10px; color:var(--muted); font-size:.9rem; }
.illustration-opportunity-part { margin-bottom:9px; color:#286b5d; font-weight:700; overflow-wrap:anywhere; }
.illustration-opportunity-excerpt { display:-webkit-box; overflow:hidden; margin-bottom:14px; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.illustration-opportunity-count { margin:0 0 12px; color:var(--muted); font-family:Inter,Arial,sans-serif; font-size:.82rem; }
.illustration-opportunity-action { align-self:flex-start; margin-top:auto; border-color:#438f7f; color:#286b5d; }
.illustration-opportunity-placeholder { grid-column:1/-1; min-height:120px; align-items:center; justify-content:center; color:var(--muted); text-align:center; }
.illustration-opportunity-placeholder p { margin:0; }
.home-skeleton-line,
.home-skeleton-cover { display:block; border-radius:999px; background:#d6e2ec; }
.home-skeleton-line { width:100%; height:11px; }
.home-skeleton-label { width:34%; height:10px; }
.home-skeleton-title { width:72%; height:18px; }
.home-skeleton-short { width:56%; }
.home-skeleton-action { width:42%; height:36px; margin-top:auto; border-radius:4px; }
.homepage-story-skeleton { gap:14px; }
.home-skeleton-story-main { display:grid; grid-template-columns:minmax(62px,86px) minmax(0,1fr); align-items:center; gap:16px; }
.home-skeleton-cover { width:100%; aspect-ratio:2 / 3; border-radius:4px; }
.home-skeleton-story-copy { display:grid; gap:12px; min-width:0; }
.illustration-opportunity-skeleton { min-height:230px; gap:15px; }
.stories-explore-section .homepage-story-card .story-cover-card-cover { aspect-ratio:2 / 3; }
.stories-explore-section .homepage-story-card .story-cover-card-cover img,
.stories-explore-section .homepage-story-card .story-cover-card-cover canvas,
.stories-explore-section .homepage-story-card .story-cover-card-cover svg { width:100%; height:100%; display:block; object-fit:cover; }
.drawing-discovery-section.is-home-loading:not(.is-drawing-ready) .drawing-preview::after { content:""; position:absolute; inset:18px; z-index:2; border-radius:10px; background:#e5edf4; }
.drawing-discovery-section.is-drawing-ready .drawing-preview::after { content:none; }
.drawing-discovery-section.is-home-loading .drawing-discovery-copy { min-height:150px; background-image:linear-gradient(#d6e2ec,#d6e2ec),linear-gradient(#d6e2ec,#d6e2ec),linear-gradient(#d6e2ec,#d6e2ec); background-repeat:no-repeat; background-size:34% 10px,68% 18px,44% 36px; background-position:32px calc(50% - 48px),32px calc(50% - 16px),32px calc(50% + 34px); }
.drawing-discovery-section.is-home-loading .drawing-discovery-copy > * { visibility:hidden; }
@media (max-width:760px) { .illustration-opportunity-grid { grid-template-columns:1fr; } .illustration-opportunity-card { padding:20px; } .illustration-opportunity-action { width:100%; } }

.tagline-transition { padding: 20px 0 28px; }
.tagline-transition p { max-width: 720px; margin: 0 auto; color: var(--ink); font-size: clamp(1.45rem, 2.7vw, 2rem); font-style: italic; line-height: 1.25; text-align: center; }

.connection-board { min-height: 420px; position: relative; margin-bottom: 28px; }
.connection-slip { background: var(--paper); border: 1px solid var(--border); box-shadow: var(--paper-shadow); padding: 24px 28px; border-radius: 4px; }
.slip-wide { width: 410px; margin-left: 70px; }
.slip-narrow { width: 330px; position: absolute; right: 100px; top: 56px; }
.slip-note { width: 330px; margin: 44px 0 0 auto; background: var(--panel); }
.connection-label { color: var(--accent); font-family: Inter, Arial, sans-serif; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 18px 0 8px; }

.motion-inner { position: relative; }
.motion-heading { margin-left: auto; margin-right: 70px; }
.motion-scatter { min-height: 680px; position: relative; }
.motion-fragment { position: absolute; }
.fragment-story { width: 310px; left: 20px; top: 18px; }
.fragment-sketch { width: 345px; right: 30px; top: 0; }
.fragment-note { width: 340px; left: 210px; top: 260px; }
.fragment-clean { width: 310px; right: 155px; bottom: 16px; }
.tape-two { width: 126px; left: 102px; top: -10px; transform: rotate(-4deg); }
.sticky-ending { width: 132px; position: absolute; left: -72px; top: -36px; transform: rotate(-8deg); z-index: 5; }
.sticky-unfinished { width: 124px; position: absolute; right: -44px; top: -46px; transform: rotate(7deg); z-index: 5; }

.explore-inner { position: relative; }
.explore-heading { margin-left: clamp(0px, 10vw, 100px); }
.explore-studio { min-height: 390px; position: relative; margin-top: 10px; }
.explore-block { background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: 4px; padding: 26px 30px; }
.explore-clean { width: 300px; position: absolute; left: 8px; top: 24px; box-shadow: none; background: transparent; border-color: transparent; }
.explore-paper { width: 330px; position: absolute; left: 330px; top: 0; background: var(--paper-warm); }
.explore-continue { width: 340px; position: absolute; right: 0; top: 80px; }
.tape-three { width: 112px; top: -20px; left: 96px; transform: rotate(2deg); }
.annotation-continue { width: 190px; height: 72px; right: -18px; top: -55px; transform: rotate(4deg); }
.annotation-continue img { transform: translate(-42px, -252px); }
.card-actions { gap: 16px; margin-top: 14px; }
.card-note { margin-top: 14px; margin-bottom: 0; }

.principle-section { text-align: center; padding-top: 34px; }
.principle-inner { position: relative; }
.principle-section p:first-of-type { margin: 0 auto 18px; max-width: 740px; font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-style: italic; line-height: 1.35; }
.principle-section p:last-child { margin: 0 auto; max-width: 620px; color: var(--muted); }
.sticky-keep { width: 118px; position: absolute; left: 8%; top: -34px; transform: rotate(-5deg); }

.editorial-panel { background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow); padding: clamp(30px, 5vw, 42px); border-radius: 8px; }
.connected-panel { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; }
.connected-panel p:not(.label) { max-width: 640px; color: var(--ink); font-size: 1.05rem; }

.site-footer { padding: 42px 0; border-top: 1px solid rgba(255, 255, 255, 0.24); color: #FFFFFF; background: #234A73; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-inner p { margin: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; font-family: Inter, Arial, sans-serif; font-size: 0.9rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal-main { padding: clamp(40px, 7vw, 76px) 0; }
.legal-page { max-width: 760px; padding: clamp(24px, 5vw, 48px); border: 1px solid var(--border); border-radius: 6px; background: var(--panel); box-shadow: var(--shadow); }
.legal-page h1 { margin: 0 0 28px; color: var(--header); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; font-weight: 400; }
.legal-page h2 { margin: 28px 0 8px; color: var(--ink); font-size: 1.15rem; line-height: 1.35; }
.legal-page p { margin: 0 0 16px; }
.legal-home-link { display: inline-block; margin-top: 18px; color: var(--accent); font-family: Inter, Arial, sans-serif; }

.workspace-sticky, .workspace-paperclip { pointer-events: none; user-select: none; filter: drop-shadow(0 5px 8px rgba(67, 55, 39, 0.12)); }

@media (max-width: 900px) {
  .hero-landing-inner,
  .hero-workspace { grid-template-columns: 1fr; }
  .hero-text-panel,
  .hero-landing .hero-materials { grid-column: 1; grid-row: auto; }
  .hero-workspace { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 760px; }
  .hero-materials { min-height: 360px; }
  .hero-paper { margin-left: 120px; }
  .journey-cluster, .motion-scatter, .explore-studio { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
  .origin-paper, .story-card, .sketch-card, .companion-note, .motion-fragment, .explore-clean, .explore-paper, .explore-continue { position: relative; inset: auto; width: min(100%, 620px); margin: 0 auto; }
  .journey-connector { width: 320px; left: auto; right: 40px; top: 210px; opacity: 0.18; }
  .connection-board { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
  .slip-wide, .slip-narrow, .slip-note { position: relative; inset: auto; width: min(100%, 620px); margin: 0 auto; }
  .motion-heading { margin-right: 0; }
  .explore-heading { margin-left: 0; }
}

@media (max-width: 700px) {
  .header-inner, .section-inner { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 64px; flex-wrap: wrap; padding: 12px 0; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .site-nav { width: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 2px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 0; border-top: 1px solid rgba(34, 34, 34, 0.14); }
  .section { padding: 34px 0; }
  .hero-landing {
  min-height: auto;
  padding: 54px 0 38px;
  background: #3B78B5;
  color: #FFFFFF;
}

  .hero-cycle {
  min-height: 116px;
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-bottom: 24px;
  font-family: "Courier New", Courier, monospace;
}

  .hero-action-list {
  width: min(520px, 100%);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  text-align: left;
}

  .hero-action-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.25;
}
  .hero { padding-top: 40px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .hero-paper { width: min(100%, 390px); margin: 48px auto 0; transform: rotate(-0.7deg); }
  .hero-materials { min-height: 330px; }
  .hero-sticky { width: 112px; top: 0; left: 4px; }
  .annotation-crop, .journey-connector, .workspace-connector { display: none; }
  .origin-paper, .story-card, .sketch-card, .companion-note, .motion-fragment, .explore-block, .connection-slip { transform: rotate(0deg); }
  .paper-content, .note-content { inset: 18% 13% 14% 17%; }
  .sketch-content { inset: 23% 13% 16% 13%; }
  .sticky-ending, .sticky-unfinished, .sticky-keep { position: static; display: block; width: 104px; margin: -8px 0 10px auto; transform: rotate(1deg); }
  .sticky-keep { margin: 0 auto 14px; }
  .connected-panel { display: block; }
  .connected-panel .button { margin-top: 8px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .paper-content, .note-content { inset: 19% 12% 13% 18%; }
  .paper-content p, .note-content p, .sketch-content p { font-size: 0.92rem; }
  .workspace-card, .connection-slip, .explore-block { padding: 22px; }
  .brand-name { font-size: 1.08rem; }
}

/* Homepage density and mobile composition refinement. */
.hero.hero-landing { padding-top: 8px; padding-bottom: 4px; }
.hero-materials { min-height: 260px; }
.hero-paper { width: min(100%, 380px); margin-top: 18px; }
.journey-section { padding-top: 42px; padding-bottom: 38px; margin-top: 0; }
.idea-path { margin-top: 6px; margin-bottom: 20px; }
.stories-explore-section { padding-top: 34px; padding-bottom: 36px; }
.homepage-story-card {
  min-height: 210px;
  color: inherit;
  text-decoration: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.homepage-story-card:hover { border-color: var(--accent); box-shadow: 0 7px 16px rgba(35, 74, 115, 0.12); }
.homepage-story-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.homepage-story-description { -webkit-line-clamp: 3; }
.homepage-story-affordance { pointer-events: none; }
.drawing-discovery-section { padding-top: 38px; padding-bottom: 40px; }
.drawing-preview { min-height: 270px; }
.drawing-discovery-copy { padding: 28px 32px; }
.final-cta-section { padding: 12px 0 14px; }
.final-cta-inner { padding: 12px 18px; }
.final-cta-inner h2 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.final-cta-actions { gap: 4px; }
.final-cta-actions .button { min-width: auto; min-height: 36px; padding: 5px 10px; border-color: transparent; background: transparent; color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.final-cta-actions .button + .button::before { content: '·'; margin-right: 14px; color: var(--muted); text-decoration: none; }

@media (max-width: 1024px) {
  .hero-materials { min-height: 250px; }
  .hero-paper { width: min(100%, 350px); margin-top: 8px; }
}

@media (max-width: 760px) {
  .hero.hero-landing { padding: 4px 0 0; }
  .hero-landing-inner { row-gap: 6px; }
  .hero-landing-inner > #hero-title { margin-bottom: 4px; }
  .hero-text-panel .hero-cycle { min-height: 68px; margin-bottom: 0; gap: 1px; }
  .hero-text-panel .hero-cycle-line { min-height: 1.2em; font-size: 0.9rem; line-height: 1.2; }
  .hero-text-panel .hero-action-list { gap: 6px; margin-top: -8px; }
  .hero-text-panel .hero-action-list li { min-height: 30px; font-size: 0.98rem; }
  .hero-landing .hero-materials { min-height: 220px; margin-top: -12px; }
  .hero-paper { width: min(100%, 280px); margin: 0 auto; }
  .hero-sticky { width: 90px; top: 12px; left: max(0px, calc(50% - 165px)); }
  .folded-corner { width: 46px; }

  .journey-section { padding: 28px 0 30px; }
  .journey-section .section-heading { margin-bottom: 12px; }
  .idea-path { position: relative; gap: 0; margin: 0 0 18px; padding-left: 24px; }
  .idea-path::before { content: ''; position: absolute; left: 8px; top: 24px; bottom: 24px; width: 1px; background: rgba(30, 136, 229, 0.45); }
  .idea-work { width: 100%; margin: 0; border-radius: 5px; transform: none; }
  .idea-origin, .idea-drawing { background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow); filter: none; }
  .idea-origin .paper-bg, .idea-drawing .sketch-bg { display: none; }
  .idea-origin .paper-content, .idea-drawing .sketch-content { position: relative; inset: auto; padding: 16px 18px; text-align: left; }
  .idea-origin h3, .idea-drawing h3 { margin-bottom: 0; }
  .idea-story { padding: 16px 18px; }
  .idea-story p:not(.entry-type) { margin-bottom: 8px; }
  .idea-story .story-clip { left: 8px; }
  .idea-drawing .tape-one { width: 72px; top: -13px; }
  .idea-arrow { position: relative; height: 24px; transform: none; font-size: 0; text-align: left; }
  .idea-arrow::after { content: '\2193'; position: absolute; left: -22px; top: 1px; color: var(--accent); font-size: 1rem; line-height: 1; }
  .journey-section .section-note { font-size: 0.9rem; line-height: 1.45; }

  .stories-explore-section { padding: 28px 0 30px; }
  .homepage-story-grid,
  .illustration-opportunity-grid { display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; overflow-y: hidden; padding: 3px 3px 12px; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: thin; }
  .homepage-story-card,
  .illustration-opportunity-card { flex: 0 0 82%; min-height: 190px; padding: 17px 18px; scroll-snap-align: start; }
  .homepage-story-description { margin-bottom: 10px; -webkit-line-clamp: 2; }
  .homepage-story-card .button { min-height: 38px; margin-top: 4px; }

  .drawing-discovery-section { padding: 28px 0 30px; }
  .drawing-discovery-section .section-heading { margin-bottom: 14px; }
  .drawing-preview { min-height: clamp(170px, 48vw, 210px); }
  .drawing-discovery-copy { padding: 16px 18px; }
  .drawing-discovery-copy h3 { margin-bottom: 8px; }
  .final-cta-section { padding: 8px 0 10px; }
  .final-cta-inner { padding: 12px 14px; }
  .final-cta-inner h2 { margin-bottom: 0; font-size: 1.2rem; }
  .final-cta-inner > p:not(.label) { font-size: 0.9rem; line-height: 1.35; }
  .final-cta-actions { margin-top: 8px; gap: 2px; }
  .final-cta-actions .button { flex: 0 1 auto; min-height: 42px; padding: 7px 9px; }
  .final-cta-actions .button + .button::before { margin-right: 10px; }
}

@media (max-width: 430px) {
  .section-heading p:not(.label) { line-height: 1.5; }
  .drawing-discovery-section .discovery-heading h2 { font-size: 1.45rem !important; }
  .hero-text-panel { padding-top: 8px; padding-bottom: 8px; }
  .hero-landing .hero-materials { min-height: 205px; }
  .hero-paper { width: min(100%, 258px); }
  .homepage-story-card,
  .illustration-opportunity-card { flex-basis: 84%; }
  .drawing-discovery-copy .button { min-height: 40px; }
}

@media (max-width: 430px) {
  .drawing-discovery-section .discovery-heading h2 { font-size: 1.45rem; }
}

/* Compact creative chain and deliberate phone Story carousel. */
.hero.hero-landing { padding-top: 10px; padding-bottom: 8px; }
.hero.hero-landing .hero-landing-inner::before { display: none; }
.hero-atmosphere {
  position: relative;
  grid-column: 2;
  grid-row: 3;
  align-self: center;
  justify-self: end;
  width: min(92%, 280px);
  height: 150px;
  margin: -8px 20px 0 0;
  pointer-events: none;
  z-index: 1;
}
.hero-scrap { position: absolute; display: block; border: 1px solid rgba(255, 255, 255, 0.42); box-shadow: 0 6px 13px rgba(18, 42, 70, 0.12); }
.hero-scrap::before { content: ''; position: absolute; width: 48px; height: 12px; top: -7px; left: 50%; background: rgba(226, 218, 192, 0.48); transform: translateX(-50%) rotate(-2deg); }
.hero-scrap-one {
  width: 132px;
  height: 88px;
  right: 24px;
  bottom: 4px;
  background: rgba(248, 251, 253, 0.68);
  border-color: rgba(217, 236, 250, 0.72);
  transform: rotate(4deg);
}
.hero-scrap-two {
  width: 86px;
  height: 108px;
  left: 48px;
  top: 6px;
  overflow: hidden;
  background-color: rgba(246, 217, 108, 0.48);
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 12px, rgba(59, 120, 181, 0.13) 13px);
  border-color: rgba(246, 217, 108, 0.58);
  transform: rotate(-6deg);
}
.hero-scrap-two::after { content: ''; position: absolute; top: 0; bottom: 0; left: 14px; border-left: 1px solid rgba(201, 130, 118, 0.3); }
.hero-atmosphere-bulb {
  position: absolute;
  left: 138px;
  top: 22px;
  width: 82px;
  height: 98px;
  background: #f6d96c;
  -webkit-mask: url('/assets/workspace/lightbulb-sketch.svg') center / contain no-repeat;
  mask: url('/assets/workspace/lightbulb-sketch.svg') center / contain no-repeat;
  filter: drop-shadow(0 0 7px rgba(246, 217, 108, 0.24));
  opacity: 0.7;
  transform: rotate(-7deg);
}
.hero-pencil-marks { position: absolute; left: auto; right: 34px; top: 71px; width: 76px; height: 42px; fill: none; stroke: rgba(35, 74, 115, 0.28); stroke-width: 1.45; stroke-linecap: round; transform: rotate(2deg); }

main .journey-section { padding: 28px 0 8px; }
.creative-chain-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 14px;
}
.creative-chain-heading h2 { margin: 0; }
.creative-chain-heading p { max-width: 620px; margin: 0; color: var(--muted); text-align: right; }
.creative-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 22px);
  min-height: 64px;
  padding: 6px 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 5px 8px 6px 4px;
  box-shadow: 0 4px 11px rgba(67, 55, 39, 0.08);
  transform: rotate(-0.12deg);
}
.creative-chain-fixed { display: inline-flex; align-items: center; gap: clamp(7px, 1.2vw, 14px); flex: 0 0 auto; padding-right: 8px; background: var(--paper); z-index: 2; }
.creative-chain-moving {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 15px, #000 calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 15px, #000 calc(100% - 20px), transparent 100%);
}
.creative-chain-track { display: flex; align-items: center; width: max-content; animation: creative-chain-flow 24s linear infinite; will-change: transform; }
.creative-chain-loop { display: inline-flex; align-items: center; gap: clamp(8px, 1.5vw, 20px); flex: 0 0 auto; padding-right: clamp(18px, 3vw, 36px); }
.creative-chain-moving:hover .creative-chain-track,
.creative-chain-moving:focus-within .creative-chain-track { animation-play-state: paused; }
.creative-chain-moving a.creative-chain-step { min-height: 42px; padding: 3px 2px; color: var(--ink); text-decoration: none; border-radius: 8px; pointer-events: auto; }
.creative-chain-moving a.creative-chain-step:hover { color: #234a73; }
.creative-chain-moving a.creative-chain-step:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@keyframes creative-chain-flow { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.creative-chain-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.creative-chain-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent);
  background: rgba(30, 136, 229, 0.07);
  border: 1px solid rgba(30, 136, 229, 0.28);
  border-radius: 50%;
}
.creative-chain-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.creative-chain-step:nth-of-type(1) { transform: translateY(1px) rotate(-2deg); }
.creative-chain-step:nth-of-type(3) { transform: translateY(-1px) rotate(1.4deg); }
.creative-chain-step:nth-of-type(5) { transform: translateY(1px) rotate(-1.2deg); }
.creative-chain-step:nth-of-type(7) { transform: translateY(-1px) rotate(1deg); }
.creative-chain-step:nth-of-type(9) { transform: translateY(1px) rotate(-0.8deg); }
.creative-chain-arrow { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; opacity: 0.78; transform: rotate(-3deg); }
.creative-chain-arrow:nth-of-type(4n) { transform: translateY(1px) rotate(2deg); }
.creative-chain-origin {
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.72;
}
.creative-chain-origin .creative-chain-icon {
  width: 26px;
  height: 26px;
  color: var(--muted);
  background: transparent;
  border: 0;
}
.creative-chain-origin .creative-chain-icon svg { width: 17px; height: 17px; stroke-width: 1.35; }
.creative-chain-arrow, .creative-chain-more { flex: 0 0 auto; color: var(--accent); font: 700 1.05rem/1 Inter, Arial, sans-serif; }
.creative-chain-more { letter-spacing: 0.1em; }
.homepage-story-carousel-dots { display: none; }
.stories-explore-section .homepage-story-grid > .homepage-story-card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px 20px;
  color: var(--ink);
  background-color: #eaf3fa;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, rgba(59, 120, 181, 0.055) 26px);
  border: 1px solid #9db8d0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68), 0 5px 13px rgba(35, 74, 115, 0.12);
  transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease, background-color 420ms ease;
}
.stories-explore-section .homepage-story-grid > .homepage-story-card::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 15px;
  border-left: 1px solid rgba(201, 130, 118, 0.12);
  box-shadow: 2px 0 0 rgba(255, 255, 255, 0.44);
  pointer-events: none;
}
.stories-explore-section .homepage-story-card .entry-type {
  margin-bottom: 14px;
  color: #667085;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.stories-explore-section .homepage-story-card .entry-type::after {
  content: '';
  display: block;
  width: 44px;
  margin-top: 9px;
  border-top: 1px solid rgba(30, 136, 229, 0.48);
}
.stories-explore-section .homepage-story-card h3 {
  margin-bottom: 8px;
  color: #1f2a44;
  font-size: clamp(1.3rem, 2.1vw, 1.62rem);
  line-height: 1.12;
}
.stories-explore-section .homepage-story-card .homepage-story-author { color: #5f6670; font-style: italic; }
.stories-explore-section .homepage-story-card .homepage-story-affordance { margin-top: 12px; }
.stories-explore-section .homepage-story-card .story-cover-card-main { min-height: 0; }
.stories-explore-section .homepage-story-card .story-cover-card-main.has-story-cover { flex: 1 1 auto; }
.stories-explore-section .homepage-story-card .story-cover-card-cover { width: 100%; max-width: 125px; justify-self: center; }
.stories-explore-section .homepage-story-card .story-cover-card-copy { min-height: 0; }
.stories-explore-section .homepage-story-card .story-cover-card-copy h3 { font-size: clamp(1.08rem, 1.7vw, 1.38rem); }
.stories-explore-section .homepage-story-card .story-cover-card-main.has-story-cover h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.stories-explore-section .homepage-story-card .story-cover-card-main.has-story-cover .homepage-story-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.stories-explore-section .homepage-story-grid .homepage-story-card.is-cycle-active {
  z-index: 1;
  background-color: #f5faff;
  border-color: #234a73;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 16px 30px rgba(35, 74, 115, 0.25);
  transform: translateY(-8px) scale(1.04);
}
.stories-explore-section .homepage-story-card.is-cycle-active .entry-type { color: #234a73; }
.stories-explore-section .homepage-story-card.homepage-story-featured { border: 2px solid #ad8745; box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 5px 13px rgba(181,139,64,.18); }
.stories-explore-section .homepage-story-card.homepage-story-want-more { border-color: #4f8f86; box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 5px 13px rgba(79,143,134,.18); }
.homepage-story-special-badge { position: relative; z-index: 1; align-self: flex-start; margin: 0 0 8px; color: #5f5547; font: 700 .68rem/1.2 Inter,Arial,sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.homepage-story-featured .homepage-story-special-badge { padding: 3px 6px; border-radius: 4px; background: rgba(173,135,69,.09); color: #916c2f; }
.stories-explore-heading { margin-bottom: 20px; }
.stories-explore-heading { margin-left: auto; margin-right: auto; text-align: center; }
.stories-explore-heading h2 { width: 100%; margin: 0; font-size: clamp(1.35rem, 2vw, 1.72rem); text-align: center; }

@media (min-width: 761px) {
  .homepage-story-desktop-slot {
    display: flex;
    min-width: 0;
    min-height: var(--homepage-story-card-height, 220px);
  }
  .homepage-story-desktop-slot > .homepage-story-card {
    width: 100%;
    min-height: var(--homepage-story-card-height, 220px);
    transform: scale(0.975);
  }
  .homepage-story-desktop-slot-left > .homepage-story-card { transform: scale(0.975) rotate(-0.35deg); }
  .homepage-story-desktop-slot-right > .homepage-story-card { transform: scale(0.975) rotate(-0.15deg); }
  .stories-explore-section .homepage-story-grid .homepage-story-card.is-cycle-active {
    animation: homepage-story-center-forward 360ms ease-out;
  }
}

@media (min-width: 601px) {
  main .stories-explore-section { padding: 26px 0 32px; }
  .stories-explore-section .homepage-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .stories-explore-heading { margin-bottom: 24px; }
  .homepage-story-grid > .homepage-story-card { flex: none; min-height: 220px; transform: scale(0.975); }
  .homepage-story-grid > .homepage-story-card:nth-child(1) { transform: scale(0.975) rotate(-0.35deg); }
  .homepage-story-grid > .homepage-story-card:nth-child(2) { transform: scale(0.975) rotate(0.2deg); }
  .homepage-story-grid > .homepage-story-card:nth-child(3) { transform: scale(0.975) rotate(-0.15deg); }
  .stories-explore-section .homepage-story-grid .homepage-story-card.is-cycle-active { transform: translateY(-8px) scale(1.04) rotate(0); }
}

@media (max-width: 1024px) {
  .hero-atmosphere { grid-column: 1; grid-row: 4; justify-self: center; width: min(82%, 330px); height: 80px; margin: 4px auto -12px; }
  .hero-scrap-one { width: 94px; height: 56px; right: 20px; bottom: 2px; }
  .hero-scrap-two { width: 62px; height: 68px; left: 38px; top: 5px; }
  .hero-atmosphere-bulb { left: 50%; top: 0; width: 56px; height: 70px; transform: translateX(-50%) rotate(-7deg); }
  .hero-pencil-marks { left: auto; right: 22px; top: 30px; width: 58px; height: 36px; }
  .hero.hero-landing .hero-paper .paper-content { inset: 14% 10% 10% 15%; }
  .hero.hero-landing .hero-paper .paper-content .entry-type { margin-bottom: 4px; font-size: 0.62rem; }
  .hero.hero-landing .hero-paper .paper-content h2 { margin-bottom: 5px; font-size: 1.02rem; line-height: 1.14; }
  .hero.hero-landing .hero-paper .paper-content > p:last-child { margin: 0; font-size: 0.78rem; line-height: 1.32; }
}

@media (max-width: 760px) {
  .hero.hero-landing { padding-top: 5px; padding-bottom: 4px; }
  .hero-atmosphere { width: min(78%, 270px); height: 58px; margin: 0 auto; }
  .hero-scrap-two { display: block; width: 38px; height: 50px; left: 7px; top: 4px; opacity: 0.78; }
  .hero-scrap-one { width: 76px; height: 42px; right: 8px; bottom: 3px; opacity: 0.82; }
  .hero-scrap-one::before { width: 34px; height: 9px; }
  .hero-atmosphere-bulb { left: 38%; top: -3px; width: 43px; height: 56px; opacity: 0.48; }
  .hero-pencil-marks { left: auto; right: 10px; top: 18px; width: 45px; height: 27px; opacity: 0.72; }
  main .journey-section { padding: 20px 0 10px; }
  .creative-chain-heading { display: block; margin-bottom: 11px; }
  .creative-chain-heading h2 { margin-bottom: 4px; font-size: 1.4rem; }
  .creative-chain-heading p { max-width: none; font-size: 0.86rem; line-height: 1.4; text-align: left; }
  .creative-chain {
    display: flex;
    gap: 2px;
    min-height: 56px;
    padding: 4px 7px;
  }
  .creative-chain-fixed { gap: 5px; padding-right: 4px; }
  .creative-chain-moving { min-width: 0; }
  .creative-chain-loop { gap: 7px; padding-right: 16px; }
  .creative-chain-moving a.creative-chain-step { min-height: 34px; padding-left: 1px; padding-right: 1px; }
  .creative-chain-step { flex-direction: column; gap: 2px; min-width: 0; font-size: 0.59rem; letter-spacing: 0.06em; }
  .creative-chain-origin { font-size: 0.7rem; letter-spacing: 0; }
  .creative-chain-origin .creative-chain-icon { width: 22px; height: 22px; }
  .creative-chain-origin .creative-chain-icon svg { width: 15px; height: 15px; }
  .creative-chain-icon { width: 26px; height: 26px; }
  .creative-chain-icon svg { width: 16px; height: 16px; }
  .creative-chain-arrow { font-size: 0.78rem; text-align: center; }
  .creative-chain-more { font-size: 0.72rem; letter-spacing: 0; white-space: nowrap; }

  main .stories-explore-section { padding: 14px 0 27px; }
  .stories-explore-section .section-heading { margin-bottom: 12px; }
  .stories-explore-section .homepage-story-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }
  .illustration-opportunities-section .illustration-opportunity-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }
  .homepage-story-grid::-webkit-scrollbar,
  .illustration-opportunity-grid::-webkit-scrollbar { display: none; }
  .homepage-story-grid > .homepage-story-card {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 17px 19px 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .illustration-opportunity-grid > .illustration-opportunity-card {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .stories-explore-section .homepage-story-grid > .homepage-story-card.is-cycle-active {
    box-shadow: inset 0 0 0 1px rgba(30, 136, 229, 0.2), 0 9px 20px rgba(35, 74, 115, 0.18);
    transform: none;
    animation: homepage-story-live-edge 3.8s ease-in-out infinite;
  }
  .stories-explore-section .homepage-story-grid > .homepage-story-card {
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, rgba(59, 120, 181, 0.035) 26px);
  }
  .homepage-story-card h3 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .stories-explore-section .homepage-story-card .story-cover-card-cover { max-width: 86px; }
  .stories-explore-section .homepage-story-card .story-cover-card-copy h3 { font-size: 1.08rem; }
  .stories-explore-section .homepage-story-card .story-cover-card-main.has-story-cover .homepage-story-description { -webkit-line-clamp: 2; }
  .homepage-story-description { -webkit-line-clamp: 2; }
  .homepage-story-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 7px;
  }
  .stories-explore-section .homepage-story-carousel-dot,
  .illustration-opportunities-section .homepage-story-carousel-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 36px;
    padding: 0 9px 0 8px;
    color: #667085;
    font: 600 0.72rem/1 Inter, Arial, sans-serif;
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
  }
  .stories-explore-section .homepage-story-carousel-dot::before,
  .illustration-opportunities-section .homepage-story-carousel-dot::before {
    content: '';
    position: static;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    background: transparent;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    transform: none;
  }
  .stories-explore-section .homepage-story-carousel-dot.is-active,
  .illustration-opportunities-section .homepage-story-carousel-dot.is-active { color: #234a73; background: rgba(30, 136, 229, 0.08); }
  .stories-explore-section .homepage-story-carousel-dot.is-active::before,
  .illustration-opportunities-section .homepage-story-carousel-dot.is-active::before { background: var(--accent); }
  .stories-explore-section .homepage-story-carousel-dot:focus-visible,
  .illustration-opportunities-section .homepage-story-carousel-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
  .illustration-opportunities-section .illustration-opportunity-card.is-cycle-active {
    box-shadow: inset 0 0 0 1px rgba(30, 136, 229, 0.2), 0 9px 20px rgba(35, 74, 115, 0.18);
    animation: homepage-story-live-edge 3.8s ease-in-out infinite;
  }

  .hero.hero-landing .hero-text-panel .hero-action-list { gap: 3px; margin-top: -10px; }
  .hero.hero-landing .hero-text-panel .hero-action-list li { min-height: 30px; }
  .hero.hero-landing .hero-materials { min-height: 207px; margin-top: -18px; }
  .hero.hero-landing .hero-paper { width: min(100%, 300px); margin: 0 auto; }
  .hero.hero-landing .hero-paper .paper-content { inset: 14% 10% 10% 15%; }
  .hero.hero-landing .hero-paper .paper-content .entry-type { margin-bottom: 4px; font-size: 0.62rem; }
  .hero.hero-landing .hero-paper .paper-content h2 { margin-bottom: 5px; font-size: 1.02rem; line-height: 1.14; }
  .hero.hero-landing .hero-paper .paper-content > p:last-child { margin: 0; font-size: 0.78rem; line-height: 1.32; }
}

@keyframes homepage-story-live-edge {
  0%, 100% { border-color: rgba(59, 120, 181, 0.74); box-shadow: inset 0 0 0 1px rgba(30, 136, 229, 0.16), 0 8px 18px rgba(35, 74, 115, 0.15); }
  50% { border-color: rgba(30, 136, 229, 0.92); box-shadow: inset 0 0 0 1px rgba(30, 136, 229, 0.25), 0 10px 22px rgba(35, 74, 115, 0.2); }
}

@keyframes homepage-story-center-forward {
  from { transform: translateY(0) scale(0.975); }
  to { transform: translateY(-8px) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .creative-chain-track { animation: none; transform: none; }
  .creative-chain-loop + .creative-chain-loop { display: none; }
  .homepage-story-grid { scroll-behavior: auto; }
  .stories-explore-section .homepage-story-grid > .homepage-story-card { transition: none; }
  .stories-explore-section .homepage-story-grid .homepage-story-card.is-cycle-active { animation: none; transform: none; }
  .illustration-opportunities-section .illustration-opportunity-card.is-cycle-active { animation: none; }
}

@media (max-width: 760px) {
  .hero.hero-landing { padding: 4px 0 0; }
  .hero-landing-inner { row-gap: 6px; }
  .hero-landing-inner > #hero-title { margin-bottom: 4px; }
  .hero-text-panel .hero-cycle { min-height: 68px; margin-bottom: 0; gap: 1px; }
  .hero-text-panel .hero-cycle-line { min-height: 1.2em; font-size: 0.9rem; line-height: 1.2; }
  .hero-text-panel .hero-action-list { gap: 6px; margin-top: -8px; }
  .hero-text-panel .hero-action-list li { min-height: 30px; font-size: 0.98rem; }
  .hero-landing .hero-materials { min-height: 220px; margin-top: -12px; }
  .hero-paper { width: min(100%, 280px); margin-top: 0; margin-right: auto; }
  .hero-sticky { width: 90px; top: 12px; left: max(0px, calc(50% - 165px)); }
  .folded-corner { width: 46px; }

  .journey-section { padding: 28px 0 30px; }
  .journey-section .section-heading { margin-bottom: 12px; }
  .idea-path { position: relative; gap: 0; margin: 0 0 18px; padding-left: 24px; }
  .idea-path::before { content: ''; position: absolute; left: 8px; top: 24px; bottom: 24px; width: 1px; background: rgba(30, 136, 229, 0.45); }
  .idea-work { width: 100%; margin: 0; border-radius: 5px; }
  .idea-origin, .idea-drawing { background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow); filter: none; }
  .idea-origin .paper-bg, .idea-drawing .sketch-bg { display: none; }
  .idea-origin .paper-content, .idea-drawing .sketch-content { position: relative; inset: auto; padding: 16px 18px; text-align: left; }
  .idea-origin h3, .idea-drawing h3 { margin-bottom: 0; }
  .idea-story { padding: 16px 18px; }
  .idea-story p:not(.entry-type) { margin-bottom: 8px; }
  .idea-drawing .tape-one { width: 72px; top: -13px; }
  .idea-arrow { position: relative; height: 24px; transform: none; font-size: 0; text-align: left; }
  .idea-arrow::after { content: '↓'; position: absolute; left: -22px; top: 1px; color: var(--accent); font-size: 1rem; line-height: 1; }
  .journey-section .section-note { font-size: 0.9rem; line-height: 1.45; }

  .stories-explore-section { padding: 28px 0 30px; }
  .homepage-story-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 3px 3px 12px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .homepage-story-card { flex: 0 0 82%; min-height: 190px; padding: 17px 18px; scroll-snap-align: start; }
  .homepage-story-description { margin-bottom: 10px; -webkit-line-clamp: 2; }
  .homepage-story-card .button { min-height: 38px; margin-top: 4px; }

  .drawing-discovery-section { padding: 28px 0 30px; }
  .drawing-discovery-section .section-heading { margin-bottom: 14px; }
  .drawing-preview { min-height: clamp(170px, 48vw, 210px); }
  .drawing-discovery-copy { padding: 16px 18px; }
  .drawing-discovery-copy h3 { margin-bottom: 8px; }

  .final-cta-section { padding: 8px 0 10px; }
  .final-cta-inner { padding: 12px 14px; }
  .final-cta-inner h2 { margin-bottom: 0; font-size: 1.2rem; }
  .final-cta-inner > p:not(.label) { font-size: 0.9rem; line-height: 1.35; }
  .final-cta-actions { margin-top: 8px; gap: 2px; }
  .final-cta-actions .button { flex: 0 1 auto; min-height: 42px; padding: 7px 9px; }
  .final-cta-actions .button + .button::before { margin-right: 10px; }
}

@media (max-width: 430px) {
  .section-heading p:not(.label) { line-height: 1.5; }
  .hero-text-panel { padding-top: 8px; padding-bottom: 8px; }
  .hero-landing .hero-materials { min-height: 205px; }
  .hero-paper { width: min(100%, 258px); }
  .homepage-story-card { flex-basis: 84%; }
  .drawing-discovery-copy .button { min-height: 40px; }
}

@media (max-width: 430px) {
  .drawing-discovery-section .discovery-heading h2 { font-size: 1.45rem; }
}
.hero.hero-landing {
  min-height: auto;
  padding: 54px 0 38px;
  background: #3B78B5;
  color: #FFFFFF;
}

@media (max-width: 700px) {
  .hero.hero-landing {
  min-height: auto;
  padding: 54px 0 38px;
  background: #3B78B5;
  color: #FFFFFF;
}
}
/* Final hero composition override: dark text panel, page-colored materials side. */
.hero.hero-landing {
  min-height: auto;
  padding: 54px 0 38px;
  background: #3B78B5;
  color: #FFFFFF;
}

.hero-landing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  text-align: left;
}

.hero-text-panel {
  grid-column: 1;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 34%),
    #3B78B5;
  color: #FFFFFF;
}

.hero-text-panel h1 {
  max-width: 620px;
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.16;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(240, 221, 200, 0.12);
}

.hero-text-panel .hero-cycle {
  min-height: 116px;
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-bottom: 24px;
  font-family: "Courier New", Courier, monospace;
}

.hero-text-panel .hero-cycle-line {
  margin: 0;
  width: 22ch;
  min-height: 1.35em;
  text-align: left;
  white-space: nowrap;
  color: #FFFFFF;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.hero-text-panel .hero-cycle-line:nth-child(2) {
  margin-left: 2.2ch;
}

.hero-text-panel .hero-cycle-line:nth-child(3) {
  margin-left: 4.4ch;
}

.hero-text-panel .hero-action-list {
  width: min(520px, 100%);
  margin: 0;
  gap: 12px;
}

.hero-text-panel .hero-action-list li {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-landing .hero-materials {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 1024px) {
  .hero-landing-inner {
    grid-template-columns: 1fr;
  }

  .hero-text-panel,
  .hero-landing .hero-materials {
    grid-column: 1;
    grid-row: auto;
  }
}
/* Hero alignment refinements. */
.hero-text-panel {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.10), transparent 34%),
    #3B78B5;
}

.hero-text-panel .hero-cycle {
  justify-items: end;
}

.hero-text-panel .hero-cycle-line {
  text-align: right;
}

.hero-text-panel .hero-cycle-line:nth-child(2),
.hero-text-panel .hero-cycle-line:nth-child(3) {
  margin-left: 0;
}

.hero-cycle-line.is-active,
.hero-text-panel .hero-cycle-line.is-active {
  color: #FFFFFF;
  text-shadow: 0 0 14px rgba(240, 221, 200, 0.26);
}

.hero-text-panel .hero-action-list li:nth-child(2),
.hero-text-panel .hero-action-list li:nth-child(4) {
  margin-left: 4ch;
}
.hero-cycle-reserved {
  visibility: hidden;
  white-space: nowrap;
}

.hero-cycle-text {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  text-align: left;
}

.hero-cycle-line,
.hero-text-panel .hero-cycle-line {
  position: relative;
  width: auto;
  text-align: left;
}

/* Keep typing anchored from the left while the line block is right-aligned. */
.hero-cycle-line,
.hero-text-panel .hero-cycle-line {
  position: relative;
  width: 22ch;
  text-align: left;
  white-space: nowrap;
}
/* Hero heading/panel placement refinement. */
.hero-landing-inner > #hero-title {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 0 18px;
  color: #FFFFFF;
  text-shadow: none;
}

.hero-text-panel {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
    #3B78B5;
}

.hero-text-panel .hero-cycle {
  justify-items: center;
}

.hero-text-panel .hero-cycle-line {
  margin-left: 0;
}

.hero-text-panel .hero-cycle-line:nth-child(2),
.hero-text-panel .hero-cycle-line:nth-child(3) {
  margin-left: 0;
}
/* Hero final placement: page title above two-column content. */
.hero.hero-landing {
  padding: 32px 0 38px;
  background: #3B78B5;
  color: #FFFFFF;
}

.hero-landing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  max-width: var(--max);
  text-align: left;
}

.hero-landing-inner > #hero-title {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 0 8px;
  color: #FFFFFF;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.16;
  font-weight: 400;
  text-shadow: none;
}

.hero-text-panel {
  grid-column: 1;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #FFFFFF;
}

.hero-text-panel h1 {
  color: #FFFFFF;
  text-shadow: none;
}

.hero-text-panel .hero-cycle {
  justify-items: center;
  margin-bottom: 24px;
}

.hero-cycle-line,
.hero-text-panel .hero-cycle-line {
  width: 22ch;
  color: #FFFFFF;
  text-align: left;
  white-space: nowrap;
}

.hero-cycle-line.is-active,
.hero-text-panel .hero-cycle-line.is-active {
  color: #FFFFFF;
  text-shadow: none;
}

.hero-cycle-cursor::after {
  color: #FFFFFF;
}

.hero-text-panel .hero-action-list li {
  color: #FFFFFF;
}

.hero-action-icon {
  color: #FFFFFF;
}

.hero-landing .hero-materials {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 1024px) {
  .hero-landing-inner {
    grid-template-columns: 1fr;
  }

  .hero-text-panel,
  .hero-landing .hero-materials {
    grid-column: 1;
    grid-row: auto;
  }
}
/* Hero spacing and live text emphasis. */
.hero-landing-inner > #hero-title {
  justify-self: center;
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 0;
}

.hero-text-panel {
  align-self: start;
  margin-top: -8px;
}

.hero-text-panel .hero-cycle {
  min-height: 86px;
  margin-bottom: 16px;
}

.hero-cycle-line,
.hero-text-panel .hero-cycle-line {
  color: #FFFFFF;
  font-size: clamp(1.08rem, 1.9vw, 1.38rem);
  font-weight: 500;
}

.hero-cycle-line.is-active,
.hero-text-panel .hero-cycle-line.is-active {
  color: #FFFFFF;
  font-weight: 600;
}
/* Hero action/artwork refinement. */
.hero-text-panel {
  align-self: center;
  margin-top: 0;
}

.hero-text-panel .hero-cycle {
  min-height: 78px;
  margin-bottom: 10px;
}

.hero-text-panel .hero-action-list {
  gap: 6px;
}

.hero-text-panel .hero-action-list li {
  display: block;
  grid-template-columns: none;
  gap: 0;
}

.hero-text-panel .hero-action-list li:nth-child(2),
.hero-text-panel .hero-action-list li:nth-child(4) {
  margin-left: 2.25ch;
}

.hero-text-panel .hero-action-list li:nth-child(3) {
  margin-top: 14px;
}

.hero-action-icon {
  display: none;
}

.hero-landing .hero-materials {
  transform: scale(0.88);
  transform-origin: center right;
}

@media (max-width: 1024px) {
  .hero-landing .hero-materials {
    transform: scale(0.9);
    transform-origin: center top;
  }
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle {
    min-height: 74px;
    margin-bottom: 10px;
  }

  .hero-text-panel .hero-action-list li:nth-child(2),
  .hero-text-panel .hero-action-list li:nth-child(4) {
    margin-left: 1.25ch;
  }

  .hero-text-panel .hero-action-list li:nth-child(3) {
    margin-top: 12px;
  }

  .hero-landing .hero-materials {
    transform: scale(0.86);
  }
}
/* Hero spacing correction. */
.hero-landing-inner {
  row-gap: 12px;
}

.hero-landing-inner > #hero-title {
  margin-bottom: -6px;
}

.hero-text-panel {
  margin-top: -12px;
}

.hero-landing .hero-materials {
  margin-top: -34px;
}

.hero-text-panel .hero-action-list {
  margin-left: clamp(38px, 7vw, 78px);
}

.hero-text-panel .hero-action-list li:nth-child(2),
.hero-text-panel .hero-action-list li:nth-child(4) {
  margin-left: 2.25ch;
}

@media (max-width: 700px) {
  .hero-landing-inner {
    row-gap: 10px;
  }

  .hero-landing-inner > #hero-title {
    margin-bottom: -2px;
  }

  .hero-text-panel,
  .hero-landing .hero-materials {
    margin-top: 0;
  }

  .hero-text-panel .hero-action-list {
    margin-left: 0;
  }
}
/* Hero typed/action/art micro-adjustment. */
.hero-text-panel .hero-cycle {
  justify-items: center;
  margin-bottom: 20px;
}

.hero-text-panel .hero-action-list li {
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
}

.hero-landing .hero-materials {
  margin-top: -18px;
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle {
    margin-bottom: 18px;
  }

  .hero-landing .hero-materials {
    margin-top: 10px;
  }
}
/* Hero alignment refinement. */
.hero-text-panel .hero-cycle {
  width: min(22ch, 100%);
  margin-left: auto;
  margin-right: clamp(34px, 6vw, 72px);
  margin-bottom: 40px;
}

.journey-section {
  padding-top: 18px;
}

@media (max-width: 1024px) {
  .hero-text-panel .hero-cycle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle {
    width: min(22ch, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .journey-section {
    padding-top: 20px;
  }
}

/* Hero action alignment and marks. */
.hero.hero-landing {
  padding-bottom: 18px;
}

.hero-text-panel .hero-action-list {
  margin-left: clamp(58px, 9vw, 104px);
}

.hero-text-panel .hero-action-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
}

.hero-text-panel .hero-action-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(140, 107, 67, 0.75);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-text-panel .hero-action-list li:nth-child(2)::before,
.hero-text-panel .hero-action-list li:nth-child(4)::before {
  border-radius: 2px;
  transform: rotate(45deg);
}

.journey-section {
  padding-top: 8px;
}

@media (max-width: 700px) {
  .hero.hero-landing {
    padding-bottom: 20px;
  }

  .hero-text-panel .hero-action-list {
    margin-left: 0;
  }

  .hero-text-panel .hero-action-list li {
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 10px;
  }

  .journey-section {
    padding-top: 12px;
  }
}

/* Hero content frame. */
.hero-landing-inner {
  position: relative;
}

.hero-landing-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100px + clamp(8px, 1vw, 14px));
  bottom: 0;
  border: 1px solid rgba(34, 34, 34, 0.36);
  pointer-events: none;
}

.hero-text-panel,
.hero-landing .hero-materials {
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .hero-landing-inner::before {
    top: calc(72px + clamp(8px, 2vw, 12px));
  }
}

/* Hero frame position refinement. */
.hero-landing-inner::before {
  left: 5ch;
  right: 5ch;
  top: calc(52px + clamp(8px, 1vw, 14px));
}

@media (max-width: 700px) {
  .hero-landing-inner::before {
    left: 1ch;
    right: 1ch;
    top: calc(42px + clamp(8px, 2vw, 12px));
  }
}

/* Hero font and frame width refinement. */
.hero-text-panel .hero-cycle {
  font-family: Georgia, "Times New Roman", serif;
}

.hero-landing-inner::before {
  left: 3ch;
  right: 3ch;
}

@media (max-width: 700px) {
  .hero-landing-inner::before {
    left: 0.5ch;
    right: 0.5ch;
  }
}

/* Hero layout reset: no frame, centered typing, paired lower content. */
.hero-landing-inner::before {
  display: none;
}

.hero-landing-inner > #hero-title {
  grid-row: 1;
  margin-bottom: 0;
}

.hero-text-panel {
  display: contents;
}

.hero-text-panel .hero-cycle {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  width: min(22ch, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.hero-text-panel .hero-cycle-line {
  text-align: left;
}

.hero-text-panel .hero-action-list {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  margin-left: clamp(58px, 9vw, 104px);
  margin-top: 12px;
}

.hero-landing .hero-materials {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .hero-text-panel .hero-cycle {
    grid-column: 1;
    grid-row: 2;
    margin: 0 auto 22px;
  }

  .hero-text-panel .hero-action-list {
    grid-column: 1;
    grid-row: 3;
    margin-left: clamp(32px, 12vw, 88px);
  }

  .hero-landing .hero-materials {
    grid-column: 1;
    grid-row: 4;
    margin-top: 6px;
  }
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle {
    margin-bottom: 20px;
  }

  .hero-text-panel .hero-action-list {
    margin-left: 0;
    margin-top: 6px;
  }

  .hero-landing .hero-materials {
    margin-top: 8px;
  }
}

/* Hero vertical balance refinement. */
.hero-text-panel .hero-cycle {
  justify-items: center;
  width: min(22ch, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-text-panel .hero-action-list {
  margin-top: 34px;
}

.hero-landing .hero-materials {
  margin-top: -10px;
}

.hero.hero-landing {
  padding-bottom: 8px;
}

.journey-section {
  padding-top: 4px;
}

@media (max-width: 1024px) {
  .hero-text-panel .hero-action-list {
    margin-top: 24px;
  }

  .hero-landing .hero-materials {
    margin-top: -4px;
  }
}

@media (max-width: 700px) {
  .hero-text-panel .hero-action-list {
    margin-top: 18px;
  }

  .hero-landing .hero-materials {
    margin-top: 0;
  }

  .journey-section {
    padding-top: 8px;
  }
}

/* Hero lower-row vertical alignment. */
.hero.hero-landing {
  padding-bottom: 0;
}

.hero-text-panel .hero-action-list {
  align-self: center;
  margin-top: 18px;
}

.hero-landing .hero-materials {
  align-self: center;
  margin-top: 0;
}

.journey-section {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .hero-text-panel .hero-action-list {
    align-self: center;
    margin-top: 16px;
  }

  .hero-landing .hero-materials {
    align-self: center;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .hero-text-panel .hero-action-list {
    margin-top: 14px;
  }

  .journey-section {
    padding-top: 4px;
  }
}

/* Hero action and Explore spacing final adjustment. */
.hero-text-panel .hero-action-list {
  margin-left: clamp(108px, calc(9vw + 5ch), 154px);
  margin-top: -14px;
}

.journey-section {
  padding-top: 0;
  margin-top: -18px;
}

@media (max-width: 700px) {
  .hero-text-panel .hero-action-list {
    margin-left: 0;
    margin-top: 0;
  }

  .journey-section {
    margin-top: -10px;
  }
}

/* Hero action and Explore spacing repeat adjustment. */
.hero-text-panel .hero-action-list {
  margin-left: clamp(148px, calc(9vw + 10ch), 194px);
  margin-top: -42px;
}

.journey-section {
  padding-top: 0;
  margin-top: -36px;
}

@media (max-width: 700px) {
  .hero-text-panel .hero-action-list {
    margin-left: 0;
    margin-top: -12px;
  }

  .journey-section {
    margin-top: -18px;
  }
}

/* Hero spacing repeat refinement from current layout. */
.hero-text-panel .hero-cycle {
  margin-bottom: 12px;
}

.hero-text-panel .hero-action-list {
  margin-left: clamp(188px, calc(9vw + 15ch), 234px);
  margin-top: -70px;
}

.journey-section {
  padding-top: 0;
  margin-top: -54px;
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle {
    margin-bottom: 10px;
  }

  .hero-text-panel .hero-action-list {
    margin-left: 0;
    margin-top: -24px;
  }

  .journey-section {
    margin-top: -26px;
  }
}

/* Hero vertical gap reduction. */
.hero-text-panel .hero-cycle {
  margin-bottom: 6px;
}

.journey-section {
  padding-top: 0;
  margin-top: -72px;
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle {
    margin-bottom: 5px;
  }

  .journey-section {
    margin-top: -34px;
  }
}

/* Hero action link affordance. */
.hero-text-panel .hero-action-list a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

/* Hero typed-line stagger. */
.hero-text-panel .hero-cycle-line:nth-child(1) {
  margin-left: -4ch;
}

.hero-text-panel .hero-cycle-line:nth-child(2) {
  margin-left: 1ch;
}

.hero-text-panel .hero-cycle-line:nth-child(3) {
  margin-left: 6ch;
}

@media (max-width: 700px) {
  .hero-text-panel .hero-cycle-line:nth-child(1),
  .hero-text-panel .hero-cycle-line:nth-child(2),
  .hero-text-panel .hero-cycle-line:nth-child(3) {
    margin-left: 0;
  }
}

/* Keep completed typed lines from shifting between animation states. */
.hero-text-panel .hero-cycle-line,
.hero-text-panel .hero-cycle-line.is-active {
  font-weight: 600;
}

/* Mobile hero action breathing room. */
@media (max-width: 700px) {
  .hero-text-panel .hero-action-list {
    margin-top: calc(1em - 24px);
  }
}

/* Hero action specific symbols. */
.hero-text-panel .hero-action-list li {
  display: block;
}

.hero-text-panel .hero-action-list li::before {
  display: none;
}

.hero-text-panel .hero-action-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.65ch;
}

.hero-action-symbol {
  display: inline-grid;
  place-items: center;
  width: 1.4em;
  line-height: 1;
  text-decoration: none;
}

/* Hero action SVG icons. */
.hero-action-symbol svg {
  display: block;
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Simplified primary header navigation. */
.site-nav {
  gap: 12px;
}

.site-nav .nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  background: rgba(255, 255, 255, 0.34);
  text-decoration: none;
}

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 14px;
  }

  .site-nav {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 10px;
    padding: 0;
  }

  .site-nav .nav-button {
    flex: 1 1 0;
    min-height: 44px;
    padding: 9px 14px;
  }

  .site-nav a {
    border-top: 0;
  }
}

@media (max-width: 360px) {
  .site-nav {
    flex-direction: column;
  }
}

/* Mobile primary navigation strip refinement. */
.site-nav .nav-button {
  color: #FFFFFF;
}

@media (max-width: 700px) {
  .site-nav {
    width: calc(100% + 28px);
    margin: 0 -14px -14px;
    padding: 11px 14px 12px;
    justify-content: center;
    background: #234A73;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .site-nav .nav-button {
    max-width: 180px;
  }
}

/* Desktop header height refinement. */
@media (min-width: 701px) {
  .header-inner {
    min-height: 74px;
  }
}

/* Desktop header height second refinement. */
@media (min-width: 701px) {
  .header-inner {
    min-height: 67px;
  }
}

/* Mobile navigation strip height match. */
@media (max-width: 700px) {
  .site-nav {
    min-height: 64px;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

.hero.hero-landing { padding-top: 20px; padding-bottom: 12px; }
.paper-content, .note-content, .sketch-content,
.paper-content h2, .paper-content h3, .note-content h2, .note-content h3, .sketch-content h2, .sketch-content h3,
.paper-content p, .note-content p, .sketch-content p,
.paper-content a, .note-content a, .sketch-content a,
.paper-content .entry-type, .note-content .entry-type, .sketch-content .entry-type { color: #1F2A2E; }

.hero.hero-landing {
  padding-top: 12px;
  padding-bottom: 8px;
}

.hero-materials {
  min-height: 300px;
}

.hero-landing .hero-materials {
  margin-top: -50px;
}

.hero-landing-inner::before {
  display: block;
  width: 158px;
  height: 190px;
  left: 12px;
  right: auto;
  top: 126px;
  bottom: auto;
  border: 0;
  background: url("/assets/workspace/lightbulb-sketch.svg") center / contain no-repeat;
  opacity: .92;
  transform: rotate(-5deg);
}

@media (max-width: 1024px) {
  .hero-materials {
    min-height: 360px;
  }

  .hero-landing .hero-materials {
    margin-top: 0;
  }

  .hero-landing-inner::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-materials {
    min-height: 330px;
  }
}
.hero-text-panel .hero-cycle-line:nth-child(1) {
  color: #F5F7FA;
}

.hero-text-panel .hero-cycle-line:nth-child(2) {
  color: #EFE2B7;
}

.hero-text-panel .hero-cycle-line:nth-child(3) {
  color: #D4AF37;
}
/* Compact five-section homepage redesign. */
.journey-section,
.stories-explore-section,
.drawing-discovery-section,
.final-cta-section { background: #D9ECFA; }

.journey-section { padding: 54px 0 46px; }
.idea-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 16px 0 28px;
}
.idea-work { min-width: 0; }
.idea-origin { width: 100%; }
.idea-origin .paper-content { inset: 18% 12% 14% 17%; }
.idea-story { width: 100%; position: relative; padding: 25px; }
.idea-drawing { width: 100%; position: relative; }
.idea-drawing .sketch-content { inset: 24% 12% 17%; }
.idea-drawing .tape-one { left: 50%; transform: translateX(-50%) rotate(5deg); }
.idea-arrow {
  color: var(--accent);
  font-family: Inter, Arial, sans-serif;
  font-size: 2rem;
  text-align: center;
}

.stories-explore-section { border-top: 1px solid rgba(35, 74, 115, 0.16); }
.homepage-story-card { min-height: 230px; }

.drawing-discovery-section {
  padding: 52px 0;
  border-top: 1px solid rgba(35, 74, 115, 0.16);
}
.discovery-heading { margin-bottom: 20px; }
.drawing-discovery-card {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(230px, 0.75fr);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--paper-shadow);
}
.drawing-preview {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid var(--border);
}
.drawing-preview iframe {
  position: absolute;
  top: -118px;
  left: 0;
  width: 100%;
  height: calc(100% + 118px);
  border: 0;
  pointer-events: none;
}
.drawing-discovery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(26px, 5vw, 46px);
}
.drawing-discovery-copy h3 { overflow-wrap: anywhere; font-size: clamp(1.35rem, 2.4vw, 1.9rem); }

/* Keep the Drawing discovery aligned with Stories while retaining two distinct objects. */
.drawing-discovery-section .discovery-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.drawing-discovery-section .discovery-heading h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  text-align: center;
}
.drawing-discovery-section .drawing-discovery-card {
  gap: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.drawing-discovery-section .drawing-preview,
.drawing-discovery-section .drawing-discovery-copy {
  border: 1px solid #9db8d0;
  border-radius: 16px;
  box-shadow: 0 5px 13px rgba(35, 74, 115, 0.12);
}
.drawing-discovery-section .drawing-preview { border-right: 1px solid #9db8d0; }
.drawing-discovery-section .drawing-discovery-copy {
  background-color: #f5faff;
  background-image: none;
}
.drawing-discovery-section .drawing-discovery-copy::before,
.drawing-discovery-section .drawing-discovery-copy::after { content: none; }

.drawing-discovery-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: clamp(290px, 30vw, 370px);
}
.drawing-discovery-mobile-viewport { display: contents; }
.drawing-discovery-tile {
  display: flex;
  min-width: 0;
  min-height: clamp(290px, 30vw, 370px);
  overflow: hidden;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid #9db8d0;
  border-radius: 16px;
  box-shadow: 0 5px 13px rgba(35, 74, 115, 0.12);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.drawing-discovery-tile-wide { grid-column: span 2; }
.drawing-discovery-tile-narrow { grid-column: span 1; }
.drawing-discovery-tile:hover { border-color: var(--accent); box-shadow: 0 7px 16px rgba(35, 74, 115, 0.16); }
.drawing-discovery-tile:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.drawing-discovery-artwork {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.drawing-discovery-artwork iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.drawing-discovery-title {
  display: block;
  flex: 0 0 auto;
  padding: 12px 15px;
  overflow-wrap: anywhere;
  font-weight: 700;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

@media (min-width: 901px) {
  main .drawing-discovery-section { padding-top: 26px; }
}

.final-cta-section {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(35, 74, 115, 0.16);
}
.final-cta-inner {
  max-width: var(--max);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 28px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: none;
}
.final-cta-inner h2 { margin: 0 0 2px; font-size: clamp(1.3rem, 2.1vw, 1.7rem); }
.final-cta-inner > p:not(.label) { margin: 0; color: var(--muted); }
.final-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.final-cta-actions { grid-column: 2; grid-row: 1 / span 2; }
.final-cta-actions .button { min-width: 88px; min-height: 40px; padding: 7px 15px; }

@media (max-width: 900px) {
  .hero-text-panel .hero-action-list { width: 100%; margin-left: 0; }
  .idea-path { grid-template-columns: 1fr; gap: 18px; }
  .idea-work { width: min(100%, 580px); margin: 0 auto; }
  .idea-arrow { transform: rotate(90deg); line-height: 1; }
}

@media (max-width: 700px) {
  .header-inner, .section-inner { width: min(100% - 24px, var(--max)); }
  .site-nav { width: calc(100% + 24px); margin-left: -12px; margin-right: -12px; }
  .section-heading { margin-bottom: 20px; }
  .journey-section, .stories-explore-section, .drawing-discovery-section { padding: 30px 0; }
  .final-cta-section { padding: 16px 0 18px; }
  .idea-path { gap: 12px; margin-bottom: 20px; }
  .idea-work { transform: none; }
  .idea-story { padding: 20px; }
  .idea-story .story-clip { left: 8px; }
  .homepage-story-card { min-height: 0; padding: 19px 20px; }
  .drawing-discovery-card { grid-template-columns: 1fr; }
  .drawing-discovery-gallery { grid-template-columns: 1fr; min-height: 0; }
  .drawing-discovery-tile-wide,
  .drawing-discovery-tile-narrow { grid-column: span 1; min-height: clamp(250px, 82vw, 360px); }
  .drawing-preview { min-height: clamp(210px, 64vw, 260px); border-right: 0; border-bottom: 1px solid var(--border); }
  .drawing-preview iframe { top: -96px; height: calc(100% + 96px); }
  .drawing-discovery-copy { padding: 20px; }
  .final-cta-inner { width: min(100% - 24px, var(--max)); padding: 18px; grid-template-columns: 1fr; text-align: center; }
  .final-cta-actions { grid-column: 1; grid-row: auto; margin-top: 14px; }
  .final-cta-actions .button { flex: 1 1 82px; }
  .footer-inner { align-items: flex-start; }
}

@media (max-width: 430px) {
  .hero-text-panel h1, .hero-landing-inner > #hero-title { font-size: 1.55rem; }
  .section-heading h2 { font-size: 1.45rem; }
  .hero-text-panel, .final-cta-inner { padding-left: 16px; padding-right: 16px; }
  .final-cta-actions { gap: 8px; }
  .final-cta-actions .button { padding-left: 10px; padding-right: 10px; }
  .site-footer { padding: 28px 0; }
  .site-footer nav { gap: 10px 14px; }
}

/* Final homepage density cascade. */
.hero.hero-landing { padding-top: 8px; padding-bottom: 4px; }
.hero-materials { min-height: 260px; }
.hero-paper { width: min(100%, 380px); margin-top: 18px; }
.journey-section { padding: 42px 0 38px; margin-top: 0; }
.idea-path { margin-top: 6px; margin-bottom: 20px; }
.stories-explore-section { padding: 34px 0 36px; }
.homepage-story-card { min-height: 210px; color: inherit; text-decoration: none; transition: border-color 140ms ease, box-shadow 140ms ease; }
.homepage-story-card:hover { border-color: var(--accent); box-shadow: 0 7px 16px rgba(35, 74, 115, 0.12); }
.homepage-story-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.homepage-story-description { -webkit-line-clamp: 3; }
.homepage-story-affordance { pointer-events: none; }
.drawing-discovery-section { padding: 38px 0 40px; }
.drawing-preview { min-height: 270px; }
.drawing-discovery-copy { padding: 28px 32px; }
.final-cta-section { padding: 12px 0 14px; }
.final-cta-inner { padding: 12px 18px; }
.final-cta-inner h2 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.final-cta-actions { gap: 4px; }
.final-cta-actions .button { min-width: auto; min-height: 36px; padding: 5px 10px; border-color: transparent; background: transparent; color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.final-cta-actions .button + .button::before { content: '\00B7'; margin-right: 14px; color: var(--muted); text-decoration: none; }

@media (max-width: 900px) {
  .hero-text-panel .hero-action-list { width: 100%; margin-left: 0; }
  .hero-materials { min-height: 250px; }
  .hero-paper { width: min(100%, 350px); margin-top: 8px; }
}

/* Final mobile density cascade. */
@media (max-width: 800px) and (prefers-reduced-motion: reduce) {
  .drawing-discovery-gallery { transition: none !important; }
}

@media (max-width: 800px) {
  .drawing-discovery-mobile-viewport { display: block; width: 100%; overflow: hidden; }
  .drawing-discovery-gallery {
    display: flex; width: 100%; min-height: 0; gap: 0;
    transition: transform 360ms ease; will-change: transform;
  }
  .drawing-discovery-tile-wide,
  .drawing-discovery-tile-narrow {
    grid-column: auto; flex: 0 0 100%; width: 100%; min-height: 0;
  }
  .drawing-discovery-artwork,
  .drawing-discovery-tile-wide .drawing-discovery-artwork,
  .drawing-discovery-tile-narrow .drawing-discovery-artwork {
    flex: 0 0 auto; width: 100%; height: clamp(240px, 68vw, 340px); aspect-ratio: auto;
  }
  .hero.hero-landing { padding: 4px 0 0; }
  .hero-landing-inner { row-gap: 6px; }
  .hero-landing-inner > #hero-title { margin-bottom: 4px; }
  .hero-text-panel .hero-cycle { min-height: 68px; margin-bottom: 0; gap: 1px; }
  .hero-text-panel .hero-cycle-line { min-height: 1.2em; font-size: 0.9rem; line-height: 1.2; }
  .hero-text-panel .hero-action-list { gap: 6px; margin-top: -8px; }
  .hero-text-panel .hero-action-list li { min-height: 30px; font-size: 0.98rem; }
  .hero-landing .hero-materials { min-height: 220px; margin-top: -12px; }
  .hero-paper { width: min(100%, 280px); margin: 0 auto; }
  .hero-sticky { width: 90px; top: 12px; left: max(0px, calc(50% - 165px)); }
  .folded-corner { width: 46px; }

  .journey-section { padding: 28px 0 30px; }
  .journey-section .section-heading { margin-bottom: 12px; }
  .idea-path { position: relative; gap: 0; margin: 0 0 18px; padding-left: 24px; }
  .idea-path::before { content: ''; position: absolute; left: 8px; top: 24px; bottom: 24px; width: 1px; background: rgba(30, 136, 229, 0.45); }
  .idea-work { width: 100%; margin: 0; border-radius: 5px; transform: none; }
  .idea-origin, .idea-drawing { background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow); filter: none; }
  .idea-origin .paper-bg, .idea-drawing .sketch-bg { display: none; }
  .idea-origin .paper-content, .idea-drawing .sketch-content { position: relative; inset: auto; padding: 16px 18px; text-align: left; }
  .idea-origin h3, .idea-drawing h3 { margin-bottom: 0; }
  .idea-story { padding: 16px 18px; }
  .idea-story p:not(.entry-type) { margin-bottom: 8px; }
  .idea-story .story-clip { left: 8px; }
  .idea-drawing .tape-one { width: 72px; top: -13px; }
  .idea-arrow { position: relative; height: 24px; transform: none; font-size: 0; text-align: left; }
  .idea-arrow::after { content: '\2193'; position: absolute; left: -22px; top: 1px; color: var(--accent); font-size: 1rem; line-height: 1; }
  .journey-section .section-note { font-size: 0.9rem; line-height: 1.45; }

  .stories-explore-section { padding: 28px 0 30px; }
  .homepage-story-grid { display: flex; grid-template-columns: none; gap: 12px; overflow-x: auto; overflow-y: hidden; padding: 3px 3px 12px; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: thin; }
  .homepage-story-card { flex: 0 0 82%; min-height: 190px; padding: 17px 18px; scroll-snap-align: start; }
  .homepage-story-description { margin-bottom: 10px; -webkit-line-clamp: 2; }
  .homepage-story-card .button { min-height: 38px; margin-top: 4px; }

  .drawing-discovery-section { padding: 28px 0 30px; }
  .drawing-discovery-section .section-heading { margin-bottom: 14px; }
  .drawing-preview { min-height: clamp(170px, 48vw, 210px); }
  .drawing-discovery-copy { padding: 16px 18px; }
  .drawing-discovery-copy h3 { margin-bottom: 8px; }

  .final-cta-section { padding: 8px 0 10px; }
  .final-cta-inner { padding: 12px 14px; }
  .final-cta-inner h2 { margin-bottom: 0; font-size: 1.2rem; }
  .final-cta-inner > p:not(.label) { font-size: 0.9rem; line-height: 1.35; }
  .final-cta-actions { margin-top: 8px; gap: 2px; }
  .final-cta-actions .button { flex: 0 1 auto; min-height: 42px; padding: 7px 9px; }
  .final-cta-actions .button + .button::before { margin-right: 10px; }
}

@media (max-width: 430px) {
  .section-heading p:not(.label) { line-height: 1.5; }
  .hero-text-panel { padding-top: 8px; padding-bottom: 8px; }
  .hero-landing .hero-materials { min-height: 205px; }
  .hero-paper { width: min(100%, 258px); }
  .homepage-story-card { flex-basis: 84%; }
  .drawing-discovery-copy .button { min-height: 40px; }
}
