:root {
  --night: #080c16;
  --night-2: #0d1321;
  --stone: #151c2c;
  --stone-2: #1b2436;
  --paper: #eee9df;
  --paper-dim: #aaa69d;
  --ink: #12151c;
  --white: #fff;
  --gold: #c8a25c;
  --gold-bright: #e1c17d;
  --gold-dark: #7d6031;
  --purple: #8561c8;
  --cyan: #4bb9c8;
  --pink: #cf6e99;
  --line: rgba(232, 227, 216, 0.13);
  --line-light: rgba(18, 21, 28, 0.13);
  --serif: "Shippori Mincho B1", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
  --max: 1280px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  background: #f2efe9;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection { background: var(--gold); color: var(--night); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, textarea, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, textarea:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: rgba(8, 12, 22, 0.94);
  border-bottom: 1px solid rgba(200, 162, 92, 0.25);
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { min-height: 66px; box-shadow: 0 16px 40px rgba(0, 0, 0, .28); }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-seal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 162, 92, .65);
  color: var(--gold-bright);
  font: 700 20px/1 var(--serif);
  transform: rotate(-3deg);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 600 18px/1 var(--serif); letter-spacing: .18em; }
.brand-copy small { margin-top: 6px; color: #818b9e; font-size: 8px; letter-spacing: .32em; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: clamp(16px, 2vw, 31px); }
.nav-links a {
  position: relative;
  padding: 29px 0 25px;
  color: #aeb5c3;
  font-size: 13px;
  letter-spacing: .09em;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-external { color: var(--gold-bright); }
.nav-external span { margin-left: 4px; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, .76fr);
  align-items: stretch;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 16%, rgba(133, 97, 200, .17), transparent 31%),
    linear-gradient(110deg, #080c16 0%, #0b101c 58%, #101827 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  left: -330px;
  bottom: -380px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, var(--pink), var(--gold), var(--cyan), var(--purple), var(--pink));
  filter: blur(85px);
  opacity: .18;
}
.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: min(720px, 100%);
  padding: clamp(90px, 11vh, 148px) 54px 72px max(34px, calc((100vw - var(--max)) / 2));
  align-self: center;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .34em;
}
.hero h1 {
  margin-bottom: 30px;
  font: 600 clamp(44px, 5.3vw, 76px)/1.42 var(--serif);
  letter-spacing: .08em;
}
.hero h1 em { color: var(--gold-bright); font-style: normal; }
.hero-lead { max-width: 620px; margin-bottom: 38px; color: #b9b5ad; font-size: 16px; line-height: 2.15; letter-spacing: .04em; overflow-wrap: anywhere; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--night); background: linear-gradient(180deg, var(--gold-bright), #b58945); }
.button-gold:hover { background: #ecd092; }
.button-ghost { color: var(--paper); border-color: rgba(232, 227, 216, .32); background: rgba(255,255,255,.02); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.button:disabled { opacity: .42; cursor: default; transform: none; }
.hero-meta { display: flex; gap: clamp(22px, 4vw, 52px); margin: 54px 0 0; }
.hero-meta div { display: grid; gap: 6px; }
.hero-meta dt { color: #666f82; font-size: 9px; letter-spacing: .25em; }
.hero-meta dd { margin: 0; color: #bfc3ca; font-size: 12px; letter-spacing: .08em; }
.hero-visual { position: relative; min-height: 650px; margin: 0; overflow: hidden; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--night) 0%, rgba(8,12,22,.3) 25%, transparent 65%), linear-gradient(180deg, transparent 55%, rgba(8,12,22,.8) 100%);
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: saturate(.72) contrast(1.04) brightness(.78); transform: translateY(var(--hero-parallax, 0)); scale: 1.07; }
.hero-visual figcaption {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  display: grid;
  justify-items: end;
  color: #d5d0c7;
  font-size: 10px;
  letter-spacing: .18em;
}
.hero-visual figcaption span { margin-bottom: 7px; color: var(--gold-bright); font: 600 26px/1 var(--serif); letter-spacing: .2em; }
.hero-scroll { position: absolute; z-index: 4; left: 24px; bottom: 34px; display: flex; align-items: center; gap: 13px; margin: 0; color: #626b7c; font-size: 8px; letter-spacing: .28em; transform: rotate(-90deg); transform-origin: left center; }
.hero-scroll span { width: 54px; height: 1px; background: var(--gold-dark); }

.stock-flow {
  max-width: var(--max);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 42px;
  align-items: center;
  margin: -1px auto 0;
  padding: 30px 34px;
  color: var(--paper);
  background: var(--stone);
  border-top: 1px solid rgba(200,162,92,.28);
}
.stock-flow-lead { display: grid; gap: 7px; }
.stock-flow-lead span { color: var(--gold); font-size: 8px; letter-spacing: .24em; }
.stock-flow-lead strong { font: 600 18px/1.5 var(--serif); letter-spacing: .07em; }
.stock-flow ol { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.stock-flow li { display: grid; gap: 4px; padding: 4px 22px; border-left: 1px solid var(--line); }
.stock-flow li span { color: var(--gold); font: 500 10px/1 var(--serif); }
.stock-flow li strong { font-size: 12px; letter-spacing: .08em; }
.stock-flow li small { color: #7f8795; font-size: 9px; }

.content-section { max-width: var(--max); margin: 0 auto; padding: 112px 34px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { margin: 0; font: 600 clamp(30px, 3.6vw, 48px)/1.35 var(--serif); letter-spacing: .1em; }
.section-heading > p { max-width: 430px; margin: 0; color: #6f7072; line-height: 1.9; font-size: 14px; }

.latest-section { padding-top: 120px; }
.story-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 22px; align-items: stretch; }
.story-card { min-width: 0; background: var(--white); border: 1px solid #ded9d0; box-shadow: 0 18px 50px rgba(16, 19, 26, .07); }
.story-image { position: relative; display: block; height: 224px; overflow: hidden; background: var(--night-2); }
.story-featured .story-image { height: 350px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .55s ease, filter .4s ease; }
.story-card:hover .story-image img { transform: scale(1.035); filter: saturate(.96); }
.story-image > span { position: absolute; inset: auto 14px 14px auto; padding: 6px 10px; color: var(--paper); background: rgba(8,12,22,.78); font-size: 9px; letter-spacing: .18em; }
.story-body { padding: 28px; }
.story-meta { min-height: 24px; display: flex; align-items: center; gap: 13px; margin-bottom: 16px; color: #898a8c; font-size: 10px; letter-spacing: .11em; }
.category { display: inline-flex; align-items: center; min-height: 23px; padding: 3px 9px; border: 1px solid; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.category-dev { color: #486e78; border-color: #8eb5bd; }
.category-ninsupu { color: #74588f; border-color: #aa8fc4; }
.category-anime { color: #8c536d; border-color: #cf9ab2; }
.category-brain { color: #8a6533; border-color: #caa46c; }
.category-own { color: #5d768f; border-color: #96afc5; }
.story-card h3 { margin-bottom: 14px; font: 600 20px/1.7 var(--serif); letter-spacing: .045em; }
.story-featured h3 { font-size: clamp(22px, 2.2vw, 30px); }
.story-card h3 a:hover { color: #7e6030; }
.story-card p { margin-bottom: 18px; color: #6b6a67; font-size: 13.5px; line-height: 1.95; }
.text-link { color: #6f5329; border-bottom: 1px solid #bba67f; padding-bottom: 4px; font-size: 12px; font-weight: 700; letter-spacing: .09em; }
.text-link span { margin-left: 8px; }
.is-upcoming { background: #ece9e3; }

.category-band { padding: 92px max(34px, calc((100vw - var(--max)) / 2)); color: var(--paper); background: var(--night); }
.section-heading-light h2 { color: var(--paper); }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-grid a { min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(150deg, transparent, rgba(255,255,255,.018)); transition: background .25s ease, transform .25s ease; }
.category-grid a:hover { position: relative; z-index: 2; background: var(--stone); transform: translateY(-4px); }
.category-grid span { margin-bottom: auto; color: var(--gold); font: 500 15px/1 var(--serif); }
.category-grid strong { font: 600 17px/1.6 var(--serif); letter-spacing: .07em; }
.category-grid small { margin-top: 9px; color: #697386; font-size: 8px; letter-spacing: .17em; }

.journal-section { padding-top: 120px; }
.journal-list { border-top: 1px solid var(--line-light); }
.journal-list article { display: grid; grid-template-columns: 98px minmax(0, 1fr) 50px; align-items: center; gap: 34px; padding: 30px 8px; border-bottom: 1px solid var(--line-light); transition: padding .2s ease, background .2s ease; }
.journal-list article:hover { padding-left: 20px; background: rgba(255,255,255,.5); }
.journal-list time { display: grid; justify-items: center; border-right: 1px solid var(--line-light); }
.journal-list time strong { font: 600 32px/1 var(--serif); }
.journal-list time span { margin-top: 7px; color: #8d8d8a; font-size: 9px; letter-spacing: .12em; }
.journal-list h3 { margin: 9px 0 7px; font: 600 19px/1.55 var(--serif); letter-spacing: .05em; }
.journal-list p { margin: 0; color: #73726f; font-size: 13px; line-height: 1.75; }
.journal-list article > a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #c6c0b5; color: #826432; }

.brain-section { padding: 112px max(34px, calc((100vw - var(--max)) / 2)); color: var(--paper); background: var(--night-2); }
.brain-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.brain-intro h2 { margin-bottom: 27px; font: 600 clamp(32px, 4vw, 50px)/1.6 var(--serif); letter-spacing: .1em; }
.brain-intro > p:not(.eyebrow) { color: #a9a69f; font-size: 14px; line-height: 2.1; }
.brain-intro .disclosure { padding: 15px 18px; border-left: 2px solid var(--gold); background: rgba(200,162,92,.07); font-size: 11px !important; }
.brain-intro .button { margin-top: 12px; }
.brain-cards { border-top: 1px solid var(--line); }
.brain-cards article { padding: 34px 6px; border-bottom: 1px solid var(--line); }
.brain-cards h3 { margin: 18px 0 12px; font: 600 21px/1.7 var(--serif); letter-spacing: .06em; }
.brain-cards p { margin: 0; color: #9298a3; font-size: 13px; line-height: 1.9; }

.tools-section { padding-bottom: 80px; }
.nemu-ad { display: grid; grid-template-columns: 150px minmax(0, 1fr); min-height: 150px; margin-bottom: 34px; color: var(--paper); background: var(--stone); border: 1px solid #293349; }
.nemu-ad img { width: 150px; height: 100%; object-fit: cover; filter: saturate(.75); }
.nemu-ad div { align-self: center; padding: 25px 30px; }
.nemu-ad span { display: block; margin-bottom: 10px; color: var(--gold); font-size: 8px; letter-spacing: .26em; }
.nemu-ad strong { display: block; font: 600 21px/1.5 var(--serif); letter-spacing: .08em; }
.nemu-ad p { margin: 8px 0 0; color: #9299a6; font-size: 12px; }
.tool-controls { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-button { padding: 9px 16px; border: 1px solid #c8c2b7; color: #686762; background: transparent; cursor: pointer; font-size: 11px; letter-spacing: .08em; }
.filter-button:hover, .filter-button.is-active { color: var(--paper); border-color: var(--night); background: var(--night); }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.tool-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(255,255,255,.38); }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 4px 7px; color: #7c725f; border: 1px solid #cfc5b4; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.tool-card h3 { margin: 24px 0 12px; font: 600 20px/1.5 var(--serif); letter-spacing: .06em; }
.tool-card p { margin: 0; color: #74726e; font-size: 13px; line-height: 1.9; }
.secondary-action { align-self: flex-start; padding-bottom: 4px; color: #6f5329; border-bottom: 1px solid #b7a06f; font-size: 12px; font-weight: 700; letter-spacing: .09em; }
.secondary-action::after { content: " →"; }

.x-counter { max-width: var(--max); margin: 0 auto 112px; padding: 70px 34px; color: var(--paper); background: var(--night); }
.x-counter .section-heading h2 { color: var(--paper); }
.x-counter .section-heading > p { color: #9097a4; }
.x-counter-grid { display: grid; grid-template-columns: 1fr .88fr; gap: 28px; }
.x-counter-editor, .x-counter-side { padding: 28px; border: 1px solid var(--line); background: var(--night-2); }
.x-account-switch { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; padding: 0; border: 0; }
.x-account-switch legend { width: 100%; margin-bottom: 10px; color: #8d95a3; font-size: 10px; letter-spacing: .14em; }
.x-account-switch label { cursor: pointer; }
.x-account-switch input { position: absolute; opacity: 0; }
.x-account-switch label span { display: block; padding: 10px 13px; border: 1px solid var(--line); color: #a6adba; font-size: 12px; }
.x-account-switch input:checked + span { color: var(--night); border-color: var(--gold); background: var(--gold); }
.x-account-switch small { opacity: .75; }
.x-input-label { display: block; margin-bottom: 9px; color: #9ba2af; font-size: 11px; letter-spacing: .1em; }
#x-post-text { width: 100%; min-height: 235px; resize: vertical; padding: 18px; color: #eee9df; border: 1px solid #31394a; border-radius: 0; background: #090e18; line-height: 1.8; }
#x-post-text::placeholder { color: #596273; }
.x-count-panel { margin-top: 16px; padding: 18px; border: 1px solid var(--line); }
.x-count-caption { color: #7f8797; font-size: 10px; letter-spacing: .12em; }
.x-count-number { display: flex; align-items: baseline; gap: 6px; margin-top: 7px; }
.x-count-number strong { color: var(--gold-bright); font: 600 36px/1 var(--serif); }
.x-count-number span, #x-remaining { color: #9fa6b2; }
#x-remaining { margin: 8px 0 12px; font-size: 11px; }
.x-progress { height: 3px; background: #292f3b; overflow: hidden; }
.x-progress span { display: block; width: var(--progress, 0%); height: 100%; background: var(--gold); transition: width .2s ease; }
.x-count-panel.is-over .x-count-number strong, .x-count-panel.is-over #x-remaining { color: #e98d9f; }
.x-count-panel.is-over .x-progress span { background: #e98d9f; }
.x-counter-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.x-counter-actions .button { min-height: 42px; padding: 10px 15px; font-size: 10px; }
.text-action { padding: 9px 6px; border: 0; color: var(--gold-bright); background: transparent; cursor: pointer; font-size: 11px; }
.text-action:disabled { opacity: .35; cursor: default; }
.x-preview-label { display: flex; justify-content: space-between; margin-bottom: 13px; color: #778091; font-size: 9px; letter-spacing: .13em; }
.x-post-preview { display: grid; grid-template-columns: 42px 1fr; gap: 12px; min-height: 180px; padding: 18px; color: #16181d; background: #fff; }
.x-post-preview > img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.x-preview-profile { display: flex; flex-wrap: wrap; gap: 7px; font-size: 12px; }
.x-preview-profile span { color: #6b7078; }
.x-preview-copy { margin: 8px 0 0; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 13px; line-height: 1.55; }
.x-preview-more { padding: 0; border: 0; color: #536471; background: transparent; cursor: pointer; }
.twemoji { display: inline-block; width: 1.12em; height: 1.12em; margin: 0 .03em; vertical-align: -.18em; }
.x-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 14px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.x-detail-grid div { display: grid; gap: 5px; padding: 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.x-detail-grid span { color: #7d8594; font-size: 9px; letter-spacing: .1em; }
.x-detail-grid strong { color: #ddd9d0; font: 500 18px/1 var(--serif); }
.x-count-note { margin: 14px 0 0; color: #747d8c; font-size: 10px; line-height: 1.8; }
.x-count-note a { color: var(--gold); text-decoration: underline; }
.x-thread-panel { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.x-thread-panel h3 { font: 600 24px/1.4 var(--serif); }
.x-thread-list { display: grid; gap: 10px; }
.x-thread-list article { padding: 18px; border: 1px solid var(--line); background: var(--night-2); }
.x-thread-list article > div { display: flex; justify-content: space-between; color: var(--gold); font-size: 10px; }
.x-thread-list article p { white-space: pre-wrap; color: #c5c2bb; font-size: 13px; line-height: 1.7; }
.x-toast { position: fixed; z-index: 200; left: 50%; bottom: 24px; margin: 0; padding: 11px 18px; color: var(--night); background: var(--gold-bright); opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .2s ease; }
.x-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.closing-band { max-width: var(--max); margin: 0 auto 112px; min-height: 340px; display: flex; align-items: end; justify-content: space-between; gap: 34px; padding: 58px; color: var(--paper); background: linear-gradient(90deg, rgba(8,12,22,.98), rgba(8,12,22,.5)), url("./images/collection-banner.jpg") center / cover; }
.closing-band h2 { margin: 0; font: 600 clamp(29px, 4vw, 48px)/1.6 var(--serif); letter-spacing: .1em; }
.closing-band .button { flex: none; }
.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 40px; padding: 48px max(34px, calc((100vw - var(--max)) / 2)); color: #8c95a6; background: #060911; border-top: 1px solid var(--line); }
.site-footer strong { color: var(--paper); font: 600 18px/1 var(--serif); letter-spacing: .16em; }
.site-footer p { margin: 11px 0 0; font-size: 11px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; font-size: 11px; }
.site-footer a:hover { color: var(--gold); }
.site-footer small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line); font-size: 9px; letter-spacing: .14em; }

.motion-enabled .motion-reveal { opacity: 1; transform: none; }
.motion-enabled .motion-reveal.is-visible { opacity: 1; transform: none; }
.motion-enabled .hero-copy > * { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.motion-enabled .hero.is-hero-visible .hero-copy > * { opacity: 1; transform: none; }
.motion-enabled .hero.is-hero-visible .hero-copy > *:nth-child(2) { transition-delay: .08s; }
.motion-enabled .hero.is-hero-visible .hero-copy > *:nth-child(3) { transition-delay: .16s; }
.motion-enabled .hero.is-hero-visible .hero-copy > *:nth-child(4) { transition-delay: .24s; }
.motion-enabled .hero.is-hero-visible .hero-copy > *:nth-child(5) { transition-delay: .32s; }

@media (max-width: 1080px) {
  :root { --header-h: 70px; }
  .site-header { gap: 20px; padding-inline: 24px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; }
  .hero { grid-template-columns: 1fr .72fr; }
  .hero-copy { padding-left: 42px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-featured { grid-row: span 2; }
  .story-featured .story-image { height: 430px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-h: 112px; }
  .site-header { min-height: var(--header-h); display: block; padding: 13px 0 0; }
  .site-header.is-scrolled { min-height: var(--header-h); }
  .brand { width: max-content; margin: 0 18px 10px; }
  .brand-seal { width: 31px; height: 31px; font-size: 16px; }
  .brand-copy strong { font-size: 15px; }
  .nav-links { width: 100%; display: flex; gap: 22px; padding: 0 18px; overflow-x: auto; scrollbar-width: none; border-top: 1px solid var(--line); }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { padding: 14px 0 13px; }
  .nav-links a::after { bottom: 8px; }
  .hero { min-height: 790px; grid-template-columns: 1fr; }
  .hero-copy { z-index: 5; width: 100%; padding: 76px 28px 260px; background: linear-gradient(180deg, rgba(8,12,22,.42), rgba(8,12,22,.94) 72%); }
  .hero-visual { position: absolute; inset: 0; min-height: 0; opacity: .68; }
  .hero-visual::before { background: linear-gradient(180deg, rgba(8,12,22,.35), rgba(8,12,22,.25) 32%, var(--night) 89%); }
  .hero-visual figcaption { display: none; }
  .hero-scroll { display: none; }
  .stock-flow { margin: 0; grid-template-columns: 1fr; gap: 22px; padding: 28px 24px; }
  .content-section { padding: 82px 24px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-featured { grid-column: 1 / -1; grid-row: auto; }
  .story-featured .story-image { height: 360px; }
  .category-band, .brain-section { padding: 78px 24px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .brain-inner { grid-template-columns: 1fr; }
  .x-counter { margin-bottom: 82px; padding: 60px 24px; }
  .x-counter-grid { grid-template-columns: 1fr; }
  .closing-band { margin: 0 24px 82px; padding: 42px; }
}

@media (max-width: 560px) {
  .hero { min-height: 720px; }
  .hero-copy { padding: 58px 20px 220px; }
  .hero h1 { font-size: 39px; line-height: 1.48; }
  .hero-lead { font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-meta { gap: 18px; }
  .hero-meta dd { font-size: 10px; }
  .stock-flow { padding: 26px 18px; }
  .stock-flow ol { grid-template-columns: 1fr; gap: 0; }
  .stock-flow li { padding: 12px 8px 12px 18px; }
  .content-section { padding: 68px 18px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 30px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-featured { grid-column: auto; }
  .story-featured .story-image, .story-image { height: 230px; }
  .story-body { padding: 23px; }
  .category-band, .brain-section { padding: 65px 18px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid a { min-height: 145px; }
  .journal-list article { grid-template-columns: 66px minmax(0, 1fr); gap: 18px; padding: 24px 0; }
  .journal-list article:hover { padding-left: 0; }
  .journal-list article > a { display: none; }
  .journal-list time strong { font-size: 26px; }
  .journal-list h3 { font-size: 17px; }
  .nemu-ad { grid-template-columns: 100px minmax(0, 1fr); }
  .nemu-ad img { width: 100px; }
  .nemu-ad div { padding: 18px; }
  .nemu-ad strong { font-size: 16px; }
  .nemu-ad p { display: none; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 250px; }
  .x-counter { margin: 0 0 68px; padding: 54px 18px; }
  .x-counter-editor, .x-counter-side { padding: 19px; }
  .x-account-switch { display: grid; }
  .x-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-band { min-height: 330px; display: block; margin: 0 18px 68px; padding: 32px 24px; }
  .closing-band .button { margin-top: 30px; }
  .site-footer { grid-template-columns: 1fr; padding: 40px 22px; }
  .site-footer nav { justify-content: flex-start; }
}

/* Selected mock fidelity pass — 2026-08-06 */
.site-header {
  min-height: 62px;
  height: 62px;
  padding-inline: max(26px, calc((100vw - 1300px) / 2));
  gap: 34px;
  background: linear-gradient(90deg, #351846, #2d163e 60%, #3b1a4a);
}
.site-header.is-scrolled { min-height: 62px; }
.brand-seal { width: 36px; height: 36px; }
.brand-copy strong { font-size: 17px; }
.nav-links { gap: clamp(20px, 2.2vw, 38px); }
.nav-links a { padding: 22px 0 20px; font-size: 12px; }
.nav-links a::after { bottom: 13px; }
.header-actions { display: flex; align-items: center; gap: 16px; margin-left: 12px; }
.header-actions button { width: 34px; height: 34px; padding: 0; color: #fff; border: 0; background: transparent; cursor: pointer; }
.header-actions a { min-height: 35px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; color: #fff; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; font-size: 10px; letter-spacing: .1em; white-space: nowrap; }

.hero {
  min-height: 0;
  height: 495px;
  grid-template-columns: 51.5% 48.5%;
  background: linear-gradient(105deg, #fdfafd 0%, #f5eef9 57%, #eee2f5 100%);
}
.hero-copy { width: 100%; padding: 76px 42px 48px max(64px, calc((100vw - 1295px) / 2 + 60px)); }
.hero .eyebrow { margin-bottom: 23px; color: #805aa2; font-size: 8px; letter-spacing: .42em; }
.hero h1 { margin-bottom: 22px; font-size: clamp(45px, 4.15vw, 63px); line-height: 1.38; letter-spacing: .09em; }
.hero-lead { max-width: 570px; margin-bottom: 27px; color: #51445c; font-size: 13px; line-height: 1.95; }
.mobile-break { display: none; }
.hero-actions { gap: 14px; }
.hero .button { min-height: 47px; padding: 11px 27px; font-size: 11px; }
.hero-meta, .hero-scroll { display: none; }
.hero-visual { height: 495px; min-height: 0; overflow: hidden; }
.hero-visual::before {
  background:
    radial-gradient(circle at 56% 49%, transparent 0 41%, rgba(126,85,165,.1) 41.5% 42%, transparent 42.5% 52%, rgba(181,146,69,.16) 52.5% 53%, transparent 53.5%),
    linear-gradient(90deg, rgba(245,238,249,.88), transparent 20%);
}
.hero-visual img {
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  object-fit: initial;
  filter: drop-shadow(0 24px 30px rgba(66,34,83,.16));
  transform: none !important;
  scale: 1.04;
  transform-origin: 50% 0;
}
.hero-visual figcaption { display: none; }
.hero-motto { position: absolute; z-index: 4; top: 52px; right: 32px; width: 56px; margin: 0; color: #493453; text-align: center; }
.hero-motto strong { display: block; color: #3a9bb0; font: 600 14px/1 var(--serif); letter-spacing: .18em; }
.hero-motto small { display: block; margin: 6px -6px 22px; color: #8f7c98; font-size: 6px; white-space: nowrap; }
.hero-motto span { display: block; margin: auto; writing-mode: vertical-rl; font: 500 12px/1.8 var(--serif); letter-spacing: .16em; }

.stock-flow, .latest-section, .category-band, .journal-section, .brain-section, .tools-section, .closing-band, .site-footer { display: none; }

.mock-dashboard { max-width: 1295px; margin: 0 auto; padding: 34px 0 22px; background: #fff; }
.mock-dashboard-top { display: grid; grid-template-columns: minmax(0, 2.7fr) minmax(300px, 1fr); gap: 64px; }
.mock-section-title { min-height: 28px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.mock-section-title h2 { margin: 0; color: #372342; font: 600 17px/1.4 var(--serif); letter-spacing: .08em; }
.mock-section-title h2 i { margin-right: 10px; color: #9d63c6; font-size: 13px; }
.mock-section-title > a { color: #744995; font-size: 8px; letter-spacing: .12em; }
.mock-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.mock-article-card { min-width: 0; scroll-margin-top: 86px; }
.mock-thumb { position: relative; display: block; height: 126px; overflow: hidden; border-radius: 3px; background: #e8dbef; }
.mock-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.mock-article-card:hover .mock-thumb img { transform: scale(1.035); }
.mock-thumb span { position: absolute; left: 8px; bottom: 7px; padding: 4px 9px; color: #fff; background: rgba(91,43,119,.88); font-size: 8px; letter-spacing: .1em; }
.mock-article-card h3 { margin: 8px 0 4px; overflow: hidden; color: #674282; font: 600 13px/1.4 var(--serif); white-space: nowrap; text-overflow: ellipsis; }
.mock-article-card p { margin: 0 0 6px; overflow: hidden; color: #716777; font-size: 9px; line-height: 1.5; white-space: nowrap; text-overflow: ellipsis; }
.mock-article-card small { color: #8b7f91; font-size: 7px; }
.mock-article-card small i { color: #8152a3; font-size: 5px; }
.mock-categories nav { border: 1px solid #eadff0; }
.mock-categories nav a { min-height: 39px; display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 8px; padding: 0 15px; color: #5b4865; border-bottom: 1px solid #eadff0; background: linear-gradient(90deg, #fbf7fc, #f7f0fa); font-size: 10px; }
.mock-categories nav a:last-child { border-bottom: 0; }
.mock-categories nav a:hover { background: #f0e2f6; }
.mock-categories nav a > i:first-child { color: #8350aa; text-align: center; }
.mock-categories nav a > i:last-child { color: #8c62a7; font-size: 8px; }
.mock-dashboard-bottom { display: grid; grid-template-columns: 1fr 1.05fr; gap: 23px; margin-top: 28px; }
.mock-journal, .mock-free-tools { min-height: 148px; display: grid; grid-template-columns: 210px 1fr; gap: 26px; padding: 22px 26px; background: linear-gradient(120deg, #f0e7f6, #faf7fc); border: 1px solid #eee5f2; }
.mock-journal h2, .mock-free-tools h2 { margin-bottom: 11px; color: #3e2949; font: 600 20px/1.2 var(--serif); letter-spacing: .08em; }
.mock-journal p, .mock-free-tools p { margin-bottom: 13px; color: #75697c; font-size: 9px; line-height: 1.65; }
.mock-journal a, .mock-free-tools > div:first-child a { color: #70468f; font-size: 8px; font-weight: 700; }
.mock-journal ol { display: grid; align-content: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.mock-journal li { position: relative; display: grid; grid-template-columns: 45px 1fr; gap: 15px; color: #62556a; font-size: 9px; }
.mock-journal li::before { content: ""; position: absolute; left: -12px; top: 5px; width: 5px; height: 5px; border-radius: 50%; background: #8d59af; }
.mock-tool-list { display: grid; gap: 8px; }
.mock-tool-list a { min-height: 49px; display: grid; grid-template-columns: 38px 1fr 30px; align-items: center; gap: 10px; padding: 7px 12px; color: #5b4765; border: 1px solid #eee5f2; border-radius: 8px; background: rgba(255,255,255,.82); }
.mock-tool-list > a > i:first-child { width: 32px; height: 32px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #79499b; }
.mock-tool-list > a:nth-child(2) > i:first-child { background: linear-gradient(135deg, #7546a1, #d06f9a, #49b3c0); }
.mock-tool-list span { display: grid; }
.mock-tool-list strong { font: 600 11px/1.4 var(--serif); }
.mock-tool-list small { color: #9a8ca0; font-size: 7px; }
.mock-tool-list > a > i:last-child { color: #8153a1; text-align: center; }
.mock-mini-footer { min-height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(28px, calc((100vw - 1295px) / 2)); color: #695773; background: #eadcf2; font-size: 8px; letter-spacing: .12em; }
.mock-mini-footer nav { display: flex; gap: 30px; }
.mock-mini-footer a:hover { color: #744995; }
.x-counter { margin-top: 100px; }

@media (max-width: 1180px) {
  .site-header { padding-inline: 24px; }
  .header-actions a { display: none; }
  .mock-dashboard { padding-inline: 28px; }
  .hero-motto { display: none; }
}

@media (max-width: 820px) {
  .site-header { height: 112px; }
  .header-actions { position: absolute; right: 16px; top: 12px; }
  .hero { height: 690px; grid-template-columns: 1fr; }
  .hero-copy { z-index: 5; padding: 74px 28px 260px; background: linear-gradient(180deg, rgba(252,249,253,.08), #f5eef9 77%); }
  .hero-visual { position: absolute; inset: 0; height: 690px; opacity: .35; }
  .hero-visual img { top: 90px; left: 22%; width: 92%; }
  .mock-dashboard-top { grid-template-columns: 1fr; }
  .mock-dashboard-bottom { grid-template-columns: 1fr; }
  .mock-mini-footer nav { display: none; }
}

@media (max-width: 560px) {
  .hero { height: 650px; }
  .hero-copy { padding: 58px 20px 230px; }
  .hero h1 { font-size: 38px; }
  .hero-lead { font-size: 12px; }
  .hero-visual { height: 650px; }
  .hero-visual img { top: 190px; left: 22%; width: 105%; }
  .mock-dashboard { padding: 28px 18px 18px; }
  .mock-article-grid { grid-template-columns: 1fr; gap: 24px; }
  .mock-thumb { height: 190px; }
  .mock-article-card h3, .mock-article-card p { white-space: normal; }
  .mock-journal, .mock-free-tools { grid-template-columns: 1fr; }
  .mock-mini-footer { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-enabled .motion-reveal, .motion-enabled .hero-copy > * { opacity: 1; transform: none; }
  .hero-visual img { transform: none; }
}

/* Option 01 — pale NEMU editorial direction */
:root {
  --night: #351846;
  --night-2: #4a2b5d;
  --stone: #eee6f5;
  --stone-2: #e4d6ee;
  --paper: #fffaf4;
  --paper-dim: #d8cce4;
  --ink: #2f213a;
  --gold: #b59245;
  --gold-bright: #ddc77f;
  --gold-dark: #876c32;
  --purple: #7e55a5;
  --cyan: #56aeb8;
  --pink: #bc7c9f;
  --line: rgba(255, 250, 244, .2);
  --line-light: rgba(73, 42, 91, .15);
}

body { background: #fbf8fd; }
.site-header {
  background: rgba(53, 24, 70, .95);
  border-bottom-color: rgba(221, 199, 127, .32);
  box-shadow: 0 10px 35px rgba(60, 28, 76, .12);
}
.brand-copy small, .nav-links a { color: #d9cde3; }

.hero {
  min-height: min(820px, calc(100svh - var(--header-h)));
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 46%, rgba(255,255,255,.92) 0 16%, transparent 41%),
    radial-gradient(circle at 88% 22%, rgba(126,85,165,.14), transparent 27%),
    linear-gradient(112deg, #fcf9fd 0%, #f4edf9 55%, #e7d8f1 100%);
}
.hero::before {
  opacity: .52;
  background-image: linear-gradient(rgba(102,65,126,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(102,65,126,.07) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-glow { left: auto; right: -260px; bottom: -420px; opacity: .13; }
.hero h1 { color: #321d40; }
.hero h1 em { color: #765095; }
.hero-lead { color: #64576c; }
.button-gold { color: #fffaf4; background: linear-gradient(180deg, #79549a, #57336e); box-shadow: 0 12px 28px rgba(82,46,104,.18); }
.button-gold:hover { background: #8b62ad; }
.button-ghost { color: #583d69; border-color: rgba(88,61,105,.38); background: rgba(255,255,255,.42); }
.button-ghost:hover { color: #351846; border-color: #7e55a5; }
.hero-meta { padding-top: 22px; border-top: 1px solid rgba(73,42,91,.14); }
.hero-meta dt { color: #9b80ac; }
.hero-meta dd { color: #4f3d58; }
.hero-visual { min-height: 650px; overflow: visible; }
.hero-visual::before {
  background:
    radial-gradient(circle at 54% 47%, transparent 0 37%, rgba(126,85,165,.08) 38% 38.5%, transparent 39% 48%, rgba(181,146,69,.16) 49% 49.5%, transparent 50%),
    linear-gradient(90deg, #f4edf9 0%, transparent 23%);
}
.hero-visual img {
  object-fit: contain;
  object-position: center 54%;
  padding: 52px 7% 18px 0;
  filter: drop-shadow(0 30px 32px rgba(66,34,83,.18));
  scale: 1;
}
.hero-visual figcaption { color: #6f5c79; }
.hero-visual figcaption span { color: #6d468c; }
.hero-scroll { color: #8a7298; }

.stock-flow {
  color: var(--ink);
  background: #fffafc;
  border: 1px solid rgba(73,42,91,.14);
  box-shadow: 0 18px 50px rgba(69,38,84,.07);
}
.stock-flow li { border-left-color: var(--line-light); }
.stock-flow li small { color: #8b7b91; }
.story-card { border-color: #dfd3e7; box-shadow: 0 18px 50px rgba(69,38,84,.08); }
.story-image { background: #e8ddef; }
.is-upcoming { background: #f0eaf4; }

.category-band {
  color: var(--ink);
  background: linear-gradient(135deg, #ede3f4, #f8f3fa 62%, #eee4f4);
  border-block: 1px solid rgba(73,42,91,.12);
}
.section-heading-light h2 { color: var(--ink); }
.category-grid { border-color: rgba(73,42,91,.18); }
.category-grid a { border-color: rgba(73,42,91,.18); background: rgba(255,255,255,.24); }
.category-grid a:hover { background: rgba(255,255,255,.76); }
.category-grid small { color: #7e6b88; }

.brain-section {
  color: var(--ink);
  background: linear-gradient(120deg, #f6f0f8, #eadff1);
  border-block: 1px solid rgba(73,42,91,.12);
}
.brain-intro > p:not(.eyebrow), .brain-cards p { color: #6d5e73; }
.brain-intro .disclosure { background: rgba(181,146,69,.1); }
.brain-cards { border-top-color: var(--line-light); }
.brain-cards article { border-bottom-color: var(--line-light); }

.nemu-ad {
  color: var(--ink);
  background: linear-gradient(100deg, #eee5f4, #faf6fc);
  border-color: #d7c7e2;
}
.nemu-ad img { object-fit: contain; padding: 8px; filter: none; }
.nemu-ad p { color: #77687f; }
.filter-button:hover, .filter-button.is-active { border-color: #67447f; background: #67447f; }
.tool-card { background: rgba(255,255,255,.64); }

.x-counter {
  color: var(--ink);
  background: linear-gradient(135deg, #ede3f4, #f8f4fa);
  border: 1px solid #dacbe4;
  box-shadow: 0 24px 70px rgba(69,38,84,.09);
}
.x-counter .section-heading h2 { color: var(--ink); }
.x-counter .section-heading > p { color: #76677e; }
.x-counter-editor, .x-counter-side { border-color: #d5c5df; background: rgba(255,255,255,.72); }
.x-account-switch legend, .x-input-label { color: #74627d; }
.x-account-switch label span { color: #6e5b78; border-color: #cbb9d6; }
.x-account-switch input:checked + span { color: #fff; border-color: #714c8d; background: #714c8d; }
.x-count-panel, .x-detail-grid, .x-detail-grid div { border-color: #d5c5df; }
.x-count-number strong { color: #714c8d; }
.x-count-number span, #x-remaining { color: #706276; }
.x-progress { background: #d8cae1; }
.x-progress span { background: #79549a; }
.x-detail-grid span, .x-count-note, .x-preview-label { color: #76677e; }
.x-detail-grid strong { color: #442c51; }
.text-action, .x-count-note a { color: #704b8a; }

.closing-band { background: linear-gradient(90deg, rgba(53,24,70,.97), rgba(53,24,70,.62)), url("./images/collection-banner.jpg") center / cover; }
.site-footer { background: #30153e; }

@media (max-width: 820px) {
  .site-header, .hero { width: 100%; max-width: 100vw; }
  .nav-links { min-width: 0; max-width: 100vw; }
  .hero { min-height: 820px; }
  .hero-copy { width: 100vw; max-width: 100%; padding-bottom: 330px; background: linear-gradient(180deg, rgba(251,248,253,.14), rgba(246,239,250,.96) 69%); }
  .hero-visual { inset: 0; opacity: .6; }
  .hero-visual::before { background: linear-gradient(180deg, rgba(244,237,249,.12), #f4edf9 86%); }
  .hero-visual img { padding: 30px 3% 230px 22%; }
}

@media (max-width: 560px) {
  .hero { min-height: 760px; }
  .hero-copy { padding-bottom: 250px; }
  .hero-visual { opacity: .34; }
  .hero-visual img { padding: 170px 0 40px 32%; object-position: center bottom; }
}

/* Final source-order lock for the selected mock */
@media (min-width: 821px) {
  .hero { min-height: 0; height: 476px; grid-template-columns: 51.5% 48.5%; }
  .hero-copy { width: 100%; padding: 76px 42px 48px max(64px, calc((100vw - 1295px) / 2 + 60px)); }
  .hero-visual { height: 476px; min-height: 0; overflow: hidden; }
  .hero-visual img { position: absolute; top: -18px; left: -10%; width: 112%; max-width: none; height: auto; padding: 0; object-fit: initial; object-position: initial; filter: drop-shadow(0 24px 30px rgba(66,34,83,.16)); transform: none !important; scale: 1.04; transform-origin: 50% 0; }
}

@media (max-width: 820px) {
  .hero { min-height: 0; height: 690px; }
  .hero-copy { z-index: 5; padding: 74px 28px 260px; }
  .hero-visual { z-index: 1; height: 690px; }
  .hero-visual img { top: 90px; left: 22%; width: 92%; height: auto; padding: 0; object-fit: initial; }
}

@media (max-width: 560px) {
  .hero { min-height: 0; height: auto; }
  .hero-copy { width: 100%; min-width: 0; max-width: 100vw; padding: 58px 20px 72px; overflow: hidden; }
  .hero-lead { width: 100%; max-width: 100%; white-space: normal; word-break: break-all; overflow-wrap: anywhere; }
  .mobile-break { display: block; }
  .hero-visual { display: none; }
}

/* Rainbow artist + Shirogami partner direction */
.rainbow-title { display: inline-flex; font-style: normal; }
.rainbow-title span:nth-child(1) { color: #8052a3; }
.rainbow-title span:nth-child(2) { color: #4f9fca; }
.rainbow-title span:nth-child(3) { color: #53aa89; }
.rainbow-title span:nth-child(4) { color: #d1a93d; }
.rainbow-title span:nth-child(5) { color: #df754b; }

.hero { isolation: isolate; }
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("./images/hero-motion-brushes.png") center / cover no-repeat;
  opacity: .3;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.hero-visual { isolation: isolate; overflow: visible !important; }
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 2% 4% -8% 0;
  background: url("./images/hero-motion-brushes.png") center / cover no-repeat;
  opacity: .38;
  pointer-events: none;
}
.hero-visual .hero-nemu {
  position: absolute;
  z-index: 4;
  top: -10px;
  left: -38%;
  width: 107%;
  max-width: none;
  height: auto;
  padding: 0;
  object-fit: initial;
  filter: drop-shadow(0 24px 30px rgba(66,34,83,.2));
  transform: none !important;
  scale: 1;
}
.hero-visual .hero-shirogami {
  position: absolute;
  z-index: 3;
  top: 3px;
  right: 13%;
  left: auto;
  width: 72%;
  max-width: none;
  height: auto;
  padding: 0;
  object-fit: initial;
  filter: drop-shadow(0 22px 24px rgba(44,25,55,.2));
  transform: scaleX(-1) !important;
  transform-origin: center;
  scale: 1;
}
.hero-motto { z-index: 6; }

.mock-section-title h2::after,
.mock-journal h2::after,
.mock-free-tools h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin-top: 5px;
  background: linear-gradient(90deg, #8951ad, #4eacd0, #55ad83, #e0b33e, #e47b53);
}
.mock-dashboard { position: relative; overflow: hidden; }
.mock-dashboard::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -110px;
  bottom: -120px;
  width: 410px;
  height: 310px;
  background: url("./images/hero-motion-brushes.png") center / cover no-repeat;
  opacity: .24;
  pointer-events: none;
}
.mock-dashboard > * { position: relative; z-index: 1; }

@media (max-width: 1180px) and (min-width: 821px) {
  .hero-visual .hero-nemu { left: -18%; width: 102%; }
  .hero-visual .hero-shirogami { right: 3%; width: 69%; }
}

@media (max-width: 820px) and (min-width: 561px) {
  .hero-visual { opacity: .42; }
  .hero-visual .hero-nemu { top: 110px; left: 25%; width: 70%; }
  .hero-visual .hero-shirogami { top: 120px; right: -3%; width: 54%; }
}
