/* Brand tokens. Single source of truth for colour across every page.
   Base palette is docs/CONTENT-RULES.md: navy #071E45, blue #1265E8, orange #F5A623.
   The blue matches the illustrations in assets/images (hue ~215).
   Do not introduce page-specific colour palettes; add a token here instead. */
:root {
  /* Core brand */
  --brand-navy: #071e45;
  --brand-navy-deep: #051734;
  --brand-navy-darkest: #041129;
  --brand-blue: #1265e8;          /* accents, links, fills, icons — AA 5.18:1 on white */
  --brand-blue-dark: #0d4fb8;     /* hover / gradient depth */
  --brand-blue-bright: #3185f6;   /* highlights, gradient ends */
  --brand-orange: #f5a623;
  --brand-orange-dark: #d88719;

  /* Surfaces */
  --pale-blue: #eff5ff;
  --pale-blue-2: #f7faff;
  --paper: #f7f9fc;
  --white: #ffffff;

  /* Text */
  --ink: #071e45;
  --text-body: #1a3355;
  --muted: #5a6b85;
  --on-dark: #d6e2f2;
  --on-dark-muted: #aab9d0;

  /* Lines & accents */
  --line: #dbe4f0;
  --line-soft: #eaf0f8;
  --cyan: #8eafe3;
  --green: #0c7a62;
  --alert: #e0655f;

  /* Legacy aliases — kept so older rules resolve to brand colours.
     Prefer the tokens above in new code. */
  --navy: var(--brand-navy);
  --blue: var(--brand-blue);
  --blue-soft: var(--pale-blue);
  --orange: var(--brand-orange);
  --orange-dark: var(--brand-orange-dark);

  /* Blue clears AA at small sizes on its own, so text and fills share one
     token. Kept as aliases so existing rules keep resolving. */
  --brand-teal: var(--brand-blue);
  --brand-teal-text: var(--brand-blue);
  --brand-teal-dark: var(--brand-blue-dark);
  --brand-teal-bright: var(--brand-blue-bright);
  --pale-teal: var(--pale-blue);

  --shadow: 0 20px 48px rgba(7, 30, 69, .10);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
h1, h2 {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}
@supports (word-break: auto-phrase) {
  h1, h2 { word-break: auto-phrase; }
}
.heading-line { display: inline-block; white-space: nowrap; }
body.nav-open { overflow: hidden; }
.nav-actions, .mobile-label { display: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.skip-link { position: fixed; top: -80px; left: 12px; z-index: 999; background: var(--ink); color: white; padding: 10px 16px; }
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 68px 0; }
.section-dark { background: var(--ink); color: white; }
.section-blue { background: var(--blue-soft); }
.eyebrow { margin: 0 0 18px; color: var(--brand-teal-text); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-dark .eyebrow { color: var(--cyan); }
.section-title { margin: 0; max-width: 800px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.22; letter-spacing: -.04em; }
.section-lead { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-lead { color: #c0c8d5; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--brand-teal-text); font-size: .85rem; font-weight: 800; }
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.caption { color: var(--muted); font-size: .875rem; }
.muted { color: var(--muted); }

/* One header for every page. Markup comes from app.js; do not add
   per-page .site-header / .logo / .global-nav overrides. */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(14px); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--brand-navy); font-size: 1.25rem; font-weight: 900; letter-spacing: -.04em; white-space: nowrap; }
.logo-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50% 50% 50% 14%; color: white; background: var(--brand-blue); font-size: 1rem; font-weight: 900; }
.global-nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.global-nav a { position: relative; padding: 8px 0; font-size: .9rem; font-weight: 700; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 1px; height: 2px; background: var(--brand-blue); transition: right .2s ease; }
.global-nav a:hover::after, .global-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: .2s ease; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 12px 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; line-height: 1.3; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
/* Navy label, not white: white on brand orange is 2.03:1 and fails WCAG AA.
   Navy on orange is 8.09:1. */
.button-primary { color: var(--brand-navy); background: var(--orange); box-shadow: 0 12px 24px rgba(245,166,35,.22); }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { color: var(--brand-blue); border-color: var(--brand-blue); background: white; }
.button-dark { color: white; background: var(--ink); }
.button-ghost { color: white; border-color: rgba(255,255,255,.38); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-teal-text); font-weight: 800; }
.guide-long-title { font-size: 1.1rem !important; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; color: white; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .27; background-image: linear-gradient(rgba(123,226,246,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(123,226,246,.12) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to right, black, transparent 80%); }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0,1.18fr) minmax(330px,.82fr); align-items: center; gap: 70px; min-height: 680px; padding: 88px 0 92px; }
.hero-copy h1 { max-width: 760px; margin: 0; font-size: clamp(2.75rem, 6.2vw, 5.5rem); line-height: 1.08; letter-spacing: -.065em; }
.hero-copy h1 span { color: var(--cyan); }
.hero-copy > p { max-width: 660px; margin: 28px 0 0; color: #d0d9e7; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; color: #adb7c8; font-size: .86rem; }
.hero-note span { display: flex; align-items: center; gap: 7px; }
.hero-note span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.hero-visual { position: relative; min-height: 440px; }
.orbit { position: absolute; inset: 35px 0 0 15px; border: 1px solid rgba(123,226,246,.28); border-radius: 50%; transform: rotate(-8deg); }
.signal-card { position: absolute; width: 84%; padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.signal-card:nth-child(2) { top: 28px; right: 0; transform: rotate(2deg); }
.signal-card:nth-child(3) { top: 182px; left: 0; transform: rotate(-3deg); }
.signal-card:nth-child(4) { bottom: 5px; right: 24px; width: 72%; transform: rotate(1deg); }
.signal-label { color: var(--cyan); font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.signal-main { margin-top: 10px; font-size: 1.05rem; font-weight: 800; line-height: 1.55; }
.signal-line { height: 7px; margin-top: 12px; border-radius: 4px; background: rgba(255,255,255,.13); }
.signal-line.short { width: 64%; }

.quick-nav { position: relative; margin-top: -38px; z-index: 3; }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
.quick-item { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 18px; border-radius: 13px; }
.quick-item:hover { background: var(--blue-soft); }
.quick-num { color: var(--brand-teal-text); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.quick-item strong { display: block; }
.quick-item small { display: block; color: var(--muted); }
.quick-arrow { color: var(--brand-teal-text); font-size: 1.3rem; }

.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.role-card { position: relative; padding: 34px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.role-card.biz { color: white; background: var(--blue); }
.role-title { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: 1.35rem; }
.role-badge { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--blue-soft); color: var(--blue); font-size: .8rem; font-weight: 900; }
.role-card.biz .role-badge { color: white; background: rgba(255,255,255,.14); }
.check-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 9px; align-items: start; }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; margin-top: 3px; border-radius: 50%; color: var(--green); background: #e0f6ef; font-size: .75rem; font-weight: 900; }
.role-card.biz .check-list li::before { color: white; background: rgba(255,255,255,.17); }

.price-preview { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: stretch; margin-top: 48px; }
.price-status { padding: 36px; border-radius: var(--radius); color: white; background: var(--ink); }
.price-status .status { display: inline-flex; align-items: center; gap: 9px; padding: 7px 11px; border-radius: 999px; color: var(--cyan); background: rgba(123,226,246,.09); font-size: .78rem; font-weight: 800; }
.price-status .status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.price-status h3 { margin: 22px 0 10px; font-size: 1.7rem; line-height: 1.4; }
.price-status p { color: #c0c8d5; }
.price-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.price-point { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.price-point small { color: var(--brand-teal-text); font-weight: 800; }
.price-point strong { display: block; margin-top: 6px; }

.sample-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; margin-top: 48px; }
.source-card, .message-card { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.source-card { padding: 28px; }
.message-card { overflow: hidden; }
.message-bar { display: flex; justify-content: space-between; gap: 18px; padding: 16px 22px; color: #d7e0ef; background: var(--ink); font-size: .8rem; }
.message-body { padding: 30px; }
.highlight { padding: 1px 4px; border-radius: 4px; background: #fff1a8; box-decoration-break: clone; }
.source-row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.source-row:last-child { border: 0; }
.source-row small { display: block; color: var(--muted); }
.source-row strong { display: block; margin-top: 5px; }

.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.info-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-num { color: var(--brand-teal-text); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.info-card h3 { margin: 18px 0 12px; font-size: 1.28rem; line-height: 1.45; }
.info-card p { margin: 0; color: var(--muted); }
.guide-index-page .cards-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.guide-index-page .info-card { min-width: 0; }
.guide-index-page .info-card h2 { white-space: normal; overflow-wrap: anywhere; }
@media (max-width: 1024px) {
  .guide-index-page .cards-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .guide-index-page .cards-3 { grid-template-columns: minmax(0,1fr); }
}

.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 48px; counter-reset: steps; }
.step { position: relative; min-height: 208px; padding: 24px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.06); counter-increment: steps; }
.step::before { content: "0" counter(steps); color: var(--cyan); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { margin: 20px 0 10px; font-size: 1rem; }
.step p { margin: 0; color: #b9c2d2; font-size: .9rem; }

.faq-list { display: grid; gap: 12px; margin-top: 44px; }
details { border: 1px solid var(--line); border-radius: 15px; background: white; }
summary { position: relative; padding: 21px 54px 21px 22px; font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 18px; color: var(--brand-teal-text); font-size: 1.4rem; }
details[open] summary::after { content: "−"; }
.detail-body { padding: 0 22px 22px; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 52px; border-radius: 24px; color: white; background: var(--blue); box-shadow: var(--shadow); }
.cta-panel h2 { margin: 0; font-size: clamp(1.8rem,3vw,3rem); line-height: 1.3; letter-spacing: -.035em; }
.cta-panel p { max-width: 650px; margin: 14px 0 0; color: #dce6f5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.page-hero { padding: 94px 0 72px; color: white; background: var(--ink); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; color: #acb6c6; font-size: .8rem; }
.breadcrumbs a:hover { color: white; }
.page-hero h1 { max-width: 1040px; margin: 0; font-size: clamp(2.6rem,4vw,3.6rem); line-height: 1.2; letter-spacing: -.045em; }
.page-hero p { max-width: 720px; margin: 24px 0 0; color: #c4ccda; font-size: 1.08rem; }
.page-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.split { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.sticky-note { position: sticky; top: 110px; }
.definition-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.definition-row { display: grid; grid-template-columns: 190px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.definition-row dt { font-weight: 800; }
.definition-row dd { margin: 0; color: var(--muted); }
.comparison { width: 100%; border-collapse: collapse; margin-top: 34px; border-radius: 16px; overflow: hidden; background: white; box-shadow: var(--shadow); }
.comparison th, .comparison td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { color: var(--brand-teal-text); background: var(--blue-soft); font-size: .86rem; }
.comparison tr:last-child td { border-bottom: 0; }
.notice { padding: 22px 24px; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; background: #fff2ed; }
.notice strong { display: block; margin-bottom: 5px; }

.pricing-board { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 40px; }
.pricing-board.pricing-plans { grid-template-columns: repeat(3,1fr); }
.pricing-cell { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.pricing-cell small { color: var(--brand-teal-text); font-weight: 900; }
.pricing-cell h3 { margin: 12px 0; font-size: 1.15rem; }
.pending { display: inline-flex; padding: 5px 9px; border-radius: 99px; color: #8a3b20; background: #ffe7dd; font-size: .76rem; font-weight: 800; }
.price-check { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }

.usecase-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 42px; }
.usecase { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.usecase h2, .usecase h3 { margin-top: 0; line-height: 1.45; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-card { padding: 30px; border-radius: var(--radius); background: white; }
.fit-card.good { border-top: 5px solid var(--green); }
.fit-card.caution { border-top: 5px solid var(--orange); }

.resource-card { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.resource-icon { display: grid; place-items: center; width: 62px; height: 74px; border-radius: 8px; color: white; background: var(--blue); font-size: .8rem; font-weight: 900; box-shadow: 8px 8px 0 var(--blue-soft); }
.resource-card h2 { margin: 0 0 8px; font-size: 1.35rem; }
.resource-card p { margin: 0; color: var(--muted); }

.form-shell { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; align-items: start; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label, .field legend { font-weight: 800; }
.optional { margin-left: 8px; color: var(--muted); font-size: .75rem; font-weight: 500; }
.required { margin-left: 8px; color: var(--orange); font-size: .75rem; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #bbc2cf; border-radius: 10px; color: var(--ink); background: white; }
.field textarea { min-height: 150px; resize: vertical; }
.field-help { margin: -2px 0 0; color: var(--muted); font-size: .8rem; }
.form-message { display: none; margin-top: 18px; padding: 16px; border-radius: 10px; color: #0a614f; background: #e5f6f1; }
.form-message.show { display: block; }
.contact-flow { display: grid; gap: 15px; margin-top: 28px; }
.contact-flow div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.contact-flow b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: white; background: var(--blue); font-size: .78rem; }

.article-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 70px; align-items: start; }
.toc { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.toc strong { display: block; margin-bottom: 12px; }
.toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .86rem; }
.toc a:hover { color: var(--brand-teal-text); }
.prose { min-width: 0; }
.prose h2 { margin: 70px 0 18px; font-size: 2rem; line-height: 1.4; letter-spacing: -.03em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 40px 0 12px; font-size: 1.35rem; }
.prose p, .prose li { color: #394457; }
.prose blockquote { margin: 30px 0; padding: 24px 28px; border-left: 4px solid var(--blue); background: var(--blue-soft); font-weight: 700; }

/* One footer for every page; no per-page background overrides. */
.site-footer { padding: 64px 0 26px; color: var(--on-dark-muted); background: var(--brand-navy-darkest); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 50px; }
.footer-brand .logo { color: white; }
.footer-brand p { max-width: 330px; margin-top: 18px; }
.footer-column strong { display: block; margin-bottom: 14px; color: white; }
.footer-column a { display: block; padding: 5px 0; font-size: .9rem; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .global-nav { display: none; position: fixed; inset: 78px 0 0; padding: 28px 24px; background: rgba(255,255,255,.98); align-items: stretch; flex-direction: column; gap: 0; }
  .global-nav.open { display: flex; }
  .global-nav a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .menu-button { display: block; margin-left: auto; }
  .header-actions .button-secondary { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: repeat(3,1fr); }
  .pricing-board { grid-template-columns: repeat(2,1fr); }
  .pricing-board.pricing-plans { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
}

@media (max-width: 760px) {
  .heading-line { display: inline; white-space: normal; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  .header-inner { min-height: 68px; }
  .global-nav { inset: 68px 0 0; }
  .header-actions .button-primary { display: none; }
  .hero-inner { padding: 72px 0 82px; }
  .hero-copy h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { padding: 15px; }
  .role-grid, .price-preview, .sample-shell, .cards-3, .usecase-grid, .fit-grid, .form-shell, .split, .article-layout { grid-template-columns: 1fr; }
  .price-points { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px 26px; }
  .cta-actions .button { width: 100%; }
  .page-hero { padding: 68px 0 56px; }
  .sticky-note, .toc { position: static; }
  .definition-row { grid-template-columns: 1fr; gap: 8px; }
  .comparison { display: block; overflow-x: auto; }
  .pricing-board { grid-template-columns: 1fr; }
  .pricing-board.pricing-plans { grid-template-columns: 1fr; }
  .resource-card { grid-template-columns: auto 1fr; }
  .resource-card .button { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2rem; }
  .price-points { grid-template-columns: 1fr; }
  .role-card, .info-card, .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* TOP page — 2026 redesign */
.home-page {
  /* Page aliases resolve to the shared brand tokens. */
  --home-navy: var(--brand-navy);
  --home-deep: var(--brand-navy-deep);
  --home-teal: var(--brand-teal);
  --home-pale-teal: var(--pale-teal);
  --home-pale-blue: var(--pale-blue);
  --home-orange: var(--brand-orange);
  --home-text: var(--text-body);
  --home-border: var(--line);
  color: var(--home-text);
  background: #fff;
}

.home-page :focus-visible { outline-color: var(--home-orange); }

.home-hero { position: relative; min-height: 700px; overflow: hidden; background: #f8f9fb url('/assets/images/asset_hero_wall.webp') center / cover no-repeat; }
.home-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.34) 68%, rgba(255,255,255,.05) 100%); }
.home-hero-inner { position: relative; display: grid; grid-template-columns: 52% 48%; min-height: 700px; }
.home-hero-copy { position: relative; z-index: 2; align-self: center; padding: 72px 0 82px; }
.home-kicker, .home-section-label { margin: 0 0 18px; color: var(--brand-teal-text); font-size: .74rem; font-weight: 900; letter-spacing: .18em; }
.home-hero-copy h1 { margin: 0; color: var(--home-deep); font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(3.8rem,5.7vw,5.35rem); font-weight: 700; line-height: 1.2; letter-spacing: -.055em; }
.home-hero-sub { margin: 24px 0 0; color: var(--home-teal); font-size: 1.28rem; font-weight: 800; letter-spacing: .04em; }
.home-hero-description { margin: 20px 0 0; color: #1a4388; font-size: 1.03rem; line-height: 1.95; }
.home-hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.home-page .home-button-outline, .home-page .home-button-primary, .home-page .home-button-light, .home-page .home-button-accent { min-width: 174px; border-radius: 999px; }
.home-page .home-button-outline { color: var(--home-deep); border-color: var(--home-deep); background: rgba(255,255,255,.86); }
.home-page .home-button-primary { color: #fff; background: var(--home-deep); box-shadow: 0 12px 26px rgba(3,50,71,.2); }
.home-page .home-button-outline:hover { color: #fff; background: var(--home-deep); }
.home-page .home-button-primary:hover { background: var(--home-teal); }
.home-hero-visual { position: relative; min-width: 0; }
.home-hero-visual > img { position: absolute; right: -120px; bottom: -42px; width: min(720px,58vw); max-width: none; height: auto; filter: drop-shadow(0 28px 34px rgba(18,58,78,.12)); }
.home-vertical-copy { position: absolute; z-index: 2; top: 72px; right: 0; margin: 0; color: var(--home-deep); font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.03rem; font-weight: 700; letter-spacing: .22em; line-height: 2; writing-mode: vertical-rl; }

.home-service { padding: 112px 0 104px; background: #fff; }
.home-heading-row { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(280px,.7fr); gap: 80px; align-items: end; }
.home-heading-row h2, .home-role h2, .home-scale h2 { margin: 0; color: var(--home-deep); font-size: clamp(2.25rem,3.6vw,3.35rem); line-height: 1.35; letter-spacing: -.045em; }
.home-heading-row > p { margin: 0 0 4px; color: #5b6678; line-height: 1.9; }
.home-service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 64px; }
.home-step { min-width: 0; padding-top: 14px; border-top: 1px solid var(--home-border); }
.home-step-image { display: grid; grid-template: minmax(0,1fr) / minmax(0,1fr); place-items: center; height: 190px; margin-bottom: 18px; overflow: hidden; }
.home-step-image img { min-width: 0; min-height: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }
.home-step-number { display: block; color: var(--brand-teal-text); font-size: .78rem; font-weight: 900; letter-spacing: .18em; }
.home-step h3 { margin: 10px 0 10px; color: var(--home-deep); font-size: 1.22rem; line-height: 1.5; }
.home-step p { margin: 0; color: #5e6878; font-size: .93rem; line-height: 1.85; }
.home-center-link { margin-top: 44px; text-align: center; }
.home-text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--brand-teal-text); font-weight: 800; }
.home-text-link span { transition: transform .2s ease; }
.home-text-link:hover span { transform: translateX(5px); }

.home-role { padding: 110px 0; background: #f7f9fb; }
.home-role-container { width: min(calc(100% - 40px),1120px); margin-inline: auto; text-align: center; }
.home-role-lead { max-width: 650px; margin: 18px auto 0; color: #5e6878; }
.home-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; text-align: left; }
.home-role-card { position: relative; display: grid; grid-template-columns: 1fr 42%; min-height: 424px; overflow: hidden; border-radius: 22px; }
.home-role-biz { background: #e4ebf5; }
.home-role-sales { background: #fff2df; }
.home-role-content { position: relative; z-index: 2; padding: 38px 0 34px 38px; }
.home-role-tag { display: inline-block; color: var(--brand-teal-text); font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.home-role-sales .home-role-tag { color: #b86f0c; }
.home-role-card h3 { margin: 10px 0 22px; color: var(--home-deep); font-size: 1.42rem; }
.home-role-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.home-role-card li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; color: #183f80; font-size: .92rem; }
.home-role-card li::before { content: "✓"; display: grid; place-items: center; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%; color: #fff; background: var(--home-teal); font-size: .66rem; font-weight: 900; }
.home-role-sales li::before { background: #d88719; }
.home-role-card > img { position: absolute; right: -38px; bottom: -22px; width: 280px; height: 280px; object-fit: contain; }

.home-scale { position: relative; overflow: hidden; padding: 118px 0; color: #fff; background: url('/assets/images/asset_scale_city.webp') center / cover no-repeat; }
.home-scale::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,53,74,.96),rgba(0,53,74,.76)); }
.home-scale-grid { position: relative; display: grid; grid-template-columns: minmax(0,2fr) minmax(0,3fr); gap: 54px; align-items: center; }
.home-scale-grid > * { min-width: 0; }
.home-scale .home-section-label { color: #8fb0e3; }
.home-scale h2 { color: #fff; font-size: clamp(2.15rem,3.2vw,3rem); }
.home-scale-copy > p:not(.home-section-label) { margin: 24px 0 30px; color: #d3dcea; line-height: 1.95; }
.home-page .home-button-light { color: var(--home-deep); background: #fff; }
.home-scale-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.home-scale-cards > * { min-width: 0; }
.home-scale-card p, .home-scale-card strong { white-space: normal; overflow-wrap: anywhere; }
.home-scale-card { min-height: 222px; padding: 28px 22px; border: 1px solid rgba(255,255,255,.48); border-radius: 18px; color: var(--home-deep); background: rgba(255,255,255,.94); box-shadow: 0 18px 36px rgba(0,29,41,.16); }
.home-scale-card svg { width: 44px; height: 44px; fill: none; stroke: var(--home-teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-scale-card p { margin: 22px 0 4px; color: #4f5c72; font-size: .86rem; font-weight: 700; line-height: 1.45; }
.home-scale-card strong { display: block; color: var(--home-deep); font-size: clamp(1.8rem,2.4vw,2.65rem); line-height: 1.15; letter-spacing: -.045em; }
.home-scale-card strong small { margin-left: 3px; font-size: .85rem; }
.home-scale-card .home-scale-text { margin-top: 8px; font-size: 1.5rem; }

.home-lower-section { background: #fff; }
.home-page .section-title { color: var(--home-deep); font-size: clamp(2.15rem,3.8vw,3.45rem); }
.home-page .section-lead { color: #5e6878; }
.home-judge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.home-judge-grid a { padding: 30px; border: 1px solid var(--home-border); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.home-judge-grid a:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(18,58,78,.1); }
.home-judge-grid span { color: var(--brand-teal-text); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.home-judge-grid h3 { margin: 18px 0 10px; color: var(--home-deep); }
.home-judge-grid p { margin: 0 0 22px; color: #5e6878; }
.home-judge-grid b { color: var(--brand-teal-text); font-size: .88rem; }
.home-page .section-blue { background: var(--home-pale-blue); }
.home-inline-link { margin-top: 28px; }
.home-faq { background: #fff; }
.home-faq details { border-color: var(--home-border); box-shadow: none; }
.home-faq summary::after { color: var(--home-teal); }
.home-cta { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; padding: 60px; border-radius: 24px; color: #fff; background: var(--home-deep); }
.home-cta .home-section-label { color: #8fb0e3; }
.home-cta h2 { margin: 0; font-size: clamp(2rem,3.5vw,3.25rem); line-height: 1.35; letter-spacing: -.04em; }
.home-cta p:not(.home-section-label) { max-width: 620px; margin: 16px 0 0; color: #ccd6e6; }
.home-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.home-page .home-button-accent { color: var(--home-deep); background: var(--home-orange); }

@media (max-width: 1200px) {
  .home-hero-visual > img { right: -80px; width: 650px; }
  .home-vertical-copy { right: 18px; }
  .home-role-card > img { opacity: .88; right: -65px; }
}

@media (max-width: 1024px) {
  .home-hero, .home-hero-inner { min-height: 650px; }
  .home-hero-inner { grid-template-columns: 54% 46%; }
  .home-hero-copy h1 { font-size: clamp(3.3rem,6.8vw,4.5rem); }
  .home-hero-visual > img { right: -145px; width: 620px; }
  .home-vertical-copy { display: none; }
  .home-service-grid { grid-template-columns: repeat(2,1fr); gap: 42px 30px; }
  .home-heading-row { grid-template-columns: minmax(0,1fr); gap: 24px; }
  .home-heading-row .heading-line { white-space: normal; }
  .home-role-card { grid-template-columns: 1fr; min-height: 440px; }
  .home-role-card > img { right: -40px; width: 235px; height: 235px; }
  .home-scale { padding: 96px 0; }
  .home-scale-grid { grid-template-columns: 1fr; }
  .home-scale-copy { max-width: 760px; }
}

@media (max-width: 768px) {
  .home-hero { min-height: auto; background-position: 66% center; }
  .home-hero::before { background: linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.93) 55%,rgba(255,255,255,.52) 100%); }
  .home-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-copy { padding: 72px 0 24px; }
  .home-hero-copy h1 { font-size: clamp(3rem,14vw,4.25rem); }
  .home-hero-sub { font-size: 1.08rem; }
  .pc-only { display: none; }
  .home-hero-actions { flex-direction: column; }
  .home-hero-actions .button { width: 100%; }
  .home-hero-visual { min-height: 360px; }
  .home-hero-visual > img { right: 50%; bottom: -32px; width: min(620px,145vw); transform: translateX(50%); }
  .home-service, .home-role { padding: 80px 0; }
  .home-heading-row { grid-template-columns: 1fr; gap: 24px; }
  .home-heading-row h2, .home-role h2, .home-scale h2 { font-size: clamp(2rem,9vw,2.75rem); }
  .home-service-grid, .home-role-grid, .home-scale-cards, .home-judge-grid { grid-template-columns: 1fr; }
  .home-step { display: grid; grid-template-columns: 110px 1fr; column-gap: 22px; }
  .home-step-image { grid-row: 1 / span 3; width: 110px; height: 130px; margin: 0; }
  .home-step-number, .home-step h3, .home-step p { grid-column: 2; }
  .home-step h3 { margin-top: 3px; }
  .home-role-container { width: min(calc(100% - 28px),1120px); }
  .home-role-card { min-height: 410px; }
  .home-role-content { padding: 30px 24px; }
  .home-role-card > img { width: 215px; height: 215px; }
  .home-scale { padding: 80px 0; }
  .home-scale-grid { gap: 40px; }
  .home-scale-card { min-height: 180px; }
  .home-cta { grid-template-columns: 1fr; padding: 38px 26px; }
  .home-cta-actions { flex-direction: column; justify-content: flex-start; }
  .home-cta-actions .button { width: 100%; }
}

@media (max-width: 480px) {
  .home-hero-visual { min-height: 300px; }
  .home-hero-visual > img { width: 150vw; }
  .home-step { grid-template-columns: 92px 1fr; gap: 16px; }
  .home-step-image { width: 92px; height: 118px; }
  .home-role-card > img { width: 190px; height: 190px; opacity: .68; }
}

/* Pricing page */
.pricing-page {
  /* Page aliases resolve to the shared brand tokens. */
  --pricing-navy: var(--brand-navy);
  --pricing-deep: var(--brand-navy-deep);
  --pricing-teal: var(--brand-teal);
  --pricing-pale: var(--pale-blue);
  --pricing-cyan: var(--pale-teal);
  --pricing-border: var(--line);
  --pricing-orange: var(--brand-orange);
  color: var(--pricing-navy);
  background: #fff;
}

.pricing-page :focus-visible { outline-color: var(--pricing-orange); }
.pricing-container-1080, .pricing-container-1100, .pricing-container-1120 { width: min(calc(100% - 40px),1080px); margin-inline: auto; }
.pricing-container-1100 { max-width: 1100px; }
.pricing-container-1120 { max-width: 1120px; }
.pricing-section { padding: 104px 0; }
.pricing-label { margin: 0 0 16px; color: var(--pricing-teal); font-size: .74rem; font-weight: 900; letter-spacing: .18em; }
.pricing-heading-center { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.pricing-heading-center h2, .pricing-heading-left h2, .pricing-express-copy h2, .pricing-final-card h2 { margin: 0; color: var(--pricing-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(2.2rem,3.5vw,3.2rem); line-height: 1.4; letter-spacing: -.045em; }
.pricing-heading-center > p:last-child, .pricing-heading-left > p:last-child { margin: 18px 0 0; color: #5f697b; line-height: 1.9; }
.pricing-numbered-heading { position: relative; }
.pricing-heading-number { position: absolute; top: 37px; left: -84px; display: flex; align-items: center; gap: 18px; color: #3c6ebe; font-family: Georgia,"Times New Roman",serif; font-size: 2rem; font-weight: 700; letter-spacing: -.03em; }
.pricing-heading-number::after { content: ""; width: 1px; height: 52px; background: #bacce9; }

.pricing-hero { position: relative; min-height: 820px; overflow: hidden; background: #eef3fb url('/assets/images/asset_pricing_hero_bg.webp') center / cover no-repeat; }
.pricing-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.89) 42%,rgba(255,255,255,.2) 76%,rgba(255,255,255,.05) 100%); }
.pricing-hero-inner { position: relative; z-index: 1; padding: 30px 0 60px; }
.pricing-breadcrumbs { display: flex; gap: 9px; color: #6b7586; font-size: .8rem; }
.pricing-breadcrumbs a:hover { color: var(--pricing-teal); }
.pricing-hero-copy { max-width: 660px; margin-top: 48px; }
.pricing-hero-copy h1 { margin: 0; color: var(--pricing-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(3.25rem,5.2vw,4.85rem); line-height: 1.25; letter-spacing: -.055em; }
.pricing-hero-copy > p:last-child { margin: 22px 0 0; color: #4e5a6f; font-size: 1.08rem; line-height: 1.95; }
.pricing-hero-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; width: min(100%,1080px); margin: 70px auto 0; align-items: stretch; }
.pricing-hero-plan { position: relative; padding: 28px 28px 25px; overflow: hidden; border: 1px solid rgba(215,230,238,.95); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 18px 45px rgba(7,45,70,.1); }
.pricing-hero-plan.is-recommended { border: 2px solid var(--pricing-orange); transform: translateY(-10px); }
.pricing-recommend { position: absolute; top: 0; right: 0; padding: 7px 18px; border-radius: 0 16px 0 14px; color: var(--pricing-deep); background: var(--pricing-orange); font-size: .72rem; font-weight: 900; }
.pricing-plan-en { margin: 0; color: var(--pricing-teal); font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.pricing-hero-plan h2 { margin: 8px 0 5px; color: var(--pricing-deep); font-size: 1.45rem; }
.pricing-plan-copy { min-height: 52px; margin: 0; color: #656f80; font-size: .86rem; line-height: 1.7; }
.pricing-hero-price { display: grid; gap: 2px; margin-top: 19px; padding-top: 17px; border-top: 1px solid var(--pricing-border); }
.pricing-hero-price span { color: #727c8c; font-size: .73rem; }
.pricing-hero-price strong { color: var(--pricing-deep); font-size: 1.27rem; }
.pricing-hero-plan dl { display: flex; justify-content: space-between; gap: 12px; margin: 16px 0; font-size: .82rem; }
.pricing-hero-plan dt { color: #727c8c; }
.pricing-hero-plan dd { margin: 0; color: var(--pricing-deep); font-weight: 800; }
.pricing-card-link { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid var(--pricing-border); color: var(--pricing-teal); font-size: .84rem; font-weight: 800; }
.pricing-card-link span { transition: transform .2s ease; }
.pricing-card-link:hover span { transform: translateX(4px); }
.pricing-confirm-note { width: min(100%,1080px); margin: 14px auto 0; color: #636d7e; font-size: .76rem; }

.pricing-included { position: relative; overflow: hidden; background: linear-gradient(145deg,#f3f6fb 0%,#fcfdfe 48%,#ecf1fa 100%); }
.pricing-included::before, .pricing-included::after { content: ""; position: absolute; width: 92px; height: 92px; opacity: .6; background-image: radial-gradient(circle,#abc3ea 2px,transparent 2.5px); background-size: 18px 18px; }
.pricing-included::before { top: 215px; left: max(18px,calc(50% - 630px)); }
.pricing-included::after { right: max(18px,calc(50% - 630px)); bottom: 255px; }
.pricing-included .pricing-container-1120 { position: relative; z-index: 1; width: min(calc(100% - 56px),1200px); padding: 50px 50px 28px; border: 1px solid rgba(255,255,255,.88); border-radius: 10px; background: rgba(255,255,255,.62); box-shadow: 0 22px 65px rgba(45,129,160,.07); }
.pricing-included-heading { display: grid; grid-template-columns: 160px minmax(0,1fr) 160px; align-items: center; margin: 0 auto 38px; text-align: center; }
.pricing-section-number { display: flex; justify-content: flex-end; align-items: center; gap: 26px; color: #3c6ebe; font-family: Georgia,"Times New Roman",serif; font-size: 2.25rem; font-weight: 700; letter-spacing: -.03em; }
.pricing-section-number::after { content: ""; width: 1px; height: 58px; background: #bacce9; }
.pricing-included-title { grid-column: 2; }
.pricing-included-title .pricing-label { margin-bottom: 14px; color: #0a3377; letter-spacing: .34em; }
.pricing-included-title h2 { margin: 0; color: var(--pricing-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(2.15rem,3.2vw,3rem); font-weight: 600; line-height: 1.35; letter-spacing: .01em; }
.pricing-included-title > p:last-child { margin: 20px 0 0; color: #133979; font-size: 1rem; font-weight: 600; line-height: 1.9; }
.pricing-included-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pricing-included-grid article { position: relative; min-height: 276px; padding: 24px 22px 22px; border: 1px solid rgba(215,230,238,.58); border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 11px 28px rgba(46,113,141,.055); text-align: center; }
.pricing-feature-number { position: absolute; top: 20px; left: 22px; color: #164ca2; font-family: Arial,sans-serif; font-size: .8rem; font-weight: 800; letter-spacing: .08em; }
.pricing-feature-icon { display: grid; place-items: center; width: 94px; height: 94px; margin: -2px auto 15px; border: 1px solid rgba(157,211,227,.22); border-radius: 50%; background: radial-gradient(circle at 35% 28%,#fcfdfe 0 12%,#ebf1fa 46%,#d9e4f6 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.95),0 9px 20px rgba(42,129,157,.07); }
.pricing-feature-icon svg { width: 72px; height: 72px; overflow: visible; fill: none; stroke: #08285f; stroke-width: 3.15; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 1px 0 rgba(255,255,255,.85)); }
.pricing-feature-icon .icon-paper, .pricing-feature-icon .icon-plane, .pricing-feature-icon .icon-building-main { fill: rgba(255,255,255,.92); }
.pricing-feature-icon .icon-soft-fill { fill: #cddcf3; stroke: var(--pricing-teal); }
.pricing-feature-icon .icon-lens { fill: #fff; stroke: #093072; stroke-width: 3.6; }
.pricing-feature-icon .icon-lens-glint { fill: rgba(18,101,232,.2); stroke: var(--pricing-teal); stroke-width: 2.6; }
.pricing-feature-icon .icon-handle { stroke: #08285f; stroke-width: 4.4; }
.pricing-feature-icon .icon-building-side { fill: #d7e3f5; stroke: #0b3885; }
.pricing-feature-icon .icon-building-main { stroke: #08285f; }
.pricing-feature-icon .icon-window { fill: var(--pricing-teal); stroke: none; }
.pricing-feature-icon .icon-door { fill: #0b3274; stroke: none; }
.pricing-feature-icon .icon-pencil { fill: #fff; stroke: #08285f; }
.pricing-feature-icon .icon-pencil-light { stroke: var(--pricing-teal); stroke-width: 3.5; }
.pricing-feature-icon .icon-pencil-tip { fill: var(--pricing-teal); stroke: #08285f; }
.pricing-feature-icon .icon-plane { stroke-width: 3.4; }
.pricing-feature-icon .icon-plane-fold { stroke: #08285f; stroke-width: 3; }
.pricing-feature-icon .icon-motion { stroke: var(--pricing-teal); stroke-width: 3.5; }
.pricing-feature-icon .icon-bar-soft { fill: #d7e3f5; stroke: #0b3885; }
.pricing-feature-icon .icon-bar-mid { fill: #396ec1; stroke: #093072; }
.pricing-feature-icon .icon-bar-strong { fill: var(--pricing-teal); stroke: #08285f; }
.pricing-feature-icon .icon-check-disc { fill: var(--pricing-teal); stroke: #08285f; stroke-width: 3.5; }
.pricing-feature-icon .icon-check { stroke: #fff; stroke-width: 4; }
.pricing-feature-icon .icon-chart-ring { fill: #fff; stroke: #0b3885; }
.pricing-feature-icon .icon-chart-slice { fill: var(--pricing-teal); stroke: #08285f; }
.pricing-included-grid h3 { display: inline-block; position: relative; margin: 0 0 18px; color: var(--pricing-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.18rem; font-weight: 700; line-height: 1.5; }
.pricing-included-grid h3::after { content: ""; position: absolute; bottom: -9px; left: 50%; width: 30px; height: 1px; background: var(--pricing-teal); transform: translateX(-50%); }
.pricing-included-grid p { margin: 0; color: #184085; font-size: .82rem; font-weight: 500; line-height: 1.8; }
.pricing-included-signature { display: flex; justify-content: flex-end; align-items: center; gap: 12px; margin: 26px 0 0; color: #305288; font-family: Georgia,"Times New Roman",serif; font-size: .66rem; letter-spacing: .24em; }
.pricing-included-signature span { width: 38px; height: 1px; background: #356dc5; }

.pricing-plan-section { background: var(--pricing-pale); }
.pricing-plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.pricing-plan-card { position: relative; display: flex; flex-direction: column; min-height: 570px; padding: 35px 30px 30px; border: 1px solid var(--pricing-border); border-radius: 20px; background: #fff; box-shadow: 0 15px 36px rgba(7,45,70,.06); }
.pricing-plan-card.is-recommended { border: 2px solid var(--pricing-orange); transform: translateY(-10px); box-shadow: 0 18px 42px rgba(245,166,35,.12); }
.pricing-plan-icon { display: grid; place-items: center; width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%; background: radial-gradient(circle at 35% 28%,#fcfdfe 0 12%,#ebf1fa 46%,#d9e4f6 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.95),0 9px 20px rgba(42,129,157,.07); }
.pricing-plan-icon svg { width: 68px; height: 68px; overflow: visible; fill: rgba(255,255,255,.9); stroke: #08285f; stroke-width: 3.1; stroke-linecap: round; stroke-linejoin: round; }
.pricing-plan-icon .is-accent { fill: none; stroke: var(--pricing-teal); }
.pricing-plan-icon .is-accent-fill { fill: var(--pricing-teal); stroke: #08285f; }
.pricing-plan-icon .is-check { fill: none; stroke: #fff; stroke-width: 4; }
.pricing-plan-card .pricing-plan-en { text-align: center; }
.pricing-plan-card h3 { margin: 8px 0 10px; color: var(--pricing-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.55rem; text-align: center; }
.pricing-plan-card .pricing-fit-copy { text-align: center; }
.pricing-fit-copy { min-height: 54px; margin: 0; color: #656f80; font-size: .87rem; }
.pricing-main-price { margin-top: 24px; padding: 20px 0; border-block: 1px solid var(--pricing-border); }
.pricing-main-price small { display: block; color: #757e8e; }
.pricing-main-price strong { display: block; margin-top: 4px; color: var(--pricing-deep); font-size: 1.45rem; }
.pricing-plan-card dl { margin: 14px 0 26px; }
.pricing-plan-card dl div { display: flex; justify-content: space-between; gap: 15px; padding: 13px 0; border-bottom: 1px solid #e8edf4; font-size: .84rem; }
.pricing-plan-card dt { color: #737c8c; }
.pricing-plan-card dd { margin: 0; color: var(--pricing-deep); font-weight: 800; text-align: right; }
.pricing-plan-card .button { width: 100%; margin-top: auto; border-radius: 999px; }
.pricing-button-outline { color: var(--pricing-deep); border-color: var(--pricing-deep); background: #fff; }
.pricing-button-primary { color: #fff; background: var(--pricing-deep); }
.pricing-button-accent { color: var(--pricing-deep); background: var(--pricing-orange); }
.pricing-button-white { color: var(--pricing-deep); background: #fff; }

.pricing-fit { background: #fff; }
.pricing-fit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pricing-fit-grid article { position: relative; padding: 0 28px 30px; overflow: hidden; border: 1px solid var(--pricing-border); border-radius: 20px; background: #fff; box-shadow: 0 16px 38px rgba(7,45,70,.07); }
.pricing-fit-grid article.is-recommended { border-color: var(--pricing-orange); }
.pricing-fit-image { height: 235px; margin: 0 -28px 22px; overflow: hidden; background: linear-gradient(180deg,var(--pricing-cyan),#fff); }
.pricing-fit-image img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.pricing-fit-grid h3 { margin: 6px 0 18px; color: var(--pricing-deep); font-size: 1.4rem; }
.pricing-fit-lead { margin: 0 0 8px; color: #677181; font-size: .8rem; font-weight: 800; }
.pricing-fit-grid ul { display: grid; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; color: #455267; font-size: .88rem; }
.pricing-fit-grid li { display: grid; grid-template-columns: 17px 1fr; gap: 7px; }
.pricing-fit-grid li::before { content: "✓"; color: var(--pricing-teal); font-weight: 900; }
.pricing-text-link { display: inline-flex; gap: 11px; color: var(--pricing-teal); font-weight: 800; }

.pricing-methods { background: var(--pricing-pale); }
.pricing-heading-left { max-width: 730px; margin-bottom: 46px; }
.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--pricing-border); border-radius: 18px; background: #fff; box-shadow: 0 15px 36px rgba(7,45,70,.06); }
.pricing-method-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.pricing-method-table th, .pricing-method-table td { padding: 17px 16px; border-right: 1px solid var(--pricing-border); border-bottom: 1px solid var(--pricing-border); text-align: center; }
.pricing-method-table tr:last-child > * { border-bottom: 0; }
.pricing-method-table tr > *:last-child { border-right: 0; }
.pricing-method-table thead th { color: var(--pricing-deep); background: #eef3fa; font-size: .83rem; }
.pricing-method-table thead th:not(:first-child) { height: 104px; vertical-align: middle; }
.pricing-method-table thead th small { display: block; margin-top: 5px; color: #6d7686; font-size: .68rem; font-weight: 600; }
.pricing-method-table thead th:first-child, .pricing-method-table tbody th { text-align: left; }
.pricing-method-table tbody th { color: #4d586c; font-size: .84rem; }
.pricing-method-table td { color: #6e7787; font-weight: 800; }
.pricing-method-table .is-bizform { color: #0a3a8d; background: linear-gradient(180deg,#e3ebf8,#f1f5fc); }
.pricing-method-table thead .is-bizform { color: #fff; background: linear-gradient(145deg,#0b3e95,#082d6b); }
.pricing-method-table thead .is-bizform small { color: #d7e3f5; }
.pricing-method-table tbody td.is-bizform { font-size: 1.15rem; font-weight: 900; }
.pricing-effort-none { color: #0a3a8d; font-size: .86rem; white-space: nowrap; }
.pricing-effort { display: inline-grid; place-items: center; min-width: 30px; height: 30px; border-radius: 50%; font-size: .75rem; }
.pricing-effort.high { color: #8b4a17; background: #fff0de; }
.pricing-effort.middle { color: #5f6a70; background: #edf0f2; }
.pricing-effort.low { color: #0a3783; background: #dfe8f6; }
.pricing-method-note { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 24px; }
.pricing-method-note p { max-width: 670px; margin: 0; color: #6d7686; font-size: .8rem; }
.pricing-method-note .button { flex: none; border-radius: 999px; }

.pricing-express { background: #fff; }
.pricing-express-heading { max-width: 760px; margin-bottom: 42px; }
.pricing-express-card { display: grid; grid-template-columns: 28% 1fr 34%; align-items: center; gap: 30px; min-height: 330px; padding: 36px 42px 30px 18px; overflow: hidden; border: 1px solid #f0cf96; border-radius: 22px; background: linear-gradient(120deg,#fff9ef,#fff 60%); box-shadow: 0 18px 40px rgba(98,64,12,.08); }
.pricing-express-image { align-self: stretch; }
.pricing-express-image img { width: 100%; height: 100%; object-fit: contain; }
.pricing-express-copy > span { color: #be7610; font-size: .7rem; font-weight: 900; letter-spacing: .18em; }
.pricing-express-copy h3 { margin: 5px 0 0; color: var(--pricing-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 2rem; }
.pricing-express-copy p { margin: 14px 0 0; color: #626c7c; line-height: 1.85; }
.pricing-express-side { padding-left: 30px; border-left: 1px solid #efd8ad; }
.pricing-express-side > strong { color: var(--pricing-deep); }
.pricing-express-side ul { display: grid; gap: 7px; margin: 13px 0 23px; padding-left: 20px; color: #626c7c; font-size: .85rem; }
.pricing-express-side .button { width: 100%; border-radius: 999px; }

.pricing-faq { background: var(--pricing-pale); }
.pricing-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pricing-faq-grid details { border-color: var(--pricing-border); border-radius: 16px; box-shadow: 0 10px 28px rgba(7,45,70,.04); }
.pricing-faq-grid summary { display: grid; grid-template-columns: 30px 1fr; gap: 11px; align-items: center; min-height: 82px; padding: 20px 48px 20px 22px; color: var(--pricing-deep); }
.pricing-faq-grid summary span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--pricing-teal); font-size: .78rem; }
.pricing-faq-grid summary::after { color: var(--pricing-teal); }
.pricing-faq-grid details > div { padding: 0 25px 24px 63px; color: #667080; font-size: .9rem; }

.pricing-final { background: #fff; }
.pricing-final-card { padding: 74px 30px; border-radius: 24px; color: #fff; background: var(--pricing-deep); text-align: center; }
.pricing-final-card .pricing-label { color: var(--cyan); }
.pricing-final-card h2 { color: #fff; }
.pricing-final-card > p:not(.pricing-label) { margin: 18px 0 30px; color: #c9d5e7; font-size: 1.04rem; }
.pricing-final-card > div { display: flex; justify-content: center; gap: 12px; }
.pricing-final-card .button { min-width: 190px; border-radius: 999px; }
.pricing-mobile { display: none; }

@media (max-width: 1024px) {
  .pricing-hero { min-height: 800px; }
  .pricing-hero::before { background: linear-gradient(90deg,rgba(255,255,255,.97),rgba(255,255,255,.82) 55%,rgba(255,255,255,.18)); }
  .pricing-hero-plans { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .pricing-hero-plan { padding-inline: 20px; }
  .pricing-included-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-included-heading { grid-template-columns: 110px minmax(0,1fr) 110px; }
  .pricing-section-number { gap: 18px; font-size: 1.8rem; }
  .pricing-heading-number { position: static; justify-content: center; margin-bottom: 16px; font-size: 1.55rem; }
  .pricing-heading-number::after { width: 44px; height: 1px; }
  .pricing-included .pricing-container-1120 { padding-inline: 34px; }
  .pricing-plan-grid { gap: 12px; }
  .pricing-plan-card { padding-inline: 22px; }
  .pricing-express-card { grid-template-columns: 26% 1fr; }
  .pricing-express-side { grid-column: 1 / -1; padding: 24px 0 0; border-left: 0; border-top: 1px solid #efd8ad; }
}

@media (max-width: 768px) {
  .pricing-container-1080, .pricing-container-1100, .pricing-container-1120 { width: min(calc(100% - 28px),1120px); }
  .pricing-section { padding: 78px 0; }
  .pricing-pc { display: none; }
  .pricing-hero { min-height: auto; background-position: 66% center; }
  .pricing-hero::before { background: linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.91) 45%,rgba(239,248,251,.88) 100%); }
  .pricing-hero-inner { padding: 22px 0 52px; }
  .pricing-hero-copy { margin-top: 44px; }
  .pricing-hero-copy h1 { font-size: clamp(2.75rem,13vw,4rem); }
  .pricing-hero-plans, .pricing-plan-grid, .pricing-fit-grid, .pricing-faq-grid { grid-template-columns: 1fr; }
  .pricing-hero-plans { margin-top: 48px; }
  .pricing-hero-plan.is-recommended, .pricing-plan-card.is-recommended { transform: none; }
  .pricing-plan-copy, .pricing-fit-copy { min-height: auto; }
  .pricing-included .pricing-container-1120 { width: min(calc(100% - 28px),1120px); padding: 42px 18px 24px; }
  .pricing-included-heading { display: block; margin-bottom: 32px; }
  .pricing-section-number { display: none; }
  .pricing-included-title h2 { font-size: clamp(1.9rem,8vw,2.65rem); }
  .pricing-included-title > p:last-child { font-size: .92rem; }
  .pricing-included-title > p:last-child br { display: none; }
  .pricing-included-grid { grid-template-columns: 1fr; }
  .pricing-included-grid article { min-height: auto; padding: 26px 20px 24px; }
  .pricing-included-grid p br { display: none; }
  .pricing-included::before, .pricing-included::after { display: none; }
  .pricing-plan-card { min-height: 520px; }
  .pricing-plan-icon { width: 82px; height: 82px; }
  .pricing-plan-icon svg { width: 58px; height: 58px; }
  .pricing-method-note { align-items: stretch; flex-direction: column; }
  .pricing-method-note .button { width: 100%; }
  .pricing-express-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .pricing-express-image { height: 230px; }
  .pricing-express-side { grid-column: auto; }
  .pricing-final-card { padding: 54px 22px; }
  .pricing-final-card > div { flex-direction: column; }
  .pricing-final-card .button { width: 100%; }
  .pricing-mobile { display: initial; }
}

@media (max-width: 480px) {
  .pricing-heading-center h2, .pricing-heading-left h2, .pricing-express-copy h2, .pricing-final-card h2 { font-size: 2rem; }
  .pricing-fit-image { height: 210px; }
  .pricing-faq-grid details > div { padding-left: 24px; }
}

/* Examples page */
.examples-page {
  /* Page aliases resolve to the shared brand tokens.
     This page used a blue accent (#154ca3); it now follows the brand teal. */
  --ex-navy: var(--brand-navy);
  --ex-deep: var(--brand-navy-deep);
  --ex-blue: var(--brand-teal);
  --ex-cyan: var(--brand-teal-bright);
  --ex-pale: var(--pale-blue);
  --ex-cyan-pale: var(--pale-teal);
  --ex-border: var(--line);
  --ex-muted: var(--muted);
  --ex-green: var(--green);
  --ex-orange: var(--brand-orange);
  color: var(--ex-navy);
  background: #fff;
}
.examples-page img { height: auto; }

.examples-container, .examples-container-narrow { width: min(calc(100% - 48px),1200px); margin-inline: auto; }
.examples-container-narrow { max-width: 1120px; }
.examples-section { position: relative; overflow: hidden; padding: 106px 0; }
.examples-heading { max-width: 830px; margin: 0 auto 54px; text-align: center; }
.examples-label { display: flex; justify-content: center; align-items: center; gap: 17px; margin: 0 0 20px; color: var(--ex-blue); font-size: .76rem; font-weight: 900; letter-spacing: .2em; }
.examples-label span { width: 40px; height: 2px; background: currentColor; }
.examples-heading h2, .examples-final-card h2 { margin: 0; color: var(--ex-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(2.45rem,4.2vw,4rem); line-height: 1.35; letter-spacing: -.045em; }
.examples-heading h2 em { color: var(--ex-blue); font-style: normal; }
.examples-heading > p:last-child { margin: 20px 0 0; color: #566681; font-size: 1rem; line-height: 1.9; }
.examples-heading-left { max-width: none; margin-inline: 0; text-align: left; }
.examples-heading-left .examples-label { justify-content: flex-start; }
.examples-heading-left .examples-label span { width: 34px; }
.examples-button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; transition: transform .2s ease,box-shadow .2s ease,background .2s ease; }
.examples-button:hover { transform: translateY(-2px); }
.examples-button-primary { color: #fff; background: var(--ex-blue); box-shadow: 0 12px 26px rgba(18,101,232,.22); }
.examples-button-secondary { color: var(--ex-navy); border-color: #2b518d; background: #fff; }

.examples-hero { position: relative; min-height: 720px; overflow: hidden; background: linear-gradient(135deg,#fff 6%,#f8fafd 55%,#ecf1f9 100%); }
.examples-hero::before { content: ""; position: absolute; width: 900px; height: 540px; right: -250px; top: -190px; border-radius: 48%; background: rgba(197,227,250,.5); transform: rotate(-16deg); }
.examples-hero::after { content: ""; position: absolute; width: 680px; height: 280px; left: -260px; bottom: -170px; border-radius: 50%; background: rgba(224,241,253,.8); transform: rotate(-8deg); }
.examples-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 24px; min-height: 720px; padding: 34px 0 60px; }
.examples-breadcrumbs { display: flex; gap: 8px; margin-bottom: 50px; color: #828ea2; font-size: .78rem; }
.examples-breadcrumbs a:hover { color: var(--ex-blue); }
.examples-kicker { display: flex; align-items: center; gap: 11px; margin: 0 0 18px; color: var(--ex-blue); font-size: .82rem; font-weight: 900; letter-spacing: .05em; }
.examples-kicker::before { content: ""; width: 33px; height: 2px; background: currentColor; }
.examples-hero-copy h1 { margin: 0; color: var(--ex-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(3.15rem,4.3vw,4rem); line-height: 1.24; letter-spacing: -.06em; }
.examples-hero-copy h1 em { color: var(--ex-blue); font-style: normal; }
.examples-heading-line { display: inline-block; white-space: nowrap; }
.examples-hero-lead { margin: 25px 0 0; color: #596984; font-size: 1rem; line-height: 2; }
.examples-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.examples-hero-visual { position: relative; display: grid; place-items: center; min-width: 0; }
.examples-hero-visual img { width: 115%; max-width: none; filter: drop-shadow(0 22px 28px rgba(18,101,232,.08)); transform: translateX(1%); }
.examples-handnote { position: absolute; z-index: 2; margin: 0; color: var(--ex-blue); font-family: "Hiragino Maru Gothic ProN","Yu Gothic",sans-serif; font-size: .9rem; font-weight: 700; line-height: 1.6; letter-spacing: .12em; transform: rotate(-5deg); }
.examples-handnote span { display: block; width: 150px; height: 36px; margin-top: 4px; border-bottom: 2px solid currentColor; border-radius: 0 0 70% 30%; }
.examples-handnote-hero { right: max(26px,calc(50% - 590px)); bottom: 27px; }

.examples-comparison { background: #fff; }
.examples-comparison::before, .examples-process::before, .examples-management::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 3% 18%,rgba(195,225,248,.45),transparent 26%),radial-gradient(circle at 96% 88%,rgba(207,232,250,.42),transparent 28%); }
.examples-reference-frame { position: relative; margin: 0; text-align: center; }
.examples-reference-frame img { display: block; width: 100%; filter: drop-shadow(0 22px 35px rgba(26,84,160,.08)); }
.examples-reference-frame figcaption { margin-top: 18px; color: var(--ex-muted); font-size: .82rem; }

.examples-process { background: linear-gradient(150deg,#fbfcfe,#f1f5fb); }
.examples-process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.examples-process-card { display: flex; flex-direction: column; min-width: 0; min-height: 520px; padding: 22px 18px 18px; overflow: hidden; border: 1px solid #cfdbef; border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: 0 13px 34px rgba(37,100,150,.07); }
.examples-step-head { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; }
.examples-step-head > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#2065d3,#154ca3); font-size: 1.25rem; font-weight: 900; }
.examples-step-head h3 { margin: 0; color: var(--ex-deep); font-size: 1rem; line-height: 1.5; }
.examples-process-card > p { min-height: 76px; margin: 18px 2px 12px; color: #606f87; font-size: .83rem; line-height: 1.75; }
.examples-process-card > img { width: 100%; height: 280px; margin-top: auto; object-fit: contain; object-position: center; }
.examples-reading-ui { display: grid; gap: 9px; margin-top: auto; padding: 13px; border-radius: 12px; background: #f2f5fb; }
.examples-reading-ui > div { display: grid; grid-template-columns: 24px 1fr 18px; gap: 8px; align-items: center; min-height: 52px; padding: 9px; border-radius: 9px; color: var(--ex-deep); background: #fff; box-shadow: 0 5px 14px rgba(34,88,130,.06); font-size: .75rem; font-weight: 800; }
.examples-reading-ui b { color: var(--ex-blue); font-size: 1rem; }
.examples-reading-ui i { color: var(--ex-green); font-style: normal; }
.examples-reading-ui small { display: block; width: 90%; height: 6px; margin-top: 6px; border-radius: 4px; background: #d6dfec; }
.examples-process-note { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1.3fr 1fr; gap: 24px; align-items: center; margin-top: 34px; padding: 26px 30px; border: 1px solid #ccdaf0; border-radius: 17px; background: rgba(255,255,255,.92); }
.examples-note-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: var(--ex-blue); background: #eff3fa; font-size: 1.4rem; font-weight: 900; }
.examples-process-note h3 { margin: 0; color: var(--ex-deep); font-size: 1.08rem; }
.examples-process-note p { margin: 7px 0 0; color: #64728a; font-size: .82rem; line-height: 1.7; }
.examples-process-note dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.examples-process-note dl div { padding: 13px; border-radius: 11px; background: #f6f8fc; }
.examples-process-note dt { color: var(--ex-blue); font-size: .75rem; font-weight: 900; }
.examples-process-note dd { margin: 6px 0 0; color: #606d83; font-size: .73rem; line-height: 1.6; }

.examples-sample { background: #fff; }
.examples-sample .examples-heading { max-width: 1080px; }
.examples-sample .examples-heading h2 { font-size: clamp(2.45rem,3.75vw,3.65rem); }
.examples-sample-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: center; }
.examples-insight-panel, .examples-message-panel { border: 1px solid var(--ex-border); border-radius: 19px; background: #fff; box-shadow: 0 18px 44px rgba(35,93,142,.08); }
.examples-insight-panel { padding: 26px; }
.examples-panel-title { display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: center; margin-bottom: 22px; }
.examples-panel-title > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: #fff; background: var(--ex-blue); font-weight: 900; }
.examples-panel-title h3 { margin: 0; color: var(--ex-deep); font-size: 1.1rem; }
.examples-panel-title p { margin: 2px 0 0; color: var(--ex-muted); font-size: .76rem; }
.examples-insight-list { display: grid; gap: 12px; }
.examples-insight-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 13px; align-items: center; min-height: 100px; padding: 15px; border: 1px solid #d7e2f3; border-radius: 12px; background: #fafcfe; }
.examples-insight-list > div > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: var(--ex-blue); background: #ecf1fa; font-weight: 900; }
.examples-insight-list p { margin: 0; color: #586882; font-size: .78rem; line-height: 1.65; }
.examples-insight-list strong { display: block; margin-bottom: 3px; color: var(--ex-deep); font-size: .93rem; }
.examples-message-panel { padding: 18px; }
.examples-message-panel img { display: block; width: 100%; }
.examples-message-panel > p { margin: 5px 0 0; color: var(--ex-muted); font-size: .72rem; text-align: right; }
.examples-handnote-sample { position: relative; display: inline-block; left: 30px; margin-top: 24px; }

.examples-management { background: linear-gradient(150deg,#fcfdfe,#f2f5fb); }
.examples-kpis { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.examples-kpis article { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center; min-height: 126px; padding: 20px; border: 1px solid #d7e1f1; border-radius: 14px; background: rgba(255,255,255,.92); box-shadow: 0 10px 26px rgba(40,100,150,.05); }
.examples-kpis article:nth-child(2) { border-color: #ccefe1; background: rgba(245,255,250,.95); }
.examples-kpis article:nth-child(3) { border-color: #f5dfc6; background: rgba(255,250,244,.96); }
.examples-kpis article > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; font-size: 1.15rem; font-weight: 900; }
.examples-kpis .is-blue { color: var(--ex-blue); background: #ecf1fa; }
.examples-kpis .is-green { color: var(--ex-green); background: #dff8ee; }
.examples-kpis .is-orange { color: var(--ex-orange); background: #fff0dd; }
.examples-kpis small { display: block; color: var(--ex-deep); font-weight: 800; }
.examples-kpis strong { display: block; margin-top: 2px; color: var(--ex-blue); font-size: 1.7rem; line-height: 1.25; }
.examples-kpis article:nth-child(2) strong { color: var(--ex-green); }
.examples-kpis article:nth-child(3) strong { color: var(--ex-orange); }
.examples-kpis strong b { color: #44526a; font-size: .8rem; }
.examples-kpis p { margin: 3px 0 0; color: #8690a1; font-size: .68rem; }
.examples-kpis i { display: block; height: 8px; margin-top: 9px; overflow: hidden; border-radius: 5px; background: #dce4f1; }
.examples-kpis u { display: block; width: 80%; height: 100%; border-radius: inherit; background: var(--ex-blue); text-decoration: none; }
.examples-dashboard { position: relative; z-index: 1; margin: 0; }
.examples-dashboard img { display: block; width: 100%; filter: drop-shadow(0 20px 32px rgba(26,82,135,.11)); }

.examples-operation { background: #fff; }
.examples-operation-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 55px; align-items: center; }
.examples-operation-layout > img { width: 100%; max-height: 590px; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(28,100,180,.09)); }
.examples-operation-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin: 34px 0 0; padding: 0; list-style: none; }
.examples-operation-flow li { position: relative; display: grid; gap: 5px; padding: 16px; border: 1px solid var(--ex-border); border-radius: 12px; background: var(--ex-pale); }
.examples-operation-flow li::after { content: "→"; position: absolute; right: -10px; top: 27px; z-index: 2; color: var(--ex-blue); font-weight: 900; }
.examples-operation-flow li:nth-child(3)::after, .examples-operation-flow li:last-child::after { display: none; }
.examples-operation-flow b { color: var(--ex-blue); font-size: .68rem; letter-spacing: .12em; }
.examples-operation-flow span { color: var(--ex-deep); font-size: .85rem; font-weight: 800; }

.examples-quality { background: linear-gradient(150deg,#f6f9fd,#ecf1fa); }
.examples-quality-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.examples-quality-grid article { padding: 26px 22px; border: 1px solid var(--ex-border); border-radius: 16px; background: #fff; box-shadow: 0 12px 28px rgba(35,91,140,.06); }
.examples-quality-grid article > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#154ca3,var(--ex-blue)); font-weight: 900; }
.examples-quality-grid h3 { margin: 18px 0 8px; color: var(--ex-deep); font-size: 1.08rem; }
.examples-quality-grid p { margin: 0; color: var(--ex-muted); font-size: .8rem; line-height: 1.75; }

.examples-faq { background: #fff; }
.examples-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.examples-faq-grid details { border-color: var(--ex-border); border-radius: 14px; box-shadow: 0 7px 20px rgba(7,30,69,.04); }
.examples-faq-grid summary { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: center; padding: 21px 52px 21px 20px; color: var(--ex-deep); font-size: .87rem; }
.examples-faq-grid summary span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: #fff; background: var(--ex-blue); font-size: .76rem; }
.examples-faq-grid summary::after { color: var(--ex-blue); }
.examples-faq-grid details > p { margin: 0; padding: 0 22px 22px 62px; color: var(--ex-muted); font-size: .82rem; line-height: 1.75; }

.examples-final { padding: 10px 0 105px; background: #fff; }
.examples-final-card { padding: 67px 28px; border: 1px solid #d4e0f3; border-radius: 23px; background: linear-gradient(145deg,#f2f5fb,#fafcfe); text-align: center; box-shadow: 0 18px 42px rgba(38,98,145,.07); }
.examples-final-card h2 { font-size: clamp(2rem,3.5vw,3.2rem); }
.examples-final-card > p:not(.examples-label) { margin: 16px 0 28px; color: #66748c; }
.examples-final-card > div { display: flex; justify-content: center; gap: 11px; }

@media (max-width: 1024px) {
  .examples-hero-inner { grid-template-columns: .92fr 1.08fr; }
  .examples-process-grid { grid-template-columns: repeat(2,1fr); }
  .examples-process-card { min-height: 480px; }
  .examples-process-note { grid-template-columns: auto 1fr; }
  .examples-process-note dl { grid-column: 1 / -1; }
  .examples-sample-grid { gap: 24px; }
  .examples-quality-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .examples-container, .examples-container-narrow { width: min(calc(100% - 28px),1200px); }
  .examples-section { padding: 78px 0; }
  .examples-heading { margin-bottom: 38px; }
  .examples-heading h2, .examples-final-card h2 { font-size: clamp(2rem,9vw,3rem); }
  .examples-heading > p:last-child br { display: none; }
  .examples-hero { min-height: auto; }
  .examples-hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 25px 0 80px; }
  .examples-breadcrumbs { margin-bottom: 44px; }
  .examples-hero-copy h1 { font-size: clamp(2.65rem,13vw,4.2rem); }
  .examples-heading-line { display: inline; white-space: normal; }
  .examples-hero-lead br { display: none; }
  .examples-hero-actions { flex-direction: column; }
  .examples-button { width: 100%; }
  .examples-hero-visual img { width: 108%; margin-left: -4%; transform: none; }
  .examples-handnote-hero { right: 20px; bottom: 18px; }
  .examples-process-grid, .examples-sample-grid, .examples-kpis, .examples-operation-layout, .examples-faq-grid { grid-template-columns: 1fr; }
  .examples-process-card { min-height: 470px; }
  .examples-process-card > img { height: 280px; }
  .examples-process-note { grid-template-columns: 1fr; padding: 23px 20px; }
  .examples-process-note dl { grid-column: auto; grid-template-columns: 1fr; }
  .examples-handnote-sample { left: 8px; }
  .examples-kpis { gap: 10px; }
  .examples-operation-layout > img { max-height: 420px; }
  .examples-operation-flow { grid-template-columns: repeat(2,1fr); }
  .examples-operation-flow li:nth-child(3)::after { display: block; }
  .examples-operation-flow li:nth-child(2n)::after { display: none; }
  .examples-quality-grid { grid-template-columns: 1fr; }
  .examples-faq-grid details > p { padding-left: 22px; }
  .examples-final { padding-bottom: 78px; }
  .examples-final-card { padding: 52px 20px; }
  .examples-final-card > div { flex-direction: column; }
}

@media (max-width: 480px) {
  .examples-label { gap: 10px; }
  .examples-label span { width: 26px; }
  .examples-kicker { font-size: .75rem; }
  .examples-hero-copy h1 { font-size: 2.7rem; }
  .examples-process-grid { grid-template-columns: 1fr; }
  .examples-process-card { min-height: 440px; }
  .examples-process-card > img { height: 250px; }
  .examples-insight-panel { padding: 18px; }
  .examples-insight-list > div { grid-template-columns: 42px 1fr; padding: 12px; }
  .examples-insight-list > div > span { width: 42px; height: 42px; }
  .examples-message-panel { padding: 8px; }
  .examples-operation-flow { grid-template-columns: 1fr; }
  .examples-operation-flow li::after { display: none !important; }
}

/* Use cases page */
.usecases-page {
  /* Page aliases resolve to the shared brand tokens.
     This page used a blue accent (#154ca3); it now follows the brand teal. */
  --uc-deep: var(--brand-navy-deep);
  --uc-navy: var(--brand-navy);
  --uc-blue: var(--brand-teal-bright);
  --uc-blue-strong: var(--brand-teal);
  --uc-pale: var(--pale-blue);
  --uc-soft: var(--pale-teal);
  --uc-border: var(--line);
  --uc-muted: var(--muted);
  --uc-red: var(--alert);
  color: var(--uc-navy);
  background: #fff;
}
.usecases-page img { height: auto; }

.uc-container, .uc-container-narrow { width: min(calc(100% - 48px),1200px); margin-inline: auto; }
.uc-container-narrow { max-width: 1120px; }
.uc-section { position: relative; overflow: hidden; padding: 106px 0; }
.uc-heading { max-width: 850px; margin: 0 auto 52px; text-align: center; }
.uc-section-label { display: flex; justify-content: center; align-items: center; gap: 17px; margin: 0 0 18px; color: var(--uc-blue-strong); font-size: .76rem; font-weight: 900; letter-spacing: .2em; }
.uc-section-label span { width: 38px; height: 2px; background: currentColor; }
.uc-heading h2, .uc-final-copy h2 { margin: 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(2.5rem,4.2vw,4rem); font-weight: 700; line-height: 1.35; letter-spacing: -.045em; }
.uc-heading h2 em, .uc-final-copy h2 em { color: var(--uc-blue-strong); font-style: normal; }
.uc-heading > p:last-child { margin: 20px 0 0; color: #5c6b84; font-size: 1rem; line-height: 1.9; }
.uc-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--uc-blue-strong); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.uc-kicker::before { content: ""; width: 38px; height: 2px; background: currentColor; }
.uc-card-label { margin: 0 0 12px; color: var(--uc-blue-strong); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }

.uc-hero { position: relative; min-height: 980px; overflow: hidden; background: #f7f9fd; }
.uc-hero::before { content: ""; position: absolute; z-index: 1; left: -15%; bottom: -340px; width: 980px; height: 510px; border-radius: 50%; background: rgba(213,235,253,.7); transform: rotate(-8deg); }
.uc-hero-photo { position: absolute; inset: 0; background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 23%,rgba(255,255,255,.5) 52%,rgba(245,250,255,.08) 100%),url('/assets/images/asset_usecases_office_background.webp') center right / cover no-repeat; }
.uc-hero-inner { position: relative; z-index: 2; padding: 76px 0 68px; }
.uc-hero-copy { max-width: 820px; }
.uc-hero-copy h1 { margin: 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(3.1rem,4.4vw,4.25rem); font-weight: 700; line-height: 1.24; letter-spacing: -.06em; }
.uc-hero-copy h1 span { white-space: nowrap; }
.uc-hero-lead { margin: 24px 0 0; color: #45546e; font-size: 1rem; line-height: 1.95; }
.uc-hero-note { position: absolute; top: 60px; right: 10px; color: #224f96; font-size: .82rem; line-height: 1.8; letter-spacing: .12em; }
.uc-hero-note strong { display: block; font-weight: 700; }
.uc-hero-note span { display: block; margin-top: 12px; color: #29518f; font-size: .64rem; font-weight: 900; letter-spacing: .22em; line-height: 1.55; }
.uc-challenge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; width: min(100%,1120px); margin: 62px auto 0; }
.uc-challenge-grid article { position: relative; display: flex; flex-direction: column; min-height: 390px; padding: 23px 25px 22px; overflow: hidden; border: 1px solid rgba(207,224,240,.88); border-radius: 14px; background: rgba(255,255,255,.95); box-shadow: 0 16px 38px rgba(28,77,122,.08); }
.uc-challenge-number { position: relative; z-index: 2; display: flex; align-items: center; gap: 16px; margin: 0; color: #154ca3; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.uc-challenge-number::after { content: ""; width: 34px; height: 1px; background: #154ca3; }
.uc-challenge-image { position: absolute; z-index: 0; top: 22px; right: -16px; width: 82%; height: 178px; pointer-events: none; }
.uc-challenge-image::after { content: ""; position: absolute; inset: 76% 0 0; background: linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.7) 100%); }
.uc-challenge-image img { width: 100%; height: 100%; object-fit: contain; object-position: right top; opacity: .94; filter: saturate(.95) contrast(1.08) drop-shadow(0 7px 12px rgba(63,126,214,.09)); }
.uc-challenge-grid h2 { position: relative; z-index: 1; margin: 142px 0 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.48rem; line-height: 1.5; letter-spacing: -.02em; }
.uc-challenge-grid article > p { position: relative; z-index: 1; margin: 13px 0 20px; color: #59677e; font-size: .82rem; line-height: 1.75; }
.uc-challenge-grid article > a { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; margin-top: auto; color: #0d3477; font-size: .8rem; font-weight: 900; }
.uc-challenge-grid article > a span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #c1d2ed; border-radius: 50%; color: #204f98; transition: transform .2s ease,background .2s ease; }
.uc-challenge-grid article > a:hover span { color: #fff; background: var(--uc-blue-strong); transform: translateX(3px); }
.uc-scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 22px 0 0; color: #1f4e99; font-size: .64rem; font-weight: 900; letter-spacing: .2em; }
.uc-scroll span { width: 1px; height: 30px; background: #174da1; }

.uc-problems { background: linear-gradient(145deg,#fafbfd,#f2f5fb); }
.uc-problems::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg,rgba(255,255,255,.84),rgba(255,255,255,.42)),url('/assets/images/asset_usecases_office_background.webp') center / cover no-repeat; opacity: .42; }
.uc-problems .uc-container { position: relative; z-index: 1; }
.uc-problems-heading { max-width: 850px; margin: 0 0 48px; }
.uc-problems-heading .uc-kicker { margin-bottom: 20px; }
.uc-problems-heading h2 { margin: 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: clamp(2.65rem,4.4vw,4.2rem); line-height: 1.3; letter-spacing: -.045em; }
.uc-problems-heading > p:last-child { margin: 20px 0 0; color: #5c6b84; font-size: 1rem; }
.uc-problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.uc-problems-grid article { position: relative; display: flex; flex-direction: column; min-height: 300px; padding: 25px 24px 27px; overflow: hidden; border: 1px solid rgba(207,224,240,.9); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 15px 34px rgba(28,77,122,.06); }
.uc-problem-number { position: relative; z-index: 2; display: flex; align-items: center; gap: 15px; color: #154ca3; font-size: .74rem; font-weight: 900; letter-spacing: .08em; }
.uc-problem-number::after { content: ""; width: 35px; height: 1px; background: #154ca3; }
.uc-problem-image { display: grid; place-items: center; height: 142px; margin: 0 -8px 2px; overflow: hidden; }
.uc-problem-image img { width: auto; max-width: 84%; height: 100%; min-height: 0; max-height: 100%; object-fit: contain; filter: saturate(.85) contrast(1.05); }
.uc-problems-grid h3 { margin: 5px 0 10px; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.34rem; line-height: 1.5; letter-spacing: -.025em; }
.uc-problems-grid p { margin: 0; color: #59677e; font-size: .84rem; line-height: 1.78; }

.uc-before-after { background: #fff; }
.uc-before-after::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 5% 20%,rgba(213,234,252,.48),transparent 25%),radial-gradient(circle at 95% 88%,rgba(220,240,255,.45),transparent 28%); }
.uc-before-after .uc-container { position: relative; z-index: 1; }
.uc-ba-grid { display: grid; grid-template-columns: minmax(0,1fr) 62px minmax(0,1fr); align-items: center; }
.uc-ba-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--uc-border); border-radius: 21px; background: #fff; box-shadow: 0 18px 44px rgba(34,83,128,.07); }
.uc-ba-card.is-before { background: linear-gradient(150deg,#fff,#fafbfd); }
.uc-ba-card.is-after { border-color: #c9d8ef; background: linear-gradient(150deg,#fff,#f2f5fb); box-shadow: 0 20px 50px rgba(48,112,211,.11); }
.uc-ba-copy { position: relative; z-index: 2; width: 67%; padding: 40px 0 38px 38px; }
.uc-ba-copy h3 { margin: 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.72rem; line-height: 1.55; }
.uc-ba-copy > p:not(.uc-card-label) { margin: 17px 0 0; color: var(--uc-muted); font-size: .86rem; line-height: 1.85; }
.uc-ba-copy ol { display: grid; gap: 9px; margin: 26px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.uc-ba-copy li { display: grid; grid-template-columns: 27px 1fr; align-items: center; gap: 8px; color: var(--uc-navy); font-size: .83rem; font-weight: 700; counter-increment: steps; }
.uc-ba-copy li::before { content: counter(steps); display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--uc-blue-strong); background: var(--uc-soft); font-size: .69rem; }
.uc-ba-card > img { position: absolute; z-index: 1; right: -8%; bottom: -3%; width: 51%; max-height: 74%; object-fit: contain; object-position: right bottom; }
.uc-change-arrow { display: grid; place-items: center; position: relative; z-index: 3; width: 56px; height: 56px; margin-inline: auto; border-radius: 50%; color: #fff; background: var(--uc-blue-strong); box-shadow: 0 10px 25px rgba(18,101,232,.25); font-size: 1.5rem; font-weight: 900; }
.uc-ba-note { width: min(100%,830px); margin: 28px auto 0; padding: 18px 25px; border: 1px solid #cfdcf0; border-radius: 999px; color: #657186; background: #f9fbfd; font-size: .88rem; text-align: center; }
.uc-ba-note strong { color: var(--uc-blue-strong); }

.uc-fit { background: linear-gradient(145deg,#fafbfd,#eff3fa); }
.uc-fit::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg,rgba(255,255,255,.6),rgba(255,255,255,.35)),url('/assets/images/asset_usecases_office_background.webp') center / cover no-repeat; opacity: .1; }
.uc-fit .uc-container-narrow { position: relative; z-index: 1; }
.uc-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.uc-fit-card { display: grid; grid-template-columns: 39% 1fr; align-items: center; min-height: 440px; overflow: hidden; border: 1px solid var(--uc-border); border-radius: 21px; background: rgba(255,255,255,.96); box-shadow: 0 17px 42px rgba(7,30,69,.07); }
.uc-fit-card.is-good { border-top: 4px solid var(--uc-blue-strong); }
.uc-fit-card.is-caution { border-top: 4px solid var(--uc-red); }
.uc-fit-visual { align-self: stretch; display: grid; place-items: center; padding: 20px 5px; background: linear-gradient(180deg,#f1f5fb,#fcfdfe); }
.uc-fit-card.is-caution .uc-fit-visual { background: linear-gradient(180deg,#fff3f5,#fff); }
.uc-fit-visual img { width: 112%; max-width: none; }
.uc-fit-copy { padding: 34px 30px 34px 24px; }
.uc-fit-card.is-caution .uc-card-label { color: var(--uc-red); }
.uc-fit-copy h3 { margin: 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.65rem; }
.uc-fit-copy > p:not(.uc-card-label) { margin: 8px 0 20px; color: var(--uc-muted); font-size: .83rem; }
.uc-fit-copy ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.uc-fit-copy li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: center; color: var(--uc-navy); font-size: .84rem; font-weight: 700; }
.uc-fit-copy li::before { content: "✓"; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: #fff; background: var(--uc-blue-strong); font-size: .68rem; }
.uc-fit-card.is-caution li::before { content: "!"; background: var(--uc-red); }

.uc-industries { background: #fff; }
.uc-industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.uc-industry-grid article { display: grid; grid-template-columns: 190px 1fr; align-items: center; min-height: 255px; overflow: hidden; border: 1px solid var(--uc-border); border-radius: 19px; background: #fff; box-shadow: 0 14px 35px rgba(7,30,69,.06); transition: transform .2s ease,box-shadow .2s ease; }
.uc-industry-grid article:hover { transform: translateY(-3px); box-shadow: 0 19px 42px rgba(7,30,69,.1); }
.uc-industry-image { align-self: stretch; display: grid; place-items: center; padding: 22px 12px; background: linear-gradient(145deg,#f1f5fb,#fcfdfe); }
.uc-industry-image img { width: 100%; }
.uc-industry-grid article > div:last-child { padding: 28px 30px 28px 25px; }
.uc-industry-grid article > div:last-child > p:first-child { margin: 0 0 3px; color: var(--uc-blue-strong); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.uc-industry-grid h3 { margin: 0; color: var(--uc-deep); font-family: "Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif; font-size: 1.48rem; }
.uc-industry-grid article > div:last-child > p:last-child { margin: 13px 0 0; color: var(--uc-muted); font-size: .84rem; line-height: 1.8; }

.uc-final { padding: 20px 0 108px; background: #fff; }
.uc-final-card { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; min-height: 510px; overflow: hidden; border: 1px solid #cfdcf1; border-radius: 24px; background: linear-gradient(120deg,#f8fafd 0%,#f2f5fb 42%,#e4ebf7 100%); box-shadow: 0 20px 50px rgba(32,84,132,.09); }
.uc-final-card::after { content: ""; position: absolute; inset: 0 0 0 42%; background: linear-gradient(90deg,#f2f5fb 0%,rgba(238,247,255,.48) 28%,rgba(255,255,255,.06) 72%),url('/assets/images/asset_usecases_office_background.webp') center right / cover no-repeat; opacity: .55; }
.uc-final-copy { position: relative; z-index: 2; padding: 58px 0 58px 60px; }
.uc-final-copy h2 { font-size: clamp(2.25rem,3.5vw,3.35rem); }
.uc-final-copy > p:not(.uc-kicker) { max-width: 520px; margin: 21px 0 0; color: #5c6b85; font-size: .95rem; line-height: 1.9; }
.uc-final-copy > div { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.uc-button { display: inline-flex; justify-content: center; align-items: center; min-width: 178px; min-height: 54px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; transition: transform .2s ease,box-shadow .2s ease; }
.uc-button:hover { transform: translateY(-2px); }
.uc-button-primary { color: #fff; background: var(--uc-blue-strong); box-shadow: 0 12px 26px rgba(18,101,232,.22); }
.uc-button-secondary { color: var(--uc-blue-strong); border-color: #1e4e9a; background: rgba(255,255,255,.94); }
.uc-final-visual { position: relative; z-index: 2; align-self: end; display: grid; place-items: end center; min-width: 0; }
.uc-final-visual img { width: 112%; max-width: none; margin: 0 -5% -2% 0; filter: drop-shadow(0 20px 32px rgba(34,91,147,.12)); }

@media (max-width: 1024px) {
  .uc-hero { min-height: auto; }
  .uc-hero-note { display: none; }
  .uc-challenge-grid { gap: 13px; }
  .uc-challenge-grid article { min-height: 375px; padding-inline: 20px; }
  .uc-challenge-grid h2 { font-size: 1.3rem; }
  .uc-problems-grid { grid-template-columns: repeat(2,1fr); }
  .uc-ba-grid { grid-template-columns: 1fr; gap: 18px; }
  .uc-change-arrow { transform: rotate(90deg); }
  .uc-ba-card { min-height: 470px; }
  .uc-fit-card { grid-template-columns: 34% 1fr; }
  .uc-industry-grid article { grid-template-columns: 155px 1fr; }
  .uc-final-card { grid-template-columns: 1fr .9fr; }
  .uc-final-copy { padding-left: 42px; }
}

@media (max-width: 768px) {
  .uc-container, .uc-container-narrow { width: min(calc(100% - 28px),1200px); }
  .uc-section { padding: 78px 0; }
  .uc-heading { margin-bottom: 38px; }
  .uc-heading h2, .uc-final-copy h2 { font-size: clamp(2.05rem,9vw,3rem); }
  .uc-heading > p:last-child { font-size: .94rem; }
  .uc-hero-inner { padding: 58px 0 64px; }
  .uc-hero-photo { background: linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.58) 34%,rgba(242,249,255,.52)),url('/assets/images/asset_usecases_office_background.webp') center / cover no-repeat; }
  .uc-hero-copy h1 { font-size: clamp(2.8rem,13vw,4.2rem); }
  .uc-hero-copy h1 span { white-space: normal; }
  .uc-hero-lead br { display: none; }
  .uc-challenge-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .uc-challenge-grid article { min-height: 390px; }
  .uc-challenge-image { width: 72%; }
  .uc-scroll { display: none; }
  .uc-problems-heading { margin-bottom: 34px; }
  .uc-problems-heading h2 { font-size: clamp(2rem,8vw,2.8rem); }
  .uc-problems-grid { grid-template-columns: 1fr; gap: 14px; }
  .uc-problems-grid article { min-height: 0; }
  .uc-problem-image { height: 160px; }
  .uc-ba-card { min-height: 560px; }
  .uc-ba-copy { width: 100%; padding: 30px 28px 250px; }
  .uc-ba-card > img { right: 2%; width: 49%; max-height: 48%; }
  .uc-ba-note { border-radius: 16px; line-height: 1.7; }
  .uc-fit-grid, .uc-industry-grid { grid-template-columns: 1fr; }
  .uc-fit-card { min-height: 390px; }
  .uc-industry-grid article { grid-template-columns: 145px 1fr; min-height: 220px; }
  .uc-final { padding-bottom: 78px; }
  .uc-final-card { grid-template-columns: 1fr; }
  .uc-final-card::after { inset: 45% 0 0; background: linear-gradient(180deg,#f2f5fb 0%,rgba(238,247,255,.25) 28%),url('/assets/images/asset_usecases_office_background.webp') center / cover no-repeat; }
  .uc-final-copy { padding: 48px 25px 15px; text-align: center; }
  .uc-final-copy .uc-kicker { justify-content: center; }
  .uc-final-copy > div { flex-direction: column; }
  .uc-button { width: 100%; }
  .uc-final-visual img { width: 100%; margin: 0; }
}

@media (max-width: 480px) {
  .uc-section-label { gap: 10px; }
  .uc-section-label span { width: 27px; }
  .uc-hero-copy h1 { font-size: 2.85rem; }
  .uc-hero-lead { font-size: .95rem; }
  .uc-challenge-grid article { min-height: 380px; padding: 21px 20px; }
  .uc-challenge-image { width: 86%; height: 170px; }
  .uc-challenge-grid h2 { margin-top: 139px; font-size: 1.45rem; }
  .uc-ba-card { min-height: 585px; }
  .uc-ba-copy { padding: 28px 22px 260px; }
  .uc-ba-copy h3 { font-size: 1.48rem; }
  .uc-ba-card > img { right: 0; width: 58%; }
  .uc-fit-card { grid-template-columns: 1fr; }
  .uc-fit-visual { height: 210px; }
  .uc-fit-visual img { width: 66%; }
  .uc-fit-copy { padding: 26px 23px 30px; }
  .uc-industry-grid article { grid-template-columns: 115px 1fr; min-height: 190px; }
  .uc-industry-grid article > div:last-child { padding: 22px 18px; }
  .uc-industry-grid h3 { font-size: 1.25rem; }
  .uc-industry-grid article > div:last-child > p:last-child { font-size: .78rem; }
}

/* Shared mobile experience. Keep these after the page-specific themes. */
@media (max-width: 1040px) {
  html { scroll-padding-top: 94px; }
  [data-site-header] { position: sticky; top: 0; z-index: 100; }
  .site-header { position: static; backdrop-filter: none; background: #fff; }
  .header-inner { gap: 16px; }
  .header-actions { order: 1; margin-left: auto; }
  .menu-button { order: 2; flex: none; margin-left: 0; cursor: pointer; }
  .global-nav { top: 78px; bottom: auto; height: calc(100vh - 78px); height: calc(100dvh - 78px); overflow-y: auto; overscroll-behavior: contain; padding: 12px max(24px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); }
  body .global-nav > a { flex: none; min-height: 56px; padding: 16px 4px; font-size: 1rem; }
  .global-nav > a[aria-current="page"] { color: var(--blue); }
  .global-nav .nav-actions { display: grid; flex: none; gap: 12px; margin-top: 24px; padding-bottom: 12px; }
  .global-nav .nav-actions .button { min-height: 52px; padding: 14px 20px; font-size: 1rem; }
  .global-nav .nav-actions .button-primary { color: var(--brand-navy); }
  .global-nav .nav-actions .button::after { display: none; }
  body.nav-open { position: fixed; top: var(--nav-scroll-top); left: 0; right: 0; width: 100%; }
  body.nav-open [data-site-header] { position: fixed; left: 0; right: 0; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
  body { overflow-wrap: anywhere; }
  .container, .narrow, .home-role-container,
  .pricing-container-1080, .pricing-container-1100, .pricing-container-1120,
  .examples-container, .examples-container-narrow, .uc-container, .uc-container-narrow { width: calc(100% - 40px); }
  .header-inner { width: calc(100% - 32px); min-height: 64px; gap: 10px; }
  .header-inner .logo { gap: 7px; font-size: 1.125rem; }
  .header-inner .logo-mark { width: 30px; height: 30px; }
  .header-actions .button-primary { display: inline-flex; min-height: 44px; padding: 10px 16px; border-radius: 999px; font-size: .875rem; box-shadow: none; }
  .desktop-label { display: none; }
  .mobile-label { display: inline; }
  .global-nav { top: 64px; height: calc(100vh - 64px); height: calc(100dvh - 64px); }
  .menu-button { width: 44px; height: 44px; border-radius: 10px; }
  .section, .home-service, .home-role, .home-scale, .pricing-section, .examples-section, .uc-section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-title, .home-page .section-title,
  .home-heading-row h2, .home-role h2, .home-scale h2,
  .pricing-heading-center h2, .pricing-heading-left h2, .pricing-included-title h2,
  .pricing-express-copy h2, .pricing-final-card h2,
  .examples-heading h2, .examples-sample .examples-heading h2, .examples-final-card h2,
  .uc-heading h2, .uc-final-copy h2, .home-cta h2, .cta-panel h2 { font-size: clamp(1.625rem, 6.6vw, 2.25rem); line-height: 1.5; letter-spacing: -.025em; }
  .section-title br, .home-heading-row h2 br, .home-scale h2 br,
  .pricing-heading-center h2 br, .pricing-heading-left h2 br, .pricing-final-card h2 br,
  .examples-heading h2 br, .examples-final-card h2 br, .uc-heading h2 br,
  .uc-final-copy h2 br, .home-cta h2 br, .cta-panel h2 br { display: none; }
  .section-lead, .home-hero-description, .home-heading-row > p,
  .pricing-hero-copy > p:last-child, .examples-hero-lead, .uc-hero-lead,
  .uc-heading > p:last-child, .page-hero p { font-size: 1rem; line-height: 1.85; }
  .section-lead { margin-top: 16px; }
  .home-kicker, .home-section-label, .pricing-label, .examples-label, .uc-section-label { margin-bottom: 12px; font-size: .75rem; letter-spacing: .12em; }
  .examples-heading, .uc-heading, .pricing-heading-center, .pricing-heading-left { margin-bottom: 28px; }
  .breadcrumbs, .pricing-breadcrumbs, .examples-breadcrumbs { flex-wrap: wrap; gap: 6px; margin-bottom: 24px; line-height: 1.6; }
  .breadcrumbs a, .pricing-breadcrumbs a, .examples-breadcrumbs a { display: inline-flex; align-items: center; min-height: 32px; }
  .button, .examples-button, .uc-button { min-height: 52px; min-width: 0; font-size: 1rem; }
  .home-page .home-button-outline, .home-page .home-button-primary, .home-page .home-button-light, .home-page .home-button-accent { min-width: 0; }
  .hero-actions, .home-hero-actions, .examples-hero-actions { gap: 10px; margin-top: 24px; }
  .hero-actions .button, .home-hero-actions .button, .examples-hero-actions .examples-button,
  .home-scale-copy > .button, .cta-actions, .cta-actions .button, .form-card > .button { width: 100%; }
  .text-link, .home-text-link, .pricing-text-link { min-height: 44px; }
  .page-links { display: grid; grid-template-columns: 1fr; }
  .reveal { opacity: 1; transform: none; transition: none; }

  /* Landing page: let the message and actions lead, with contained artwork. */
  .home-hero-copy { padding: 36px 0 12px; }
  .home-hero-copy h1 { font-size: clamp(2.25rem, 10vw, 3.75rem); line-height: 1.3; letter-spacing: -.05em; }
  .home-hero-sub { margin-top: 18px; font-size: 1rem; }
  .home-hero-description { margin-top: 14px; }
  .home-hero-visual { min-height: 0; height: clamp(180px, 54vw, 300px); }
  .home-hero-visual > img { right: 50%; bottom: -16px; width: min(100%, 420px); max-width: 100%; max-height: 100%; object-fit: contain; }
  .home-service-grid, .home-role-grid, .home-judge-grid { margin-top: 28px; gap: 16px; }
  .home-step { grid-template-columns: 76px minmax(0,1fr); gap: 4px 16px; padding-top: 20px; }
  .home-step-image { width: 76px; height: 92px; grid-row: 1 / 3; }
  .home-step-number, .home-step h3 { grid-column: 2; }
  .home-step h3 { margin: 0; font-size: 1.125rem; }
  .home-step p { grid-column: 1 / -1; margin-top: 10px; font-size: 1rem; }
  .home-role-card { min-height: 0; grid-template-columns: 1fr; }
  .home-role-content { padding: 24px 22px 0; }
  .home-role-card h3 { margin: 8px 0 18px; font-size: 1.25rem; }
  .home-role-card li { font-size: 1rem; }
  .home-role-card > img { position: static; justify-self: end; width: 150px; height: 150px; margin: 4px 12px 0 0; opacity: 1; }
  .home-scale-grid { gap: 28px; }
  .home-scale-cards { gap: 12px; }
  .home-scale-card { display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 4px 18px; min-height: 108px; padding: 20px; }
  .home-scale-card svg { grid-row: 1 / 3; }
  .home-scale-card p { margin: 0; font-size: .875rem; }
  .home-scale-card strong { font-size: 2rem; }
  .home-scale-card .home-scale-text { margin: 0; font-size: 1.375rem; }
  .home-judge-grid a { padding: 24px; }
  .home-cta, .cta-panel { grid-template-columns: minmax(0,1fr); gap: 24px; padding: 30px 22px; border-radius: 18px; }

  /* Pricing: retain every condition while reducing empty card space. */
  .pricing-hero-inner { padding: 20px 0 36px; }
  .pricing-hero-copy { margin-top: 28px; }
  .pricing-hero-copy h1, .examples-hero-copy h1, .uc-hero-copy h1 { font-size: clamp(2rem, 8.5vw, 3.25rem); line-height: 1.4; letter-spacing: -.035em; }
  .pricing-hero-plans { margin-top: 28px; gap: 14px; }
  .pricing-hero-plan { padding: 24px 20px 16px; }
  .pricing-hero-plan h2 { font-size: 1.375rem; }
  .pricing-plan-copy, .pricing-fit-copy, .pricing-fit-grid ul,
  .pricing-included-grid p, .pricing-express-side ul { font-size: 1rem; }
  .pricing-hero-price { margin-top: 12px; padding-top: 12px; }
  .pricing-hero-plan dl { flex-wrap: wrap; font-size: .875rem; }
  .pricing-card-link { min-height: 48px; font-size: .875rem; }
  .pricing-confirm-note, .pricing-method-note p { font-size: .875rem; }
  .pricing-included .pricing-container-1120 { width: calc(100% - 40px); padding: 28px 16px; }
  .pricing-included-grid { gap: 12px; }
  .pricing-included-grid article { padding: 24px 18px; }
  .pricing-plan-grid { gap: 20px; }
  .pricing-plan-card { min-height: 0; padding: 30px 22px 24px; }
  .pricing-plan-card dl div { flex-wrap: wrap; font-size: .875rem; }
  .pricing-fit-image { height: 180px; }
  .pricing-express-card { gap: 20px; padding: 24px 20px; }
  .pricing-express-image { height: 170px; }
  .pricing-final-card { padding: 36px 22px; }
  .pricing-table-wrap, .table-scroll { max-width: 100%; overflow-x: auto; overscroll-behavior-x: contain; }
  .pricing-method-table { min-width: 700px; border-collapse: separate; border-spacing: 0; }
  .pricing-method-table th, .pricing-method-table td { padding: 14px 12px; }
  .pricing-method-table tr > :first-child { position: sticky; left: 0; z-index: 1; width: 132px; min-width: 132px; background: #eef3fa; box-shadow: 2px 0 0 var(--pricing-border); font-size: .875rem; }
  .table-scroll-hint { margin: 0 0 12px; color: var(--muted); font-size: .875rem; }

  /* Examples: readable steps and text without oversized image cards. */
  .examples-hero-inner { gap: 20px; padding: 20px 0 32px; }
  .examples-hero-visual img { width: 100%; max-width: 420px; margin: 0; }
  .examples-handnote { display: none; }
  .examples-process-grid { gap: 16px; }
  .examples-process-card { min-height: 0; padding: 22px; }
  .examples-process-card > p { min-height: 0; font-size: 1rem; }
  .examples-process-card > img { height: 180px; margin-top: 8px; }
  .examples-step-head { grid-template-columns: 40px minmax(0,1fr); gap: 12px; }
  .examples-step-head > span { width: 40px; height: 40px; font-size: 1rem; }
  .examples-step-head h3 { font-size: 1.125rem; }
  .examples-reading-ui > div { font-size: .875rem; }
  .examples-process-note p, .examples-process-note dd, .examples-insight-list p, .examples-quality-grid p { font-size: 1rem; }
  .examples-process-note dt, .examples-panel-title p { font-size: .875rem; }
  .examples-sample-grid, .examples-operation-layout { gap: 24px; }
  .examples-message-panel { padding: 20px; }
  .examples-message-panel > img { display: none; }
  .mobile-message { display: block; font-size: 1rem; line-height: 1.85; }
  .mobile-message h3 { margin: 12px 0; font-size: 1.125rem; }
  .mobile-message-subject { padding-block: 16px; border-block: 1px solid var(--ex-border); }
  .mobile-message mark { padding: 2px 3px; color: inherit; background: #ecf1f9; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .examples-message-panel > p { font-size: .875rem; text-align: left; }
  .examples-kpis article { min-height: 108px; }
  .examples-kpis p { font-size: .875rem; }
  .examples-final { padding-bottom: 56px; }
  .examples-final-card { padding: 36px 22px; }

  /* Use cases: separate illustrations from copy and give body text room. */
  .uc-hero-inner { padding: 36px 0; }
  .uc-challenge-grid { margin-top: 28px; gap: 16px; }
  .uc-challenge-grid article { min-height: 0; padding: 22px; }
  .uc-challenge-image { position: static; width: 100%; height: 140px; margin-top: 4px; }
  .uc-challenge-image img { object-position: center; }
  .uc-challenge-grid h2 { margin-top: 12px; font-size: 1.375rem; }
  .uc-challenge-grid article > p { font-size: 1rem; }
  .uc-challenge-grid article > a { min-height: 48px; gap: 12px; font-size: .875rem; }
  .uc-challenge-grid article > a span { flex: none; }
  .uc-ba-card { min-height: 0; }
  .uc-ba-copy { width: 100%; padding: 24px 22px 0; }
  .uc-ba-copy h3 { font-size: 1.375rem; }
  .uc-ba-copy > p:not(.uc-card-label), .uc-ba-copy li, .uc-fit-copy > p:not(.uc-card-label), .uc-fit-copy li { font-size: 1rem; }
  .uc-ba-card > img { display: block; position: static; width: 180px; max-height: none; height: 180px; margin: 12px 16px 0 auto; }
  .uc-change-arrow { width: 40px; height: 40px; font-size: 1.125rem; }
  .uc-fit-card { grid-template-columns: 1fr; min-height: 0; }
  .uc-fit-visual { grid-template: minmax(0,1fr) / minmax(0,1fr); height: 150px; padding: 8px; }
  .uc-fit-visual img { min-width: 0; min-height: 0; width: auto; max-width: 100%; height: 100%; max-height: 100%; object-fit: contain; }
  .uc-fit-copy { padding: 24px 22px; }
  .uc-fit-copy h3 { font-size: 1.375rem; }
  .uc-industry-grid article { grid-template-columns: 88px minmax(0,1fr); min-height: 0; }
  .uc-industry-image { padding: 12px 6px; }
  .uc-industry-grid article > div:last-child { padding: 22px 16px; }
  .uc-industry-grid h3 { font-size: 1.125rem; }
  .uc-industry-grid article > div:last-child > p:last-child { font-size: 1rem; line-height: 1.8; }
  .uc-final { padding: 12px 0 56px; }
  .uc-final-copy { padding: 30px 22px 8px; text-align: left; }
  .uc-final-copy .uc-kicker { justify-content: flex-start; }
  .uc-final-visual img { max-width: 360px; }

  /* Service, guides, forms and shared supporting content. */
  .page-hero { padding: 28px 0 36px; }
  .page-hero h1 { font-size: clamp(1.875rem, 7.5vw, 2.75rem); line-height: 1.5; letter-spacing: -.025em; }
  .page-hero h1 br { display: none; }
  .heading-line { display: inline; white-space: normal; }
  .role-grid, .price-preview, .sample-shell, .cards-3, .usecase-grid, .fit-grid,
  .form-shell, .split, .article-layout { grid-template-columns: minmax(0,1fr); gap: 24px; }
  .role-grid, .price-preview, .sample-shell, .cards-3, .usecase-grid, .steps, .faq-list { margin-top: 28px; }
  .steps { grid-template-columns: minmax(0,1fr); }
  .step { min-height: 0; }
  .sticky-note { position: static; }
  .role-card, .info-card, .source-card, .message-body, .form-card, .fit-card, .usecase { padding: 22px; }
  .message-bar { flex-wrap: wrap; gap: 6px 12px; padding: 14px 20px; font-size: .875rem; }
  .message-body > p:first-child { margin-top: 0; }
  .message-body > p:last-child { margin-bottom: 0; }
  .resource-card { grid-template-columns: minmax(0,1fr); padding: 22px; gap: 18px; }
  .resource-icon { width: 46px; height: 54px; }
  .form-shell { display: flex; flex-direction: column; }
  .form-shell > * { width: 100%; min-width: 0; }
  .form-shell .form-card { order: -1; }
  .field input, .field select, .field textarea { min-width: 0; min-height: 50px; font-size: 1rem; }
  .field textarea { min-height: 180px; }
  .field-help, .optional, .required { font-size: .875rem; }
  .field input, .field textarea { scroll-margin-block: 84px 24px; }
  summary { min-height: 56px; padding: 18px 44px 18px 18px; line-height: 1.65; }
  summary::after { right: 16px; top: 16px; }
  .pricing-faq-grid summary, .examples-faq-grid summary { grid-template-columns: 26px minmax(0,1fr); gap: 10px; min-height: 72px; padding: 18px 44px 18px 18px; font-size: 1rem; }
  .pricing-faq-grid summary span, .examples-faq-grid summary span { width: 26px; height: 26px; }
  .detail-body, .pricing-faq-grid details > div, .examples-faq-grid details > p { padding: 0 18px 20px; font-size: 1rem; }
  .toc { position: static; padding: 20px; }
  .toc a { min-height: 44px; padding: 10px 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .toc a:last-child { border-bottom: 0; }
  .prose h2 { margin-top: 44px; font-size: 1.5rem; }
  .prose h3 { font-size: 1.25rem; }
  .prose blockquote { padding: 20px; }
  .prose ul, .prose ol { padding-left: 24px; }
  .definition-row { grid-template-columns: minmax(0,1fr); gap: 8px; }
  .table-scroll { margin-top: 28px; border: 1px solid var(--line); border-radius: 12px; }
  .table-scroll .comparison { display: table; min-width: 560px; margin: 0; overflow: visible; box-shadow: none; }
  .comparison th, .comparison td { padding: 14px 16px; }
  .site-footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column strong { margin-bottom: 8px; }
  .footer-column a { display: flex; align-items: center; min-height: 44px; padding: 8px 0; font-size: .875rem; }
  .footer-bottom { flex-direction: column; gap: 8px; margin-top: 28px; font-size: .75rem; }
}

.mobile-message, .table-scroll-hint { display: none; }
.table-scroll-hint[hidden] { display: none; }
@media (max-width: 768px) {
  .mobile-message, .table-scroll-hint { display: block; }
  .image-scroll { overflow-x: auto; overscroll-behavior-x: contain; border: 1px solid var(--ex-border); border-radius: 12px; background: #fff; }
  .image-scroll img { min-width: 760px; }
}

@media (max-width: 360px) {
  .container, .narrow, .home-role-container,
  .pricing-container-1080, .pricing-container-1100, .pricing-container-1120,
  .examples-container, .examples-container-narrow, .uc-container, .uc-container-narrow { width: calc(100% - 32px); }
  .header-inner { gap: 8px; }
  .header-actions .button-primary { padding-inline: 12px; }
  .home-kicker { letter-spacing: .06em; }
  .uc-industry-grid article { grid-template-columns: minmax(0,1fr); }
  .uc-industry-image { grid-template: minmax(0,1fr) / minmax(0,1fr); height: 116px; }
  .uc-industry-image img { min-width: 0; min-height: 0; width: auto; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }
}
