:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #172033;
  --muted: #667085;
  --line: #d9dee8;
  --accent: #1f6feb;
  --accent-2: #0f9f6e;
  --danger: #c2410c;
  --shadow: 0 18px 44px rgba(23, 32, 51, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
img,
canvas,
svg,
video,
table {
  max-width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.bank-style-header {
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 800;
}
.global-menu {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.menu-item {
  position: relative;
  display: flex;
}
.menu-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 66px;
  padding: 0 22px;
  border-bottom: 3px solid transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}
.menu-link:hover,
.menu-link:focus {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: none;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 8px 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.menu-panel a:hover,
.menu-panel a:focus {
  background: #eef4ff;
  color: var(--accent);
}
.has-panel:hover .menu-panel,
.has-panel:focus-within .menu-panel,
.has-panel.is-open .menu-panel {
  display: block;
}
.has-panel.is-open .menu-link {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
main { max-width: 1180px; margin: 0 auto; padding: 34px clamp(18px, 4vw, 40px) 64px; }
.home-portal-page {
  min-height: 100vh;
  background: var(--bg);
}
.home-portal-page main {
  max-width: none;
  padding: 0;
}
.home-landing {
  min-height: 100vh;
}
.home-philosophy-visual {
  position: relative;
  display: grid;
  min-height: clamp(380px, 58vh, 680px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.home-philosophy-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 15, 26, 0.34);
}
.home-philosophy-visual > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-philosophy-copy {
  display: grid;
  gap: 10px;
  width: min(920px, calc(100vw - 40px));
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}
.home-philosophy-copy span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-philosophy-copy strong {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}
.home-card-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 24px);
  width: min(1040px, calc(100vw - 36px));
  margin: clamp(22px, 5vw, 54px) auto clamp(26px, 5vw, 48px);
}
.home-card-menu a {
  display: grid;
  grid-template-rows: minmax(180px, 1fr) auto;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.home-card-menu img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.home-card-menu span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 14px;
}
.home-card-menu a:hover,
.home-card-menu a:focus {
  color: var(--accent);
  outline: 2px solid rgba(31, 111, 235, 0.4);
  outline-offset: 3px;
}
.home-trust-footer {
  background: var(--bg);
  color: var(--muted);
}
.home-trust-inner {
  display: grid;
  gap: 10px;
  width: min(1040px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(217, 222, 232, 0.86);
}
.home-trust-copy,
.home-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  font-size: 12px;
  line-height: 1.5;
}
.home-trust-copy strong {
  color: var(--text);
  font-size: 13px;
}
.home-trust-links a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}
.home-trust-links a:hover,
.home-trust-links a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.home-trust-note {
  max-width: 760px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.record-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section,
.hero,
.page-title {
  scroll-margin-top: 90px;
}
.hero, .page-title {
  padding: 42px 0 24px;
}
.blog-hero {
  max-width: none;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.home-copy {
  min-width: 0;
  align-self: stretch;
}
.home-feature-stack {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.home-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.home-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.home-feature article,
.latest-list a,
.topic-card,
.series-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.home-feature h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}
.home-feature h2 a,
.post-item h3 a {
  color: inherit;
  text-decoration: none;
}
.home-feature p {
  margin: 10px 0 0;
  color: var(--muted);
}
.latest-list {
  display: grid;
  gap: 10px;
}
.home-latest-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.home-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.home-panel-heading span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.home-panel-heading a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.latest-list a {
  padding: 14px 16px;
}
.home-latest-panel .latest-list a {
  box-shadow: none;
}
.inline-empty {
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}
.latest-list span,
.topic-card span,
.series-card span,
.post-meta {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.latest-list strong,
.topic-card strong,
.series-card strong {
  display: block;
  margin-top: 6px;
}
.topic-lanes,
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.topic-card p,
.series-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f2f5f9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.hero h1, .page-title h1 {
  max-width: 880px;
  margin: 8px 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  word-break: keep-all;
}
.home-copy h1 {
  font-size: clamp(34px, 4.6vw, 56px);
}
.page-title h1 { font-size: clamp(32px, 5vw, 54px); }
.lead, .page-title p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}
.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  text-decoration: none;
  font-weight: 700;
}
.button.primary { background: var(--accent); color: white; border-color: var(--accent); }
.profit-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  max-width: 820px;
  margin-top: 28px;
}
.profit-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.profit-card span,
.profit-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.profit-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}
.profit-card small { margin-top: 8px; }
.notice-band {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #c7d7fe;
  border-radius: 8px;
  background: #eef4ff;
  color: #1e3a8a;
}
.home-hero-notice {
  margin-top: 18px;
}
.live-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.live-status-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.live-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.live-trail span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid #d6eadf;
  border-radius: 999px;
  background: #f0fdf4;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
}
.live-trail span + span::before {
  content: ">";
  margin-right: 8px;
  color: var(--muted);
}
.live-status-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
.live-status-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}
.live-status-head p {
  margin: 6px 0 0;
  color: var(--muted);
}
.live-status-head a {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}
.live-status-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.live-status-metrics div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}
.live-status-metrics span,
.live-position-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.live-status-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.live-position-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.live-position-list li {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}
.live-position-list strong {
  display: block;
  overflow-wrap: anywhere;
}
.filter-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.filter-panel label {
  display: grid;
  gap: 8px;
}
.filter-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.filter-panel select {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}
.section { margin-top: 34px; }
.article-visual {
  margin: 0 0 26px;
}
.article-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.article-visual figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.section-heading h1,
.section-heading h2 { margin: 0; font-size: 24px; }
.section-heading span { color: var(--muted); font-size: 14px; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.strategy-summary-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.metric-card, .card, .doc-grid article, .status-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.metric-card span, .status-list span { color: var(--muted); font-size: 13px; }
.metric-card strong { display: block; margin-top: 8px; font-size: 24px; }
.metric-card small { display: block; margin-top: 8px; color: var(--muted); }
.strategy-overview {
  display: grid;
  gap: 14px;
}
.strategy-explain {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.strategy-explain h3 {
  margin: 4px 0 10px;
  font-size: 24px;
}
.strategy-explain p {
  margin: 0;
  color: var(--muted);
}
.strategy-explain dl,
.card dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 12px;
  margin: 0;
  min-width: 0;
}
.strategy-explain dt,
.card dt {
  color: var(--muted);
  font-size: 13px;
}
.strategy-explain dd,
.card dd {
  margin: 0;
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.rule-grid,
.return-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.rule-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}
.rule-grid span {
  color: var(--muted);
  font-size: 13px;
}
.rule-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}
.rule-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.actual-link-section {
  margin-top: 18px;
}
.actual-link-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid #c7d7fe;
  border-radius: 8px;
  background: #eef4ff;
}
.actual-link-panel span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.actual-link-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}
.actual-link-panel p {
  margin: 6px 0 0;
  color: var(--muted);
}
.actual-link-panel.is-disabled {
  border-color: var(--line);
  background: #f2f5f9;
}
.positive { color: #b91c1c; }
.negative { color: #1d4ed8; }
.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.card-grid, .doc-grid, .status-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.card h2, .doc-grid h2 { margin-top: 0; font-size: 20px; }
.card p, .doc-grid p { color: var(--muted); }
.card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.card dl {
  display: grid;
  grid-template-columns: minmax(78px, auto) 1fr;
  gap: 6px 12px;
  margin: 14px 0 0;
}
.card dt {
  color: var(--muted);
  font-size: 13px;
}
.card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.neutral { color: var(--muted); }
.compact-metrics {
  max-width: 920px;
  margin-top: 30px;
}
.home-hero-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-top: 34px;
}
.home-hero-metrics .metric-card {
  min-height: 126px;
}
.home-hero-metrics .metric-card strong {
  font-size: 26px;
  line-height: 1.25;
}
.toc-list,
.post-list {
  display: grid;
  gap: 10px;
}
.toc-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.post-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.toc-list b,
.flow-strip b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  border-radius: 7px;
  background: var(--text);
  color: var(--surface);
  font-size: 12px;
}
.toc-list h3,
.post-item h3 {
  margin: 0;
  font-size: 18px;
}
.toc-list p,
.post-item p {
  margin: 8px 0 0;
  color: var(--muted);
}
.post-item span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.post-item .post-meta {
  margin-top: 6px;
}
.post-item .tag-list span {
  margin-bottom: 0;
  color: var(--muted);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f2f5f9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.status-draft,
.status-operating {
  background: #eef4ff;
  border-color: #c7d7fe;
  color: #1e40af;
}
.status-evidence,
.status-published {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
}
.evidence-card dl {
  margin-bottom: 12px;
}
.flow-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.flow-strip article {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.flow-strip strong,
.flow-strip span {
  display: block;
}
.flow-strip strong {
  margin-top: 14px;
}
.flow-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.step-row article {
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.step-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 7px;
  background: var(--text);
  color: var(--surface);
  font-size: 12px;
}
.step-row strong,
.step-row span {
  display: block;
}
.step-row span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}
.asset-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.asset-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr 1.4fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.asset-table > div:last-child { border-bottom: 0; }
.asset-head {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: #f2f5f9;
}
.risk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.risk-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}
.chart-shell {
  width: 100%;
  min-height: 360px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
canvas { width: 100%; height: 360px; display: block; }
.gap-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.gap-list div {
  padding: 10px 12px;
  border: 1px dashed #f59e0b;
  border-radius: 7px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--muted); font-size: 13px; background: #f2f5f9; }
td small { display: block; color: var(--muted); }
.pagination-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.pagination-controls button {
  min-width: 78px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.pagination-controls button:disabled {
  color: var(--muted);
  cursor: default;
  opacity: 0.48;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.about-cover {
  min-height: clamp(520px, 68vh, 720px);
}
.about-cover .about-hero-image {
  min-height: 360px;
}
.about-mission-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  padding-block: clamp(34px, 6vw, 76px);
  border-block: 1px solid var(--line);
  background: #fbfcff;
}
.about-mission-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
  word-break: keep-all;
}
.about-mission-panel > p {
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
}
.about-worlds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.about-world-card {
  display: grid;
  grid-template-rows: 320px auto;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.about-world-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-world-card > div {
  padding: 20px;
}
.about-world-card h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  word-break: keep-all;
}
.about-world-card p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}
.about-question-grid .section-heading {
  max-width: 820px;
}
.about-origin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.about-origin-copy {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.about-origin-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.22;
}
.about-origin-copy p:not(.eyebrow) {
  color: var(--muted);
}
.about-visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.05fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding-top: 34px;
}
.about-hero-copy {
  min-width: 0;
}
.about-hero-copy h1 {
  margin-bottom: 12px;
}
.about-hero-copy p:not(.eyebrow),
.about-world-card p:last-child,
.about-question-grid .section-heading span,
.step-row article span,
.about-origin-copy p:not(.eyebrow),
.about-publishing-grid .card p,
.about-closing-band span {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.about-hero-line {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
}
.about-hero-image,
.about-side-image,
.about-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.about-hero-image,
.about-side-image {
  margin: 0;
}
.about-hero-image img,
.about-side-image img,
.about-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-image {
  aspect-ratio: 16 / 10;
}
.about-image-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  align-items: stretch;
}
.about-image-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-width: 0;
}
.about-image-card:first-child {
  grid-template-rows: minmax(420px, 1fr) auto;
}
.about-image-card > div {
  padding: 18px;
}
.about-image-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}
.about-image-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.about-philosophy-band,
.about-closing-band {
  align-items: center;
}
.about-philosophy-band strong,
.about-closing-band strong {
  font-size: 22px;
  line-height: 1.3;
}
.about-publishing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 18px;
  align-items: stretch;
}
.about-publishing-grid > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.about-publishing-grid .card {
  flex: 1;
}
.about-side-image {
  height: 100%;
  min-height: 0;
}
.about-side-image img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}
.publisher-hero {
  padding-top: 54px;
}
.publisher-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}
.publisher-copy {
  min-width: 0;
}
.publisher-copy h1 {
  margin: 10px 0 10px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}
.publisher-tagline {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
}
.publisher-visual {
  position: relative;
}
.publisher-visual img {
  filter: saturate(0.82) contrast(0.96);
}
.publisher-visual figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  background: #fbfcff;
}
.publisher-metrics .metric-card strong {
  font-size: 21px;
}
.publisher-area-grid,
.digital-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.publisher-area-card {
  min-height: 168px;
}
.publication-list {
  display: grid;
  gap: 10px;
}
.publication-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.publication-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.publication-item p {
  margin: 8px 0 0;
  color: var(--muted);
}
.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.product-title-row h2 {
  margin: 0;
}
.product-action-row,
.research-archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.product-action-row span,
.research-archive-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfcff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.contact-panel {
  display: grid;
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid #c7d7fe;
  border-radius: 8px;
  background: #eef4ff;
  color: #1e3a8a;
}
.contact-card h3 {
  margin: 0;
  font-size: 24px;
}
.contact-card p {
  margin: 8px 0 0;
}
.contact-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.contact-card li {
  padding: 6px 10px;
  border: 1px solid #c7d7fe;
  border-radius: 7px;
  background: #ffffff;
  color: #1e40af;
  font-size: 13px;
  font-weight: 800;
}
.button.is-disabled {
  cursor: default;
  opacity: 0.72;
}
.research-note-list .post-item {
  grid-template-columns: minmax(0, 1fr) auto;
}
.mobile-board-home {
  display: none;
}
.mobile-board {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mobile-board-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
}
.mobile-board-heading span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.mobile-board-heading h2 {
  margin: 2px 0 0;
  font-size: 17px;
  line-height: 1.25;
}
.mobile-board-heading a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.mobile-board-list {
  display: grid;
}
.mobile-board-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.mobile-board-row:last-child {
  border-bottom: 0;
}
.mobile-board-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--text);
  color: var(--surface);
  font-size: 12px;
}
.mobile-board-row span {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}
.mobile-board-row strong,
.mobile-board-row small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}
.mobile-board-row strong {
  font-size: 14px;
  line-height: 1.35;
}
.mobile-board-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}
.mobile-result-row em {
  flex: 0 0 auto;
  max-width: 112px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}
@media (max-width: 980px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .global-menu {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .topic-lanes,
  .series-grid,
  .flow-strip,
  .strategy-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  main,
  .section,
  .page-title,
  .hero,
  .card,
  .metric-card,
  .post-item,
  .toc-list article,
  .blog-submenu-group,
  .about-world-card,
  .about-origin-copy,
  .strategy-explain,
  .chart-shell,
  .table-wrap,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }
  main {
    width: 100%;
  }
  .page-title,
  .section {
    overflow-wrap: break-word;
  }
  .about-mission-panel,
  .about-origin-grid {
    grid-template-columns: 1fr;
  }
  .about-mission-panel {
    gap: 14px;
    padding-block: 30px;
  }
  .about-mission-panel h2 {
    font-size: 28px;
  }
  .about-mission-panel > p {
    font-size: 17px;
  }
  .about-worlds {
    grid-template-columns: 1fr;
  }
  .about-world-card {
    grid-template-rows: 260px auto;
  }

  .about-visual-hero,
  .about-image-pair,
  .about-publishing-grid {
    grid-template-columns: 1fr;
  }
  .about-cover {
    min-height: auto;
  }
  .about-cover .about-hero-image {
    min-height: 260px;
  }
  .about-visual-hero {
    gap: 16px;
    padding-top: 20px;
  }
  .about-hero-line {
    font-size: 23px;
  }
  .about-image-card,
  .about-image-card:first-child {
    grid-template-rows: minmax(240px, auto) auto;
  }
  .about-philosophy-band strong,
  .about-closing-band strong {
    font-size: 19px;
  }
  .about-side-image {
    max-height: 420px;
  }

  main {
    padding-top: 14px;
  }
  .publisher-hero {
    padding-top: 22px;
  }
  .publisher-hero-grid,
  .publisher-area-grid,
  .digital-product-grid,
  .publication-item,
  .contact-card,
  .research-note-list .post-item {
    grid-template-columns: 1fr;
  }
  .publisher-hero-grid {
    gap: 18px;
  }
  .publisher-copy h1 {
    font-size: 44px;
  }
  .publisher-tagline {
    font-size: 22px;
  }
  .contact-card {
    display: block;
  }
  .contact-card .button {
    width: 100%;
    margin-top: 16px;
  }
  .product-title-row {
    display: grid;
  }
  .mobile-board-home {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
  }
  .blog-hero {
    padding-top: 18px;
  }
  .home-feature-stack .home-visual {
    display: none;
  }
  .hero h1,
  .page-title h1,
  .home-copy h1 {
    font-size: 32px;
    line-height: 1.12;
  }
  .lead,
  .page-title p {
    font-size: 16px;
  }
  .site-header, .site-footer { flex-direction: column; align-items: flex-start; }
  .bank-style-header { padding-top: 14px; padding-bottom: 12px; }
  .global-menu {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
    overflow: visible;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .menu-item {
    flex: 0 0 auto;
  }
  .menu-item.has-panel.is-open {
    flex-basis: 100%;
  }
  .menu-link {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--surface);
    font-size: 14px;
  }
  .menu-item.has-panel.is-open .menu-link {
    width: 100%;
  }
  .menu-panel {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 6px;
    border-top-width: 1px;
    border-radius: 7px;
    box-shadow: none;
  }
  .notice-band, .section-heading { display: block; }
  .home-hero-grid,
  .topic-lanes,
  .series-grid,
  .live-status-grid,
  .live-status-metrics,
  .live-position-list {
    grid-template-columns: 1fr;
  }
  .filter-panel { grid-template-columns: 1fr; }
  .strategy-summary-grid { grid-template-columns: 1fr; }
  .profit-summary, .step-row { grid-template-columns: 1fr; }
  .strategy-explain { grid-template-columns: 1fr; }
  .strategy-explain dl,
  .card dl {
    grid-template-columns: 1fr;
  }
  .actual-link-panel {
    display: block;
  }
  .actual-link-panel .button {
    width: 100%;
    margin-top: 14px;
  }
  .asset-table > div { grid-template-columns: 1fr; }
  .table-wrap {
    overflow-x: visible;
  }
  table {
    min-width: 0;
  }
  .table-wrap thead {
    display: none;
  }
  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }
  .table-wrap tr {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }
  .table-wrap td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    padding: 6px 0;
    border-bottom: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }
  .table-wrap td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: left;
  }
  .table-wrap td[colspan] {
    display: block;
    text-align: left;
  }
  .table-wrap td[colspan]::before {
    content: none;
  }
  .toc-list article,
  .post-item {
    grid-template-columns: 1fr;
  }
  .post-item time,
  .post-item .post-date,
  .post-item > time,
  .post-item > span:last-child {
    justify-self: start;
  }
  .flow-strip {
    grid-template-columns: 1fr;
  }
  .home-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .home-hero-metrics .metric-card {
    min-height: 108px;
    padding: 14px;
  }
  .home-hero-metrics .metric-card strong {
    font-size: 18px;
    line-height: 1.25;
    word-break: keep-all;
  }
  .home-hero-metrics .metric-card small {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .global-menu,
  .home-card-menu,
  .home-trust-inner,
  .blog-submenu-tree,
  .card-grid,
  .doc-grid,
  .status-list,
  .metric-grid,
  .two-column {
    width: 100%;
    max-width: 100%;
  }
  .home-card-menu {
    grid-template-columns: 1fr;
  }
  .home-card-menu a {
    min-height: 54px;
    font-size: 16px;
  }
  .record-link-grid {
    grid-template-columns: 1fr;
  }
}
.auto-writing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.auto-writing-copy {
  min-width: 0;
}
.auto-writing-copy h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.auto-writing-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.auto-writing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.auto-writing-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.auto-writing-steps li {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}
.auto-writing-steps span,
.auto-writing-steps strong,
.auto-writing-steps p {
  display: block;
}
.auto-writing-steps span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.auto-writing-steps strong {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.3;
  word-break: keep-all;
}
.auto-writing-steps p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.post-item > div {
  min-width: 0;
}
.post-item h3,
.post-item p {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.blog-submenu-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.blog-submenu-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.blog-submenu-note {
  margin: -6px 0 14px;
  color: var(--muted);
  font-weight: 800;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.blog-submenu-group h3 {
  margin: 6px 0 14px;
  font-size: 24px;
  line-height: 1.25;
  word-break: keep-all;
}
.blog-submenu-branch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}
.blog-submenu-branch a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  background: #f7f9fd;
  width: 100%;
  word-break: keep-all;
  white-space: normal;
}
.blog-submenu-branch a:hover,
.blog-submenu-branch a:focus {
  border-color: var(--accent);
  color: var(--accent);
  background: #eef4ff;
}
.auto-record-section .section-heading {
  align-items: start;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 760px) {
  .auto-writing-panel,
  .auto-writing-steps,
  .blog-submenu-tree {
    grid-template-columns: 1fr;
  }
  .auto-writing-panel {
    padding: 18px;
  }
  .auto-writing-actions .button {
    width: 100%;
  }
}
.wiki-reading-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.26fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}
.wiki-sidebar {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 116px);
  overflow: auto;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}
.wiki-sidebar strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
}
.wiki-sidebar nav {
  display: grid;
  gap: 6px;
}
.wiki-sidebar a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.wiki-sidebar a:hover,
.wiki-sidebar a:focus {
  background: #eef4ff;
  color: var(--accent);
}
.wiki-reading-content {
  min-width: 0;
}
.wiki-reading-content .section:first-child {
  padding-top: 0;
}
@media (min-width: 761px) {
  .wiki-inline-toc {
    display: none;
  }
}
@media (max-width: 760px) {
  .wiki-reading-layout,
  .wiki-reading-content,
  .wiki-sidebar {
    min-width: 0;
    max-width: 100%;
  }
  .wiki-reading-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wiki-sidebar {
    position: static;
    max-height: none;
    padding: 14px;
  }
  .wiki-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wiki-inline-toc {
    display: block;
  }
}
@media (max-width: 420px) {
  .wiki-sidebar nav {
    grid-template-columns: 1fr;
  }
}

.home-publisher-page .home-landing {
  min-height: auto;
}
.home-publisher-hero,
.home-entry-menu,
.home-publishing-section,
.home-field-section,
.home-editorial-note {
  width: min(1120px, calc(100vw - 36px));
  margin-right: auto;
  margin-left: auto;
}
.home-publisher-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) 0 clamp(28px, 5vw, 58px);
}
.home-publisher-copy {
  min-width: 0;
}
.home-publisher-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
}
.home-publisher-line {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(22px, 3.1vw, 36px);
  font-weight: 900;
  line-height: 1.28;
  word-break: keep-all;
}
.home-publisher-copy p:not(.eyebrow):not(.home-publisher-line) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.home-book-visual {
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.home-book-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.home-book-visual figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: #fbfcff;
}
.home-entry-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}
.home-entry-menu a {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 122px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.home-entry-menu span,
.home-field-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
.home-entry-menu strong {
  align-self: end;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.3;
  word-break: keep-all;
}
.home-entry-menu a:hover,
.home-entry-menu a:focus {
  border-color: rgba(31, 111, 235, 0.48);
  outline: 2px solid rgba(31, 111, 235, 0.22);
  outline-offset: 3px;
}
.home-publishing-section,
.home-field-section,
.home-editorial-note {
  margin-top: 42px;
}
.home-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.home-field-grid article {
  display: grid;
  gap: 9px;
  min-width: 0;
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.home-field-grid strong {
  font-size: 23px;
  line-height: 1.25;
  word-break: keep-all;
}
.home-field-grid p {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.home-editorial-note {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}
.home-editorial-note h2 {
  margin: 6px 0 10px;
  font-size: 28px;
  line-height: 1.24;
}
.home-editorial-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .home-publisher-hero,
  .home-entry-menu,
  .home-field-grid,
  .home-editorial-note {
    grid-template-columns: 1fr;
  }
  .home-publisher-hero,
  .home-entry-menu,
  .home-publishing-section,
  .home-field-section,
  .home-editorial-note {
    width: min(100%, calc(100vw - 28px));
  }
  .home-publisher-hero {
    padding-top: 36px;
    gap: 20px;
  }
  .home-publisher-copy h1 {
    font-size: 42px;
  }
  .home-publisher-line {
    font-size: 23px;
  }
  .home-publisher-copy p:not(.eyebrow):not(.home-publisher-line) {
    font-size: 16px;
  }
  .home-book-visual img {
    aspect-ratio: 16 / 10;
  }
  .home-entry-menu a,
  .home-field-grid article {
    min-height: auto;
  }
  .home-editorial-note {
    padding: 18px;
  }
}
@media (max-width: 760px) {
  .home-book-visual {
    width: min(82vw, 320px);
    margin-right: auto;
    margin-left: auto;
  }
  .home-book-visual img {
    max-height: 220px;
    aspect-ratio: 4 / 3;
    object-position: center;
  }
  .about-cover .about-hero-image {
    min-height: 0;
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .about-world-card {
    grid-template-rows: minmax(160px, 200px) auto;
  }
  .about-image-card,
  .about-image-card:first-child {
    grid-template-rows: minmax(170px, 210px) auto;
  }
  .about-side-image {
    max-height: 240px;
  }
}
@media (max-width: 420px) {
  .home-book-visual {
    width: min(78vw, 280px);
  }
  .home-book-visual img,
  .about-cover .about-hero-image,
  .about-side-image {
    max-height: 190px;
  }
  .about-world-card {
    grid-template-rows: minmax(145px, 180px) auto;
  }
  .about-image-card,
  .about-image-card:first-child {
    grid-template-rows: minmax(150px, 185px) auto;
  }
}
@media (min-width: 761px) {
  .home-publisher-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  }
  .home-book-visual {
    width: min(100%, 340px);
    justify-self: end;
  }
  .home-book-visual img {
    max-height: 390px;
  }
  .about-cover {
    min-height: clamp(420px, 56vh, 560px);
  }
  .about-cover .about-hero-image {
    min-height: 280px;
    max-height: 360px;
  }
  .about-visual-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  }
  .about-world-card {
    grid-template-rows: 240px auto;
  }
  .about-image-card {
    grid-template-rows: minmax(220px, 260px) auto;
  }
  .about-image-card:first-child {
    grid-template-rows: minmax(280px, 330px) auto;
  }
  .about-side-image {
    max-height: 380px;
  }
}