  :root{
    --bg: #FEFAE0;
    --ink: #161616;
    --ink-2: #5b5b56;
    --ink-3: #8a8a82;
    --paper: #FBFAEF;
    --accent: #7c8c42;
    --side-pad: 116px;
  }

  *{ box-sizing: border-box }
  html, body{ margin: 0; padding: 0 }
  body{
    font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
  }
  a{ color: inherit; text-decoration: none }
  img{ max-width: 100% }
  html{ scroll-behavior: smooth; scroll-padding-top: 100px; }

  /* ---------- Back link ---------- */
  .back-link{
    position: fixed; top: 24px; left: 24px;
    z-index: 50;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,.7);
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    color: var(--ink);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    transition: background .2s ease;
  }
  .back-link:hover{ background: rgba(255,255,255,.95) }

  /* ---------- Section nav ---------- */
  .cs-nav{
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: rgba(255, 255, 255, .7);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  }
  .cs-nav a{
    padding: 8px 16px;
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
  }
  .cs-nav a:hover{ background: rgba(126, 148, 119, .15); color: #5C7256; }
  .cs-nav a.active{ background: #7E9477; color: #fff; }
  @media (max-width: 720px){
    .cs-nav a{ padding: 6px 10px; font-size: 12px; }
  }

  /* ---------- Wrap (matches forum.html paddings) ---------- */
  .cs-wrap{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-pad);
  }

  /* ---------- Intro ---------- */
  .pomato-intro{
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .pomato-section1{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pomato-label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Kite One", cursive;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: #000;
  }
  .pomato-label img{
    width: 24px;
    height: 29.397px;
    aspect-ratio: 40 / 49;
  }
  .pomato-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: #000;
  }
  .pomato-section2{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pomato-section2 p{
    margin: 0;
    font-family: "Kite One", cursive;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #221F1F;
  }
  .pomato-highlight{
    color: #919E29;
  }

  /* ---------- Screens collage (full-bleed past the wrap) ---------- */
  .pomato-screens{
    margin-top: 48px;
    width: 100vw;
    max-width: none;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }
  .pomato-screens img{
    width: 100%;
    height: auto;
    display: block;
  }

  /* ---------- Two-column section (label left, body right) ---------- */
  .pomato-section{
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 var(--side-pad);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
  .pomato-section-label{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: #000;
    white-space: nowrap;
  }
  .pomato-section-body{
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .pomato-section-body p{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #221F1F;
  }
  .pomato-highlight-bold{
    font-weight: 700;
    color: #919E29;
  }
  .pomato-bullets{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pomato-bullet{
    padding-left: 28px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #221F1F;
  }
  .pomato-bullet strong{
    font-weight: 700;
  }

  /* ---------- Features section ---------- */
  .pomato-features-section{
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 var(--side-pad);
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .pomato-features-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-features-hl{
    color: #919E29;
  }
  .pomato-features-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .pomato-feature-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 27px;
    height: 265px;
    padding: 20px 32px;
    border-radius: 20px;
    border: 2px solid #E9EDC9;
    background: #FCFFE9;
  }
  .pomato-feature-card--wide{
    grid-column: 1 / -1;
    padding: 20.104px 80px;
    border-radius: 20.104px;
  }
  .pomato-feature-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .pomato-feature-header img{
    width: auto;
    height: 80px;
    display: block;
  }
  .pomato-feature-header h3{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    color: #1E1E1E;
    text-align: center;
  }
  .pomato-feature-card > p{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: #1E1E1E;
  }
  .pomato-feature-modes{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
  }
  .pomato-feature-mode{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
    max-width: 400px;
  }
  .pomato-feature-mode h4,
  .pomato-feature-mode p{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20.104px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: #1E1E1E;
  }

  .pomato-feature-mode p{
    font-weight: 400;
  }

  /* ---------- Research section ---------- */
  .pomato-research-section{
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 var(--side-pad);
    display: flex;
    flex-direction: column;
    gap: 72px;
  }
  .pomato-research-header{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .pomato-research-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-research-hl{
    font-weight: 800;
    color: #6A4E08;
  }
  .pomato-research-subtitle{
    margin: 0;
    font-family: "Kite One", cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-research-images{
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .pomato-research-image{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pomato-research-image figcaption{
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-research-image img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }

  /* ---------- Draft / sketches section ---------- */
  .pomato-draft-section{
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 var(--side-pad);
    display: flex;
    align-items: flex-start;
    gap: 64px;
  }
  .pomato-draft-image{
    flex: 1;
    min-width: 0;
  }
  .pomato-draft-image img{
    width: 100%;
    height: auto;
    display: block;
  }
  .pomato-draft-text{
    display: flex;
    width: 458px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
  }
  .pomato-draft-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    color: #000;
  }
  .pomato-draft-script{
    font-family: "Mogra", "Manrope", cursive;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    color: #919E29;
  }
  .pomato-draft-desc{
    margin: 0;
    font-family: "Kite One", cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
  }
  .pomato-draft-hl{
    color: #919E29;
  }

  /* ---------- Designing the Website section ---------- */
  .pomato-design-section{
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 var(--side-pad);
    position: relative;
  }
  .pomato-design-cloud{
    position: absolute;
    width: 155px;
    height: 79px;
    pointer-events: none;
  }
  .pomato-design-cloud--left{
    top: 40px;
    left: -140px;
  }
  .pomato-design-cloud--right{
    top: -20px;
    right: 330px;
  }
  .pomato-design-eyebrow{
    margin: 0;
    font-family: "Kite One", cursive;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: #616060;
  }
  .pomato-design-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-design-list{
    margin: 48px 0 0;
    padding-left: 24px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pomato-design-list li{
    padding-left: 8px;
  }
  .pomato-design-hl{
    font-weight: 700;
    color: #919E29;
  }

  /* ---------- Final Designs gallery section ---------- */
  .pomato-gallery-title-wrap{
    max-width: 1200px;
    margin: 120px auto 32px;
    padding: 0 var(--side-pad);
  }
  .pomato-gallery-title{
    margin: 0;
    font-family: "Kite One", cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    color: #386641;
  }
  .pomato-gallery-section{
    background: rgba(204, 213, 174, 0.80);
    margin: 0 0 80px;
    padding: 80px 0;
  }
  .pomato-gallery-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-pad);
    display: flex;
    flex-direction: column;
    gap: 72px;
  }
  .pomato-gallery-main{
    display: flex;
    justify-content: center;
  }
  .pomato-gallery-main img{
    width: 817.35px;
    max-width: 100%;
    height: auto;
    display: block;
  }
  .pomato-gallery-row{
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }
  .pomato-gallery-desc{
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: "Kite One", cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #386641;
  }
  .pomato-gallery-images{
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 0;
    overflow: visible;
  }
  .pomato-gallery-images img{
    width: 466.825px;
    height: 263.858px;
    flex-shrink: 0;
    display: block;
  }
  .pomato-gallery-stack{
    display: flex;
    width: 954.229px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pomato-gallery-stack .pomato-gallery-images{
    flex: none;
  }
  .pomato-gallery-carousel{
    flex: 1;
    overflow: hidden;
    min-width: 0;
    /* Bleed to the right edge of the viewport so the carousel only clips at the page edge.
       At wide viewports (>1200px), reaches past the section's right padding + centering margin. */
    margin-right: min(calc(var(--side-pad) * -1), calc((1200px / 2) - var(--side-pad) - 50vw));
  }
  .pomato-gallery-track{
    display: flex;
    gap: 20px;
    width: max-content;
    animation: pomato-timer-carousel 24s linear infinite;
  }
  .pomato-gallery-track img{
    width: 466.825px;
    height: 263.858px;
    flex-shrink: 0;
    display: block;
  }
  @keyframes pomato-timer-carousel{
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
  }
  @media (prefers-reduced-motion: reduce){
    .pomato-gallery-track{ animation: none; }
  }

  /* ---------- What I learned section ---------- */
  .pomato-learned-section{
    max-width: 1200px;
    margin: 160px auto 80px;
    padding: 0 var(--side-pad);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .pomato-learned-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-learned-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: start;
  }
  .pomato-learned-text{
    display: flex;
    flex-direction: column;
  }
  .pomato-learned-block{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pomato-learned-block + .pomato-learned-block{
    margin-top: 40px;
  }
  .pomato-learned-block p{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #1E1E1E;
  }
  .pomato-learned-hl{
    color: #919E29;
  }
  .pomato-learned-happy{
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pomato-learned-happy img{
    width: 60px;
    height: auto;
    flex-shrink: 0;
  }
  .pomato-learned-happy p{
    margin: 0;
    font-family: "Kite One", cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #1E1E1E;
  }
  .pomato-learned-image{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pomato-learned-image img{
    width: 400px;
    height: auto;
    display: block;
  }
  .pomato-learned-image figcaption{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: rgba(34, 31, 31, 0.61);
  }

  /* ---------- "Check out my other work" section ---------- */
  .pomato-more-section{
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 var(--side-pad);
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .pomato-more-eyebrow{
    margin: 0 0 4px;
    font-family: "Kite One", cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #616060;
  }
  .pomato-more-title{
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    color: #1E1E1E;
  }
  .pomato-more-card{
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px;
    border-radius: 20px;
    background: var(--paper);
    text-decoration: none;
    color: inherit;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  }
  .pomato-more-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
  }
  .pomato-more-thumb{
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
  }
  .pomato-more-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pomato-more-text{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pomato-more-card-title{
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #1E1E1E;
  }
  .pomato-more-cta{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #7E9477;
    transition: color .2s ease;
  }
  .pomato-more-card:hover .pomato-more-cta{
    color: #5C7256;
  }

  /* ---------- Mobile + tablet blocker ---------- */
  .mobile-blocker{ display: none; }
  @media (max-width: 1024px){
    html, body{ overflow: hidden; height: 100%; }
    .mobile-blocker{
      display: flex;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: var(--bg);
      align-items: center;
      justify-content: center;
      padding: 32px;
    }
    .mobile-blocker-inner{
      text-align: center;
      max-width: 360px;
    }
    .mobile-blocker-text{
      font-family: "Kite One", serif;
      font-size: 22px;
      line-height: 1.5;
      color: var(--ink, #161616);
      margin: 0 0 28px;
    }
    .mobile-blocker-btn{
      display: inline-block;
      padding: 12px 28px;
      border-radius: 999px;
      background: #7E9477;
      color: #fff;
      font-family: "Manrope", sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s ease;
    }
    .mobile-blocker-btn:hover{ background: #5C7256; }
    .mobile-blocker-text--tablet{ display: none; }
  }
  @media (min-width: 641px) and (max-width: 1024px){
    .mobile-blocker-text--mobile{ display: none; }
    .mobile-blocker-text--tablet{ display: block; }
  }
