:root {
  --ink: #08111d;
  --ink-2: #0e1a29;
  --navy: #13243a;
  --gold: #c6a45a;
  --gold-light: #ead08f;
  --paper: #f4f1e9;
  --white: #fff;
  --muted: #667282;
  --line: #d9d6cc;
  --max: 1180px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: #fff; padding: 8px 12px; }
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  color: #fff;
  background: rgba(8, 17, 29, .96);
  border-bottom: 1px solid rgba(198, 164, 90, .28);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.2; white-space: nowrap; }
.brand b { color: var(--gold-light); font: 700 1rem/1.15 var(--serif); letter-spacing: .08em; }
.brand small { margin-top: 5px; color: #9eabba; font-size: .68rem; letter-spacing: .08em; }
.global-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.global-nav a { color: #c6ced8; text-decoration: none; font-size: .8rem; }
.global-nav a:hover, .global-nav a[aria-current="page"] { color: var(--gold-light); }
.header-consult { padding: 9px 15px; border: 1px solid var(--gold); color: var(--gold-light) !important; }
.nav-toggle { display: none; margin-left: auto; color: #fff; background: transparent; border: 1px solid #465369; width: 44px; height: 40px; font-size: 1.1rem; }

.media-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 22%, rgba(198, 164, 90, .18), transparent 22rem),
    linear-gradient(120deg, #07101b 0%, #0e1d30 64%, #07101b 100%);
  border-bottom: 1px solid #6e592e;
}
.media-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -210px;
  bottom: -420px;
  border: 1px solid rgba(234, 208, 143, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(234, 208, 143, .025), 0 0 0 140px rgba(234, 208, 143, .02);
}
.hero-grid { position: relative; z-index: 1; min-height: 550px; padding: 86px 0 70px; display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 78px; align-items: center; }
.eyebrow { display: block; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.media-hero h1 { max-width: 790px; margin: 18px 0 24px; font: 700 clamp(2.5rem, 5.3vw, 4.8rem)/1.32 var(--serif); letter-spacing: .03em; }
.media-hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 700px; margin: 0; color: #bac4cf; font-size: 1.02rem; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 11px 20px; text-decoration: none; font-weight: 700; font-size: .86rem; line-height: 1.45; }
.button-gold { color: #0a121d; background: linear-gradient(135deg, var(--gold-light), #b38c3e); }
.button-outline { color: #f4e4b8; border: 1px solid #806b3e; background: rgba(255,255,255,.025); }
.button:hover { transform: translateY(-1px); }
.hero-map { position: relative; padding: 26px; border: 1px solid #415069; background: rgba(6, 12, 21, .66); }
.hero-map::before { content: "CONTENT MAP"; display: block; margin-bottom: 22px; color: #8190a3; font-size: .65rem; letter-spacing: .18em; }
.map-row { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid #2a394d; }
.map-row b { color: var(--gold-light); font: 600 .76rem var(--serif); }
.map-row span { color: #bec7d2; font-size: .78rem; }
.map-arrow { padding: 4px 0; color: #7f8da0; text-align: center; }

.trust-strip { color: #ced5dd; background: #0a1421; border-bottom: 1px solid #263348; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { min-height: 92px; padding: 20px 22px; border-right: 1px solid #28364a; display: flex; flex-direction: column; justify-content: center; }
.trust-grid div:first-child { border-left: 1px solid #28364a; }
.trust-grid strong { color: var(--gold-light); font: 600 .94rem var(--serif); }
.trust-grid span { color: #8794a4; font-size: .72rem; }

.section { padding: 92px 0; }
.section-white { background: #fff; }
.section-dark { color: #fff; background: var(--ink); }
.section-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { margin: 10px 0 0; font: 700 clamp(2rem, 3.7vw, 3.2rem)/1.45 var(--serif); letter-spacing: .02em; }
.section-heading p { margin: 0; color: var(--muted); }
.section-dark .section-heading p { color: #9ca8b5; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 265px; padding: 30px; color: inherit; text-decoration: none; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease, transform .2s ease; }
.feature-card:hover { position: relative; z-index: 1; background: #fbf8ef; transform: translateY(-3px); }
.feature-card .number { color: #a98a47; font: 600 .72rem var(--serif); letter-spacing: .12em; }
.feature-card h3 { margin: 18px 0 12px; font: 700 1.3rem/1.55 var(--serif); }
.feature-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.feature-card .link-label { display: inline-block; margin-top: 18px; color: #846b35; font-weight: 700; font-size: .78rem; }

.intent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.intent-card { min-height: 250px; padding: 26px; border: 1px solid #344158; background: #0c1725; }
.intent-card small { color: #7f8da0; font-size: .66rem; letter-spacing: .12em; }
.intent-card h3 { color: var(--gold-light); margin: 14px 0 10px; font: 600 1.13rem/1.55 var(--serif); }
.intent-card p { color: #9eabb8; margin: 0; font-size: .8rem; }
.intent-card ul { margin: 14px 0 0; padding-left: 1.1rem; color: #c2cad3; font-size: .76rem; }

.article-list { border-top: 1px solid #cbc8bd; }
.article-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center; padding: 27px 8px; text-decoration: none; border-bottom: 1px solid #cbc8bd; }
.article-row:hover h3 { color: #8b6e31; }
.article-row .tag { color: #8f7440; font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.article-row h3 { margin: 0 0 6px; font: 700 1.18rem/1.55 var(--serif); }
.article-row p { margin: 0; color: var(--muted); font-size: .82rem; }
.article-row .arrow { color: #95783c; font-size: 1.3rem; }

.conversion-band { color: #fff; background: linear-gradient(120deg, #13243a, #07111d); border-block: 1px solid #8b713a; }
.conversion-inner { padding-block: 54px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.conversion-inner h2 { margin: 0 0 8px; color: var(--gold-light); font: 700 clamp(1.6rem, 3vw, 2.5rem)/1.5 var(--serif); }
.conversion-inner p { margin: 0; color: #aeb9c6; }

.breadcrumb { color: #687586; background: #e9e6dd; border-bottom: 1px solid #d5d1c7; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 11px 0; font-size: .72rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #9aa1a9; }
.breadcrumb a { text-decoration: none; }

.article-hero { color: #fff; background: linear-gradient(135deg, #08111d, #142942); }
.article-hero-inner { max-width: 960px; padding-block: 76px 72px; }
.article-hero h1 { margin: 18px 0 22px; font: 700 clamp(2.25rem, 5vw, 4rem)/1.42 var(--serif); }
.article-hero .summary { max-width: 820px; margin: 0; color: #c0cad5; font-size: 1.02rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 22px; color: #93a0af; font-size: .72rem; }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: 70px; align-items: start; }
.article-body { min-width: 0; }
.article-body > p:first-of-type { font-size: 1.06rem; }
.article-body h2 { margin: 64px 0 20px; padding-top: 4px; font: 700 1.9rem/1.55 var(--serif); letter-spacing: .02em; }
.article-body h2::before { content: ""; display: block; width: 42px; height: 2px; margin-bottom: 17px; background: var(--gold); }
.article-body h3 { margin: 38px 0 12px; font: 700 1.28rem/1.6 var(--serif); }
.article-body p, .article-body li { color: #283545; }
.article-body a { color: #765d2b; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-body li + li { margin-top: 8px; }
.lead-box, .note-box, .check-box { margin: 32px 0; padding: 25px 28px; border: 1px solid #cfc8b7; background: #fbf8ef; }
.lead-box strong, .note-box strong, .check-box strong { display: block; margin-bottom: 8px; color: #745d31; font: 700 1.08rem var(--serif); }
.note-box { border-color: #b8c5d2; background: #edf2f6; }
.note-box strong { color: #263d56; }
.check-box ul { margin: 10px 0 0; }

.comparison-table-wrap { margin: 30px 0; overflow-x: auto; border: 1px solid #cbc7bd; }
.comparison-table { width: 100%; min-width: 680px; border-collapse: collapse; background: #fff; font-size: .8rem; }
.comparison-table th, .comparison-table td { padding: 15px 14px; border-bottom: 1px solid #ddd9cf; border-right: 1px solid #ddd9cf; text-align: left; vertical-align: top; }
.comparison-table th { color: #fff; background: #13243a; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }

.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 30px 0; border-top: 1px solid #ccc5b5; border-left: 1px solid #ccc5b5; }
.flow-step { min-height: 190px; padding: 22px; border-right: 1px solid #ccc5b5; border-bottom: 1px solid #ccc5b5; background: #fff; }
.flow-step b { color: #9d7d39; font: 700 .72rem var(--serif); }
.flow-step h3 { margin: 12px 0 8px; font-size: 1.03rem; }
.flow-step p { margin: 0; font-size: .76rem; }

.sidebar { position: sticky; top: 100px; }
.toc, .sidebar-cta { padding: 24px; border: 1px solid #d1cdc3; background: #fff; }
.toc b { font: 700 .95rem var(--serif); }
.toc ol { margin: 14px 0 0; padding-left: 1.15rem; color: #4c5a6a; font-size: .76rem; }
.toc li + li { margin-top: 7px; }
.toc a { text-decoration: none; }
.sidebar-cta { margin-top: 14px; color: #fff; background: #102136; border-color: #394a60; }
.sidebar-cta small { color: var(--gold); font-size: .66rem; letter-spacing: .13em; }
.sidebar-cta h2 { margin: 9px 0 10px; color: var(--gold-light); font: 700 1.25rem/1.55 var(--serif); }
.sidebar-cta p { color: #aeb9c5; font-size: .78rem; }
.sidebar-cta .button { width: 100%; margin-top: 8px; }

.related { margin-top: 70px; padding-top: 34px; border-top: 1px solid #cec9bd; }
.related h2 { margin: 0 0 22px; font: 700 1.55rem var(--serif); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.related-card { padding: 20px; text-decoration: none; border: 1px solid #d1cdc3; background: #fff; }
.related-card small { color: #8b7139; font-size: .65rem; }
.related-card b { display: block; margin-top: 6px; font: 700 .98rem/1.55 var(--serif); }

.faq-list { margin-top: 26px; border-top: 1px solid #c9c5bc; }
.faq-list details { border-bottom: 1px solid #c9c5bc; }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 42px 20px 2px; position: relative; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; color: #8f7339; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 2px 20px; }

.site-footer { color: #909cab; background: #060d16; border-top: 1px solid #273549; }
.footer-grid { padding: 44px 0 28px; display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 50px; }
.footer-grid h2 { color: var(--gold-light); font: 700 1.02rem var(--serif); }
.footer-grid p, .footer-grid a { color: #8f9baa; font-size: .74rem; }
.footer-grid a { display: block; margin: 5px 0; text-decoration: none; }
.copyright { padding: 16px 0 22px; border-top: 1px solid #1b2737; font-size: .65rem; }

@media (max-width: 980px) {
  .global-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; padding: 20px 24px 30px; align-items: stretch; flex-direction: column; background: #08111d; border-bottom: 1px solid #6e592e; }
  .global-nav.is-open { display: flex; }
  .global-nav a { padding: 8px 0; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 70px 0; gap: 42px; }
  .hero-map { max-width: 650px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 1px solid #28364a; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .intent-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; gap: 54px; }
  .sidebar { position: static; }
  .toc { display: none; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .header-inner { min-height: 64px; }
  .brand b { font-size: .86rem; }
  .brand small { font-size: .6rem; }
  .global-nav { top: 64px; }
  .media-hero h1 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .media-hero .hero-grid { padding: 54px 0; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div, .trust-grid div:nth-child(3) { border-left: 1px solid #28364a; }
  .section { padding: 68px 0; }
  .feature-grid, .intent-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .article-row { grid-template-columns: 1fr auto; gap: 10px 18px; }
  .article-row .tag { grid-column: 1 / 3; }
  .conversion-inner { grid-template-columns: 1fr; }
  .article-hero-inner { padding-block: 56px; }
  .article-hero h1 { font-size: 2.2rem; }
  .article-body h2 { font-size: 1.55rem; }
  .lead-box, .note-box, .check-box { padding: 20px; }
  .flow-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .feature-card { transition: none; }
}


/* v2 — editorial depth, conversion and generated visual */
.media-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 12, 21, .98) 0%, rgba(7, 16, 28, .9) 47%, rgba(7, 16, 28, .44) 100%),
    linear-gradient(180deg, rgba(5, 12, 21, .1), rgba(5, 12, 21, .88)),
    url('/web/assets/media/hero-flow-v2.webp');
  background-position: center, center, center;
  background-size: cover;
}
.media-hero::after { opacity: .45; }
.hero-grid { grid-template-columns: minmax(0, 1.18fr) minmax(310px, .72fr); }
.hero-map {
  background: rgba(5, 12, 21, .76);
  border-color: rgba(234, 208, 143, .34);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(18px);
}
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin: 26px 0 0; color: #aab6c4; font-size: .73rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198, 164, 90, .1); }

.purpose-nav { position: relative; z-index: 3; margin-top: -27px; }
.purpose-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid #d2cdc0; box-shadow: 0 20px 52px rgba(10, 19, 31, .12); }
.purpose-link { min-height: 112px; padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; text-decoration: none; border-right: 1px solid #ded9cd; }
.purpose-link:last-child { border-right: 0; }
.purpose-link small { color: #9a7a37; font-size: .66rem; font-weight: 700; letter-spacing: .14em; }
.purpose-link b { margin-top: 5px; font: 700 1rem/1.5 var(--serif); }
.purpose-link span { color: #6d7886; font-size: .72rem; }
.purpose-link:hover { background: #fbf7ed; }

.signal-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: stretch; }
.signal-panel { padding: 38px; color: #fff; background: linear-gradient(145deg, #0d1b2c, #08111d); border: 1px solid #304158; }
.signal-panel h2 { margin: 10px 0 16px; font: 700 clamp(1.8rem, 3vw, 2.65rem)/1.5 var(--serif); }
.signal-panel > p { color: #a8b4c2; }
.signal-flow { display: grid; gap: 10px; margin-top: 28px; }
.signal-flow div { display: grid; grid-template-columns: 72px 1fr; gap: 15px; align-items: center; padding: 15px 17px; border: 1px solid #314158; background: rgba(255,255,255,.025); }
.signal-flow b { color: var(--gold-light); font: 700 .72rem var(--serif); }
.signal-flow span { color: #c0cad5; font-size: .78rem; }
.evidence-list { display: grid; gap: 0; border-top: 1px solid #ccc7bb; }
.evidence-item { padding: 24px 4px; display: grid; grid-template-columns: 48px 1fr; gap: 18px; border-bottom: 1px solid #ccc7bb; }
.evidence-item > span { width: 38px; height: 38px; display: grid; place-items: center; color: #765e2d; border: 1px solid #bca56e; border-radius: 50%; font: 700 .72rem var(--serif); }
.evidence-item h3 { margin: 0 0 5px; font: 700 1.08rem/1.5 var(--serif); }
.evidence-item p { margin: 0; color: var(--muted); font-size: .8rem; }

.editorial-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; padding: 44px; color: #fff; background: #0b1726; border: 1px solid #34465e; }
.editorial-box h2 { margin: 9px 0 14px; color: var(--gold-light); font: 700 2rem/1.5 var(--serif); }
.editorial-box p { margin: 0; color: #aeb9c6; }
.editorial-checks { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #3a4b62; border-left: 1px solid #3a4b62; }
.editorial-checks div { min-height: 108px; padding: 18px; border-right: 1px solid #3a4b62; border-bottom: 1px solid #3a4b62; }
.editorial-checks b { display: block; color: #e0c57d; font: 700 .92rem var(--serif); }
.editorial-checks span { display: block; margin-top: 5px; color: #8f9cab; font-size: .7rem; }

.section-heading .heading-link { align-self: end; justify-self: end; color: #765e2c; font-size: .78rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-row { transition: background .18s ease, padding .18s ease; }
.article-row:hover { padding-inline: 16px; background: rgba(255,255,255,.55); }
.article-row .meta-line { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; color: #8a94a0; font-size: .67rem; }
.article-row .meta-line span + span::before { content: "·"; margin-right: 12px; }

.article-hero { position: relative; overflow: hidden; isolation: isolate; }
.article-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,15,26,.98), rgba(13,29,48,.91) 58%, rgba(10,22,37,.62)), url('/web/assets/media/hero-flow-v2.webp') center 52% / cover;
}
.article-hero::after { content: ""; position: absolute; z-index: -1; width: 500px; height: 500px; right: -270px; bottom: -370px; border: 1px solid rgba(234,208,143,.2); border-radius: 50%; box-shadow: 0 0 0 68px rgba(234,208,143,.02), 0 0 0 136px rgba(234,208,143,.018); }
.article-hero-inner { position: relative; }
.article-body .source-note { margin-top: 34px; padding-top: 18px; border-top: 1px solid #d1ccc0; color: #707b87; font-size: .72rem; }
.article-body .source-note a { color: #54677a; }

.trust-card { margin: 32px 0; padding: 27px 29px; color: #fff; background: #0d1b2c; border-left: 3px solid var(--gold); }
.trust-card small { color: var(--gold); font-size: .65rem; letter-spacing: .14em; }
.trust-card h3 { margin: 7px 0 8px; color: var(--gold-light); }
.trust-card p { margin: 0; color: #afbbc7; }

.mobile-consult { display: none; }
.reading-progress { position: fixed; z-index: 60; left: 0; top: 0; width: 0; height: 2px; background: linear-gradient(90deg, #b68e3b, #f0d895); pointer-events: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .purpose-link:nth-child(2) { border-right: 0; }
  .purpose-link:nth-child(-n+2) { border-bottom: 1px solid #ded9cd; }
  .signal-grid, .editorial-box { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .media-hero { background-position: center, center, 63% center; }
  .hero-map { padding: 20px; }
  .hero-proof { gap: 10px 16px; }
  .purpose-nav { margin-top: -14px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-link, .purpose-link:nth-child(2) { min-height: 88px; border-right: 0; border-bottom: 1px solid #ded9cd; }
  .purpose-link:last-child { border-bottom: 0; }
  .signal-panel, .editorial-box { padding: 26px 22px; }
  .signal-flow div { grid-template-columns: 64px 1fr; }
  .editorial-checks { grid-template-columns: 1fr; }
  .article-row:hover { padding-inline: 8px; }
  .mobile-consult { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; height: 68px; display: grid; grid-template-columns: .9fr 1.1fr; color: #fff; background: #08111d; border-top: 1px solid #5f4d2e; box-shadow: 0 -10px 30px rgba(0,0,0,.2); }
  .mobile-consult a { display: grid; place-items: center; text-decoration: none; font-size: .78rem; font-weight: 700; }
  .mobile-consult a:first-child { color: #d8c68f; }
  .mobile-consult a:last-child { color: #09111b; background: linear-gradient(135deg, #edd38e, #b88f3e); }
}
