:root {
  --primary: #003ad8;
  --secondary: #00d1d1;
  --accent: #ff6b8e;
  --support: #87e9e9;
  --ink: #0a0f1a;
  --deep: #101a2f;
  --muted: #5f6b7a;
  --line: #d9e1ef;
  --soft: #eef5ff;
  --white: #ffffff;
  --container: min(1240px, calc(100vw - 56px));
  --shadow: 0 30px 70px rgba(8, 26, 72, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at 0 0, rgba(135, 233, 233, 0.42), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(0, 58, 216, 0.12), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f7fafe 100%);
}

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(217, 225, 239, 0.75);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 34px;
}

.brand-mark-left,
.brand-mark-right {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 48% 0, 82% 100%, 34% 100%);
}

.brand-mark-left {
  background: linear-gradient(180deg, #4ba0ff, var(--primary));
  transform: translateX(-7px) skewX(-14deg);
}

.brand-mark-right {
  background: linear-gradient(180deg, #58efe2, #1a72ff);
  transform: translateX(10px) scaleX(-1) skewX(-14deg);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.65rem;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  padding: 78px 0 44px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.thesis-quote p,
.cta-copy h2 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.hero-lead,
.section-head p,
.thesis-copy p,
.system-step p,
.capability-item p,
.cta-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.9;
}

.hero-actions,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #2458f4 55%, var(--secondary));
  box-shadow: 0 18px 36px rgba(0, 58, 216, 0.18);
}

.button-secondary {
  color: var(--primary);
  border-color: rgba(0, 58, 216, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 58, 216, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-notes span {
  position: relative;
  padding-left: 18px;
}

.hero-notes span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.hero-scene {
  position: relative;
  min-height: 540px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 107, 142, 0.18), transparent 16%),
    radial-gradient(circle at 74% 32%, rgba(135, 233, 233, 0.28), transparent 20%),
    linear-gradient(140deg, rgba(0, 58, 216, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(238, 245, 255, 0.9));
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  border: 1px solid rgba(0, 58, 216, 0.12);
}

.scene-frame {
  position: absolute;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(10, 15, 26, 0.88);
  box-shadow: var(--shadow);
}

.scene-a {
  top: 44px;
  left: 34px;
  width: 220px;
}

.scene-b {
  top: 188px;
  right: 30px;
  width: 238px;
}

.scene-c {
  bottom: 42px;
  left: 124px;
  width: 250px;
}

.scene-label {
  color: var(--support);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-copy {
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.scene-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 58, 216, 0.6), transparent);
  transform-origin: left center;
}

.line-1 {
  width: 46%;
  top: 168px;
  left: 142px;
  transform: rotate(28deg);
}

.line-2 {
  width: 38%;
  top: 332px;
  left: 120px;
  transform: rotate(-18deg);
}

.line-3 {
  width: 28%;
  bottom: 118px;
  right: 106px;
  transform: rotate(18deg);
}

.signal-band {
  padding: 0 0 26px;
}

.signal-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 58, 216, 0.14);
  border-bottom: 1px solid rgba(0, 58, 216, 0.14);
}

.signal-track span {
  padding: 18px 14px;
  border-right: 1px solid rgba(0, 58, 216, 0.1);
  color: var(--muted);
  text-align: center;
}

.signal-track span:last-child {
  border-right: 0;
}

.section {
  padding: 108px 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head-left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-head h2,
.thesis-copy h2,
.value-intro h2,
.cta-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.pain-list,
.compare-table,
.system-flow,
.faq-list {
  border-top: 1px solid rgba(0, 58, 216, 0.12);
}

.pain-row,
.compare-head,
.compare-row,
.system-step,
.capability-item,
.faq-item {
  border-bottom: 1px solid rgba(0, 58, 216, 0.12);
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.pain-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 32px 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pain-card + .pain-card {
  border-left: 1px solid rgba(0, 58, 216, 0.12);
}

.pain-media {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 58, 216, 0.06), rgba(0, 209, 209, 0.08));
  box-shadow: 0 18px 48px rgba(0, 58, 216, 0.08);
}

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

.pain-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin-top: -42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 255, 0.96));
  box-shadow:
    0 18px 38px rgba(0, 58, 216, 0.14),
    inset 0 0 0 1px rgba(0, 58, 216, 0.14);
}

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

.pain-icon img {
  width: 48%;
  height: 48%;
  object-fit: contain;
}

.pain-icon::before,
.pain-icon::after {
  display: none;
}

.pain-icon-time::before {
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.pain-icon-time::after {
  width: 14px;
  height: 14px;
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: translate(3px, -2px);
}

.pain-icon-team::before {
  width: 34px;
  height: 22px;
  border: 3px solid var(--primary);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.pain-icon-team::after {
  width: 38px;
  height: 18px;
  top: 19px;
  background:
    radial-gradient(circle at 20% 50%, transparent 0 5px, var(--primary) 6px 7px, transparent 8px),
    radial-gradient(circle at 50% 38%, transparent 0 6px, var(--primary) 7px 8px, transparent 9px),
    radial-gradient(circle at 80% 50%, transparent 0 5px, var(--primary) 6px 7px, transparent 8px);
}

.pain-icon-growth::before {
  width: 32px;
  height: 24px;
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

.pain-icon-growth::after {
  width: 30px;
  height: 18px;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  transform: rotate(-35deg) translate(2px, -2px);
}

.pain-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  text-align: center;
}

.pain-lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 2;
  text-align: center;
}

.pain-title .accent-ai {
  display: inline-block;
  margin: 0 0.08em;
  font-size: 1.22em;
  line-height: 0.82;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, var(--primary), #0877ff 45%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 38px rgba(0, 58, 216, 0.18);
}

.pain-conclusion {
  max-width: 1160px;
  margin: 48px auto 0;
  padding-top: 28px;
  color: var(--ink);
  font-size: clamp(1.22rem, 1.75vw, 1.72rem);
  font-weight: 800;
  line-height: 1.65;
  text-align: center;
  white-space: nowrap;
  background:
    linear-gradient(90deg, transparent, rgba(0, 58, 216, 0.18), rgba(0, 209, 209, 0.22), transparent) top / 100% 1px no-repeat;
}

.pain-conclusion .accent-ai,
.pain-conclusion-accent {
  display: inline-block;
  background: linear-gradient(110deg, var(--primary), #0877ff 45%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 34px rgba(0, 58, 216, 0.16);
}

.pain-conclusion .accent-ai {
  margin-right: 0.03em;
  font-size: 1.12em;
  line-height: 0.9;
}

.pain-row {
  display: grid;
  grid-template-columns: 92px 1.2fr 1fr;
  gap: 26px;
  align-items: start;
  padding: 26px 0;
}

.pain-index,
.system-step span,
.faq-no {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pain-row h3,
.system-step h3,
.capability-item h3,
.compare-row strong {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.45;
}

.pain-row p,
.section-closing,
.compare-row p,
.transform-side li,
.onboarding-steps li,
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-closing {
  margin-top: 24px;
  font-size: 1.1rem;
}

.thesis-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #ffffff 100%);
}

.funnel-story {
  display: grid;
  gap: 34px;
}

.funnel-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.funnel-copy h2 {
  margin: 0 0 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.funnel-copy .accent-ai {
  display: inline-block;
  margin-left: 0.06em;
  font-size: 1.16em;
  line-height: 0.82;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, var(--primary), #0877ff 45%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 38px rgba(0, 58, 216, 0.18);
}

.funnel-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.9;
}

.funnel-diagram {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.funnel-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 58, 216, 0.12), transparent 16%),
    radial-gradient(circle at 82% 62%, rgba(0, 209, 209, 0.14), transparent 18%),
    radial-gradient(circle at 52% 82%, rgba(0, 58, 216, 0.08), transparent 22%),
    repeating-linear-gradient(90deg, rgba(0, 58, 216, 0.035) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(0, 58, 216, 0.025) 0 1px, transparent 1px 56px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.78));
  border-top: 1px solid rgba(0, 58, 216, 0.12);
  border-bottom: 1px solid rgba(0, 58, 216, 0.12);
  isolation: isolate;
}

.funnel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 46% 82%, rgba(0, 58, 216, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 58%, rgba(255, 255, 255, 0.18) 100%);
  pointer-events: none;
}

.funnel-visual::after {
  content: "";
  position: absolute;
  right: -88px;
  top: 42px;
  z-index: 1;
  width: 360px;
  height: 260px;
  border: 18px solid rgba(0, 126, 255, 0.16);
  border-left-color: transparent;
  border-bottom-color: rgba(0, 209, 209, 0.1);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.funnel-kicker {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  padding: 8px 24px;
  border: 1px solid rgba(0, 58, 216, 0.36);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.funnel-left-axis {
  position: absolute;
  left: 26px;
  top: 132px;
  bottom: 94px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 120px;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.funnel-left-axis::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background:
    linear-gradient(180deg, var(--primary), transparent 36%, transparent 58%, #6b4ff5);
}

.funnel-left-axis::after {
  content: "";
  position: absolute;
  left: calc(50% - 7px);
  bottom: 26px;
  width: 14px;
  height: 14px;
  border-right: 2px solid #6b4ff5;
  border-bottom: 2px solid #6b4ff5;
  transform: rotate(45deg);
}

.axis-lower {
  color: #5143d9;
}

.funnel-rings {
  position: absolute;
  z-index: 1;
  left: 252px;
  bottom: 42px;
  width: 460px;
  height: 150px;
  background:
    repeating-radial-gradient(ellipse at center, rgba(0, 58, 216, 0.08) 0 8px, transparent 9px 25px);
  opacity: 0.6;
}

.funnel-layers {
  position: absolute;
  z-index: 3;
  left: 182px;
  top: 126px;
  display: grid;
  gap: 20px;
  width: min(560px, 54%);
  padding: 0;
  margin: 0;
  list-style: none;
}

.funnel-layers li {
  --layer-bg: linear-gradient(180deg, #dceeff, #cfe6fb);
  --layer-border: rgba(0, 58, 216, 0.08);
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  min-height: 106px;
  padding: 18px 44px 18px 52px;
  color: var(--ink);
  background: var(--layer-bg);
  border: 1px solid var(--layer-border);
  clip-path: polygon(0 0, 100% 0, 93% 100%, 7% 100%);
  filter: drop-shadow(0 18px 28px rgba(8, 26, 72, 0.08));
}

.funnel-layer i {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  position: relative;
}

.funnel-layer i::before,
.funnel-layer i::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  opacity: 0.68;
}

.layer-new {
  --layer-bg: linear-gradient(180deg, #e2f1ff, #d1e9ff);
}

.layer-new i {
  color: #5c77c9;
}

.layer-new i::before {
  width: 14px;
  height: 14px;
  top: 16px;
  left: 20px;
  border-radius: 50%;
}

.layer-new i::after {
  width: 34px;
  height: 16px;
  left: 10px;
  bottom: 13px;
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.layer-low {
  --layer-bg: linear-gradient(180deg, #82d8f1, #67c8e8);
}

.layer-low i,
.layer-high i,
.layer-existing i {
  color: rgba(255, 255, 255, 0.92);
}

.layer-low i::before {
  width: 18px;
  height: 18px;
  top: 14px;
  left: 14px;
  border-radius: 50%;
}

.layer-low i::after {
  width: 20px;
  height: 20px;
  right: 10px;
  bottom: 13px;
  border-radius: 50%;
}

.layer-high {
  --layer-bg: linear-gradient(180deg, #4b99f0, #2674e6);
  color: var(--white);
}

.layer-high i::before {
  width: 18px;
  height: 18px;
  top: 17px;
  left: 13px;
  border-radius: 50%;
}

.layer-high i::after {
  width: 16px;
  height: 16px;
  right: 12px;
  top: 12px;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 70% 58%, 82% 100%, 50% 74%, 18% 100%, 30% 58%, 0 35%, 38% 35%);
  background: currentColor;
  border: 0;
}

.layer-existing {
  --layer-bg: linear-gradient(180deg, #5d56d8, #4438bd);
  min-height: 96px;
  color: var(--white);
}

.layer-existing i::before {
  width: 28px;
  height: 32px;
  left: 14px;
  top: 13px;
  border-radius: 3px;
}

.layer-existing i::after {
  width: 24px;
  height: 2px;
  left: 17px;
  top: 25px;
  background: currentColor;
  border: 0;
  box-shadow: 0 8px 0 currentColor;
}

.funnel-layers li:last-child {
  border-bottom: 0;
}

.funnel-layers span {
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.45;
}

.funnel-layers em {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.82;
}

.funnel-ai-stream {
  position: absolute;
  z-index: 3;
  right: 86px;
  top: 172px;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #058ed4, #00bfd1);
  text-align: center;
  box-shadow: 0 16px 28px rgba(0, 151, 200, 0.18);
}

.funnel-ai-stream::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 50%;
  width: 130px;
  border-top: 2px dotted rgba(0, 154, 216, 0.62);
}

.funnel-ai-stream::after {
  content: "";
  position: absolute;
  left: -134px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(0, 154, 216, 0.72);
  border-bottom: 2px solid rgba(0, 154, 216, 0.72);
  transform: rotate(45deg);
}

.funnel-ai-stream span {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.funnel-ai-stream strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.ai-core {
  position: absolute;
  z-index: 3;
  right: 126px;
  top: 246px;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  color: var(--primary);
  background:
    radial-gradient(circle, #ffffff 0 54%, rgba(255, 255, 255, 0.72) 55% 64%, rgba(0, 209, 209, 0.12) 65% 100%);
  border: 10px solid rgba(0, 154, 216, 0.12);
  box-shadow:
    0 0 0 10px rgba(0, 58, 216, 0.04),
    0 22px 42px rgba(0, 58, 216, 0.12);
}

.ai-core-mark {
  font-size: 3.8rem;
  line-height: 0.7;
  font-weight: 800;
  background: linear-gradient(90deg, var(--secondary), #6b4ff5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-core strong {
  font-size: 1rem;
  line-height: 1;
}

.ai-actions {
  position: absolute;
  z-index: 3;
  right: 42px;
  top: 438px;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ai-actions li {
  position: relative;
  padding-left: 40px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}

.ai-actions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 44%, rgba(0, 58, 216, 0.1) 45% 100%);
  border: 1px solid rgba(0, 58, 216, 0.1);
}

.ai-actions li::after {
  content: "";
  position: absolute;
  left: -52px;
  top: 12px;
  width: 42px;
  border-top: 2px dotted rgba(0, 154, 216, 0.42);
}

.human-focus-label {
  position: absolute;
  z-index: 3;
  left: 348px;
  bottom: 42px;
  color: #4c42c9;
  font-weight: 800;
  line-height: 1.5;
  font-size: 1.34rem;
}

.human-focus-label::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 46px;
  margin: 0 14px -12px 0;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: transparent;
}

.funnel-conclusion {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
  white-space: nowrap;
}

.funnel-conclusion-accent {
  display: inline-block;
  background: linear-gradient(110deg, var(--primary), #0877ff 45%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 850;
  text-shadow: 0 14px 34px rgba(0, 58, 216, 0.14);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
}

.value-statements {
  border-top: 1px solid rgba(0, 58, 216, 0.12);
}

.value-statements > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 58, 216, 0.12);
}

.value-statements span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-statements p {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.55;
}

.compare-section {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(0, 209, 209, 0.16), transparent 18%),
    linear-gradient(180deg, #091120, #081628);
}

.compare-section .section-head h2,
.compare-section .section-head p,
.compare-head span,
.compare-row strong,
.compare-row p {
  color: var(--white);
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 24px;
  padding: 18px 0;
}

.compare-head span {
  color: rgba(135, 233, 233, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-row p:last-child {
  color: var(--support);
}

.system-flow {
  position: relative;
}

.system-step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
}

.capability-list {
  border-top: 1px solid rgba(0, 58, 216, 0.12);
}

.capability-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
}

.transform-section {
  background:
    linear-gradient(180deg, #f7fbff, #ffffff),
    linear-gradient(90deg, rgba(0, 58, 216, 0.03), rgba(0, 209, 209, 0.03));
}

.transform-layout {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: start;
}

.transform-side {
  padding-top: 12px;
}

.transform-side ul {
  display: grid;
  gap: 14px;
  padding: 22px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 58, 216, 0.12);
}

.transform-arrow {
  display: grid;
  place-items: center;
  min-height: 100%;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 58, 216, 0.12);
  border-left: 1px solid rgba(0, 58, 216, 0.12);
}

.onboarding-steps li {
  padding: 20px;
  border-right: 1px solid rgba(0, 58, 216, 0.12);
  border-bottom: 1px solid rgba(0, 58, 216, 0.12);
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  width: 100%;
  padding: 24px 44px 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 0 0 90px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 24px;
}

.cta-section {
  padding-top: 80px;
  padding-bottom: 112px;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 58, 216, 0.14);
}

.site-footer {
  padding: 28px 0 48px;
  background: #081221;
  color: rgba(255, 255, 255, 0.84);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1100px) {
  .hero-layout,
  .thesis-layout,
  .value-layout,
  .capability-layout,
  .onboarding-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

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

  .pain-row,
  .compare-head,
  .compare-row,
  .capability-item,
  .transform-layout {
    grid-template-columns: 1fr;
  }

  .pain-cards {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pain-card {
    padding: 0;
  }

  .pain-card + .pain-card {
    border-left: 0;
    padding-top: 34px;
    border-top: 1px solid rgba(0, 58, 216, 0.12);
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .hero h1,
  .section-head h2,
  .thesis-copy h2,
  .value-intro h2,
  .cta-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .signal-track,
  .onboarding-steps {
    grid-template-columns: 1fr;
  }

  .pain-conclusion {
    max-width: 760px;
    white-space: normal;
  }

  .hero-scene {
    min-height: 420px;
  }

  .scene-a {
    top: 30px;
    left: 18px;
  }

  .scene-b {
    top: 158px;
    right: 18px;
  }

  .scene-c {
    bottom: 26px;
    left: 54px;
  }

  .system-step,
  .faq-question {
    grid-template-columns: 1fr;
  }

  .faq-answer p {
    padding-left: 0;
  }

  .section {
    padding: 88px 0;
  }

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

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 32px, 1240px);
  }

  .nav {
    min-height: 74px;
  }

  .brand-text strong {
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
  }

  .scene-frame {
    width: calc(100% - 36px);
  }

  .scene-a,
  .scene-b,
  .scene-c {
    left: 18px;
    right: auto;
  }

  .scene-a {
    top: 20px;
  }

  .scene-b {
    top: 148px;
  }

  .scene-c {
    bottom: 18px;
  }

  .hero-actions,
  .cta-links {
    flex-direction: column;
  }
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.page-orbit {
  position: fixed;
  z-index: 0;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.34;
}

.orbit-left {
  left: -18vw;
  top: 8vh;
  background: rgba(0, 209, 209, 0.2);
}

.orbit-right {
  right: -16vw;
  top: 48vh;
  background: rgba(0, 58, 216, 0.18);
}

.page-shell,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

[data-reveal] {
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="up"] {
  transform: translateY(34px);
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal].is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

.hero {
  padding: 0 0 26px;
}

.hero-stage {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 36%, rgba(255, 255, 255, 0.74) 42%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    url("assets/generated/hero-market-ai.png");
  background-size: cover, cover, cover;
  background-position:
    center,
    center,
    calc(70% + var(--hero-shift-x)) calc(50% + var(--hero-shift-y));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-stage > .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 27%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at 14% 18%, rgba(135, 233, 233, 0.36), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.hero-stage::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: min(58vw, 760px);
  margin-left: clamp(120px, 15vw, 360px);
  padding: 72px 0;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 58, 216, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-line {
  display: block;
}

.hero-lead {
  max-width: 40rem;
  font-size: 1.05rem;
}

@media (min-width: 1600px) {
  .hero-stage {
    background-position:
      center,
      center,
      calc(64% + var(--hero-shift-x)) calc(50% + var(--hero-shift-y));
  }

  .hero-stage::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 22%, rgba(255, 255, 255, 0.82) 37%, rgba(255, 255, 255, 0.15) 65%, rgba(255, 255, 255, 0.04) 100%),
      radial-gradient(circle at 16% 18%, rgba(135, 233, 233, 0.28), transparent 17%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  }

  .hero-copy {
    margin-left: clamp(220px, 18vw, 420px);
  }
}

@media (min-width: 1900px) {
  .hero-stage {
    background-position:
      center,
      center,
      calc(61% + var(--hero-shift-x)) calc(50% + var(--hero-shift-y));
  }

  .hero-copy {
    margin-left: clamp(300px, 20vw, 520px);
  }
}

.hero-notes {
  max-width: 36rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28));
  border-top: 1px solid rgba(0, 58, 216, 0.12);
}

.section-head h2,
.thesis-copy h2,
.value-intro h2,
.cta-copy h2,
.transform-side h2 {
  margin: 0 0 18px;
}

.pain-section .section-head,
.system-section .section-head {
  max-width: 920px;
}

.pain-title {
  font-size: clamp(1.9rem, 2.45vw, 2.55rem);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .pain-title {
    font-size: clamp(1.8rem, 5.6vw, 2.4rem);
    white-space: normal;
  }
}

.compare-table {
  --spot-x: 50%;
  --spot-y: 30%;
  position: relative;
  overflow: hidden;
}

.compare-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(0, 209, 209, 0.12), transparent 28%);
  pointer-events: none;
}

.compare-row {
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.compare-row:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(0, 209, 209, 0.04));
}

.system-flow {
  position: relative;
}

.system-flow::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 58, 216, 0.12), rgba(0, 209, 209, 0.24), rgba(0, 58, 216, 0.12));
}

.system-step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.capability-item {
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease;
}

.capability-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 58, 216, 0.14), rgba(0, 209, 209, 0.3));
  opacity: 0;
  transition: opacity 220ms ease;
}

.capability-item:hover {
  transform: translateX(10px);
}

.capability-item:hover::before {
  opacity: 1;
}

.transform-side {
  padding: 24px 0 0;
}

.transform-side ul {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.22));
}

.onboarding-steps li {
  display: grid;
  gap: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16));
}

.onboarding-steps strong {
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.onboarding-steps span {
  font-weight: 700;
}

.faq-item {
  transition: border-color 220ms ease;
}

.faq-item:hover {
  border-color: rgba(0, 58, 216, 0.24);
}

.cta-layout {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 0;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at top right, rgba(0, 209, 209, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(0, 58, 216, 0.04), rgba(255, 255, 255, 0));
}

.cta-layout::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

@media (max-width: 1100px) {
  .hero-stage > .container {
    width: var(--container);
    max-width: var(--container);
  }

  .hero-stage {
    min-height: 680px;
    background-position:
      center,
      center,
      72% center;
  }

  .hero-copy {
    width: min(62vw, 760px);
    margin-left: clamp(28px, 4vw, 56px);
    padding: 64px 0;
  }
}

@media (max-width: 820px) {
  .hero-stage {
    min-height: auto;
    padding-bottom: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0 28%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0.08) 100%),
      url("assets/generated/hero-market-ai.png");
    background-size: cover, cover;
    background-position: center, 74% center;
  }

  .hero-stage::before,
  .hero-stage::after {
    display: none;
  }

  .hero-copy {
    max-width: none;
    width: min(68vw, 760px);
    margin-left: 0;
    padding: 48px 0 56px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 7vw, 3.9rem);
    line-height: 1.04;
  }

  .hero-line {
    display: block;
  }

}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 620px;
  }

  .hero-copy {
    width: min(74vw, 760px);
    padding: 32px 0 40px;
  }

  .hero-meta-row {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.2rem, 6.8vw, 3.1rem);
    line-height: 1.06;
  }

}

@media (max-width: 1100px) {
  .funnel-copy h2 {
    font-size: 2.7rem;
  }

  .funnel-visual {
    min-height: 640px;
  }

  .funnel-layers {
    left: 150px;
    width: min(520px, 58%);
  }

  .funnel-left-axis {
    left: 12px;
  }

  .funnel-ai-stream {
    right: 44px;
  }

  .ai-core {
    right: 86px;
  }

  .ai-actions {
    right: 22px;
  }

  .human-focus-label {
    left: 300px;
  }
}

@media (max-width: 820px) {
  .funnel-copy h2 {
    font-size: 2.15rem;
    line-height: 1.28;
  }

  .funnel-visual {
    min-height: 860px;
  }

  .funnel-visual::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0 42%, rgba(255, 255, 255, 0.66) 70%, rgba(255, 255, 255, 0.24) 100%);
  }

  .funnel-kicker {
    top: 20px;
    max-width: calc(100% - 32px);
    white-space: normal;
    text-align: center;
  }

  .funnel-left-axis,
  .funnel-rings {
    display: none;
  }

  .funnel-layers {
    left: 18px;
    right: 18px;
    top: 94px;
    width: auto;
    gap: 14px;
  }

  .funnel-layers li {
    min-height: 106px;
    padding: 16px 24px;
    grid-template-columns: 58px 1fr;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  }

  .funnel-layers span {
    font-size: 1rem;
  }

  .funnel-ai-stream {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 248px;
    min-width: 220px;
    transform: translateX(-50%);
  }

  .funnel-ai-stream::before,
  .funnel-ai-stream::after {
    display: none;
  }

  .ai-core {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 92px;
    width: 128px;
    height: 128px;
    transform: translateX(-50%);
  }

  .ai-actions {
    display: none;
  }

  .human-focus-label {
    left: 18px;
    right: 18px;
    bottom: 32px;
    text-align: center;
    font-size: 1.05rem;
  }

  .funnel-conclusion {
    font-size: 1.08rem;
    text-align: left;
    white-space: normal;
  }
}

/* Funnel role split: rectangular, text-first diagram */
.funnel-visual {
  display: grid;
  grid-template-columns: 190px minmax(360px, 1fr) 340px;
  grid-template-rows: 1fr;
  gap: 26px 28px;
  min-height: auto;
  padding: 34px 32px 32px;
}

.funnel-visual::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 209, 209, 0.08), transparent 18%),
    radial-gradient(circle at 84% 76%, rgba(255, 107, 142, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(247, 252, 255, 0.72));
}

.funnel-visual::after {
  right: -120px;
  top: auto;
  bottom: -104px;
  width: 420px;
  height: 180px;
  border-width: 14px;
  opacity: 0.65;
}

.role-column,
.funnel-layers,
.funnel-actions {
  position: relative;
  z-index: 3;
}

.role-column {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-rows: minmax(190px, 1fr) 44px minmax(190px, 1fr);
  align-items: center;
}

.role-node {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  color: var(--primary);
}

.role-node strong {
  font-size: 1.28rem;
  line-height: 1.35;
}

.role-node span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.role-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: var(--primary);
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 48%, rgba(224, 245, 255, 0.82) 49% 100%);
  border: 1px solid rgba(0, 58, 216, 0.16);
  box-shadow:
    0 0 0 12px rgba(0, 58, 216, 0.035),
    0 18px 40px rgba(0, 58, 216, 0.12);
}

.role-mark img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.role-human .role-mark {
  position: relative;
  color: #5748d9;
  font-size: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.94) 0 48%, rgba(235, 231, 255, 0.86) 49% 100%);
}

.role-human .role-mark::before,
.role-human .role-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #5748d9;
}

.role-human .role-mark::before {
  top: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.role-human .role-mark::after {
  bottom: 28px;
  width: 58px;
  height: 34px;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
}

.role-human .role-mark::before,
.role-human .role-mark::after {
  display: none;
}

.role-divider {
  width: 2px;
  height: 100%;
  justify-self: center;
  background: linear-gradient(180deg, rgba(0, 58, 216, 0.1), rgba(0, 209, 209, 0.36), rgba(87, 72, 217, 0.28));
}

.role-divider::before,
.role-divider::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: currentColor;
  color: rgba(0, 126, 255, 0.56);
}

.role-divider::after {
  margin-top: calc(44px - 18px);
  color: rgba(87, 72, 217, 0.56);
}

.funnel-layers {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  display: grid;
  gap: 14px;
}

.funnel-layers li {
  position: relative;
  z-index: 3;
  min-height: 112px;
  padding: 18px 24px;
  grid-template-columns: 64px minmax(0, 1fr);
  clip-path: none;
  border-radius: 0;
  border: 0;
  filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 24px rgba(8, 26, 72, 0.055);
}

.funnel-layers .layer-new {
  --layer-bg: linear-gradient(180deg, #e0f1ff 0%, #cae6ff 100%);
  --layer-border: transparent;
}

.funnel-layers .layer-low {
  --layer-bg: linear-gradient(180deg, #d9f8fa 0%, #bdf0f5 100%);
  --layer-border: transparent;
}

.funnel-layers .layer-high {
  --layer-bg: linear-gradient(180deg, #e9e4ff 0%, #d8d0ff 100%);
  --layer-border: transparent;
}

.funnel-layers .layer-existing {
  --layer-bg: linear-gradient(180deg, #dfd9ff 0%, #cec7ff 100%);
  --layer-border: transparent;
}

.funnel-layers li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 58, 216, 0.18), rgba(0, 209, 209, 0.48));
}

.funnel-layers li:last-child::after {
  display: none;
}

.funnel-layers span {
  font-size: clamp(1.05rem, 1.5vw, 1.42rem);
  letter-spacing: 0.01em;
}

.funnel-layers em {
  font-size: 0.94rem;
}

.funnel-layer i {
  width: 54px;
  height: 54px;
}

.funnel-layer i img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.funnel-layer i::before,
.funnel-layer i::after {
  display: none;
}

.funnel-actions {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-rows: repeat(4, minmax(112px, 1fr));
  gap: 14px;
}

.action-group {
  --action-color: var(--primary);
  display: grid;
  align-content: center;
  padding: 6px 0 6px 24px;
  border-left: 2px solid var(--action-color);
}

.action-low {
  --action-color: var(--secondary);
}

.action-high,
.action-existing {
  --action-color: #6758e8;
}

.action-group ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-group li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.action-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--action-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--action-color) 12%, transparent);
}

@media (max-width: 1080px) {
  .funnel-visual {
    grid-template-columns: 160px minmax(320px, 1fr) 290px;
    gap: 22px;
    padding-inline: 24px;
  }

  .action-group li {
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  .funnel-visual {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: auto;
    padding: 24px 16px;
    gap: 14px;
  }

  .funnel-visual::before {
    opacity: 0.42;
  }

  .funnel-visual::after {
    opacity: 0.28;
  }

  .funnel-actions {
    display: none;
  }

  .role-column {
    display: contents;
  }

  .role-mark {
    width: 82px;
    height: 82px;
    font-size: 2.8rem;
  }

  .role-human .role-mark::before {
    top: 21px;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .role-human .role-mark::after {
    bottom: 22px;
    width: 42px;
    height: 25px;
    border-width: 3px;
    border-bottom: 0;
  }

  .role-node strong {
    font-size: 1rem;
  }

  .role-node span {
    color: #516078;
    font-size: 0.78rem;
  }

  .funnel-layers {
    display: contents;
  }

  .role-ai {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 4px;
  }

  .role-human {
    grid-column: 1;
    grid-row: 4;
    margin: 14px 0 4px;
  }

  .role-divider {
    display: none;
  }

  .funnel-layers .layer-new {
    grid-column: 1;
    grid-row: 2;
  }

  .funnel-layers .layer-low {
    grid-column: 1;
    grid-row: 3;
  }

  .funnel-layers .layer-high {
    grid-column: 1;
    grid-row: 5;
  }

  .funnel-layers .layer-existing {
    grid-column: 1;
    grid-row: 6;
  }

  .funnel-layers li {
    min-height: 112px;
    padding: 16px 18px;
    grid-template-columns: 48px minmax(0, 1fr);
    border-radius: 0;
    border: 0;
    color: var(--ink);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      0 10px 22px rgba(8, 26, 72, 0.07);
  }

  .funnel-layer i {
    background: rgba(255, 255, 255, 0.52);
    width: 42px;
    height: 42px;
  }

  .funnel-layers span {
    font-size: 1rem;
  }

  .funnel-layers em {
    color: #34445f;
    font-size: 0.82rem;
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .funnel-visual {
    padding: 22px 12px;
    gap: 12px;
  }

  .role-mark {
    width: 66px;
    height: 66px;
    font-size: 2.2rem;
  }

  .role-node {
    gap: 6px;
  }

  .role-node strong {
    font-size: 0.88rem;
  }

  .role-node span {
    max-width: 7em;
    color: #465774;
    font-size: 0.72rem;
  }

  .funnel-layers li {
    min-height: 104px;
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .funnel-layer i {
    display: grid;
    width: 36px;
    height: 36px;
  }
}

/* Section 3-9 rebuild: diagram-first LP flow */
.acquisition-section,
.growth-section,
.automation-section,
.agent-flow-section,
.operating-section,
.safety-section,
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.acquisition-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 209, 209, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.acquisition-head {
  max-width: 980px;
}

.acquisition-compare {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  isolation: isolate;
}

.acquisition-compare::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(0, 209, 209, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(0, 58, 216, 0.14), rgba(0, 209, 209, 0.24));
}

.acquisition-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 188px 1fr;
  min-height: 560px;
  padding: 34px;
}

.inbound-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 255, 0.94));
}

.outbound-panel {
  background:
    linear-gradient(180deg, rgba(232, 252, 255, 0.98), rgba(209, 244, 249, 0.96));
}

.outbound-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(0, 58, 216, 0.08) 64% 64.5%, transparent 65%),
    radial-gradient(circle at 84% 24%, rgba(0, 58, 216, 0.14), transparent 16%);
  pointer-events: none;
}

.panel-visual {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.inbound-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(224, 241, 255, 0.66));
}

.inbound-visual span {
  position: absolute;
  left: calc(18% + var(--i, 0) * 24%);
  bottom: 28px;
  width: 88px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(194, 224, 255, 0.58));
  box-shadow: 0 18px 36px rgba(0, 58, 216, 0.08);
}

.inbound-visual span:nth-child(1) {
  --i: 0;
  height: 48px;
}

.inbound-visual span:nth-child(2) {
  --i: 1;
  height: 86px;
}

.inbound-visual span:nth-child(3) {
  --i: 2;
  height: 118px;
}

.outbound-visual {
  background:
    repeating-linear-gradient(90deg, rgba(0, 58, 216, 0.08) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, rgba(0, 209, 209, 0.2), rgba(255, 255, 255, 0.56));
}

.outbound-visual span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  transform: rotate(45deg);
}

.outbound-visual span:nth-child(1) {
  left: 22%;
  top: 38%;
}

.outbound-visual span:nth-child(2) {
  left: 48%;
  top: 22%;
  background: var(--secondary);
}

.outbound-visual span:nth-child(3) {
  right: 18%;
  bottom: 28%;
  background: var(--accent);
}

.outbound-visual::after {
  content: "";
  position: absolute;
  left: 20%;
  top: 44%;
  width: 66%;
  border-top: 3px solid rgba(0, 58, 216, 0.48);
  transform: rotate(-12deg);
}

.panel-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 28px;
}

.panel-label {
  width: fit-content;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.panel-copy h3,
.growth-step h3,
.automation-contrast h3,
.operating-compare h3 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.34;
}

.panel-copy ul,
.automation-contrast ul,
.operating-compare ul,
.cta-support,
.guardrails,
.cta-checkpoints ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-copy li,
.automation-contrast li,
.operating-compare li,
.guardrails li,
.cta-support li,
.cta-checkpoints li {
  position: relative;
  padding-left: 20px;
  line-height: 1.75;
}

.panel-copy li::before,
.automation-contrast li::before,
.operating-compare li::before,
.guardrails li::before,
.cta-support li::before,
.cta-checkpoints li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--primary);
}

.difficulty-tag {
  width: fit-content;
  padding: 7px 12px;
  color: #0b318f;
  background: rgba(0, 58, 216, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.outbound-panel .difficulty-tag {
  color: #00626b;
  background: rgba(0, 209, 209, 0.18);
}

.panel-copy p,
.growth-step p,
.agent-step p,
.operating-compare li,
.guardrails li,
.cta-checkpoints li {
  color: var(--muted);
}

.section-thesis {
  position: relative;
  margin: 34px 0 0;
  padding: 24px 32px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 58, 216, 0.08), rgba(0, 209, 209, 0.16), rgba(255, 255, 255, 0));
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.65;
}

.section-thesis::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.growth-section {
  background:
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 46%, #f8fbff 100%);
}

.growth-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.growth-roadmap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 58, 216, 0.18), rgba(0, 209, 209, 0.58), rgba(255, 107, 142, 0.35));
}

.growth-step {
  position: relative;
  min-height: 460px;
  padding: 28px 26px 30px;
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(8, 26, 72, 0.06);
}

.step-blank {
  background:
    linear-gradient(180deg, #ffffff, #f5f9ff);
}

.step-signal {
  background:
    linear-gradient(180deg, #eaffff, #d7f7fb);
}

.step-expand {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 107, 142, 0.16), transparent 28%),
    linear-gradient(180deg, #eef5ff, #f8f0ff);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 800;
}

.step-figure {
  position: relative;
  height: 118px;
  margin: 28px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
}

.step-figure::before,
.step-figure::after {
  content: "";
  position: absolute;
}

.step-blank .step-figure::before {
  left: 18%;
  bottom: 26px;
  width: 60%;
  height: 16px;
  background: rgba(0, 58, 216, 0.1);
}

.step-blank .step-figure::after {
  left: 24%;
  bottom: 52px;
  width: 48%;
  height: 16px;
  background: rgba(0, 58, 216, 0.06);
}

.step-signal .step-figure::before {
  left: 12%;
  right: 12%;
  bottom: 22px;
  height: 60px;
  background:
    radial-gradient(circle at 20% 70%, var(--primary) 0 5px, transparent 6px),
    radial-gradient(circle at 48% 38%, var(--secondary) 0 6px, transparent 7px),
    radial-gradient(circle at 76% 52%, var(--accent) 0 5px, transparent 6px);
}

.step-signal .step-figure::after {
  left: 18%;
  right: 18%;
  top: 58px;
  border-top: 2px solid rgba(0, 58, 216, 0.34);
  transform: rotate(-8deg);
}

.step-expand .step-figure::before {
  left: 18%;
  bottom: 22px;
  width: 66%;
  height: 70px;
  background:
    linear-gradient(90deg, rgba(0, 58, 216, 0.18) 0 18%, transparent 18% 24%, rgba(0, 209, 209, 0.22) 24% 52%, transparent 52% 58%, rgba(255, 107, 142, 0.22) 58% 100%);
}

.step-expand .step-figure::after {
  left: 20%;
  top: 20px;
  width: 62%;
  height: 62%;
  border: 2px solid rgba(0, 58, 216, 0.22);
}

.growth-thesis {
  background:
    linear-gradient(90deg, rgba(0, 58, 216, 0.92), rgba(0, 209, 209, 0.78));
  color: var(--white);
}

.growth-thesis::before {
  background: rgba(255, 255, 255, 0.72);
}

.automation-section {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 209, 209, 0.28), transparent 24%),
    radial-gradient(circle at 22% 24%, rgba(0, 58, 216, 0.2), transparent 20%),
    linear-gradient(180deg, #07101f 0%, #071727 100%);
}

.automation-section .section-head {
  max-width: 1120px;
  text-align: center;
}

.automation-section .section-head h2,
.automation-section .section-head p {
  color: var(--white);
}

.automation-section .section-head p {
  max-width: 1060px;
  margin-inline: auto;
}

.automation-section .section-head p strong {
  display: inline-block;
  margin-top: 10px;
  color: #67e8ff;
  font-size: 1.08em;
  font-weight: 800;
  text-shadow: 0 0 24px rgba(0, 209, 209, 0.24);
}

.risk-emphasis {
  display: inline-block;
  margin: 0 0.06em;
  background: linear-gradient(110deg, #ff6b4a 0%, #ff9a3d 45%, #ff4d7d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 42px rgba(255, 107, 74, 0.24);
}

.automation-contrast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 50px;
}

.blast-side,
.sales-ai-side {
  position: relative;
  min-height: 560px;
  padding: 30px;
  overflow: hidden;
}

.blast-side {
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 107, 74, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 28px 80px rgba(0, 0, 0, 0.22);
}

.sales-ai-side {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(135, 233, 233, 0.68), transparent 24%),
    radial-gradient(circle at 14% 86%, rgba(0, 58, 216, 0.18), transparent 28%),
    linear-gradient(180deg, #f8ffff 0%, #e6fbff 48%, #d9f4ff 100%);
  border: 1px solid rgba(103, 232, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(0, 209, 209, 0.22),
    0 32px 80px rgba(0, 209, 209, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.contrast-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.contrast-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
}

.mark-negative {
  color: #ff7464;
  background: rgba(255, 107, 74, 0.1);
  border: 2px solid rgba(255, 107, 74, 0.52);
  box-shadow: 0 0 26px rgba(255, 107, 74, 0.16);
}

.mark-positive {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 34px rgba(0, 209, 209, 0.36);
}

.blast-side h3,
.blast-side li {
  color: var(--white);
}

.sales-ai-side h3,
.sales-ai-side li {
  color: var(--ink);
}

.contrast-card-head p {
  margin: 6px 0 0;
  color: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
  opacity: 0.78;
}

.contrast-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.contrast-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contrast-points {
  position: relative;
  z-index: 1;
}

.contrast-points li {
  padding-left: 32px;
  font-weight: 700;
}

.contrast-points li::before {
  top: 0.42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
}

.negative-points li::before {
  content: "×";
  background: linear-gradient(135deg, #ff5f4a, #ff9a3d);
}

.positive-points li {
  color: #203049;
}

.positive-points li::before {
  content: "✓";
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contrast-divider {
  align-self: center;
  display: grid;
  place-items: center;
  min-height: 108px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.automation-statement {
  max-width: none;
  margin: 42px auto 0;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.35rem, 2.05vw, 2.15rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
}

.automation-statement span {
  color: #4edfff;
  text-shadow: 0 0 28px rgba(0, 209, 209, 0.36);
}

.agent-flow-section {
  background:
    radial-gradient(circle at 92% 7%, rgba(0, 92, 255, 0.1), transparent 17%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.agent-flow-container {
  max-width: 1360px;
}

.agent-flow-section .section-head {
  max-width: 980px;
}

.agent-flow-section .section-head h2 span {
  display: block;
}

.agent-flow-section .section-head h2 .agent-heading-accent {
  display: inline-block;
  background: linear-gradient(110deg, var(--primary), #0877ff 45%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 38px rgba(0, 58, 216, 0.18);
}

.agent-flow-section .section-head h2 {
  font-size: clamp(2rem, 3.05vw, 3.35rem);
  letter-spacing: -0.035em;
}

.agent-flow-section .section-head p {
  max-width: 900px;
  color: #314057;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.agent-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.agent-process::before {
  display: none;
}

.agent-step {
  --step-bg: #fbfdff;
  --step-ink: var(--ink);
  --step-icon-bg: rgba(255, 255, 255, 0.5);
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 14px;
  min-height: 388px;
  padding: 24px 20px 28px;
  border: 1px solid rgba(0, 92, 255, 0.12);
  border-radius: 8px;
  background: var(--step-bg);
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.64),
    0 18px 34px rgba(8, 26, 72, 0.06);
}

.agent-step:nth-child(1) {
  --step-bg: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.agent-step:nth-child(2) {
  --step-bg: linear-gradient(180deg, #f6fbff 0%, #edf8ff 100%);
}

.agent-step:nth-child(3) {
  --step-bg: linear-gradient(180deg, #eef9ff 0%, #dff3ff 100%);
}

.agent-step:nth-child(4) {
  --step-bg: linear-gradient(180deg, #e5f5ff 0%, #d1edff 100%);
}

.agent-step:nth-child(5) {
  --step-bg: linear-gradient(180deg, #cdeaff 0%, #a8d8ff 100%);
}

.agent-step:nth-child(6) {
  --step-bg: linear-gradient(180deg, #2d7cff 0%, #005fe8 100%);
  --step-ink: #ffffff;
  --step-icon-bg: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 46px rgba(0, 92, 255, 0.24);
}

.agent-step-no {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.agent-step:nth-child(6) .agent-step-no {
  color: rgba(255, 255, 255, 0.86);
}

.agent-step h3 {
  margin: 0 0 8px;
  color: var(--step-ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  line-height: 1.45;
}

.agent-step-icon {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: min(100%, 128px);
  height: 128px;
  margin: 0 auto 8px;
  border: 1px solid rgba(0, 92, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 209, 209, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), var(--step-icon-bg));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.agent-step-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.agent-step:nth-child(6) .agent-step-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.agent-step p {
  margin: 0;
  color: #34445f;
  font-size: 0.94rem;
  line-height: 1.78;
}

.agent-step:nth-child(6) p {
  color: rgba(255, 255, 255, 0.86);
}

.operating-section {
  background:
    linear-gradient(180deg, rgba(243, 248, 255, 0.86) 0%, rgba(255, 255, 255, 0.98) 54%, #f7fbff 100%);
}

.operating-container {
  max-width: 1320px;
}

.operating-head {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.operating-head h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  letter-spacing: -0.035em;
}

.operating-head h2 span {
  color: var(--primary);
}

.operating-head p {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  color: #1f2b3d;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 2;
}

.operating-compare {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.86fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin-top: 58px;
}

.operating-card {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 2.8vw, 38px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(18, 46, 98, 0.08);
  overflow: hidden;
}

.operating-before {
  border: 1px solid rgba(244, 67, 54, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 246, 0.7));
}

.operating-after {
  border: 1px solid rgba(0, 92, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.88));
}

.operating-card h3 {
  margin-bottom: 26px;
  text-align: center;
}

.operating-before h3 {
  color: #f04438;
}

.operating-after h3 {
  color: #1478ff;
}

.operating-card ul {
  gap: 0;
}

.operating-card li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 0 14px 52px;
  border-top: 1px dashed rgba(111, 130, 160, 0.22);
  color: var(--ink);
  font-size: clamp(0.94rem, 1.08vw, 1.08rem);
  font-weight: 700;
  line-height: 1.6;
}

.operating-card li:first-child {
  border-top: 0;
}

.operating-card li::before {
  top: 50%;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.operating-before li::before {
  content: "×";
  background: linear-gradient(135deg, #ff5a4f, #f04438);
}

.operating-after li::before {
  content: "✓";
  background: linear-gradient(135deg, #1478ff, #00d1d1);
}

.operating-cycle {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.operating-cycle img {
  position: relative;
  z-index: 1;
  width: min(100%, 370px);
  height: auto;
  filter: drop-shadow(0 22px 42px rgba(0, 58, 216, 0.14));
}

.operating-arrow {
  position: absolute;
  top: 50%;
  width: clamp(42px, 5vw, 72px);
  height: clamp(34px, 4vw, 50px);
  transform: translateY(-50%);
  opacity: 0.72;
}

.operating-arrow::before,
.operating-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.operating-arrow::before {
  left: 0;
  right: 14px;
  height: 18px;
  background: linear-gradient(90deg, transparent, rgba(20, 120, 255, 0.42));
}

.operating-arrow::after {
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 22px solid rgba(20, 120, 255, 0.46);
}

.operating-arrow-left {
  left: max(-32px, -5vw);
}

.operating-arrow-left::before {
  background: linear-gradient(90deg, transparent, rgba(244, 67, 54, 0.32));
}

.operating-arrow-left::after {
  border-left-color: rgba(244, 67, 54, 0.34);
}

.operating-arrow-right {
  right: max(-32px, -5vw);
}

.operating-thesis {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  border: 1px solid rgba(0, 92, 255, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 54px rgba(18, 46, 98, 0.08);
}

.operating-thesis::before {
  display: none;
}

.operating-thesis p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 700;
  line-height: 1.8;
}

.operating-thesis strong {
  color: var(--primary);
  font-size: 1.12em;
}

.operating-thesis-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1478ff);
}

.operating-thesis-icon::before {
  content: "";
  width: 36px;
  height: 36px;
  background: var(--white);
  clip-path: polygon(8% 82%, 8% 58%, 24% 58%, 24% 82%, 38% 82%, 38% 42%, 54% 42%, 54% 82%, 68% 82%, 68% 26%, 84% 26%, 84% 82%, 94% 82%, 94% 94%, 8% 94%);
}

.safety-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: center;
}

.guardrail-map {
  position: relative;
  min-height: 640px;
}

.guard-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  color: var(--primary);
  background:
    radial-gradient(circle, #ffffff 0 54%, rgba(0, 209, 209, 0.12) 55% 100%);
  box-shadow:
    0 0 0 18px rgba(0, 58, 216, 0.04),
    0 0 0 42px rgba(0, 209, 209, 0.06);
}

.guard-core span {
  font-size: 3.2rem;
  font-weight: 800;
}

.guard-core strong {
  font-size: 1rem;
}

.guardrail-map::before,
.guardrail-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 58, 216, 0.14);
}

.guardrail-map::before {
  width: 74%;
  height: 74%;
}

.guardrail-map::after {
  width: 92%;
  height: 92%;
  border-color: rgba(0, 209, 209, 0.18);
}

.guardrails {
  position: absolute;
  inset: 0;
}

.guardrails li {
  position: absolute;
  width: 210px;
  padding: 14px 16px 14px 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(8, 26, 72, 0.06);
}

.guardrails li:nth-child(1) {
  left: 6%;
  top: 8%;
}

.guardrails li:nth-child(2) {
  right: 2%;
  top: 14%;
}

.guardrails li:nth-child(3) {
  left: 0;
  top: 48%;
}

.guardrails li:nth-child(4) {
  right: 0;
  top: 52%;
}

.guardrails li:nth-child(5) {
  left: 10%;
  bottom: 7%;
}

.guardrails li:nth-child(6) {
  right: 8%;
  bottom: 8%;
}

.safety-thesis {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 32px;
  color: var(--ink);
  background: #ffffff;
  border-left: 5px solid var(--secondary);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.55;
}

.final-cta-section {
  padding: 0;
  background: #07101f;
}

.final-cta-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 48px;
  align-items: stretch;
  padding: 80px 54px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 209, 209, 0.28), transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(0, 58, 216, 0.35), transparent 30%),
    linear-gradient(135deg, #07101f 0%, #0b1f44 54%, #006c91 100%);
}

.final-cta-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 42%);
  pointer-events: none;
}

.final-cta-layout .cta-copy,
.cta-checkpoints {
  position: relative;
  z-index: 1;
}

.final-cta-layout .cta-copy h2,
.final-cta-layout .cta-copy p {
  color: var(--white);
}

.final-cta-layout .cta-copy h2 {
  max-width: 900px;
}

.final-cta-layout .cta-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-support li::before {
  background: var(--secondary);
}

.final-cta-layout .cta-links {
  margin-top: 34px;
}

.final-cta-layout .button-primary {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 22px 46px rgba(0, 209, 209, 0.22);
}

.simple-cta-layout {
  display: block;
  max-width: 1120px;
  text-align: center;
}

.simple-cta-layout .cta-copy h2,
.simple-cta-layout .cta-copy p {
  margin-left: auto;
  margin-right: auto;
}

.simple-cta-layout .cta-copy h2 {
  max-width: 760px;
}

.simple-cta-layout .cta-copy p {
  max-width: 720px;
}

.simple-cta-layout .cta-links {
  justify-content: center;
}

.cta-checkpoints {
  display: grid;
  align-content: center;
  gap: 26px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-checkpoints span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-checkpoints ol {
  counter-reset: cta;
}

.cta-checkpoints li {
  counter-increment: cta;
  padding: 18px 0 18px 52px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.cta-checkpoints li::before {
  content: counter(cta, decimal-leading-zero);
  top: 18px;
  width: auto;
  height: auto;
  color: var(--secondary);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .acquisition-compare,
  .automation-contrast,
  .operating-compare,
  .safety-layout,
  .final-cta-layout {
    grid-template-columns: 1fr;
  }

  .automation-contrast {
    gap: 0;
  }

  .operating-compare {
    gap: 26px;
  }

  .operating-cycle {
    order: -1;
    min-height: auto;
  }

  .operating-cycle img {
    width: min(78vw, 420px);
  }

  .operating-arrow {
    display: none;
  }

  .contrast-divider {
    min-height: auto;
    padding: 18px;
    writing-mode: horizontal-tb;
  }

  .agent-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .agent-process::before {
    display: none;
  }

  .agent-step:nth-child(even) {
    margin-top: 0;
  }

  .cta-checkpoints {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 30px;
  }
}

@media (max-width: 820px) {
  .acquisition-panel,
  .blast-side,
  .sales-ai-side,
  .operating-before,
  .operating-after {
    min-height: auto;
    padding: 26px 20px;
  }

  .acquisition-panel {
    grid-template-rows: 132px 1fr;
  }

  .operating-head {
    text-align: left;
  }

  .operating-head p br,
  .operating-thesis p br {
    display: none;
  }

  .operating-thesis {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .operating-thesis-icon {
    justify-self: center;
  }

  .growth-roadmap,
  .agent-process {
    grid-template-columns: 1fr;
  }

  .growth-roadmap::before {
    left: 24px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .growth-step {
    min-height: auto;
    padding: 24px 22px 26px 72px;
  }

  .step-number {
    position: absolute;
    left: 16px;
    top: 24px;
  }

  .step-figure {
    height: 92px;
  }

  .automation-statement {
    text-align: left;
    white-space: normal;
  }

  .agent-step {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr;
  }

  .agent-step-icon {
    grid-column: auto;
    grid-row: auto;
    width: min(128px, 52vw);
    height: min(128px, 52vw);
  }

  .agent-step-no,
  .agent-step h3,
  .agent-step p {
    grid-column: auto;
  }

  .guardrail-map {
    min-height: auto;
    display: grid;
    gap: 26px;
  }

  .guardrail-map::before,
  .guardrail-map::after {
    display: none;
  }

  .guard-core,
  .guardrails,
  .guardrails li {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
  }

  .guard-core {
    justify-self: center;
    width: 160px;
    height: 160px;
  }

  .guardrails {
    display: grid;
    gap: 12px;
  }

  .final-cta-layout {
    padding: 64px 24px;
  }

  .cta-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section-thesis,
  .safety-thesis {
    padding: 20px;
  }

  .panel-copy h3,
  .growth-step h3,
  .automation-contrast h3,
  .operating-compare h3 {
    font-size: 1.24rem;
  }

  .blocked-diagram,
  .loop-diagram {
    height: 150px;
  }

  .loop-diagram span {
    width: 58px;
    height: 58px;
    font-size: 0.82rem;
  }

  .agent-step {
    padding: 18px 14px;
  }

  .agent-step-icon {
    width: min(116px, 54vw);
    height: min(116px, 54vw);
  }

  .final-cta-layout {
    padding: 54px 18px;
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 255, 0.86)),
    url("assets/generated/faq-background.png") center / cover no-repeat;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34));
  pointer-events: none;
}

.faq-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.faq-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.faq-head h2 {
  margin-bottom: 28px;
}

.faq-list {
  max-width: 980px;
  margin: 54px auto 0;
  border-top: 1px solid rgba(0, 58, 216, 0.16);
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.faq-question {
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 22px 64px 22px 0;
}

.faq-no {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 255, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(0, 95, 232, 0.16),
    0 12px 28px rgba(0, 95, 232, 0.12);
}

.faq-no img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.faq-question span:last-child {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.55;
}

.faq-question::after {
  right: 16px;
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 300;
}

.faq-answer p {
  max-width: 860px;
  padding: 0 64px 0 64px;
  color: #40516c;
  font-size: 1rem;
  line-height: 1.9;
}

.faq-item.active .faq-answer p {
  padding-bottom: 24px;
}

.faq-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: 980px;
  margin: 70px auto 0;
  padding: clamp(30px, 4.4vw, 54px);
  border: 1px solid rgba(0, 95, 232, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 246, 255, 0.95) 48%, rgba(218, 247, 255, 0.9) 100%);
  box-shadow:
    0 28px 70px rgba(0, 95, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.faq-cta::before {
  content: "";
  position: absolute;
  inset: auto -8% -44% 42%;
  z-index: -1;
  height: 180px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 95, 232, 0.07) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(0, 209, 209, 0.08) 0 1px, transparent 1px 22px);
  transform: rotate(-8deg);
  opacity: 0.75;
}

.faq-cta-copy {
  display: grid;
  gap: 14px;
}

.faq-cta p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.faq-cta-copy > span {
  max-width: 640px;
  color: #40516c;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 600;
  line-height: 1.8;
}

.faq-cta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.faq-cta li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 95, 232, 0.14);
  border-radius: 999px;
  color: #1646b8;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 95, 232, 0.08);
}

.faq-cta .faq-cta-button {
  min-width: 300px;
  min-height: 64px;
  justify-content: center;
  gap: 12px;
  padding: 0 34px;
  font-size: 1.02rem;
  box-shadow:
    0 22px 46px rgba(0, 95, 232, 0.24),
    0 0 0 8px rgba(0, 209, 209, 0.08);
}

.faq-cta .faq-cta-button span:last-child {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 820px) {
  .faq-section {
    background-position: 62% center;
  }

  .faq-list {
    margin-top: 34px;
  }

  .faq-question {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 48px 20px 0;
  }

  .faq-answer p {
    padding-left: 56px;
    padding-right: 16px;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 20px;
    border-radius: 22px;
    text-align: left;
  }

  .faq-cta ul {
    justify-content: flex-start;
  }

  .faq-cta .faq-cta-button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .faq-question {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding-right: 42px;
  }

  .faq-no {
    width: 44px;
    height: 44px;
  }

  .faq-answer p {
    padding-left: 56px;
    padding-right: 0;
  }
}
