:root {
  --ink: #12394b;
  --ink-2: #18313d;
  --teal: #18756f;
  --teal-dark: #0f5c59;
  --teal-soft: #e7f2ef;
  --accent: #e86f51;
  --accent-soft: #fff0ea;
  --paper: #f6f7f4;
  --white: #fff;
  --muted: #60727b;
  --line: #dbe3e2;
  --lime: #8ad6c9;
  --shadow: 0 18px 48px rgba(18, 57, 75, .09);
  --radius: 18px;
  --radius-sm: 11px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-2);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  color: var(--ink-2);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: -.035em;
}

p {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(219, 227, 226, .9);
  backdrop-filter: blur(16px);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-name,
.brand-sub {
  display: block;
  line-height: 1.2;
}

.brand-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-sub {
  margin-top: 4px;
  color: #7c8b92;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
}

.main-nav > a {
  color: #40545e;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.main-nav > a:hover {
  color: var(--teal);
}

.main-nav .nav-cta {
  min-width: 102px;
  padding: 11px 18px;
  color: #fff;
  background: var(--teal);
  border-radius: 9px;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow,
.meta-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before,
.meta-label::before {
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 9px;
  content: "";
}

.display {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.8vw, 76px);
  line-height: 1.16;
  letter-spacing: -.055em;
}

.lead {
  max-width: 680px;
  color: #425a65;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.95;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  background: var(--teal-dark);
  box-shadow: 0 9px 24px rgba(15, 92, 89, .18);
  transform: translateY(-2px);
}

.button.arrow::after {
  font-size: 17px;
  content: "→";
}

.button.lime {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.button.white,
.button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.white:hover,
.button.ghost:hover {
  color: var(--teal);
  background: #fff;
  border-color: var(--teal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 46px;
}

.section-head h2,
.policy-grid h2,
.working-agreement h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.28;
  letter-spacing: -.045em;
}

.section-head > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

/* Media home */

.media-hero {
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 88% 4%, rgba(24, 117, 111, .10), transparent 28%),
    linear-gradient(180deg, #fbfcfa 0%, #f6f8f5 100%);
  border-bottom: 1px solid var(--line);
}

.media-hero-grid,
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  align-items: center;
  gap: clamp(50px, 7vw, 92px);
}

.media-hero-grid {
  grid-template-columns: minmax(360px, .85fr) minmax(520px, 1.15fr);
  gap: clamp(38px, 5vw, 58px);
}

.lp-hero-grid {
  grid-template-columns: minmax(400px, .87fr) minmax(500px, 1.13fr);
  gap: clamp(38px, 5vw, 58px);
}

.media-hero .display {
  font-size: clamp(44px, 4.2vw, 54px);
}

.hero-keyvisual,
.lp-keyvisual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #dfe9e5;
  border: 1px solid rgba(18, 57, 75, .10);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(18, 57, 75, .16);
}

.hero-keyvisual::after,
.lp-keyvisual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(9, 35, 46, .18));
  pointer-events: none;
  content: "";
}

.hero-keyvisual img,
.lp-keyvisual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-keyvisual figcaption,
.lp-keyvisual figcaption {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  display: grid;
  padding: 13px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(18, 57, 75, .16);
  backdrop-filter: blur(12px);
}

.hero-keyvisual figcaption b,
.lp-keyvisual figcaption b {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: .13em;
}

.hero-keyvisual figcaption span,
.lp-keyvisual figcaption span {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
}

.visual-status {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(9, 35, 46, .74);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
}

.visual-status i {
  width: 7px;
  height: 7px;
  background: #8ad6c9;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(138, 214, 201, .18);
}

.hero-route {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 25px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.hero-route span {
  color: var(--teal-dark);
}

.hero-route i {
  color: var(--accent);
  font-style: normal;
}

.social-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 670px;
  margin-top: 28px;
  padding: 14px 17px;
  color: #48616b;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.65;
}

.social-entry b {
  padding-right: 14px;
  color: var(--teal);
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.automation-stage {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.stage-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: #809098;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.stage-title {
  max-width: 410px;
  margin-bottom: 26px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.45;
  letter-spacing: -.035em;
}

.stage-flow {
  display: grid;
  gap: 10px;
}

.stage-node {
  position: relative;
  padding: 15px 16px 15px 60px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #e6ebe9;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
}

.stage-node::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 10px;
  content: attr(data-step);
  transform: translateY(-50%);
}

.stage-node small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.stage-line {
  height: 1px;
  margin-top: 22px;
  background: var(--line);
}

.stage-pulse {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 7px 11px;
  color: #a24935;
  background: var(--accent-soft);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.latest {
  background: #fff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  grid-column: span 2;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.article-card.featured {
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(190px, .85fr) minmax(0, 1.15fr);
}

.article-card:hover {
  border-color: #bacbc8;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.article-card-media {
  min-height: 180px;
  overflow: hidden;
  background: var(--teal-soft);
}

.article-card.featured .article-card-media {
  min-height: 260px;
}

.article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-art {
  min-height: 180px;
  background-color: var(--teal-soft);
}

.featured .article-art {
  min-height: 260px;
}

.art-video {
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, .7) 42% 58%, transparent 58%),
    radial-gradient(circle at 32% 34%, var(--accent) 0 7%, transparent 7.5%),
    linear-gradient(145deg, #dceee9 0%, #b9dcd4 100%);
}

.art-content {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px),
    linear-gradient(135deg, #e5f1ef, #b9dcd4);
  background-size: 28px 28px, 28px 28px, auto;
}

.art-dx {
  background:
    radial-gradient(circle at 50% 50%, #fff 0 13%, transparent 13.5%),
    conic-gradient(from 30deg, #d5ece7, #f6d5ca, #d5ece7);
}

.art-case {
  background:
    linear-gradient(30deg, rgba(255, 255, 255, .7) 12%, transparent 12.5% 37%, rgba(255, 255, 255, .55) 37.5% 62%, transparent 62.5%),
    #c8e3dd;
}

.article-body {
  min-width: 0;
  padding: 25px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  color: #839198;
  font-size: 11px;
  font-weight: 700;
}

.category-tag {
  padding: 4px 8px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 6px;
}

.article-card h3 {
  margin-bottom: 11px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.6;
  letter-spacing: -.025em;
  overflow-wrap: break-word;
  word-break: normal;
}

.article-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.topics {
  background: var(--paper);
  border-block: 1px solid #e6ebe9;
}

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

.topic-card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, transform .2s ease;
}

.topic-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.topic-no {
  color: #8b9a9f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.topic-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
}

.topic-card h3 {
  margin: 35px 0 10px;
  font-size: 21px;
}

.topic-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-bridge {
  padding: 96px 24px;
  background: #fff;
}

.bridge-grid {
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bridge-panel {
  min-height: 430px;
  padding: clamp(38px, 5vw, 64px);
  background: var(--ink);
  border-radius: 22px;
}

.bridge-panel:nth-child(2) {
  background: var(--teal-soft);
}

.bridge-panel h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.35;
}

.bridge-panel p {
  max-width: 510px;
  margin-bottom: 32px;
  color: #c9d6db;
  font-size: 15px;
  line-height: 1.9;
}

.bridge-panel:nth-child(2) h2 {
  color: var(--ink);
}

.bridge-panel:nth-child(2) p {
  color: #48616b;
}

.bridge-panel:nth-child(2) .button {
  color: #fff;
}

.bridge-panel .meta-label {
  color: #8ad6c9;
}

.bridge-panel:nth-child(2) .meta-label {
  color: var(--teal);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.policy-copy {
  color: #405862;
  font-size: 18px;
  line-height: 2;
}

.policy-points {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-points > div {
  padding: 18px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.8;
}

.policy-points b {
  color: var(--ink);
}

/* LP common */

.lp-hero {
  padding: 90px 0 84px;
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 111, 81, .08), transparent 30%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.lp-hero .display {
  font-size: clamp(44px, 4.8vw, 58px);
}

.engine-visual {
  overflow: hidden;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.bar {
  display: flex;
  gap: 6px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.bar i {
  width: 8px;
  height: 8px;
  background: #d8e2e0;
  border-radius: 50%;
}

.bar i:first-child {
  background: var(--accent);
}

.engine-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
}

.engine-row:last-child {
  border-bottom: 0;
}

.engine-row span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.engine-row b {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof b,
.hero-proof small {
  display: block;
}

.hero-proof b {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.hero-proof small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.statement {
  padding: 96px 0;
  background: var(--ink);
}

.statement .eyebrow {
  color: #8ad6c9;
}

.statement h2 {
  max-width: 940px;
  margin-bottom: 42px;
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.32;
}

.statement h2 em {
  color: #8ad6c9;
  font-style: normal;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
}

.problem-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 24px;
  color: #edf3f4;
  background: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.problem-list b {
  color: #8ad6c9;
  font-size: 11px;
  letter-spacing: .08em;
}

.before-after,
.plans,
.cadence,
.diagnosis {
  background: var(--paper);
}

.ba-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.ba-side {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ba-side.after {
  border: 2px solid var(--teal);
}

.ba-side h3 {
  margin-bottom: 22px;
  font-size: 22px;
}

.ba-side li,
.plan li,
.agreement-side li,
.fit-col li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: #435a65;
  border-bottom: 1px solid #e8edeb;
  font-size: 14px;
  line-height: 1.65;
}

.ba-side li::before,
.plan li::before,
.agreement-side li::before,
.fit-col li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 10px;
  content: "✓";
}

.ba-side:not(.after) li::before {
  color: #9b4d39;
  background: var(--accent-soft);
  content: "–";
}

.ba-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.engine-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding: 13px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.engine-loop i {
  font-style: normal;
}

.pattern-section {
  background: #fff;
}

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

.pattern {
  min-height: 235px;
  padding: 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.pattern > b {
  color: var(--teal);
  font-size: 10px;
  letter-spacing: .12em;
}

.pattern h3 {
  margin: 24px 0 12px;
  font-size: 19px;
}

.pattern p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
}

.spec span {
  padding: 5px 8px;
  color: #50676f;
  background: var(--paper);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.kpi-section {
  background: var(--ink);
}

.kpi-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.giant-number {
  color: #8ad6c9;
  font-size: clamp(130px, 18vw, 230px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.1em;
}

.kpi-section .meta-label {
  color: #8ad6c9;
}

.kpi-section h2 {
  margin-bottom: 34px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 54px) !important;
  line-height: 1.3;
  letter-spacing: -.045em !important;
}

.kpi-levels {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
}

.kpi-level {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 22px;
  color: #fff;
  background: var(--ink);
}

.kpi-level > b {
  color: #8ad6c9;
  font-size: 10px;
  letter-spacing: .1em;
}

.kpi-level h3 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 17px;
}

.kpi-level p {
  color: #c9d6db;
  font-size: 13px;
  line-height: 1.7;
}

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

.month {
  position: relative;
  min-height: 190px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.month > b {
  color: var(--teal);
  font-size: 10px;
  letter-spacing: .1em;
}

.month h3 {
  margin: 30px 0 8px;
  font-size: 20px;
}

.month p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.plan.recommended {
  position: relative;
  border: 2px solid var(--teal);
  box-shadow: 0 18px 48px rgba(24, 117, 111, .12);
}

.plan.recommended::before {
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 4px 10px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  content: "おすすめ";
}

.plan-label {
  min-height: 36px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .03em;
}

.price {
  margin: 22px 0 18px;
  color: var(--ink);
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}

.price small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.plan ul {
  margin-bottom: 28px;
}

.plan .button {
  margin-top: auto;
}

.plan-note {
  max-width: 920px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.working-agreement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agreement-side {
  padding: clamp(58px, 8vw, 100px) max(24px, calc((100vw - 1180px) / 2));
  background: var(--teal-soft);
}

.agreement-side:nth-child(2) {
  background: #fff;
}

.agreement-side h2 {
  margin-bottom: 26px;
  font-size: clamp(30px, 3.5vw, 42px);
}

.faq {
  background: #fff;
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 2px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 52px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.closing-cta {
  padding: 100px 24px;
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.closing-cta .wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.closing-cta .eyebrow {
  justify-content: center !important;
  color: #8ad6c9 !important;
}

.closing-cta h2 {
  color: #fff;
}

.closing-cta p {
  max-width: 680px;
  margin: 24px auto 30px;
  color: #c9d6db;
  font-size: 15px;
  line-height: 1.9;
}

.closing-cta .button {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.closing-cta .button:hover {
  background: #eef4f2;
}

/* Advisor */

.advisor-board {
  background: #fff;
}

.board-grid {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 70px;
}

.advisor-board h2,
.diagnosis h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.7vw, 58px) !important;
  line-height: 1.3 !important;
  letter-spacing: -.045em !important;
}

.diagnosis-list {
  display: grid;
  gap: 9px;
  margin: 25px 0 30px;
}

.diagnosis-list > div {
  position: relative;
  padding: 11px 14px 11px 42px;
  color: #3f5962;
  background: var(--teal-soft);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.diagnosis-list > div::before {
  position: absolute;
  left: 15px;
  color: var(--teal);
  content: "✓";
}

.board {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 4px 17px;
  color: #71838a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.board-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.board-col > div {
  min-height: 280px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.board-col > div > b {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 9px;
  letter-spacing: .08em;
}

.ticket {
  display: block;
  margin-bottom: 9px;
  padding: 12px 11px;
  color: #48606a;
  background: var(--paper);
  border: 1px solid #e6ebe9;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.ticket.hot {
  color: #92442f;
  background: var(--accent-soft);
  border-color: #f4c6ba;
}

.advisor-statement {
  background: var(--teal);
}

.advisor-statement h2 {
  margin-bottom: 0;
}

.advisor-statement .eyebrow {
  color: #d6f2eb;
}

.areas {
  background: var(--paper);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 170px;
  padding: 28px;
  background: #fff;
}

.area > b {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .08em;
}

.area h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.area p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

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

.cadence-item {
  min-height: 280px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cadence-item > b {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 12px;
  font-size: 19px;
}

.cadence-item h3 {
  margin: 28px 0 13px;
  font-size: 19px;
}

.cadence-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.fit {
  background: #fff;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-col {
  padding: 34px;
  background: var(--teal-soft);
  border-radius: var(--radius);
}

.fit-col.no {
  background: #f7f2ef;
}

.fit-col h3 {
  margin-bottom: 17px;
  font-size: 23px;
}

.fit-col.no li::before {
  color: #9b4d39;
  background: #f4d8cf;
  content: "–";
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 80px;
}

.diagnosis-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    var(--teal);
  background-size: 34px 34px;
  border-radius: 22px;
}

.diagnosis-visual > div {
  text-align: center;
}

.diagnosis-visual b,
.diagnosis-visual small {
  display: block;
  color: #fff;
}

.diagnosis-visual b {
  font-size: clamp(110px, 14vw, 180px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.08em;
}

.diagnosis-visual small {
  margin-top: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

/* Article/archive views rendered by the WordPress plugin */

.article-hero,
.archive-hero {
  padding: 84px 0 66px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 60px;
}

.article-hero h1,
.archive-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.3vw, 64px);
  line-height: 1.3;
}

.article-summary {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: 70px;
  padding-block: 80px;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 60px 0 22px;
  padding-left: 18px;
  border-left: 4px solid var(--teal);
  font-size: clamp(28px, 3vw, 38px);
}

.article-content h3 {
  margin: 38px 0 16px;
  font-size: 23px;
}

.article-content p,
.article-content li {
  color: #3f5660;
  font-size: 16px;
  line-height: 2;
}

.article-side {
  position: sticky;
  top: 100px;
}

.article-side-inner,
.article-toc,
.article-service-box {
  padding: 23px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-block: 70px;
}

/* Footer */

.site-footer {
  padding: 68px 0 26px;
  color: #c6d3d7;
  background: #0d2d3a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.4fr) repeat(2, minmax(150px, .6fr));
  gap: 60px;
  padding-bottom: 48px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 16px;
  color: #fff;
}

.site-footer h3 {
  font-size: 20px;
}

.site-footer h4 {
  font-size: 12px;
  letter-spacing: .08em;
}

.site-footer p {
  max-width: 420px;
  color: #9fb0b7;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #aebdc3;
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #7f959e;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 10px;
  letter-spacing: .04em;
}

.topic-ribbon {
  overflow-x: auto;
  background: #fff;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.topic-ribbon::-webkit-scrollbar {
  display: none;
}

.topic-ribbon-inner {
  display: flex;
  min-width: max-content;
  min-height: 46px;
  align-items: center;
  gap: 24px;
}

.topic-ribbon span,
.topic-ribbon a {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.topic-ribbon span {
  padding-right: 22px;
  color: var(--accent);
  border-right: 1px solid var(--line);
  letter-spacing: .14em;
}

.topic-ribbon a {
  color: #536770;
  transition: color .2s ease;
}

.topic-ribbon a:hover {
  color: var(--teal);
}

.media-video-feature {
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(138, 214, 201, .16), transparent 33%),
    var(--ink);
}

.media-feature-head h2 {
  color: #fff;
}

.media-feature-head > p {
  color: #c9d8dd;
}

.media-feature-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: #071f2c;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  box-shadow: 0 34px 84px rgba(0, 0, 0, .34);
  isolation: isolate;
}

.media-feature-banner::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(133, 213, 200, .22);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.media-feature-banner img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s ease, filter .45s ease;
}

.media-feature-banner:hover img {
  filter: brightness(1.04);
  transform: scale(1.012);
}

.media-feature-player {
  position: relative;
  overflow: hidden;
  background: #071f2c;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  box-shadow: 0 34px 84px rgba(0, 0, 0, .34);
  isolation: isolate;
}

.media-feature-player::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(133, 213, 200, .22);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.media-feature-player video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #071f2c;
  object-fit: cover;
}

.media-feature-player-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 9px 13px;
  color: #0b2a37;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.media-feature-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  color: #afc3ca;
  font-size: 13px;
  font-weight: 800;
}

.media-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
  align-items: center;
  gap: clamp(64px, 10vw, 124px);
}

.media-video-copy .meta-label {
  color: var(--lime);
}

.feature-kicker {
  margin-bottom: 14px;
  color: #afc2c9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.media-video-copy h2 {
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(40px, 5.1vw, 66px);
  line-height: 1.25;
  letter-spacing: -.055em;
}

.media-video-copy > p:not(.feature-kicker) {
  max-width: 650px;
  color: #cfdbdf;
  font-size: 16px;
  line-height: 2;
}

.media-channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.media-channel-list span {
  padding: 7px 10px;
  color: #e8f1f2;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  color: var(--lime);
  font-size: 18px;
}

.media-video-stage {
  position: relative;
  width: min(100%, 354px);
  justify-self: center;
}

.media-video-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #081f29;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .34);
}

.video-status {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  font-size: 10px;
  font-weight: 900;
}

.video-status i {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 111, 81, .17);
}

.video-caption {
  position: absolute;
  right: -34px;
  bottom: 34px;
  display: grid;
  width: 228px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .23);
  backdrop-filter: blur(12px);
}

.video-caption b {
  color: var(--accent);
  font-size: 8px;
  letter-spacing: .12em;
}

.video-caption span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav > a {
    font-size: 12px;
  }

  .media-hero-grid,
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 40px;
  }

  .article-card.featured {
    display: block;
  }

  .article-card.featured .article-art {
    min-height: 210px;
  }

  .plan {
    padding: 25px;
  }
}

@media (max-width: 860px) {
  .wrap {
    width: min(100% - 36px, 700px);
  }

  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    display: none;
    width: 100%;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(18, 57, 75, .10);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav > a {
    padding: 10px 4px;
    font-size: 14px;
  }

  .main-nav .nav-cta {
    padding: 12px;
  }

  .media-hero,
  .lp-hero {
    padding: 64px 0;
  }

  .media-hero-grid,
  .lp-hero-grid,
  .section-head,
  .media-video-grid,
  .policy-grid,
  .board-grid,
  .diagnosis-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .media-hero-grid,
  .lp-hero-grid {
    gap: 46px;
  }

  .media-video-grid {
    gap: 54px;
  }

  .media-hero-grid,
  .lp-hero-grid {
    gap: 0;
  }

  .media-hero-grid > div:first-child,
  .lp-hero-grid > div:first-child {
    display: contents;
  }

  .media-hero .eyebrow {
    order: 1;
  }

  .media-hero .display {
    order: 2;
  }

  .media-hero .lead {
    order: 3;
    margin-bottom: 28px;
  }

  .hero-keyvisual,
  .lp-keyvisual {
    order: 4;
    margin-bottom: 27px;
  }

  .media-hero .hero-actions {
    order: 5;
    margin-top: 0;
  }

  .hero-route {
    order: 6;
  }

  .lp-hero .eyebrow {
    order: 1;
  }

  .lp-hero .display {
    order: 2;
  }

  .lp-hero .lead {
    order: 3;
    margin-bottom: 28px;
  }

  .lp-hero .hero-actions {
    order: 5;
    margin-top: 0;
  }

  .lp-hero .hero-proof {
    order: 6;
    margin-top: 26px;
  }

  .section-head {
    align-items: start;
    gap: 20px;
  }

  .section {
    padding: 76px 0;
  }

  .article-grid,
  .archive-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-card,
  .article-card.featured {
    display: block;
    grid-column: auto;
  }

  .article-card-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .topic-grid,
  .pattern-grid,
  .months,
  .plan-grid,
  .cadence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan {
    min-height: 0;
  }

  .plan.recommended {
    grid-row: auto;
  }

  .kpi-grid {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 36px;
  }

  .bridge-panel {
    min-height: 380px;
  }

  .working-agreement {
    grid-template-columns: 1fr;
  }

  .agreement-side {
    padding-inline: max(24px, calc((100vw - 700px) / 2));
  }

  .article-side {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .media-feature-banner {
    border-radius: 14px;
  }

  .media-feature-player {
    border-radius: 14px;
  }

  .media-feature-player-badge {
    top: 10px;
    right: 10px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .media-feature-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  body {
    font-size: 15px;
  }

  .wrap {
    width: calc(100% - 32px);
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .display,
  .lp-hero .display {
    margin-bottom: 20px;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 1.22;
    letter-spacing: -.05em;
  }

  .media-hero .display,
  .lp-hero .display {
    font-size: 38px;
  }

  .hero-keyvisual,
  .lp-keyvisual {
    border-radius: 18px;
  }

  .hero-keyvisual figcaption,
  .lp-keyvisual figcaption {
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
  }

  .hero-keyvisual figcaption span,
  .lp-keyvisual figcaption span {
    font-size: 11px;
  }

  .visual-status {
    top: 12px;
    right: 12px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .closing-cta .button {
    width: 100%;
  }

  .social-entry {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .social-entry b {
    padding-right: 0;
    border-right: 0;
  }

  .automation-stage,
  .engine-visual {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(18, 57, 75, .08);
  }

  .stage-top span:last-child {
    display: none;
  }

  .stage-title {
    font-size: 23px;
  }

  .stage-node {
    padding-right: 12px;
    padding-left: 54px;
    font-size: 14px;
  }

  .engine-row {
    grid-template-columns: 66px 1fr;
    gap: 10px;
    padding: 19px 4px;
  }

  .engine-row b {
    font-size: 13px;
  }

  .section,
  .statement,
  .service-bridge,
  .closing-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .topic-ribbon-inner {
    gap: 18px;
    min-height: 43px;
  }

  .topic-ribbon span {
    padding-right: 16px;
  }

  .media-video-copy h2 {
    font-size: 36px;
    line-height: 1.35;
  }

  .media-video-copy > p:not(.feature-kicker) {
    font-size: 14px;
    line-height: 1.9;
  }

  .media-video-stage {
    width: min(88%, 330px);
  }

  .video-status {
    left: -12px;
  }

  .video-caption {
    right: -14px;
    bottom: 30px;
    width: 205px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2,
  .policy-grid h2,
  .working-agreement h2,
  .closing-cta h2,
  .statement h2,
  .advisor-board h2,
  .diagnosis h2,
  .kpi-section h2 {
    font-size: 34px !important;
    line-height: 1.38 !important;
    letter-spacing: -.04em !important;
  }

  .section-head > p {
    font-size: 14px;
  }

  .article-grid,
  .topic-grid,
  .bridge-grid,
  .pattern-grid,
  .months,
  .plan-grid,
  .cadence-grid,
  .area-list,
  .fit-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .article-card,
  .article-card.featured {
    display: block;
    grid-column: auto;
  }

  .article-card.featured .article-art,
  .article-art {
    min-height: 190px;
  }

  .article-body {
    padding: 22px;
  }

  .topic-card,
  .pattern {
    min-height: 0;
  }

  .service-bridge {
    padding-inline: 16px;
  }

  .bridge-panel {
    min-height: 0;
    padding: 34px 25px;
  }

  .bridge-panel h2 {
    font-size: 34px;
  }

  .hero-proof {
    gap: 0;
  }

  .hero-proof > div {
    padding-inline: 10px;
  }

  .hero-proof b {
    font-size: 18px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-list > div {
    padding: 19px;
  }

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

  .ba-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .ba-side,
  .fit-col,
  .plan {
    padding: 25px 22px;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .giant-number {
    font-size: 110px;
  }

  .kpi-level {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
  }

  .price {
    font-size: 48px;
  }

  .area {
    grid-template-columns: 36px 1fr;
    min-height: 0;
    padding: 23px 20px;
  }

  .board-col {
    grid-template-columns: 1fr;
  }

  .board-col > div {
    min-height: 0;
  }

  .board-top {
    display: grid;
    gap: 4px;
  }

  .diagnosis-visual {
    min-height: 300px;
  }

  .article-layout {
    gap: 42px;
    padding-block: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .copyright {
    display: grid;
    gap: 5px;
  }
}

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