/* ===== AFC Agung — Japanese editorial redesign, light theme only ===== */

:root {
  --ink: #201d18;
  --ink-soft: #5a564c;
  --ink-faint: #928d7f;
  --paper: #f4f2ec;
  --paper-raised: #fdfcf9;
  --line: #ddd7c8;
  --line-strong: #c6bfac;

  --indigo: #263462;
  --indigo-soft: #eceef5;
  --vermilion: #b8452e;
  --vermilion-soft: #f7e9e2;
  --brass: #a8874f;
  --brass-soft: #f2ecdc;

  /* per-product themes, activated via [data-theme] on .chapter and mirrored to body */
  --subarashi-accent: #263462;
  --subarashi-glow: #263462;
  --subarashi-soft: #eceef5;
  --subarashi-ink: #1a2340;

  --utsukushhii-accent: #7d2942;
  --utsukushhii-glow: #7d2942;
  --utsukushhii-soft: #f6e9ec;
  --utsukushhii-ink: #591d2e;

  --hikari-accent: #8a5a24;
  --hikari-glow: #8a5a24;
  --hikari-soft: #f2ebdd;
  --hikari-ink: #5e3d18;

  --stage-accent: var(--indigo);
  --stage-soft: var(--indigo-soft);

  --serif: "Shippori Mincho", "Iowan Old Style", Georgia, serif;
  --sans: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Consolas, monospace;

  --radius: 2px;
  --shadow-sm: 0 1px 0 rgba(32,29,24,0.1);
  --shadow-lg: 0 22px 44px -26px rgba(32,29,24,0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .6s ease;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; text-wrap: balance; margin: 0; }
a { color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stage-accent); transition: color .6s ease; margin-bottom: .6rem; display: inline-block;
  padding-left: 1.1rem; position: relative;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; width: .7rem; height: 1px;
  background: currentColor; transform: translateY(-50%);
}

/* ===== nav ===== */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,242,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: border-color .6s ease;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-nav .logo { display: flex; align-items: center; gap: .6rem; }
.site-nav .logo img { height: 26px; width: auto; }
.site-nav ul { list-style: none; display: flex; gap: 1.8rem; margin: 0; padding: 0; }
.site-nav a.nav-link {
  font-size: .85rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  position: relative; padding-bottom: 3px;
}
.site-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--stage-accent); transition: right .35s ease, background-color .6s ease;
}
.site-nav a.nav-link:hover::after, .site-nav a.nav-link.active::after { right: 0; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.site-nav .cta {
  font-size: .8rem; font-weight: 600; padding: .55rem 1.2rem; border-radius: var(--radius); text-decoration: none;
  background: var(--stage-accent); color: #fff; transition: background-color .6s ease, opacity .25s ease;
  letter-spacing: .02em;
}
.site-nav .cta:hover { opacity: .85; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .site-nav .container { position: relative; }
  .nav-links ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-raised);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: .5rem 1.5rem 1rem;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links ul li { width: 100%; }
  .nav-links a.nav-link { display: block; padding: .7rem 0; }
  .nav-toggle { display: block; }
}

/* ===== hero ===== */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero .container {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; text-align: left; } }
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 600; line-height: 1.15;
  margin-bottom: 1.2rem; letter-spacing: -.01em; padding-left: 1.3rem; border-left: 2px solid var(--vermilion);
}
.hero h1 em { font-style: normal; color: var(--vermilion); }
.hero .lede { font-size: 1.02rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.9rem; padding-left: 1.3rem; }
.hero .actions { display: flex; gap: .9rem; flex-wrap: wrap; padding-left: 1.3rem; }
.btn {
  font-weight: 600; font-size: .88rem; padding: .85rem 1.6rem; border-radius: var(--radius); text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem; transition: background-color .25s ease, color .25s ease, border-color .25s ease;
  letter-spacing: .01em;
}
.btn-primary { background: var(--stage-accent); color: #fff; border: 1px solid var(--stage-accent); }
.btn-primary:hover { background: transparent; color: var(--stage-accent); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }

.hero-stage { position: relative; height: 400px; }
.hero-stage .pack {
  position: absolute; width: 40%;
  filter: drop-shadow(0 18px 22px rgba(32,29,24,0.18));
}
.hero-stage .pack.p1 { left: 6%; top: 10%; width: 38%; z-index: 3; }
.hero-stage .pack.p2 { left: 33%; top: 26%; width: 40%; z-index: 2; }
.hero-stage .pack.p3 { left: 58%; top: 6%; width: 38%; z-index: 1; }
@media (max-width: 900px) { .hero-stage { height: 280px; margin-top: .5rem; } }

/* ===== credibility marquee ===== */
.credibility { padding: 1.5rem 0; background: var(--paper-raised); border-block: 1px solid var(--line); overflow: hidden; }
.marquee { display: flex; width: max-content; animation: scrollX 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }
.marquee .track { display: flex; gap: 3.5rem; padding-right: 3.5rem; align-items: center; }
.marquee img { height: 38px; width: auto; object-fit: contain; opacity: .8; filter: grayscale(.3); transition: opacity .3s ease, filter .3s ease; }
.marquee img:hover { opacity: 1; filter: grayscale(0); }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== product chapters ===== */
.chapter { padding: 6rem 0; transition: background .7s ease; position: relative; border-top: 1px solid var(--line); }
.chapter[data-theme="subarashi"] { background: var(--subarashi-soft); }
.chapter[data-theme="utsukushhii"] { background: var(--utsukushhii-soft); }
.chapter[data-theme="hikari"] { background: var(--hikari-soft); }
.chapter .container { position: relative; z-index: 1; }

.chapter-head { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; margin-bottom: 3.2rem; }
@media (max-width: 860px) { .chapter-head { grid-template-columns: 1fr; } }
.chapter[data-theme="subarashi"] .eyebrow, .chapter[data-theme="subarashi"] .chapter-title { color: var(--subarashi-ink); }
.chapter[data-theme="utsukushhii"] .eyebrow, .chapter[data-theme="utsukushhii"] .chapter-title { color: var(--utsukushhii-ink); }
.chapter[data-theme="hikari"] .eyebrow, .chapter[data-theme="hikari"] .chapter-title { color: var(--hikari-ink); }
.chapter-title { font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; position: relative; display: inline-block; letter-spacing: -.01em; }
.chapter-title::after {
  content: ""; position: absolute; left: 0; bottom: -.4rem; height: 1px; width: 48px;
  background: currentColor; transition: background-color .6s ease;
}
.chapter-lede { color: var(--ink-soft); font-size: 1rem; max-width: 52ch; margin-bottom: 1.3rem; }
.chapter-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.tag {
  font-family: var(--mono); font-size: .68rem; padding: .3rem .7rem; border-radius: var(--radius);
  background: var(--paper-raised); border: 1px solid var(--line-strong);
}

.chapter-pack { position: relative; text-align: center; }
.chapter-pack img {
  max-height: 320px; margin: 0 auto; filter: drop-shadow(0 20px 26px rgba(32,29,24,0.16));
  transition: transform .35s ease;
}
.chapter-pack:hover img { transform: translateY(-6px); }

.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
@media (min-width: 761px) {
  /* center a lone leftover card (e.g. a 4-item list in a 3-column grid) instead of stranding it on the left */
  .ingredient-grid > *:nth-child(3n+1):last-child { grid-column: 2; }
}
@media (max-width: 760px) { .ingredient-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ingredient-grid { grid-template-columns: 1fr; } }
.ing-card {
  background: var(--paper-raised); border: 1px solid var(--line);
}
.ing-card.pre-reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.ing-card.in-view { opacity: 1; transform: translateY(0); }
.ing-card .photo { height: 148px; overflow: hidden; }
.ing-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ing-card:hover .photo img { transform: scale(1.05); }
.ing-card .cap { padding: .85rem 1rem 1.05rem; }
.ing-card .cap .name { font-weight: 700; font-size: .9rem; margin-bottom: .2rem; }
.ing-card .cap .role { font-size: .78rem; color: var(--ink-soft); }

/* ===== price panel (per product, text-based) ===== */
.price-panel {
  margin-top: 3rem;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.2rem;
}
@media (max-width: 760px) { .price-panel { grid-template-columns: 1fr; padding: 1.7rem; } }
.price-panel-main { display: flex; flex-direction: column; align-items: flex-start; }
.price-eyebrow { font-family: var(--mono); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .35rem; }
.price-figure { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.05; color: var(--stage-accent); transition: color .6s ease; }
.price-unit { font-size: .86rem; font-weight: 500; color: var(--ink-soft); margin: .4rem 0 1.3rem; }

.benefit-panel { border-left: 1px solid var(--line-strong); padding-left: 2.2rem; }
@media (max-width: 760px) { .benefit-panel { border-left: none; border-top: 1px solid var(--line-strong); padding-left: 0; padding-top: 1.5rem; } }
.benefit-title { font-family: var(--serif); font-weight: 600; font-size: 1rem; margin-bottom: .9rem; }
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem; }
@media (max-width: 480px) { .benefit-list { grid-template-columns: 1fr; } }
.benefit-list li { font-size: .86rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; line-height: 1.4; }
.benefit-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 1px;
  background: var(--stage-accent); transition: background-color .6s ease;
}

/* ===== product selector guide ===== */
.selector { padding: 4.5rem 0; background: var(--paper-raised); border-top: 1px solid var(--line); }
.selector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 2rem; }
@media (max-width: 760px) { .selector-grid { grid-template-columns: 1fr; } }
.selector-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .3rem;
  padding: 1.5rem 1.6rem; background: var(--paper-raised);
  text-decoration: none; color: var(--ink); transition: background-color .25s ease;
}
.selector-card:hover { background: var(--paper); }
.selector-dot { width: 8px; height: 8px; margin-bottom: .5rem; }
.selector-name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.selector-focus { font-family: var(--mono); font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); }
.selector-desc { font-size: .84rem; color: var(--ink-soft); margin-top: .3rem; }
.selector-note { margin-top: 1.6rem; font-size: .87rem; color: var(--ink-soft); }
.selector-note a { color: var(--vermilion); font-weight: 600; text-decoration: none; }
.selector-note a:hover { text-decoration: underline; }

/* ===== cara pesan / how to order ===== */
.how-to-order { padding: 5rem 0; background: var(--paper); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.2rem; }
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { position: relative; padding: 1.7rem 1.5rem; background: var(--paper-raised); border: 1px solid var(--line); }
.step-num {
  width: 34px; height: 34px; background: transparent; color: var(--vermilion); border: 1px solid var(--vermilion);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 1rem;
  margin-bottom: .9rem;
}
.step-title { font-weight: 700; font-size: .98rem; margin-bottom: .4rem; }
.step-desc { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }

/* ===== paket bundling (text-based tier cards) ===== */
.paket { padding: 6rem 0; background: var(--paper); }
.paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.4rem; }
@media (max-width: 860px) { .paket-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.paket-card {
  border-radius: var(--radius); background: var(--paper-raised); border: 1px solid var(--line-strong);
  text-align: center; padding: 2.3rem 1.6rem 2rem; transition: border-color .3s ease;
}
.paket-card:hover { border-color: var(--tier-color, var(--stage-accent)); }
.paket-card[data-tier="ruby"] { --tier-color: #8f2f2f; }
.paket-card[data-tier="saphire"] { --tier-color: #263462; }
.paket-card[data-tier="diamond"] { --tier-color: #5a564c; }
.paket-gem {
  width: 30px; height: 30px; margin: 0 auto 1.1rem;
  border: 1.5px solid var(--tier-color, var(--brass));
  transform: rotate(45deg);
}
.paket-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--tier-color, var(--ink)); margin-bottom: .6rem; }
.paket-contents { font-size: .87rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 1rem; }
.paket-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; font-variant-numeric: tabular-nums; margin-bottom: 1.3rem; }
.paket-card .btn { width: 100%; justify-content: center; }

/* ===== neutral section title (non-product sections) ===== */
.chapter-title-neutral { color: var(--ink) !important; }
.chapter-title-neutral::after { background: var(--brass) !important; }

/* ===== nav muted link ===== */
.nav-link-muted { opacity: .7; }

/* ===== government endorsement ===== */
.endorsement { padding: 5rem 0 4rem; background: var(--paper-raised); border-top: 1px solid var(--line); }
.endorsement .container { margin-bottom: 2rem; }
.endorse-scroller {
  display: flex; gap: 1.2rem; overflow-x: auto; padding: 0.4rem 1.5rem 1rem;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.endorse-scroller::-webkit-scrollbar { height: 6px; }
.endorse-scroller::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: var(--radius); }
.endorse-card {
  flex: none; width: 240px; scroll-snap-align: start; display: block; text-align: left;
  background: var(--paper-raised); border: 1px solid var(--line); padding: 0; margin: 0; font-family: var(--sans); cursor: pointer;
  transition: border-color .25s ease;
}
.endorse-card:hover { border-color: var(--line-strong); }
.endorse-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 4/3; }
.endorse-thumb img { width: 100%; height: 100%; object-fit: cover; }
.endorse-thumb .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; background: rgba(32,29,24,0.2); transition: background .25s ease;
}
.endorse-card:hover .play-badge { background: rgba(184,69,46,0.6); }
.endorse-name { display: block; font-weight: 700; font-size: .88rem; margin-top: .7rem; color: var(--ink); }
.endorse-ctx { display: block; font-size: .77rem; color: var(--ink-faint); margin-top: .15rem; }

/* ===== video modal ===== */
.video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(20,18,15,0.85); }
.video-modal-box { position: relative; z-index: 1; width: min(880px, 100%); }
.video-modal-close {
  position: absolute; top: -2.6rem; right: 0; background: none; border: none; color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer; padding: .3rem .6rem;
}
.video-modal-title { color: #fff; font-family: var(--serif); font-size: 1.05rem; margin-bottom: .7rem; }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-modal-frame video, .video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== success stories (real distributor videos) ===== */
.success-stories { padding: 5rem 0 4rem; background: var(--paper); }
.success-stories .container { margin-bottom: 2rem; }

/* ===== about ===== */
.about { padding: 5.5rem 0; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { position: relative; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line-strong); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem 1rem;
  background: linear-gradient(0deg, rgba(20,18,15,0.6), transparent); color: #fff; font-size: .78rem;
}
.about-stats { margin-top: 3.2rem; }
.about-stats .stat-row { margin-bottom: 0; }

/* ===== business opportunity ===== */
.opportunity { padding: 4rem 0; background: var(--ink); color: #fff; }
.opportunity-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.opportunity .eyebrow { color: var(--brass); }
.opportunity .chapter-title { color: #fff !important; }
.opportunity .chapter-title::after { background: var(--brass) !important; }
.opportunity .chapter-lede { color: #c8c4b8; margin-bottom: 0; }
.opportunity-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.opportunity .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ===== FAQ accordion ===== */
.faq { padding: 5.5rem 0; background: var(--paper-raised); border-top: 1px solid var(--line); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; max-width: 720px; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
  padding: 1.1rem .2rem; font-family: var(--sans); font-weight: 500; font-size: .94rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-icon { font-family: var(--mono); font-size: 1rem; color: var(--vermilion); transition: transform .3s ease; flex: none; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a p { margin: 0; padding: 0 .2rem 1.1rem; color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ===== sticky WhatsApp button ===== */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px -6px rgba(20,18,15,0.4);
  opacity: 0; transform: scale(.85); pointer-events: none; transition: opacity .3s ease, transform .3s ease;
}
.wa-float.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.wa-float:hover { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) { .wa-float { transition: opacity .2s ease; } }

/* ===== care / CSR ===== */
.care { padding: 6rem 0; background: var(--paper); }
.care .chapter-title { color: var(--ink); }
.care .eyebrow { color: var(--vermilion); }
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 2.4rem; }
@media (max-width: 860px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
.care-grid figure { margin: 0; overflow: hidden; position: relative; background: var(--paper-raised); border: 1px solid var(--line); }
.care-grid img { height: 190px; width: 100%; object-fit: cover; filter: saturate(.85) sepia(.06); display: block; }
.care-grid figcaption { padding: .6rem .7rem; font-size: .75rem; font-weight: 500; color: var(--ink-soft); line-height: 1.3; }

/* ===== awards / stats ===== */
.awards { padding: 5.5rem 0; background: var(--paper-raised); border-top: 1px solid var(--line); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; text-align: center; }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-family: var(--serif); font-size: clamp(1.3rem, 5.5vw, 2.4rem); font-weight: 600; color: var(--vermilion); font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat .label { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.muri-block { margin-bottom: 3.2rem; }
.muri-heading { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: .3rem 0 1.6rem; color: var(--ink); }
.muri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
@media (max-width: 860px) { .muri-grid { grid-template-columns: 1fr; } }
.muri-card { background: var(--paper); padding: 1.5rem 1.4rem; }
.muri-badge {
  display: inline-block; font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  color: var(--vermilion); border: 1px solid var(--vermilion); padding: .25rem .7rem; margin-bottom: .8rem;
}
.muri-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.press-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; align-items: center; }
@media (max-width: 760px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }
.press-grid img { opacity: .85; filter: grayscale(.4); transition: opacity .3s ease, filter .3s ease; }
.press-grid img:hover { opacity: 1; filter: grayscale(0); }

/* ===== footer ===== */
footer.site-footer { background: var(--ink); color: #d6d2c6; padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer h4 { color: #fff; font-size: .92rem; margin-bottom: .9rem; font-weight: 500; letter-spacing: .02em; }
footer.site-footer .logo img { height: 24px; margin-bottom: .9rem; filter: brightness(0) invert(1); }
footer.site-footer p { color: #a9a598; font-size: .87rem; max-width: 40ch; }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
footer.site-footer a { text-decoration: none; color: #a9a598; font-size: .87rem; }
footer.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #38352d; padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .78rem; color: #837f72; }

/* reveal-on-scroll generic */
.reveal.pre-reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== breadcrumb (product/about/opportunity subpages) ===== */
.breadcrumb { padding: 1.3rem 0 0; font-size: .84rem; color: var(--ink-faint); }
.breadcrumb a { color: var(--vermilion); font-weight: 600; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== "read more" link from homepage chapter to dedicated product page ===== */
.chapter-more-link { margin-top: .7rem; }
.chapter-more-link a { color: var(--stage-accent, var(--vermilion)); font-weight: 600; text-decoration: none; font-size: .9rem; }
.chapter-more-link a:hover { text-decoration: underline; }

/* ===== simple page intro (subpages without the multi-product hero) ===== */
.page-intro { padding: 3rem 0 1rem; }
.page-intro .chapter-lede { max-width: 62ch; }
