:root {
  --ink: #17241f;
  --muted: #596860;
  --green: #174b3a;
  --green2: #246c53;
  --cream: #f4f1e8;
  --line: #d7dfda;
  --paper: #fff;
  --red: #9c3028;
  --shadow: 0 14px 38px rgba(24, 50, 40, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  font-size: 17px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fafbf9;
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", Meiryo,
    sans-serif;
  line-height: 1.8;
}
a {
  color: var(--green2);
}
h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0.25em 0;
}
h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin: 0.35em 0 0.8em;
}
.site-header {
  height: 76px;
  padding: 0 max(22px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
}
.brand span {
  color: var(--green);
  margin-right: 0.55rem;
}
.header-link {
  font-weight: 700;
}
.hero {
  max-width: 1180px;
  margin: auto;
  min-height: 690px;
  padding: 90px 28px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 52px;
}
.hero-copy {
  max-width: 760px;
}
.lead {
  font-size: 1.18rem;
  max-width: 680px;
  margin: 1.5rem 0 2rem;
}
.eyebrow {
  color: var(--green2);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.large {
  padding: 1.1rem 1.65rem;
  font-size: 1.08rem;
}
.button.primary {
  background: var(--green);
  color: #fff;
}
.button.secondary {
  background: #e5eee9;
  color: var(--green);
}
.button.light {
  background: #fff;
  color: var(--green);
}
.button.full {
  width: 100%;
}
.price {
  margin-top: 1rem;
  color: var(--muted);
}
.price strong {
  color: var(--ink);
  font-size: 1.15rem;
}
.price span {
  font-size: 0.88rem;
}
.hero-media {
  margin: 0;
  background: var(--cream);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.interview-start {
  background: var(--cream);
  padding: 90px 28px;
}
.start-copy {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.start-lead {
  font-size: 1.2rem;
  margin: 0 auto 2rem;
}
.start-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 720px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.start-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
}
.start-steps b {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
}
.start-button {
  max-width: 680px;
  min-height: 64px;
}
.start-help,
.provider-note {
  color: var(--muted);
  font-size: 0.92rem;
}
.copy-status {
  max-width: 760px;
  margin: 24px auto 12px;
  padding: 22px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: left;
}
.copy-status.success {
  color: #0d5f39;
  background: #e4f5eb;
  border: 2px solid #17814f;
}
.copy-status.warning,
.copy-status.error {
  color: #71231d;
  background: #fff0ee;
  border: 2px solid var(--red);
}
.retry-link {
  display: inline-block;
  font-weight: 800;
  margin-bottom: 16px;
}
.manual-copy {
  max-width: 760px;
  margin: 24px auto;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
}
.manual-copy summary {
  padding: 0;
}
.privacy-note {
  max-width: 760px;
  margin: 28px auto 8px;
  padding-top: 22px;
  border-top: 1px solid #c7cec9;
  text-align: left;
}
.provider-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.send-flow {
  text-align: center;
}
.send-flow ol {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: left;
}
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 28px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps article,
.paper-card,
.panel,
.form-card,
.login-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.steps b {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
}
.steps h3 {
  font-size: 1.25rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.paper-card {
  background: var(--cream);
}
.example-placeholder {
  min-height: 190px;
  border: 2px dashed #b8c6bf;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
}
.faq {
  border-top: 1px solid var(--line);
}
details {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
summary {
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}
.cta {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 76px 24px;
}
.narrow {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}
.admin-wide {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.page-head {
  padding: 68px 24px 28px;
}
.form-card,
.panel {
  margin-bottom: 28px;
}
.form-card {
  padding: 30px;
  margin-bottom: 70px;
}
form > label,
fieldset {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  border: 1px solid #aebbb4;
  border-radius: 8px;
  padding: 0.8rem 0.85rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
small {
  display: block;
  color: var(--muted);
  font-weight: 400;
}
.required {
  font-size: 0.75rem;
  background: #fbe9e7;
  color: var(--red);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.choice {
  display: block;
  font-weight: 500;
  margin: 0.55rem 0;
}
.choice input {
  width: auto;
  display: inline;
  margin: 0 0.4rem 0 0;
}
.agreement {
  background: #f1f5f2;
  border-radius: 10px;
  padding: 18px;
  margin: 1.5rem 0;
}
.agreement p {
  font-size: 0.9rem;
  color: var(--muted);
}
.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.notice {
  max-width: 790px;
  margin: 18px auto;
  padding: 16px 20px;
  border-left: 5px solid #3b7c63;
  background: #eef5f1;
}
.notice.error {
  border-color: var(--red);
  background: #fff0ee;
}
.notice.success {
  border-color: #17814f;
}
.completion {
  text-align: center;
  padding: 90px 24px;
}
.check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
}
.reception {
  font:
    800 1.55rem ui-monospace,
    monospace;
}
.break {
  word-break: break-all;
}
.big-list li {
  margin: 0.75rem 0;
}
.prompt {
  min-height: 360px;
  background: #fff;
}
.status {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #eef5f1;
  border-radius: 10px;
  padding: 18px;
  margin: 1.5rem 0;
}
.status strong,
.pill {
  background: var(--green);
  color: #fff;
  border-radius: 99px;
  padding: 0.35rem 0.75rem;
}
.next {
  border-left: 5px solid var(--green);
  padding-left: 22px;
  margin: 2rem 0;
}
.file-list {
  list-style: none;
  padding: 0;
}
.file-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.message {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.login-card {
  max-width: 520px;
  margin: 90px auto;
  padding: 38px;
}
.admin-title,
.admin-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.admin-grid {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}
.admin-grid > * {
  flex: 1;
}
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  align-items: end;
  gap: 16px;
}
.filters label {
  margin: 0;
}
.table-wrap {
  padding: 0 24px 70px;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
th,
td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
th {
  background: #edf2ef;
}
.text-button,
.danger-button {
  border: 0;
  background: none;
  color: var(--green);
  text-decoration: underline;
  cursor: pointer;
}
.danger-button {
  color: var(--red);
}
dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
}
dt {
  font-weight: 800;
}
dd {
  margin: 0;
  white-space: pre-wrap;
}
.history span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.legal-page {
  max-width: 850px;
  margin: auto;
  padding: 70px 24px;
}
.legal-page h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
}
footer {
  border-top: 1px solid var(--line);
  padding: 38px 24px;
  text-align: center;
  color: var(--muted);
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  html {
    font-size: 16px;
  }
  .site-header {
    height: 68px;
    padding: 0 18px;
  }
  .brand span {
    display: block;
    font-size: 0.72rem;
  }
  .hero {
    min-height: 0;
    padding: 58px 22px;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .steps,
  .split {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 62px 22px;
  }
  .interview-start {
    padding: 62px 18px;
  }
  .start-button {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .copy-status {
    font-size: 1.05rem;
  }
  .admin-title,
  .admin-grid {
    display: block;
  }
  .admin-grid {
    padding: 0 16px;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .table-wrap {
    padding: 0 16px 60px;
  }
  .status {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-card,
  .panel {
    margin-left: 16px;
    margin-right: 16px;
    padding: 22px;
  }
  .login-card {
    margin: 50px 16px;
  }
  dl {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  dd {
    margin-bottom: 14px;
  }
  .file-list li {
    align-items: flex-start;
  }
  .site-header .header-link {
    font-size: 0.9rem;
  }
}

/* Dynamic 30-page landing page */
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f7fbff;
}
.lp-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 0 26px;
  border: 1px solid rgba(13, 62, 111, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 50px rgba(10, 49, 91, 0.1);
  backdrop-filter: blur(18px);
}
.brand,
.eyebrow,
.button,
h1,
h2,
h3 {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}
.brand span,
.eyebrow {
  color: #0877c9;
}
.header-link {
  color: #fff;
  background: #0b4f8a;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
}
.hero-dynamic {
  max-width: 1240px;
  min-height: auto;
  padding: 112px 30px 90px;
  grid-template-columns: 1fr;
  gap: 52px;
}
.hero-dynamic .hero-copy {
  max-width: 1120px;
  margin: auto;
  text-align: center;
}
.hero-dynamic h1 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  color: #093c72;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.hero-dynamic h1 span {
  display: inline;
  color: #0877c9;
}
.hero-dynamic .lead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.13rem;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-dynamic .price {
  text-align: center;
}
.button.primary {
  background: #0b4f8a;
}
.button.primary:hover,
.button.primary:focus-visible {
  background: #0877c9;
  transform: translateY(-2px);
}
.button.ghost {
  color: #0b4f8a;
  background: transparent;
  border: 1px solid #0b4f8a;
}
.button {
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease;
}
.flow-visual {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #a7d9fa;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(3, 64, 119, 0.14);
  transition: transform 700ms ease;
}
.flow-visual:hover {
  transform: scale(1.02);
}
.flow-visual img {
  aspect-ratio: 16 / 9;
}
.flow-visual figcaption {
  padding: 14px 20px 17px;
  color: #285a82;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}
.motion-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #90d2fb;
  border-bottom: 1px solid #90d2fb;
  background: #e7f7ff;
}
.motion-marquee div {
  width: max-content;
  padding: 20px 0;
  color: #0b4f8a;
  font: 800 1rem/1 "Outfit", sans-serif;
  letter-spacing: 0.12em;
  animation: hon-marquee 24s linear infinite;
}
@keyframes hon-marquee {
  to { transform: translateX(-50%); }
}
.concept {
  padding-top: 170px;
  padding-bottom: 170px;
}
.wide-title {
  max-width: 1040px;
  color: #07386a;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.reveal-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0.55em;
  max-width: 950px;
  margin-top: 48px;
  color: #174d7b;
  font-size: clamp(1.35rem, 2.7vw, 2.3rem);
  font-weight: 700;
  line-height: 1.65;
}
.reveal-copy span {
  opacity: 0.14;
}
.bento {
  padding-top: 130px;
  padding-bottom: 170px;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}
.bento-card {
  grid-column: span 4;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #b8dff7;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 64, 114, 0.08);
  transition: transform 700ms ease, box-shadow 700ms ease;
}
.bento-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 70px rgba(7, 64, 114, 0.15);
}
.bento-card h3 {
  color: #083f76;
  font-size: 1.55rem;
}
.bento-primary {
  grid-column: span 7;
  color: #fff;
  background: #073d73;
}
.bento-primary h3 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
}
.bento-number {
  display: block;
  color: #5bd1ff;
  font: 800 clamp(5rem, 12vw, 10rem)/0.8 "Outfit", sans-serif;
}
.bento-image {
  grid-column: span 5;
  padding: 0;
}
.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-card.teal {
  background: #e2fbfb;
}
.bento-card.green {
  background: #e6f8ed;
}
.interview-start {
  padding-top: 150px;
  padding-bottom: 160px;
  background: #082f58;
}
.interview-start .eyebrow {
  color: #67d3ff;
}
.interview-start h2,
.interview-start .start-lead,
.interview-start .start-help,
.interview-start .privacy-note,
.interview-start .provider-note {
  color: #fff;
}
.start-steps li,
.manual-copy {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0d426f;
  color: #fff;
}
.start-steps b {
  background: #ff6b25;
}
.interview-start .button.primary {
  color: #082f58;
  background: #6fe1ff;
}
.interview-start .button.primary:hover,
.interview-start .button.primary:focus-visible {
  background: #fff;
}
.interview-start .manual-copy textarea {
  color: #122a3e;
}
.journey {
  max-width: 1180px;
  margin: 0 auto;
  padding: 180px 28px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: start;
}
.journey-sticky {
  position: sticky;
  top: 110px;
  padding-top: 40px;
}
.journey-sticky h2 {
  color: #073d73;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.04em;
}
.journey-cards {
  min-width: 0;
}
.timeline-card {
  position: sticky;
  top: 110px;
  min-height: 260px;
  margin-bottom: 34px;
  padding: 38px;
  border: 1px solid #b7def6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 62, 108, 0.12);
}
.timeline-card:nth-child(2n) { top: 118px; }
.timeline-card:nth-child(3n) { top: 126px; }
.timeline-card span {
  color: #ff6b25;
  font: 800 3.4rem/1 "Outfit", sans-serif;
}
.timeline-card h3 {
  color: #073d73;
  font-size: 1.8rem;
}
.timeline-card.system { border-top: 8px solid #1aa96b; }
.timeline-card.maker { border-top: 8px solid #208ee4; }
.timeline-card.customer { border-top: 8px solid #ff6b25; }
.boundaries {
  padding-top: 150px;
  padding-bottom: 170px;
}
.accordion {
  min-height: 430px;
  display: flex;
  gap: 10px;
}
.accordion article {
  flex: 1;
  min-width: 0;
  padding: 32px;
  border: 1px solid #addafa;
  border-radius: 18px;
  overflow: hidden;
  background: #eaf8ff;
  transition: flex 600ms ease, background-color 300ms ease;
}
.accordion article:hover,
.accordion article:focus {
  flex: 2.5;
  background: #fff;
  outline: none;
}
.accordion h3 {
  color: #073d73;
  font-size: 1.55rem;
}
.accordion p {
  min-width: 210px;
}
.boundary-note {
  margin-top: 34px;
  padding: 28px;
  color: #fff;
  background: #073d73;
  border-radius: 18px;
  font-size: 1.05rem;
}
.boundary-note strong {
  color: #72dcff;
}
.cover-condition {
  margin: 22px 0 34px;
  padding: 28px;
  border: 1px solid #ffb58f;
  border-radius: 18px;
  background: #fff5ef;
}
.cover-condition h2,
.cover-condition h3 {
  margin-top: 0;
  color: #8b3513;
}
.cover-condition p:last-child {
  margin-bottom: 0;
}
.pricing {
  padding-top: 140px;
  padding-bottom: 180px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 16px;
}
.price-card {
  padding: 44px;
  border: 1px solid #b7def6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 62, 108, 0.1);
}
.price-card > p:first-child {
  color: #0877c9;
  font-weight: 800;
}
.price-card h3 {
  color: #073d73;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.price-card > strong {
  display: block;
  margin: 26px 0;
  color: #073d73;
  font: 800 clamp(2.2rem, 5vw, 4.8rem)/1 "Outfit", "Noto Sans JP", sans-serif;
}
.main-product {
  border-top: 9px solid #0877c9;
}
.option-product {
  border-top: 9px solid #1aa96b;
  background: #e9f9ef;
}
.tax-note {
  color: #526e86;
  font-size: 0.92rem;
}
.cta-dynamic {
  padding: 150px 24px;
  background: #073d73;
}
.cta-dynamic h2 {
  margin: 20px auto 40px;
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.05em;
}
.cta-dynamic p {
  color: #83dcff;
  font-weight: 800;
}
.cta-dynamic small {
  margin-top: 22px;
  color: #dceefe;
}

@media (max-width: 900px) {
  .hero-dynamic,
  .journey {
    grid-template-columns: 1fr;
  }
  .journey {
    gap: 38px;
  }
  .journey-sticky {
    position: static !important;
  }
  .bento-primary,
  .bento-image {
    grid-column: span 12;
  }
  .bento-card {
    grid-column: span 4;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    margin-top: 8px;
    padding: 0 16px;
    border-radius: 14px;
  }
  .header-link {
    padding: 8px 11px;
  }
  .hero-dynamic {
    padding: 80px 20px 66px;
    gap: 42px;
  }
  .hero-dynamic h1 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .button {
    width: 100%;
  }
  .concept,
  .bento,
  .boundaries,
  .pricing,
  .journey {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-primary,
  .bento-image,
  .bento-card {
    grid-column: span 1;
  }
  .interview-start {
    padding-top: 105px;
    padding-bottom: 110px;
  }
  .journey {
    padding-left: 18px;
    padding-right: 18px;
  }
  .timeline-card {
    position: relative;
    top: auto !important;
    min-height: 0;
  }
  .accordion {
    min-height: 0;
    flex-direction: column;
  }
  .accordion article,
  .accordion article:hover,
  .accordion article:focus {
    flex: auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 30px 24px;
  }
  .motion-marquee div {
    animation-duration: 16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-marquee div { animation: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

/* One-screen animated overview and Kindle-style reader */
/* Reader v2: full-width photography. Overrides follow at end of stylesheet. */
body:has(.hon-stage) {
  overflow: clip;
  background: #eaf7ff;
}
body:has(.hon-stage) footer { display: none; }
body:has(.hon-stage) .site-header {
  position: relative;
  z-index: 20;
  border-bottom-color: rgba(7, 61, 115, 0.12);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}
.hon-stage {
  position: relative;
  height: calc(100svh - 76px);
  min-height: 630px;
  padding: clamp(14px, 2vh, 24px) clamp(22px, 3vw, 52px) clamp(16px, 2.2vh, 28px);
  overflow: clip;
  color: #073d73;
  background:
    radial-gradient(circle at 12% 10%, rgba(79, 203, 255, 0.2), transparent 28%),
    radial-gradient(circle at 90% 86%, rgba(30, 178, 112, 0.14), transparent 30%),
    linear-gradient(145deg, #f8fcff 0%, #e8f6ff 58%, #f4fbf5 100%);
}
.hon-stage-glow {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: conic-gradient(from 90deg, transparent, rgba(43, 179, 235, 0.08), transparent 32%, rgba(38, 166, 100, 0.07), transparent 70%);
  animation: hon-stage-drift 18s linear infinite;
}
@keyframes hon-stage-drift { to { transform: rotate(360deg); } }
.hon-intro,
.hon-reader {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  height: 100%;
  margin: 0 auto;
}
.hon-intro {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(12px, 1.8vh, 20px);
}
.hon-intro-heading { text-align: center; }
.hon-intro-heading > p:first-child,
.hon-reader-top p,
.reader-kicker {
  margin: 0;
  color: #0877c9;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.hon-intro-heading h1 {
  max-width: 1120px;
  margin: 0.05em auto;
  color: #073d73;
  font: 800 clamp(2rem, 4.2vw, 4.1rem)/1.12 "Outfit", "Noto Sans JP", sans-serif;
  letter-spacing: -0.045em;
}
.hon-intro-heading h1 span { color: #eb5d1f; }
.hon-intro-heading > p:last-child { margin: 0; color: #315f83; font-weight: 700; }
.hon-build {
  min-height: 0;
  display: grid;
  grid-template-rows: 46px minmax(0, 1fr) 64px;
  border: 1px solid rgba(19, 107, 166, 0.26);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 80px rgba(7, 65, 112, 0.15);
  backdrop-filter: blur(18px);
}
.hon-build-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #cae5f5;
}
.hon-build-head strong { font-size: 0.9rem; }
.hon-build-controls { display: flex; gap: 8px; }
.hon-build-controls button,
.hon-reader-top button {
  padding: 7px 12px;
  border: 1px solid #a7d8f3;
  border-radius: 7px;
  color: #0b588e;
  background: #f5fbff;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}
.hon-build-body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
}
.hon-build-copy { padding: clamp(20px, 3vw, 44px); }
.hon-build-copy > p:first-child {
  margin: 0 0 10px;
  color: #ec6424;
  font-weight: 900;
}
.hon-build-copy h2 {
  margin: 0 0 12px;
  color: #073d73;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
}
.hon-build-copy > p:last-child { max-width: 360px; margin: 0; color: #456b89; font-weight: 700; line-height: 1.65; }
.hon-build-visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid #d0e8f6;
  background: #eef9ff;
}
.hon-build-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hon-build-focus {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 1.5%;
  width: 23%;
  border: 3px solid #ff6b25;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 9999px rgba(4, 45, 79, 0.29);
  transition: left 650ms cubic-bezier(.2,.8,.2,1), border-color 300ms ease;
}
.hon-stage[data-active-stage="1"] .hon-build-focus { transform: translateX(107%); border-color: #08a8ac; }
.hon-stage[data-active-stage="2"] .hon-build-focus { transform: translateX(214%); border-color: #1aa96b; }
.hon-stage[data-active-stage="3"] .hon-build-focus { transform: translateX(321%); border-color: #208ee4; }
.hon-build-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cae5f5; }
.hon-build-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid #d4eaf6;
  color: #456b89;
  background: rgba(246, 252, 255, 0.9);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease;
}
.hon-build-tabs button:last-child { border-right: 0; }
.hon-build-tabs button[aria-selected="true"] { color: #073d73; background: #fff; box-shadow: inset 0 -4px #ff6b25; }
.hon-build-tabs span { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: #fff; background: #147bc0; font-family: "Outfit", sans-serif; }

.hon-reader {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
}
.hon-reader[hidden], .hon-intro[hidden] { display: none; }
.hon-reader-top { display: flex; align-items: end; justify-content: space-between; padding-top: 10px; }
.hon-reader-top h1 { margin: 0; color: #073d73; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.04em; }
.hon-reader-frame { position: relative; width: 100%; min-width: 0; min-height: 0; padding: 0 62px; }
.hon-reader-window { width: 100%; min-width: 0; height: 100%; overflow: hidden; border-radius: 24px; box-shadow: 0 28px 85px rgba(7, 60, 105, 0.16); }
.hon-reader-track { width: 100%; min-width: 0; height: 100%; display: flex; transition: transform 760ms cubic-bezier(.22,.78,.18,1); touch-action: pan-y; }
.hon-reader-page {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  padding: clamp(32px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(14, 90, 142, 0.2);
  background: rgba(255, 255, 255, 0.94);
}
.hon-reader-page h2 { color: #073d73; font-size: clamp(2rem, 4.3vw, 4.2rem); line-height: 1.14; letter-spacing: -0.05em; }
.hon-reader-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 70px;
  transform: translateY(-50%);
  border: 1px solid #9fcfea;
  border-radius: 10px;
  color: #073d73;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(6, 60, 103, 0.12);
  font: 300 3rem/1 "Outfit", sans-serif;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transition: transform 250ms ease, background 250ms ease;
}
.hon-reader-arrow:hover { transform: translateY(-50%) scale(1.08); background: #fff; }
.hon-reader-arrow.previous { left: 0; }
.hon-reader-arrow.next { right: 0; }
.hon-reader-bottom { display: flex; align-items: center; justify-content: center; gap: 22px; min-height: 28px; }
.hon-reader-bottom p { margin: 0; color: #53758e; font: 700 0.75rem/1 "Outfit", "Noto Sans JP", sans-serif; letter-spacing: 0.08em; }
.hon-reader-dots { display: flex; gap: 7px; }
.hon-reader-dots button { width: 26px; height: 4px; padding: 0; border: 0; border-radius: 9px; background: #a8c9dd; cursor: pointer; }
.hon-reader-dots button[aria-selected="true"] { width: 52px; background: #0a6eac; }
.prototype { display: grid; grid-template-columns: .46fr 1.54fr; align-items: center; gap: 4%; }
.prototype .reader-kicker { position: absolute; top: 34px; left: 5%; }
.prototype-number { color: #0a73b7; font: 800 clamp(9rem, 22vw, 19rem)/.72 "Outfit", sans-serif; letter-spacing: -0.1em; opacity: 0.12; }
.prototype-copy p { max-width: 650px; color: #406782; font-size: 1.05rem; }
.prototype-copy h2 { font-size: clamp(2rem, 3.65vw, 3.55rem); }
.prototype-copy strong { display: inline-block; padding: 11px 16px; color: #8d3716; background: #fff0e7; border-left: 5px solid #ff6b25; }
.workflow ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0; list-style: none; }
.workflow li { min-height: 145px; padding: 20px; border: 1px solid #b7dbef; border-radius: 14px; background: #f3faff; }
.workflow li span { display: grid; width: 30px; height: 30px; margin-bottom: 14px; place-items: center; border-radius: 50%; color: #fff; background: #0b77b8; font-weight: 900; }
.workflow li strong, .workflow li small { display: block; }
.workflow li small { margin-top: 8px; color: #54728a; }
.workflow > a { font-weight: 900; }
.offer-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.offer-grid > div { min-height: 190px; display: grid; align-content: center; padding: 28px; border-radius: 18px; }
.offer-grid small, .offer-grid strong, .offer-grid b { display: block; }
.offer-grid small { font-weight: 900; }
.offer-grid strong { margin: 7px 0 18px; font-size: 1.15rem; }
.offer-grid b { white-space: nowrap; font: 800 clamp(2rem, 3.5vw, 3.35rem)/1 "Outfit", "Noto Sans JP", sans-serif; letter-spacing: -0.04em; }
.offer-main { color: #fff; background: #073d73; }
.offer-option { color: #125d41; background: #ddf7e7; border: 1px solid #9fd6b5; }
.offer > p { color: #526f85; font-weight: 700; }
.conditions { display: grid; align-content: center; padding-right: 22%; background: linear-gradient(110deg, #fff 0 72%, #e2f6ff 72%); }
.conditions::after { content: "30"; position: absolute; right: 2%; bottom: -10%; color: #1682c3; font: 800 16rem/1 "Outfit", sans-serif; opacity: 0.09; }
.conditions p { position: relative; z-index: 1; max-width: 860px; color: #41667f; font-size: 1.08rem; font-weight: 700; }
.conditions-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 22px; margin-top: 20px; }
.conditions-actions > a:last-child { font-weight: 900; }

@media (max-width: 760px) {
  body:has(.hon-stage) { overflow: auto; }
  .hon-stage { height: auto; min-height: calc(100svh - 76px); padding: 12px 12px 20px; }
  .hon-intro { min-height: calc(100svh - 108px); }
  .hon-intro-heading h1 { font-size: clamp(1.75rem, 8.5vw, 2.6rem); }
  .hon-intro-heading > p:last-child { font-size: 0.8rem; line-height: 1.5; }
  .hon-build { grid-template-rows: 42px minmax(0, 1fr) 54px; }
  .hon-build-head { padding: 0 10px; }
  .hon-build-head strong { font-size: 0.72rem; }
  .hon-build-controls button { padding: 6px 7px; font-size: 0.64rem; }
  .hon-build-body { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); }
  .hon-build-copy { padding: 14px 18px 10px; }
  .hon-build-copy h2 { margin-bottom: 4px; font-size: 1.55rem; }
  .hon-build-copy > p:last-child { font-size: 0.76rem; line-height: 1.45; }
  .hon-build-visual { border-left: 0; border-top: 1px solid #d0e8f6; }
  .hon-build-tabs button { gap: 3px; font-size: 0.65rem; }
  .hon-build-tabs span { width: 20px; height: 20px; }
  .hon-reader { min-height: calc(100svh - 108px); }
  .hon-reader-top h1 { font-size: 1.6rem; }
  .hon-reader-frame { padding: 0 36px; min-height: 650px; }
  .hon-reader-arrow { width: 31px; height: 58px; font-size: 2.2rem; }
  .hon-reader-page { padding: 28px 22px; }
  .hon-reader-page h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .prototype { display: block; }
  .prototype .reader-kicker { position: static; }
  .prototype-number { margin: 40px 0 20px; font-size: 9rem; }
  .workflow ol { grid-template-columns: 1fr 1fr; }
  .workflow li { min-height: 112px; padding: 12px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-grid > div { min-height: 135px; padding: 20px; }
  .conditions { padding-right: 22px; background: #fff; }
  .conditions-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .hon-stage-glow { animation: none; }
  .hon-reader-track, .hon-build-focus { transition: none; }
}

/* Full-width photographic edition */
html:has(.hon-stage), body:has(.hon-stage) { height:100%; overflow:clip; }
body:has(.hon-stage) .site-header { top:0; margin:0; width:100%; height:54px; border-radius:0; padding:0 24px; box-shadow:none; }
.hon-stage { height:calc(100svh - 54px); min-height:0; padding:12px 18px 10px; }
.hon-intro,.hon-reader { width:100%; max-width:none; min-height:0; }
.hon-intro-heading h1 { font-size:clamp(26px,3.2vw,52px); }
.hon-intro-heading > p:first-child { display:none; }
.hon-reader-top { padding:0 48px; align-items:center; }
.hon-reader-top h1 { font-size:clamp(22px,2.3vw,34px); }
.hon-reader-top p { display:none; }
.hon-reader-frame { padding:0 46px; min-height:0; }
.hon-reader-arrow { width:38px; height:64px; }
.hon-reader-page { display:flex; flex-direction:column; justify-content:center; gap:14px; padding:30px 32px 30px 62%; background:#fff; isolation:isolate; }
.slide-photo { position:absolute; inset:0 auto 0 0; width:59%; height:100%; object-fit:cover; z-index:-1; }
.hon-reader-page .reader-kicker { position:static; font-size:12px; }
.hon-reader-page h2,.prototype-copy h2 { margin:0; font-size:clamp(25px,2.6vw,44px); line-height:1.4; letter-spacing:-.04em; }
.hon-reader-page p { margin:0; font-size:clamp(13px,1.15vw,18px); line-height:1.85; }
.prototype-copy { display:grid; gap:22px; }
.prototype-copy strong { font-size:14px; padding:12px; }
.workflow ol { grid-template-columns:1fr 1fr; gap:8px; margin:0; }
.workflow li { min-height:0; padding:12px; }
.workflow li span { margin:0 0 5px; width:24px; height:24px; }
.workflow li small { margin-top:3px; font-size:12px; }
.workflow > a { font-size:14px; }
.offer-grid { grid-template-columns:minmax(0,1fr); gap:9px; }
.offer-grid > div { min-width:0; min-height:0; padding:16px 18px; }
.offer-grid b { font-size:clamp(23px,2.4vw,38px); }
.offer-grid strong { margin:4px 0 8px; font-size:15px; }
.offer-main small { color:#b5e6ff; }
.conditions::after { display:none; }
.conditions-actions { flex-direction:column; align-items:stretch; gap:10px; margin:0; }
.conditions-actions .button { padding:14px; font-size:15px; }
.conditions-actions > a:last-child { font-size:13px; }
.hon-build-body { grid-template-columns:minmax(270px,.7fr) minmax(0,1.7fr); }
.hon-build-copy { padding:24px; }
.hon-build-copy h2 { font-size:clamp(25px,3vw,46px); }
.hon-speech { position:relative; margin-top:24px; padding:22px; border:2px solid #1594c6; border-radius:20px; background:white; color:#073d73; font-size:clamp(15px,1.3vw,21px); line-height:1.8; font-weight:700; box-shadow:0 10px 25px #08345b14; animation:hon-bubble-in .3s ease-out; }
.hon-speech::before { content:''; position:absolute; right:-11px; top:30px; width:18px; height:18px; background:#fff; border-top:2px solid #1594c6; border-right:2px solid #1594c6; transform:rotate(45deg); }
.hon-speech[hidden] { display:none; }
@keyframes hon-bubble-in { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@media(max-width:760px) {
  body:has(.hon-stage) .site-header { height:48px; padding:0 12px; }
  .brand { font-size:12px; }.header-link { font-size:12px; }
  .hon-stage { height:calc(100svh - 48px); padding:8px; }
  .hon-reader-top { padding:0 4px; }.hon-reader-top h1 { font-size:20px; }
  .hon-reader-top button { font-size:10px; }
  .hon-reader-frame { padding:0 30px; }.hon-reader-arrow { width:26px; height:48px; }
  .hon-reader-page { justify-content:flex-start; padding:calc(32svh + 14px) 16px 12px; gap:8px; overflow-y:auto; }
  .slide-photo { width:100%; height:32svh; object-position:center; }
  .hon-reader-page h2,.prototype-copy h2 { font-size:22px; line-height:1.35; }
  .hon-reader-page p,.prototype-copy strong { font-size:12px; line-height:1.65; }
  .prototype-copy { gap:10px; }.hon-reader-page .reader-kicker { font-size:10px; }
  .offer-grid > div { padding:9px 12px; }.offer-grid b { font-size:22px; }.offer-grid strong { font-size:12px; margin:2px 0 4px; }
  .hon-reader-bottom { gap:8px; flex-wrap:wrap; }.hon-reader-bottom p { font-size:9px; }
  .workflow li { padding:7px; }.workflow li span { display:none; }.workflow li strong { font-size:12px; }.workflow li small { font-size:10px; }
  .hon-build-body { display:flex; flex-direction:column-reverse; }
  .hon-build-visual { width:100%; flex:1; min-height:130px; }
  .hon-build-copy { padding:14px; min-height:190px; width:100%; }
  .hon-build-copy h2 { font-size:22px; }.hon-build-copy > p:first-child { font-size:12px; margin:0; }
  .hon-speech { margin-top:10px; padding:12px; font-size:13px; }.hon-speech::before { display:none; }
}
@media(prefers-reduced-motion:reduce) { .hon-speech { animation:none; } }
/* Published book examples: dedicated full-width reader page. */
.hon-reader-page.examples { padding: 24px 32px; justify-content: center; gap: 14px; }
.hon-reader-page.examples h2 { margin: 0; font-size: clamp(22px, 2.5vw, 38px); }
.hon-bookshelf { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; align-items: start; }
.hon-bookshelf a { display: flex; flex-direction: column; gap: 10px; color: #103e69; text-decoration: none; min-width: 0; }
.hon-bookshelf img { width: 100%; height: clamp(140px, 29vh, 310px); object-fit: contain; filter: drop-shadow(5px 9px 6px #123a5d24); transition: transform .25s; }
.hon-bookshelf a:hover img { transform: translateY(-6px) rotate(-1deg); }
.hon-bookshelf strong { font-size: clamp(13px, 1.15vw, 18px); line-height: 1.5; }
.hon-bookshelf span { font-size: 12px; }
.hon-reader-page.examples .hon-example-note { font-size: 12px; margin: 0; }
@media(max-width:760px) {
  .hon-reader-page.examples { padding: 18px; justify-content: flex-start; overflow-y: auto; }
  .hon-bookshelf { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
  .hon-bookshelf img { height: 160px; }
}
.hon-header-nav { display:flex; align-items:center; gap:24px; }
.hon-header-nav a { text-decoration:none; color:#124878; font-size:14px; font-weight:700; }
.hon-header-nav a[aria-current] { text-decoration:underline; text-underline-offset:7px; }
.hon-header-nav .header-link { color:white; }
.hon-process { max-width:1500px; margin:0 auto; padding:32px 24px 64px; color:#103e69; }
.process-title { text-align:center; margin:0 0 32px; }
.process-title h1 { font-size:clamp(28px,3.5vw,52px); margin:12px 0; line-height:1.35; }
.process-title p { line-height:1.8; }
.hon-process h2 { font-size:clamp(22px,2vw,32px); }
.process-roles { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.process-roles section { background:#fff; border:1px solid #c9e0ee; border-radius:18px; overflow:hidden; }
.process-roles img { display:block; width:100%; height:170px; object-fit:cover; }
.process-roles section>div { padding:20px; }
.process-roles small { color:#087db2; font-weight:800; }
.process-roles h3 { font-size:20px; line-height:1.5; margin:10px 0; }
.process-roles p,.process-roles li { font-size:14px; line-height:1.9; }
.process-roles strong { font-size:13px; display:block; }
.process-roles .reception { background:#eefaf5; border-color:#a2d6be; display:block; }
.process-roles .reception a { display:inline-block; margin-top:20px; }
.process-sequence { margin-top:48px; }
.process-sequence ol { list-style:none; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; align-items:start; }
.process-sequence details { border:1px solid #c9e0ee; background:white; border-radius:12px; overflow:hidden; }
.process-sequence summary { display:flex; align-items:center; gap:18px; padding:18px; cursor:pointer; }
.process-sequence summary::after { content:'詳細'; margin-left:auto; font-size:12px; flex-shrink:0; }
.process-sequence details[open] summary::after { content:'閉じる'; }
.process-sequence summary small,.process-sequence summary strong { display:block; }
.process-sequence summary small { font-size:12px; color:#087db2; margin-bottom:5px; }
.process-sequence .step-number { font-size:27px; font-weight:800; color:#087db2; }
.process-sequence details p { padding:0 24px 20px 68px; margin:0; font-size:15px; line-height:1.9; }
.process-paper { margin-top:36px; background:white; border:1px solid #c9e0ee; border-radius:18px; overflow:hidden; display:grid; grid-template-columns:1fr 1fr; align-items:center; }
.process-paper img { width:100%; height:350px; object-fit:cover; }
.process-paper>div { padding:28px; }
.process-note { font-size:13px; line-height:1.8; }
@media(max-width:900px) { .process-roles { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:600px) {
  .hon-header-nav { gap:10px; }
  .hon-header-nav a { font-size:12px; white-space:nowrap; }
  .site-header .brand { font-size:11px; }
  .site-header .brand span { display:none; }
  .hon-process { padding:24px 16px; }
  .process-roles,.process-sequence ol,.process-paper { grid-template-columns:1fr; }
  .process-roles img { height:190px; }
  .process-paper img { height:220px; }
}
.hon-reader-window { box-shadow: 0 0 18px rgba(7,60,105,.10); }
.hon-development-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  color: rgba(32, 53, 73, .78);
  text-shadow: 0 1px 3px #fff, 0 0 10px rgba(255,255,255,.9);
  font-size: clamp(22px, 4.1vw, 64px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.hon-demo { max-width:1500px; margin:24px auto 60px; padding:0 24px; color:#123f67; }
.hon-demo>header { text-align:center; }
.hon-demo h1 { font-size:clamp(28px,3vw,46px); margin:10px; }
.hon-demo>header p { font-size:14px; line-height:1.8; }
.demo-player { margin-top:24px; background:white; border:1px solid #bdd8e9; border-radius:18px; overflow:hidden; }
.demo-toolbar,.demo-controls { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px; background:#f1f8fc; }
.hon-demo button { padding:10px 16px; background:white; color:#124878; border:1px solid #a9cede; border-radius:8px; cursor:pointer; font:inherit; font-size:14px; }
.hon-demo button:disabled { opacity:.4; cursor:default; }
.hon-demo button[aria-current="step"],.hon-demo [data-demo-play] { background:#124878; color:white; }
.demo-layout { display:grid; grid-template-columns:320px minmax(0,1fr); min-height:520px; }
.demo-layout aside { padding:26px; border-right:1px solid #c9ddea; }
.demo-layout aside h2 { font-size:26px; line-height:1.5; }
.demo-layout aside p { line-height:1.9; }
.demo-caption { font-size:12px!important; color:#526879; }
.demo-screen { padding:22px 32px; background:#fff; max-height:610px; overflow:auto; color:#25394a; }
.demo-appbar { border-bottom:1px solid #dae4eb; padding-bottom:12px; margin-bottom:20px; font-size:13px; font-weight:700; }
.demo-document,.demo-composer { background:#f7f9fa; padding:20px; border:1px solid #cbd8e0; border-radius:12px; font-size:15px; line-height:1.9; white-space:pre-wrap; }
.demo-target { display:block; padding:14px 20px; margin:18px 0; border:2px solid #008cab; border-radius:10px; background:#e9f8fc; font-weight:700; animation:demo-pulse 1.5s ease-in-out 2; }
.demo-feedback { color:#18734f; font-weight:700; }
.demo-message { padding:12px 18px; margin:12px 0; max-width:88%; line-height:1.7; font-size:16px; border-radius:12px; background:#f4f7f8; animation:demo-appear .5s ease-out; }
.demo-message small { display:block; margin-bottom:4px; font-size:12px; color:#526879; }
.demo-message.customer { margin-left:auto; background:#eaf3f9; }
.demo-speaking { text-align:center; color:#087a8f; font-weight:700; padding:10px; animation:demo-pulse 1.5s ease-in-out infinite; }
.demo-reveal { animation:demo-appear 1s ease-out; }
.demo-key { font-size:30px; font-weight:800; padding:14px; text-align:center; }
.demo-paper { border:1px solid #d4dde3; padding:14px; font-size:13px; }
.demo-paper .demo-message { font-size:12px; padding:6px; margin:5px; }
.demo-print-settings { max-width:500px; margin:30px auto; padding:24px; border:1px solid #bbcddd; border-radius:12px; }
.demo-chapters { display:flex; gap:5px; flex-wrap:wrap; justify-content:center; }
.demo-chapters button { font-size:12px; padding:8px; }
.demo-followup { max-width:1000px; margin:28px auto; line-height:1.9; }
.demo-followup>button { margin:12px; }
.demo-printout { display:none; }
@keyframes demo-appear { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
@keyframes demo-pulse { 50% { box-shadow:0 0 0 4px #108db225; } }
@media(max-width:760px) { .demo-layout { grid-template-columns:1fr; } .demo-layout aside { padding:16px; border-right:0; } .demo-layout aside h2 { margin:6px 0; font-size:22px; } .demo-screen { padding:16px; min-height:430px; } .hon-demo { padding:0 12px; } .demo-toolbar { flex-wrap:wrap; } .demo-controls { flex-wrap:wrap; } .demo-chapters { order:3; width:100%; } .hon-header-nav { flex-wrap:wrap; gap:8px; } body:has(.hon-demo) .site-header { height:auto; min-height:54px; } }
@media(prefers-reduced-motion:reduce) { .demo-target,.demo-message,.demo-speaking,.demo-reveal { animation:none; } }
@media print { body:has(.hon-demo)>header,body:has(.hon-demo)>footer,body:has(.hon-demo) .hon-development-overlay,.hon-demo>*:not(.demo-printout) { display:none!important; } .hon-demo,.demo-printout { display:block; margin:0; padding:0; max-width:none; color:black; } .demo-printout h1 { font-size:22px; } .demo-printout h2 { font-size:16px; } }
.hon-demo [hidden] { display:none!important; }
.demo-player { scroll-margin-top:100px; }
