@charset "UTF-8";
html {
  font-size: clamp(16px, 1.2vw, 20px);
}

body {
  margin: 0;
  background-color: #dfdfdf;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN',
    'Hiragino Mincho Pro', 'MS PMincho', 'MS Mincho', serif;
}

.lp {
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

.lp-section {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3.2vh, 30px) clamp(14px, 2.2vw, 22px);
  box-sizing: border-box;
  scroll-snap-align: start;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-section.visible .section-inner > * {
  opacity: 1;
  transform: translateY(0);
}
.lp-section.visible .section-inner > * * {
  opacity: 1;
}

.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-inner > * * {
  opacity: 0;
  transition: opacity 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 600;
  margin-bottom: clamp(1.1rem, 2.8vh, 1.6rem);
  letter-spacing: 0.05em;
}

/* Scene 0 */
.scene0 {
  background: #0a0a0a;
  color: #fff;
}
.scene0 .section-inner.scene0-inner {
  position: relative;
}
.scene0 .scene0-stack {
  width: 100%;
}
.scene0 .main-logo {
  font-size: clamp(0.7rem, 1.35vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: clamp(0.85rem, 2.2vh, 1.35rem);
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.85s cubic-bezier(0.16, 1, 0.3, 1), color 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}
.scene0 .diagnosis {
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.scene0 .scene0-diagnosis-heading {
  text-align: center;
  margin-bottom: clamp(1rem, 2.8vh, 1.75rem);
}
.scene0 .diagnosis-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.8vh, 1.1rem);
}
.scene0 .diagnosis-item {
  padding: clamp(1rem, 2.4vh, 1.65rem) clamp(1rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.5rem, 1.2vh, 0.85rem);
  border: 2px solid #ff6a00;
  text-align: left;
}
.scene0 .diagnosis-q {
  font-weight: 800;
  opacity: 1;
  color: #0a0a0a;
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: #ff6a00;
  line-height: 1.1;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  letter-spacing: 0.06em;
}
.scene0 .diagnosis-text {
  font-size: clamp(1.35rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.03em;
  color: #ffffff;
}
.scene0 .diagnosis-summary {
  margin: clamp(1rem, 2.5vh, 1.75rem) 0 0;
  padding: clamp(0.85rem, 2vh, 1.25rem) clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}
.scene0 .diagnosis-summary-emphasis {
  font-weight: 800;
  color: #ff6a00;
}
.scene0.scene0-intro-active .main-logo {
  transform: translateY(clamp(170px, 22vh, 230px)) scale(3.05);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.98);
  z-index: 5;
}
.scene0.scene0-intro-active .diagnosis {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}
.scene0.scene0-intro-done .diagnosis {
  opacity: 1;
  transform: scale(1);
}

/* Scene 1 */
.scene1 {
  /* 純白より目に優しいスレート系（まぶしさ軽減） */
  background: linear-gradient(180deg, #e8ecf4 0%, #dfe6f0 50%, #e4eaf3 100%);
  color: #152032;
}
.scene1 .section-inner {
  max-width: min(1020px, 100%);
}
.scene1 .section-title {
  color: #b34100;
  font-weight: 1000;
}
.scene1 .shift-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: stretch;
}
.scene1 .shift-left h3,
.scene1 .shift-right h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #9b3600;
}
.scene1 .concept-graph {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto auto;
  column-gap: 0.8rem;
  row-gap: 0.7rem;
  align-items: stretch;
}
.scene1 .concept-graph-axis-y {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  color: #dbe8ff;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-self: center;
}
.scene1 .concept-graph-frame {
  position: relative;
  background: #0a1020;
  min-height: clamp(310px, 46vh, 500px);
  border: 1px solid rgba(179, 65, 0, 0.35);
  overflow: hidden;
  padding: 0.8rem 0.8rem 0.9rem;
  box-shadow: 0 8px 28px rgba(10, 16, 32, 0.35);
}
.scene1 .concept-graph-grid {
  position: absolute;
  inset: 0.8rem;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.5rem;
  pointer-events: none;
}
.scene1 .concept-graph-grid > span {
  border-top: 1px dashed rgba(148, 163, 184, 0.34);
}
.scene1 .concept-graph-svg {
  position: absolute;
  inset: 0.8rem;
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  overflow: visible;
}
.scene1 .concept-polyline {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
}
.scene1 .concept-polyline-seo {
  stroke: #ff8f3a;
}
.scene1 .concept-polyline-eeat {
  stroke: #51b6ff;
}
.scene1 .concept-label {
  position: absolute;
  max-width: 64%;
  font-size: clamp(0.72rem, 0.85vw, 0.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: #f8fafc;
  text-shadow: 0 1px 8px rgba(10, 10, 10, 0.35);
}
.scene1 .concept-label-seo {
  top: 0.85rem;
  left: 1rem;
}
.scene1 .concept-label-eeat {
  left: 1rem;
  bottom: 0.65rem;
  text-align: left;
}
.scene1 .concept-graph-axis-x {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.78rem, 0.88vw, 0.88rem);
  color: #0f1b2d;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.scene1 .concept-note {
  grid-column: 1/-1;
  margin: 0;
  font-size: clamp(0.74rem, 0.82vw, 0.82rem);
  color: #223148;
  font-weight: 600;
  line-height: 1.5;
}
.scene1 .graph-source {
  margin-top: 0.7rem;
  font-size: clamp(0.8rem, 0.88vw, 0.9rem);
  color: #8f3000;
  font-weight: 700;
  line-height: 1.45;
}
.scene1 .graph-source p {
  margin: 0;
}
.scene1 .ai-scan {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: center;
}
.scene1 .market-field {
  position: relative;
  background: #0a1020;
  color: #f1f5f9;
  min-height: clamp(330px, 48vh, 540px);
  padding: 0.7rem;
  border: 1px solid rgba(255, 106, 0, 0.22);
  box-shadow: 0 8px 28px rgba(10, 16, 32, 0.28);
  overflow: hidden;
}
.scene1 .market-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.scene1 .market-dot-gray {
  background: #9aa6bb;
  opacity: 0.88;
}
.scene1 .market-dot-blue {
  background: #2f8dff;
  box-shadow: 0 0 0 4px rgba(47, 141, 255, 0.2);
  animation: blueDotPulse 1.55s ease-in-out infinite;
}
.scene1 .market-dot:nth-child(1) {
  top: 8%;
  left: 9%;
}
.scene1 .market-dot:nth-child(2) {
  top: 14%;
  left: 27%;
}
.scene1 .market-dot:nth-child(3) {
  top: 10%;
  left: 48%;
}
.scene1 .market-dot:nth-child(4) {
  top: 19%;
  left: 65%;
}
.scene1 .market-dot:nth-child(5) {
  top: 12%;
  left: 83%;
}
.scene1 .market-dot:nth-child(6) {
  top: 34%;
  left: 13%;
}
.scene1 .market-dot:nth-child(7) {
  top: 39%;
  left: 31%;
}
.scene1 .market-dot:nth-child(8) {
  top: 30%;
  left: 53%;
}
.scene1 .market-dot:nth-child(9) {
  top: 37%;
  left: 73%;
}
.scene1 .market-dot:nth-child(10) {
  top: 45%;
  left: 86%;
}
.scene1 .market-dot:nth-child(11) {
  top: 56%;
  left: 10%;
}
.scene1 .market-dot:nth-child(12) {
  top: 63%;
  left: 28%;
}
.scene1 .market-dot:nth-child(13) {
  top: 58%;
  left: 47%;
}
.scene1 .market-dot:nth-child(14) {
  top: 67%;
  left: 63%;
}
.scene1 .market-dot:nth-child(15) {
  top: 60%;
  left: 80%;
}
.scene1 .market-dot:nth-child(16) {
  top: 79%;
  left: 18%;
}
.scene1 .market-dot:nth-child(17) {
  top: 86%;
  left: 39%;
}
.scene1 .market-dot:nth-child(18) {
  top: 82%;
  left: 57%;
}
.scene1 .market-dot:nth-child(19) {
  top: 74%;
  left: 79%;
}
.scene1 .scan-magnifier {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.scene1 .scan-magnifier-ring {
  position: absolute;
  inset: 0;
  border: 3px solid #f8fafc;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.2), rgba(10, 16, 32, 0.22)), rgba(10, 16, 32, 0.22);
  backdrop-filter: grayscale(1) contrast(0.9);
}
.scene1 .scan-magnifier-handle {
  position: absolute;
  right: -14px;
  bottom: 6px;
  width: 34px;
  height: 6px;
  background: #f8fafc;
  border-radius: 999px;
  transform: rotate(38deg);
  transform-origin: left center;
}
.scene1 .scan-side-labels {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.scene1 .scan-side-labels p {
  margin: 0;
  font-size: clamp(0.84rem, 0.93vw, 0.95rem);
  color: #10223b;
  font-weight: 800;
  line-height: 1.35;
  padding: 0.35rem 0.5rem;
  border-left: 4px solid #b34100;
  background: rgba(255, 255, 255, 0.45);
}
.scene1 .scan-result {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  font-weight: 900;
  color: #7f2400;
  letter-spacing: 0.03em;
  padding-top: 0.55rem;
}
.scene1 .scan-result::before {
  content: "結果：";
  margin-right: 0.35rem;
  color: #9b3600;
}
.scene1 .scan-side-labels p:first-child {
  transform: translateX(0);
}
.scene1 .scan-side-labels p:last-child {
  transform: translateX(8px);
}
.scene1 .scan-magnifier,
.scene1 .scan-side-labels p,
.scene1 .scan-result,
.scene1 .market-dot,
.scene1 .scan-magnifier-ring,
.scene1 .scan-magnifier-handle {
  will-change: transform, opacity;
}
.scene1 .scan-side-labels p,
.scene1 .scan-result {
  text-shadow: none;
}
.scene1 .scan-result,
.scene1 .scan-side-labels p {
  user-select: none;
}

/* Scene 2 */
.scene2 {
  background: #0a0a0a;
  color: #fff;
}
.scene2 .blackout-content {
  text-align: center;
}
.scene2 .blackout-desc {
  opacity: 1;
  color: #ffffff;
  margin-bottom: 3rem;
}
.scene2 .blackout-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
  color: #ff6a00;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}
.scene2 .blackout-placeholder i {
  font-size: clamp(1.8rem, 2.2vw, 2.25rem);
  color: inherit;
}

/* Scene 3 */
.scene3 {
  background: linear-gradient(180deg, #f7f9fc 0%, #edf3f9 100%);
  color: #0b1220;
}
.scene3 .section-title {
  color: #5f1900;
  font-weight: 1000;
}
.scene3 .flow-wrap {
  display: grid;
  gap: 0.95rem;
}
.scene3 .flow-track {
  display: grid;
  grid-template-columns: repeat(4, 23%);
  gap: 1.5%;
  width: 100%;
}
.scene3 .flow-track-top {
  justify-content: start;
}
.scene3 .flow-track-bottom {
  justify-content: end;
}
.scene3 .cp-box {
  position: relative;
  min-width: 0;
  min-height: clamp(140px, 22vh, 220px);
  padding: 1.05rem 0.75rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scene3 .flow-track .cp-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.52rem;
  width: 0.48rem;
  height: 0.48rem;
  border-top: 2px solid rgba(51, 65, 85, 0.78);
  border-right: 2px solid rgba(51, 65, 85, 0.78);
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}
.scene3 .cp-box.phase-marketing {
  background: linear-gradient(145deg, #2b69db 0%, #1847ab 100%);
}
.scene3 .cp-box.phase-community {
  background: linear-gradient(145deg, #e14698 0%, #bc2b79 100%);
}
.scene3 .cp-id {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.scene3 .cp-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scene 4 */
.scene4 {
  background: #0b1220;
  color: #f8fafc;
  --ring-size: min(clamp(420px, 42vw, 700px), calc(100svh - 190px));
}
.scene4 .section-title {
  color: #ff6a00;
  font-weight: 1000;
  margin-bottom: clamp(0.8rem, 2vh, 1.25rem);
}
.scene4 .support-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  align-items: start;
}
.scene4 .team-ring {
  position: relative;
  width: 100%;
  height: auto;
  max-height: var(--ring-size);
  aspect-ratio: 1/1;
  margin: 0;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.17), rgba(15, 23, 42, 0.65));
  overflow: hidden;
}
.scene4 .team-ring::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(255, 106, 0, 0.48);
  border-radius: 50%;
  z-index: 0;
}
.scene4 .team-ring-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(124px, 13vw, 168px);
  height: clamp(124px, 13vw, 168px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #ff6a00;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  z-index: 3;
}
.scene4 .team-ring-core i {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1;
}
.scene4 .team-ring-core span {
  font-size: clamp(0.74rem, 0.9vw, 0.9rem);
  line-height: 1.25;
  padding: 0 0.5rem;
}
.scene4 .team-node {
  position: absolute;
  width: clamp(118px, 11.6vw, 150px);
  height: clamp(118px, 11.6vw, 150px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.scene4 .team-node strong {
  display: block;
  font-size: clamp(0.92rem, 1.02vw, 1.06rem);
  color: #ffb680;
  line-height: 1.2;
  padding: 0 0.5rem;
}
.scene4 .team-node small {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  color: #e2e8f0;
  line-height: 1.25;
  padding: 0 0.4rem;
}
.scene4 .node-coordinator {
  top: 19%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scene4 .node-creator {
  top: 50%;
  left: 81%;
  transform: translate(-50%, -50%);
}
.scene4 .node-operator {
  top: 81%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scene4 .node-community {
  top: 50%;
  left: 19%;
  transform: translate(-50%, -50%);
}
.scene4 .support-side {
  height: var(--ring-size);
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.75rem, 1.6vh, 1rem);
  min-height: 0;
}
.scene4 .menu-panel,
.scene4 .cost-panel {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.82) 100%);
  padding: 0.72rem 0.75rem;
  overflow-y: auto;
}
.scene4 .menu-panel h3,
.scene4 .cost-panel h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.08rem, 1.3vw, 1.35rem);
  font-weight: 900;
  color: #ffb680;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.scene4 .menu-scroll {
  height: auto;
  overflow: visible;
  padding-right: 0;
}
.scene4 .menu-scroll ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.scene4 .menu-scroll li {
  padding: 0.26rem 0 0.26rem 0.9rem;
  color: #f8fafc;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 700;
  position: relative;
  line-height: 1.35;
}
.scene4 .menu-scroll li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  background: #ff6a00;
}
.scene4 .cost-columns {
  display: block;
}
.scene4 .cost-col {
  background: transparent;
  border: 0;
  padding: 0;
}
.scene4 .cost-col h4 {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #ff8a40;
}
.scene4 .cost-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.scene4 .cost-col li {
  font-size: clamp(1.06rem, 1.3vw, 1.26rem);
  line-height: 1.35;
  color: #f8fafc;
  padding: 0.2rem 0 0.2rem 0.9rem;
  font-weight: 700;
  position: relative;
}
.scene4 .cost-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  background: #ff6a00;
}
.scene4 .cost-sum {
  margin: 0.45rem 0 0;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 900;
  color: #ffb680;
}
.scene4 .cost-footnote {
  margin: 0.55rem 0 0;
  font-size: clamp(0.7rem, 0.74vw, 0.78rem);
  color: #cbd5e1;
}

/* Scene 5 */
.scene5 {
  background: linear-gradient(180deg, #f8fafc 0%, #edf3f9 100%);
  color: #0b1220;
}
.scene5 .section-title {
  color: #8f3000;
}
.scene5 .jcurve-tabs {
  display: flex;
  gap: 0.65rem;
  margin-bottom: clamp(0.85rem, 1.8vh, 1.15rem);
  flex-wrap: wrap;
  justify-content: center;
}
.scene5 .jcurve-tab {
  appearance: none;
  border: 0;
  border-bottom: 2px solid rgba(143, 48, 0, 0.28);
  background: transparent;
  color: #8f3000;
  font: inherit;
  font-weight: 700;
  padding: 0.38rem 0.8rem 0.48rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.scene5 .jcurve-tab.active {
  color: #7a2500;
  font-weight: 900;
  border-bottom-color: #b34100;
  border-bottom-width: 4px;
  transform: translateY(-1px);
}
.scene5 .jcurve-layout {
  display: block;
  margin-bottom: clamp(0.9rem, 1.9vh, 1.25rem);
}
.scene5 .jcurve-board {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 0.55rem 0.65rem;
}
.scene5 .jcurve-axis {
  font-size: clamp(0.82rem, 0.88vw, 0.9rem);
  font-weight: 700;
}
.scene5 .jcurve-axis-y {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #1e293b;
}
.scene5 .jcurve-plot {
  position: relative;
  background: #0a1020;
  border: 1px solid rgba(179, 65, 0, 0.35);
  box-shadow: 0 8px 28px rgba(10, 16, 32, 0.3);
  min-height: clamp(320px, 44vh, 520px);
  overflow: hidden;
  padding: 0.8rem;
}
.scene5 .jcurve-grid {
  position: absolute;
  inset: 0.8rem;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}
.scene5 .jcurve-grid > span {
  border-top: 1px dashed rgba(148, 163, 184, 0.34);
}
.scene5 .jcurve-svg {
  position: absolute;
  inset: 0.8rem;
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
}
.scene5 .jcurve-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.25s ease, stroke-width 0.25s ease, filter 0.25s ease;
}
.scene5 .jcurve-line-flow {
  stroke: #ff4d4d;
}
.scene5 .jcurve-line-stock {
  stroke: #56b6ff;
  filter: drop-shadow(0 0 8px rgba(86, 182, 255, 0.35));
}
.scene5 .jcurve-line.spotlight {
  opacity: 1;
  stroke-width: 4.2;
}
.scene5 .jcurve-line.subdued {
  opacity: 0.28;
  stroke-width: 2.2;
  filter: grayscale(0.2);
}
.scene5 .jcurve-line-flow.spotlight {
  animation: flowLineGlow 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.6));
}
.scene5 .jcurve-line-stock.spotlight {
  animation: stockLineGlow 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 11px rgba(86, 182, 255, 0.65));
}
.scene5 .turning-marker {
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  left: 50%;
  width: 0;
  border-left: 2px dashed rgba(86, 182, 255, 0.7);
}
.scene5 .turning-label {
  position: absolute;
  top: 0.35rem;
  left: 0.5rem;
  font-size: 0.74rem;
  color: #56b6ff;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(10, 16, 32, 0.78);
  padding: 0.16rem 0.45rem;
}
.scene5 .jcurve-label {
  position: absolute;
  font-size: clamp(0.76rem, 0.84vw, 0.84rem);
  font-weight: 700;
  color: #f8fafc;
  background: rgba(10, 16, 32, 0.72);
  padding: 0.14rem 0.45rem;
}
.scene5 .jcurve-label-flow {
  right: 0.9rem;
  top: 1rem;
  border: 1px solid rgba(255, 77, 77, 0.6);
}
.scene5 .jcurve-label-stock {
  right: 0.9rem;
  bottom: 2rem;
  border: 1px solid rgba(86, 182, 255, 0.7);
}
.scene5 .jcurve-label.active {
  animation: labelGlow 1.8s ease-in-out infinite;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}
.scene5 .jcurve-assets {
  position: absolute;
  left: 1rem;
  bottom: 0.95rem;
  margin: 0;
  font-size: clamp(0.72rem, 0.8vw, 0.8rem);
  color: #cfe9ff;
  font-weight: 600;
  line-height: 1.35;
}
.scene5 .jcurve-axis-x {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  color: #1e293b;
  font-size: clamp(0.76rem, 0.84vw, 0.86rem);
  font-weight: 700;
}
.scene5 .profit-copy {
  margin: 0;
  font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  font-weight: 1000;
  color: #0f172a;
  line-height: 1.45;
  text-align: center;
}

/* Scene 6 */
.scene6 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f172a 0%, #1f3354 38%, #4f7bb8 78%, #b7d9ff 100%);
  color: #fff;
}
.scene6::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 13, 25, 0.84), rgba(12, 24, 44, 0.42)), url("./images/shaking_hands.webp") center/cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}
.scene6 .section-inner {
  position: relative;
  z-index: 1;
}
.scene6 .proof-offer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 1.7vw, 1.5rem);
  min-height: min(58vh, 520px);
}
.scene6 .proof-column h4,
.scene6 .offer-column h4 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  color: #e7f3ff;
}
.scene6 .proof-column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}
.scene6 .proof-item {
  padding: 0.08rem 0;
}
.scene6 .proof-meta {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #9fd3ff;
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
}
.scene6 .proof-line {
  margin-top: 0.12rem;
  display: grid;
  gap: 0.08rem;
}
.scene6 .proof-line p {
  margin: 0;
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  line-height: 1.42;
}
.scene6 .proof-line span {
  color: #c7e1ff;
  font-weight: 700;
  margin-right: 0.25rem;
}
.scene6 .proof-story {
  margin: 0.12rem 0 0;
  font-size: clamp(0.88rem, 0.98vw, 0.96rem);
  line-height: 1.4;
  color: #f2f8ff;
}
.scene6 .offer-column {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 0.4rem;
  align-content: start;
}
.scene6 .offer-price-line {
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
}
.scene6 .offer-price {
  display: inline-block;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f8fcff;
  min-width: 5.8em;
}
.scene6 .offer-price-line > span {
  margin-left: 0.2rem;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  color: #d8ecff;
}
.scene6 .offer-fee {
  margin: 0.16rem 0 0;
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  color: #f7fcff;
  line-height: 1.45;
}
.scene6 .offer-fee strong {
  color: #74ffbf;
  font-size: 1.1em;
  font-weight: 900;
}
.scene6 .offer-bonus-line {
  margin: 0.34rem 0 0;
  color: #ffe4a8;
  font-weight: 700;
  font-size: clamp(0.92rem, 1vw, 0.98rem);
  line-height: 1.55;
}
.scene6 .offer-bonus {
  display: inline-block;
  margin-left: 0.28rem;
  min-width: 10.5em;
  color: #f9fbff;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1.06;
  font-weight: 1000;
}
.scene6 .offer-bonus.revealed {
  color: #ffd646;
  animation: bonusBurst 1.1s ease-out both, pulseGlow 1.6s 1s ease-in-out infinite;
  text-shadow: 0 0 14px rgba(255, 214, 70, 0.45), 0 0 28px rgba(255, 182, 44, 0.25);
}
.scene6 .offer-cta {
  margin-top: 0.24rem;
  display: grid;
  justify-items: end;
  gap: 0.18rem;
  align-self: end;
}
.scene6 .cta-button,
.scene6 .cta-sub {
  color: #f6fbff;
  text-decoration: none;
  font-weight: 800;
}
.scene6 .cta-button {
  padding: 0;
  background: none;
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}
.scene6 .cta-sub {
  font-size: 0.98rem;
  opacity: 0.92;
}

@media (max-width: 980px) {
  .shift-content {
    grid-template-columns: 1fr;
  }
  .scene1 .concept-graph-frame {
    min-height: clamp(280px, 42vh, 420px);
  }
  .scene1 .market-field {
    min-height: clamp(290px, 44vh, 440px);
  }
  .scene1 .ai-scan {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .scene1 .scan-side-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
  .scene3 .flow-track {
    grid-template-columns: repeat(2, 46%);
    gap: 2%;
    width: 100%;
  }
  .scene3 .cp-box {
    min-height: clamp(124px, 19vh, 168px);
    padding: 0.85rem 0.65rem;
  }
  .support-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .team-ring {
    width: min(100%, 520px);
    height: min(100vw, 520px);
  }
  .support-side {
    grid-template-rows: auto auto;
  }
  .cost-columns {
    grid-template-columns: 1fr;
  }
  .scene5 .jcurve-layout {
    display: block;
  }
  .scene5 .jcurve-plot {
    min-height: clamp(260px, 42vh, 430px);
  }
  .proof-offer-layout {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp-section,
  .section-inner > * {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .lp-section * {
    animation: none !important;
  }
}
/* Animations - different per section */
.scene0.visible .sub-visual {
  animation: fadeSlideUp 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene0.visible.scene0-intro-done .diagnosis .section-title {
  animation: fadeSlideUp 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene0.visible.scene0-intro-done .diagnosis-item {
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene0.visible.scene0-intro-done .diagnosis-item:nth-child(1) {
  animation-delay: 0.2s;
}

.scene0.visible.scene0-intro-done .diagnosis-item:nth-child(2) {
  animation-delay: 0.35s;
}

.scene0.visible.scene0-intro-done .diagnosis-item:nth-child(3) {
  animation-delay: 0.5s;
}

.scene0.visible.scene0-intro-done .diagnosis-summary {
  animation: fadeSlideUp 0.55s 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .shift-left {
  animation: slideInLeft 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .shift-right {
  animation: slideInRight 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .shift-left h3 {
  animation: fadeSlideUp 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .concept-graph-frame {
  animation: fadeScaleIn 0.7s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .concept-graph-axis-y,
.scene1.visible .concept-graph-axis-x {
  animation: fadeSlideUp 0.55s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .concept-polyline-seo {
  animation: conceptPolylineDraw 0.9s 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .concept-polyline-eeat {
  animation: conceptPolylineDraw 0.9s 0.78s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .concept-label {
  animation: fadeSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .concept-label-seo {
  animation-delay: 0.78s;
}

.scene1.visible .concept-label-eeat {
  animation-delay: 0.92s;
}

.scene1.visible .concept-note {
  animation: fadeSlideUp 0.45s 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .graph-source {
  animation: fadeSlideUp 0.5s 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .shift-right h3 {
  animation: fadeSlideUp 0.6s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .market-field {
  animation: fadeScaleIn 0.72s 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .market-dot-gray {
  animation: dotPulseIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .market-dot:nth-child(1) {
  animation-delay: 0.52s;
}

.scene1.visible .market-dot:nth-child(2) {
  animation-delay: 0.57s;
}

.scene1.visible .market-dot:nth-child(3) {
  animation-delay: 0.62s;
}

.scene1.visible .market-dot:nth-child(4) {
  animation-delay: 0.67s;
}

.scene1.visible .market-dot:nth-child(5) {
  animation-delay: 0.72s;
}

.scene1.visible .market-dot:nth-child(6) {
  animation-delay: 0.77s;
}

.scene1.visible .market-dot:nth-child(7) {
  animation-delay: 0.82s;
}

.scene1.visible .market-dot:nth-child(8) {
  animation-delay: 0.87s;
}

.scene1.visible .market-dot:nth-child(9) {
  animation-delay: 0.92s;
}

.scene1.visible .market-dot:nth-child(10) {
  animation-delay: 0.97s;
}

.scene1.visible .market-dot:nth-child(11) {
  animation-delay: 1.02s;
}

.scene1.visible .market-dot:nth-child(12) {
  animation-delay: 1.07s;
}

.scene1.visible .market-dot:nth-child(13) {
  animation-delay: 1.12s;
}

.scene1.visible .market-dot:nth-child(14) {
  animation-delay: 1.17s;
}

.scene1.visible .market-dot:nth-child(15) {
  animation-delay: 1.22s;
}

.scene1.visible .market-dot:nth-child(16) {
  animation-delay: 1.27s;
}

.scene1.visible .market-dot:nth-child(17) {
  animation-delay: 1.32s;
}

.scene1.visible .market-dot:nth-child(18) {
  animation-delay: 1.37s;
}

.scene1.visible .market-dot:nth-child(19) {
  animation-delay: 1.42s;
}

.scene1.visible .scan-magnifier {
  animation: scanAppear 0.45s 0.95s ease-out both;
}

.scene1.visible .scan-side-labels p {
  animation: fadeSlideUp 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene1.visible .scan-side-labels p:first-child {
  animation-delay: 1.15s;
}

.scene1.visible .scan-side-labels p:last-child {
  animation-delay: 1.3s;
}

.scene1.visible .scan-result {
  animation: fadeSlideUp 0.55s 1.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene2.visible .blackout-placeholder {
  animation: scaleIn 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene2.visible .blackout-desc {
  animation: fadeSlideUp 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene3.visible .flow-wrap {
  animation: fadeSlideUp 0.65s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene3.visible .cp-box {
  animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.38s + var(--cp-index) * 0.08s);
}

.scene4.visible .team-ring {
  animation: fadeScaleIn 0.85s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene4.visible .team-ring-core {
  animation: fadeInOnly 0.5s 0.38s ease both;
}

.scene4.visible .team-node {
  animation: fadeInOnly 0.48s ease both;
}

.scene4.visible .node-coordinator {
  animation-delay: 0.48s;
}

.scene4.visible .node-creator {
  animation-delay: 0.62s;
}

.scene4.visible .node-operator {
  animation-delay: 0.76s;
}

.scene4.visible .node-community {
  animation-delay: 0.9s;
}

.scene4.visible .support-side {
  animation: fadeSlideUp 0.75s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene4.visible .menu-panel h3,
.scene4.visible .cost-panel h3 {
  animation: fadeSlideUp 0.5s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene4.visible .menu-scroll li,
.scene4.visible .cost-col li {
  animation: fadeSlideUp 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene5.visible .jcurve-tabs {
  animation: fadeSlideUp 0.62s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene5.visible .jcurve-layout {
  animation: fadeSlideUp 0.75s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene5.visible .jcurve-line-flow {
  animation: lineDrawIn 0.8s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene5.visible .jcurve-line-stock {
  animation: lineDrawIn 0.95s 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene5.visible .profit-copy {
  animation: fadeSlideUp 0.62s 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene6.visible .proof-column {
  animation: slideInLeft 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene6.visible .offer-column {
  animation: slideInRight 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene6.visible .proof-item,
.scene6.visible .offer-cta {
  animation: fadeSlideUp 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scene6.visible .proof-item:nth-child(2) {
  animation-delay: 0.48s;
}

.scene6.visible .proof-item:nth-child(3) {
  animation-delay: 0.62s;
}

.scene6.visible .proof-item:nth-child(4) {
  animation-delay: 0.76s;
}

.scene6.visible .offer-cta {
  animation-delay: 0.55s;
}

@keyframes bonusBurst {
  0% {
    opacity: 0;
    transform: scale(0.35);
    letter-spacing: 0.2em;
    filter: blur(6px);
  }
  55% {
    opacity: 1;
    transform: scale(1.16);
    letter-spacing: 0.03em;
    filter: blur(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 12px rgba(255, 214, 70, 0.45), 0 0 28px rgba(255, 182, 44, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 214, 70, 0.75), 0 0 36px rgba(255, 182, 44, 0.35);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes conceptPolylineDraw {
  from {
    opacity: 0;
    stroke-dashoffset: 180;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes dotPulseIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blueDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(47, 141, 255, 0.2), 0 0 0 0 rgba(47, 141, 255, 0.42);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(47, 141, 255, 0.26), 0 0 0 8px rgba(47, 141, 255, 0);
  }
}
@keyframes scanAppear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lineDrawIn {
  from {
    opacity: 0;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
  }
  to {
    opacity: 1;
    stroke-dasharray: 220;
    stroke-dashoffset: 0;
  }
}
@keyframes flowLineGlow {
  0%, 100% {
    stroke-width: 3.8;
    opacity: 0.9;
  }
  50% {
    stroke-width: 4.8;
    opacity: 1;
  }
}
@keyframes stockLineGlow {
  0%, 100% {
    stroke-width: 3.8;
    opacity: 0.9;
  }
  50% {
    stroke-width: 5;
    opacity: 1;
  }
}
@keyframes labelGlow {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}
