  @font-face {
    font-family: 'Open Runde';
    src: url('fonts/OpenRunde-Regular.woff2') format('woff2'),
         url('fonts/OpenRunde-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Open Runde';
    src: url('fonts/OpenRunde-Medium.woff2') format('woff2'),
         url('fonts/OpenRunde-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Open Runde';
    src: url('fonts/OpenRunde-Semibold.woff2') format('woff2'),
         url('fonts/OpenRunde-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Open Runde';
    src: url('fonts/OpenRunde-Bold.woff2') format('woff2'),
         url('fonts/OpenRunde-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  :root {
    --blue: #0000EE;
    --cyan: #0099FF;
    --ink: #000000;
    --ink-2: #333333;
    --muted: #4A4A4A;
    --tertiary: #B2B2B2;
    --surface: #F6F6F6;
    --surface-2: #E8E8E8;
    --border: #DEDEDE;
    --bg: #FFFFFF;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--bg); color: var(--ink); overflow-x: hidden; }
  body {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 40px 8px;
    border-left: 1px dashed var(--border);
    border-right: 1px dashed var(--border);
    min-height: 100vh;
  }

  /* Hero */
  .hero { padding-top: 0; padding-bottom: 64px; }

  /* Gallery trigger collage — ref layout */
  .gallery-trigger {
    position: relative;
    display: block;
    width: 380px;
    max-width: 100%;
    height: 170px;
    margin-bottom: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }
  .gallery-trigger .gt-card {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.14), 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: var(--surface);
  }
  .gallery-trigger .gt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* photo-ratio-respecting layout, ~380px total span */
  .gallery-trigger .gt-1 { width: 78px; height: 64px; z-index: 2; transform: translate(-50%, -50%) translate(-151px, 14px) rotate(-6deg); }
  .gallery-trigger .gt-2 { width: 61px; height: 85px; z-index: 4; transform: translate(-50%, -50%) translate(-107px, -1px) rotate(-4deg); }
  .gallery-trigger .gt-3 { width: 105px; height: 81px; z-index: 3; transform: translate(-50%, -50%) translate(-51px, -10px) rotate(-3deg); }
  .gallery-trigger .gt-4 { width: 61px; height: 92px; z-index: 7; transform: translate(-50%, -50%) translate(7px, -15px) rotate(-1deg); }
  .gallery-trigger .gt-5 { width: 61px; height: 81px; z-index: 5; transform: translate(-50%, -50%) translate(42px, -8px) rotate(1deg); }
  .gallery-trigger .gt-6 { width: 67px; height: 100px; z-index: 6; transform: translate(-50%, -50%) translate(80px, -8px) rotate(3deg); }
  .gallery-trigger .gt-7 { width: 102px; height: 68px; z-index: 1; transform: translate(-50%, -50%) translate(138px, -3px) rotate(5deg); }

  .gallery-trigger:hover .gt-1 { transform: translate(-50%, -50%) translate(-167px, 8px) rotate(-9deg); }
  .gallery-trigger:hover .gt-2 { transform: translate(-50%, -50%) translate(-119px, -6px) rotate(-6deg); }
  .gallery-trigger:hover .gt-3 { transform: translate(-50%, -50%) translate(-60px, -16px) rotate(-5deg); }
  .gallery-trigger:hover .gt-4 { transform: translate(-50%, -50%) translate(9px, -22px) rotate(-2deg); }
  .gallery-trigger:hover .gt-5 { transform: translate(-50%, -50%) translate(51px, -13px) rotate(2deg); }
  .gallery-trigger:hover .gt-6 { transform: translate(-50%, -50%) translate(96px, -13px) rotate(5deg); }
  .gallery-trigger:hover .gt-7 { transform: translate(-50%, -50%) translate(158px, -6px) rotate(7deg); }


  @media (max-width: 420px) {
    .gallery-trigger { height: 160px; }
    .gallery-trigger .gt-1, .gallery-trigger .gt-8 { display: none; }
  }

  /* Gallery modal */
  .gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    z-index: 1000;
    padding: 40px 24px;
  }
  .gallery-modal[aria-hidden="false"] { display: flex; }
  .gm-inner {
    max-width: 1040px;
    width: 100%;
    margin: auto 0;
  }
  .gm-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
    z-index: 10;
  }
  .gm-close:hover { background: rgba(255,255,255,0.2); }
  .gm-grid {
    columns: 3;
    column-gap: 16px;
  }
  .gm-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 0 16px;
    break-inside: avoid;
    background: #1a1a1a;
  }
  @media (max-width: 767px) {
    .gm-grid { columns: 2; column-gap: 12px; }
    .gm-grid img { margin-bottom: 12px; }
  }
  @media (max-width: 480px) {
    .gm-grid { columns: 1; }
  }
  h1 {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 12px;
  }
  h1 em { font-style: normal; }
  .lede {
    font-size: 16px;
    line-height: 21.28px;
    color: var(--ink);
    max-width: 540px;
    margin-bottom: 32px;
  }

  /* Section headings */
  h2 {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 35.2px;
    color: var(--ink);
    margin-bottom: 24px;
  }
  h3 {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: var(--ink);
    margin-bottom: 16px;
  }
  h4 {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.28px;
    color: var(--ink);
  }
  p { color: var(--ink); margin-bottom: 16px; }
  .meta { color: var(--muted); }

  section { padding-top: 48px; padding-bottom: 48px; position: relative; }
  section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-top: 1px dashed var(--border);
  }

  /* Links */
  a.link {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--blue);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-block;
    transition: color 0.15s ease, background-color 0.15s ease;
  }
  a.link:hover { color: var(--cyan); background: rgba(0, 0, 238, 0.05); }

  /* Primary CTA button */
  a.btn-primary {
    display: inline-block;
    background-image: linear-gradient(120deg,
      #4285F4 0%,
      #EA4335 25%,
      #FBBC05 50%,
      #34A853 75%,
      #4285F4 100%);
    background-size: 300% 100%;
    animation: gradient-shift 6s linear infinite;
    color: #FFFFFF;
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 100px;
    text-decoration: none;
    line-height: normal;
    transition: filter 0.15s ease;
  }
  a.btn-primary:hover { filter: brightness(1.1); }
  a.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    text-decoration: none;
    line-height: normal;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  a.btn-secondary:hover { border-color: var(--ink); background: var(--surface); }
  .work-cta { margin-top: 32px; display: flex; justify-content: center; }
  @keyframes gradient-shift {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
  }
  .cta-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 6px;
    border: 1px solid var(--border);
    border-radius: 100px;
  }
  .cta-note { color: var(--muted); font-size: 16px; }

  /* At-a-glance row */
  .glance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .glance-stat .num {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 40px;
    line-height: 44px;
    color: var(--ink);
  }
  .glance-stat .lbl {
    color: var(--muted);
    margin-top: 4px;
  }

  /* Work grid */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .work-grid .card { padding: 28px 0; }
  .work-grid .card:first-child { padding-top: 0; }
  .work-grid .card:last-child { padding-bottom: 0; }
  .work-grid .card:not(:last-child) { border-bottom: 1px dashed var(--border); }
  .work-grid .card {
    display: flex;
    gap: 24px;
    align-items: stretch;
  }
  .work-grid .card .card-thumb-link {
    flex: 0 0 40%;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .work-grid .card .thumb { margin-bottom: 0; }
  .work-grid .card .card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: -4px;
  }
  .work-grid .card .card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .work-grid .card .visit-link {
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    width: fit-content;
    transition: gap 0.18s ease;
  }
  .work-grid .card .visit-link:hover { gap: 10px; }
  .work-grid .card .visit-link svg { flex-shrink: 0; }
  .card {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .card .thumb {
    background: var(--surface);
    border-radius: 4px;
    aspect-ratio: 1200 / 630;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
  }
  .card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .card:hover .thumb { box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px; }
  .card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 4px;
  }
  .card .desc {
    color: var(--muted);
  }


  /* Wall of Love */
  .testimonials { display: grid; gap: 0; }
  .testimonials .testimonial { padding: 32px 0 0; }
  .testimonials .testimonial:first-child { padding-top: 0; }
  .testimonials .testimonial:last-child { padding-bottom: 0; }
  .testimonials .testimonial:not(:last-child) { border-bottom: 1px dashed var(--border); }
  .testimonial {
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
  }
  .testimonial p { margin-bottom: 16px; }
  .testimonial footer {
    color: var(--muted);
    font-size: 16px;
    margin-top: 16px;
    border: none;
    padding: 0;
    position: static;
    display: block;
  }
  .testimonial footer::before { display: none; }

  /* From passion for community — overlapping row, spread + reveal name on hover */
  .community-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 16px;
    margin-top: 16px;
    padding-top: 24px;
  }
  .community-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-left: -20px;
    border-radius: 20px;
    border: 1.5px solid transparent;
    background:
      linear-gradient(var(--bg), var(--bg)) padding-box,
      linear-gradient(var(--border), var(--border)) border-box;
    color: inherit;
    cursor: default;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                margin-left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.2s ease;
  }
  .community-item:first-child { margin-left: 0; }
  /* spread the whole row apart when hovering anywhere on it */
  .community-row:hover .community-item { margin-left: 8px; }
  .community-row:hover .community-item:first-child { margin-left: 0; }
  /* lift the hovered tile — gradient border appears on hover */
  .community-item:hover {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 14px 28px rgba(0,0,0,0.14);
    background:
      linear-gradient(var(--bg), var(--bg)) padding-box,
      linear-gradient(120deg, #4285F4 0%, #EA4335 33%, #FBBC05 66%, #34A853 100%) border-box;
    z-index: 5;
  }
  .community-mark {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    overflow: hidden;
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ink);
    background: var(--surface);
  }
  .community-item.is-empty .community-mark { background: var(--surface); }
  .community-mark img,
  .community-mark svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .community-label {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--ink);
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 12px;
    font-family: 'Open Runde', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
  }
  .community-label .sub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
  }
  .community-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ink);
  }
  .community-item:hover .community-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .community-item,
    .community-row:hover .community-item { transition: none; margin-left: 6px; }
    .community-row:hover .community-item:first-child { margin-left: 0; }
  }
  @media (max-width: 600px) {
    .community-item { width: 72px; height: 72px; margin-left: -16px; border-radius: 16px; }
    .community-mark { border-radius: 15px; font-size: 26px; }
  }

  /* Footer */
  footer {
    margin-top: 0;
    padding: 0;
    height: 50px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-top: 1px dashed var(--border);
  }
  .copyright {
    color: var(--ink);
    padding: 14px 0;
    font-size: 16px;
  }
  .pixel-strip {
    display: block;
    width: 100%;
    height: 100px;
    max-height: 100px;
    object-fit: cover;
    object-position: center bottom;
    margin-top: 4px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }
  footer .foot-nav { display: flex; gap: 4px; }
  footer .foot-nav:first-child { margin-left: -8px; }
  footer .foot-nav:last-child { margin-right: -8px; }
  footer .foot-nav .link {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
  }
  footer .foot-nav .link:hover {
    color: var(--ink);
    background: transparent;
    text-decoration: underline;
    text-decoration-color: var(--ink);
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
  footer .foot-nav .link svg { display: block; }

  /* Minimal motion */
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
    [data-reveal] {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      will-change: opacity, transform;
    }
    [data-reveal].in {
      opacity: 1;
      transform: translateY(0);
    }
    .hero .gallery-trigger,
    .hero h1,
    .hero .lede,
    .hero .cta-row {
      opacity: 0;
      transform: translateY(10px);
      animation: heroIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .hero .gallery-trigger { animation-delay: 0.05s; }
    .hero h1 { animation-delay: 0.18s; }
    .hero .lede { animation-delay: 0.30s; }
    .hero .cta-row { animation-delay: 0.42s; }
    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .gallery-modal {
      transition: opacity 0.2s ease, backdrop-filter 0.2s ease;
      opacity: 0;
    }
    .gallery-modal[aria-hidden="false"] { opacity: 1; }
  }

  /* Responsive */
  @media (max-width: 1023px) {
    main { padding: 88px 32px 48px; }
  }
  @media (max-width: 767px) {
    main { padding: 88px 24px 48px; }
    .hero { padding-top: 40px; padding-bottom: 48px; }
    h1 { font-size: 32px; line-height: 36px; }
    h2 { font-size: 24px; line-height: 28px; }
    .work-grid { grid-template-columns: 1fr; }
    .glance { grid-template-columns: 1fr; gap: 16px; }
  }

  /* Sub-page hero (insights / gallery) */
  .page-hero { padding-top: 8px; padding-bottom: 48px; }
  .page-hero .lede { margin-bottom: 0; }
  .back {
    display: inline-block;
    color: var(--muted);
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.15s ease;
  }
  .back:hover { color: var(--ink); }
  .post-back { padding-top: 8px; }

  /* Insights (blog) list */
  .post-list { list-style: none; margin: 0; padding: 0; }
  .post-list li { padding: 28px 0; }
  .post-list li:first-child { padding-top: 0; }
  .post-list li:last-child { padding-bottom: 0; }
  .post-list li:not(:last-child) { border-bottom: 1px dashed var(--border); }
  .post-item { display: block; text-decoration: none; color: inherit; }
  .post-date { display: block; color: var(--muted); font-size: 16px; margin-bottom: 8px; }
  .post-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--ink);
  }
  .post-excerpt { color: var(--muted); font-size: 16px; line-height: 1.55; margin: 0; }
  .post-item:hover .post-title {
    text-decoration: underline;
    text-decoration-color: var(--border);
    text-underline-offset: 4px;
  }

  /* Gallery (UI design) grid */
  .design-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .design-card { display: block; text-decoration: none; color: inherit; }
  .design-thumb {
    background: var(--surface);
    border-radius: 8px;
    aspect-ratio: 800 / 600;
    overflow: hidden;
  }
  .design-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .design-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--ink);
  }
  .design-card .desc { color: var(--muted); font-size: 16px; margin: 0; }
  /* Soft gradients for placeholder design cards */
  .design-card:nth-child(6n+1) .design-thumb { background: linear-gradient(135deg, #DDD6FE 0%, #C7D2FE 100%); }
  .design-card:nth-child(6n+2) .design-thumb { background: linear-gradient(135deg, #BAE6FD 0%, #A5F3FC 100%); }
  .design-card:nth-child(6n+3) .design-thumb { background: linear-gradient(135deg, #FBCFE8 0%, #F9A8D4 100%); }
  .design-card:nth-child(6n+4) .design-thumb { background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 100%); }
  .design-card:nth-child(6n+5) .design-thumb { background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%); }
  .design-card:nth-child(6n)   .design-thumb { background: linear-gradient(135deg, #FED7AA 0%, #FECACA 100%); }
  @media (max-width: 600px) {
    .design-grid { grid-template-columns: 1fr; }
  }

  /* Post detail page */
  .post-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0 32px;
    font-size: 16px;
    color: var(--muted);
    border-bottom: 1px dashed var(--border);
    margin-bottom: 56px;
  }
  .post-topbar .post-mark {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background: var(--ink);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
  }
  .post-topbar .post-mark img { width: 100%; height: 100%; object-fit: cover; }
  .post-topbar .post-crumb { color: var(--muted); }
  .post-topbar a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
  .post-topbar a:hover { color: var(--ink); }
  .post-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }
  .post-aside { font-size: 16px; }
  .post-aside .post-thumb {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #DDD6FE 0%, #C7D2FE 100%);
  }
  .post-aside .meta-row {
    display: block;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border);
  }
  .post-aside .meta-row:first-of-type { padding-top: 0; }
  .post-aside .meta-row:last-of-type { border-bottom: none; padding-bottom: 0; }
  .post-aside .meta-label {
    display: block;
    color: var(--muted);
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .post-aside .meta-value {
    display: block;
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
  }
  .post-body { max-width: 560px; }
  .post-body .lead {
    font-size: 24px;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .post-body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 16px;
  }
  .post-body p:last-child { margin-bottom: 0; }
  .post-body h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    margin: 32px 0 12px;
    letter-spacing: -0.005em;
  }
  .post-body h2:first-of-type { margin-top: 24px; }
  .post-body h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ink);
    margin: 24px 0 8px;
  }
  .post-body strong { color: var(--ink); font-weight: 600; }
  .post-body ul {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 16px;
    padding-left: 22px;
  }
  .post-body ul li { margin-bottom: 4px; }
  .post-body ul li::marker { color: var(--border); }
  @media (max-width: 720px) {
    .post-layout { grid-template-columns: 1fr; gap: 24px; }
    .post-topbar .post-crumb { display: none; }
    .post-aside .post-thumb { aspect-ratio: 5 / 3; max-width: 320px; }
  }

  /* Related posts */
  .related {
    margin-top: 64px;
    padding-top: 32px;
    position: relative;
  }
  .related::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-top: 1px dashed var(--border);
  }
  .related h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--ink);
  }
  .related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
  }
  .related-list li { padding: 20px 0; }
  .related-list li:first-child { padding-top: 0; }
  .related-list li:last-child { padding-bottom: 0; }
  .related-list li:not(:last-child) { border-bottom: 1px dashed var(--border); }
  .related-item { display: block; text-decoration: none; color: inherit; }
  .related-date { display: block; color: var(--muted); font-size: 16px; margin-bottom: 6px; }
  .related-title { font-size: 18px; font-weight: 600; line-height: 1.35; color: var(--ink); margin: 0; }
  .related-item:hover .related-title {
    text-decoration: underline;
    text-decoration-color: var(--border);
    text-underline-offset: 4px;
  }

  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px dashed var(--border);
  }
  .pagination a,
  .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 36px;
    padding: 0 12px;
    border-radius: 100px;
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .pagination a:hover { background: var(--surface); }
  .pagination .current { background: var(--ink); color: #FFFFFF; cursor: default; }
  .pagination .disabled { color: var(--tertiary); pointer-events: none; }
  .pagination .arrow { gap: 6px; }
  @media (max-width: 480px) {
    .pagination .arrow span { display: none; }
  }

  /* Post detail title (matches insights list title) */
  .post-body h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 24px;
    letter-spacing: -0.005em;
  }

  /* Journey timeline */
  .journey-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
  }
  .journey-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 28px 0;
    align-items: start;
  }
  .journey-list li:first-child { padding-top: 0; }
  .journey-list li:last-child { padding-bottom: 0; }
  .journey-list li:not(:last-child) { border-bottom: 1px dashed var(--border); }
  .journey-year {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    padding-top: 2px;
  }
  .journey-body h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 6px;
  }
  .journey-body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }
  @media (max-width: 600px) {
    .journey-list li { grid-template-columns: 1fr; gap: 6px; }
    .journey-year { padding-top: 0; }
  }
