@import url('/assets/fonts/fonts.css');

:root {
  --ink: #17332a;
  --muted: #66736e;
  --paper: #fbfaf6;
  --white: #fffefa;
  --line: #dfe3dc;
  --green: #176a50;
  --green-dark: #104b3a;
  --mint: #dcebdd;
  --gold: #f3c65f;
  --coral: #ec7a5e;
  --blue: #668eaa;
  --violet: #8174a7;
  --shadow: 0 18px 50px rgba(23, 51, 42, .09);
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--paper); }
body.is-dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid #7145a8; outline-offset: 3px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 12px 18px; background: white; color: #17332a; transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Newsreader", Georgia, serif; font-weight: 600; letter-spacing: -.03em; }
img { display: block; max-width: 100%; }

.site-header, .site-footer, #app { width: min(1240px, calc(100vw - 48px)); margin-inline: auto; }
.site-header { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 30; }
.brand, .footer-brand { border: 0; background: transparent; display: inline-flex; align-items: center; gap: 11px; padding: 8px 0; font-weight: 700; font-size: 1.06rem; cursor: pointer; }
.brand-mark { width: 40px; height: 40px; display: block; flex: 0 0 auto; }
.cw-bar .cw-brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark i { width: 6px; border-radius: 6px; background: var(--green); }
.brand-mark i:nth-child(1) { height: 9px; opacity: .55; }
.brand-mark i:nth-child(2) { height: 15px; opacity: .78; }
.brand-mark i:nth-child(3) { height: 22px; }
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav button { min-height: 42px; padding: 0 13px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: .82rem; font-weight: 700; cursor: pointer; }
.site-nav button:hover, .site-nav button.is-active { color: var(--ink); background: #f0f0ea; }
.site-nav .nav-share { margin-left: 6px; padding-inline: 17px; color: white; background: var(--ink); }
.site-nav .nav-share:hover, .site-nav .nav-share.is-active { color: white; background: var(--green); }
.site-nav .profile-button { width: 42px; padding: 0; margin-left: 6px; background: var(--mint); color: var(--green-dark); }
.menu-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; background: var(--white); padding: 9px 14px; font-weight: 700; }
#app { min-height: calc(100vh - 170px); }
.site-footer { min-height: 110px; padding: 28px 0; margin-top: 80px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .82rem; }
.site-footer p { margin: 0; }
.site-footer div { display: flex; gap: 12px; align-items:center; flex-wrap:wrap; }
.site-footer div button,.site-footer div a { border: 0; background: transparent; color: var(--muted); cursor: pointer; font:inherit; text-decoration:none; }

.eyebrow { margin: 0 0 14px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.primary-button, .secondary-button, .text-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; border-radius: 999px; padding: 0 21px; font-weight: 700; text-decoration: none; cursor: pointer; transition: .2s ease; }
.primary-button { border: 1px solid var(--ink); background: var(--ink); color: white; box-shadow: 0 11px 26px rgba(23,51,42,.16); }
.primary-button:hover { transform: translateY(-2px); background: var(--green); border-color: var(--green); }
.secondary-button { border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.secondary-button:hover { border-color: #b8c0b8; transform: translateY(-1px); }
.text-button { min-height: auto; padding: 8px 0; border: 0; background: transparent; color: var(--green); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-heading h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); line-height: .98; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-width: 0; position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-main { flex: 1; min-width: 0; padding: 0 28px 20px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.product-preview { display: block; height: 190px; margin: 0 -28px 22px; overflow: hidden; border-bottom: 1px solid var(--line); background: #eef0ec; }
.product-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .35s ease; }
.product-card:hover .product-preview img { transform: scale(1.025); }
.product-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 17px; background: var(--mint); color: var(--green-dark); font-family: "Newsreader", serif; font-size: 2rem; font-weight: 600; }
.product-icon svg { width: 28px; height: 28px; }
.product-icon.teal { background: #dcebe5; color: #176a50; }
.product-icon.blue { background: #e1eaf0; color: #406b86; }
.product-icon.gold { background: #f9ebc4; color: #84621f; }
.product-icon.coral { background: #f8ded5; color: #a24b36; }
.product-icon.green { background: #dfeadd; color: #436b46; }
.product-icon.violet { background: #e8e3ef; color: #655887; }
.product-icon.large { width: 86px; height: 86px; border-radius: 24px; font-size: 3rem; }
.product-icon.large svg { width: 42px; height: 42px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 13px; }
.product-meta span { padding: 5px 8px; border-radius: 999px; background: #f0f0ea; color: var(--muted); font-size: .67rem; font-weight: 700; }
.product-card-main > strong { display: block; font-family: "Newsreader", serif; font-size: 1.8rem; letter-spacing: -.02em; }
.product-card-main p { min-height: 66px; margin: 9px 0 17px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.product-outcome { display: block; padding-top: 15px; border-top: 1px solid var(--line); color: var(--green-dark); font-size: .75rem; font-weight: 700; }
.product-card-foot { min-height: 58px; padding: 0 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: .76rem; font-weight: 700; }
.product-card-creator { padding: 0 28px 18px; }
.product-card-foot button { border: 0; background: transparent; color: var(--green); font-weight: 700; cursor: pointer; }
.save-button { position: absolute; z-index: 2; top: 22px; right: 22px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.9); color: var(--muted); font-size: 1.1rem; cursor: pointer; }
.save-button.is-saved { background: #f7e2dd; border-color: #f0c8bd; color: var(--coral); }
.page-shell { padding: 52px 0 40px; }
.page-intro { max-width: 780px; margin-bottom: 52px; }
.page-intro h1 { margin: 0; font-size: clamp(4rem, 8vw, 7rem); line-height: .87; }
.page-intro > p:not(.eyebrow) { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: 1.13rem; line-height: 1.6; }
.discover-page { padding-top: 58px; }
.discover-page .page-intro { max-width: 980px; margin-bottom: 34px; }
.discover-page .page-intro h1 { max-width: 980px; font-size: clamp(2.25rem, 4vw, 3.75rem); line-height: 1.08; text-wrap: balance; }
.discover-page .page-intro > p:not(.eyebrow) { margin-top: 15px; }
.catalog-controls { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 15px; margin-bottom: 24px; }
.catalog-search { min-height: 56px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; padding: 0 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.catalog-search span { font-size: 1.5rem; color: var(--green); }
.catalog-search input { border: 0; outline: 0; background: transparent; }
.sort-control { display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); color: var(--muted); font-size: .78rem; font-weight: 700; }
.sort-control select { border: 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.results-heading { display: flex; justify-content: space-between; gap: 20px; margin: 0 2px 18px; color: var(--muted); font-size: .78rem; }
.results-heading strong { color: var(--ink); }
.catalog-grid { grid-template-columns: repeat(3, 1fr); }
.empty-state { grid-column: 1/-1; padding: 80px 30px; text-align: center; border: 1px dashed #c6cbc4; border-radius: 24px; }
.empty-state h2 { font-size: 2.5rem; }
.empty-state p { color: var(--muted); }

.back-link { margin-bottom: 35px; padding: 0; border: 0; background: transparent; color: var(--muted); font-weight: 700; cursor: pointer; }
.product-hero { min-height: 690px; display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: minmax(280px,.9fr) minmax(330px,1.1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--white); box-shadow: var(--shadow); }
.product-identity { padding: clamp(42px, 7vw, 86px); }
.product-identity { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; }
.product-identity h1 { margin: 0; font-size: clamp(4.6rem, 8vw, 8rem); line-height: .85; }
.product-lead { max-width: 670px; margin: 25px 0; color: var(--muted); font-size: 1.23rem; line-height: 1.6; }
.product-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.external-note { max-width: 530px; margin: 16px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.product-preview-panel { position: relative; min-width: 0; overflow: hidden; background: #e7ebe6; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-preview-panel img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.product-preview-panel span { position: absolute; left: 16px; bottom: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(23,51,42,.88); color: white; font-size: .67rem; font-weight: 700; }
.trust-card { padding: clamp(28px, 4vw, 45px); background: #e8f0e8; display: flex; flex-direction: column; justify-content: center; }
.trust-card dl { margin: 0; }
.trust-card dl div { padding: 18px 0; border-bottom: 1px solid rgba(23,51,42,.13); }
.trust-card dt { margin-bottom: 6px; color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.trust-card dd { margin: 0; font-weight: 700; line-height: 1.4; }
.new-evidence { margin-top: 25px; padding: 19px; border-radius: 16px; background: rgba(255,255,255,.63); }
.new-evidence strong { font-size: .84rem; }
.new-evidence p { margin: 7px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.detail-overlay { position: fixed; inset: 0; z-index: 100; display: flex; justify-content: flex-end; animation: overlay-in .2s ease both; }
.detail-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(13,28,23,.42); cursor: default; backdrop-filter: blur(2px); }
.detail-dialog { position: relative; width: min(880px, calc(100vw - 110px)); height: 100%; background: var(--paper); box-shadow: -22px 0 65px rgba(13,28,23,.23); display: flex; flex-direction: column; animation: drawer-in .3s cubic-bezier(.22,.8,.32,1) both; }
.detail-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.mealmap-detail { background: #fffaf2; }
.mealmap-top { padding: 22px 30px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mealmap-wordmark { font-family: "Newsreader", serif; font-size: 1.6rem; font-weight: 600; }
.mealmap-wordmark small { display: block; margin-top: 4px; font: 400 .8rem/1.5 sans-serif; color: var(--muted); }
.mealmap-intro { padding: 32px 44px 30px; max-width: none; position: relative; isolation: isolate; background: #fffaf2; }
.mealmap-intro::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--project-wallpaper) center 22% / cover no-repeat; opacity: .8; }
.mealmap-intro::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #fff 0%, #fff 42%, rgba(255,255,255,.97) 53%, rgba(255,255,255,.76) 67%, rgba(255,255,255,.32) 84%, rgba(255,255,255,.08) 100%); }
.mealmap-intro h2 { max-width: 620px; }
.mealmap-intro h2 { margin: 0; font-size: clamp(2.7rem, 5.6vw, 4.8rem); line-height: 1.08; text-wrap: balance; letter-spacing: -.035em; }
.mealmap-lead { max-width: 490px; margin: 20px 0 26px; font-size: 1.1rem; line-height: 1.6; color: var(--muted); }
.mealmap-intro .primary-button { background: #a83822; }
.mealmap-access { font-size: .85rem; margin: 12px 0 0; color: var(--muted); }
.mealmap-example { margin: 6px 30px 26px; padding: 28px; background: #f4e5ce; border-radius: 18px; }
.mealmap-example-heading { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.mealmap-example h3, .mealmap-feedback h3 { font-size: clamp(1.8rem, 3vw, 2.3rem); line-height: 1.15; margin: 0 0 20px; }
.mealmap-example-heading > span { font-size: .75rem; white-space: nowrap; border: 1px solid #cdb99b; border-radius: 20px; padding: 6px 10px; }
.mealmap-example ul { list-style: none; padding: 0; margin: 0; }
.mealmap-example li { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 17px 0; border-top: 1px solid #d9c9b0; }
.mealmap-example li > span { font-size: .75rem; color: #8c402c; font-weight: 700; }
.mealmap-example li strong { font-size: 1rem; line-height: 1.45; }
.mealmap-example li small { font-size: .85rem; }
.mealmap-example > p { font-size: .8rem; line-height: 1.5; color: #635a4d; margin-bottom: 0; }
.mealmap-after { padding: 0 30px 48px; background: #fff; }
.creator-verified { display: inline-block; width: fit-content; margin: 5px 0; padding: 4px 8px; border-radius: 12px; background: #e0f1e8; color: #15533f; font: 600 .75rem/1.4 sans-serif; }
.verification-explanation { padding: 16px 20px; background: #edf5f0; color: #234d40; font-size: .9rem; line-height: 1.6; }
.mealmap-detail .detail-scroll { padding-bottom: 0; }
.mealmap-action { margin-bottom: 28px; }
.mealmap-answers { padding: 32px 30px; }
.mealmap-answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 24px; }
.mealmap-answer-grid h3 { font-family: inherit; font-size: 1rem; line-height: 1.4; margin: 0 0 12px; }
.mealmap-answer-grid p { font-size: 1rem; line-height: 1.6; color: var(--muted); margin: 0; }
.mealmap-answers .primary-button { background: #a83822; }
@media (max-width: 640px) {
  .mealmap-answer-grid { grid-template-columns: 1fr; gap: 22px; }
  .mealmap-answers { padding: 26px 22px; }
}
.mealmap-screenshot summary { cursor: pointer; display: flex; justify-content: space-between; padding: 12px 0 24px; font-size: .95rem; font-weight: 600; }
.mealmap-screenshot img { width: 100%; height: auto; border-radius: 12px; }
.mealmap-maker, .mealmap-feedback { padding: 26px 0; border-top: 1px solid var(--line); }
.mealmap-maker > p:last-child, .mealmap-feedback p { font-size: 1rem; line-height: 1.6; max-width: 600px; color: var(--muted); }
.mealmap-feedback small { display: block; margin-top: 12px; font-size: .8rem; color: var(--muted); }
.mealmap-feedback label { display: block; margin-bottom: 12px; font-size: 1rem; }
.mealmap-feedback textarea { display: block; width: 100%; min-height: 100px; margin-bottom: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); font: inherit; resize: vertical; }
.detail-comment-form { max-width: 680px; margin-top: 22px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #f8faf7; }
.detail-comment-compose { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 12px; align-items: start; }
.detail-comment-compose > .person-avatar { width: 40px; height: 40px; }
.detail-comment-entry { min-width: 0; }
.mealmap-feedback .detail-comment-entry label { margin: 0 0 8px; font-weight: 700; color: var(--ink); }
.mealmap-feedback .detail-comment-entry textarea { box-sizing: border-box; min-height: 112px; margin: 0; }
.detail-comment-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; }
.detail-comment-actions .word-counter { margin: 0; }
.detail-comment-actions .primary-button { min-height: 42px; padding: 0 17px; }
.detail-comment-form [data-comment-status] { min-height: 1.4em; margin: 9px 0 0; color: var(--green); font-size: .84rem; }
.mealmap-comments { margin-top: 24px; }
@media (max-width: 540px) {
  .mealmap-top { padding: 18px; }
  .mealmap-intro { padding: 24px 22px; }
  .mealmap-example { margin: 8px 16px 24px; padding: 20px; }
  .mealmap-example-heading { flex-direction: column-reverse; gap: 16px; }
  .mealmap-example li { grid-template-columns: 32px 1fr; gap: 8px; }
  .mealmap-example li small { grid-column: 2; }
  .mealmap-after { padding: 0 22px; }
  .detail-comment-form { padding: 16px; }
  .detail-comment-compose { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .detail-comment-compose > .person-avatar { width: 34px; height: 34px; }
  .detail-comment-actions { align-items: flex-start; flex-direction: column; }
}
.detail-scroll { min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding-bottom: 48px; }
.detail-product-header { min-height: 178px; padding: 30px 34px 25px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: start; background: var(--white); }
.detail-heading-copy { min-width: 0; }
.detail-heading-copy .product-meta { margin-bottom: 8px; }
.detail-heading-copy h2 { margin: 0; font-size: clamp(3.4rem, 6vw, 5.5rem); line-height: .86; overflow-wrap: anywhere; }
.detail-heading-copy > p { max-width: 650px; margin: 13px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.45; }
.detail-header-controls { display: flex; gap: 8px; align-items: center; }
.detail-save { min-height: 42px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: white; font-size: .77rem; font-weight: 700; cursor: pointer; }
.detail-save.is-saved { background: #f7e2dd; border-color: #f0c8bd; color: var(--coral); }
.detail-preview { height: clamp(330px, 46vh, 470px); margin: 0; position: relative; overflow: hidden; border-block: 1px solid var(--line); background: #e8ebe6; }
.detail-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.detail-preview figcaption { position: absolute; left: 20px; bottom: 17px; padding: 7px 11px; border-radius: 999px; background: rgba(23,51,42,.9); color: white; font-size: .68rem; font-weight: 700; }
.detail-try-bar { position: sticky; top: 0; z-index: 5; min-height: 82px; padding: 14px 34px; border-bottom: 1px solid var(--line); background: rgba(255,254,250,.97); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: space-between; gap: 18px; box-shadow: 0 8px 20px rgba(23,51,42,.06); }
.detail-try-bar .primary-button { min-width: 220px; }
.detail-try-bar > div { display: grid; justify-items: end; gap: 2px; }
.detail-try-bar > div strong { font-size: 1rem; }
.detail-try-bar > div span { color: var(--muted); font-size: .71rem; }
.detail-evaluation { padding: 32px 34px 40px; }
.detail-description { max-width: 720px; margin: 0 0 25px; color: var(--muted); line-height: 1.6; }
.benefit-list { margin: 0; padding: 0; list-style: none; display: grid; border-block: 1px solid var(--line); }
.benefit-list li { min-height: 58px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.benefit-list li:last-child { border-bottom: 0; }
.benefit-list li span { width: 26px; height: 26px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .76rem; font-weight: 900; }
.benefit-list li strong { font-size: .88rem; }
.detail-trust-row { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 21px 0; color: var(--muted); font-size: .73rem; font-weight: 700; }
.detail-trust-row span:not(:first-child)::before { content: "·"; margin-right: 20px; color: #aeb7b0; }
.detail-more { border-top: 1px solid var(--line); }
.detail-more summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 700; cursor: pointer; list-style: none; }
.detail-more summary::-webkit-details-marker { display: none; }
.detail-more summary span { font-size: 1.25rem; transition: transform .2s ease; }
.detail-more[open] summary span { transform: rotate(45deg); }
.detail-more > div { padding: 0 0 25px; }
.detail-more dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 0; }
.detail-more dl div { padding: 16px; border-radius: 13px; background: #eef2eb; }
.detail-more dt { margin-bottom: 6px; color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.detail-more dd { margin: 0; font-size: .82rem; font-weight: 700; line-height: 1.45; }
.detail-more p { margin: 16px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.detail-return { margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.detail-return p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.detail-return p strong { color: var(--ink); }
.detail-return .text-button { flex: 0 0 auto; font-size: .78rem; }
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes drawer-in { from { transform: translateX(45px); } to { transform: translateX(0); } }
.product-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 105px clamp(15px, 6vw, 70px); }
.product-story-grid h2 { font-size: clamp(2.3rem, 4vw, 3.7rem); line-height: 1; }
.product-story-grid p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.related { padding-top: 20px; }

.feedback-card { max-width: 760px; margin: 0 auto; padding: clamp(32px, 6vw, 70px); border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.feedback-card h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: .92; }
.feedback-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.feedback-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 30px 0; }
.feedback-choices button { min-height: 65px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 13px; background: #faf9f5; font-weight: 700; cursor: pointer; }
.feedback-choices button.is-selected { border-color: var(--green); background: var(--mint); }
.feedback-card label { display: grid; gap: 9px; font-size: .82rem; font-weight: 800; }
.feedback-card textarea { min-height: 140px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; resize: vertical; }
.form-actions { display: flex; justify-content: flex-end; gap: 11px; margin-top: 25px; }
.thank-you { padding: 30px 0; text-align: center; }
.thank-you > span, .completion-mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: var(--mint); color: var(--green); font-size: 2rem; font-weight: 800; }

.share-layout { min-height: 560px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.share-visual { min-width: 0; padding: 34px; background: var(--ink); display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.share-visual-copy .eyebrow { color: #a9d7c2; }
.share-visual-copy h2 { margin: 0; color: white; font-size: clamp(2.7rem, 4vw, 4.4rem); line-height: .91; }
.share-visual-copy > p:not(.eyebrow) { max-width: 440px; margin: 16px 0 0; color: rgba(255,255,255,.7); line-height: 1.55; }
.share-visual img { width: 100%; height: 285px; border-radius: 20px; object-fit: cover; object-position: center; }
.share-work { padding: clamp(36px, 6vw, 75px); }
.share-progress { height: 4px; margin-bottom: 42px; overflow: hidden; border-radius: 4px; background: #ebede8; }
.share-progress span { display: block; height: 100%; border-radius: inherit; background: var(--green); transition: width .3s ease; }
.share-work h1 { margin: 0; font-size: clamp(3.4rem, 6vw, 5.8rem); line-height: .89; }
.share-copy { margin: 20px 0 30px; color: var(--muted); line-height: 1.6; }
.big-input { display: grid; gap: 9px; color: var(--muted); font-size: .76rem; font-weight: 800; }
.big-input input { min-height: 60px; padding: 0 18px; border: 1px solid var(--line); border-radius: 14px; background: #faf9f5; color: var(--ink); font-size: 1rem; }
.drop-zone { width: 100%; min-height: 125px; margin-top: 13px; border: 1px dashed #bfc7be; border-radius: 16px; background: #faf9f5; display: grid; place-items: center; align-content: center; gap: 4px; cursor: pointer; }
.drop-zone span { color: var(--green); font-size: 1.5rem; }
.drop-zone small { color: var(--muted); }
.choice-grid { display: grid; gap: 10px; }
.choice-button { min-height: 60px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; background: #faf9f5; display: flex; align-items: center; gap: 12px; text-align: left; font-weight: 700; cursor: pointer; }
.choice-button span { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: white; }
.choice-button.is-selected { border-color: var(--green); background: var(--mint); }
.choice-button.is-selected span { background: var(--green); border-color: var(--green); }
.invitation-preview { margin-top: 20px; padding: 22px; border-radius: 18px 18px 18px 4px; background: #eef3ec; }
.invitation-preview > span { color: var(--green); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.invitation-preview p { margin: 12px 0; font-family: "Newsreader", serif; font-size: 1.35rem; line-height: 1.35; }
.invitation-preview small { color: var(--muted); }
.privacy-note { margin: 20px 0 0; color: var(--muted); font-size: .72rem; text-align: right; }
.completion-summary { margin-top: 20px; padding: 20px; border-radius: 15px; background: #eef3ec; }
.completion-summary span { display: block; margin-bottom: 7px; color: var(--green); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.completion-summary strong { line-height: 1.5; }

.account-hero { max-width: 820px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.account-hero h1 { margin: 0; font-size: clamp(2.75rem, 7vw, 6rem); line-height: 1.12; text-wrap: balance; overflow-wrap: break-word; }
.account-hero > p:not(.eyebrow) { margin-top: 20px; color: var(--muted); font-size: 1.1rem; line-height: 1.5; }
.account-actions { display: flex; justify-content: center; gap: 10px; margin: 28px 0 17px; }
.account-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.account-benefits article { padding: 35px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.account-benefits strong { font-family: "Newsreader", serif; font-size: 2rem; }
.account-benefits p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }
.saved-section { margin-top: 80px; }
.empty-saved { padding: 50px; border: 1px dashed #c8cdc6; border-radius: 20px; text-align: center; }

@media (max-width: 980px) {
  .site-header, .site-footer, #app { width: min(100% - 30px, 1240px); }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .site-nav button { width: 100%; }
  .site-nav .nav-share, .site-nav .profile-button { margin-left: 0; }
  .site-nav .profile-button { width: 100%; }
  .product-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .filter-panel > div:first-child { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
  .filter-panel > div > strong { width: 100%; }
  .filter-panel button { width: auto; grid-template-columns: 18px auto auto; padding-inline: 12px; border: 1px solid var(--line); }
  .filter-trust { display: none; }
  .catalog-row { grid-template-columns: 240px minmax(0,1fr); }
  .row-actions { grid-column: 2; padding: 0 0 10px; flex-direction: row; justify-content: flex-start; }
  .share-layout { grid-template-columns: 1fr; }
  .product-hero { grid-template-columns: 1fr; grid-template-rows: auto; }
  .product-identity { grid-row: auto; }
  .product-preview-panel { min-height: 390px; border-left: 0; }
  .share-visual { display: grid; grid-template-columns: minmax(0,.85fr) minmax(260px,1.15fr); align-items: center; padding: 28px; }
  .share-visual img { height: 240px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 70px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .product-grid, .catalog-grid { grid-template-columns: 1fr; }
  .catalog-row { grid-template-columns: 1fr; }
  .row-preview img { min-height: 210px; max-height: 260px; }
  .row-copy { padding: 5px 6px; }
  .row-actions { grid-column: 1; padding: 0 6px 6px; }
  .filter-panel > div:first-child { max-height: 260px; overflow: auto; }
  .share-visual { grid-template-columns: minmax(0,1fr) 104px; gap: 12px; padding: 16px 18px; }
  .share-visual-copy h2 { font-size: 1.95rem; }
  .share-visual-copy > p:not(.eyebrow) { margin-top: 10px; font-size: .78rem; line-height: 1.4; }
  .share-visual img { height: 112px; border-radius: 14px; }
  .page-shell { padding-top: 55px; }
  .page-intro h1 { font-size: 4rem; }
  .catalog-controls { grid-template-columns: 1fr; }
  .sort-control { min-height: 52px; justify-content: space-between; }
  .results-heading { align-items: flex-start; flex-direction: column; }
  .product-identity, .trust-card { padding: 35px 25px; }
  .product-preview-panel { min-height: 270px; }
  .detail-dialog { width: calc(100vw - 10px); height: calc(100% - 10px); margin: 10px 0 0 10px; border-radius: 22px 0 0; overflow: hidden; }
  .detail-product-header { min-height: 0; position: relative; display: block; padding: 72px 18px 18px; }
  .detail-heading-copy h2 { font-size: 3rem; }
  .detail-heading-copy > p { margin-top: 10px; font-size: .9rem; }
  .detail-header-controls { position: absolute; top: 16px; right: 14px; align-items: center; flex-direction: row; }
  .detail-save { min-height: 36px; padding-inline: 11px; }
  .detail-close { width: 38px; height: 38px; }
  .detail-preview { height: clamp(245px, 37vh, 330px); }
  .detail-try-bar { min-height: 76px; padding: 12px 18px; }
  .detail-try-bar .primary-button { min-width: 0; flex: 1; padding-inline: 16px; }
  .detail-try-bar > div span { display: none; }
  .detail-evaluation { padding: 26px 20px 34px; }
  .detail-description { margin-bottom: 20px; }
  .detail-trust-row { gap: 7px 12px; }
  .detail-trust-row span:not(:first-child)::before { margin-right: 12px; }
  .detail-more dl { grid-template-columns: 1fr; }
  .detail-return { align-items: flex-start; flex-direction: column; gap: 5px; }
  .product-identity h1 { font-size: 4.5rem; }
  .product-story-grid { grid-template-columns: 1fr; gap: 55px; padding: 70px 12px; }
  .feedback-choices, .account-benefits { grid-template-columns: 1fr; }
  .form-actions, .account-actions { align-items: stretch; flex-direction: column; }
  .form-actions button, .account-actions button { width: 100%; }
  .share-work { padding: 28px 20px; }
  .share-progress { margin-bottom: 28px; }
  .share-work h1 { font-size: 3rem; }
  .share-copy { margin: 15px 0 20px; }
  .drop-zone { min-height: 100px; }
}
.catalog-layout { display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: 32px; align-items: start; }
.filter-panel { position: sticky; top: 22px; display: grid; gap: 24px; }
.filter-panel > div:first-child { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.filter-panel > div > strong { display: block; margin: 4px 5px 14px; font-size: .79rem; }
.filter-panel button { width: 100%; min-height: 43px; padding: 0 9px; border: 0; border-radius: 10px; background: transparent; display: grid; grid-template-columns: 22px minmax(0,1fr) auto; gap: 8px; align-items: center; color: var(--muted); text-align: left; font-size: .74rem; cursor: pointer; }
.filter-panel button svg { width: 17px; height: 17px; }
.filter-panel button[data-category-filter="All"] > span { grid-column: 2; white-space: nowrap; }
.filter-panel button[data-category-filter="All"] > b { grid-column: 3; }
.filter-panel button b { font-size: .67rem; font-weight: 600; }
.filter-panel button:hover, .filter-panel button.is-selected { background: #edf2ed; color: var(--green-dark); font-weight: 700; }
.filter-trust { padding: 18px; border-radius: 16px; background: #eef2eb; }
.filter-trust p { margin: 7px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.5; }
.catalog-results { min-width: 0; }
.catalog-list { display: grid; gap: 13px; }
.catalog-row { min-width: 0; min-height: 230px; display: grid; grid-template-columns: 285px minmax(0,1fr) auto; gap: 24px; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); transition: .2s ease; }
.catalog-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.row-preview { min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: 13px; background: #edf0ec; cursor: pointer; }
.row-preview img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; object-position: top center; transition: transform .35s ease; }
.catalog-row:hover .row-preview img { transform: scale(1.02); }
.row-copy { min-width: 0; padding: 12px 0; }
.row-title { display: block; padding: 0; border: 0; background: transparent; font-family: "Newsreader", serif; font-size: 2rem; font-weight: 600; text-align: left; cursor: pointer; }
.row-copy p { max-width: 540px; margin: 8px 0 18px; color: var(--muted); line-height: 1.5; }
.row-copy > strong { margin-right: 13px; }
.row-copy > small { color: var(--muted); font-size: .7rem; }
.row-actions { padding: 12px 4px 12px 0; display: flex; flex-direction: column; justify-content: center; gap: 9px; }
.save-button-row { min-height: 42px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-weight: 700; cursor: pointer; }
.save-button-row.is-saved { background: #f7e2dd; border-color: #f0c8bd; color: var(--coral); }

@media (max-width: 980px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .filter-panel > div:first-child { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
  .filter-panel > div > strong { width: 100%; }
  .filter-panel button { width: auto; grid-template-columns: 18px auto auto; padding-inline: 12px; border: 1px solid var(--line); }
  .filter-trust { display: none; }
  .catalog-row { grid-template-columns: 240px minmax(0,1fr); }
  .row-actions { grid-column: 2; padding: 0 0 10px; flex-direction: row; justify-content: flex-start; }
}

@media (max-width: 680px) {
  .catalog-layout, .catalog-row { grid-template-columns: minmax(0,1fr); }
  .catalog-results, .catalog-list, .catalog-row { width: 100%; max-width: 100%; }
  .filter-panel > div:first-child { max-height: 260px; overflow: auto; }
  .filter-panel button { max-width: 100%; }
  .row-preview img { min-height: 210px; max-height: 260px; }
  .row-copy { padding: 5px 6px; }
  .row-actions { grid-column: 1; padding: 0 6px 6px; }
}

/* Human identity and project-bound community */
.person-avatar { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #c9ead7; font-family: "Newsreader", serif; font-size: 1rem; font-weight: 700; letter-spacing: -.03em; }
.person-avatar.small { width: 38px; height: 38px; font-size: .88rem; }
.person-avatar.large { width: 118px; height: 118px; font-size: 2.45rem; box-shadow: 0 18px 45px rgba(23,51,42,.18); }
.creator-link { max-width: 100%; padding: 0; border: 0; background: transparent; display: inline-flex; align-items: center; gap: 11px; text-align: left; cursor: pointer; }
.creator-link > span:last-child { min-width: 0; display: grid; gap: 2px; }
.creator-link strong { overflow: hidden; color: var(--ink); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.creator-link small { overflow: hidden; color: var(--muted); font-size: .66rem; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.creator-link:hover strong { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.creator-link.is-compact .person-avatar { width: 34px; height: 34px; font-size: .78rem; }
.row-copy .creator-link { margin: 0 0 16px; }
.row-facts { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 13px; }
.row-facts small { color: var(--muted); font-size: .7rem; }
.detail-heading-copy .creator-link { margin-top: 16px; }

.project-conversation { margin-top: 8px; padding: 28px 0 8px; border-top: 1px solid var(--line); }
.project-conversation h3 { margin: 0 0 18px; font-size: 1.75rem; }
.conversation-empty { margin: 0 0 20px; padding: 18px; border-radius: 14px; background: #f1f3ee; color: var(--muted); font-size: .8rem; }
.experience-card { padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.experience-card + .experience-card { margin-top: 11px; }
.experience-person { display: flex; align-items: center; gap: 10px; }
.experience-person > span:last-child { display: grid; gap: 2px; }
.experience-person strong { font-size: .79rem; }
.experience-person small, .experience-time { color: var(--muted); font-size: .67rem; }
.experience-card > p { margin: 17px 0 13px; color: var(--ink); font-family: "Newsreader", serif; font-size: 1.3rem; line-height: 1.38; }
.experience-signals { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.experience-signals span { padding: 5px 8px; border-radius: 999px; background: var(--mint); color: var(--green-dark); font-size: .63rem; font-weight: 700; }
.experience-project { margin: 14px 0 0; padding: 0; border: 0; background: transparent; color: var(--green); font-size: .72rem; font-weight: 800; cursor: pointer; }

.community-intro { margin-bottom: 48px; display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 50px; align-items: end; }
.community-intro h1 { max-width: 850px; margin: 0; font-size: clamp(4rem, 7.5vw, 7rem); line-height: .87; }
.community-intro > div:first-child > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 1.06rem; line-height: 1.6; }
.prototype-status { padding: 20px; border-radius: 17px; background: #edf2ed; display: grid; gap: 5px; }
.prototype-status strong { font-size: .78rem; }
.prototype-status span { color: var(--muted); font-size: .7rem; line-height: 1.5; }
.interest-panel { margin-bottom: 62px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 40px; align-items: center; }
.interest-panel h2 { margin: 0; font-size: 2rem; }
.interest-panel > div:first-child > p:last-child { margin: 9px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.interest-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-chips button { min-height: 42px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: #faf9f5; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .7rem; font-weight: 700; cursor: pointer; }
.interest-chips button svg { width: 16px; height: 16px; }
.interest-chips button.is-selected { border-color: var(--green); background: var(--mint); color: var(--green-dark); }
.community-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(280px,.7fr); gap: 48px; align-items: start; }
.community-section-heading h2, .creator-activity h2 { margin: 0 0 24px; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: .98; }
.experience-feed { display: grid; gap: 12px; }
.community-empty { padding: 48px; border: 1px dashed #bdc6bd; border-radius: 23px; background: rgba(255,255,255,.45); text-align: center; }
.community-empty > span { width: 55px; height: 55px; margin: 0 auto 20px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; color: var(--green); font-size: 1.6rem; }
.community-empty h3 { font-size: 2rem; }
.community-empty p { max-width: 470px; margin: 0 auto 24px; color: var(--muted); line-height: 1.6; }
.creator-activity { position: sticky; top: 22px; }
.creator-activity > article { padding: 17px 0; border-top: 1px solid var(--line); }
.creator-activity > article > button:last-child { width: 100%; margin-top: 13px; padding: 15px; border: 0; border-radius: 14px; background: var(--white); display: grid; gap: 5px; text-align: left; cursor: pointer; }
.creator-activity > article > button:last-child strong { font-family: "Newsreader", serif; font-size: 1.25rem; }
.creator-activity > article > button:last-child span { color: var(--muted); font-size: .7rem; line-height: 1.45; }

.profile-hero { min-height: 390px; padding: clamp(35px,7vw,80px); border-radius: 32px; background: var(--ink); color: white; display: grid; grid-template-columns: auto minmax(0,1fr); gap: 34px; align-items: center; }
.profile-hero .person-avatar { background: var(--gold); color: var(--ink); }
.profile-hero .eyebrow { color: #a9d7c2; }
.profile-hero h1 { margin: 0; font-size: clamp(4rem,8vw,7.5rem); line-height: .85; }
.profile-hero strong { display: block; margin-top: 15px; color: #d7e9df; }
.profile-hero div > p:last-child { max-width: 660px; margin: 18px 0 0; color: rgba(255,255,255,.7); line-height: 1.65; }
.profile-trust { min-height: 65px; padding: 0 24px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 18px 18px; display: flex; align-items: center; gap: 25px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.profile-work { margin-top: 76px; }

.feedback-card > .creator-link { margin-bottom: 34px; }
.feedback-identity { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 25px 0 10px; }
.feedback-identity label { display: grid; gap: 8px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.feedback-identity input { min-height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: #faf9f5; }
.feedback-error { min-height: 20px; margin: 9px 0 0; color: #a24b36; font-size: .75rem; font-weight: 700; }
.prototype-disclosure { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; line-height: 1.45; }

@media (max-width: 980px) {
  .community-intro, .community-grid { grid-template-columns: 1fr; }
  .community-intro { gap: 24px; }
  .prototype-status { max-width: 520px; }
  .interest-panel { grid-template-columns: 1fr; gap: 22px; }
  .creator-activity { position: static; }
}

@media (max-width: 680px) {
  .row-copy .creator-link { margin-top: 14px; }
  .detail-heading-copy .creator-link { max-width: 215px; }
  .detail-heading-copy .creator-link small { white-space: normal; }
  .community-intro h1 { font-size: 4rem; }
  .interest-panel { padding: 21px; }
  .interest-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .interest-chips button { flex: 0 0 auto; }
  .community-empty { padding: 35px 20px; }
  .profile-hero { min-height: 0; padding: 38px 25px; grid-template-columns: 1fr; }
  .person-avatar.large { width: 88px; height: 88px; font-size: 1.8rem; }
  .profile-hero h1 { font-size: 4.2rem; }
  .profile-trust { padding: 18px; flex-wrap: wrap; gap: 9px 18px; }
  .feedback-identity { grid-template-columns: 1fr; }
}

/* Browse is the home: categories, solutions, then a quieter community window. */
@media (min-width: 981px) {
  .discover-page .catalog-layout { grid-template-columns: 185px minmax(0, 1fr); gap: 24px; }
  .discover-page .filter-panel { top: 18px; }
  .discover-page .catalog-row { min-height: 0; grid-template-columns: 170px minmax(0, 1fr); gap: 18px; }
  .discover-page .row-preview img { min-height: 180px; }
  .discover-page .row-actions { grid-column: 2; padding: 0 0 8px; flex-direction: row; justify-content: flex-start; }
}

.category-community { margin-top: 36px; padding: clamp(20px, 3vw, 32px); border: 1px solid var(--line); border-radius: 20px; background: var(--white); scroll-margin-top: 24px; }
.category-community h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.15; }
.category-community header > p, .category-community-empty { color: var(--muted); line-height: 1.5; }
.category-community form { max-width: 760px; margin-top: 24px; }
.category-community .daily-comment-compose textarea { font-size: 1rem; margin-top: 10px; }
.category-community .comment-conduct { font-size: .85rem!important; }
.category-community .daily-comment-actions { flex-wrap: wrap; }
.category-conversations { display: grid; gap: 12px; }
.community-rail { min-width: 0; max-height: calc(100vh - 36px); position: sticky; top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: 0 14px 38px rgba(28,48,41,.07); display: grid; grid-template-rows: auto minmax(0,1fr) auto; }
.community-rail:focus { outline: none; }
.community-rail.is-focused { box-shadow: 0 0 0 3px rgba(39,125,93,.12), 0 14px 38px rgba(28,48,41,.08); }
.community-rail-header { padding: 18px 17px 14px; border-bottom: 1px solid var(--line); }
.community-rail-header h2 { margin: 2px 0 14px; font-size: 1.55rem; line-height: 1.04; }
.community-rail-header label { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 9px; align-items: center; color: var(--muted); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.community-rail-header select { width: 100%; min-width: 0; height: 38px; padding: 0 28px 0 10px; border: 1px solid var(--line); border-radius: 10px; background: #faf9f5; color: var(--ink); font: 600 .69rem "DM Sans", sans-serif; text-transform: none; letter-spacing: normal; }
.community-rail-body { min-height: 0; padding: 12px; overflow-y: auto; }
.community-rail .experience-card { padding: 14px; border-radius: 14px; }
.community-rail .experience-card > p { margin: 12px 0 10px; font-size: 1rem; }
.community-rail .experience-person .person-avatar { width: 30px; height: 30px; font-size: .68rem; }
.community-rail .experience-project { margin-top: 10px; font-size: .65rem; }
.community-rail .experience-signals { margin-bottom: 10px; }
.community-rail-empty { min-height: 190px; padding: 25px 14px; border: 1px dashed #c7cec6; border-radius: 14px; display: grid; place-items: center; align-content: center; gap: 9px; text-align: center; }
.community-rail-empty > span { color: var(--green); font-size: 1.4rem; }
.community-rail-empty strong { font-family: "Newsreader", serif; font-size: 1.15rem; line-height: 1.15; }
.community-rail-empty p { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.45; }
.community-rail-new { margin-top: 20px; }
.community-rail-new > button { width: 100%; padding: 12px 3px; border: 0; border-top: 1px solid var(--line); background: transparent; display: grid; gap: 2px; text-align: left; cursor: pointer; }
.community-rail-new > button strong { font-family: "Newsreader", serif; font-size: 1rem; }
.community-rail-new > button span { color: var(--muted); font-size: .63rem; }
.community-rail-new > button:hover strong { color: var(--green); }
.community-rail > footer { padding: 12px 16px; border-top: 1px solid var(--line); background: #edf2ed; display: grid; gap: 3px; }
.community-rail > footer strong { color: var(--green-dark); font-size: .64rem; }
.community-rail > footer span { color: var(--muted); font-size: .61rem; line-height: 1.35; }

.demo-site-note { width: min(1240px, calc(100% - 30px)); margin: 0 auto; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.demo-badge { display: inline-block; padding: 2px 5px; border-radius: 5px; background: #f2e6c7; color: #665123; font-size: .6rem; font-style: normal; vertical-align: middle; }
.profile-visibility { display: flex; align-items: center; gap: 10px; margin: 20px 0; }
.site-nav .profile-button.signed-out { width: auto; min-width: 76px; padding-inline: 14px; white-space: nowrap; }
.feedback-card form + form { margin-top: 24px; }
.demo-disclosure { padding: 16px; border-radius: 12px; background: #f6efdd; color: var(--ink); font-size: .85rem; line-height: 1.5; }
.person-avatar.coral { background: #814e42; color: #fff2e9; }
.person-avatar.blue { background: #365a7a; color: #edf6ff; }
.person-avatar.gold { background: #77602e; color: #fff5d7; }
.person-avatar.green { background: #406343; color: #eaf7df; }
.person-avatar.violet { background: #665280; color: #f4ecff; }
.person-avatar.teal { background: #2c6864; color: #e7fffa; }
.brand { white-space: nowrap; }
.brand-name { flex: 0 0 auto; }
.brand-promise { padding-left: 12px; border-left: 1px solid var(--line); color: var(--muted); font-size: .68rem; font-weight: 500; letter-spacing: 0; }

@media (max-width: 980px) {
  .community-rail { max-height: 620px; position: static; }
  .community-rail-header { display: grid; grid-template-columns: minmax(0,1fr) minmax(170px,240px); gap: 20px; align-items: end; }
}

@media (max-width: 680px) {
  .brand-promise { display: none; }
  .community-rail { max-height: 540px; }
  .community-rail-header { grid-template-columns: 1fr; gap: 0; }
}


/* First sharing step: an idea, evidence, and a personal invitation. */
.share-layout-intro { grid-template-columns: 1fr 1fr; }
.share-visual-intro { gap: 20px; padding: clamp(24px, 3vw, 44px); }
.share-visual-intro .share-visual-copy h2 { font-size: clamp(2.5rem, 3.7vw, 3.8rem); line-height: 1.02; }
.share-evidence { padding: 16px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(255,255,255,.07); color: #fff; }
.share-evidence p { margin: 0; font-size: 1.05rem; line-height: 1.45; }
.share-evidence .share-evidence-source { margin-top: 9px; color: #d6e5de; font-size: .8rem; }
.share-evidence a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.share-evidence a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.share-visual-intro img { display: block; height: auto; aspect-ratio: 3 / 2; object-fit: contain; border-radius: 20px; }
.share-reassurance { margin: 0; color: #e6eee9; font-size: 1rem; line-height: 1.55; }
.share-reassurance strong { color: #fff; }
@media (max-width: 1000px) {
  .share-layout-intro { grid-template-columns: 1fr; }
  .share-visual-intro { display: flex; align-items: stretch; max-width: none; }
  .share-visual-intro img { max-height: 300px; object-fit: contain; background: #fcf1dd; }
}
@media (max-width: 680px) {
  .share-visual-intro { gap: 16px; padding: 24px; }
  .share-visual-intro .share-visual-copy h2 { font-size: 2.25rem; }
  .share-visual-intro img { max-height: 240px; }
  .share-evidence p { font-size: .95rem; }
  .share-evidence .share-evidence-source { font-size: .78rem; }
  .share-reassurance { font-size: .95rem; }
}


.share-start-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }
.share-start-actions .primary-button { width: auto; min-width: 170px; padding-inline: 32px; }
.share-start-actions .share-browse-link { width: auto; padding: 6px 8px; border: 0; border-radius: 4px; background: transparent; color: var(--muted); font: inherit; font-size: .85rem; cursor: pointer; }
.share-browse-link:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.share-browse-link:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.share-layout-intro .privacy-note { text-align: center; }


/* Descriptive project stages on sharing step two. */
.stage-choices .choice-button { padding: 14px 16px; min-height: 82px; }
.stage-choices .choice-button > span { flex: 0 0 25px; }
.stage-choices .choice-button > div { min-width: 0; }
.stage-choices strong { display: block; font-size: 1rem; line-height: 1.3; }
.stage-choices small { display: block; margin-top: 5px; font-size: .85rem; line-height: 1.4; color: var(--muted); font-weight: 400; }
.stage-choices .choice-button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }


/* Optional personal outreach, sharing step three. */
.share-name-hint { margin: 10px 0 0; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.share-optional-note { margin-top: 28px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--mint); font-size: .95rem; line-height: 1.5; }
.share-optional-note strong { display: block; }
.share-optional-note p { margin: 6px 0 0; color: var(--muted); }


/* A single hoped-for benefit, with room for another answer. */
.benefit-choices { gap: 8px; }
.benefit-choices .choice-button { min-height: 48px; padding: 10px 14px; line-height: 1.3; }
.benefit-choices .choice-button span { flex: 0 0 25px; }
.benefit-choices .choice-button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.benefit-other { margin-top: 18px; }
.share-work:has(.benefit-choices) h1 { font-size: clamp(2.6rem, 4vw, 4rem); line-height: 1; }


/* Share is adjacent to Save in the product header. */
.detail-share { min-height: 42px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); font-size: .77rem; font-weight: 700; cursor: pointer; }
.detail-share:hover { background: var(--mint); }
.detail-share:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.detail-header-controls { flex-wrap: wrap; justify-content: flex-end; }
.detail-share-status { width: 100%; text-align: right; font-size: .75rem; color: var(--muted); }
.detail-share-status:empty { display: none; }
.card-share-status { flex-basis: 100%; font-size: .875rem; color: var(--muted); }
.card-share-status:empty { display: none; }
.row-actions { flex-wrap: wrap; }
.product-card-foot { flex-wrap: wrap; gap: 10px; }
[data-share-url] { width: 100%; min-width: 0; padding: 10px; font: inherit; border: 1px solid var(--line); border-radius: 8px; }
.detail-header-controls [data-share-url] { width: 100%; max-width: 280px; font-size: .8rem; }


/* Three-step listing setup and the fourth-screen preview. */
.listing-flow .share-work h1 { font-size: clamp(2.6rem,4vw,4rem); line-height: 1; }
.listing-field { display: grid; gap: 8px; margin: 0 0 20px; font-weight: 700; font-size: .9rem; }
.listing-field input, .listing-field textarea, .listing-field select { width: 100%; min-width: 0; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; background: #faf9f5; color: var(--ink); font: inherit; font-weight: 400; }
.listing-field textarea { min-height: 95px; resize: vertical; }
.listing-category-field { min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.listing-category-field legend { margin-bottom: 8px; font-size: .9rem; font-weight: 700; }
.listing-category-field .listing-field { margin-bottom: 10px; }
.listing-category-search { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--mint); }
.listing-category-search input { background: var(--white); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.listing-review { max-width: 850px; margin-inline: auto; }
.listing-review > h1 { font-size: clamp(2.6rem,5vw,4.5rem); line-height: 1; }
.listing-review > p { color: var(--muted); line-height: 1.5; }
.listing-review form { margin-top: 30px; }
.listing-preview-card { margin-top: 30px; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--white); }
.listing-preview-hero { min-height: 280px; display: flex; align-items: center; overflow: hidden; }
.listing-preview-hero::before { display: none; }
.listing-preview-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: right top; z-index: -2; opacity: .8; }
.listing-preview-hero h2 { max-width: 78%; overflow-wrap: anywhere; }
.listing-preview-card .mealmap-answers { background: #fffaf2; }
.listing-preview-card .mealmap-answer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.listing-preview-card .mealmap-answer-grid p { white-space: pre-wrap; overflow-wrap: anywhere; }
@media (max-width: 600px) { .listing-preview-card .mealmap-answer-grid { grid-template-columns: 1fr; } .listing-preview-hero h2 { max-width: 95%; font-size: 2.7rem; } }
.listing-preview-card > img { width: 100%; max-height: 320px; object-fit: contain; }
.listing-preview-placeholder { min-height: 180px; display: grid; place-content: center; text-align: center; gap: 12px; background: var(--mint); padding: 24px; }
.listing-preview-placeholder strong { font-family: Newsreader,serif; font-size: 2.5rem; }
.listing-preview-content { padding: 28px; overflow-wrap: anywhere; }
.listing-preview-content h2 { font-size: 2.4rem; margin: 10px 0 24px; }
.listing-preview-content dt { font-weight: 700; margin-top: 20px; }
.listing-preview-content dd { margin: 6px 0 0; color: var(--muted); line-height: 1.5; white-space: pre-wrap; }
.listing-preview-content > a { margin-top: 20px; display: inline-flex; }
.listing-preview-card .listing-preview-content { background: var(--listing-preview-bg,#fff); color: var(--listing-preview-text,#173b30); font-family: var(--listing-preview-font,sans-serif); }
.listing-preview-card .listing-preview-content h2 { color: inherit; font-family: inherit; }
.listing-preview-card .listing-preview-content dd,.listing-preview-card .listing-preview-content .eyebrow { color: inherit; }
.listing-preview-card .listing-preview-content .primary-button { background: var(--listing-preview-accent,#173b30); color: var(--listing-preview-on-accent,#fff); border: 1px solid currentColor; }
.listing-image-tools { margin: 18px 0 28px; }
.listing-image-tools > p { font-size: 1rem; line-height: 1.5; }
.listing-image-drop { border: 1px dashed var(--muted); border-radius: 14px; padding: 18px; margin: 14px 0; display: grid; gap: 12px; background: #fff; }
.listing-image-drop label { font-weight: 700; font-size: 1rem; }
.listing-image-drop input { display: block; max-width: 100%; margin-top: 12px; font: inherit; }
.listing-image-drop span,.listing-image-tools .listing-image-note { font-size: .875rem; color: var(--muted); line-height: 1.5; }
.listing-image-tools button:disabled { opacity: .6; cursor: wait; }
.listing-image-drop:focus-within { outline: 2px solid var(--ink); outline-offset: 3px; }


/* Signature violet connects the CreatorWorks wordmark and project names. */
:root { --brand-violet: #7652a3; --brand-violet-hover: #624188; }
.brand-name, .footer-brand { color: var(--brand-violet); }
.brand-mark i { background: var(--brand-violet); }
.row-title, .product-card-main > strong, .mealmap-wordmark,
.community-rail-new > button strong,
.listing-preview-card .listing-preview-content h2 { color: var(--brand-violet); }
.row-title:hover, .community-rail-new > button:hover strong,
.brand:hover .brand-name, .footer-brand:hover { color: var(--brand-violet-hover); }

/* Keep the second half of the wordmark in the original forest green. */
.brand-name-works { color: var(--ink); }
/* Project video, discovery, and account identity */
[hidden]{display:none!important}.person-avatar{overflow:hidden}.person-avatar img{width:100%;height:100%;object-fit:cover}.profile-button:has(.person-avatar){padding:4px;border-radius:50%}.project-video{padding:24px}.project-video iframe{display:block;width:100%;aspect-ratio:16/9;border:0;border-radius:12px}.similar-projects{padding:28px;border-top:1px solid #dce3dd}.similar-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.similar-card{display:flex;flex-direction:column;gap:8px;text-align:left;background:#fff;border:1px solid #dce3dd;border-radius:14px;padding:12px;color:inherit;cursor:pointer}.similar-card img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:8px}.similar-card span{font-size:12px}.account-avatar{display:inline-flex;width:40px;height:40px;align-items:center;justify-content:center;border-radius:50%;background:#173c31;color:#fff;overflow:hidden;text-decoration:none}.account-avatar img{width:100%;height:100%;object-fit:cover}.avatar-choices{display:flex;gap:12px;flex-wrap:wrap}.avatar-choices img{width:48px;height:48px;border-radius:50%}.analytics-choice{position:fixed;bottom:16px;left:16px;max-width:400px;z-index:100;background:#fff;padding:20px;border:1px solid #dce3dd;border-radius:16px;box-shadow:0 8px 30px #0002}.analytics-choice button{margin:6px}.privacy-controls{padding:16px;text-align:center}@media(max-width:600px){.similar-grid{grid-template-columns:1fr}.similar-card img{max-height:130px}.analytics-choice{right:16px;left:16px}}
.account-menu{position:relative;display:inline-block;text-align:left}.account-menu summary{list-style:none;cursor:pointer}.account-menu summary::-webkit-details-marker{display:none}.account-menu summary:focus-visible{outline:3px solid #952bff;outline-offset:4px}.account-menu-panel{position:absolute;right:0;top:calc(100% + 12px);width:min(280px,85vw);background:#fffefb;border:1px solid #d7e1d9;border-radius:16px;box-shadow:0 14px 35px #173b3025;padding:18px;z-index:1000;display:flex;flex-direction:column;gap:4px}.account-menu-panel strong{padding:10px 8px}.account-menu-panel a,.account-menu-panel button{display:block;padding:11px 8px;text-align:left;text-decoration:none;font:inherit;color:#173b30;border:0;background:none;width:100%;border-radius:7px}.account-menu-panel a:hover,.account-menu-panel button:hover{background:#edf3ee}.account-menu-panel form{border-top:1px solid #d7e1d9;margin-top:8px;padding-top:8px}.hide-guidance .share-guidance,.hide-guidance .listing-guidance{display:none}

.hide-guidance .share-reassurance,.hide-guidance .share-evidence{display:none}

[hidden]{display:none!important}
.word-counter{display:block;margin-top:7px;color:#4f655b;font:500 .8rem/1.5 system-ui}.word-counter.invalid{color:#a33c23}.listing-field textarea[data-listing-field=video]{min-height:95px;background:#f3f6f2;border:2px solid #9ab5a4}.invitation-dialog{width:min(670px,calc(100vw - 32px));max-height:90dvh;overflow:auto;border:1px solid #d8e3da;border-radius:24px;padding:30px;color:#18372d;background:#fffef9;box-shadow:0 25px 90px #08291f55}.invitation-dialog::backdrop{background:#0d271c99;backdrop-filter:blur(5px)}.invitation-dialog h2{font-size:2rem;margin:8px 0 24px}.invite-close{float:right;background:transparent;border:0;font-size:1.8rem;cursor:pointer;color:inherit}.invitation-dialog label{display:block;font-weight:650;font-size:.9rem}.invitation-dialog textarea,.invitation-dialog input{box-sizing:border-box;width:100%;padding:12px;border:1px solid #c5d5cb;border-radius:10px;font:inherit;margin:8px 0 20px}.invitation-dialog textarea{min-height:95px}.invitation-preview{border:1px solid #d5e0d7;background:#eef4ee;border-radius:17px;padding:16px;margin-bottom:24px}.invitation-preview>p{white-space:pre-wrap;overflow-wrap:anywhere}.invitation-preview article{background:white;overflow:hidden;border:1px solid #dce3da;border-radius:12px}.invitation-preview img{width:100%;height:195px;object-fit:cover;object-position:top}.invitation-preview article>div{padding:18px}.invitation-preview h3{font:700 1.5rem/1.2 Georgia,serif;margin:8px 0;color:#7c3bb2}.invitation-preview small,.invitation-preview a{display:block;margin-top:12px}.invite-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-top:18px}.invite-actions .secondary-button{padding:11px 18px}.public-project-card{display:grid;grid-template-columns:136px minmax(0,1fr);gap:20px;padding:14px;border:1px solid #d9e1d7;border-radius:20px;background:#fffefa;margin:16px 0;max-width:850px}.public-project-image{display:block;width:136px;height:202px;overflow:hidden;border-radius:12px}.public-project-image img{width:100%;height:100%;object-fit:cover;object-position:top}.public-project-copy{padding:4px 8px}.public-project-copy h3{font:700 1.8rem/1.2 Georgia,serif;margin:6px 0}.public-project-copy h3 a{color:#8351ad;text-decoration:none}.public-project-copy p{font:400 .94rem/1.55 system-ui;margin:8px 0}.public-builder{display:flex;align-items:center;flex-wrap:wrap;gap:10px;font-size:.82rem}.public-builder img{width:38px;height:38px;border-radius:50%;object-fit:cover}.public-builder span{font-size:.7rem}.profile-project-grid{display:block}.recipient-main{max-width:1120px;margin:40px auto;padding:0 24px}.recipient-hero{display:grid;grid-template-columns:1.1fr 1fr;gap:44px;align-items:center;padding:34px 0 48px}.recipient-copy h1{font:700 clamp(2.5rem,5vw,4.8rem)/1.04 Georgia,serif;letter-spacing:-.04em;margin:24px 0}.recipient-category{display:inline-block;font-size:.8rem;background:#e3ece0;border-radius:16px;padding:6px 12px}.recipient-project-name{font-size:1.2rem;font-weight:700;color:#8351ad}.recipient-copy>.primary-button{margin-top:24px}.recipient-art{background:#e5ebe0;border-radius:24px;padding:22px;transform:rotate(1deg);box-shadow:0 18px 50px #244a3014}.recipient-art img{display:block;width:100%;aspect-ratio:1.08;object-fit:cover;object-position:top;border-radius:14px}.recipient-art span{display:block;padding:18px 4px 0;font-size:.8rem;color:#425b47}.recipient-answers{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:30px 0;border-top:1px solid #d6dfd3}.recipient-answers h2{font-size:1.65rem}.recipient-answers p:not(.eyebrow){font-size:1.15rem;line-height:1.55}.recipient-feedback{padding:38px;background:#173b30;border-radius:22px;margin:24px 0 44px;color:#fff}.recipient-feedback h2{font-size:2.3rem;color:#fff}.recipient-feedback .eyebrow{color:#b4d7be}.recipient-feedback>.primary-button{background:#d4ef9b;color:#18382d}.recipient-feedback .secondary-button{background:white;color:#173b30}.recipient-footer{display:flex;gap:24px;justify-content:center;padding:40px}.recipient-copy .public-builder p{font-size:.8rem;margin:4px 0}@media(max-width:680px){.recipient-hero,.recipient-answers{grid-template-columns:1fr;gap:20px}.recipient-main{padding:0 18px;margin:12px auto}.recipient-art{transform:none}.recipient-feedback{padding:24px}.public-project-card{grid-template-columns:95px minmax(0,1fr);gap:12px}.public-project-image{width:95px;height:160px}.public-project-copy{padding:0}.public-project-copy h3{font-size:1.4rem}.public-project-card .invite-actions{grid-column:1/-1}.invitation-dialog{padding:20px}.recipient-footer{flex-wrap:wrap}.recipient-copy h1{font-size:2.8rem}}
.bell-button{display:flex;align-items:center;justify-content:center;position:relative;border:1px solid #d7e1d9;border-radius:50%;height:40px;width:40px;background:#f0f4ed;color:#16392c;cursor:pointer;list-style:none}.notification-count{position:absolute;right:-7px;top:-7px;min-width:19px;padding:2px 4px;background:#8252b4;color:white;font:700 11px/1.4 system-ui;border-radius:12px;text-align:center}.notification-panel{width:min(340px,85vw);max-height:65vh;overflow:auto}.notification-panel a{font-size:.85rem;border-bottom:1px solid #e6ece4}.notification-panel a.unread{font-weight:650}.notification-panel p{padding:0 8px}
.community-maker-question{margin:0 0 12px;padding:16px;border:1px solid #d9d4e5;border-left:3px solid var(--brand-violet);border-radius:14px;background:#f7f5fa}.community-maker-question .eyebrow{margin:0 0 8px;color:var(--brand-violet)}.community-maker-question blockquote{margin:0;color:var(--ink);font:700 1.08rem/1.32 "Newsreader",serif}.community-maker-question>blockquote+p{margin:10px 0 0;color:var(--muted);font-size:.7rem;font-weight:700}
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.daily-comment-compose{margin-top:12px}.daily-comment-author{display:flex;align-items:center;gap:8px;margin-bottom:8px;color:var(--ink);font-size:.72rem;font-weight:700}.daily-comment-author .person-avatar{width:30px;height:30px;font-size:.68rem}.daily-comment-compose label{display:block;min-width:0}.daily-comment-compose textarea{box-sizing:border-box;display:block;width:100%;min-height:84px;resize:vertical;padding:10px 11px;border:1px solid #cbd4cb;border-radius:11px;background:#fff;font:inherit;font-size:.78rem;line-height:1.4;color:var(--ink)}.daily-comment-compose textarea:focus{outline:2px solid var(--brand-violet);outline-offset:1px;border-color:transparent}.daily-comment-actions{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-top:8px}.daily-comment-actions .word-counter{margin:0;line-height:1.25}.daily-comment-compose button{flex:0 0 auto;min-height:36px;padding:0 12px;border:0;border-radius:10px;background:var(--ink);color:#fff;font-weight:700;cursor:pointer}.daily-comment-compose button:hover{background:var(--green)}.daily-comment-compose button:disabled{cursor:wait;opacity:.6}.comment-conduct{margin:10px 0 3px!important;color:var(--muted);font-size:.7rem!important;line-height:1.45;font-weight:400!important}.comment-conduct strong{color:var(--ink)}.daily-comment-list{margin-top:12px}.daily-comment{padding:12px 0;border-top:1px solid var(--line)}.daily-comment>p{margin:9px 0 5px;font:500 .9rem/1.45 "Newsreader",serif}.daily-comment>small{color:var(--muted);font-size:.65rem}.daily-comment.is-pending{opacity:.72}.community-progress progress{width:100%;height:12px;accent-color:var(--green)}.community-progress .cw-stat-grid>div{padding:18px;border:1px solid var(--line);border-radius:14px}.community-progress .cw-stat-grid strong,.community-progress .cw-stat-grid span{display:block}

/* Compact launch flow and connected controls. */
.discover-page{padding-top:34px}.share-page{padding-top:26px}.listing-flow .share-work{padding:32px 44px}.listing-flow .share-progress{margin-bottom:24px}.listing-flow .share-copy{margin:12px 0 20px}.listing-flow .listing-field{gap:5px;margin-bottom:12px}.listing-flow .listing-field input,.listing-flow .listing-field textarea,.listing-flow .listing-field select{padding:10px 12px}.listing-flow .listing-field textarea{min-height:70px}.listing-flow .form-actions{margin-top:16px}.listing-flow .privacy-note{margin-top:12px}.listing-flow .share-visual-intro{padding:28px 34px;gap:14px}.listing-flow .share-visual-intro img{max-height:250px}.listing-flow .share-evidence{padding:12px 15px}.listing-flow .share-reassurance{font-size:.9rem}.listing-reset-button{color:#8b3529;border-color:#dab7af;background:#fff}.listing-reset-button:hover{background:#fff1ed}.video-editor{margin-top:22px;padding:22px;border:1px solid var(--line);border-radius:18px;background:#f8faf7}.video-editor h2{margin:0 0 16px;font-size:1.45rem}.video-editor h2 span{font:500 .8rem/1.2 "DM Sans",sans-serif;color:var(--muted)}.video-editor .project-video{padding:12px 0 0}.video-status{min-height:1.3em;color:var(--green);font-size:.85rem}.legal-signup{max-width:620px;margin:28px auto 0!important;text-align:left}.legal-agreement{display:flex;gap:10px;align-items:flex-start;padding:16px;border:1px solid var(--line);border-radius:14px;background:#f8faf7;line-height:1.5}.legal-agreement input{width:18px;height:18px;margin-top:2px;accent-color:var(--green);flex:0 0 auto}.legal-signup>.primary-button{display:block;margin:18px auto 0}.listing-review .project-video{border-top:1px solid var(--line)}
@media(max-width:680px){.listing-flow .share-work{padding:26px 20px}.discover-page,.share-page{padding-top:22px}.listing-flow .share-visual-intro{padding:24px}.share-layout{border-radius:20px}.site-footer{margin-top:48px}}
.slot-progress .slot-progress-status{display:flex;justify-content:space-between;gap:12px;margin:26px 0 12px;font-size:.95rem}.slot-progress-status>span{color:var(--muted)}.slot-progress-track{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:6px}.slot-progress-track>span{height:16px;border-radius:5px;background:#e4ebe6;border:1px solid #cbd8ce}.slot-progress-track>span.is-complete{background:var(--green);border-color:var(--green)}.slot-progress-endpoints{display:flex;justify-content:space-between;gap:12px;margin-top:10px;font-size:.8rem;color:var(--muted)}.slot-progress-endpoints strong{color:var(--ink);text-align:right}.slot-progress .slot-progress-next{margin:24px 0 18px}.slot-progress-footer{display:flex;align-items:center;flex-wrap:wrap;gap:16px 24px}.slot-progress-footer>span{font-size:.85rem;color:var(--muted)}.slot-progress .slot-progress-note{margin:18px 0 0;font-size:.8rem;line-height:1.5}@media(max-width:520px){.slot-progress .slot-progress-status{align-items:flex-start;flex-direction:column;gap:4px}.slot-progress-footer{align-items:flex-start;flex-direction:column}.slot-progress-track{gap:4px}}

.verification-progress .verification-meter{display:block;appearance:none;-webkit-appearance:none;width:100%;height:16px;border:0;border-radius:5px;overflow:hidden;background:#e4ebe6}.verification-meter::-webkit-progress-bar{background:#e4ebe6;border-radius:5px}.verification-meter::-webkit-progress-value{background:var(--green);border-radius:5px}.verification-meter::-moz-progress-bar{background:var(--green);border-radius:5px}.verification-checklist{list-style:none;padding:0;margin:20px 0;display:grid;gap:10px;line-height:1.5}
