:root {
  --bg: #f5f7f2;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --surface-soft: #eef4f4;
  --ink: #3c414b;
  --ink-soft: #6a6e7d;
  --line: rgba(17, 43, 69, 0.12);
  --line-strong: rgba(17, 43, 69, 0.24);
  --navy: #112b45;
  --navy-deep: #0a1a2a;
  --bluegreen: #1e5b74;
  --teal: #2fa38a;
  --teal-soft: rgba(47, 163, 138, 0.14);
  --gold: #d9c08d;
  --shadow: 0 24px 70px rgba(17, 43, 69, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1200px, calc(100vw - 40px));
  --font-heading: Meiryo, "Yu Gothic UI", "Hiragino Sans", sans-serif;
  --font-body: Meiryo, "Yu Gothic UI", "Hiragino Sans", sans-serif;
  --font-number: Meiryo, "Yu Gothic UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(47, 163, 138, 0.16), transparent 32%),
    linear-gradient(180deg, #f8faf7 0%, var(--bg) 46%, #eef4ef 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul {
  margin-top: 0;
}

ul {
  padding-left: 1.1rem;
}

.site-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 242, 0.86);
  border-bottom: 1px solid rgba(17, 43, 69, 0.08);
}

.header-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--bluegreen));
  color: #fff;
  font-family: var(--font-number);
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-number);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), #3cc0a4);
  color: #fff;
  box-shadow: 0 12px 32px rgba(47, 163, 138, 0.25);
}

.button-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
}

.button-ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero {
  position: relative;
  padding: 72px 0 48px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(17, 43, 69, 0.96) 0%, rgba(17, 43, 69, 0.88) 44%, rgba(30, 91, 116, 0.76) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
  clip-path: ellipse(120% 100% at 50% 0%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  clip-path: ellipse(120% 100% at 50% 0%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin-bottom: 12px;
  color: #7E757B;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f295bf;
  box-shadow: 0 2px 6px rgba(242, 149, 191, 0.4);
}

.section-label-light {
  color: #9de1d2;
}

.hero-copy {
  color: #2b2d38;
  animation: rise-in 700ms ease both;
}

.hero-copy h1,
.section-heading h2,
.intro-grid h2,
.domains-grid h2,
.cta-panel h2,
.fit-grid h2,
.dx-grid h2 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #575056;
}

.hero-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  font-weight: 900;
}

.hero-copy h1 span {
  color: #a6f2df;
}

.hero-lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  margin-bottom: 28px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.stat-strip li {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-strip strong,
.scale-cards strong {
  display: block;
  font-family: var(--font-number);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.stat-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: min(460px, 100%);
  border-radius: 30px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 43, 69, 0.08);
  box-shadow: 0 20px 46px rgba(17, 43, 69, 0.08);
}

.hero-illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.section {
  padding: 100px 0;
}

.section + .section {
  margin-top: 40px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(238, 244, 244, 0.92));
  margin-top: 48px;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(47, 163, 138, 0.18), transparent 30%),
    linear-gradient(180deg, var(--navy-deep), #10263c 100%);
  color: #fff;
}

.section-accent {
  background: linear-gradient(180deg, rgba(47, 163, 138, 0.1), rgba(47, 163, 138, 0.04));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.dx-section {
  padding-top: 80px;
}

.dx-content {
  padding: 0;
}

.dx-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.dx-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 43, 69, 0.08);
  box-shadow: 0 16px 30px rgba(17, 25, 41, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  color: inherit;
}

.dx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(17, 25, 41, 0.12);
}

.dx-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(202, 200, 216, 0.5);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: #4a4a5a;
  font-weight: 700;
}

.dx-card strong {
  font-size: 1rem;
  color: #2d2f3c;
}

.dx-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5d606d;
  line-height: 1.6;
}

.dx-card-muted {
  border-color: rgba(17, 43, 69, 0.04);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.dx-card-muted:hover {
  box-shadow: 0 18px 28px rgba(17, 25, 41, 0.08);
  transform: translateY(-4px);
}

.dx-cta-link {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.dx-cta-link a {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(90, 100, 130, 0.35);
  color: #3b3f51;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.dx-cta-link a:hover {
  color: #2a65b8;
  border-color: rgba(42, 101, 184, 0.8);
  transform: translateY(-2px);
}

.section-heading h2,
.intro-grid h2,
.domains-grid h2,
.cta-panel h2,
.fit-grid h2,
.dx-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.section-heading p,
.intro-grid p,
.domains-grid p,
.cta-panel p,
.fit-grid p,
.dx-grid p {
  color: var(--ink-soft);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.74);
}

.intro-band {
  padding-top: 54px;
}

.intro-grid,
.cta-panel,
.dx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(17, 43, 69, 0.1);
}

.issue-grid,
.strength-grid,
.effect-grid,
.module-grid,
.pattern-grid,
.scale-cards,
.check-grid {
  display: grid;
  gap: 20px;
}

 .issue-grid,
  .strength-grid,
  .effect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-card,
.strength-card,
.effect-card,
.pattern-card,
.scale-cards article,
.check-grid div,
.module-card,
.domain-board article {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 43, 69, 0.1);
}

.issue-card h3,
.strength-card h3,
.effect-card h3,
.pattern-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.issue-card p,
.strength-card p,
.effect-card p,
.pattern-card p,
.scale-cards span,
.module-card span,
.domain-board p,
.table-note {
  color: var(--ink-soft);
}

.issue-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--teal-soft);
  color: var(--teal);
  font-family: var(--font-number);
  font-weight: 700;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.split-heading > p {
  max-width: 440px;
}

.coverage-grid,
.transaction-grid,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.flow-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 247, 0.96));
  border: 1px solid rgba(17, 43, 69, 0.08);
}

.flow-step {
  position: relative;
  padding: 15px 18px 15px 62px;
  border-radius: 18px;
  background: var(--surface-soft);
  font-weight: 700;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background: #bfd1d9;
  box-shadow: 0 0 0 8px rgba(191, 209, 217, 0.16);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 34px;
  top: calc(100% + 2px);
  width: 2px;
  height: 12px;
  background: rgba(17, 43, 69, 0.16);
}

.flow-step.is-accent {
  background: rgba(217, 192, 141, 0.2);
}

.flow-step.is-accent::before {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(217, 192, 141, 0.18);
}

.flow-step.is-core {
  background: rgba(47, 163, 138, 0.14);
}

.flow-step.is-core::before {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(47, 163, 138, 0.18);
}

.domains-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.domains-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.domain-board {
  display: grid;
  gap: 18px;
}

.domain-board article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.domain-board span,
.module-card span,
.pattern-badge,
.scale-cards span {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.domain-board strong,
.module-card strong,
.scale-cards strong,
.pattern-card strong {
  display: block;
  font-size: 1.32rem;
}

.domain-featured {
  background: linear-gradient(135deg, rgba(47, 163, 138, 0.26), rgba(166, 242, 223, 0.08));
}

.table-shell {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 43, 69, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 43, 69, 0.08);
  text-align: center;
}

.comparison-table thead th {
  background: rgba(17, 43, 69, 0.06);
  font-weight: 700;
}

.comparison-table tbody th {
  text-align: left;
  font-weight: 700;
}

.highlight-col {
  background: rgba(47, 163, 138, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.table-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.benefit-list span,
.dx-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17, 43, 69, 0.06);
  border: 1px solid rgba(17, 43, 69, 0.08);
  font-weight: 700;
}

.transaction-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  min-height: 420px;
  padding: 26px;
}

.transaction-map::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  border: 1px dashed rgba(17, 43, 69, 0.16);
}

.transaction-map div {
  position: relative;
  padding: 26px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 43, 69, 0.08);
  font-weight: 700;
}

.modules-layout {
  display: grid;
  gap: 26px;
}

.module-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.module-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 244, 0.92));
}

.module-card-soft {
  background: linear-gradient(180deg, rgba(17, 43, 69, 0.08), rgba(17, 43, 69, 0.04));
}

.pattern-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pattern-card {
  min-height: 232px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.pattern-card p,
.pattern-card strong {
  color: #fff;
}

.pattern-badge {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(166, 242, 223, 0.16);
  color: #a6f2df;
}

.pattern-badge.subtle {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
}

.pattern-card.featured {
  background: linear-gradient(160deg, rgba(47, 163, 138, 0.24), rgba(255, 255, 255, 0.08));
}

.scale-grid {
  display: grid;
  gap: 26px;
}

.scale-cards {
  grid-template-columns: 1fr;
  max-width: min(760px, 100%);
  margin: 0 auto;
  gap: 30px;
}

.scale-cards article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 242, 0.88));
}

.scale-cards span {
  display: block;
  margin-top: 10px;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-grid div {
  padding: 22px 24px 22px 58px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 43, 69, 0.08);
  position: relative;
  font-weight: 700;
}

.check-grid div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #49cfb2);
  box-shadow: 0 0 0 7px rgba(47, 163, 138, 0.14);
}

.effect-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 247, 242, 0.94));
}

.dx-grid {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.44));
}

.dx-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-section {
  padding-top: 30px;
}

.cta-panel {
  background: linear-gradient(140deg, var(--navy) 0%, var(--bluegreen) 100%);
  color: #fff;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 42px 0 56px;
  background: #0c1724;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

#issues {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 45px rgba(17, 25, 41, 0.08);
  margin-top: 40px;
  padding-top: 84px;
  padding-bottom: 84px;
}

#comparison {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,246,249,0.95));
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(17, 25, 41, 0.06);
  padding-top: 80px;
  padding-bottom: 80px;
}

.brand-footer .brand-text small,
.brand-footer .brand-text strong {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-meta-links a,
.footer-copyright {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-copyright {
  margin: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .domains-grid,
  .coverage-grid,
  .transaction-grid,
  .fit-grid,
  .intro-grid,
  .cta-panel,
  .dx-grid {
    grid-template-columns: 1fr;
  }

  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pattern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner,
  .header-actions,
  .hero-actions,
  .cta-actions,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    padding: 16px 0;
  }

  .issue-grid,
  .strength-grid,
  .effect-grid,
  .scale-cards,
  .check-grid,
  .module-grid,
  .pattern-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: block;
  }

  .transaction-orbit {
    inset: 88px 14px 96px;
  }

  .signal-card {
    position: static;
    width: auto;
    margin-bottom: 18px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .node-accounting {
    left: 2%;
  }

  .table-shell {
    margin-inline: -8px;
  }

  .dx-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .intro-grid,
  .cta-panel,
  .dx-grid,
  .flow-card,
  .issue-card,
  .strength-card,
  .effect-card,
  .pattern-card,
  .scale-cards article,
  .check-grid div,
  .module-card,
  .domain-board article {
    padding: 22px;
  }

  .transaction-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .transaction-map::before {
    display: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .transaction-orbit {
    inset: 96px 0 120px;
  }

  .orbit-node {
    min-width: 90px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .orbit-core {
    width: 128px;
    height: 128px;
    margin: -64px 0 0 -64px;
  }
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.form-section {
  padding-top: 36px;
}

.external-cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 28px;
  align-items: center;
}

.form-intro {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(17, 43, 69, 0.08);
  box-shadow: var(--shadow);
}

.support-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(17, 43, 69, 0.04);
  border: 1px solid rgba(17, 43, 69, 0.08);
}

.support-card span {
  display: inline-flex;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--navy);
}

.external-cta-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 246, 245, 0.88));
  border: 1px solid rgba(17, 43, 69, 0.08);
  box-shadow: var(--shadow);
}

.cta-banner-link {
  display: block;
}

.cta-banner-button {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e43289 0%, #db287c 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 18px 34px rgba(219, 40, 124, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-banner-link:hover .cta-banner-button,
.cta-banner-link:focus-visible .cta-banner-button {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(219, 40, 124, 0.28);
}

.external-cta-note {
  margin: 14px 4px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: center;
}

.mobile-cta a {
  background: linear-gradient(180deg, #e43289 0%, #db287c 100%);
}

@media (max-width: 1120px) {
  .external-cta-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-intro,
  .external-cta-card {
    padding: 22px;
  }

  .cta-banner-button {
    min-height: 84px;
    font-size: 1.35rem;
  }
}

:root {
  --bg: #efeded;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: #f3edef;
  --ink: #4e474b;
  --ink-soft: #766f73;
  --line: rgba(108, 100, 106, 0.14);
  --line-strong: rgba(108, 100, 106, 0.28);
  --navy: #6a6167;
  --navy-deep: #575056;
  --bluegreen: #a79ea4;
  --teal: #e5357d;
  --teal-soft: rgba(229, 53, 125, 0.12);
  --gold: #c68a42;
  --shadow: 0 24px 70px rgba(92, 80, 88, 0.12);
}

body {
  background:
    radial-gradient(circle at top left, rgba(229, 53, 125, 0.08), transparent 28%),
    linear-gradient(180deg, #f6f4f5 0%, var(--bg) 48%, #ebe8ea 100%);
}

.site-header {
  background: rgba(246, 244, 245, 0.84);
  border-bottom-color: rgba(108, 100, 106, 0.1);
}

.brand-mark {
  background: linear-gradient(135deg, #f0478d, #c9bcc2);
}

.site-nav a::after,
.section-label,
.eyebrow {
  color: var(--teal);
  background: linear-gradient(90deg, var(--teal), #f06da1);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-nav a::after {
  background: var(--teal);
}

.button-primary {
  background: linear-gradient(135deg, #eb3f87, #d62b72);
  box-shadow: 0 14px 34px rgba(214, 43, 114, 0.24);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(136, 122, 130, 0.28);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.hero-backdrop {
  background:
    linear-gradient(120deg, rgba(91, 84, 89, 0.96) 0%, rgba(109, 100, 107, 0.92) 48%, rgba(195, 187, 192, 0.84) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-copy h1 span {
  color: #ffb4cf;
}

.signal-card,
.transaction-orbit,
.orbit-core,
.orbit-node {
  border-color: rgba(255, 255, 255, 0.22);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(229, 53, 125, 0.14), transparent 34%),
    linear-gradient(180deg, #645d62, #575056 100%);
}

.issue-index,
.flow-step.is-core,
.highlight-col,
.benefit-list span,
.dx-tags span {
  background: rgba(229, 53, 125, 0.1);
  color: var(--teal);
}

.flow-step.is-core::before {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(229, 53, 125, 0.16);
}

.domain-featured {
  background: linear-gradient(135deg, rgba(229, 53, 125, 0.18), rgba(255, 255, 255, 0.08));
}

.module-card {
  border-top: 4px solid rgba(108, 100, 106, 0.24);
}

.module-grid .module-card:nth-child(1) {
  border-top-color: #dd4f8d;
  background: linear-gradient(180deg, rgba(255, 246, 250, 0.98), rgba(245, 234, 239, 0.96));
}

.module-grid .module-card:nth-child(2) {
  border-top-color: #cf944d;
  background: linear-gradient(180deg, rgba(252, 247, 239, 0.98), rgba(246, 237, 221, 0.96));
}

.module-grid .module-card:nth-child(3) {
  border-top-color: #94b25c;
  background: linear-gradient(180deg, rgba(247, 252, 241, 0.98), rgba(233, 242, 221, 0.96));
}

.module-grid .module-card:nth-child(4) {
  border-top-color: #dd4f8d;
  background: linear-gradient(180deg, rgba(255, 246, 250, 0.98), rgba(245, 234, 239, 0.96));
}

.module-grid .module-card:nth-child(5) {
  border-top-color: #b88748;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(244, 236, 223, 0.96));
}

.module-grid .module-card:nth-child(6) {
  border-top-color: #9f969c;
  background: linear-gradient(180deg, rgba(250, 248, 249, 0.98), rgba(236, 232, 234, 0.96));
}

.pattern-card {
  background: rgba(255, 255, 255, 0.08);
}

.pattern-card.featured {
  background: linear-gradient(160deg, rgba(229, 53, 125, 0.24), rgba(255, 255, 255, 0.08));
}

.support-card {
  background: rgba(229, 53, 125, 0.05);
  border-color: rgba(229, 53, 125, 0.14);
}

.cta-banner-button,
.mobile-cta a {
  background: linear-gradient(180deg, #ea3d86 0%, #d72c73 100%);
  box-shadow: 0 18px 34px rgba(215, 44, 115, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 35;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-block;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-panel {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 18px;
  }

  .site-header.is-open .header-panel {
    display: flex;
  }

  .site-nav,
  .header-actions {
    width: 100%;
  }

  .site-nav {
    display: grid;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 900px) {
  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 86px;
  }
}

/* Design refresh: lighter, illustration-led, Apple-like refinement */
.hero {
  padding: 38px 0 32px;
}

.hero-backdrop {
  inset: 24px 24px auto;
  height: 720px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 24%, rgba(242, 124, 170, 0.20), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(201, 188, 194, 0.32), transparent 24%),
    radial-gradient(circle at 74% 70%, rgba(223, 191, 147, 0.20), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,244,246,0.92) 48%, rgba(239,236,238,0.95) 100%);
  border: 1px solid rgba(130, 119, 126, 0.10);
  clip-path: none;
  box-shadow: 0 30px 80px rgba(104, 94, 100, 0.10);
}

.hero::after {
  inset: 24px 24px auto;
  height: 720px;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(255,255,255,0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 18%, rgba(236, 101, 153, 0.18) 0 2px, transparent 3px),
    linear-gradient(rgba(111, 103, 108, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 103, 108, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  border-radius: 42px;
  opacity: 1;
  clip-path: none;
}

.hero-grid {
  gap: 48px;
  align-items: center;
  min-height: 690px;
}

.hero-copy {
  color: var(--ink);
  padding: 42px 0 0 18px;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  letter-spacing: -0.045em;
  color: #554e54;
  margin-bottom: 22px;
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #ef6a9f, #d83b7d 62%, #b75583 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 560px;
  color: #716a6f;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-feature-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(132, 122, 128, 0.12);
  color: #6b6368;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(109, 97, 105, 0.08);
}

.hero-actions {
  margin-bottom: 24px;
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 26px;
}

.stat-strip {
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 14px;
}

.stat-strip li {
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(122, 112, 118, 0.10);
  backdrop-filter: blur(14px);
}

.stat-strip span {
  color: #7a7378;
}

.hero-visual {
  min-height: 640px;
  display: grid;
  align-items: center;
}

.hero-scene {
  position: relative;
  min-height: 620px;
}

.hero-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 44px rgba(102, 91, 98, 0.14));
}

.floating-note,
.hero-mini-card {
  position: absolute;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(122, 112, 118, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 32px rgba(109, 97, 105, 0.10);
  backdrop-filter: blur(14px);
}

.floating-note {
  padding: 16px 18px;
}

.floating-note span,
.hero-mini-card small {
  display: block;
  margin-bottom: 6px;
  color: #91888e;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note strong,
.hero-mini-card strong {
  display: block;
  color: #5d565c;
  font-size: 0.98rem;
  line-height: 1.5;
}

.note-left {
  top: 92px;
  left: 16px;
}

.note-right {
  top: 68px;
  right: 0;
}

.hero-mini-card {
  padding: 15px 16px;
  max-width: 190px;
}

.mini-card-a {
  left: 34px;
  bottom: 94px;
}

.mini-card-b {
  right: 18px;
  top: 258px;
}

.mini-card-c {
  right: 48px;
  bottom: 68px;
}

.hero-module-strip {
  position: relative;
  z-index: 2;
  margin-top: -68px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hero-module-card {
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(126, 116, 123, 0.10);
  box-shadow: 0 20px 50px rgba(104, 94, 100, 0.10);
  backdrop-filter: blur(18px);
}

.hero-module-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #595258;
}

.hero-module-card small {
  color: #8a8288;
}

.module-icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.module-icon::before,
.module-icon::after {
  content: "";
  position: absolute;
}

.icon-property {
  background: linear-gradient(180deg, rgba(239, 106, 159, 0.16), rgba(239, 106, 159, 0.05));
}

.icon-property::before {
  left: 12px;
  top: 24px;
  width: 30px;
  height: 18px;
  background: rgba(239, 106, 159, 0.86);
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
}

.icon-customer {
  background: linear-gradient(180deg, rgba(148, 178, 92, 0.18), rgba(148, 178, 92, 0.06));
}

.icon-customer::before {
  left: 18px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(148, 178, 92, 0.88);
}

.icon-customer::after {
  left: 12px;
  bottom: 10px;
  width: 30px;
  height: 18px;
  border-radius: 18px 18px 12px 12px;
  background: rgba(148, 178, 92, 0.72);
}

.icon-contract {
  background: linear-gradient(180deg, rgba(228, 95, 147, 0.18), rgba(228, 95, 147, 0.05));
}

.icon-contract::before {
  left: 15px;
  top: 11px;
  width: 24px;
  height: 30px;
  border-radius: 6px;
  background: rgba(228, 95, 147, 0.82);
}

.icon-contract::after {
  right: 12px;
  bottom: 12px;
  width: 16px;
  height: 4px;
  background: rgba(228, 95, 147, 0.82);
  box-shadow: -8px -8px 0 rgba(228, 95, 147, 0.56), -2px -16px 0 rgba(228, 95, 147, 0.38);
  transform: rotate(-36deg);
}

.icon-payment {
  background: linear-gradient(180deg, rgba(191, 138, 69, 0.18), rgba(191, 138, 69, 0.05));
}

.icon-payment::before {
  left: 11px;
  top: 15px;
  width: 32px;
  height: 22px;
  border-radius: 10px;
  background: rgba(191, 138, 69, 0.85);
}

.icon-payment::after {
  right: 8px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(223, 191, 147, 0.95);
}

.intro-grid,
.issue-card,
.strength-card,
.flow-card,
.domain-board article,
.table-shell,
.transaction-map div,
.module-card,
.pattern-card,
.scale-cards article,
.check-grid div,
.effect-card,
.form-intro,
.external-cta-card {
  box-shadow: 0 20px 50px rgba(104, 94, 100, 0.08);
  border-color: rgba(126, 116, 123, 0.10);
}

.issue-card,
.strength-card,
.effect-card,
.scale-cards article,
.check-grid div,
.module-card {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(16px);
}

.section-heading h2,
.intro-grid h2,
.domains-grid h2,
.fit-grid h2,
.dx-grid h2,
.form-intro h2 {
  color: #595257;
}

.issue-card,
.strength-card,
.effect-card,
.hero-module-card,
.module-card,
.pattern-card,
.scale-cards article,
.check-grid div {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.issue-card:hover,
.strength-card:hover,
.effect-card:hover,
.hero-module-card:hover,
.module-card:hover,
.pattern-card:hover,
.scale-cards article:hover,
.check-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(104, 94, 100, 0.12);
  border-color: rgba(223, 62, 130, 0.18);
}

.strength-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strength-card {
  padding-top: 88px;
}

.strength-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239, 106, 159, 0.18), rgba(239, 106, 159, 0.05));
}

.strength-card::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 42px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(223, 62, 130, 0.74);
  box-shadow: 12px 0 0 rgba(223, 62, 130, 0.46), 0 12px 0 rgba(223, 62, 130, 0.28);
}

.section-dark {
  color: var(--ink);
}

.domains-grid p,
.section-heading-light p {
  color: #786f75;
}

.domain-board article,
.pattern-card {
  background: rgba(255,255,255,0.78);
}

.pattern-card p,
.pattern-card strong,
.domain-board strong {
  color: #5c565b;
}

.pattern-badge {
  background: rgba(223, 62, 130, 0.10);
  color: #df3e82;
}

.form-section {
  padding-top: 68px;
}

.cta-banner-button {
  min-height: 96px;
  border-radius: 22px;
  letter-spacing: 0.04em;
}

@media (max-width: 1120px) {
  .hero-backdrop,
  .hero::after {
    height: 930px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-module-strip,
  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-module-strip {
    margin-top: 22px;
  }
}

@media (max-width: 900px) {
  .hero-backdrop,
  .hero::after {
    inset: 16px 12px auto;
    height: 1060px;
    border-radius: 32px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-visual,
  .hero-scene {
    min-height: 520px;
  }

  .note-left,
  .note-right,
  .mini-card-b {
    position: static;
    margin-bottom: 12px;
  }

  .mini-card-a,
  .mini-card-c {
    bottom: auto;
    left: auto;
    right: auto;
    position: static;
    margin-top: 12px;
  }

  .hero-module-strip,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-feature-points {
    gap: 8px;
  }

  .hero-feature-points span {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.9rem;
  }

  .hero-visual,
  .hero-scene {
    min-height: 420px;
  }

  .hero-module-card {
    padding: 20px 18px;
  }

  .cta-banner-button {
    min-height: 84px;
    font-size: 1.25rem;
  }
}

/* Refinement pass based on visual reference */
.hero-copy h1 {
  font-size: clamp(2.15rem, 4.2vw, 4.05rem);
  line-height: 1.12;
  max-width: 8.8ch;
}

.hero-lead {
  max-width: 31rem;
  font-size: 1rem;
}

.hero-feature-points {
  margin-bottom: 24px;
}

.hero-feature-points span {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.hero-visual {
  min-height: 600px;
}

.hero-illustration {
  max-width: 94%;
  margin-inline: auto;
  display: block;
}

.hero-module-strip {
  margin-top: -46px;
  gap: 16px;
}

.hero-module-card {
  padding: 22px 20px;
}

.hero-module-card strong {
  font-size: 1rem;
}

.section-heading h2,
.intro-grid h2,
.domains-grid h2,
.fit-grid h2,
.dx-grid h2,
.form-intro h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.75rem);
  line-height: 1.18;
}

.section-muted,
.form-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(241, 147, 183, 0.10), transparent 20%),
    radial-gradient(circle at 86% 84%, rgba(241, 147, 183, 0.10), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(247, 241, 244, 0.92));
}

.section-muted .container,
.form-section .container {
  position: relative;
}

.section-muted .container::before,
.form-section .container::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: -18px;
  height: 110px;
  background: radial-gradient(ellipse at center, rgba(238, 120, 167, 0.10), transparent 62%);
  pointer-events: none;
  filter: blur(10px);
}

.issue-card h3,
.strength-card h3,
.effect-card h3,
.pattern-card h3 {
  font-size: 1.2rem;
}

@media (max-width: 1120px) {
  .hero-copy h1 {
    max-width: none;
  }

  .hero-module-strip {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .intro-grid h2,
  .domains-grid h2,
  .fit-grid h2,
  .dx-grid h2,
  .form-intro h2 {
    font-size: 1.72rem;
  }
}


.section-soft-pink {
  background:
    radial-gradient(circle at 10% 18%, rgba(241, 147, 183, 0.12), transparent 20%),
    radial-gradient(circle at 88% 80%, rgba(241, 147, 183, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(248, 241, 245, 0.94));
}

.trust-ribbon {
  margin-bottom: 24px;
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(239, 106, 159, 0.10), rgba(255,255,255,0.78));
  border: 1px solid rgba(223, 62, 130, 0.14);
  box-shadow: 0 18px 40px rgba(104, 94, 100, 0.08);
}

.trust-ribbon strong {
  display: block;
  margin-bottom: 6px;
  color: #5b5359;
  font-size: 1.05rem;
}

.trust-ribbon span,
.detail-tag,
.faq-card p,
.reason-card p,
.function-detail-card p {
  color: #7d747a;
}

.reason-grid,
.function-detail-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-card,
.function-detail-card,
.faq-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(126, 116, 123, 0.10);
  box-shadow: 0 18px 44px rgba(104, 94, 100, 0.08);
  backdrop-filter: blur(16px);
}

.reason-card h3,
.function-detail-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  color: #5c565b;
  font-size: 1.12rem;
}

.reason-card {
  position: relative;
  padding-top: 84px;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(239, 106, 159, 0.18), rgba(239, 106, 159, 0.05));
}

.reason-card::after {
  content: "";
  position: absolute;
  top: 37px;
  left: 37px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(223, 62, 130, 0.76);
}

.section-function-detail {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(244, 240, 242, 0.96));
}

.function-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(239, 106, 159, 0.12);
  color: #df3e82;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.assurance-grid {
  display: grid;
  gap: 24px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-ribbon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comparison-text {
  margin-left: 0;
}

.comparison-text .comparison-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.comparison-text p {
  color: #4e4a5a;
  margin: 0;
  line-height: 1.6;
}

.award-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.award-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(246, 176, 107, 0.22);
  color: #b75b31;
  text-align: center;
}

.award-year {
  font-size: 0.9rem;
  font-weight: 700;
}

.award-text {
  font-size: 0.72rem;
  font-weight: 500;
}
@media (max-width: 1120px) {
  .reason-grid,
  .function-detail-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reason-grid,
  .function-detail-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .function-detail-card,
  .faq-card,
  .trust-ribbon {
    padding: 22px;
  }
}

/* Stability pass: reduce overlaps and normalize color system */
:root {
  --bg: #f3eff1;
  --ink: #575056;
  --ink-soft: #7f767c;
  --line: rgba(123, 112, 119, 0.12);
  --line-strong: rgba(123, 112, 119, 0.22);
  --navy: #6a6167;
  --navy-deep: #5b5359;
  --bluegreen: #cfc6cc;
  --teal: #df4e85;
  --teal-soft: rgba(223, 78, 133, 0.10);
  --gold: #c89757;
  --shadow: 0 18px 44px rgba(101, 91, 97, 0.08);
}

body {
  background: linear-gradient(180deg, #faf7f8 0%, #f3eff1 52%, #efe9ec 100%);
  color: var(--ink);
}

.eyebrow,
.section-label,
.section-label-light {
  background: none;
  color: var(--teal);
  -webkit-text-fill-color: currentColor;
}

.site-header {
  background: rgba(250, 247, 248, 0.88);
}

.site-nav,
.brand-text small,
.section-heading p,
.intro-grid p,
.domains-grid p,
.fit-grid p,
.dx-grid p,
.form-intro p,
.table-note,
.issue-card p,
.strength-card p,
.effect-card p,
.pattern-card p,
.reason-card p,
.function-detail-card p,
.faq-card p,
.scale-cards span {
  color: var(--ink-soft);
}

.hero-backdrop {
  height: 680px;
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 158, 191, 0.14), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(215, 204, 210, 0.42), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,243,245,0.96) 100%);
}

.hero::after {
  height: 680px;
  opacity: 0.6;
}

.hero-grid {
  min-height: 640px;
  gap: 36px;
}

.hero-copy {
  padding-top: 28px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  max-width: 9.4ch;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 30rem;
}

.hero-visual,
.hero-scene {
  min-height: 500px;
}

.floating-note,
.hero-mini-card {
  display: none;
}

.hero-illustration {
  max-width: 88%;
}

.hero-module-strip {
  margin-top: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-module-card,
.issue-card,
.strength-card,
.effect-card,
.reason-card,
.function-detail-card,
.faq-card,
.module-card,
.scale-cards article,
.check-grid div,
.domain-board article,
.pattern-card,
.form-intro,
.external-cta-card,
.trust-ribbon,
.table-shell,
.flow-card,
.intro-grid {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(123, 112, 119, 0.10);
  box-shadow: 0 14px 32px rgba(101, 91, 97, 0.07);
  backdrop-filter: blur(12px);
}

.section-dark,
.section-soft-pink,
.section-muted,
.section-function-detail,
.form-section,
.section-accent {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(247,241,244,0.90));
  color: var(--ink);
}

.section-dark .pattern-card,
.section-dark .domain-board article,
.section-dark .section-heading-light p,
.section-dark .section-label-light {
  color: inherit;
}

.pattern-card strong,
.domain-board strong {
  color: var(--ink);
}

.domain-featured,
.pattern-card.featured {
  background: linear-gradient(180deg, rgba(243, 189, 211, 0.26), rgba(255,255,255,0.86));
}

.highlight-col,
.flow-step.is-core,
.benefit-list span,
.dx-tags span,
.pattern-badge,
.detail-tag {
  background: rgba(223, 78, 133, 0.10);
  color: var(--teal);
}

.button-primary,
.cta-banner-button,
.mobile-cta a {
  background: linear-gradient(180deg, #e65a92 0%, #d63f79 100%);
  box-shadow: 0 12px 26px rgba(214, 63, 121, 0.20);
}

.button-ghost,
.button-ghost-light {
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border-color: rgba(123, 112, 119, 0.16);
}

.section-heading h2,
.intro-grid h2,
.domains-grid h2,
.fit-grid h2,
.dx-grid h2,
.form-intro h2 {
  font-size: clamp(1.72rem, 2.4vw, 2.5rem);
  color: var(--ink);
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.function-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1120px) {
  .hero-copy h1 {
    max-width: none;
  }

  .hero-module-strip,
  .reason-grid,
  .function-detail-grid,
  .faq-grid,
  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-backdrop,
  .hero::after {
    height: 920px;
  }

  .hero-module-strip,
  .reason-grid,
  .function-detail-grid,
  .faq-grid,
  .strength-grid,
  .issue-grid,
  .effect-grid,
  .scale-cards,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-illustration {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 1.88rem;
  }

  .hero-backdrop,
  .hero::after {
    height: 980px;
  }
}

.subtle-note {
  margin-top: 14px;
  color: #91878d;
  font-size: 0.88rem;
  line-height: 1.7;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.market-badge {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.market-badge-medal {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffe89b 0%, #ffd84f 44%, #f3b610 100%);
  box-shadow: inset 0 4px 0 rgba(255,255,255,0.28), 0 14px 28px rgba(182, 132, 22, 0.18);
}

.market-badge-medal::before,
.market-badge-medal::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 26px;
  height: 74px;
  opacity: 0.26;
  border: 4px solid #d49507;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
}

.market-badge-medal::before {
  left: 14px;
  transform: rotate(28deg);
}

.market-badge-medal::after {
  right: 14px;
  transform: scaleX(-1) rotate(28deg);
}

.market-badge-no1 {
  display: block;
  margin-bottom: 4px;
  color: #473812;
  font-family: var(--font-number);
  font-size: 1.5rem;
  font-weight: 700;
}

.market-badge-label {
  display: block;
  color: #4c3e18;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.market-badge-year {
  min-width: 136px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eb5d98 0%, #d8407b 100%);
  color: #fff;
  text-align: center;
  font-family: var(--font-number);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trust-ribbon-copy strong {
  font-size: 1.08rem;
}

@media (max-width: 640px) {
  .trust-ribbon {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* Subtle line-icon pass */
.reason-card h3,
.function-detail-card h3,
.faq-card h3,
.effect-card h3,
.scale-cards article strong {
  position: relative;
  min-height: 32px;
  padding-left: 46px;
  display: flex;
  align-items: center;
}

.reason-card h3::before,
.function-detail-card h3::before,
.faq-card h3::before,
.effect-card h3::before,
.scale-cards article strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  border-radius: 11px;
  border: 1px solid rgba(123, 112, 119, 0.12);
  background-color: rgba(255, 255, 255, 0.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.reason-card h3::after,
.function-detail-card h3::after,
.faq-card h3::after,
.effect-card h3::after,
.scale-cards article strong::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: rgba(223, 78, 133, 0.5);
}

.reason-card:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M7 12h10'/%3E%3Cpath d='M10 17h4'/%3E%3Crect x='5' y='4' width='14' height='16' rx='2.5'/%3E%3C/svg%3E");
}

.reason-card:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='6' width='7' height='12' rx='2'/%3E%3Crect x='13.5' y='6' width='7' height='12' rx='2'/%3E%3Cpath d='M10.5 12h3'/%3E%3C/svg%3E");
}

.reason-card:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16l4-5 3 3 6-7'/%3E%3Cpath d='M16 7h2v2'/%3E%3Cpath d='M4 19h16'/%3E%3C/svg%3E");
}

.reason-card:nth-child(4) h3::before,
.effect-card:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.2 8.1-7 10-3.8-1.9-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9.5 12l1.7 1.7 3.3-3.7'/%3E%3C/svg%3E");
}

.reason-card:nth-child(5) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12a7 7 0 0 1 14 0'/%3E%3Cpath d='M6 13v3a2 2 0 0 0 2 2h2'/%3E%3Cpath d='M18 13v3a2 2 0 0 1-2 2h-2'/%3E%3Crect x='3.5' y='11' width='3' height='6' rx='1.2'/%3E%3Crect x='17.5' y='11' width='3' height='6' rx='1.2'/%3E%3C/svg%3E");
}

.reason-card:nth-child(6) h3::before,
.scale-cards article:nth-child(2) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2.5'/%3E%3Cpath d='M8 19v-4'/%3E%3Cpath d='M12 19v-6'/%3E%3Cpath d='M16 19v-8'/%3E%3C/svg%3E");
}

.function-detail-card:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10.5L12 4l8 6.5'/%3E%3Cpath d='M6 10v9h12v-9'/%3E%3Cpath d='M10 19v-5h4v5'/%3E%3C/svg%3E");
}

.function-detail-card:nth-child(2) h3::before,
.effect-card:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='9' r='2.5'/%3E%3Ccircle cx='16' cy='8' r='2.5'/%3E%3Cpath d='M4.5 18c.8-2.1 2.5-3.2 4.8-3.2S13.2 15.9 14 18'/%3E%3Cpath d='M12.2 17c.6-1.7 2-2.7 4-2.7 1.9 0 3.3.9 4 2.7'/%3E%3C/svg%3E");
}

.function-detail-card:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3.5h7l4 4V19a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5.5a2 2 0 0 1 2-2z'/%3E%3Cpath d='M14 3.5v4h4'/%3E%3Cpath d='M8.5 12h7'/%3E%3Cpath d='M8.5 16h5'/%3E%3C/svg%3E");
}

.function-detail-card:nth-child(4) h3::before,
.faq-card:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='7' width='17' height='11' rx='2.5'/%3E%3Cpath d='M3.5 11h17'/%3E%3Cpath d='M8.5 15h3'/%3E%3Ccircle cx='16.5' cy='12.5' r='2.2'/%3E%3C/svg%3E");
}

.faq-card:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v4l2.8 2.2'/%3E%3C/svg%3E");
}

.faq-card:nth-child(3) h3::before,
.effect-card:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='11' rx='2'/%3E%3Cpath d='M8 19h8'/%3E%3Cpath d='M12 16v3'/%3E%3Cpath d='M7 9h10'/%3E%3C/svg%3E");
}

.scale-cards article:nth-child(1) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 19V8.5a2.5 2.5 0 0 1 5 0V19'/%3E%3Cpath d='M12.5 19V5.5a2.5 2.5 0 0 1 5 0V19'/%3E%3C/svg%3E");
}

.scale-cards article:nth-child(3) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23756d74' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 12h10'/%3E%3Cpath d='M7 16h6'/%3E%3Crect x='4' y='5' width='16' height='14' rx='2.5'/%3E%3C/svg%3E");
}

@media (max-width: 640px) {
  .reason-card h3,
  .function-detail-card h3,
  .faq-card h3,
  .effect-card h3,
  .scale-cards article strong {
    padding-left: 42px;
  }

  .reason-card h3::before,
  .function-detail-card h3::before,
  .faq-card h3::before,
  .effect-card h3::before,
  .scale-cards article strong::before {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    background-size: 16px 16px;
  }
}

/* Concept diagram pass */
.concept-board {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.concept-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.concept-rail span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(123, 112, 119, 0.10);
  color: #625b61;
  font-size: 0.88rem;
  font-weight: 700;
}

.hub-diagram {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(223, 78, 133, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(247,241,244,0.86));
  border: 1px solid rgba(123, 112, 119, 0.10);
  overflow: hidden;
}

.hub-diagram::before,
.hub-diagram::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hub-diagram::before {
  width: 230px;
  height: 230px;
  border: 1px dashed rgba(223, 78, 133, 0.20);
}

.hub-diagram::after {
  width: 310px;
  height: 310px;
  border: 1px dashed rgba(123, 112, 119, 0.10);
}

.hub-center,
.hub-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 12px 28px rgba(101, 91, 97, 0.08);
}

.hub-center {
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #e96295 0%, #d5487f 100%);
  color: #fff;
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hub-node {
  min-width: 92px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(123, 112, 119, 0.10);
  color: #5f595f;
  font-weight: 700;
}

.hub-node-property {
  left: 14%;
  top: 46%;
}

.hub-node-customer {
  left: 31%;
  top: 16%;
}

.hub-node-contract {
  right: 17%;
  top: 24%;
}

.hub-node-payment {
  right: 12%;
  bottom: 22%;
}

.hub-node-screen {
  left: 18%;
  top: 22%;
}

.hub-node-accounting {
  left: 36%;
  bottom: 14%;
}

.concept-caption {
  margin: 0;
  color: #7c7379;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .concept-rail {
    grid-template-columns: 1fr;
  }

  .hub-diagram {
    min-height: 420px;
  }

  .hub-center {
    width: 120px;
    height: 120px;
    font-size: 1.6rem;
  }

  .hub-node {
    min-width: 78px;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .hub-node-screen {
    left: 10%;
    top: 20%;
  }

  .hub-node-customer {
    left: 34%;
    top: 8%;
  }

  .hub-node-property {
    left: 6%;
    top: 48%;
  }

  .hub-node-contract {
    right: 7%;
    top: 22%;
  }

  .hub-node-payment {
    right: 4%;
    bottom: 20%;
  }

  .hub-node-accounting {
    left: 34%;
    bottom: 8%;
  }
}

/* Icon refinement pass */
.reason-card h3,
.function-detail-card h3,
.faq-card h3,
.effect-card h3,
.scale-cards article strong {
  min-height: 38px;
  padding-left: 54px;
}

.reason-card h3::before,
.function-detail-card h3::before,
.faq-card h3::before,
.effect-card h3::before,
.scale-cards article strong::before {
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border-radius: 13px;
  border: 1px solid rgba(120, 110, 117, 0.10);
  background-color: rgba(255, 255, 255, 0.94);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 240, 243, 0.96));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  box-shadow:
    0 10px 24px rgba(106, 95, 102, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.94);
}

.reason-card h3::after,
.function-detail-card h3::after,
.faq-card h3::after,
.effect-card h3::after,
.scale-cards article strong::after {
  display: none;
}

.reason-card:hover h3::before,
.function-detail-card:hover h3::before,
.faq-card:hover h3::before,
.effect-card:hover h3::before,
.scale-cards article:hover strong::before {
  border-color: rgba(223, 78, 133, 0.16);
  box-shadow:
    0 14px 28px rgba(106, 95, 102, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.98);
}

.module-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  border: 1px solid rgba(120, 110, 117, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245, 241, 244, 0.94));
  box-shadow:
    0 12px 26px rgba(106, 95, 102, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.icon-property::before,
.icon-customer::before,
.icon-customer::after,
.icon-contract::before,
.icon-contract::after,
.icon-payment::before,
.icon-payment::after {
  opacity: 0.92;
}

.icon-property::before {
  background: none;
  border: 2px solid rgba(223, 78, 133, 0.78);
  border-bottom-width: 3px;
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
}

.icon-customer::before {
  background: none;
  border: 2px solid rgba(132, 170, 98, 0.82);
}

.icon-customer::after {
  background: none;
  border: 2px solid rgba(132, 170, 98, 0.72);
}

.icon-contract::before {
  background: none;
  border: 2px solid rgba(223, 78, 133, 0.8);
}

.icon-contract::after {
  background: rgba(223, 78, 133, 0.76);
  box-shadow: -8px -8px 0 rgba(223, 78, 133, 0.36), -2px -16px 0 rgba(223, 78, 133, 0.22);
}

.icon-payment::before {
  background: none;
  border: 2px solid rgba(191, 138, 69, 0.82);
}

.icon-payment::after {
  background: none;
  border: 2px solid rgba(223, 191, 147, 0.95);
}

@media (max-width: 640px) {
  .reason-card h3,
  .function-detail-card h3,
  .faq-card h3,
  .effect-card h3,
  .scale-cards article strong {
    padding-left: 48px;
  }

  .reason-card h3::before,
  .function-detail-card h3::before,
  .faq-card h3::before,
  .effect-card h3::before,
  .scale-cards article strong::before {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background-size: 15px 15px;
  }
}

/* Illustrated feature-card icon pass */
.hero-module-card {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(249,245,247,0.94));
}

.hero-module-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  opacity: 0.9;
}

.hero-module-card:nth-child(1)::after {
  background: linear-gradient(90deg, rgba(233,101,150,.72), rgba(233,101,150,.28));
}

.hero-module-card:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(118,149,225,.72), rgba(118,149,225,.28));
}

.hero-module-card:nth-child(3)::after {
  background: linear-gradient(90deg, rgba(227,98,147,.72), rgba(227,98,147,.28));
}

.hero-module-card:nth-child(4)::after {
  background: linear-gradient(90deg, rgba(110,162,182,.72), rgba(110,162,182,.28));
}

.module-icon {
  width: 96px;
  height: 68px;
  margin-bottom: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.module-icon::before,
.module-icon::after {
  content: "";
  position: absolute;
}

.module-icon::before {
  left: 50%;
  top: 50%;
  width: 88px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.95;
}

.module-icon::after {
  left: 50%;
  top: 50%;
  width: 70px;
  height: 56px;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-property::before {
  background: radial-gradient(circle at 50% 50%, rgba(241, 174, 205, 0.62) 0%, rgba(241, 174, 205, 0.22) 60%, rgba(241, 174, 205, 0) 100%);
}

.icon-property::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 60'%3E%3Cellipse cx='29' cy='32' rx='18' ry='12' fill='%23f4d7e6'/%3E%3Cellipse cx='48' cy='36' rx='16' ry='10' fill='%23f8e7ef'/%3E%3Cellipse cx='19' cy='39' rx='11' ry='8' fill='%23f7e3ec'/%3E%3Cpath d='M17 37h24V22l-12-7-12 7z' fill='%23ea6aa0'/%3E%3Cpath d='M45 42h22V29l-11-6-11 6z' fill='none' stroke='%23ea6aa0' stroke-width='3' stroke-linejoin='round'/%3E%3Crect x='25' y='29' width='8' height='8' rx='1.5' fill='%23fff' opacity='.95'/%3E%3Cpath d='M54 25v18' stroke='%23ea6aa0' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-customer::before {
  background: radial-gradient(circle at 50% 50%, rgba(191, 210, 244, 0.68) 0%, rgba(191, 210, 244, 0.24) 60%, rgba(191, 210, 244, 0) 100%);
}

.icon-customer::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 60'%3E%3Cellipse cx='28' cy='34' rx='18' ry='11' fill='%23e7eefb'/%3E%3Cellipse cx='50' cy='37' rx='14' ry='9' fill='%23eef3fd'/%3E%3Crect x='15' y='14' width='33' height='24' rx='4' fill='none' stroke='%23728fde' stroke-width='3'/%3E%3Cpath d='M21 21h21M21 27h17' stroke='%23728fde' stroke-width='3' stroke-linecap='round'/%3E%3Ccircle cx='54' cy='28' r='8' fill='%23728fde'/%3E%3Cpath d='M54 39c6 0 11 4 12 9H42c1-5 6-9 12-9z' fill='%2390a8ea'/%3E%3C/svg%3E");
}

.icon-contract::before {
  background: radial-gradient(circle at 50% 50%, rgba(242, 189, 214, 0.66) 0%, rgba(242, 189, 214, 0.24) 60%, rgba(242, 189, 214, 0) 100%);
}

.icon-contract::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 60'%3E%3Cellipse cx='30' cy='35' rx='20' ry='11' fill='%23f9e8f0'/%3E%3Crect x='19' y='13' width='28' height='34' rx='4' fill='none' stroke='%23eb74a6' stroke-width='3'/%3E%3Cpath d='M26 23h15M26 29h12M26 35h10' stroke='%23eb74a6' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M47 42l13-13' stroke='%23eb74a6' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M56 26l7 7' stroke='%23eb74a6' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='59' cy='23' r='3' fill='%23f3a4c4'/%3E%3C/svg%3E");
}

.icon-payment::before {
  background: radial-gradient(circle at 50% 50%, rgba(199, 221, 228, 0.66) 0%, rgba(199, 221, 228, 0.24) 60%, rgba(199, 221, 228, 0) 100%);
}

.icon-payment::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 60'%3E%3Cellipse cx='28' cy='35' rx='20' ry='11' fill='%23edf5f7'/%3E%3Crect x='14' y='15' width='24' height='30' rx='4' fill='none' stroke='%236d8ac6' stroke-width='3'/%3E%3Cpath d='M20 24h12M20 30h12M20 36h8' stroke='%236d8ac6' stroke-width='3' stroke-linecap='round'/%3E%3Crect x='43' y='24' width='22' height='14' rx='4' fill='%2395d6ba'/%3E%3Ccircle cx='67' cy='20' r='8' fill='%23f2cf88'/%3E%3Cpath d='M67 16v8M64 20h6' stroke='%23bf8a45' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media (max-width: 640px) {
  .module-icon {
    width: 84px;
    height: 62px;
  }

  .module-icon::before {
    width: 76px;
    height: 40px;
  }

  .module-icon::after {
    width: 62px;
    height: 50px;
  }
}

/* Hero illustration refinement toward isometric SaaS look */
.hero-scene {
  position: relative;
  isolation: isolate;
}

.hero-scene::before,
.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-scene::before {
  background:
    radial-gradient(circle at 26% 72%, rgba(241, 190, 214, 0.34), transparent 22%),
    radial-gradient(circle at 78% 24%, rgba(239, 170, 201, 0.30), transparent 20%),
    linear-gradient(160deg, rgba(255,255,255,0) 0%, rgba(244, 236, 241, 0.34) 100%);
  z-index: 0;
}

.hero-scene::after {
  background-image:
    radial-gradient(circle, rgba(226, 104, 154, 0.48) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(226, 104, 154, 0.38) 0 2px, transparent 2.5px),
    linear-gradient(135deg, rgba(226, 104, 154, 0.28) 0 2px, transparent 2px),
    linear-gradient(32deg, rgba(226, 104, 154, 0.22) 0 2px, transparent 2px);
  background-size: 180px 180px, 220px 220px, 220px 220px, 240px 240px;
  background-position: 8% 18%, 88% 16%, 12% 28%, 80% 70%;
  opacity: 0.34;
  z-index: 0;
}

.hero-illustration {
  position: relative;
  z-index: 1;
  max-width: 92%;
  filter: drop-shadow(0 28px 34px rgba(99, 89, 96, 0.12)) saturate(1.02) brightness(1.02);
}

.hero-visual {
  min-height: 560px;
}

.hero-module-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,245,247,0.98));
}

@media (max-width: 900px) {
  .hero-scene::after {
    opacity: 0.22;
  }

  .hero-illustration {
    max-width: 100%;
  }
}
/* Final refinement: more delicate IT/SaaS tone */
body {
  background: #fdfbfd;
  color: #23252b;
}

.site-header {
  background: rgba(252, 250, 253, 0.82);
  border-bottom: 1px solid rgba(112, 111, 126, 0.10);
  box-shadow: 0 10px 30px rgba(85, 83, 96, 0.04);
}

.section,
.section-muted,
.section-soft-pink,
.section-accent,
.section-dark,
.intro-band {
  position: relative;
}

.section::before,
.section-muted::before,
.section-soft-pink::before,
.section-accent::before,
.section-dark::before,
.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(133, 144, 170, 0.045) 1px, transparent 1px), linear-gradient(rgba(133, 144, 170, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.22), transparent 72%);
}

.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 171, 204, 0.16), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(170, 199, 237, 0.15), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,245,249,0.9));
}

.hero-grid {
  gap: 56px;
}

.hero-copy h1 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-lead {
  max-width: 640px;
  color: #596074;
}

.hero-feature-points {
  gap: 10px;
}

.hero-feature-points span,
.stat-strip li,
.hero-badge {
  border: 1px solid rgba(121, 122, 142, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(252, 249, 251, 0.82));
  box-shadow: 0 10px 28px rgba(96, 89, 103, 0.045);
  backdrop-filter: blur(14px);
}

.hero-badge {
  border-radius: 18px;
}

.hero-badge small {
  color: #8a6d7d;
  letter-spacing: 0.08em;
}

.hero-badge strong {
  color: #d84a87;
  line-height: 1.5;
}

.hero-scene::before {
  background:
    radial-gradient(circle at 24% 72%, rgba(242, 196, 219, 0.18), transparent 20%),
    radial-gradient(circle at 82% 26%, rgba(182, 204, 238, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(244, 240, 245, 0.14));
}

.hero-scene::after {
  background-image:
    radial-gradient(circle, rgba(225, 107, 157, 0.18) 0 1.4px, transparent 2px),
    radial-gradient(circle, rgba(107, 150, 221, 0.14) 0 1.4px, transparent 2px),
    linear-gradient(135deg, rgba(226, 104, 154, 0.07) 0 1px, transparent 1px),
    linear-gradient(32deg, rgba(96, 141, 226, 0.06) 0 1px, transparent 1px);
  opacity: 0.36;
}

.hero-illustration {
  filter: drop-shadow(0 22px 36px rgba(91, 86, 98, 0.08)) saturate(0.96) brightness(1.01);
}

.hero-module-strip {
  gap: 18px;
  margin-top: 22px;
}

.hero-module-card,
.strength-card,
.reason-card,
.function-detail-card,
.effect-card,
.faq-card,
.scale-cards article,
.pattern-card,
.module-card,
.issue-card,
.flow-card,
.table-shell,
.transaction-map,
.domain-board,
.fit-panel,
.check-grid > div {
  border: 1px solid rgba(119, 118, 132, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,247,250,0.88));
  box-shadow: 0 18px 46px rgba(93, 86, 99, 0.06);
}

.hero-module-card {
  border-radius: 22px;
  padding: 22px 20px 18px;
}

.hero-module-card strong,
.strength-card h3,
.reason-card h3,
.function-detail-card h3,
.effect-card h3,
.faq-card h3,
.issue-card h3 {
  color: #343a49;
  line-height: 1.45;
}

.hero-module-card small,
.strength-card p,
.reason-card p,
.function-detail-card p,
.effect-card p,
.faq-card p,
.issue-card p,
.table-note,
.concept-caption,
.fit-mini-note {
  color: #697084;
}

.module-icon {
  width: 88px;
  height: 62px;
  margin-bottom: 14px;
  opacity: 0.96;
}

.module-icon::before {
  width: 78px;
  height: 38px;
  opacity: 0.82;
}

.module-icon::after {
  width: 64px;
  height: 48px;
}

.section-heading h2,
.fit-grid h2,
.section-dark h2,
.section-accent h2,
.intro-grid h2 {
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.strength-grid,
.reason-grid,
.function-detail-grid,
.effect-grid,
.faq-grid {
  gap: 18px;
}

.strength-card,
.reason-card,
.function-detail-card,
.effect-card,
.faq-card,
.issue-card,
.pattern-card {
  backdrop-filter: blur(10px);
}

.reason-card::before,
.reason-card::after {
  display: none;
}

.reason-card h3,
.function-detail-card h3,
.faq-card h3,
.effect-card h3,
.scale-cards article strong {
  min-height: 0;
  padding-left: 50px;
}

.reason-card h3::before,
.function-detail-card h3::before,
.faq-card h3::before,
.effect-card h3::before,
.scale-cards article strong::before {
  border-radius: 12px;
  background-color: rgba(255,255,255,0.9);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244, 246, 250, 0.96));
  border: 1px solid rgba(120, 124, 146, 0.11);
  box-shadow: 0 10px 22px rgba(90, 87, 102, 0.06);
}

.issue-card {
  overflow: hidden;
}

.issue-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(233,101,150,.34), rgba(104,149,226,.18));
}

.issue-index {
  color: rgba(224, 92, 145, 0.72);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(64, 66, 82, 0.94), rgba(90, 76, 94, 0.96)),
    radial-gradient(circle at 20% 10%, rgba(241, 147, 190, 0.16), transparent 20%),
    radial-gradient(circle at 84% 22%, rgba(132, 165, 227, 0.10), transparent 20%);
}

.concept-board {
  overflow: hidden;
}

.concept-board::after {
  content: "";
  position: absolute;
  inset: auto 28px 22px 28px;
  height: 80px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 0%, rgba(96, 141, 226, 0.12), transparent 70%);
  pointer-events: none;
}

.comparison-table {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead th {
  background: linear-gradient(180deg, rgba(250, 246, 249, 0.98), rgba(244, 245, 249, 0.96));
  color: #4a5061;
}

.comparison-table tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) th {
  background: rgba(247, 246, 249, 0.72);
}

.comparison-table .highlight-col {
  background: linear-gradient(180deg, rgba(232, 88, 146, 0.16), rgba(245, 198, 222, 0.14));
  color: #c23f79;
}

.fit-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 28px;
}

.fit-copy > p {
  max-width: 760px;
}

.fit-panel {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 26px;
  overflow: hidden;
}

.fit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 141, 226, 0.10), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(232, 88, 146, 0.12), transparent 24%);
  pointer-events: none;
}

.fit-panel-head,
.fit-bars,
.fit-mini-note {
  position: relative;
  z-index: 1;
}

.fit-panel-head {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.fit-panel-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(232, 88, 146, 0.10);
  color: #cf4e84;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.fit-panel-head strong {
  color: #363c4b;
  font-size: 1.05rem;
}

.fit-bars {
  display: grid;
  gap: 14px;
}

.fit-bar-row {
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
}

.fit-bar-name {
  color: #555d70;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.fit-bar-track {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(236, 237, 243, 0.96), rgba(227, 229, 237, 0.96));
  overflow: hidden;
}

.fit-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(225, 71, 139, 0.96), rgba(235, 96, 159, 0.84));
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.35);
}

.fit-bar-row:not(.fit-bar-primary) .fit-bar-track span {
  background: linear-gradient(90deg, rgba(188, 177, 190, 0.78), rgba(152, 159, 182, 0.68));
}

.fit-bar-row strong {
  color: #394051;
  font-size: 0.94rem;
}

.fit-mini-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 124, 146, 0.10);
  font-size: 0.92rem;
  line-height: 1.8;
}

.check-grid {
  gap: 14px;
}

.check-grid > div {
  border-radius: 16px;
  padding: 14px 16px 14px 46px;
  position: relative;
}

.check-grid > div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(235, 97, 157, 0.95), rgba(214, 73, 133, 0.95));
  box-shadow: 0 6px 14px rgba(214, 73, 133, 0.18);
}

.check-grid > div::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 6px;
  height: 10px;
  transform: translateY(-62%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.scale-cards {
  gap: 18px;
}

.scale-cards article,
.pattern-card,
.module-card {
  border-radius: 20px;
}

.market-badge-medal {
  box-shadow: 0 20px 36px rgba(163, 134, 34, 0.12);
}

.button-primary {
  box-shadow: 0 16px 34px rgba(223, 78, 133, 0.18);
}

.button-ghost {
  border-color: rgba(121, 122, 142, 0.16);
  background: rgba(255,255,255,0.72);
}

@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-bar-row {
    grid-template-columns: 110px minmax(0, 1fr) 42px;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .section::before,
  .section-muted::before,
  .section-soft-pink::before,
  .section-accent::before,
  .section-dark::before,
  .intro-band::before {
    background-size: 22px 22px;
  }

  .hero-module-card,
  .strength-card,
  .reason-card,
  .function-detail-card,
  .effect-card,
  .faq-card,
  .issue-card,
  .pattern-card,
  .fit-panel,
  .check-grid > div {
    box-shadow: 0 14px 28px rgba(93, 86, 99, 0.06);
  }

  .fit-bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fit-bar-track {
    height: 14px;
  }
}
/* DX ecosystem refinement */
.dx-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.dx-copy p {
  color: #667084;
}

.dx-board {
  position: relative;
  min-height: 420px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(125, 128, 146, 0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(245, 247, 252, 0.78)),
    radial-gradient(circle at 20% 16%, rgba(241, 157, 198, 0.14), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(141, 182, 236, 0.16), transparent 28%);
  box-shadow: 0 24px 60px rgba(95, 88, 102, 0.08);
  overflow: hidden;
}

.dx-board-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(118, 128, 153, 0.05) 1px, transparent 1px), linear-gradient(rgba(118, 128, 153, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.65), transparent 92%);
}

.dx-core,
.dx-node {
  position: absolute;
  border: 1px solid rgba(121, 124, 145, 0.11);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247, 248, 252, 0.92));
  box-shadow: 0 16px 34px rgba(90, 87, 99, 0.08);
  backdrop-filter: blur(12px);
}

.dx-core {
  left: 50%;
  top: 52%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.96), rgba(253, 248, 252, 0.92) 50%, rgba(242, 223, 233, 0.72) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,248,252,0.88));
}

.dx-core::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(232, 88, 146, 0.16);
}

.dx-core span {
  display: block;
  color: #cf4d83;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dx-core small {
  display: block;
  margin-top: 6px;
  color: #6c7489;
  font-size: 0.9rem;
}

.dx-node {
  width: 192px;
  padding: 16px 18px 14px;
  border-radius: 22px;
}

.dx-node strong {
  display: block;
  color: #394050;
  font-size: 1rem;
  line-height: 1.4;
}

.dx-node small {
  display: block;
  margin-top: 6px;
  color: #6d7488;
  line-height: 1.6;
}

.dx-node-web {
  left: 26px;
  top: 54px;
}

.dx-node-auto {
  right: 28px;
  top: 78px;
}

.dx-node-rpa {
  right: 20px;
  bottom: 42px;
}

.dx-node-saas {
  left: 28px;
  bottom: 58px;
}

.dx-node-web strong {
  color: #4d78c6;
}

.dx-node-auto strong {
  color: #cb7e31;
}

.dx-node-rpa strong {
  color: #6489d9;
}

.dx-node-saas strong {
  color: #c95188;
}

.dx-link {
  position: absolute;
  border-top: 1px dashed rgba(131, 139, 169, 0.46);
  transform-origin: left center;
}

.dx-link::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(119, 144, 208, 0.86);
  box-shadow: 0 0 0 6px rgba(119, 144, 208, 0.08);
}

.dx-link-web {
  left: 200px;
  top: 130px;
  width: 120px;
  transform: rotate(20deg);
}

.dx-link-auto {
  left: 448px;
  top: 152px;
  width: 110px;
  transform: rotate(-23deg);
}

.dx-link-rpa {
  left: 420px;
  top: 280px;
  width: 134px;
  transform: rotate(24deg);
}

.dx-link-saas {
  left: 168px;
  top: 286px;
  width: 132px;
  transform: rotate(-25deg);
}

@media (max-width: 1100px) {
  .dx-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dx-board {
    min-height: 560px;
    padding: 20px;
  }

  .dx-core {
    width: 136px;
    height: 136px;
    top: 50%;
  }

  .dx-core span {
    font-size: 1.6rem;
  }

  .dx-node {
    width: 152px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .dx-node strong {
    font-size: 0.92rem;
  }

  .dx-node small {
    font-size: 0.8rem;
  }

  .dx-node-web {
    left: 10px;
    top: 36px;
  }

  .dx-node-auto {
    right: 10px;
    top: 50px;
  }

  .dx-node-saas {
    left: 10px;
    bottom: 36px;
  }

  .dx-node-rpa {
    right: 10px;
    bottom: 30px;
  }

  .dx-link-web {
    left: 138px;
    top: 116px;
    width: 88px;
  }

  .dx-link-auto {
    left: calc(100% - 188px);
    top: 136px;
    width: 80px;
  }

  .dx-link-rpa {
    left: calc(100% - 210px);
    top: 344px;
    width: 96px;
  }

  .dx-link-saas {
    left: 118px;
    top: 348px;
    width: 92px;
  }
}
/* Hero stability fix */
.hero {
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
  padding-left: 0;
}

.hero-copy h1 {
  max-width: 11.5ch;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-copy h1 br {
  display: block;
}

.hero-lead {
  max-width: 560px;
}

.hero-visual {
  min-width: 0;
  min-height: 620px;
}

.hero-scene {
  position: relative;
  min-height: 620px;
  padding-top: 24px;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: auto;
  max-width: 260px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(121, 122, 142, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(252, 249, 251, 0.84));
  box-shadow: 0 12px 24px rgba(96, 89, 103, 0.05);
  backdrop-filter: blur(14px);
}

.hero-badge small {
  margin: 0;
  color: #9a7f8d;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.hero-badge strong {
  display: block;
  color: #545b69;
  font-size: 0.94rem;
  line-height: 1.45;
  font-weight: 700;
}

.badge-a {
  top: 44px;
  left: 8px;
}

.badge-b {
  top: 26px;
  right: 18px;
}

.badge-c {
  right: 10px;
  bottom: 82px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
    gap: 36px;
  }

  .hero-copy h1 {
    max-width: 12.5ch;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
  }

  .hero-badge {
    max-width: 220px;
    padding: 10px 14px;
  }

  .hero-badge strong {
    font-size: 0.88rem;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: none;
    text-wrap: pretty;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-scene {
    min-height: auto;
    padding-top: 0;
  }

  .hero-badge {
    display: none;
  }
}
/* System domain section fix */
.section-dark .domains-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.section-dark .domains-grid > div:first-child {
  position: relative;
  z-index: 2;
}

.section-dark .section-label,
.section-dark .section-label-light {
  color: rgba(248, 226, 236, 0.88);
}

.section-dark .domains-grid h2 {
  color: #fff;
}

.section-dark .domains-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.section-dark .concept-board {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
}

.section-dark .concept-rail span {
  background: rgba(255,255,255,0.92);
  color: #535a6a;
}

.section-dark .hub-diagram {
  background:
    radial-gradient(circle at center, rgba(223, 78, 133, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(248,245,248,0.94));
}

.section-dark .hub-node {
  min-width: 96px;
  min-height: 48px;
  padding: 0 18px;
  color: #4e5565;
  white-space: nowrap;
  word-break: keep-all;
  z-index: 2;
}

.section-dark .hub-node-screen {
  left: 16%;
  top: 24%;
  min-width: 200px;
  z-index: 3;
}

.section-dark .hub-node-customer {
  left: 48%;
  top: 12%;
  min-width: 108px;
  z-index: 2;
}

.section-dark .hub-node-property {
  left: 12%;
  top: 48%;
}

.section-dark .hub-node-contract {
  right: 14%;
  top: 26%;
}

.section-dark .hub-node-payment {
  right: 10%;
  bottom: 22%;
}

.section-dark .hub-node-accounting {
  left: 44%;
  bottom: 12%;
}

.section-dark .concept-caption {
  color: rgba(255,255,255,0.84);
}

@media (max-width: 900px) {
  .section-dark .domains-grid h2,
  .section-dark .domains-grid p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section-dark .hub-node-screen {
    left: 8%;
    top: 24%;
    min-width: 160px;
  }

  .section-dark .hub-node-customer {
    left: 52%;
    top: 10%;
    min-width: 82px;
  }

  .section-dark .hub-node-property {
    left: 8%;
    top: 50%;
  }

  .section-dark .hub-node-contract {
    right: 6%;
    top: 26%;
  }

  .section-dark .hub-node-payment {
    right: 4%;
    bottom: 22%;
  }

  .section-dark .hub-node-accounting {
    left: 40%;
    bottom: 10%;
  }
}
/* Dark section text visibility fix */
.section-dark {
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .section-heading,
.section-dark .section-heading-light,
.section-dark .compact-heading,
.section-dark .domains-grid > div:first-child {
  position: relative;
  z-index: 2;
}

.section-dark .section-label,
.section-dark .section-label-light,
.section-dark .section-heading p,
.section-dark .section-heading-light p,
.section-dark .compact-heading p,
.section-dark > .container > div > p {
  color: rgba(245, 230, 238, 0.84);
}

.section-dark .section-heading h2,
.section-dark .section-heading-light h2,
.section-dark .compact-heading h2,
.section-dark .domains-grid h2 {
  color: #fff;
}

.section-dark .pattern-card,
.section-dark .domain-board article,
.section-dark .concept-board,
.section-dark .flow-card,
.section-dark .table-shell {
  color: var(--ink);
}
/* Fit section balance refinement */
.fit-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.82fr);
  gap: 36px;
  align-items: start;
}

.fit-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.fit-grid .section-label {
  margin-bottom: 0;
}

.fit-grid h2 {
  max-width: 13.5ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.fit-copy > p {
  max-width: 700px;
  margin-bottom: 0;
  color: #6a7184;
  font-size: 1rem;
  line-height: 1.9;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 6px;
}

.check-grid > div {
  min-height: 86px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  padding: 14px 18px 14px 48px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

.check-grid > div::before {
  width: 16px;
  height: 16px;
}

.check-grid > div::after {
  left: 21px;
}

.fit-panel {
  max-width: 680px;
  margin-left: auto;
  padding: 24px 24px 20px;
  border-radius: 28px;
}

.fit-panel-head {
  gap: 8px;
  margin-bottom: 20px;
}

.fit-panel-head strong {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.fit-bars {
  gap: 16px;
}

.fit-bar-row {
  grid-template-columns: 190px minmax(0, 1fr) 56px;
  gap: 14px;
}

.fit-bar-name {
  font-size: 0.88rem;
  line-height: 1.5;
}

.fit-bar-track {
  height: 14px;
}

.fit-bar-row strong {
  font-size: 0.9rem;
  text-align: right;
}

.fit-mini-note {
  margin-top: 18px;
  padding-top: 16px;
  font-size: 0.88rem;
  line-height: 1.85;
}

@media (max-width: 1100px) {
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fit-grid h2 {
    max-width: none;
  }

  .fit-panel {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .check-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid h2 {
    font-size: clamp(1.72rem, 6vw, 2.2rem);
  }

  .fit-bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
/* Series composition refinement */
.modules-layout .section-heading {
  margin-bottom: 26px;
}

.modules-layout .section-heading p:last-child {
  max-width: 760px;
  color: #6d7488;
}

.module-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.module-grid::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(234, 124, 168, 0.18), rgba(196, 212, 167, 0.24), rgba(233, 127, 168, 0.18), rgba(214, 189, 138, 0.18), rgba(185, 187, 200, 0.18));
  z-index: 0;
}

.module-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 26px 22px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,246,248,0.88));
  border: 1px solid rgba(129, 126, 137, 0.10);
  box-shadow: 0 20px 42px rgba(93, 86, 99, 0.07);
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 30px 30px 0 0;
}

.module-card::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(129, 126, 137, 0.10);
  box-shadow: 0 8px 18px rgba(93, 86, 99, 0.05);
}

.module-card::after {
  background-image: linear-gradient(135deg, transparent 43%, rgba(130, 133, 150, 0.65) 43%, rgba(130, 133, 150, 0.65) 57%, transparent 57%);
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.module-card:last-child::after {
  display: none;
}

.module-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7a7077;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(129, 126, 137, 0.10);
}

.module-card strong {
  display: block;
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #2f3544;
}

.module-card p {
  margin: 0;
  color: #6c7387;
  font-size: 0.94rem;
  line-height: 1.7;
}

.module-card-web {
  background: linear-gradient(180deg, rgba(255, 245, 249, 0.98), rgba(248, 242, 246, 0.92));
}

.module-card-web::before {
  background: linear-gradient(90deg, #ef7fae, #e15791);
}

.module-card-property {
  background: linear-gradient(180deg, rgba(248, 244, 235, 0.98), rgba(244, 239, 227, 0.92));
}

.module-card-property::before {
  background: linear-gradient(90deg, #d8a34a, #c88d3e);
}

.module-card-customer {
  background: linear-gradient(180deg, rgba(242, 248, 236, 0.98), rgba(234, 241, 226, 0.92));
}

.module-card-customer::before {
  background: linear-gradient(90deg, #95bc61, #7ca74c);
}

.module-card-contract {
  background: linear-gradient(180deg, rgba(252, 244, 248, 0.98), rgba(246, 239, 243, 0.92));
}

.module-card-contract::before {
  background: linear-gradient(90deg, #ef7fae, #dc558e);
}

.module-card-payment {
  background: linear-gradient(180deg, rgba(248, 245, 238, 0.98), rgba(244, 240, 230, 0.92));
}

.module-card-payment::before {
  background: linear-gradient(90deg, #c79f62, #b38349);
}

.module-card-accounting {
  background: linear-gradient(180deg, rgba(249, 248, 250, 0.98), rgba(242, 241, 245, 0.92));
}

.module-card-accounting::before {
  background: linear-gradient(90deg, #bdb7c2, #9d98a7);
}

@media (max-width: 1200px) {
  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .module-grid::before {
    display: none;
  }

  .module-card:nth-child(3)::after,
  .module-card:last-child::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card:nth-child(2)::after,
  .module-card:nth-child(4)::after,
  .module-card:last-child::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .module-card::after {
    display: none;
  }

  .module-card strong {
    font-size: 1.85rem;
  }
}
/* Pattern section cleanup */
#patterns {
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 193, 217, 0.18), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(185, 206, 236, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(252,251,253,0.96), rgba(246,242,246,0.92));
  color: var(--ink);
}

#patterns .section-label,
#patterns .section-label-light,
#patterns .section-heading p,
#patterns .section-heading-light p {
  color: #7a7281;
}

#patterns .section-heading h2,
#patterns .section-heading-light h2 {
  color: #353b49;
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pattern-card {
  grid-column: span 4;
  min-height: 214px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,247,249,0.90));
  border: 1px solid rgba(127, 123, 137, 0.10);
  box-shadow: 0 18px 38px rgba(93, 86, 99, 0.06);
}

.pattern-card:nth-child(4),
.pattern-card:nth-child(5) {
  grid-column: span 6;
}

.pattern-card h3 {
  margin: 14px 0 12px;
  color: #424958;
  font-size: 1.05rem;
  line-height: 1.45;
}

.pattern-card p {
  margin: 0 0 16px;
  color: #808090;
  font-size: 0.96rem;
}

.pattern-card strong {
  display: block;
  color: #3f4655;
  font-size: 1.18rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.pattern-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(229, 88, 147, 0.10);
  color: #d45086;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pattern-badge.subtle {
  background: rgba(194, 192, 199, 0.18);
  color: #8c8894;
}

.pattern-card.featured {
  background: linear-gradient(180deg, rgba(255,247,251,0.96), rgba(249,247,249,0.92));
  border-color: rgba(227, 113, 164, 0.16);
}

.pattern-card.featured::before,
.pattern-card.plan-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
  border-radius: 28px 28px 0 0;
}

.pattern-card.featured::before {
  background: linear-gradient(90deg, #ef7daa, #d9558c);
}

.pattern-card.plan-card::before {
  background: linear-gradient(90deg, #d3d0d8, #c1bcc7);
}

@media (max-width: 1100px) {
  .pattern-card {
    grid-column: span 6;
  }

  .pattern-card:nth-child(4),
  .pattern-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .pattern-grid {
    grid-template-columns: 1fr;
  }

  .pattern-card,
  .pattern-card:nth-child(4),
  .pattern-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .pattern-card.featured::before,
  .pattern-card.plan-card::before {
    margin: -22px -18px 18px;
    width: calc(100% + 36px);
    border-radius: 24px 24px 0 0;
  }
}
/* Final cleanup pass: modules, patterns, effects */
.modules-layout .section-heading,
#patterns .section-heading {
  max-width: 860px;
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.module-grid::before,
.module-card::after {
  display: none;
}

.module-card,
.module-card-web,
.module-card-property,
.module-card-customer,
.module-card-contract,
.module-card-payment,
.module-card-accounting {
  min-height: 196px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,248,250,0.92));
  border: 1px solid rgba(126, 124, 136, 0.10);
  box-shadow: 0 16px 32px rgba(93, 86, 99, 0.05);
}

.module-card::before {
  height: 3px;
  border-radius: 24px 24px 0 0;
}

.module-card span {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.module-card strong {
  font-size: clamp(1.5rem, 1.7vw, 1.9rem);
  line-height: 1.2;
}

.module-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

#patterns {
  background:
    radial-gradient(circle at 16% 0%, rgba(241, 193, 217, 0.12), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(185, 206, 236, 0.10), transparent 22%),
    linear-gradient(180deg, #fcfbfd 0%, #f6f2f6 100%);
}

#patterns .container {
  display: grid;
  gap: 24px;
}

.pattern-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pattern-card,
.pattern-card:nth-child(4),
.pattern-card:nth-child(5) {
  grid-column: auto;
  min-height: 210px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,248,250,0.92));
  border: 1px solid rgba(126, 124, 136, 0.10);
  box-shadow: 0 16px 32px rgba(93, 86, 99, 0.05);
}

.pattern-card.featured {
  grid-column: 1 / -1;
  min-height: 0;
}

.pattern-card.featured::before,
.pattern-card.plan-card::before {
  height: 3px;
  margin: -22px -22px 18px;
  width: calc(100% + 44px);
  border-radius: 24px 24px 0 0;
}

.pattern-card h3 {
  margin: 10px 0 10px;
  font-size: 1rem;
}

.pattern-card p {
  margin-bottom: 14px;
  font-size: 0.94rem;
}

.pattern-card strong {
  font-size: 1.06rem;
  line-height: 1.55;
}

.pattern-badge {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.74rem;
}

.effect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.effect-card {
  min-height: 280px;
  padding: 28px 26px 24px;
  border-radius: 24px;
}

.effect-card h3 {
  min-height: 0;
  padding-left: 72px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.effect-card h3::before {
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border-radius: 16px;
  background-size: 22px 22px;
  box-shadow: 0 12px 24px rgba(90, 87, 102, 0.06);
}

.effect-card p {
  font-size: 0.98rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .module-grid,
  .effect-grid,
  .pattern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pattern-card.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .module-grid,
  .effect-grid,
  .pattern-grid {
    grid-template-columns: 1fr;
  }

  .module-card,
  .pattern-card,
  .pattern-card:nth-child(4),
  .pattern-card:nth-child(5),
  .effect-card {
    min-height: 0;
  }

  .pattern-card.featured::before,
  .pattern-card.plan-card::before {
    margin: -22px -22px 18px;
    width: calc(100% + 44px);
  }

  .effect-card h3 {
    padding-left: 64px;
  }

  .effect-card h3::before {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    background-size: 20px 20px;
  }
}
/* Architecture / function list / plan map */
.architecture-board {
  display: grid;
  gap: 18px;
}

.architecture-diagram {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,248,252,0.92));
  border: 1px solid rgba(127, 123, 137, 0.10);
  box-shadow: 0 18px 42px rgba(93, 86, 99, 0.06);
}

.arch-card-title,
.arch-subtitle,
.arch-body,
.arch-chip-text,
.arch-line-label,
.arch-side-title,
.arch-side-text,
.arch-yen {
  font-family: Meiryo, "Yu Gothic UI", sans-serif;
}

.arch-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.arch-logo-pink {
  fill: #d85690;
}

.arch-logo-gold {
  fill: #ba8747;
}

.arch-title-dark {
  fill: #3f4655;
}

.arch-title-light {
  fill: #7f7986;
}

.arch-subtitle {
  fill: #434958;
  font-size: 14px;
  font-weight: 700;
}

.arch-card-title {
  font-size: 15px;
  font-weight: 700;
}

.arch-body {
  fill: #6b7285;
  font-size: 13px;
}

.arch-chip-brand {
  font-size: 14px;
  font-weight: 700;
}

.arch-chip-gold {
  fill: #c28135;
}

.arch-chip-pink {
  fill: #d85690;
}

.arch-chip-text,
.arch-line-label,
.arch-side-text,
.arch-side-title {
  fill: #696f81;
  font-size: 12px;
  font-weight: 700;
}

.arch-line-label {
  font-size: 11px;
}

.arch-yen {
  fill: #fff;
  font-size: 13px;
  font-weight: 700;
}

.architecture-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.architecture-notes article {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,248,250,0.88));
  border: 1px solid rgba(127, 123, 137, 0.10);
  box-shadow: 0 14px 28px rgba(93, 86, 99, 0.05);
}

.architecture-notes strong {
  display: block;
  margin-bottom: 8px;
  color: #424958;
  font-size: 0.98rem;
}

.architecture-notes p {
  margin: 0;
  color: #6c7387;
  font-size: 0.92rem;
  line-height: 1.75;
}

.section-function-detail {
  background:
    radial-gradient(circle at 14% 0%, rgba(241, 193, 217, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(252,251,253,0.96), rgba(246,243,247,0.92));
}

.function-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.function-detail-card {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,248,250,0.92));
  border: 1px solid rgba(127, 123, 137, 0.10);
  box-shadow: 0 16px 34px rgba(93, 86, 99, 0.05);
}

.function-detail-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 22px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,242,246,0.92));
  border: 1px solid rgba(130, 126, 140, 0.10);
  box-shadow: 0 8px 18px rgba(93, 86, 99, 0.05);
}

.function-detail-card:nth-child(1)::after {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,242,246,0.92)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 11.5 12 5l8 6.5V20H4z' fill='%23a79ea3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.function-detail-card:nth-child(2)::after {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,242,246,0.92)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='9' r='3.2' fill='%23a79ea3'/%3E%3Ccircle cx='16.5' cy='8' r='2.5' fill='%23a79ea3'/%3E%3Cpath d='M4 18c0-2.7 2.3-4.5 5-4.5S14 15.3 14 18' fill='none' stroke='%23a79ea3' stroke-width='2'/%3E%3Cpath d='M13.5 18c.2-1.9 1.8-3.1 3.8-3.1 2 0 3.3 1 3.7 3.1' fill='none' stroke='%23a79ea3' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.function-detail-card:nth-child(3)::after {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,242,246,0.92)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='14' rx='2' fill='none' stroke='%23a79ea3' stroke-width='2'/%3E%3Cpath d='M8 9h8M8 13h8' stroke='%23a79ea3' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.function-detail-card:nth-child(4)::after {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(243,242,246,0.92)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='7' fill='none' stroke='%23a79ea3' stroke-width='2'/%3E%3Cpath d='M12 8v8M9 11h6' stroke='%23a79ea3' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(229, 88, 147, 0.10);
  color: #d45086;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.function-detail-card h3 {
  margin: 16px 0 12px;
  padding-left: 0;
  color: #3f4655;
  font-size: 1.28rem;
}

.function-detail-card h3::before,
.function-detail-card h3::after {
  display: none;
}

.function-detail-card p {
  margin: 0;
  color: #6c7387;
  font-size: 0.95rem;
  line-height: 1.85;
}

.plan-map {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding: 22px 22px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,248,250,0.90));
  border: 1px solid rgba(127, 123, 137, 0.10);
  box-shadow: 0 16px 34px rgba(93, 86, 99, 0.05);
}

.plan-map-head {
  display: grid;
  gap: 4px;
}

.plan-map-head h3 {
  margin: 0;
  color: #3f4655;
  font-size: 1.08rem;
}

.plan-map-table-wrap {
  overflow-x: auto;
}

.plan-map-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.plan-map-table th,
.plan-map-table td {
  padding: 12px 14px;
  border-right: 1px solid rgba(127, 123, 137, 0.10);
  border-bottom: 1px solid rgba(127, 123, 137, 0.10);
  text-align: left;
  color: #5e6678;
  font-size: 0.9rem;
  line-height: 1.6;
  background: rgba(255,255,255,0.72);
}

.plan-map-table thead th {
  background: rgba(246, 241, 245, 0.92);
  color: #474e5e;
  font-weight: 700;
}

.plan-map-table thead th:nth-last-child(-n+4) {
  text-align: center;
}

.plan-map-table tr > *:first-child {
  border-left: 1px solid rgba(127, 123, 137, 0.10);
}

.plan-map-table thead tr:first-child th:first-child {
  border-top-left-radius: 16px;
}

.plan-map-table thead tr:first-child th:last-child {
  border-top-right-radius: 16px;
}

.plan-map-table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 16px;
}

.plan-map-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.plan-map-table tbody th {
  color: #3f4655;
  font-weight: 700;
  white-space: nowrap;
}

.plan-map-table td:nth-last-child(-n+4) {
  text-align: center;
}

.plan-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(194, 191, 198, 0.5);
}

.plan-dot.is-on {
  background: linear-gradient(180deg, #ef7daa, #da558e);
  box-shadow: 0 0 0 6px rgba(239, 125, 170, 0.10);
}

.plan-map-note {
  margin: 0;
  color: #7a7281;
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .architecture-notes,
  .function-detail-grid {
    grid-template-columns: 1fr;
  }

  .architecture-diagram {
    border-radius: 24px;
  }
}
/* Brand color and casing refinement */
.brand-mark {
  background: linear-gradient(135deg, #eb5c98 0%, #d86b9d 46%, #c7b0bf 100%);
  box-shadow: 0 10px 22px rgba(216, 107, 157, 0.18);
}

.brand-text strong {
  color: #404655;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: #847d87;
  letter-spacing: 0.16em;
  text-transform: none;
}

.site-header {
  background: rgba(252, 250, 253, 0.9);
}

.button-primary,
.cta-banner-button,
.mobile-cta a {
  background: linear-gradient(180deg, #eb5c98 0%, #d94f89 100%);
  box-shadow: 0 14px 28px rgba(217, 79, 137, 0.20);
}
/* Brand mark flatten */
.brand-mark {
  background: #dc6c9d;
  box-shadow: 0 8px 18px rgba(220, 108, 157, 0.14);
}
/* Hero title size tweak */
.hero-copy h1 {
  font-size: clamp(2.3rem, 3.7vw, 3.8rem);
}

/* Hero title balance */
.hero-copy h1 {
  max-width: 12.8ch;
  font-size: clamp(2.15rem, 3.6vw, 3.55rem);
  line-height: 1.14;
}

.hero-copy h1 span {
  display: inline-block;
  font-size: 0.9em;
}


/* Hero lead line sizing */
.hero-copy h1 {
  font-size: clamp(2.02rem, 3.35vw, 3.35rem);
}


/* Hero title smaller */
.hero-copy h1 {
  font-size: clamp(1.92rem, 3.1vw, 3.08rem);
}


/* Comparison table cleanup */
.table-shell {
  border-radius: 0;
  background: #ffffff;
  border: 1px solid rgba(89, 96, 114, 0.18);
  box-shadow: none;
}

.comparison-table {
  border-collapse: collapse;
  border-spacing: 0;
}

.comparison-table thead th {
  background: #f4f2f5;
  color: #454c5d;
  border-bottom: 1px solid rgba(89, 96, 114, 0.16);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(89, 96, 114, 0.12);
}

.comparison-table th + th,
.comparison-table td + td {
  border-left: 1px solid rgba(89, 96, 114, 0.08);
}

.comparison-table tbody tr:nth-child(even) td,
.comparison-table tbody tr:nth-child(even) th {
  background: #fbfafc;
}

.comparison-table .highlight-col {
  background: rgba(232, 88, 146, 0.14);
  color: #c23f79;
}


/* Structure sections refresh */
.coverage-grid,
.domains-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}

.flow-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  gap: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,245,248,0.96));
  border: 1px solid rgba(142, 134, 142, 0.14);
  box-shadow: 0 26px 56px rgba(109, 99, 109, 0.08);
}

.flow-card::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 62px;
  width: 2px;
  background: linear-gradient(180deg, rgba(206, 193, 182, 0.9), rgba(229, 79, 139, 0.34));
}

.flow-step {
  position: relative;
  padding: 18px 24px 18px 60px;
  border-radius: 22px;
  border: 1px solid rgba(146, 136, 142, 0.08);
  background: rgba(243, 239, 240, 0.82);
  font-weight: 700;
  color: #36435d;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #c9d8e2;
  box-shadow: 0 0 0 10px rgba(201, 216, 226, 0.38);
}

.flow-step.is-accent {
  background: rgba(236, 230, 218, 0.92);
  color: #3e4450;
}

.flow-step.is-accent::before {
  background: #c99a4d;
  box-shadow: 0 0 0 10px rgba(201, 154, 77, 0.22);
}

.flow-step.is-core {
  background: rgba(244, 224, 233, 0.92);
  color: #d84f8c;
}

.flow-step.is-core::before {
  background: #df4e8d;
  box-shadow: 0 0 0 10px rgba(223, 78, 141, 0.18);
}

.domain-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,246,249,0.9));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 56px rgba(31, 28, 36, 0.16);
}

.domain-board article {
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(141, 134, 141, 0.12);
}

.domain-board article span {
  display: inline-block;
  margin-bottom: 18px;
  color: #80767c;
  font-size: 0.92rem;
  font-weight: 700;
}

.domain-board article strong {
  display: block;
  margin-bottom: 18px;
  color: #48424b;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.35;
}

.domain-board article p {
  margin: 0;
  color: #736d76;
  line-height: 1.9;
}

.domain-featured {
  background: linear-gradient(180deg, rgba(255, 247, 251, 0.98), rgba(245, 236, 241, 0.98));
  border-color: rgba(220, 89, 146, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.architecture-diagram {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,248,252,0.96));
  border: 1px solid rgba(140, 134, 143, 0.12);
  box-shadow: 0 20px 42px rgba(93, 86, 99, 0.08);
}

.arch-box {
  fill: #ffffff;
  stroke: #d7d1db;
  stroke-width: 2;
}

.arch-box-main {
  fill: #fffdfd;
}

.arch-box-panel {
  fill: #ffffff;
}

.arch-box-soft {
  fill: #f6f4f7;
}

.arch-box-dashed {
  fill: #fcfbfd;
  stroke-dasharray: 6 8;
}

.arch-chip {
  stroke-width: 1.5;
}

.arch-chip-gold-box {
  fill: #fffaf2;
  stroke: #dfc79c;
}

.arch-chip-pink-box {
  fill: #fff6fa;
  stroke: #ebbad0;
}

.arch-mini-label {
  fill: #ffffff;
  stroke: #e3dfe7;
  stroke-width: 1.5;
}

.arch-line-gray {
  fill: none;
  stroke: #aba5b2;
  stroke-width: 3.5;
}

.arch-line-gray.dashed {
  stroke-dasharray: 5 7;
}

.arch-line-pink {
  fill: none;
  stroke: #dc5a95;
  stroke-width: 4;
}

@media (max-width: 900px) {
  .domain-board {
    grid-template-columns: 1fr;
  }

  .flow-card::before {
    left: 42px;
  }

  .flow-step {
    padding-left: 52px;
  }

  .flow-step::before {
    left: 18px;
  }
}

.flow-summary {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  color: #6f6972;
  font-size: 1rem;
  line-height: 1.9;
}

.domain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.domain-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(244, 241, 244, 0.92);
  border: 1px solid rgba(141, 134, 141, 0.08);
  color: #534d56;
  font-weight: 700;
  text-align: center;
}

.domain-list-core li {
  background: rgba(255, 251, 253, 0.96);
  border-color: rgba(220, 89, 146, 0.12);
  color: #7e5b69;
}

@media (max-width: 900px) {
  .domain-list {
    grid-template-columns: 1fr;
  }
}

/* Strength heading balance */
#strengths .section-heading {
  max-width: 1120px;
  margin-left: 24px;
}

#strengths .section-heading h2 {
  max-width: 900px;
}

#strengths .section-heading p {
  max-width: 980px;
  line-height: 1.95;
}

@media (max-width: 900px) {
  #strengths .section-heading {
    margin-left: 0;
  }
}

/* Comparison table compactness */
#comparison .table-shell {
  max-width: 1080px;
  margin: 0 auto;
}

#comparison .comparison-table thead th {
  padding: 18px 18px;
  font-size: 0.98rem;
}

#comparison .comparison-table tbody th,
#comparison .comparison-table tbody td {
  padding: 18px 20px;
}

#comparison .comparison-table tbody th {
  font-size: 0.98rem;
}

#comparison .comparison-table tbody td {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

/* Transaction section redesign */
.transaction-grid {
  align-items: center;
  gap: 34px;
}

.transaction-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-height: 460px;
  padding: 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 22% 18%, rgba(233, 187, 208, 0.18), transparent 26%),
    radial-gradient(circle at 80% 82%, rgba(185, 209, 232, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,244,247,0.96));
  border: 1px solid rgba(143, 136, 143, 0.12);
  box-shadow: 0 26px 56px rgba(100, 90, 99, 0.08);
}

.transaction-map::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 250px;
  height: 250px;
  margin: -125px 0 0 -125px;
  border-radius: 50%;
  border: 1px dashed rgba(140, 132, 143, 0.20);
}

.transaction-map::after {
  content: "���";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 108px;
  height: 108px;
  margin: -54px 0 0 -54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #eb6a9d, #d84a86);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 34px rgba(216, 74, 134, 0.24), 0 0 0 14px rgba(236, 109, 161, 0.10);
}

.transaction-map div {
  position: relative;
  z-index: 1;
  min-height: 80px;
  padding: 22px 24px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(140, 133, 141, 0.10);
  font-weight: 800;
  color: #4f4a53;
  box-shadow: 0 16px 28px rgba(100, 91, 100, 0.06);
}

.transaction-map div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  background: #d2dae5;
  box-shadow: 0 0 0 8px rgba(210, 218, 229, 0.26);
}

.transaction-map div:nth-child(1)::before,
.transaction-map div:nth-child(2)::before {
  background: #d3a15a;
  box-shadow: 0 0 0 8px rgba(211, 161, 90, 0.18);
}

.transaction-map div:nth-child(3)::before,
.transaction-map div:nth-child(4)::before {
  background: #7fa2d8;
  box-shadow: 0 0 0 8px rgba(127, 162, 216, 0.18);
}

.transaction-map div:nth-child(5)::before,
.transaction-map div:nth-child(6)::before {
  background: #df5a94;
  box-shadow: 0 0 0 8px rgba(223, 90, 148, 0.16);
}

.transaction-map div:nth-child(odd) {
  transform: translateX(8px);
}

.transaction-map div:nth-child(even) {
  transform: translateX(-8px);
}

/* Pattern section redesign */
#patterns .section-heading {
  max-width: 980px;
}

#patterns .section-heading h2 {
  letter-spacing: -0.04em;
}

#patterns .pattern-grid {
  gap: 22px;
}

#patterns .pattern-card,
#patterns .pattern-card:nth-child(4),
#patterns .pattern-card:nth-child(5) {
  position: relative;
  min-height: 230px;
  padding: 28px 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,246,249,0.94));
  border: 1px solid rgba(136, 130, 138, 0.12);
  box-shadow: 0 22px 42px rgba(96, 88, 99, 0.07);
}

#patterns .pattern-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 18px 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 66, 124, 0.18), transparent);
}

#patterns .pattern-card h3 {
  margin: 12px 0 10px;
  font-size: 1.18rem;
  color: #43424c;
}

#patterns .pattern-card p {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(242, 239, 243, 0.92);
  border: 1px solid rgba(142, 136, 143, 0.08);
  color: #7c7480;
  font-size: 0.92rem;
  font-weight: 700;
}

#patterns .pattern-card strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.6;
  color: #3f4655;
}

#patterns .pattern-card.featured {
  background: linear-gradient(180deg, rgba(255,249,252,0.98), rgba(247,239,244,0.96));
  border-color: rgba(219, 84, 142, 0.18);
}

#patterns .pattern-card.featured::before,
#patterns .pattern-card.plan-card::before {
  height: 4px;
  margin: -28px -26px 20px;
  width: calc(100% + 52px);
  border-radius: 28px 28px 0 0;
}

#patterns .pattern-card.plan-card {
  background: linear-gradient(180deg, rgba(251,250,252,0.98), rgba(244,243,247,0.94));
}

#patterns .pattern-badge {
  min-height: 30px;
  padding: 0 12px;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

/* Comparison table tighter rows */
#comparison .comparison-table thead th {
  padding: 14px 16px;
}

#comparison .comparison-table tbody th,
#comparison .comparison-table tbody td {
  padding: 14px 18px;
}

#comparison .comparison-table tbody th {
  font-size: 0.94rem;
}

#comparison .comparison-table tbody td {
  font-size: 1.22rem;
}

.series-feature-intro {
  max-width: 760px;
  margin: 10px 0 18px;
}

.series-feature-intro h3 {
  margin: 8px 0 10px;
  font-size: 1.42rem;
  color: #3e4655;
}

.series-feature-intro p:last-child {
  margin: 0;
  color: #726b75;
  line-height: 1.8;
}

.series-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.series-feature-grid::before,
.series-feature-grid .module-card::after {
  display: none;
}

.series-feature-grid .module-card {
  min-height: 0;
  padding: 22px 20px 20px;
  gap: 10px;
  border-radius: 24px;
}

.series-feature-grid .module-card span {
  min-height: 28px;
  font-size: 0.78rem;
}

.series-feature-grid .module-card strong {
  font-size: 1.18rem;
}

.series-feature-grid .module-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .series-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .series-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Pink tone rebalance */
:root {
  --teal: #D45B8D;
  --teal-soft: rgba(212, 91, 141, 0.12);
}

.site-nav a::after,
.button-primary,
.hero-copy h1 span,
.issue-index,
.highlight-col,
.arch-line-pink,
.transaction-map::after,
#patterns .pattern-card.featured::before,
#patterns .pattern-card.plan-card::before {
  color: #D45B8D;
}

.button-primary {
  background: linear-gradient(135deg, #e4709f, #D45B8D);
  box-shadow: 0 14px 34px rgba(212, 91, 141, 0.24);
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #eb8eb3, #D45B8D 62%, #bc4f7e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.site-nav a::after,
.flow-step.is-core::before,
.issue-index,
.transaction-map::after {
  background: #D45B8D;
}

.highlight-col,
.domain-featured,
#patterns .pattern-card.featured {
  background-color: rgba(212, 91, 141, 0.12);
}

.arch-logo-pink,
.arch-chip-pink,
#comparison .comparison-table .highlight-col,
#patterns .pattern-card.featured strong,
#patterns .pattern-card.plan-card strong {
  color: #D45B8D;
  fill: #D45B8D;
}

.arch-line-pink {
  stroke: #D45B8D;
}

.transaction-map div:nth-child(5)::before,
.transaction-map div:nth-child(6)::before {
  background: #D45B8D;
  box-shadow: 0 0 0 8px rgba(212, 91, 141, 0.16);
}

#patterns .pattern-card.featured {
  border-color: rgba(212, 91, 141, 0.20);
  background: linear-gradient(180deg, rgba(255,248,251,0.98), rgba(248,239,244,0.96));
}

#patterns .pattern-card.featured::before,
#patterns .pattern-card.plan-card::before,
.module-card-contract::before,
.module-card-web::before {
  background: linear-gradient(90deg, #e282ab, #D45B8D);
}

.section-label,
.eyebrow {
  background: linear-gradient(90deg, #D45B8D, #e98ab1);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Pattern cards polish */
#patterns .pattern-card.featured .pattern-badge {
  display: none;
}

#patterns .pattern-card.featured {
  padding-top: 34px;
  background:
    radial-gradient(circle at 84% 22%, rgba(212, 91, 141, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255,250,252,0.99), rgba(247,240,244,0.97));
  border-color: rgba(212, 91, 141, 0.16);
  box-shadow: 0 26px 52px rgba(111, 88, 100, 0.08);
}

#patterns .pattern-card.featured h3 {
  font-size: 1.22rem;
}

#patterns .pattern-card.featured strong {
  font-size: 1.38rem;
  color: #D45B8D;
}

#patterns .pattern-card p {
  padding: 0 14px;
  background: rgba(239, 236, 241, 0.86);
}

#patterns .pattern-card.plan-card .pattern-badge {
  background: rgba(129, 124, 133, 0.10);
  color: #85808a;
}

.pricing-section {
  padding-top: 8px;
}

.pricing-wrap {
  display: grid;
  gap: 22px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,244,247,0.92));
  border: 1px solid rgba(141, 135, 143, 0.10);
  box-shadow: 0 22px 48px rgba(96, 88, 99, 0.06);
}

.pricing-heading {
  max-width: 860px;
}

.pricing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-step {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(141, 135, 143, 0.10);
  box-shadow: 0 14px 28px rgba(96, 88, 99, 0.05);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "body body";
  align-items: center;
  column-gap: 14px;
  row-gap: 12px;
}

.pricing-step strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(212, 91, 141, 0.12);
  color: #D45B8D;
  font-size: 0.95rem;
  grid-area: num;
  margin-bottom: 0;
}

.pricing-step h3 {
  margin: 0;
  font-size: 1.12rem;
  color: #cf5b8d;
  grid-area: title;
  line-height: 1.35;
}

.pricing-step p {
  margin: 0;
  color: #746d77;
  line-height: 1.8;
  grid-area: body;
}

.pricing-note {
  margin: 0;
  color: #857c84;
  font-size: 0.94rem;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .pricing-steps {
    grid-template-columns: 1fr;
  }
}

.button-primary,
.button-primary:visited,
.cta-banner-button {
  color: #fff !important;
}

.external-cta-wrap-simple {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}

.external-cta-card-simple {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 14px;
  justify-items: center;
  align-items: center;
}

.external-cta-card-simple .cta-banner-link {
  display: block;
  max-width: 620px;
  margin: 0 auto;
}

.external-cta-card-simple .cta-banner-button {
  min-height: 108px;
  border-radius: 28px;
  background: linear-gradient(180deg, #df6fa0 0%, #D45B8D 100%);
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
  box-shadow: 0 22px 46px rgba(212, 91, 141, 0.24);
}

.external-cta-card-simple .cta-card-copy {
  font-size: 1.05rem;
  color: #4b4b58;
  text-align: center;
  line-height: 1.6;
  max-width: 520px;
}
.subsidy-panel {
  width: min(520px, 100%);
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(237, 230, 240, 0.65);
  border: 1px solid rgba(141, 125, 147, 0.24);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subsidy-label {
  font-weight: 700;
  color: #423d55;
}
.subsidy-note {
  margin: 0;
  color: #5d5f6d;
  font-size: 0.95rem;
  line-height: 1.5;
}
.subsidy-panel .button-ghost {
  width: fit-content;
  padding: 0 20px;
}

.button-primary,
.button-primary:visited,
.button-primary:hover,
.button-primary:focus-visible,
.cta-banner-button,
.cta-banner-link:hover .cta-banner-button,
.cta-banner-link:focus-visible .cta-banner-button,
.mobile-cta a,
.mobile-contact a {
  color: #fff !important;
}

.pricing-wrap .external-cta-wrap-simple {
  margin-top: 18px;
}

.pricing-wrap .external-cta-card-simple .cta-banner-link {
  max-width: 520px;
}

.pricing-wrap .external-cta-card-simple .cta-banner-button {
  min-height: 84px;
  border-radius: 24px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.pricing-heading .section-label {
  display: none;
}

.issue-index {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, #de6d9d 0%, #D45B8D 100%);
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 24px rgba(212, 91, 141, 0.18);
}

.trust-ribbon {
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,244,247,0.92));
  border: 1px solid rgba(143, 136, 143, 0.10);
  box-shadow: 0 18px 44px rgba(99, 89, 99, 0.06);
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.trust-ribbon-badge {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.trust-ribbon-copy p {
  margin: 8px 0 0;
  color: #6f7382;
  line-height: 1.8;
}

.trust-ribbon-copy strong {
  display: block;
  color: #575056;
  font-size: 1.05rem;
  line-height: 1.5;
}

.trust-ribbon .achievement-count {
  margin-top: 0;
  min-width: 124px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #df6a9c 0%, #d4558c 100%);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 12px 24px rgba(212, 85, 140, 0.16);
}

.trust-ribbon .achievement-years {
  margin-top: 18px;
}

.trust-ribbon .achievement-years span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(126, 118, 132, 0.18);
  background: rgba(255,255,255,0.9);
  color: #5f6475;
  font-size: 0.9rem;
}

.trust-ribbon .achievement-source {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #7a7884;
}

.trust-ribbon .market-badge-medal {
  width: 132px;
  height: 132px;
}

.trust-ribbon .market-badge-no1 {
  font-size: 1.35rem;
}

.trust-ribbon .market-badge-label {
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .trust-ribbon {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trust-ribbon-copy {
    width: 100%;
  }

  .trust-ribbon .achievement-years {
    justify-content: center;
  }
}

.series-feature-grid {
  gap: 22px;
}

.series-feature-grid .module-card {
  position: relative;
  min-height: 208px;
  padding: 22px 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(132, 126, 139, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,246,249,0.94));
  box-shadow: 0 18px 40px rgba(92, 86, 99, 0.06);
  overflow: hidden;
}

.series-feature-grid .module-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  opacity: 1;
}

.series-feature-grid .module-card::after {
  display: none;
}

.series-feature-grid .module-card span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(137, 130, 141, 0.10);
  color: #7e7783;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.series-feature-grid .module-card strong {
  display: block;
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #343b49;
}

.series-feature-grid .module-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.78;
  color: #677084;
}

.series-feature-grid .module-card-property {
  background: linear-gradient(180deg, rgba(255,249,251,0.98), rgba(248,242,246,0.94));
}

.series-feature-grid .module-card-property::before {
  background: linear-gradient(90deg, #e4a24f, #D45B8D);
}

.series-feature-grid .module-card-customer {
  background: linear-gradient(180deg, rgba(252,248,242,0.98), rgba(246,242,234,0.94));
}

.series-feature-grid .module-card-customer::before {
  background: linear-gradient(90deg, #b8a357, #8ea84f);
}

.series-feature-grid .module-card-contract {
  background: linear-gradient(180deg, rgba(247,250,242,0.98), rgba(240,245,232,0.94));
}

.series-feature-grid .module-card-contract::before {
  background: linear-gradient(90deg, #94b44c, #D45B8D);
}

.series-feature-grid .module-card-payment {
  background: linear-gradient(180deg, rgba(251,247,250,0.98), rgba(246,241,246,0.94));
}

.series-feature-grid .module-card-payment::before {
  background: linear-gradient(90deg, #d89c57, #c17e47);
}

.series-feature-grid .module-card {
  border-radius: 22px;
  background: #fcfbfd;
  box-shadow: 0 14px 30px rgba(92, 86, 99, 0.045);
}

.series-feature-grid .module-card::before {
  height: 3px;
}

.series-feature-grid .module-card span {
  background: #ffffff;
  border: 1px solid rgba(137, 130, 141, 0.08);
  color: #77717d;
}

.series-feature-grid .module-card strong {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.series-feature-grid .module-card p {
  color: #697285;
}

.series-feature-grid .module-card-property {
  background: #fbf6f9;
}

.series-feature-grid .module-card-property::before {
  background: #D45B8D;
}

.series-feature-grid .module-card-customer {
  background: #f8f4eb;
}

.series-feature-grid .module-card-customer::before {
  background: #b39a54;
}

.series-feature-grid .module-card-contract {
  background: #f3f7ec;
}

.series-feature-grid .module-card-contract::before {
  background: #90ab52;
}

.series-feature-grid .module-card-payment {
  background: #fbf5f7;
}

.series-feature-grid .module-card-payment::before {
  background: #c78a55;
}

#patterns .pattern-grid {
  gap: 22px;
}

#patterns .pattern-card,
#patterns .pattern-card:nth-child(4),
#patterns .pattern-card:nth-child(5) {
  min-height: 210px;
  padding: 26px 26px 24px;
  border-radius: 24px;
  background: #fcfbfd;
  border: 1px solid rgba(133, 126, 139, 0.09);
  box-shadow: 0 16px 34px rgba(94, 87, 99, 0.05);
}

#patterns .pattern-card::after {
  inset: auto 26px 18px;
  background: linear-gradient(90deg, transparent, rgba(212, 91, 141, 0.10), transparent);
}

#patterns .pattern-card.featured,
#patterns .pattern-card.plan-card {
  background: #fcfbfd;
  box-shadow: 0 18px 38px rgba(94, 87, 99, 0.055);
}

#patterns .pattern-card.featured::before,
#patterns .pattern-card.plan-card::before {
  height: 3px;
  margin: -26px -26px 18px;
  width: calc(100% + 52px);
  border-radius: 24px 24px 0 0;
}

#patterns .pattern-card h3 {
  margin: 8px 0 14px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: #353d4c;
}

#patterns .pattern-card p {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 18px;
  background: #f3f1f5;
  border: 1px solid rgba(137, 130, 141, 0.07);
  color: #797281;
  font-size: 0.9rem;
}

#patterns .pattern-card strong {
  font-size: 1.22rem;
  line-height: 1.55;
  color: #41495a;
}

#patterns .pattern-card.featured strong,
#patterns .pattern-card.plan-card strong {
  color: #D45B8D;
}

#patterns .pattern-card.plan-card .pattern-badge {
  background: #f1eff4;
  border: 1px solid rgba(137, 130, 141, 0.07);
  color: #87818d;
}

:root {
  --font-heading: "BIZ UDPGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  --font-body: "BIZ UDPGothic", "Yu Gothic", "Hiragino Sans", sans-serif;
  --teal: #2a8a7c;
  --bluegreen: #1f556d;
}

body {
  background:
    radial-gradient(circle at top left, rgba(42,138,124,.10), transparent 28%),
    linear-gradient(180deg, #f8faf8 0%, #f2f5f3 50%, #ecefeb 100%);
}

.site-header {
  background: rgba(246, 249, 245, 0.88);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.14), transparent 16%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: .42;
  clip-path: ellipse(120% 100% at 50% 0%);
  pointer-events: none;
}

.hero-scene,
.strength-card,
.issue-card,
.fit-panel,
.pattern-card,
.effect-card,
.external-cta-card,
.module-card {
  border: 1px solid rgba(17, 43, 69, 0.08);
  box-shadow: 0 22px 56px rgba(17, 43, 69, 0.08);
}

.strength-card,
.issue-card,
.pattern-card,
.effect-card,
.module-card {
  position: relative;
  overflow: hidden;
}

.strength-card::after,
.issue-card::after,
.pattern-card::after,
.effect-card::after,
.module-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(42,138,124,.10), transparent 72%);
}

.strength-card h3::before,
.issue-card h3::before,
.pattern-card h3::before,
.effect-card h3::before,
.module-card strong::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--teal), var(--bluegreen));
  vertical-align: middle;
}

#patterns .pattern-grid {
  counter-reset: pattern-step;
}

#patterns .pattern-card,
#patterns .pattern-card:nth-child(4),
#patterns .pattern-card:nth-child(5) {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 228px;
  padding: 28px 28px 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(126, 121, 134, 0.08);
  box-shadow: 0 18px 42px rgba(90, 84, 97, 0.045);
  overflow: hidden;
}

#patterns .pattern-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: #d6d1da;
}

#patterns .pattern-card::after {
  counter-increment: pattern-step;
  content: counter(pattern-step, decimal-leading-zero);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(123, 118, 130, 0.18);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

#patterns .pattern-card:nth-child(1)::before,
#patterns .pattern-card:nth-child(5)::before {
  background: #D45B8D;
}

#patterns .pattern-card:nth-child(2)::before,
#patterns .pattern-card:nth-child(4)::before {
  background: #2c7a7b;
}

#patterns .pattern-card:nth-child(3)::before {
  background: #7e9f52;
}

#patterns .pattern-card h3 {
  margin: 6px 0 14px;
  padding-right: 54px;
  font-size: 1.12rem;
  line-height: 1.45;
  color: #313947;
}

#patterns .pattern-card p {
  width: fit-content;
  margin: 0 0 18px;
  padding: 0 12px;
  min-height: 32px;
  background: rgba(243, 240, 245, 0.88);
  border: 1px solid rgba(133, 126, 139, 0.06);
  border-radius: 999px;
  color: #787180;
  font-size: 0.9rem;
  font-weight: 700;
}

#patterns .pattern-card strong {
  display: block;
  max-width: 28ch;
  font-size: 1.24rem;
  line-height: 1.55;
  color: #3e4655;
}

#patterns .pattern-card.featured,
#patterns .pattern-card.plan-card {
  background: rgba(255,255,255,0.9);
}

#patterns .pattern-card.featured {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(98, 84, 97, 0.055);
}

#patterns .pattern-card.featured strong,
#patterns .pattern-card.plan-card strong {
  color: #D45B8D;
}

#patterns .pattern-card.plan-card .pattern-badge {
  width: fit-content;
  margin-bottom: 8px;
  background: #f2f0f4;
  border: 1px solid rgba(133, 126, 139, 0.06);
  color: #87818d;
}

#patterns .pattern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(94, 87, 99, 0.06);
}

#patterns .pattern-card.featured:hover {
  transform: translateY(-6px);
}

.effect-card h3 {
  min-height: 44px;
  padding-left: 64px;
}

.effect-card h3::before {
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 14px;
  background-size: 24px 24px;
  box-shadow: 0 12px 24px rgba(90, 87, 102, 0.07);
}

.effect-card h3::after {
  display: none;
}

.pricing-wrap .external-cta-wrap-simple {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(131, 125, 137, 0.08);
}

.external-cta-card-simple {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.pricing-wrap .external-cta-card-simple .cta-banner-link {
  max-width: 460px;
}

.pricing-wrap .external-cta-card-simple .cta-banner-button {
  min-height: 76px;
  border-radius: 20px;
  background: #D45B8D;
  box-shadow: 0 14px 28px rgba(212, 91, 141, 0.18);
  font-size: clamp(1.28rem, 2.1vw, 1.8rem);
  letter-spacing: 0.02em;
}

.external-cta-card-simple .external-cta-note {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #857d86;
}

.external-cta-card-simple .subtle-note {
  margin-top: 0;
  font-size: 0.86rem;
  color: #948b93;
}

.architecture-board {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px;
}

.architecture-diagram {
  max-width: 920px;
  margin: 0 auto;
}

.architecture-notes {
  max-width: 920px;
  margin: 18px auto 0;
  gap: 12px;
}

.architecture-notes article {
  padding: 16px 16px 14px;
  border-radius: 18px;
}

.architecture-board {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 22px 18px;
}

.architecture-diagram {
  max-width: 860px;
  margin: 0 auto;
}

.architecture-notes {
  max-width: 860px;
  margin: 14px auto 0;
  gap: 10px;
}

.architecture-notes article {
  padding: 14px 14px 12px;
}


/* Stabilize bms */
.effect-card::after {
  display: none !important;
}

.effect-card {
  padding-top: 28px !important;
}

.effect-card h3 {
  padding-left: 52px !important;
}

.effect-card h3::before {
  width: 32px !important;
  height: 32px !important;
  margin-top: -16px !important;
  border-radius: 10px !important;
  background-color: #f1d9e5 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 18px 18px !important;
  box-shadow: none !important;
}

.effect-card:nth-child(1) h3::before {
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857d87' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 18h14'/%3E%3Cpath d='M7 15l3-3 3 2 4-5'/%3E%3Cpath d='M15 9h2v2'/%3E%3C/svg%3E\") !important;
}

.effect-card:nth-child(2) h3::before {
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857d87' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='12' r='2.2'/%3E%3Ccircle cx='18' cy='7' r='2.2'/%3E%3Ccircle cx='18' cy='17' r='2.2'/%3E%3Cpath d='M8 11l7.6-3'/%3E%3Cpath d='M8 13l7.6 3'/%3E%3C/svg%3E\") !important;
}

.effect-card:nth-child(3) h3::before {
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857d87' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3 8-7 10-4-2-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9.5 12l1.7 1.7 3.3-3.7'/%3E%3C/svg%3E\") !important;
}

.effect-card:nth-child(4) h3::before {
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857d87' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3 8-7 10-4-2-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9.5 12l1.7 1.7 3.3-3.7'/%3E%3C/svg%3E\") !important;
}

.pricing-wrap .external-cta-card-simple .cta-banner-link {
  max-width: 320px !important;
}

.pricing-wrap .external-cta-card-simple .cta-banner-button,
.external-cta-card-simple .cta-banner-button {
  min-height: 56px !important;
  padding: 0 24px !important;
  font-size: 1.08rem !important;
}


/* Refine BMS heading icons to soft monochrome line style */
.strength-card::after,
.issue-card::after,
.pattern-card::after,
.module-card::after {
  display: none !important;
}

.strength-card h3,
.issue-card h3,
.pattern-card h3,
.module-card strong {
  position: relative;
  padding-left: 54px !important;
}

.strength-card h3::before,
.issue-card h3::before,
.pattern-card h3::before,
.module-card strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 34px;
  height: 34px;
  margin: 0 !important;
  border-radius: 10px;
  border: 1px solid rgba(156, 146, 151, 0.22);
  background-color: #f5f2f4 !important;
  background-image: none !important;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.strength-card:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='6' width='16' height='12' rx='2' fill='none' stroke='%239a9196' stroke-width='1.8'/%3E%3Cpath d='M8 18V4m8 14V9' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.strength-card:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='8' r='2.5' fill='none' stroke='%239a9196' stroke-width='1.8'/%3E%3Ccircle cx='16' cy='8' r='2.5' fill='none' stroke='%239a9196' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='16' r='2.5' fill='none' stroke='%239a9196' stroke-width='1.8'/%3E%3Cpath d='M10 9.5l2 4m2-4-2 4' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.strength-card:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 18V8m6 10V5m6 13v-7' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M5 18h14' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.strength-card:nth-child(4) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 7h12M6 12h9M6 17h7' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M17 15l2 2 4-4' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.strength-card:nth-child(5) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='10' width='7' height='7' rx='1.5' fill='none' stroke='%239a9196' stroke-width='1.8'/%3E%3Crect x='13' y='7' width='7' height='7' rx='1.5' fill='none' stroke='%239a9196' stroke-width='1.8'/%3E%3Cpath d='M11 13h2m-1-1v2' stroke='%239a9196' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Make BMS strength icons lighter and more editorial */
.strength-card {
  padding-top: 30px !important;
}

.strength-card::before,
.strength-card::after {
  display: none !important;
  content: none !important;
}

.strength-card h3 {
  min-height: 0 !important;
  padding-left: 46px !important;
  line-height: 1.4;
}

.strength-card h3::before {
  width: 28px !important;
  height: 28px !important;
  top: 0.1em !important;
  left: 0 !important;
  border-radius: 9px !important;
  border: 1px solid rgba(160, 151, 156, 0.2) !important;
  background-color: rgba(245, 242, 244, 0.86) !important;
  background-size: 17px 17px !important;
}


/* Fine-tune BMS hero */
.hero-scene::before {
  background:
    radial-gradient(circle at 24% 72%, rgba(242, 196, 219, 0.14), transparent 20%),
    radial-gradient(circle at 82% 26%, rgba(182, 204, 238, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(244, 240, 245, 0.12));
}

.hero-scene::after {
  opacity: 0.72;
}

.hero-illustration {
  filter: drop-shadow(0 18px 28px rgba(91, 86, 98, 0.07)) saturate(0.97) brightness(1.01);
}

.hero-badge {
  border-color: rgba(121, 122, 142, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(252, 249, 251, 0.78));
  box-shadow: 0 8px 18px rgba(96, 89, 103, 0.04);
}

/* Lift BMS hero accents */
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(198, 181, 188, 0.32);
  box-shadow: 0 8px 18px rgba(109, 97, 105, 0.05);
  color: #d65a90;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eb82ad 0%, #d65a90 100%);
  box-shadow: 0 0 0 6px rgba(235, 130, 173, 0.12);
}

.hero-copy h1 span {
  position: relative;
  padding-inline: 0.06em;
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 0.08em;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(235, 142, 179, 0.26), rgba(212, 91, 141, 0.14));
  z-index: -1;
}

.hero-feature-points span {
  position: relative;
  padding-left: 34px;
  border: 1px solid rgba(198, 181, 188, 0.28);
  box-shadow: 0 10px 22px rgba(109, 97, 105, 0.045);
}

.hero-feature-points span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #8db7e6 0%, #d86b98 100%);
}

.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(235, 142, 179, 0.56), rgba(130, 172, 225, 0.18));
}

.hero-badge small {
  margin-top: 6px;
}

/* BMS hero direction: platform-led */
.hero-visual {
  min-height: 600px;
}

.hero-scene {
  min-height: 600px;
  padding: 20px 0 92px;
}

.hero-scene::before {
  background:
    radial-gradient(circle at 22% 68%, rgba(242, 196, 219, 0.12), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(182, 204, 238, 0.10), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(244, 240, 245, 0.10));
}

.hero-scene::after {
  background-image:
    radial-gradient(circle, rgba(225, 107, 157, 0.12) 0 1.2px, transparent 2px),
    radial-gradient(circle, rgba(107, 150, 221, 0.08) 0 1.2px, transparent 2px),
    linear-gradient(135deg, rgba(226, 104, 154, 0.04) 0 1px, transparent 1px),
    linear-gradient(32deg, rgba(96, 141, 226, 0.04) 0 1px, transparent 1px);
  opacity: 0.34;
}

.hero-illustration {
  max-width: 90%;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0 22px 30px rgba(91, 86, 98, 0.09)) saturate(0.98) brightness(1.01);
}

.hero-badge {
  max-width: 238px;
  padding: 14px 16px 12px;
  border-radius: 18px;
  border: 1px solid rgba(214, 87, 141, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 251, 0.92));
  box-shadow: 0 16px 30px rgba(214, 87, 141, 0.2);
  backdrop-filter: blur(12px);
}

.hero-badge::before {
  left: 16px;
  right: 16px;
  top: 11px;
}

.badge-a {
  top: 42px;
  left: 12px;
}

.badge-b {
  top: 30px;
  right: 18px;
}

.badge-c {
  display: none;
}

.hero-system-strip {
  position: absolute;
  left: 38px;
  right: 52px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(124, 116, 124, 0.12);
  box-shadow: 0 18px 34px rgba(102, 92, 99, 0.07);
  backdrop-filter: blur(12px);
}

.hero-system-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(247, 243, 246, 0.92);
  border: 1px solid rgba(209, 198, 204, 0.55);
  color: #59545f;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-system-strip span:nth-child(1) {
  border-color: rgba(233, 116, 166, 0.34);
}

.hero-system-strip span:nth-child(2) {
  border-color: rgba(137, 172, 223, 0.34);
}

.hero-system-strip span:nth-child(3) {
  border-color: rgba(217, 143, 180, 0.34);
}

.hero-system-strip span:nth-child(4) {
  border-color: rgba(118, 178, 163, 0.34);
}

.hero-figure {
  transform-box: fill-box;
  transform-origin: center;
}

.hero-figure-left {
  opacity: 0.54;
  transform: translate(-4px, 8px) scale(0.92);
}

.hero-figure-center {
  opacity: 0.66;
  transform: translate(0, 8px) scale(0.94);
}

.hero-figure-right {
  opacity: 0.5;
  transform: translate(6px, 10px) scale(0.9);
}

@media (max-width: 900px) {
  .hero-scene {
    padding-bottom: 18px;
  }

  .hero-system-strip {
    position: static;
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-figure-left,
  .hero-figure-center,
  .hero-figure-right {
    opacity: 0.6;
    transform: none;
  }
}

/* BMS hero balance pass */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
  padding-top: 18px;
}

.hero-copy h1 {
  max-width: 10.4ch;
  font-size: clamp(2.08rem, 3.25vw, 3.3rem);
  line-height: 1.16;
  margin-bottom: 16px;
}

.hero-lead {
  max-width: 33rem;
  line-height: 1.82;
  margin-bottom: 24px;
}

.hero-feature-points {
  gap: 8px;
  margin-bottom: 22px;
}

.hero-feature-points span {
  min-height: 38px;
  padding-right: 14px;
  font-size: 0.89rem;
}

.hero-actions {
  margin-bottom: 0;
}

.hero {
  position: relative;
  padding: 14px 0 6px;
}

.hero-grid {
  gap: 10px;
}

.hero-lead {
  margin-bottom: 12px;
  line-height: 1.45;
}

.hero-actions {
  margin-bottom: 8px;
}

.hero-visual {
  min-height: 580px;
  margin-top: -16px;
}

.hero-scene {
  min-height: 560px;
  padding: 24px 0 82px;
}

.hero-illustration {
  max-width: 580px;
  width: min(92vw, 580px);
  transform: translateY(-4px);
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(17, 25, 41, 0.08);
}

.hero-badge {
  max-width: 214px;
  padding: 13px 15px 11px;
}

.hero-badge small {
  font-size: 0.69rem;
}

.hero-badge strong {
  font-size: 0.88rem;
  line-height: 1.4;
}

.badge-a {
  top: 48px;
  left: 26px;
}

.badge-b {
  top: 38px;
  right: 34px;
}

.hero-system-strip {
  left: 68px;
  right: 72px;
  bottom: 24px;
  gap: 8px;
  padding: 12px;
}

.hero-system-strip span {
  min-height: 38px;
  font-size: 0.87rem;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
    gap: 34px;
  }

  .hero-copy h1 {
    max-width: 10.8ch;
    font-size: clamp(1.96rem, 3vw, 3rem);
  }

  .hero-illustration {
    max-width: 88%;
  }

  .hero-system-strip {
    left: 42px;
    right: 44px;
  }
}

/* Implement BMS hero brief */
.hero-scene::before {
  background:
    radial-gradient(circle at 22% 68%, rgba(242, 196, 219, 0.10), transparent 21%),
    radial-gradient(circle at 80% 20%, rgba(182, 204, 238, 0.08), transparent 17%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(244, 240, 245, 0.08));
}

.hero-scene::after {
  opacity: 0.22;
}

.hero-illustration {
  max-width: 86%;
  transform: translateY(2px);
  filter: drop-shadow(0 18px 26px rgba(91, 86, 98, 0.08)) saturate(0.96) brightness(1.01);
}

.hero-badge {
  max-width: 204px;
  padding: 12px 14px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(252, 249, 251, 0.86));
  box-shadow: 0 10px 22px rgba(96, 89, 103, 0.04);
}

.hero-badge strong {
  font-size: 0.84rem;
}

.badge-a {
  top: 42px;
  left: 34px;
}

.badge-b {
  top: 32px;
  right: 42px;
}

.hero-system-strip {
  left: 82px;
  right: 84px;
  bottom: 22px;
  background: rgba(255,255,255,0.82);
}

.hero-system-strip span {
  min-height: 36px;
  background: rgba(249, 246, 248, 0.96);
}

.hero-figure-left,
.hero-figure-center,
.hero-figure-right {
  opacity: 0.28;
}

.hero-figure-left {
  transform: translate(-4px, 10px) scale(0.82);
}

.hero-figure-center {
  transform: translate(0, 10px) scale(0.84);
}

:root {
  --bg: #f7f4fb;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.8);
  --ink: #1c1f2d;
  --ink-soft: #5e5e6c;
  --line: rgba(24, 30, 53, 0.08);
  --pink: #e43b84;
  --pink-deep: #b82a64;
}

body {
  background: radial-gradient(circle at 0% 0%, rgba(228, 72, 160, 0.18), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(61, 108, 199, 0.18), transparent 28%),
    linear-gradient(180deg, #fdfbfe 0%, #f3f0fa 55%, #ece7f2 100%);
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", sans-serif;
  line-height: 1.8;
}

.container {
  width: min(1200px, 100vw - 40px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 43, 69, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-text strong {
  letter-spacing: 0.15em;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--ink-soft);
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--ink-soft);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions .button {
  min-height: 48px;
  padding: 0 26px;
}

.hero {
  position: relative;
  padding: 64px 0 60px;
  background: #fdfbfd;
}

.hero-backdrop {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: flex-start;
}

.hero-copy h1 {
  font-size: clamp(42px, 3.4vw, 48px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.hero-copy h1 span {
  display: block;
}

.hero-title-primary {
  display: block;
  color: #554E54;
  font-weight: 600;
}

.hero-title-secondary {
  display: block;
  color: var(--pink-deep);
  font-weight: 700;
  margin-top: 6px;
}

.hero-lead {
  font-size: 18px;
  color: #50555f;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-feature-points span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 239, 245, 0.9);
  border: 1px solid rgba(140, 134, 146, 0.25);
  font-size: 0.9rem;
  font-weight: 600;
  color: #5c5b64;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-monitor {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 26px 28px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(15, 25, 41, 0.08);
  border: 1px solid rgba(17, 43, 69, 0.08);
}

.hero-monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-monitor-header strong {
  font-size: 1.2rem;
}

.hero-monitor-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(228, 72, 160, 0.15);
  color: var(--pink-deep);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-monitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.monitor-card {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f9f8fb;
  border: 1px solid rgba(17, 43, 69, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.monitor-card strong {
  font-size: 1.4rem;
  color: var(--ink);
}

.monitor-card small,
.monitor-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.progress {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 43, 69, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pink), #d15a8c);
}

.hero-monitor-graph {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.graph-bar {
  flex: 1;
  height: 60px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(228, 72, 160, 0.45), rgba(228, 72, 160, 0.15));
}

.graph-bar.bar-2 {
  height: 80px;
}

.graph-bar.bar-3 {
  height: 70px;
}

.graph-bar.bar-4 {
  height: 50px;
}

.hero-monitor-nodes {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-monitor-nodes span {
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 43, 69, 0.08);
  font-size: 0.8rem;
  font-weight: 600;
}

.button {
  font-weight: 700;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, #df5f95, #cf4a86);
  color: #fff;
  box-shadow: 0 14px 32px rgba(214, 82, 129, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(228, 72, 160, 0.28);
}

.button-ghost {
  border: 1px solid rgba(17, 25, 41, 0.15);
  background: rgba(255, 255, 255, 0.95);
  color: #2b2d38;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--pink);
  color: var(--pink-deep);
}

.hero-trust {
  padding: 36px 0 8px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.trust-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 25, 41, 0.08);
  box-shadow: 0 18px 36px rgba(59, 68, 94, 0.08);
  display: flex;
  gap: 12px;
  min-height: 120px;
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  color: #2b2d38;
  margin-bottom: 4px;
}

.trust-card p {
  margin: 0;
  color: #4a4f5b;
  font-size: 0.9rem;
  line-height: 1.4;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(216, 79, 142, 0.14);
  color: #d84a87;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

/* Tone refinement: soften the Core System title only */
.transaction-grid .compact-heading h2 {
  color: #5c5660;
}

/* Hero first line: dark gray tone */
.hero-title-primary {
  color: #575056 !important;
}

/* Suitability section refinement */
.fit-section .fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 56px;
  align-items: start;
}

.fit-section .fit-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.fit-section .fit-copy .section-label {
  margin-bottom: 2px;
}

.fit-section .fit-copy h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.3rem, 3.2vw, 3.15rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #575056;
}

.fit-section .fit-copy > p {
  max-width: 640px;
  margin: 0;
  color: #606577;
  font-size: 1.04rem;
  line-height: 1.9;
}

.fit-section .fit-card {
  width: min(100%, 520px);
  margin-left: auto;
  padding: 30px 30px 26px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 252, 0.96));
  border: 1px solid rgba(136, 130, 144, 0.12);
  box-shadow: 0 24px 48px rgba(53, 45, 62, 0.09);
}

.fit-section .fit-card-header {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.fit-section .fit-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(223, 91, 141, 0.13);
  color: #d45b8d;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fit-section .fit-card-header > p {
  margin: 0;
  color: #575056;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}

.fit-section .fit-chart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.fit-section .fit-chart li {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(180px, 1.1fr) 60px;
  align-items: center;
  gap: 16px;
}

.fit-section .fit-chart li > div:first-child {
  min-width: 0;
}

.fit-section .fit-chart strong {
  display: block;
  color: #596074;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.fit-section .fit-chart span:not(.bar):not(.bar-value) {
  display: block;
  margin-top: 2px;
  color: #8a8f9d;
  font-size: 0.84rem;
  line-height: 1.45;
}

.fit-section .bar-shell {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: #e5e7ee;
  overflow: hidden;
}

.fit-section .bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dd5a92 0%, #e57dad 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.fit-section .bar:not(.primary) {
  background: linear-gradient(90deg, #bbb7c7 0%, #aeb4c6 100%);
}

.fit-section .bar-value {
  display: block;
  text-align: right;
  color: #4f5568;
  font-size: 0.98rem;
  font-weight: 700;
}

.fit-section .fit-card-note {
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(137, 130, 144, 0.14);
  color: #717787;
  font-size: 0.98rem;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .fit-section .fit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fit-section .fit-card {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .fit-section .fit-copy h2 {
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .fit-section .fit-card {
    padding: 24px 22px 22px;
    border-radius: 28px;
  }

  .fit-section .fit-tag {
    min-height: 42px;
    font-size: 0.92rem;
    padding: 0 16px;
  }

  .fit-section .fit-card-header > p {
    font-size: 1rem;
  }

  .fit-section .fit-chart li {
    grid-template-columns: minmax(112px, 1fr) minmax(108px, 1fr) 48px;
    gap: 10px;
  }

  .fit-section .fit-chart strong {
    font-size: 0.92rem;
  }

  .fit-section .fit-chart span:not(.bar):not(.bar-value) {
    font-size: 0.78rem;
  }

  .fit-section .bar-shell {
    height: 14px;
  }

  .fit-section .bar-value {
    font-size: 0.9rem;
  }
}

/* Hero heading: keep the first line on one row and slightly smaller */
.hero-title-primary {
  display: inline-block;
  font-size: clamp(2.05rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  white-space: nowrap;
  word-break: keep-all;
}

/* Tighten the gap between hero CTA and metrics cards */
.hero {
  padding-bottom: 24px;
}

.hero-grid {
  align-items: start;
}

.hero-actions {
  margin-bottom: 8px;
}

.hero-metrics {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Keep key metric card values on a single line */
.metrics-card .metrics-value {
  white-space: nowrap;
  word-break: keep-all;
}

.metrics-card:nth-child(3) .metric-number,
.metrics-card:nth-child(4) .metric-number,
.metrics-card:nth-child(5) .metric-number {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.metrics-card:nth-child(3) p:last-child,
.metrics-card:nth-child(4) p:last-child,
.metrics-card:nth-child(5) p:last-child {
  white-space: nowrap;
  word-break: keep-all;
  font-size: 0.8rem;
}

/* Unify major title tone across sections */
.section-heading h2,
.compact-heading h2,
.fit-section .fit-copy h2,
.achievement-text h3 {
  color: #575056 !important;
}

/* Achievement badges: quieter award-like mood */
.trust-ribbon .achievement-years {
  display: grid;
  grid-template-columns: repeat(5, minmax(92px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.trust-ribbon .achievement-years span {
  position: relative;
  min-height: 122px;
  padding: 18px 12px 16px;
  border-radius: 24px;
  border: 1px solid rgba(202, 177, 83, 0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,248,236,0.92));
  box-shadow: 0 14px 26px rgba(118, 102, 54, 0.06);
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
  overflow: hidden;
}

.trust-ribbon .achievement-years span::before {
  content: "♛";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #c9a52e;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.95;
}

.trust-ribbon .achievement-years span::after {
  content: "";
  position: absolute;
  inset: 28px 16px 40px;
  border-left: 2px solid rgba(201, 165, 46, 0.85);
  border-right: 2px solid rgba(201, 165, 46, 0.85);
  border-radius: 999px;
  opacity: 0.75;
}

.trust-ribbon .achievement-years em,
.trust-ribbon .achievement-years small {
  position: relative;
  z-index: 1;
  font-style: normal;
}

.trust-ribbon .achievement-years em {
  color: #8f7544;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-ribbon .achievement-years small {
  color: #b18c23;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  .trust-ribbon .achievement-years {
    grid-template-columns: repeat(3, minmax(92px, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-ribbon .achievement-years {
    grid-template-columns: repeat(2, minmax(92px, 1fr));
    gap: 12px;
  }

.trust-ribbon .achievement-years span {
    min-height: 110px;
  }
}

/* Match metric heading color to each card accent */
.metrics-card:nth-child(1) .metrics-value {
  color: #7d8eb6;
}

.metrics-card:nth-child(1) .metric-prefix {
  color: rgba(125, 142, 182, 0.78);
}

.metrics-card:nth-child(2) .metrics-value {
  color: #c8a34f;
}

.metrics-card:nth-child(3) .metrics-value {
  color: #73a49d;
}

.metrics-card:nth-child(4) .metrics-value {
  color: #df8e6e;
}

.metrics-card:nth-child(5) .metrics-value {
  color: #7e9e78;
}

/* DX support section as linked service cards */
.dx-support {
  display: grid;
  gap: 24px;
}

.dx-support .section-heading {
  margin-bottom: 0;
}

.dx-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dx-card {
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(128, 121, 135, 0.12);
  box-shadow: 0 12px 28px rgba(22, 26, 39, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  color: inherit;
}

.dx-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(22, 26, 39, 0.08);
  border-color: rgba(212, 91, 141, 0.22);
}

.dx-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(239, 236, 243, 0.95);
  border: 1px solid rgba(145, 139, 149, 0.14);
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #6f6770;
}

.dx-card strong {
  font-size: 1rem;
  line-height: 1.45;
  color: #575056;
}

.dx-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #6f7484;
}

.dx-card-muted {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(128, 121, 135, 0.08);
}

.dx-cta-link {
  margin-top: 2px;
  display: flex;
  justify-content: center;
}

.dx-cta-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(128, 121, 135, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: #575056;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.dx-cta-link a:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 91, 141, 0.28);
  box-shadow: 0 10px 22px rgba(22, 26, 39, 0.05);
}

@media (max-width: 980px) {
  .dx-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dx-service-grid {
    grid-template-columns: 1fr;
  }
}

/* Achievement section: calmer, more compact award layout */
.trust-ribbon {
  padding: 22px 24px;
  gap: 24px;
  align-items: start;
}

.trust-ribbon-badge {
  gap: 10px;
}

.trust-ribbon .market-badge-medal {
  width: 118px;
  height: 118px;
}

.trust-ribbon .market-badge-no1 {
  font-size: 1.22rem;
}

.trust-ribbon .market-badge-label {
  font-size: 0.8rem;
  line-height: 1.35;
}

.trust-ribbon .achievement-count {
  display: none;
}

.trust-ribbon .achievement-years {
  display: grid;
  grid-template-columns: repeat(5, minmax(84px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust-ribbon .achievement-years span {
  position: relative;
  min-height: 92px;
  padding: 14px 10px 12px;
  border-radius: 20px;
  border: 1px solid rgba(202, 177, 83, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,248,240,0.96));
  box-shadow: none;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 8px;
}

.trust-ribbon .achievement-years span::before {
  content: "♛";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: #c4a23d;
  font-size: 0.8rem;
  line-height: 1;
}

.trust-ribbon .achievement-years span::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  right: 14px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(202, 177, 83, 0.56);
}

.trust-ribbon .achievement-years em,
.trust-ribbon .achievement-years small {
  position: relative;
  z-index: 1;
}

.trust-ribbon .achievement-years em {
  font-size: 0.8rem;
  font-weight: 700;
  color: #8d7648;
  letter-spacing: 0.04em;
}

.trust-ribbon .achievement-years small {
  font-size: 0.96rem;
  font-weight: 700;
  color: #ab8722;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .trust-ribbon .achievement-years {
    grid-template-columns: repeat(3, minmax(84px, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-ribbon .achievement-years {
    grid-template-columns: repeat(2, minmax(84px, 1fr));
    gap: 10px;
  }
}

/* Make the suitability card more compact */
.fit-section .fit-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  gap: 42px;
}

.fit-section .fit-card {
  width: min(100%, 500px);
  padding: 24px 24px 22px;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(53, 45, 62, 0.07);
}

.fit-section .fit-card-header {
  gap: 12px;
  margin-bottom: 16px;
}

.fit-section .fit-tag {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.fit-section .fit-card-header > p {
  font-size: 1rem;
  line-height: 1.45;
}

.fit-section .fit-chart {
  gap: 16px;
}

.fit-section .fit-chart li {
  grid-template-columns: minmax(156px, 1fr) minmax(150px, 0.95fr) 52px;
  gap: 12px;
}

.fit-section .fit-chart strong {
  font-size: 0.95rem;
}

.fit-section .fit-chart span:not(.bar):not(.bar-value) {
  font-size: 0.8rem;
}

.fit-section .bar-shell {
  height: 16px;
}

.fit-section .bar-value {
  font-size: 0.94rem;
}

.fit-section .fit-card-note {
  margin-top: 18px;
  padding-top: 18px;
  font-size: 0.92rem;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .fit-section .fit-card {
    width: min(100%, 480px);
  }
}

/* Hero illustration placement */
.hero-visual {
  align-items: flex-start;
  padding-top: 0;
}

.hero-illustration {
  width: min(520px, 100%);
  transform: translateY(-18px);
}

.hero-metrics {
  padding: 32px 0 12px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(17, 20, 41, 0.08);
  margin: 0 auto 16px;
}

.metrics-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.metrics-card {
  border-radius: 18px;
  border: 2px solid rgba(17, 25, 41, 0.06);
  padding: 10px 12px;
  background: #ffffff;
  min-height: 0;
  box-shadow: 0 8px 16px rgba(17, 25, 41, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.metrics-card .metrics-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.metrics-card .metrics-value {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
  color: #3f424a;
}

.metric-prefix {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(43, 45, 56, 0.65);
  margin-right: 3px;
}

.metric-number {
  font-size: 1.5rem;
}

.metrics-card p {
  margin: 0;
  color: #4f525c;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
}

.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}

.metrics-card.accent-blue .metric-icon {
  background: #7d8eb6;
}

.metrics-card.accent-gold .metric-icon {
  background: #c8a34f;
}

.metrics-card.accent-teal .metric-icon {
  background: #73a49d;
}

.metrics-card.accent-peach .metric-icon {
  background: #df8e6e;
}

.metrics-card.accent-green .metric-icon {
  background: #7e9e78;
}

.metrics-card.accent-blue {
  border-color: #7c8eb4;
}

.metrics-card.accent-blue .metrics-label {
  background-color: #7d8eb6;
}

.metrics-card.accent-gold {
  border-color: #c49f52;
}

.metrics-card.accent-gold .metrics-label {
  background-color: #c8a34f;
}

.metrics-card.accent-teal {
  border-color: #78a49c;
}

.metrics-card.accent-teal .metrics-label {
  background-color: #73a49d;
}

.metrics-card.accent-peach {
  border-color: #e08d6f;
}

.metrics-card.accent-peach .metrics-label {
  background-color: #df8e6e;
}

.metrics-card.accent-green {
  border-color: #94aa7c;
}

.metrics-card.accent-green .metrics-label {
  background-color: #7e9e78;
}
.menu-toggle {
  border: 1px solid rgba(17, 43, 69, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 20px rgba(17, 43, 69, 0.12);
}

#issues .issue-card {
  padding: 32px 28px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 249, 0.94));
  border: 1px solid rgba(123, 112, 119, 0.12);
  box-shadow: 0 18px 40px rgba(93, 86, 99, 0.06);
  position: relative;
  overflow: hidden;
}

#issues .issue-card::after {
  display: none;
}

#issues .issue-card .issue-index {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f25d93 0%, #cf3d7d 100%);
  color: #fff;
  font-family: var(--font-number, \"Yu Gothic\", sans-serif);
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(202, 64, 137, 0.24);
}

#issues .issue-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--pink-deep);
  font-weight: 700;
  padding-left: 0;
}

#issues .issue-card h3::before {
  display: none;
}

#issues .issue-card ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
  color: #5f5862;
  line-height: 1.6;
}

#issues .issue-card p {
  margin: 0;
  margin-left: 0;
  padding-left: 0;
  color: #5f5862;
  line-height: 1.7;
}

.strength-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.strength-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(226, 223, 236, 0.65);
  border: 1px solid rgba(157, 149, 166, 0.35);
  display: grid;
  place-items: center;
  margin-bottom: -4px;
}
.strength-icon svg {
  width: 25px;
  height: 25px;
}
.strength-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #3a3446;
}

/* Core System cards: unify title and icon tone */
.scale-cards article strong {
  color: #6e6770;
}

.scale-cards article strong::before {
  border-color: rgba(156, 148, 154, 0.16);
  background-color: rgba(248, 247, 249, 0.96);
}

.scale-cards article:nth-child(1) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6770' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 19V8.5a2.5 2.5 0 0 1 5 0V19'/%3E%3Cpath d='M12.5 19V5.5a2.5 2.5 0 0 1 5 0V19'/%3E%3C/svg%3E");
}

.scale-cards article:nth-child(2) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6770' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2.5'/%3E%3Cpath d='M8 19v-4'/%3E%3Cpath d='M12 19v-6'/%3E%3Cpath d='M16 19v-8'/%3E%3C/svg%3E");
}

.scale-cards article:nth-child(3) strong::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6770' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 8h10'/%3E%3Cpath d='M7 12h10'/%3E%3Cpath d='M7 16h6'/%3E%3Crect x='4' y='5' width='16' height='14' rx='2.5'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-monitor {
    max-width: none;
  }
}

.fit-section {
  padding-top: 60px;
}

.fit-split {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.fit-copy h2 {
  font-size: clamp(36px, 3vw, 48px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.fit-copy p {
  max-width: 520px;
  color: #3f4350;
  font-size: 17px;
  line-height: 1.7;
}

.fit-card-panel {
  display: flex;
  justify-content: flex-end;
}

.fit-chart-card {
  width: min(100%, 520px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fbf9fd);
  border-radius: 36px;
  border: 1px solid rgba(124, 110, 136, 0.12);
  box-shadow: 0 24px 52px rgba(29, 24, 40, 0.10);
  padding: 30px 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit-card-pill {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(223, 118, 168, 0.15);
  color: #d45b8d;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fit-chart-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
  color: #575056;
  font-weight: 700;
}

.fit-card-note {
  font-size: 0.95rem;
  color: #737887;
  margin: 0;
}

.fit-card-foot {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(126, 118, 132, 0.14);
  color: #737887;
  font-size: 0.98rem;
  line-height: 1.85;
}

.fit-compare {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 2px;
}

.fit-compare-row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 1.18fr) 56px;
  align-items: center;
  gap: 14px;
}

.fit-compare-label {
  font-size: 1rem;
  color: #5b6072;
  font-weight: 600;
  line-height: 1.45;
  min-width: 0;
}

.fit-bar-shell {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #e6e7ef;
  overflow: hidden;
}

.fit-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #de5b93 0%, #e97bac 100%);
  transition: width 0.4s ease;
}

.fit-bar.fill-90 {
  width: 90%;
}

.fit-bar.fill-40 {
  width: 40%;
  background: linear-gradient(90deg, #b8b3c2 0%, #a9afc2 100%);
}

.fit-bar.fill-10 {
  width: 10%;
  min-width: 28px;
  background: linear-gradient(90deg, #c8c6d3 0%, #b2b7c9 100%);
}

.fit-percentage {
  font-weight: 700;
  color: #4f5568;
  text-align: right;
  font-size: 1rem;
  min-width: 0;
}

@media (max-width: 980px) {
  .fit-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fit-card-panel {
    justify-content: flex-start;
  }

  .fit-chart-card {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .fit-chart-card {
    padding: 24px 22px;
    border-radius: 28px;
  }

  .fit-card-pill {
    font-size: 0.88rem;
    padding: 8px 16px;
  }

  .fit-compare-row {
    grid-template-columns: minmax(118px, 1fr) minmax(88px, 1fr) 44px;
    gap: 10px;
  }

  .fit-compare-label {
    font-size: 0.92rem;
  }

  .fit-bar-shell {
    height: 10px;
  }

  .fit-percentage {
    text-align: right;
    font-size: 0.92rem;
  }
}

.achievement-section .achievement-card {
  border-radius: 32px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,241,247,0.96));
  border: 1px solid rgba(124,110,136,0.18);
  box-shadow: 0 28px 58px rgba(15,24,40,0.12);
}

.achievement-heading {
  display: flex;
  gap: 26px;
  align-items: center;
}

.achievement-badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(223,118,168,0.16), rgba(223,118,168,0.05));
  color: #a9447f;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.12em;
}

.achievement-text h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #2b2b34;
}

.achievement-label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8f8897;
}

.achievement-desc {
  max-width: 420px;
  color: #5a5d6a;
  margin: 10px 0 0;
  line-height: 1.6;
}

.achievement-count {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3f3f4a;
}

.achievement-years {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.achievement-years span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,43,69,0.2);
  background: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  color: #4b4f5a;
}

.achievement-source {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #5e5f6d;
}

@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-chart li {
    grid-template-columns: 1fr;
  }

  .fit-chart li .bar-value {
    align-self: flex-end;
  }
}

/* Hero balance refinement */
.hero {
  position: relative;
  padding: 40px 0 64px;
  background: #faf8fb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8px 0 0;
  background-image:
    linear-gradient(0deg, rgba(88, 82, 112, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 82, 112, 0.08) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.14;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 3.9rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: #cb3e82;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-title-primary {
  color: #554e54;
}

.hero-title-secondary {
  font-size: 1rem;
  margin-top: 6px;
  color: #c02c66;
}

.hero-lead {
  font-size: 18px;
  color: #3f4451;
  max-width: 520px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero-lead--muted {
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.button-primary {
  background: #df5e95;
  color: #fff;
  box-shadow: 0 18px 38px rgba(214, 82, 129, 0.18);
}

.button-ghost {
  border: 1px solid rgba(102, 102, 102, 0.25);
  background: #fff;
  color: #3a3f4d;
}

.hero-trust {
  padding: 36px 0 12px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 43, 69, 0.16);
  box-shadow: 0 18px 36px rgba(17, 43, 69, 0.08);
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  color: #24304b;
}

.trust-card p {
  margin: 0;
  color: #4b515f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(216, 79, 142, 0.16);
  color: #ca4a97;
  display: grid;
  place-items: center;
  font-size: 1rem;
}


/* Comparison intro width tuning */
#comparison .section-heading {
  max-width: 1080px;
}

#comparison .section-heading p:last-of-type {
  max-width: 980px;
}

/* Fit section: keep achievements inside the suitability card */
.fit-card .trust-ribbon-inline {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(131, 125, 137, 0.12);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.fit-card .trust-ribbon-inline .trust-ribbon-badge {
  gap: 0;
}

.fit-card .trust-ribbon-inline .market-badge-medal {
  width: 92px;
  height: 92px;
}

.fit-card .trust-ribbon-inline .market-badge-no1 {
  font-size: 1.05rem;
}

.fit-card .trust-ribbon-inline .market-badge-label {
  font-size: 0.72rem;
  line-height: 1.3;
}

.fit-card .trust-ribbon-inline .trust-ribbon-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #575056;
  font-size: 0.98rem;
  line-height: 1.45;
}

.fit-card .trust-ribbon-inline .trust-ribbon-copy p {
  margin: 0;
  color: #707587;
  font-size: 0.88rem;
  line-height: 1.7;
}

.fit-card .trust-ribbon-inline .achievement-years {
  grid-template-columns: repeat(5, minmax(64px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.fit-card .trust-ribbon-inline .achievement-years span {
  min-height: 74px;
  padding: 10px 8px;
  border-radius: 16px;
}

.fit-card .trust-ribbon-inline .achievement-years span::before {
  top: 6px;
  font-size: 0.72rem;
}

.fit-card .trust-ribbon-inline .achievement-years span::after {
  top: 18px;
  left: 10px;
  right: 10px;
  height: 24px;
}

.fit-card .trust-ribbon-inline .achievement-years em {
  font-size: 0.72rem;
}

.fit-card .trust-ribbon-inline .achievement-years small {
  font-size: 0.82rem;
}

.fit-card .trust-ribbon-inline .achievement-source {
  margin-top: 12px;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .fit-card .trust-ribbon-inline {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    text-align: center;
  }

  .fit-card .trust-ribbon-inline .trust-ribbon-copy {
    width: 100%;
  }

  .fit-card .trust-ribbon-inline .achievement-years {
    grid-template-columns: repeat(2, minmax(74px, 1fr));
  }
}

/* Pricing step heading balance */
.pricing-step {
  grid-template-columns: 44px minmax(0, 1fr) !important;
  grid-template-areas:
    "num title"
    "body body" !important;
  align-items: start !important;
  column-gap: 14px !important;
  row-gap: 14px !important;
}

.pricing-step strong {
  grid-area: num !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  align-self: start !important;
}

.pricing-step h3 {
  grid-area: title !important;
  align-self: center !important;
  margin: 2px 0 0 !important;
  color: #d45b8d !important;
  line-height: 1.2 !important;
}

.pricing-step p {
  grid-area: body !important;
  margin-top: 0 !important;
}

/* Core system icon box: reduce inner whitespace */
.scale-cards article strong {
  padding-left: 46px !important;
}

.scale-cards article strong::before {
  width: 34px !important;
  height: 34px !important;
  margin-top: -17px !important;
  background-size: 22px 22px !important;
  border-radius: 10px !important;
}

/* Effect card icon box: reduce inner whitespace */
.effect-card h3 {
  padding-left: 46px !important;
}

.effect-card h3::before {
  width: 30px !important;
  height: 30px !important;
  margin-top: -15px !important;
  background-size: 20px 20px !important;
  border-radius: 9px !important;
}

/* CTA + subsidy separation refresh */
.external-cta-wrap-simple {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.external-cta-card-simple {
  padding: 18px 20px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,245,249,0.92)) !important;
  border: 1px solid rgba(136, 126, 139, 0.12) !important;
  box-shadow: 0 16px 36px rgba(97, 89, 101, 0.06) !important;
  gap: 12px !important;
}

.external-cta-card-simple .cta-banner-link {
  max-width: 100% !important;
  width: 100%;
}

.external-cta-card-simple .cta-banner-button {
  min-height: 68px !important;
  border-radius: 22px !important;
  font-size: 1.28rem !important;
}

.external-cta-card-simple .cta-card-copy {
  margin: 0;
  text-align: center;
  color: #6e6a75;
  font-size: 0.96rem;
  line-height: 1.7;
}

.subsidy-panel {
  width: 100%;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(248, 245, 248, 0.88);
  border: 1px solid rgba(141, 129, 145, 0.14);
  box-shadow: 0 10px 24px rgba(97, 89, 101, 0.04);
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.subsidy-label {
  color: #514b58;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.subsidy-note {
  margin: 0;
  color: #726d78;
  font-size: 0.9rem;
  line-height: 1.7;
}

.subsidy-panel .button-ghost {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.94rem;
  background: #fff;
}

/* Hero first line: slightly smaller */
.hero-title-primary {
  font-size: clamp(1.82rem, 2.8vw, 2.45rem) !important;
}

/* Hero illustration: slightly larger */
.hero-illustration {
  width: min(560px, 100%) !important;
}

/* Hero first line: one more step smaller */
.hero-title-primary {
  font-size: clamp(1.7rem, 2.55vw, 2.28rem) !important;
}

/* Pricing step titles: slightly larger */
.pricing-step h3 {
  font-size: 1.22rem !important;
}

/* Hero illustration: lower to match main heading top and scale up slightly */
.hero-visual {
  padding-top: 58px !important;
}

.hero-illustration {
  width: min(600px, 100%) !important;
  transform: translateY(0) !important;
}

/* DX support intro width tuning */
.dx-support .section-heading {
  max-width: 1120px;
}

.dx-support .section-heading > p:last-of-type {
  max-width: 1000px;
}

/* Final fit section polish: airy top copy + two balanced cards */
.fit-section {
  padding-top: 54px !important;
  padding-bottom: 88px !important;
}

.fit-section .fit-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}

.fit-section .fit-copy {
  grid-column: 1 / -1 !important;
  max-width: 1120px !important;
  display: grid !important;
  gap: 16px !important;
}

.fit-section .fit-copy .section-label {
  margin-bottom: 0 !important;
}

.fit-section .fit-copy h2 {
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(1.82rem, 2.45vw, 2.4rem) !important;
  line-height: 1.14 !important;
  color: #575056 !important;
}

.fit-section .fit-copy > p {
  max-width: 900px !important;
  margin: 0 !important;
  color: #63697a !important;
  font-size: 1.02rem !important;
  line-height: 1.9 !important;
}

.fit-section .fit-card {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  padding: 26px 28px 24px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(132, 124, 138, 0.1) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,249,252,0.96)) !important;
  box-shadow: 0 18px 40px rgba(53, 45, 62, 0.07) !important;
  overflow: hidden !important;
}

.fit-section .fit-card-header {
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.fit-section .fit-tag {
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.01em !important;
}

.fit-section .fit-card-header > p {
  margin: 0 !important;
  font-size: 1.04rem !important;
  line-height: 1.45 !important;
  color: #575056 !important;
}

.fit-section .fit-chart {
  gap: 18px !important;
}

.fit-section .fit-chart li {
  grid-template-columns: minmax(160px, 1fr) minmax(170px, 0.95fr) 54px !important;
  gap: 14px !important;
}

.fit-section .fit-chart strong {
  font-size: 0.97rem !important;
  color: #5a6072 !important;
}

.fit-section .fit-chart span:not(.bar):not(.bar-value) {
  font-size: 0.82rem !important;
  color: #898f9d !important;
}

.fit-section .bar-shell {
  height: 16px !important;
}

.fit-section .bar-value {
  font-size: 0.95rem !important;
  color: #4f5568 !important;
}

.fit-section .fit-card-note {
  margin-top: 18px !important;
  padding-top: 18px !important;
  font-size: 0.94rem !important;
  line-height: 1.8 !important;
  color: #737887 !important;
}

.fit-section .fit-card.fit-achievement-card {
  padding: 24px 24px 22px !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-inline {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  grid-template-columns: 106px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: start !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-badge {
  width: 106px !important;
  min-width: 106px !important;
}

.fit-section .fit-card.fit-achievement-card .market-badge-medal {
  width: 90px !important;
  height: 90px !important;
}

.fit-section .fit-card.fit-achievement-card .market-badge-no1 {
  font-size: 1.02rem !important;
}

.fit-section .fit-card.fit-achievement-card .market-badge-label {
  font-size: 0.7rem !important;
  line-height: 1.26 !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-copy strong {
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  color: #575056 !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-copy p {
  margin: 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.72 !important;
  color: #727787 !important;
}

.fit-section .fit-card.fit-achievement-card .achievement-years {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(64px, 1fr)) !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

.fit-section .fit-card.fit-achievement-card .achievement-years span {
  min-height: 76px !important;
  padding: 10px 8px 8px !important;
  border-radius: 16px !important;
}

.fit-section .fit-card.fit-achievement-card .achievement-source {
  margin-top: 10px !important;
  font-size: 0.78rem !important;
  color: #81828e !important;
}

/* Achievement card balance: center content within the matched-height card */
.fit-section .fit-card.fit-achievement-card {
  display: flex !important;
  align-items: center !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-inline {
  width: 100% !important;
  align-items: center !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-copy {
  display: grid !important;
  align-content: center !important;
}

@media (max-width: 980px) {
  .fit-section .fit-grid {
    grid-template-columns: 1fr !important;
  }

  .fit-section .fit-copy {
    grid-column: auto !important;
  }

  .fit-section .fit-copy > p {
    max-width: none !important;
  }

  .fit-section .fit-card.fit-achievement-card .trust-ribbon-inline {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .fit-section .fit-card.fit-achievement-card .trust-ribbon-copy {
    width: 100% !important;
  }

  .fit-section .fit-card.fit-achievement-card .achievement-years {
    grid-template-columns: repeat(3, minmax(64px, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .fit-section .fit-card {
    padding: 22px 20px 20px !important;
    border-radius: 26px !important;
  }

  .fit-section .fit-card-header > p {
    font-size: 0.98rem !important;
  }

  .fit-section .fit-chart li {
    grid-template-columns: minmax(116px, 1fr) minmax(96px, 1fr) 46px !important;
    gap: 10px !important;
  }

  .fit-section .bar-shell {
    height: 13px !important;
  }

  .fit-section .fit-card.fit-achievement-card .achievement-years {
    grid-template-columns: repeat(2, minmax(68px, 1fr)) !important;
  }
}

/* Pricing section: tighten space between intro and cards */
.pricing-wrap {
  gap: 14px !important;
}

.pricing-heading {
  margin-bottom: 2px !important;
}

.pricing-steps {
  margin-top: 0 !important;
}

/* Pricing steps: make step numbers a bit more visible without changing layout */
.pricing-step strong {
  width: 58px !important;
  height: 58px !important;
  font-size: 1.42rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.pricing-step {
  grid-template-columns: 58px minmax(0, 1fr) !important;
  column-gap: 18px !important;
}

/* Hero illustration: scale up slightly more while keeping frame balance */
.hero-illustration {
  width: min(700px, 100%) !important;
}

@media (max-width: 1120px) {
  .hero-illustration {
    width: min(650px, 100%) !important;
  }
}

/* Fit cards: keep left/right panels visually aligned */
.fit-section .fit-grid {
  align-items: stretch !important;
}

.fit-section .fit-card,
.fit-section .fit-card.fit-achievement-card {
  height: 100% !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-inline {
  min-height: 100% !important;
}
/* Safety fix: keep achievement block inside the suitability card */
.fit-section .fit-card {
  overflow: hidden !important;
}

.fit-section .fit-card .trust-ribbon-inline {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 18px !important;
  padding: 18px 0 0 !important;
  border-top: 1px solid rgba(131, 125, 137, 0.12) !important;
  background: transparent !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

.fit-section .fit-card .trust-ribbon-inline .trust-ribbon-badge {
  min-width: 0 !important;
  width: 96px !important;
}

.fit-section .fit-card .trust-ribbon-inline .market-badge-medal {
  width: 84px !important;
  height: 84px !important;
  margin: 0 auto !important;
}

.fit-section .fit-card .trust-ribbon-inline .market-badge-no1 {
  font-size: 1rem !important;
}

.fit-section .fit-card .trust-ribbon-inline .market-badge-label {
  font-size: 0.68rem !important;
  line-height: 1.25 !important;
}

.fit-section .fit-card .trust-ribbon-inline .trust-ribbon-copy {
  min-width: 0 !important;
  width: 100% !important;
}

.fit-section .fit-card .trust-ribbon-inline .trust-ribbon-copy strong {
  display: block !important;
  margin-bottom: 6px !important;
  font-size: 0.96rem !important;
  line-height: 1.45 !important;
}

.fit-section .fit-card .trust-ribbon-inline .trust-ribbon-copy p {
  margin: 0 !important;
  font-size: 0.86rem !important;
  line-height: 1.65 !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-years {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(56px, 1fr)) !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 12px !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-years span {
  min-height: 72px !important;
  padding: 10px 6px 8px !important;
  border-radius: 14px !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-years span::before {
  top: 6px !important;
  font-size: 0.68rem !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-years span::after {
  top: 18px !important;
  left: 8px !important;
  right: 8px !important;
  height: 22px !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-years em {
  font-size: 0.7rem !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-years small {
  font-size: 0.78rem !important;
}

.fit-section .fit-card .trust-ribbon-inline .achievement-source {
  margin-top: 10px !important;
  font-size: 0.76rem !important;
}

@media (max-width: 980px) {
  .fit-section .fit-card .trust-ribbon-inline {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .fit-section .fit-card .trust-ribbon-inline .trust-ribbon-copy {
    width: 100% !important;
  }

  .fit-section .fit-card .trust-ribbon-inline .achievement-years {
    grid-template-columns: repeat(3, minmax(64px, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .fit-section .fit-card .trust-ribbon-inline .achievement-years {
    grid-template-columns: repeat(2, minmax(64px, 1fr)) !important;
  }
}
/* Strength cards: restore understated line icons */
.strength-card h3 {
  padding-left: 52px !important;
}

.strength-card h3::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.08em !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(188, 180, 186, 0.42) !important;
  background-color: rgba(248, 246, 248, 0.96) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px 20px !important;
  box-shadow: none !important;
}

.strength-card:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23817a83' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='8' width='5' height='5' rx='1.2'/%3E%3Crect x='9.5' y='3.5' width='5' height='5' rx='1.2'/%3E%3Crect x='15.5' y='8' width='5' height='5' rx='1.2'/%3E%3Cpath d='M6 13v3.5h12V13'/%3E%3Cpath d='M12 8.5v8'/%3E%3C/svg%3E") !important;
}

.strength-card:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23817a83' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3Cpath d='M15.5 13.5 18 16l2.5-2.5'/%3E%3C/svg%3E") !important;
}

.strength-card:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23817a83' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 18V9'/%3E%3Cpath d='M12 18V6'/%3E%3Cpath d='M18 18v-4'/%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='M15.2 8.8 18 11.6l2.8-2.8'/%3E%3C/svg%3E") !important;
}

.strength-card:nth-child(4) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23817a83' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='15' width='4' height='4' rx='1'/%3E%3Crect x='10' y='10' width='4' height='4' rx='1'/%3E%3Crect x='16' y='5' width='4' height='4' rx='1'/%3E%3Cpath d='M8 17h2'/%3E%3Cpath d='M14 12h2'/%3E%3C/svg%3E") !important;
}

.strength-card:nth-child(5) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23817a83' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='12' r='2.2'/%3E%3Ccircle cx='18' cy='7' r='2.2'/%3E%3Ccircle cx='18' cy='17' r='2.2'/%3E%3Cpath d='M8.1 11l7.8-3'/%3E%3Cpath d='M8.1 13l7.8 3'/%3E%3C/svg%3E") !important;
}

.strength-card:nth-child(6) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23817a83' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6v5h-5'/%3E%3Cpath d='M4 18v-5h5'/%3E%3Cpath d='M7.5 8.5A6 6 0 0 1 18 11'/%3E%3Cpath d='M16.5 15.5A6 6 0 0 1 6 13'/%3E%3C/svg%3E") !important;
}
/* CTA stability fix */
.pricing-wrap .external-cta-wrap-simple,
.external-cta-wrap-simple {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  padding-top: 14px !important;
}

.pricing-wrap .external-cta-card-simple,
.external-cta-card-simple {
  width: 100% !important;
  padding: 20px 24px !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,245,249,0.94)) !important;
  border: 1px solid rgba(136, 126, 139, 0.12) !important;
  box-shadow: 0 16px 36px rgba(97, 89, 101, 0.06) !important;
  display: grid !important;
  justify-items: center !important;
  align-items: start !important;
  gap: 12px !important;
}

.pricing-wrap .external-cta-card-simple .cta-banner-link,
.external-cta-card-simple .cta-banner-link {
  width: auto !important;
  max-width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
}

.pricing-wrap .external-cta-card-simple .cta-banner-button,
.external-cta-card-simple .cta-banner-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 68px !important;
  min-width: 320px !important;
  max-width: 100% !important;
  padding: 0 32px !important;
  border-radius: 22px !important;
  font-size: 1.24rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.external-cta-card-simple .cta-card-copy {
  margin: 0 !important;
  text-align: center !important;
  max-width: 520px !important;
}

.subsidy-panel {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

@media (max-width: 640px) {
  .pricing-wrap .external-cta-card-simple .cta-banner-button,
  .external-cta-card-simple .cta-banner-button {
    min-width: 0 !important;
    width: 100% !important;
    font-size: 1.08rem !important;
    padding: 0 20px !important;
  }
}
/* Hero illustration: enlarge a bit more while keeping balance */
.hero-illustration {
  width: min(660px, 100%) !important;
}

@media (max-width: 980px) {
  .hero-illustration {
    width: min(620px, 100%) !important;
  }
}
/* Tighten space between hero CTA and metric cards */
.hero {
  padding-bottom: 8px !important;
}

.hero-grid {
  gap: 18px !important;
  align-items: start !important;
}

.hero-copy {
  align-content: start !important;
}

.hero-visual {
  min-height: 0 !important;
  margin-top: 0 !important;
  align-self: start !important;
}

.hero-metrics {
  margin-top: 0 !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.metrics-panel-grid {
  margin-top: 0 !important;
}
/* Fix early wrapping in issues intro */
#issues .section-heading {
  max-width: 1120px !important;
}

#issues .section-heading p:last-of-type {
  max-width: 1040px !important;
}

/* BMS plan section */
.plan-section .section-heading {
  max-width: 920px;
}

.plan-section .section-heading p:last-of-type {
  max-width: 860px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.plan-card {
  padding: 24px 22px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(249,247,250,0.9));
  border: 1px solid rgba(136, 126, 139, 0.12);
  box-shadow: 0 14px 30px rgba(97, 89, 101, 0.05);
  display: grid;
  align-content: start;
  gap: 12px;
}

.plan-name {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(212, 91, 141, 0.1);
  color: #b95987;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan-card strong {
  color: #575056;
  font-size: 1.06rem;
  line-height: 1.5;
}

.plan-card p {
  margin: 0;
  color: #6f6a74;
  font-size: 0.95rem;
  line-height: 1.75;
}

.plan-note {
  margin: 18px 0 0;
  color: #807984;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Introduction effect: 4-column layout */
.effect-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.effect-card {
  min-height: 0 !important;
}

.effect-card p {
  margin: 0 !important;
  font-size: 0.94rem !important;
  line-height: 1.9 !important;
}

@media (max-width: 1100px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .effect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 22px 18px 20px;
  }

  .effect-grid {
    grid-template-columns: 1fr !important;
  }
}
/* DX support: quieter, more polished card system */
.dx-support {
  gap: 28px !important;
}

.dx-support .section-heading {
  max-width: 1080px !important;
}

.dx-support .section-heading > p:last-of-type {
  max-width: 960px !important;
  color: #6b7180 !important;
  line-height: 1.9 !important;
}

.dx-service-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.dx-service-grid .dx-card {
  grid-column: span 4;
  position: relative;
  min-height: 164px;
  padding: 22px 20px 18px !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,247,250,0.92)) !important;
  border: 1px solid rgba(132, 124, 136, 0.12) !important;
  box-shadow: 0 14px 32px rgba(24, 25, 36, 0.05) !important;
  gap: 10px !important;
  overflow: hidden;
}

.dx-service-grid .dx-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(212,91,141,0.7), rgba(223,189,210,0.2));
}

.dx-service-grid .dx-card:nth-child(1)::before {
  background: linear-gradient(90deg, rgba(212,91,141,0.82), rgba(223,160,192,0.22));
}

.dx-service-grid .dx-card:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(108,138,202,0.75), rgba(188,202,232,0.22));
}

.dx-service-grid .dx-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(116,171,159,0.75), rgba(194,220,214,0.22));
}

.dx-service-grid .dx-card:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(219,143,122,0.75), rgba(240,203,191,0.24));
}

.dx-service-grid .dx-card:nth-child(5)::before {
  background: linear-gradient(90deg, rgba(151,165,125,0.72), rgba(214,223,198,0.22));
}

.dx-service-grid .dx-card-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 12px !important;
  background: rgba(244, 241, 245, 0.98) !important;
  border: 1px solid rgba(145, 139, 149, 0.14) !important;
  color: #6b6570 !important;
  font-size: 0.92rem !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.dx-service-grid .dx-card strong {
  font-size: 1.08rem !important;
  line-height: 1.45 !important;
  color: #575056 !important;
}

.dx-service-grid .dx-card p {
  font-size: 0.93rem !important;
  line-height: 1.72 !important;
  color: #6e7484 !important;
}

.dx-service-grid .dx-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(212, 91, 141, 0.18) !important;
  box-shadow: 0 18px 38px rgba(24, 25, 36, 0.07) !important;
}

.dx-service-grid .dx-card-muted {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,245,247,0.9)) !important;
  border-color: rgba(132, 124, 136, 0.09) !important;
}

.dx-service-grid .dx-card-muted strong,
.dx-service-grid .dx-card-muted p {
  opacity: 0.9;
}

.dx-cta-link {
  margin-top: 6px !important;
}

.dx-cta-link a {
  min-height: 42px;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid rgba(132, 124, 136, 0.16) !important;
}

@media (max-width: 980px) {
  .dx-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dx-service-grid .dx-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .dx-service-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Hero lower spacing: one more step tighter */
.hero {
  padding-bottom: 0 !important;
}

.hero-metrics {
  padding-top: 0 !important;
  padding-bottom: 4px !important;
  margin-top: -8px !important;
}

.metrics-panel-grid {
  margin-top: 0 !important;
}
/* DX cards: make titles clearer with matching accent color */
.dx-service-grid .dx-card:nth-child(1) strong {
  color: #c75d8d !important;
}

.dx-service-grid .dx-card:nth-child(2) strong {
  color: #6a86c7 !important;
}

.dx-service-grid .dx-card:nth-child(3) strong {
  color: #6da597 !important;
}

.dx-service-grid .dx-card:nth-child(4) strong {
  color: #d18369 !important;
}

.dx-service-grid .dx-card:nth-child(5) strong {
  color: #8ca16d !important;
}

.dx-service-grid .dx-card:nth-child(1) .dx-card-icon {
  color: #c75d8d !important;
}

.dx-service-grid .dx-card:nth-child(2) .dx-card-icon {
  color: #6a86c7 !important;
}

.dx-service-grid .dx-card:nth-child(3) .dx-card-icon {
  color: #6da597 !important;
}

.dx-service-grid .dx-card:nth-child(4) .dx-card-icon {
  color: #d18369 !important;
}

.dx-service-grid .dx-card:nth-child(5) .dx-card-icon {
  color: #8ca16d !important;
}
/* Suitability section redesign: heading on top, 2 cards below */
.fit-section {
  padding-top: 44px !important;
}

.fit-section .fit-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

.fit-section .fit-copy {
  grid-column: 1 / -1 !important;
  max-width: 1020px !important;
  display: grid !important;
  gap: 16px !important;
}

.fit-section .fit-copy .section-label {
  margin-bottom: 0 !important;
}

.fit-section .fit-copy h2 {
  max-width: none !important;
  font-size: clamp(2.05rem, 3vw, 3rem) !important;
  line-height: 1.16 !important;
}

.fit-section .fit-copy > p {
  max-width: 960px !important;
  font-size: 1.02rem !important;
  line-height: 1.9 !important;
}

.fit-section .fit-card {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  padding: 26px 28px 24px !important;
  border-radius: 30px !important;
  box-shadow: 0 18px 40px rgba(53, 45, 62, 0.08) !important;
  overflow: hidden !important;
}

.fit-section .fit-card.fit-achievement-card {
  padding: 22px 24px 20px !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-inline {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
  gap: 18px !important;
}

.fit-section .fit-card.fit-achievement-card .market-badge-medal {
  width: 92px !important;
  height: 92px !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-copy strong {
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
}

.fit-section .fit-card.fit-achievement-card .trust-ribbon-copy p {
  font-size: 0.88rem !important;
  line-height: 1.7 !important;
}

.fit-section .fit-card.fit-achievement-card .achievement-years {
  grid-template-columns: repeat(5, minmax(62px, 1fr)) !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

.fit-section .fit-card.fit-achievement-card .achievement-years span {
  min-height: 74px !important;
  padding: 10px 6px 8px !important;
  border-radius: 14px !important;
}

.fit-section .fit-card.fit-achievement-card .achievement-source {
  margin-top: 10px !important;
  font-size: 0.78rem !important;
}

@media (max-width: 980px) {
  .fit-section .fit-grid {
    grid-template-columns: 1fr !important;
  }

  .fit-section .fit-copy > p {
    max-width: none !important;
  }
}
