:root {
  --black: #070040;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8f9fa;
  --yellow: #31b9b5;
  --yellow-weak: #dff8f7;
  --blue: #0d0084;
  --teal: #31b9b5;
  --navy: #0d0084;
  --navy-dark: #070040;
  --navy-light: #1a10a0;
  --white: #fff;
  --max: 1160px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    system-ui,
    sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body::selection {
  color: var(--navy);
  background: rgba(49, 185, 181, 0.24);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  padding: 12px clamp(18px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(13, 0, 132, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 132px;
}

.brand-main {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f1d3a;
  letter-spacing: -0.03em;
}

.brand-main span {
  color: #0066ff;
}

.brand-sub {
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  font-size: 0.88rem;
  font-weight: 800;
}

.global-nav a {
  position: relative;
  padding-block: 6px;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 26px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(49, 185, 181, 0.24);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.header-cta {
  min-height: 46px;
  padding-inline: 22px;
  font-size: 0.92rem;
  color: var(--white);
  border-color: transparent;
  box-shadow: none;
}

.header-cta:hover,
.primary-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 0 8px 18px rgba(49, 185, 181, 0.22);
}

.header-cta:hover {
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  grid-template-areas:
    "copy media"
    "metrics media";
  gap: 32px 42px;
  max-width: 1360px;
  min-height: calc(100vh - var(--header));
  margin-inline: auto;
  padding: clamp(46px, 6vw, 86px) clamp(18px, 5vw, 68px) clamp(26px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 185, 181, 0.16), transparent 28%),
    radial-gradient(circle at 80% 8%, rgba(13, 0, 132, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(13, 0, 132, 0.045) 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(13, 0, 132, 0.045) 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 54px 54px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 0.94rem;
  font-weight: 900;
  color: var(--teal);
  border-bottom: 4px solid rgba(13, 0, 132, 0.18);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--navy);
  font-family:
    Inter,
    "Noto Sans JP",
    system-ui,
    sans-serif;
  font-size: clamp(2.65rem, 5vw, 4.55rem);
  font-weight: 950;
  line-height: 1.02;
}

.hero h1 span {
  padding-inline: 0.06em;
  background: linear-gradient(transparent 54%, rgba(49, 185, 181, 0.34) 54%);
}

.hero h1 .hero-highlight {
  display: inline-block;
  font-size: 0.86em;
  white-space: nowrap;
}

.hero h1 .no-marker {
  padding: 0;
  white-space: nowrap;
  background: none;
}

.mobile-line {
  display: inline;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 800;
  color: var(--ink);
}

.hero-pain-quotes {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin-top: 24px;
}

.hero-pain-quotes span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px 10px 42px;
  color: var(--navy);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 900;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 0, 132, 0.14);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 0, 132, 0.06);
}

.hero-pain-quotes span::before {
  position: absolute;
  left: 14px;
  content: "!";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  background: var(--teal);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 34px;
}

.hero-actions p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--muted);
}

.hero-media {
  grid-area: media;
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(8px, 1vw, 14px);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(49, 185, 181, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(13, 0, 132, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(13, 0, 132, 0.14);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 6px;
}

.hero-media::before {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 1;
  width: min(34%, 170px);
  height: 7px;
  content: "";
  background: var(--teal);
}

.hero-media-label {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(13, 0, 132, 0.92), rgba(7, 0, 64, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-media-label span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--teal);
}

.hero-media-label strong {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.35;
}

.hero-metrics {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(13, 0, 132, 0.08);
}

.hero-metrics div {
  min-width: 0;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.hero-metrics dt {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--blue);
}

.hero-metrics dd {
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-metrics strong {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 950;
  white-space: nowrap;
}

.section-block {
  position: relative;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 68px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.section-grid,
.section-heading,
.price-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
}

.section-number {
  position: absolute;
  top: 0;
  left: clamp(18px, 5vw, 68px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 54px;
  font-size: 1.65rem;
  font-weight: 950;
  color: var(--white);
  background: var(--black);
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  font-weight: 950;
  line-height: 1.25;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 950;
  line-height: 1.35;
  text-wrap: balance;
}

.large-text {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 700;
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 44px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  content: "✓";
  place-items: center;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.quick-fix-panel {
  position: relative;
  margin-top: 30px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(49, 185, 181, 0.2), rgba(13, 0, 132, 0.05) 58%),
    var(--white);
  border: 2px solid rgba(13, 0, 132, 0.18);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(13, 0, 132, 0.08);
}

.quick-fix-panel::after {
  position: absolute;
  right: -22px;
  bottom: -42px;
  content: "UPDATE";
  color: rgba(13, 0, 132, 0.055);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 950;
  line-height: 1;
}

.quick-fix-panel p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.quick-fix-panel div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-fix-panel span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.15;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 0, 132, 0.16);
  border-radius: 999px;
}

.quick-fix-panel span::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  background: var(--teal);
  border-radius: 999px;
}

.problem-intro {
  display: grid;
  align-content: start;
}

.problem-stall-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.86fr);
  gap: 12px;
  min-height: 276px;
  margin-top: clamp(26px, 4vw, 42px);
  padding: clamp(16px, 2.4vw, 22px);
  overflow: hidden;
  border: 2px solid rgba(13, 0, 132, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(13, 0, 132, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 0, 132, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(49, 185, 181, 0.2), rgba(255, 255, 255, 0.94));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 18px 38px rgba(13, 0, 132, 0.08);
}

.problem-stall-visual::after {
  position: absolute;
  right: -32px;
  bottom: -30px;
  content: "WAIT";
  color: rgba(13, 0, 132, 0.06);
  font-size: clamp(4.6rem, 8vw, 7rem);
  font-weight: 950;
  line-height: 1;
}

.stall-page,
.stall-clock {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.stall-page {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 178px;
  padding: 50px 16px 18px;
  overflow: hidden;
  box-shadow: 7px 7px 0 rgba(13, 0, 132, 0.1);
}

.stall-page::before {
  position: absolute;
  inset: 0 0 auto;
  height: 34px;
  content: "";
  border-bottom: 1px solid rgba(13, 0, 132, 0.14);
  background:
    radial-gradient(circle, var(--teal) 0 4px, transparent 5px) 14px 12px / 10px 10px no-repeat,
    radial-gradient(circle, rgba(13, 0, 132, 0.28) 0 4px, transparent 5px) 34px 12px / 10px 10px no-repeat,
    radial-gradient(circle, rgba(13, 0, 132, 0.18) 0 4px, transparent 5px) 54px 12px / 10px 10px no-repeat,
    #f5f8fc;
}

.stall-page span,
.stall-clock span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.15;
}

.stall-page strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: clamp(1.04rem, 1.65vw, 1.38rem);
  font-weight: 950;
  line-height: 1.2;
}

.stall-page i {
  width: min(100%, 116px);
  height: 32px;
  border: 1px solid rgba(13, 0, 132, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(var(--teal), var(--teal)) 10px 10px / 44px 10px no-repeat,
    linear-gradient(rgba(13, 0, 132, 0.1), rgba(13, 0, 132, 0.1)) 62px 10px / 42px 10px no-repeat,
    #f7fbff;
}

.stall-clock {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 178px;
  padding: 18px 14px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(13, 0, 132, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.92);
}

.stall-clock b {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 3px;
  border: 5px solid var(--black);
  border-radius: 50%;
  background: var(--white);
}

.stall-clock b::before,
.stall-clock b::after {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 4px;
  content: "";
  border-radius: 999px;
  background: var(--teal);
  transform-origin: bottom;
}

.stall-clock b::before {
  height: 18px;
  transform: translateX(-50%) rotate(2deg);
}

.stall-clock b::after {
  height: 22px;
  transform: translateX(-50%) rotate(118deg);
}

.stall-clock strong {
  font-size: clamp(0.94rem, 1.22vw, 1.08rem);
  font-weight: 950;
  line-height: 1.3;
}

.stall-tags {
  position: relative;
  z-index: 1;
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.stall-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.15;
  border: 1px solid rgba(13, 0, 132, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.stall-tags span::before {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: var(--teal);
}

.structure {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(49, 185, 181, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.42) 0 1px, transparent 2px),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.structure .section-kicker {
  color: var(--teal);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.structure .large-text {
  color: rgba(255, 255, 255, 0.88);
}

.structure-intro {
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.structure-intro > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 6px solid var(--teal);
  background:
    linear-gradient(135deg, rgba(49, 185, 181, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.value-box-title {
  width: fit-content;
  margin: 0 0 16px;
  padding: 4px 10px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.25;
  background: var(--teal);
}

.value-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.value-points li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px 9px 42px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.value-points li::before {
  position: absolute;
  left: 14px;
  content: "✓";
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 950;
}

.route-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.route-card-inhouse {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.route-card-inhouse {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
}

.route-card-future {
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: visible;
  color: var(--black);
  background:
    linear-gradient(120deg, var(--white) 0 58%, rgba(49, 185, 181, 0.9) 58% 100%);
  border: 1px solid rgba(49, 185, 181, 0.44);
  box-shadow: 12px 12px 0 rgba(49, 185, 181, 0.16);
}

.route-card-inhouse .route-illustration {
  order: 2;
}

.route-card-inhouse .route-copy {
  order: 1;
}

.route-card-outsource {
  grid-template-columns: 1fr;
}

.route-card-outsource .route-copy {
  order: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: clamp(26px, 4vw, 38px) clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.route-card-outsource .route-copy .route-label {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.route-card-outsource .route-copy h3 {
  grid-column: 1;
}

.route-card-outsource .route-copy p:last-child {
  grid-column: 2;
  margin-top: 0;
}

.route-card-outsource .route-illustration {
  order: 2;
}

.route-illustration {
  min-height: 230px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.route-card-inhouse .route-illustration {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.route-workflow-illustration {
  display: grid;
  align-items: center;
  min-height: 470px;
}

.route-card-inhouse .route-workflow-illustration {
  min-height: 620px;
  padding-inline: clamp(18px, 2.4vw, 34px);
}

.workflow-laptop {
  display: grid;
  width: 100%;
  max-width: 1180px;
  margin: auto;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.3));
}

.workflow-laptop-ai {
  max-width: 850px;
}

.workflow-bezel {
  position: relative;
  padding: 24px 14px 14px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px 26px 10px 10px;
  background:
    radial-gradient(circle at 50% 10px, rgba(255, 255, 255, 0.24) 0 3px, transparent 4px),
    linear-gradient(135deg, #080a10, #151b23 72%, #040507);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.72),
    0 0 0 2px rgba(0, 0, 0, 0.36);
}

.workflow-screen {
  min-height: 392px;
  overflow: hidden;
  color: #112541;
  border: 2px solid rgba(3, 11, 24, 0.68);
  border-radius: 12px 12px 6px 6px;
  background:
    linear-gradient(135deg, rgba(16, 119, 197, 0.08), transparent 42%),
    #eef4f8;
}

.workflow-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  color: var(--white);
  background: linear-gradient(90deg, #072f59, #0b9d9f);
}

.workflow-toolbar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.15;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.workflow-toolbar strong {
  min-width: 0;
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  font-weight: 950;
  line-height: 1.3;
}

.workflow-toolbar b {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow:
    -22px 0 0 rgba(255, 255, 255, 0.24),
    -44px 0 0 rgba(255, 255, 255, 0.24);
}

.workflow-base {
  position: relative;
  display: block;
  justify-self: center;
  width: min(86%, 920px);
  height: 20px;
  margin-top: -1px;
  border-radius: 0 0 38px 38px;
  background: linear-gradient(180deg, #36414c, #070a0f);
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.24);
}

.workflow-base::before {
  position: absolute;
  top: 4px;
  left: 50%;
  width: min(22%, 150px);
  height: 3px;
  content: "";
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: translateX(-50%);
}

.workflow-laptop-wait .workflow-screen {
  background:
    linear-gradient(135deg, rgba(252, 239, 76, 0.18), transparent 40%),
    linear-gradient(180deg, #f5f6f7, #e6ebef);
}

.workflow-laptop-wait .workflow-toolbar {
  color: var(--black);
  background: linear-gradient(90deg, #e9edf0, #fff06a);
}

.workflow-laptop-wait .workflow-toolbar span {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.24);
  background: var(--yellow);
}

.workflow-laptop-wait .workflow-toolbar b {
  border-color: rgba(0, 0, 0, 0.62);
  box-shadow:
    -22px 0 0 rgba(0, 0, 0, 0.18),
    -44px 0 0 rgba(0, 0, 0, 0.18);
}

.wait-dashboard,
.ai-dashboard {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
}

.wait-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 20, 39, 0.14);
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(8, 20, 39, 0.08);
}

.wait-request span,
.wait-result span {
  color: #47596c;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1.2;
}

.wait-request strong {
  color: var(--black);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 950;
  line-height: 1.24;
}

.wait-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wait-pipeline li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(8, 20, 39, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(8, 20, 39, 0.08);
}

.wait-pipeline li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 1;
  width: 14px;
  height: 14px;
  content: "";
  border-top: 3px solid #596675;
  border-right: 3px solid #596675;
  transform: translateY(-50%) rotate(45deg);
}

.wait-pipeline span,
.ai-board p {
  width: fit-content;
  margin: 0;
  padding: 4px 8px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.1;
  border-radius: 999px;
  background: #506172;
}

.wait-pipeline strong {
  min-height: 2.5em;
  color: var(--black);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  font-weight: 950;
  line-height: 1.25;
}

.wait-pipeline em {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-top: auto;
  padding: 6px 9px;
  color: var(--black);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1.15;
  border: 1px dashed rgba(0, 0, 0, 0.26);
  border-radius: 6px;
  background: rgba(252, 239, 76, 0.72);
}

.wait-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wait-loop span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1.15;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.wait-loop span::before {
  margin-right: 6px;
  content: "↺";
  color: #5d6772;
  font-size: 0.94rem;
}

.wait-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 84px;
  padding: 16px 18px;
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(252, 239, 76, 0.16), transparent 60%),
    #07101c;
}

.wait-result strong {
  color: var(--white);
  font-size: clamp(1.14rem, 1.7vw, 1.7rem);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.ai-agent {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 11px 14px;
  border: 1px solid rgba(6, 45, 76, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(8, 31, 61, 0.1);
}

.ai-agent i {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 3px solid #0a7b99;
  border-radius: 16px;
  background:
    linear-gradient(#0a7b99, #0a7b99) 50% 10px / 4px 6px no-repeat,
    linear-gradient(135deg, #dff8f9, #a8e1e0);
}

.ai-agent i::before,
.ai-agent i::after {
  position: absolute;
  top: 17px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: #0a7b99;
}

.ai-agent i::before {
  left: 11px;
}

.ai-agent i::after {
  right: 11px;
}

.ai-agent span {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #46617a;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.ai-agent strong {
  color: #082449;
  font-size: 1rem;
  font-weight: 950;
}

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

.ai-board section {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 220px;
  padding: 12px;
  border: 1px solid rgba(6, 45, 76, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(8, 31, 61, 0.08);
}

.ai-board section:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 2;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 4px solid #0a9da0;
  border-right: 4px solid #0a9da0;
  transform: translateY(-50%) rotate(45deg);
}

.ai-board section:nth-child(2) {
  background: linear-gradient(180deg, rgba(222, 252, 250, 0.98), rgba(255, 255, 255, 0.94));
}

.ai-board p {
  background: linear-gradient(90deg, #075695, #0aa1a5);
}

.ai-board strong {
  color: #072349;
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  font-weight: 950;
  line-height: 1.25;
}

.ai-board em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: auto;
  padding: 6px 9px;
  color: #075695;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1.15;
  border: 1px solid rgba(7, 86, 149, 0.2);
  border-radius: 999px;
  background: rgba(7, 86, 149, 0.08);
}

.ai-board ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-board li {
  display: flex;
  align-items: center;
  min-height: 31px;
  gap: 6px;
  padding: 5px 7px;
  color: #234767;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.18;
  border: 1px solid rgba(6, 45, 76, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
}

.ai-board li::before {
  content: "✓";
  color: #0a9da0;
  font-weight: 950;
}

.ai-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 98px;
  gap: 10px;
  align-items: stretch;
}

.preview-page,
.preview-mobile {
  border: 1px solid rgba(6, 45, 76, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(8, 31, 61, 0.08);
}

.preview-page {
  position: relative;
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 108px;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(6, 53, 96, 0.88), rgba(6, 53, 96, 0.26)),
    linear-gradient(135deg, #dfeaf4, #f9fcff);
}

.preview-page::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: min(34%, 160px);
  height: calc(100% - 28px);
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #b9dbe5, #f9e95e);
}

.preview-page span,
.preview-mobile span {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.1;
}

.preview-page strong {
  position: relative;
  z-index: 1;
  max-width: 58%;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 950;
  line-height: 1.18;
}

.preview-page b {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 24px;
  border-radius: 4px;
  background: var(--yellow);
}

.preview-mobile {
  display: grid;
  align-content: space-between;
  gap: 8px;
  min-height: 108px;
  padding: 11px 10px;
  color: var(--white);
  border: 5px solid #08111f;
  border-radius: 22px;
  background:
    linear-gradient(#f3f8fb, #f3f8fb) 50% 44px / calc(100% - 16px) 16px no-repeat,
    linear-gradient(#0a9da0, #0a9da0) 50% 70px / calc(100% - 16px) 26px no-repeat,
    #e6f0f7;
}

.preview-mobile span {
  justify-self: center;
  color: #65768c;
}

.preview-mobile b {
  justify-self: center;
  width: 30px;
  height: 5px;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.36);
}

.outsource-flow {
  display: grid;
  gap: 18px;
}

.back-and-forth-heading,
.source-message,
.flow-result {
  padding: 14px 16px;
  color: var(--black);
  background: var(--white);
  border: 2px solid currentColor;
}

.back-and-forth-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--yellow);
}

.back-and-forth-heading::before {
  content: none;
}

.back-and-forth-heading span,
.source-message span,
.flow-result span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.74rem;
  font-weight: 950;
  color: var(--blue);
}

.back-and-forth-heading span {
  flex: 0 0 auto;
  margin: 0;
  padding: 4px 9px;
  color: var(--black);
  background: var(--yellow);
}

.back-and-forth-heading strong {
  display: block;
  color: var(--white);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.45;
  text-align: right;
}

.source-message strong,
.flow-result strong {
  display: block;
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.35;
}

.handoff-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: handoff;
}

.handoff-steps-loop {
  position: relative;
  padding-bottom: 32px;
}

.handoff-steps li {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 166px;
  padding: 16px 14px 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid currentColor;
  text-align: center;
}

.handoff-steps li::before {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  width: 24px;
  height: 24px;
  content: counter(handoff);
  counter-increment: handoff;
  place-items: center;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  background: var(--black);
}

.handoff-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 1;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--black);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.handoff-steps-loop li:not(:last-child)::after {
  top: 40%;
}

.handoff-steps-loop li:not(:last-child)::before {
  box-shadow: 0 0 0 4px rgba(49, 185, 181, 0.55);
}

.person-step em {
  display: block;
  width: fit-content;
  margin-top: 10px;
  padding: 3px 7px;
  color: var(--white);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1.2;
  background: var(--black);
}

.handoff-portrait {
  position: relative;
  display: block;
  width: 78px;
  height: 70px;
  margin: 0 auto 12px;
  border: 2px solid var(--black);
  background:
    linear-gradient(180deg, rgba(49, 185, 181, 0.5), rgba(255, 255, 255, 0) 42%),
    var(--white);
  overflow: hidden;
}

.handoff-portrait::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 31px;
  height: 31px;
  content: "";
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 50%;
  transform: translateX(-50%);
}

.handoff-portrait::after {
  position: absolute;
  right: 18px;
  bottom: -9px;
  left: 18px;
  height: 42px;
  content: "";
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: 18px 18px 0 0;
}

.handoff-portrait b {
  position: absolute;
  z-index: 2;
  display: block;
}

.portrait-decision b {
  top: 13px;
  right: 8px;
  width: 27px;
  height: 21px;
  background:
    linear-gradient(var(--black) 0 0) 7px 7px / 13px 2px,
    linear-gradient(var(--black) 0 0) 7px 13px / 9px 2px,
    var(--yellow);
  background-repeat: no-repeat;
  border: 2px solid var(--black);
}

.portrait-decision b::after {
  position: absolute;
  right: 8px;
  bottom: -7px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--yellow);
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
}

.portrait-waiting {
  background:
    radial-gradient(circle at 66px 19px, var(--yellow) 0 15px, transparent 16px),
    linear-gradient(180deg, rgba(0, 104, 183, 0.12), rgba(255, 255, 255, 0) 48%),
    var(--white);
}

.portrait-waiting::after {
  background: #e9e9e9;
}

.portrait-waiting b {
  top: 8px;
  right: 7px;
  width: 29px;
  height: 29px;
  border: 3px solid var(--black);
  border-radius: 50%;
}

.portrait-waiting b::before,
.portrait-waiting b::after {
  position: absolute;
  content: "";
  background: var(--black);
  transform-origin: left center;
}

.portrait-waiting b::before {
  top: 11px;
  left: 12px;
  width: 10px;
  height: 3px;
  transform: rotate(35deg);
}

.portrait-waiting b::after {
  top: 5px;
  left: 12px;
  width: 3px;
  height: 10px;
}

.portrait-busy {
  background:
    linear-gradient(var(--blue) 0 0) 9px 12px / 18px 4px,
    linear-gradient(var(--blue) 0 0) 5px 24px / 23px 4px,
    linear-gradient(var(--blue) 0 0) 11px 36px / 15px 4px,
    var(--white);
  background-repeat: no-repeat;
}

.portrait-busy::after {
  background: var(--blue);
}

.portrait-busy b {
  right: 7px;
  bottom: 12px;
  width: 25px;
  height: 31px;
  background:
    linear-gradient(var(--black) 0 0) 6px 8px / 12px 2px,
    linear-gradient(var(--black) 0 0) 6px 15px / 9px 2px,
    var(--white);
  background-repeat: no-repeat;
  border: 2px solid var(--black);
  transform: rotate(3deg);
}

.portrait-working {
  background:
    linear-gradient(180deg, rgba(0, 104, 183, 0.1), rgba(255, 255, 255, 0) 50%),
    var(--white);
}

.portrait-working::after {
  right: 30px;
  left: 8px;
  background: #e9e9e9;
}

.portrait-working b {
  right: 8px;
  bottom: 11px;
  width: 36px;
  height: 27px;
  background:
    linear-gradient(var(--yellow) 0 0) 7px 7px / 11px 3px,
    linear-gradient(var(--blue) 0 0) 7px 14px / 20px 3px,
    var(--white);
  background-repeat: no-repeat;
  border: 3px solid var(--black);
}

.portrait-working b::after {
  position: absolute;
  right: -6px;
  bottom: -8px;
  left: -6px;
  height: 6px;
  content: "";
  background: var(--black);
}

.loop-arrows {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  padding: 0;
}

.loop-arrows span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  background: var(--navy-dark);
}

.loop-arrows span::before {
  display: grid;
  width: 26px;
  height: 26px;
  content: "";
  flex: 0 0 auto;
  place-items: center;
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 950;
  background: var(--yellow);
}

.loop-arrows .loop-command::before {
  content: "!";
}

.loop-arrows .loop-check::before {
  content: "✓";
}

.loop-arrows .loop-revise::before {
  content: "↻";
}

.loop-arrows span:not(:last-child)::after {
  margin-left: 12px;
  content: "↔";
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 950;
}

.loop-revise::after {
  margin-left: 12px;
  content: "↔";
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 950;
}

.loop-arrows b {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.handoff-steps span {
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  color: var(--blue);
  line-height: 1.25;
}

.handoff-steps strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.3;
}

.flow-result {
  color: var(--black);
  background: var(--yellow);
}

.flow-result span {
  color: var(--black);
}

.flow-result strong {
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.people-row {
  display: grid;
  grid-template-columns: 74px 1fr 74px 1fr 86px 1fr 74px;
  align-items: center;
  min-height: 102px;
}

.person,
.vendor-building,
.laptop-visual {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 86px;
}

.person::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 38px;
  height: 38px;
  content: "";
  background: var(--white);
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.person::after {
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 44px;
  content: "";
  background: var(--white);
  border: 3px solid currentColor;
  border-radius: 8px 8px 0 0;
}

.person-boss::after {
  background: var(--yellow);
}

.vendor-building {
  width: 82px;
  height: 82px;
  background:
    linear-gradient(currentColor 0 0) 18px 24px / 10px 10px,
    linear-gradient(currentColor 0 0) 38px 24px / 10px 10px,
    linear-gradient(currentColor 0 0) 58px 24px / 10px 10px,
    linear-gradient(currentColor 0 0) 18px 46px / 10px 10px,
    linear-gradient(currentColor 0 0) 38px 46px / 10px 10px,
    linear-gradient(currentColor 0 0) 58px 46px / 10px 10px,
    var(--white);
  background-repeat: no-repeat;
  border: 3px solid currentColor;
}

.flow-line,
.direct-arrow {
  position: relative;
  display: block;
  height: 3px;
  background: currentColor;
  opacity: 0.9;
}

.flow-line::after,
.direct-arrow::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.delay-tags,
.update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.delay-tags span,
.update-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.2;
  border: 2px solid currentColor;
}

.delay-tags span {
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
}

.delay-tags span:nth-child(n + 4) {
  background: var(--yellow);
}

.inhouse-scene {
  display: grid;
  grid-template-columns: 84px 1fr 148px 52px;
  align-items: center;
  min-height: 102px;
}

.route-card-inhouse .person::before,
.route-card-inhouse .person::after {
  border-color: var(--black);
}

.route-card-inhouse .person::before,
.route-card-inhouse .person::after {
  background: var(--white);
}

.route-card-inhouse .person::after {
  background: var(--black);
}

.laptop-visual {
  width: 148px;
  height: 96px;
}

.laptop-visual::before {
  position: absolute;
  inset: 0 10px 18px;
  content: "";
  background:
    linear-gradient(var(--yellow) 0 0) 18px 18px / 44px 8px,
    linear-gradient(var(--blue) 0 0) 18px 34px / 64px 8px,
    linear-gradient(var(--navy-dark) 0 0) 18px 52px / 88px 8px,
    var(--white);
  background-repeat: no-repeat;
  border: 4px solid var(--black);
}

.laptop-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  content: "";
  background: var(--black);
  border-radius: 0 0 4px 4px;
}

.spark-line {
  position: relative;
  width: 42px;
  height: 68px;
}

.spark-line::before,
.spark-line::after {
  position: absolute;
  content: "";
  background: var(--blue);
}

.spark-line::before {
  top: 8px;
  left: 16px;
  width: 5px;
  height: 54px;
  transform: rotate(42deg);
}

.spark-line::after {
  top: 14px;
  right: 5px;
  width: 26px;
  height: 5px;
  transform: rotate(42deg);
}

.update-tags span {
  background: var(--white);
}

.route-copy {
  padding: clamp(24px, 4vw, 34px);
  align-self: center;
}

.route-copy .route-label {
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  padding: 3px 9px;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
  color: var(--black);
  background: var(--yellow);
}

.route-card-inhouse .route-copy .route-label {
  color: var(--white);
  background: var(--black);
}

.route-copy p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.route-card-inhouse .route-copy p:last-child {
  color: rgba(0, 0, 0, 0.78);
}

.route-card-future .route-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(30px, 3.4vw, 44px);
  background:
    linear-gradient(90deg, rgba(49, 185, 181, 0.28), transparent 48%),
    var(--white);
}

.route-card-future .route-copy::before {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 10px;
  content: "INHOUSE FUTURE";
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.15;
  border: 2px solid var(--blue);
}

.route-card-future .route-copy h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.18em;
  max-width: 720px;
  font-size: clamp(2.35rem, 3.05vw, 3.8rem);
  line-height: 1.05;
}

.route-card-future .route-copy h3 span {
  display: inline-block;
}

.future-emphasis {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.future-emphasis::after {
  position: absolute;
  right: -0.04em;
  bottom: 0.04em;
  left: -0.04em;
  z-index: -1;
  height: 0.36em;
  content: "";
  background: var(--yellow);
}

.no-break {
  white-space: nowrap;
}

.route-card-future .route-copy > p:not(.route-label) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 850;
}

.future-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.future-stats span {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 2px;
  padding: 14px 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.2;
  background: var(--black);
  border: 2px solid var(--black);
}

.future-stats strong {
  color: var(--yellow);
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.future-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.future-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
}

.future-list li::before {
  position: absolute;
  left: 0;
  content: "→";
  color: var(--blue);
  font-weight: 950;
}

.inhouse-future-visual {
  position: relative;
  align-self: center;
  height: 620px;
  min-height: 0;
  margin-right: 18px;
  padding: 18px;
  overflow: hidden;
  background: var(--black) !important;
}

.inhouse-future-visual::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(49, 185, 181, 0.18), transparent 38%);
  pointer-events: none;
}

.inhouse-future-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 82% center;
  border: 2px solid var(--black);
}

.future-photo-label,
.future-signal {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.future-photo-label {
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  max-width: none;
  padding: 18px 22px 18px 26px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.58));
  border-left: 6px solid var(--yellow);
}

.future-photo-label::after {
  flex: 0 0 min(18%, 96px);
  width: auto;
  height: 3px;
  content: "";
  background: var(--yellow);
}

.future-photo-label span,
.future-signal span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.2;
}

.future-photo-label span {
  color: var(--yellow);
}

.future-photo-label strong {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.3vw, 1.35rem);
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
}

.future-signal {
  display: grid;
  width: clamp(178px, 17vw, 218px);
  padding: 12px 14px 12px 16px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.76);
  border-left: 5px solid var(--yellow);
}

.future-signal strong {
  color: var(--white);
  font-size: clamp(0.92rem, 1vw, 1.06rem);
  font-weight: 950;
  line-height: 1.2;
}

.future-signal-primary {
  top: 34px;
  left: 34px;
}

.future-signal-secondary {
  right: 34px;
  top: 34px;
  border-right: 5px solid var(--blue);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 5, 5, 0.7);
}

.comparison {
  background:
    linear-gradient(90deg, rgba(13, 0, 132, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 0, 132, 0.04) 1px, transparent 1px),
    var(--soft);
  background-size: 48px 48px;
}

.section-heading {
  margin-bottom: 34px;
}

.comparison-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.comparison-summary,
.comparison-board {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.comparison-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.summary-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 6px;
  background: var(--white);
}

.summary-card::after {
  position: absolute;
  right: -26px;
  bottom: -42px;
  content: attr(data-mark);
  color: rgba(0, 0, 0, 0.05);
  font-size: 9rem;
  font-weight: 950;
}

.summary-card p {
  display: inline-block;
  margin: 0 0 18px;
  padding: 4px 10px;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.25;
  background: var(--yellow);
}

.summary-card h3 {
  max-width: 560px;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
}

.summary-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.summary-outsource {
  color: var(--white);
  background: var(--black);
}

.summary-outsource::after {
  content: "WAIT";
  color: rgba(255, 255, 255, 0.08);
}

.summary-outsource span {
  color: rgba(255, 255, 255, 0.72);
}

.summary-inhouse {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    var(--yellow);
}

.summary-inhouse::after {
  content: "FAST";
}

.comparison-board {
  display: grid;
  gap: 10px;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.48fr) minmax(0, 1fr) minmax(0, 1fr);
}

.compare-head {
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
}

.compare-head span {
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 950;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.compare-head span:last-child {
  color: var(--black);
  background: var(--yellow);
  border-right: 0;
}

.compare-row {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 6px;
  overflow: hidden;
}

.compare-axis {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 950;
  background: #f1f1f1;
  border-right: 1px solid var(--black);
}

.compare-axis span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  font-size: 1rem;
  background: var(--blue);
}

.compare-cell {
  position: relative;
  padding: 22px 22px 58px;
  border-right: 1px solid var(--black);
}

.compare-cell:last-child {
  border-right: 0;
}

.compare-cell strong {
  display: block;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  font-weight: 950;
  line-height: 1.35;
}

.compare-cell p {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.compare-cell em {
  position: absolute;
  bottom: 18px;
  left: 22px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  color: var(--black);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  background: #e8e8e8;
}

.outsource-cell {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035), transparent 60%),
    var(--white);
}

.inhouse-cell {
  background:
    linear-gradient(90deg, rgba(49, 185, 181, 0.42), rgba(49, 185, 181, 0.18)),
    var(--white);
}

.inhouse-cell em {
  color: var(--black);
  background: var(--yellow);
}

.outcomes-lead,
.curriculum-lead {
  margin: 22px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.outcomes-intro {
  align-self: stretch;
}

.outcomes-build-visual {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: clamp(26px, 4vw, 42px);
  padding: clamp(16px, 2.5vw, 24px);
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(49, 185, 181, 0.17), transparent 55%),
    linear-gradient(135deg, rgba(13, 0, 132, 0.06), rgba(255, 255, 255, 0.96));
  box-shadow: 9px 9px 0 rgba(49, 185, 181, 0.18);
}

.outcomes-build-visual::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  content: "BUILD";
  color: rgba(13, 0, 132, 0.06);
  font-size: clamp(4.2rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 1;
}

.build-screen {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 180px;
  padding: 52px 20px 24px;
  overflow: hidden;
  color: var(--white);
  border: 8px solid var(--black);
  border-radius: 16px 16px 8px 8px;
  background:
    linear-gradient(90deg, rgba(13, 0, 132, 0.92), rgba(13, 0, 132, 0.54)),
    linear-gradient(135deg, #deeff7, #fff);
  box-shadow: 0 20px 34px rgba(13, 0, 132, 0.12);
}

.build-screen::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  transform: translateX(-50%);
}

.build-screen::after {
  position: absolute;
  top: 28px;
  right: 18px;
  bottom: 18px;
  width: min(35%, 132px);
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(var(--white), var(--white)) 14px 16px / calc(100% - 28px) 18px no-repeat,
    linear-gradient(var(--teal), var(--teal)) 14px 48px / calc(100% - 28px) 34px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)) 14px 96px / 56% 10px no-repeat,
    rgba(255, 255, 255, 0.22);
}

.build-screen span,
.build-screen strong,
.build-screen b {
  position: relative;
  z-index: 1;
}

.build-screen span {
  width: fit-content;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.15;
}

.build-screen strong {
  max-width: 62%;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 950;
  line-height: 1.2;
}

.build-screen b {
  width: 84px;
  height: 28px;
  border-radius: 4px;
  background: var(--teal);
}

.outcomes-build-visual ol {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcomes-build-visual li {
  display: grid;
  min-height: 64px;
  align-content: center;
  gap: 1px;
  padding: 10px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.2;
  border: 1px solid rgba(13, 0, 132, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
}

.outcomes-build-visual li b {
  color: var(--teal);
  font-size: 0.68rem;
  line-height: 1.1;
}

.curriculum-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.curriculum-meta span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--black);
  font-weight: 950;
  line-height: 1.2;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 5px 5px 0 var(--yellow);
}

.curriculum-meta strong {
  color: var(--blue);
  font-size: 1.2rem;
}

.outcome-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card {
  position: relative;
  min-height: 292px;
  padding: 26px 26px 78px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 6px;
}

.outcome-card::after {
  position: absolute;
  right: -18px;
  bottom: -36px;
  content: attr(data-index);
  color: rgba(0, 0, 0, 0.05);
  font-size: 8rem;
  font-weight: 950;
  line-height: 1;
}

.outcome-card:nth-child(2),
.outcome-card:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(49, 185, 181, 0.13), transparent 60%),
    var(--soft);
}

.outcome-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--black);
}

.outcome-icon::before,
.outcome-icon::after {
  position: absolute;
  content: "";
}

.outcome-web .outcome-icon::before,
.outcome-lp .outcome-icon::before {
  inset: 14px 10px 18px;
  background:
    linear-gradient(var(--yellow) 0 0) 8px 8px / 18px 4px,
    linear-gradient(var(--blue) 0 0) 8px 16px / 30px 4px,
    linear-gradient(var(--black) 0 0) 8px 24px / 24px 4px,
    var(--white);
  background-repeat: no-repeat;
  border: 3px solid var(--black);
}

.outcome-web .outcome-icon::after,
.outcome-lp .outcome-icon::after {
  right: 8px;
  bottom: 8px;
  left: 8px;
  height: 8px;
  background: var(--black);
}

.outcome-lp .outcome-icon {
  background: var(--blue);
}

.outcome-cms .outcome-icon::before {
  inset: 11px 14px;
  background:
    linear-gradient(var(--black) 0 0) 9px 10px / 24px 3px,
    linear-gradient(var(--black) 0 0) 9px 20px / 18px 3px,
    linear-gradient(var(--blue) 0 0) 9px 30px / 28px 3px,
    var(--white);
  background-repeat: no-repeat;
  border: 3px solid var(--black);
}

.outcome-ai .outcome-icon::before {
  width: 34px;
  height: 34px;
  background:
    radial-gradient(circle at 50% 50%, var(--black) 0 4px, transparent 5px),
    conic-gradient(from 0deg, var(--black) 0 12%, transparent 12% 25%, var(--black) 25% 37%, transparent 37% 50%, var(--black) 50% 62%, transparent 62% 75%, var(--black) 75% 87%, transparent 87%);
  border: 3px solid var(--black);
  border-radius: 50%;
}

.outcome-step {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.outcome-grid p:not(.outcome-step),
.days p,
.days li {
  font-weight: 700;
  color: var(--ink);
}

.outcome-grid p:not(.outcome-step) {
  margin: 12px 0 0;
}

.outcome-card em {
  position: absolute;
  bottom: 22px;
  left: 26px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  color: var(--black);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  background: var(--yellow);
}

.outcome-center {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--black);
  border: 3px solid var(--yellow);
}

.outcome-center strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 950;
  white-space: nowrap;
}

.outcome-center span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.curriculum {
  background:
    linear-gradient(90deg, rgba(0, 104, 183, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    var(--white);
  background-size: 44px 44px;
}

.days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.days article {
  position: relative;
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 6px;
}

.days article::after {
  position: absolute;
  top: 48%;
  right: -28px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  content: "→";
  place-items: center;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 950;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
}

.days article:nth-child(3)::after {
  content: none;
}

.day-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 0 22px;
  color: var(--white) !important;
  font-size: 1.06rem;
  font-weight: 950 !important;
  line-height: 1.1;
  text-align: center;
  background: var(--blue);
}

.day-card {
  overflow: visible;
}

.day-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 8px;
  content: "";
  background: var(--yellow);
}

.day-card::after {
  z-index: 1;
}

.day-verb {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.days article h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.days ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.days li {
  position: relative;
  padding-left: 24px;
}

.days li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 950;
}

.day-output {
  margin-top: 22px;
  padding: 14px;
  color: var(--black);
  font-weight: 950;
  background: var(--yellow);
  border: 2px solid var(--black);
}

.day-output span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
}

.day-build {
  transform: translateY(28px);
}

.day-grow {
  transform: translateY(56px);
}

.note {
  width: min(100%, var(--max));
  margin: 84px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.price {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    var(--soft);
  background-size: 44px 44px;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.68fr) minmax(260px, 0.68fr);
  align-items: stretch;
  gap: 22px;
}

.price-panel,
.subsidy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 6px;
}

.price-panel p,
.subsidy-panel p {
  margin: 0;
  font-weight: 900;
}

.price-main {
  margin-block: 10px !important;
  line-height: 1;
}

.price-main strong {
  font-size: clamp(4.2rem, 7vw, 6.5rem);
  font-weight: 950;
}

.price-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.28em;
  line-height: 1.45;
}

.subsidy-panel {
  color: var(--black);
  background: var(--yellow);
}

.subsidy-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 2px 10px;
  margin-bottom: 12px !important;
  background: var(--white);
}

.subsidy-panel strong {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 950;
  color: var(--blue);
}

.subsidy-panel span {
  display: block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 800;
}

.cta-band {
  display: grid;
  justify-items: center;
  padding: clamp(72px, 9vw, 122px) 18px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(49, 185, 181, 0.22), transparent 28%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.cta-band h2 {
  max-width: 1120px;
}

.cta-title-line {
  display: inline-block;
  white-space: nowrap;
}

.cta-band p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 32px;
  font-size: 1.08rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

details {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 6px;
}

summary {
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-size: 1.08rem;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  margin-right: -34px;
  content: "+";
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 950;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  font-weight: 700;
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: var(--navy-dark);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 1240px) and (min-width: 981px) {
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics div:nth-child(1),
  .hero-metrics div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .global-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "metrics";
    min-height: 0;
  }

  .hero-copy {
    align-self: start;
  }

  .hero-media {
    min-height: 360px;
    border-top: 8px solid var(--black);
    border-left: 0;
    box-shadow: 10px 10px 0 var(--yellow);
  }

  .section-grid,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .route-visual {
    grid-template-columns: 1fr;
  }

  .route-card,
  .route-card-inhouse {
    grid-template-columns: 1fr;
  }

  .route-card-future {
    overflow: hidden;
    box-shadow: none;
  }

  .route-card-inhouse .route-illustration,
  .route-card-inhouse .route-copy {
    order: initial;
  }

  .route-card-future .route-copy {
    min-height: 0;
  }

  .inhouse-future-visual {
    height: 430px;
    min-height: 0;
    margin: 0;
  }

  .inhouse-future-visual img {
    min-height: 0;
    object-position: 76% center;
  }

  .route-card-outsource .route-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .route-card-outsource .route-copy .route-label,
  .route-card-outsource .route-copy h3,
  .route-card-outsource .route-copy p:last-child {
    grid-column: auto;
  }

  .route-workflow-illustration,
  .route-card-inhouse .route-workflow-illustration {
    min-height: 0;
  }

  .workflow-laptop-ai {
    max-width: 100%;
  }

  .wait-pipeline,
  .ai-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wait-pipeline li:nth-child(2)::after,
  .ai-board section:nth-child(2)::after {
    display: none;
  }

  .value-points {
    grid-template-columns: 1fr;
  }

  .outcome-grid {
    min-height: 0;
  }

  .outcome-center {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    transform: none;
  }

  .comparison-summary {
    grid-template-columns: 1fr;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr) minmax(0, 1fr);
  }

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

  .day-build,
  .day-grow {
    transform: none;
  }

  .days article::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 28px;
    width: 34px;
    height: 34px;
    transform: rotate(90deg);
  }

  .note {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 64px;
  }

  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand-main {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.62rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.4vw, 3rem);
  }

  .hero h1 .no-marker,
  .hero h1 .hero-highlight {
    white-space: normal;
  }

  .mobile-line {
    display: block;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-cta {
    width: 100%;
  }

  .cta-title-line {
    display: inline;
    white-space: normal;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-media-label {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 14px 16px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics div:nth-child(1),
  .hero-metrics div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .section-number {
    min-width: 58px;
    min-height: 44px;
    font-size: 1.25rem;
  }

  .section-block {
    padding-block: 76px;
  }

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

  .route-illustration {
    min-height: 190px;
    padding: 22px;
  }

  .problem-stall-visual {
    min-height: 0;
  }

  .outcomes-build-visual {
    margin-bottom: 8px;
  }

  .workflow-bezel {
    padding: 20px 9px 9px;
    border-radius: 20px 20px 8px 8px;
  }

  .workflow-screen {
    min-height: 0;
  }

  .workflow-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 0;
  }

  .workflow-toolbar strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .wait-request,
  .wait-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .wait-result strong {
    text-align: left;
  }

  .wait-pipeline,
  .ai-board,
  .ai-preview {
    grid-template-columns: 1fr;
  }

  .wait-pipeline li,
  .ai-board section {
    min-height: 0;
  }

  .wait-pipeline li:not(:last-child)::after,
  .ai-board section:not(:last-child)::after {
    display: none;
  }

  .route-card-future .route-copy {
    padding: 28px 22px;
  }

  .route-card-future .route-copy h3 {
    max-width: 100%;
  }

  .future-stats {
    grid-template-columns: 1fr;
  }

  .future-stats span {
    min-height: 72px;
  }

  .inhouse-future-visual {
    height: 340px;
    min-height: 0;
    padding: 12px;
  }

  .inhouse-future-visual::before {
    inset: 12px;
  }

  .inhouse-future-visual img {
    min-height: 0;
    object-position: 76% center;
  }

  .future-photo-label {
    right: 22px;
    bottom: 22px;
    left: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    max-width: none;
    padding: 14px;
  }

  .future-photo-label::after {
    flex: 0 0 3px;
    width: 64px;
  }

  .future-signal {
    width: calc(50% - 28px);
    min-width: 0;
    padding: 9px 10px;
  }

  .future-signal span {
    font-size: 0.62rem;
  }

  .future-signal strong {
    font-size: 0.82rem;
  }

  .future-signal-secondary {
    right: 22px;
  }

  .future-signal-primary {
    left: 22px;
  }

  .back-and-forth-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .back-and-forth-heading strong {
    text-align: left;
  }

  .handoff-steps {
    grid-template-columns: 1fr;
  }

  .handoff-steps-loop {
    padding-bottom: 0;
  }

  .handoff-steps li {
    min-height: 0;
    padding: 32px 12px 12px;
  }

  .handoff-steps li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -14px;
    transform: translateX(50%) rotate(90deg);
  }

  .loop-arrows {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 6px;
    padding: 0;
  }

  .loop-arrows span {
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
  }

  .loop-arrows span:not(:last-child)::after {
    margin-left: 12px;
    content: "↕";
  }

  .people-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .flow-line {
    display: none;
  }

  .person,
  .vendor-building {
    width: 56px;
    height: 70px;
    justify-self: center;
  }

  .person::before {
    width: 30px;
    height: 30px;
  }

  .person::after {
    right: 7px;
    left: 7px;
    height: 36px;
  }

  .vendor-building {
    width: 64px;
    height: 64px;
    background:
      linear-gradient(currentColor 0 0) 13px 18px / 8px 8px,
      linear-gradient(currentColor 0 0) 28px 18px / 8px 8px,
      linear-gradient(currentColor 0 0) 43px 18px / 8px 8px,
      linear-gradient(currentColor 0 0) 13px 36px / 8px 8px,
      linear-gradient(currentColor 0 0) 28px 36px / 8px 8px,
      linear-gradient(currentColor 0 0) 43px 36px / 8px 8px,
      var(--white);
    background-repeat: no-repeat;
  }

  .inhouse-scene {
    grid-template-columns: 56px 1fr 126px 34px;
  }

  .laptop-visual {
    width: 126px;
    height: 84px;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-axis {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .compare-cell {
    padding: 18px 18px 54px;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .compare-cell:last-child {
    border-bottom: 0;
  }

  .compare-cell::before {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    padding: 3px 8px;
    font-size: 0.76rem;
    font-weight: 950;
    line-height: 1.2;
  }

  .outsource-cell::before {
    content: "外注";
    color: var(--white);
    background: var(--black);
  }

  .inhouse-cell::before {
    content: "内製化";
    color: var(--black);
    background: var(--yellow);
  }

  .summary-card {
    min-height: 0;
    padding: 22px;
  }

  .price-panel,
  .subsidy-panel,
  .outcome-grid article,
  .days article {
    padding: 22px;
  }

  .outcome-grid article {
    padding-bottom: 72px;
  }

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

  .stall-page,
  .stall-clock {
    min-height: 0;
  }

  .stall-clock {
    min-height: 164px;
  }

  .outcomes-build-visual ol {
    grid-template-columns: 1fr;
  }

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

/* Responsive controlled break (desktop/tablet only) */
.lp-break-md {
  display: none;
}

@media (min-width: 681px) {
  .lp-break-md {
    display: inline;
  }
}

/* ===== 二択CTAペアボタン ===== */

.recruit-lp-scope .cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.recruit-lp-scope .cta-pair-band {
  justify-content: center;
  margin-top: 8px;
}

.recruit-lp-scope .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 26px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.recruit-lp-scope .secondary-cta:hover {
  background: var(--navy);
  color: var(--white);
  transform: translate(2px, 2px);
}

.recruit-lp-scope .cta-pair-band .secondary-cta {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.recruit-lp-scope .cta-pair-band .secondary-cta:hover {
  background: var(--white);
  color: var(--navy);
}

/* ===== 問い合わせフォームセクション ===== */

.recruit-lp-scope .contact-form-section {
  background: var(--soft);
  padding-block: 96px;
}

.recruit-lp-scope .contact-form-section .section-heading {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: 36px;
  text-align: center;
}

.recruit-lp-scope .contact-form-lead {
  margin-top: 18px;
  color: var(--ink);
  line-height: 1.85;
}

.recruit-lp-scope .lead-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(13, 0, 132, 0.08);
}

.recruit-lp-scope .lead-form-row {
  margin-bottom: 20px;
}

.recruit-lp-scope .lead-form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.recruit-lp-scope .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink);
}

.recruit-lp-scope .form-label {
  font-weight: 700;
  color: var(--navy);
}

.recruit-lp-scope .form-label em {
  margin-left: 4px;
  color: #d4263c;
  font-style: normal;
}

.recruit-lp-scope .form-field input[type="text"],
.recruit-lp-scope .form-field input[type="email"],
.recruit-lp-scope .form-field input[type="date"],
.recruit-lp-scope .form-field select,
.recruit-lp-scope .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.recruit-lp-scope .form-field input:focus,
.recruit-lp-scope .form-field select:focus,
.recruit-lp-scope .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(49, 185, 181, 0.18);
}

.recruit-lp-scope .form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.recruit-lp-scope .form-field-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.recruit-lp-scope .form-field-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.recruit-lp-scope .form-field-consent label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.recruit-lp-scope .form-field-consent a {
  color: var(--teal);
  text-decoration: underline;
}

.recruit-lp-scope .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.recruit-lp-scope .lead-form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.recruit-lp-scope .lead-form-submit {
  min-width: 260px;
}

.recruit-lp-scope .lead-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.recruit-lp-scope .lead-form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.recruit-lp-scope .form-feedback {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.recruit-lp-scope .form-feedback.is-success {
  display: block;
  color: #0a5e5a;
  background: var(--yellow-weak);
  border: 1px solid var(--teal);
}

.recruit-lp-scope .form-feedback.is-error {
  display: block;
  color: #b1112b;
  background: #fdecef;
  border: 1px solid #d4263c;
}

@media (max-width: 720px) {
  .recruit-lp-scope .lead-form-row-double {
    grid-template-columns: 1fr;
  }
  .recruit-lp-scope .cta-pair {
    flex-direction: column;
    align-items: stretch;
  }
  .recruit-lp-scope .cta-pair .primary-cta,
  .recruit-lp-scope .cta-pair .secondary-cta {
    width: 100%;
  }
}
