@charset "UTF-8";
  :root {
	/* === BACKGROUND PALETTE: CYBER NAVY === */
	--bg-deep: #0a1030;
	--bg-main: #0c1238;
	--bg-card: #0e1540;
	--bg-card-hover: #121a4a;
	--bg-card-accent: #101845;
	--bg-form: #04060f;
	--bg-elevated: #141e50;

	/* === GOLD / LUXURY === */
	--gold: #e8b800;
	--gold-bright: #ffd600;
	--gold-deep: #c49800;
	--gold-pale: #ffec80;
	--gold-text: #ffe066;

	/* === ACCENT === */
	--violet: #a855f7;
	--violet-bright: #c084fc;
	--violet-deep: #7c3aed;
	--cyan-line: #00d4ff;

	/* === TEXT: HIGH CONTRAST === */
	--text-white: #ffffff;
	--text-primary: #f0f0f5;
	--text-secondary: #b8bcc8;
	--text-muted: #7880a0;

	/* === STATUS === */
	--emerald: #10e870;
	--red-hot: #ff2d45;
  }

  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  html {
	scroll-behavior: smooth;
	background: #0a1030;
  }

  body {
	font-family: "Noto Sans JP", sans-serif;
	background: #0a1030;
	color: var(--text-primary);
	overflow-x: hidden;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
  }
  html, body {
	overflow-x: hidden;
	width: 100%;
　}

  /* === スマホ領域で改行 === */
  .sp-br {
	display: none;
  }
  @media (max-width: 768px) {
	.sp-br {
	  display: block;
	}
  }
  
  
  .cta_btn img {
	  width: 100%;
  }
  
   .cta_btn img{
	animation: ctaAnime 1.5s infinite;
  }
  
  @keyframes ctaAnime {
  
	0%{
	  transform: scale(1);
	}
  
	50%{
	  transform: scale(1.08);
	}
  
	100%{
	  transform: scale(1);
	}
  
  }
  
  /* === CYBER GRID BACKGROUND === */
  .cyber-grid {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
	  linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
	  linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
	background-size: 60px 60px;
  }

  /* Circuit trace overlays */
  .circuit-layer {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
  }

  .circuit-line {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--cl), var(--cl), transparent);
	opacity: 0.15;
  }

  .circuit-line.h1 {
	top: 12%;
	left: 0;
	right: 0;
	--cl: rgba(0, 212, 255, 1);
	animation: circuitPulse 6s ease-in-out infinite;
  }
  .circuit-line.h2 {
	top: 28%;
	left: 5%;
	right: 10%;
	--cl: rgba(233, 30, 138, 0.8);
	animation: circuitPulse 8s ease-in-out 1s infinite;
  }
  .circuit-line.h3 {
	top: 45%;
	left: 0;
	right: 0;
	--cl: rgba(0, 212, 255, 0.6);
	animation: circuitPulse 7s ease-in-out 2s infinite;
  }
  .circuit-line.h4 {
	top: 62%;
	left: 10%;
	right: 0;
	--cl: rgba(168, 85, 247, 0.7);
	animation: circuitPulse 9s ease-in-out 0.5s infinite;
  }
  .circuit-line.h5 {
	top: 78%;
	left: 0;
	right: 5%;
	--cl: rgba(233, 30, 138, 0.6);
	animation: circuitPulse 6.5s ease-in-out 3s infinite;
  }
  .circuit-line.h6 {
	top: 90%;
	left: 3%;
	right: 8%;
	--cl: rgba(0, 212, 255, 0.5);
	animation: circuitPulse 8s ease-in-out 1.5s infinite;
  }

  .circuit-line.v1 {
	top: 0;
	bottom: 0;
	left: 8%;
	width: 1px;
	height: auto;
	--cl: rgba(0, 212, 255, 0.6);
	background: linear-gradient(180deg, transparent, var(--cl), var(--cl), transparent);
	animation: circuitPulse 7s ease-in-out 0.5s infinite;
  }
  .circuit-line.v2 {
	top: 0;
	bottom: 0;
	right: 12%;
	width: 1px;
	height: auto;
	--cl: rgba(233, 30, 138, 0.5);
	background: linear-gradient(180deg, transparent, var(--cl), var(--cl), transparent);
	animation: circuitPulse 9s ease-in-out 2s infinite;
  }
  .circuit-line.v3 {
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: auto;
	--cl: rgba(168, 85, 247, 0.4);
	background: linear-gradient(180deg, transparent, var(--cl), var(--cl), transparent);
	animation: circuitPulse 8s ease-in-out 1s infinite;
  }

  /* Glowing junction nodes */
  .circuit-node {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	box-shadow:
	  0 0 8px var(--nc),
	  0 0 20px var(--nc);
	animation: nodePulse 3s ease-in-out infinite;
  }

  .circuit-node.n1 {
	top: 12%;
	left: 8%;
	--nc: rgba(0, 212, 255, 0.6);
	background: rgba(0, 212, 255, 0.8);
  }
  .circuit-node.n2 {
	top: 12%;
	right: 25%;
	--nc: rgba(0, 212, 255, 0.4);
	background: rgba(0, 212, 255, 0.6);
	animation-delay: 1s;
  }
  .circuit-node.n3 {
	top: 28%;
	left: 25%;
	--nc: rgba(233, 30, 138, 0.5);
	background: rgba(233, 30, 138, 0.7);
	animation-delay: 0.5s;
  }
  .circuit-node.n4 {
	top: 45%;
	left: 50%;
	--nc: rgba(0, 212, 255, 0.4);
	background: rgba(0, 212, 255, 0.6);
	animation-delay: 2s;
  }
  .circuit-node.n5 {
	top: 62%;
	right: 12%;
	--nc: rgba(168, 85, 247, 0.5);
	background: rgba(168, 85, 247, 0.7);
	animation-delay: 1.5s;
  }
  .circuit-node.n6 {
	top: 78%;
	left: 30%;
	--nc: rgba(233, 30, 138, 0.4);
	background: rgba(233, 30, 138, 0.6);
	animation-delay: 0.8s;
  }
  .circuit-node.n7 {
	top: 28%;
	right: 12%;
	--nc: rgba(0, 212, 255, 0.5);
	background: rgba(0, 212, 255, 0.7);
	animation-delay: 2.5s;
  }
  .circuit-node.n8 {
	top: 90%;
	right: 30%;
	--nc: rgba(0, 212, 255, 0.3);
	background: rgba(0, 212, 255, 0.5);
	animation-delay: 1.2s;
  }
  .circuit-node.n9 {
	top: 62%;
	left: 8%;
	--nc: rgba(168, 85, 247, 0.4);
	background: rgba(168, 85, 247, 0.6);
	animation-delay: 3s;
  }
  .circuit-node.n10 {
	top: 45%;
	right: 35%;
	--nc: rgba(233, 30, 138, 0.3);
	background: rgba(233, 30, 138, 0.5);
	animation-delay: 0.3s;
  }

  /* Diagonal accent traces */
  .circuit-diag {
	position: absolute;
	width: 200px;
	height: 1px;
	transform-origin: left center;
	opacity: 0.1;
  }
  .circuit-diag.d1 {
	top: 15%;
	left: 8%;
	transform: rotate(35deg);
	background: linear-gradient(90deg, rgba(0, 212, 255, 0.8), transparent);
	animation: circuitPulse 6s ease-in-out 1s infinite;
  }
  .circuit-diag.d2 {
	top: 65%;
	right: 0;
	left: auto;
	transform: rotate(-25deg);
	background: linear-gradient(90deg, rgba(233, 30, 138, 0.6), transparent);
	width: 160px;
	animation: circuitPulse 7s ease-in-out 2s infinite;
  }
  .circuit-diag.d3 {
	top: 40%;
	left: 50%;
	transform: rotate(20deg);
	background: linear-gradient(90deg, rgba(168, 85, 247, 0.5), transparent);
	width: 120px;
	animation: circuitPulse 8s ease-in-out infinite;
  }

  @keyframes circuitPulse {
	0%,
	100% {
	  opacity: 0.08;
	}
	50% {
	  opacity: 0.2;
	}
  }

  @keyframes nodePulse {
	0%,
	100% {
	  transform: scale(1);
	  opacity: 0.5;
	}
	50% {
	  transform: scale(1.6);
	  opacity: 1;
	}
  }

  /* Horizon glow at bottom */
  .cyber-grid::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(0, 212, 255, 0.02), transparent);
  }

  canvas#neuralBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
  }

  /* ===== STICKY TOP BAR ===== */
  .top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(10, 16, 48, 0.95);
	backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 58px;
	transform: translateY(-100%);
	transition: transform 0.4s ease;
  }
  .top-bar.visible {
	transform: translateY(0);
  }

  .top-bar .logo-sm {
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.6rem;
	letter-spacing: 4px;
	color: var(--gold-bright);
	text-shadow: 0 0 12px rgba(232, 184, 0, 0.3);
  }

  .top-bar .bar-cta {
	padding: 10px 32px;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-decoration: none;
	color: var(--bg-deep);
	background: linear-gradient(135deg, var(--gold-bright), var(--gold));
	border-radius: 30px;
	border: none;
	cursor: pointer;
	font-family: "Exo 2", sans-serif;
	transition: all 0.3s;
	box-shadow: 0 0 20px rgba(232, 184, 0, 0.25);
  }
  .top-bar .bar-cta:hover {
	box-shadow: 0 0 35px rgba(255, 214, 0, 0.45);
	transform: scale(1.03);
  }
  @media (max-width: 768px) {
	.top-bar {
	  display: none;
	}
  }
  /* ===== STICKY FOOTER BAR ===== */

  .footer-bar {
	display: none;
  }
  @media (max-width: 768px) {
	.footer-bar {
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  z-index: 9999;
	  background: rgba(10, 16, 48, 0.95);
	  backdrop-filter: blur(24px);
	  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	  padding: 0 24px;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  height: 58px;
	  transform: translateY(100%);
	  transition: transform 0.4s ease;
	}
	.footer-bar.visible {
	  transform: translateY(0);
	}

	.footer-bar .bar-cta {
	  width: 100%;
	  text-align: center;
	  padding: 10px 32px;
	  font-size: 0.95rem;
	  font-weight: 800;
	  letter-spacing: 2px;
	  text-decoration: none;
	  color: var(--bg-deep);
	  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
	  border-radius: 30px;
	  border: none;
	  cursor: pointer;
	  font-family: "Exo 2", sans-serif;
	  transition: all 0.3s;
	  box-shadow: 0 0 20px rgba(232, 184, 0, 0.25);
	}
	.top-bar .bar-cta:hover {
	  box-shadow: 0 0 35px rgba(255, 214, 0, 0.45);
	  transform: scale(1.03);
	}
  }

  /* ===== HERO ===== */
  .top-info {
	text-align: center;
	background-color: var(--gold);
	color: var(--bg-form);
	letter-spacing: 5px;
	font-weight: bold;
  }
  .hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 24px 50px;
	overflow: hidden;
	z-index: 1;
	background: #0a1030;
  }
  @media (max-width: 768px) {
	.hero {
	  padding-top: 30px;
	}
  }
  .hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
	  radial-gradient(ellipse 50% 40% at 50% 30%, rgba(168, 85, 247, 0.12) 0%, transparent 55%),
	  radial-gradient(ellipse 40% 35% at 25% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 45%),
	  radial-gradient(ellipse 35% 30% at 75% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 45%);
	animation: heroAura 10s ease-in-out infinite alternate;
  }

  @keyframes heroAura {
	0% {
	  transform: scale(1) translate(0, 0);
	}
	100% {
	  transform: scale(1.06) translate(-1%, 2%);
	}
  }

  /* FREE Badge */
  .free-badge {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 32px;
	border-radius: 40px;
	background: rgba(255, 45, 69, 0.12);
	border: 1.5px solid rgba(255, 45, 69, 0.5);
	margin-bottom: 20px;
	animation:
	  fadeSlideUp 0.8s ease-out 0.2s both,
	  badgePulse 2s ease-in-out infinite;
	box-shadow: 0 0 20px rgba(255, 45, 69, 0.08);
  }

  .free-badge .badge-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red-hot);
	box-shadow: 0 0 10px var(--red-hot);
	animation: dotBlink 1.2s ease-in-out infinite;
  }

  @keyframes dotBlink {
	0%,
	100% {
	  opacity: 1;
	  box-shadow: 0 0 10px var(--red-hot);
	}
	50% {
	  opacity: 0.3;
	  box-shadow: 0 0 4px var(--red-hot);
	}
  }

  .free-badge span {
	font-family: "Exo 2", sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #ff6b7a;
  }

  @keyframes badgePulse {
	0%,
	100% {
	  box-shadow: 0 0 20px rgba(255, 45, 69, 0.08);
	}
	50% {
	  box-shadow: 0 0 35px rgba(255, 45, 69, 0.15);
	}
  }

  /* AI Eye */
  .ai-eye {
	position: relative;
	z-index: 2;
	width: 140px;
	height: 140px;
	margin-bottom: 28px;
	animation: fadeIn 1.2s ease-out 0.3s both;
  }

  .ai-eye .eye-outer {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 2px solid rgba(232, 184, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	animation: eyeRotate 20s linear infinite;
	box-shadow: 0 0 50px rgba(232, 184, 0, 0.06);
  }

  .ai-eye .eye-outer::before {
	content: "";
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: var(--gold-bright);
	border-right-color: rgba(168, 85, 247, 0.5);
	animation: eyeRotate 7s linear infinite;
	filter: drop-shadow(0 0 8px rgba(255, 214, 0, 0.25));
  }

  .ai-eye .eye-outer::after {
	content: "";
	position: absolute;
	inset: -14px;
	border-radius: 50%;
	border: 1.5px solid transparent;
	border-bottom-color: rgba(0, 212, 255, 0.2);
	border-left-color: rgba(168, 85, 247, 0.15);
	animation: eyeRotate 14s linear infinite reverse;
  }

  @keyframes eyeRotate {
	to {
	  transform: rotate(360deg);
	}
  }

  .ai-eye .eye-inner {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: radial-gradient(
	  circle,
	  rgba(255, 214, 0, 0.35) 0%,
	  rgba(232, 184, 0, 0.2) 40%,
	  rgba(168, 85, 247, 0.15) 70%,
	  transparent 100%
	);
	box-shadow:
	  0 0 40px rgba(255, 214, 0, 0.45),
	  0 0 80px rgba(232, 184, 0, 0.25),
	  0 0 120px rgba(168, 85, 247, 0.1);
	animation: eyePulse 3s ease-in-out infinite;
  }

  @keyframes eyePulse {
	0%,
	100% {
	  transform: scale(1);
	  box-shadow:
		0 0 40px rgba(255, 214, 0, 0.45),
		0 0 80px rgba(232, 184, 0, 0.25);
	}
	50% {
	  transform: scale(1.1);
	  box-shadow:
		0 0 60px rgba(255, 214, 0, 0.65),
		0 0 120px rgba(232, 184, 0, 0.35);
	}
  }

  .hero-overtitle {
	position: relative;
	z-index: 2;
	font-family: "Exo 2", sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 10px;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow:
	  0 0 20px rgba(0, 212, 255, 0.5),
	  0 0 40px rgba(0, 212, 255, 0.2);
	margin-bottom: 16px;
	animation: fadeSlideUp 0.8s ease-out 0.4s both;
  }

  .hero-title {
	position: relative;
	z-index: 2;
	font-family: "Bebas Neue", sans-serif;
	font-size: clamp(3.5rem, 11vw, 8rem);
	letter-spacing: 8px;
	line-height: 0.95;
	animation: fadeSlideUp 0.8s ease-out 0.5s both;
  }

  .hero-title .ai-text {
	background: linear-gradient(135deg, #ffffff, var(--gold-bright), #ffffff, var(--gold-pale));
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: goldShift 5s ease-in-out infinite;
	filter: drop-shadow(0 0 35px rgba(232, 184, 0, 0.3)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  }

  @keyframes goldShift {
	0%,
	100% {
	  background-position: 0% 50%;
	}
	50% {
	  background-position: 100% 50%;
	}
  }

  .hero-title .sub-brand {
	display: block;
	font-family: "Exo 2", sans-serif;
	font-size: clamp(0.9rem, 2.2vw, 1.3rem);
	font-weight: 500;
	letter-spacing: 14px;
	color: #e0e8ff;
	text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
	margin-top: 8px;
	margin-bottom: 25px;
  }
  .hero-title .moc_hero {
	width: 350px;
  }
  @media (max-width: 768px) {
	.hero-title .moc_hero {
	  width: 60%;
	}
  }

  /* Hero Copy */
  .hero-copy {
	position: relative;
	z-index: 2;
	margin-top: px;
	animation: fadeSlideUp 0.8s ease-out 0.7s both;
  }

  .hero-copy .main-hook {
	font-size: clamp(1.25rem, 3.2vw, 1.9rem);
	font-weight: 900;
	line-height: 1.7;
	margin-bottom: 16px;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .hero-copy .main-hook .gold-hl {
	background: linear-gradient(135deg, var(--gold-bright), #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 10px rgba(232, 184, 0, 0.3));
  }

  .hero-copy .main-hook .violet-hl {
	color: #e0c0ff;
	text-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
  }

  .hero-copy .sub-hook {
	font-size: 1.35rem;
	color: #d0d4e0;
	line-height: 1.9;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }
  .hero-copy .sub-hook span {
	display: block;
  }
  .hero-copy .sub-hook strong {
	color: #ffffff;
	font-weight: 800;
  }
  @media (max-width: 768px) {
	.hero-copy .sub-hook {
	  font-size: 1.35rem;
	  color: #d0d4e0;
	  line-height: 1.5;
	  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	}
	.hero-copy .sub-hook span {
	  font-size: 1rem;
	  line-height: 1.5rem;
	  margin-bottom: 0;
	}
  }
  /* ===== CTA FORM ===== */
  .cta-form-block {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 540px;
	margin: 30px auto 0;
	animation: fadeSlideUp 0.8s ease-out 0.9s both;
  }

  .form-wrapper {
	background: linear-gradient(160deg, #3e4250, #5a5e68, #6e7280, #5a5e68, #3e4250);
	border: 2px solid rgba(232, 184, 0, 0.35);
	border-radius: 24px;
	padding: 36px 32px;
	position: relative;
	overflow: hidden;
	box-shadow:
	  0 0 50px rgba(232, 184, 0, 0.08),
	  0 30px 60px rgba(0, 0, 0, 0.5);
  }

  .form-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 2px;
	background: linear-gradient(
	  135deg,
	  rgba(255, 214, 0, 0.6),
	  rgba(255, 255, 255, 0.1) 30%,
	  rgba(255, 255, 255, 0.05) 70%,
	  rgba(232, 184, 0, 0.4)
	);
	-webkit-mask:
	  linear-gradient(#fff 0 0) content-box,
	  linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
  }

  .form-wrapper::after {
	content: "";
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	height: 50%;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04), transparent 70%);
	pointer-events: none;
  }

  .form-title {
	text-align: center;
	margin-bottom: 6px;
	font-family: "Exo 2", sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: #80e8ff;
  }

  .form-heading {
	text-align: center;
	font-size: 1.55rem;
	font-weight: 900;
	margin-bottom: 20px;
	line-height: 1.5;
	color: var(--text-white);
  }

  .form-heading .free-text {
	display: inline-block;
	padding: 3px 16px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--red-hot), #e01030);
	color: #fff;
	font-size: 1.25rem;
	margin-right: 4px;
	box-shadow: 0 0 15px rgba(255, 45, 69, 0.25);
	animation: freeShake 3s ease-in-out infinite;
  }

  @keyframes freeShake {
	0%,
	100% {
	  transform: rotate(0);
	}
	3% {
	  transform: rotate(-2.5deg);
	}
	6% {
	  transform: rotate(2.5deg);
	}
	9% {
	  transform: rotate(0);
	}
  }

  .form-row {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 18px;
  }

  .form-input {
	width: 100%;
	padding: 17px 22px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.32rem;
	background: rgba(0, 0, 0, 0.3);
	border: 1.5px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	color: #ffffff;
	outline: none;
	transition: all 0.3s;
  }

  .form-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
  }
  .form-input:focus {
	border-color: var(--gold-bright);
	box-shadow: 0 0 25px rgba(232, 184, 0, 0.15);
	background: rgba(0, 0, 0, 0.4);
  }

  .submit-btn {
	width: 100%;
	padding: 20px;
	font-family: "Exo 2", sans-serif;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 3px;
	color: var(--bg-deep);
	cursor: pointer;
	border: none;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep), var(--gold-bright));
	background-size: 300% 300%;
	animation: goldShift 4s ease-in-out infinite;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow:
	  0 0 35px rgba(232, 184, 0, 0.3),
	  0 10px 30px rgba(0, 0, 0, 0.4),
	  inset 0 2px 0 rgba(255, 255, 255, 0.3);
  }

  .submit-btn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
	transform: rotate(45deg);
	animation: btnShine 3.5s ease-in-out infinite;
  }

  @keyframes btnShine {
	0%,
	100% {
	  transform: translateX(-150%) rotate(45deg);
	}
	50% {
	  transform: translateX(150%) rotate(45deg);
	}
  }

  .submit-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
	  0 0 55px rgba(255, 214, 0, 0.45),
	  0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .form-note {
	text-align: center;
	margin-top: 16px;
	font-size: 0.92rem;
	color: #9098b8;
	line-height: 1.7;
  }

  .form-note .secure-icon {
	color: var(--emerald);
  }

  /* ===== URGENCY ===== */
  .urgency-strip {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-top: 22px;
	animation: fadeSlideUp 0.8s ease-out 1.1s both;
  }
  /* .urgency-strip span {
	text-align: left;
  } */
  .urgency-inner {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 32px;
	border-radius: 40px;
	background: rgba(255, 45, 69, 0.06);
	border: 1px solid rgba(255, 45, 69, 0.18);
  }

  .urgency-inner .pulse-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red-hot);
	box-shadow: 0 0 8px var(--red-hot);
	animation: dotBlink 1s ease-in-out infinite;
  }

  .urgency-inner span {
	font-size: 1.2rem;
	color: #d0d4e0;
	letter-spacing: 1px;
  }
  .urgency-inner strong {
	color: #ff6b7a;
	font-weight: 800;
  }
  @media (max-width: 768px) {
	.urgency-inner {
	  padding: 14px 14px;
	}
  }
  /* ===== SCROLL HINT ===== */
  .scroll-hint {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	animation: fadeIn 1s ease-out 1.4s both;
  }

  .scroll-hint span {
	font-family: "Exo 2", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: rgba(0, 212, 255, 0.3);
  }

  .scroll-diamond {
	width: 10px;
	height: 10px;
	border: 1.5px solid rgba(0, 212, 255, 0.3);
	transform: rotate(45deg);
	animation: scrollFloat 2.5s ease-in-out infinite;
  }

  @keyframes scrollFloat {
	0%,
	100% {
	  transform: rotate(45deg) translateY(0);
	  opacity: 0.3;
	}
	50% {
	  transform: rotate(45deg) translateY(8px);
	  opacity: 1;
	}
  }

  /* ===== SECTION ===== */
  .section {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 28px;
  }

  .section-eyebrow {
	font-family: "Exo 2", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 8px;
	text-transform: uppercase;
	color: #80e8ff;
	margin-bottom: 12px;
	display: inline-block;
  }

  .section-eyebrow::after {
	content: "";
	display: inline-block;
	width: 50px;
	height: 1.5px;
	background: linear-gradient(90deg, #80e8ff, transparent);
	vertical-align: middle;
	margin-left: 14px;
  }

  .section-heading {
	font-size: clamp(1.7rem, 4.5vw, 2.8rem);
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 28px;
	letter-spacing: 0.5px;
	color: var(--text-white);
  }

  .section-heading .gold-text {
	background: linear-gradient(135deg, #ffffff, var(--gold-bright), #ffffff);
	background-size: 250% 250%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: goldShift 5s ease-in-out infinite;
  }

  .section-heading .violet-text {
	color: #d8b4fe;
  }

  /* ===== DIVIDER ===== */
  .luxe-divider {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	height: 1px;
	position: relative;
	z-index: 999;
	background: linear-gradient(
	  90deg,
	  transparent 5%,
	  rgba(233, 30, 138, 0.15) 25%,
	  rgba(0, 212, 255, 0.4) 50%,
	  rgba(233, 30, 138, 0.15) 75%,
	  transparent 95%
	);
  }

  .luxe-divider::after {
	content: "◆";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.65rem;
	color: var(--cyan);
	background: #0a1030;
	padding: 0 14px;
  }

  /* ===== SOCIAL PROOF ===== */
  .social-proof {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: center;
	background: #0a1030;
  }

  .proof-item {
	position: relative;
	overflow: hidden;
	padding: 28px 20px 21px;
	background: var(--bg-card);
	border: 1px solid rgba(0, 212, 255, 0.06);
	border-radius: 20px;
	transition: all 0.4s;
  }

  .proof-item:hover {
	border-color: rgba(232, 184, 0, 0.12);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  }
  .proof_label img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
  }

  @media (max-width: 600px) {
	.social-proof {
	  grid-template-columns: 1fr;
	}
  }

  /* ===== AI CARDS ===== */
  .ai-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin: 30px 0;
  }

  .ai-card {
	background: var(--bg-card);
	border: 1px solid rgba(0, 212, 255, 0.06);
	border-radius: 20px;
	padding: 34px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ai-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(
	  135deg,
	  rgba(232, 184, 0, 0.15),
	  transparent 35%,
	  transparent 65%,
	  rgba(0, 212, 255, 0.1)
	);
	-webkit-mask:
	  linear-gradient(#fff 0 0) content-box,
	  linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
  }

  .ai-card:hover {
	transform: translateY(-6px);
	border-color: rgba(232, 184, 0, 0.1);
	box-shadow:
	  0 30px 70px rgba(0, 0, 0, 0.4),
	  0 0 30px rgba(232, 184, 0, 0.03);
  }

  .ai-card.featured {
	grid-column: 1/-1;
	background: linear-gradient(145deg, var(--bg-card), rgba(168, 85, 247, 0.06), var(--bg-card));
	border-color: rgba(232, 184, 0, 0.08);
  }

  .ai-card .card-icon {
	width: 108px;
	height: 108px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	margin: 0 auto;
	margin-bottom: 22px;
	background: rgba(0, 212, 255, 0.06);
	border: 1px solid rgba(0, 212, 255, 0.1);
  }

  .ai-card h3 {
	font-family: "Exo 2", sans-serif;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 14px;
	text-align: center;
  }

  .ai-card p {
	font-size: 1.28rem;
	color: #c0c4d4;
	line-height: 1.9;
  }

  @media (max-width: 768px) {
	.ai-showcase {
	  grid-template-columns: 1fr;
	}
	.ai-card.featured {
	  grid-column: auto;
	}
  }

  /* ===== BRAIN TRUST ===== */

  .section-heading .tsuini {
	font-size: 1.4em;
  }

  @media (max-width: 768px) {
	.sh_brain {
	  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
	}
  }

  .brain-trust {
	margin: 30px 0 50px;
  }

  .brain-intro {
	font-size: 1.32rem;
	line-height: 2.2;
	color: #c0c4d4;
	margin-bottom: 30px;
  }

  .brain-grid {
	margin-bottom: 8px;
  }

  .brain-card {
	display: flex;
	justify-content: space-between;
	background: var(--bg-card);
	border: 1px solid rgba(0, 212, 255, 0.06);
	border-radius: 18px;
	padding: 30px 22px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	margin-bottom: 16px;
  }

  .brain-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 18px;
	padding: 1px;
	background: linear-gradient(
	  135deg,
	  rgba(232, 184, 0, 0.2),
	  transparent 40%,
	  transparent 60%,
	  rgba(0, 212, 255, 0.12)
	);
	-webkit-mask:
	  linear-gradient(#fff 0 0) content-box,
	  linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
  }

  .brain-card:hover {
	transform: translateY(-5px);
	border-color: rgba(232, 184, 0, 0.12);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  }
  .brain-box-name {
	width: 30%;
  }
  .brain-avatar {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 0 auto 16px;
	overflow: hidden;
	border: 2px solid rgba(232, 184, 0, 0.25);
	box-shadow: 0 0 20px rgba(232, 184, 0, 0.1);
  }

  .brain-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: brightness(0.95) contrast(1.05);
	transition: filter 0.4s;
  }

  .brain-card:hover .brain-avatar img {
	filter: brightness(1.05) contrast(1.1);
  }

  .brain-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 4px;
  }

  .brain-role {
	font-family: "Exo 2", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #80e8ff;
	margin-bottom: 12px;
  }

  .brain-desc {
	width: 68%;
	font-size: 1.25rem;
	color: #c0c4d4;
	line-height: 1.8;
	text-align: left;
  }

  .brain-arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px 0;
  }

  .brain-arrow .arrow-lines {
	display: flex;
	justify-content: center;
	gap: 80px;
	position: relative;
  }

  .brain-arrow .arrow-line {
	width: 2px;
	height: 30px;
	background: linear-gradient(to bottom, rgba(232, 184, 0, 0.4), rgba(0, 212, 255, 0.3));
  }

  .brain-arrow .arrow-merge {
	width: 260px;
	height: 2px;
	background: linear-gradient(90deg, rgba(232, 184, 0, 0.3), rgba(0, 212, 255, 0.5), rgba(232, 184, 0, 0.3));
	position: relative;
  }

  .brain-arrow .arrow-down {
	width: 2px;
	height: 24px;
	background: linear-gradient(to bottom, rgba(0, 212, 255, 0.5), rgba(232, 184, 0, 0.4));
  }

  .brain-arrow .arrow-tip {
	font-size: 1.4rem;
	color: var(--gold-bright);
	text-shadow: 0 0 12px rgba(232, 184, 0, 0.4);
	animation: eyePulse 2s ease-in-out infinite;
  }

  .brain-ai-box {
	background: linear-gradient(145deg, var(--bg-card), rgba(168, 85, 247, 0.06), var(--bg-card));
	border: 1.5px solid rgba(232, 184, 0, 0.15);
	border-radius: 18px;
	padding: 28px 32px;
	text-align: center;
  }

  .brain-ai-box .ai-label {
	font-family: "Exo 2", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #80e8ff;
	margin-bottom: 8px;
  }

  .brain-ai-box h3 {
	font-size: 1.35rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.6;
  }

  .brain-ai-box h3 .gold-text {
	background: linear-gradient(135deg, var(--gold-bright), #ffec80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 8px rgba(232, 184, 0, 0.25));
	font-size: 1.3em;
  }

  .logo_aichart {
	width: 80%;
	margin: 0 auto;
	margin-top: 36px;
  }
  @media (max-width: 768px) {
	.logo_aichart {
	  width: auto;
	  margin: 0 auto;
	  margin-top: 36px;
	}
  }

  .logo_aichart img {
	max-width: 100%;
  }
  .brain-chart-showcase {
	margin-top: 10px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0, 212, 255, 0.15);
	box-shadow:
	  0 8px 40px rgba(0, 0, 0, 0.4),
	  0 0 30px rgba(0, 212, 255, 0.05);
	position: relative;
  }

  .brain-chart-showcase img {
	width: 100%;
	height: auto;
	display: block;
	filter: brightness(0.95) contrast(1.05);
  }

  .brain-chart-showcase::before,
  .brain-chart-showcase::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	pointer-events: none;
	z-index: 2;
  }
  .brain-chart-showcase::before {
	top: 0;
	left: 0;
	border-top: 2px solid rgba(0, 212, 255, 0.4);
	border-left: 2px solid rgba(0, 212, 255, 0.4);
  }
  .brain-chart-showcase::after {
	bottom: 0;
	right: 0;
	border-bottom: 2px solid rgba(233, 30, 138, 0.3);
	border-right: 2px solid rgba(233, 30, 138, 0.3);
  }

  @media (max-width: 768px) {
	.brain-card {
	  display: block;
	}
	.brain-box-name {
	  width: auto;
	}
	.brain-desc {
	  width: auto;
	}
	.brain-arrow .arrow-lines {
	  gap: 40px;
	}
	.brain-arrow .arrow-merge {
	  width: 140px;
	}
  }

  /* ===== FLOW ===== */
  .flow-track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 30px 0;
	flex-wrap: wrap;
  }

  .flow-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 22px;
	position: relative;
	z-index: 1;
  }

  .flow-node .node-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-family: "Exo 2", sans-serif;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
  }

  .flow-node.converge .node-circle {
	background: rgba(168, 85, 247, 0.1);
	border: 2px solid rgba(168, 85, 247, 0.4);
	color: var(--violet-bright);
	box-shadow: 0 0 25px rgba(168, 85, 247, 0.1);
  }

  .flow-node.expand .node-circle {
	background: rgba(232, 184, 0, 0.08);
	border: 2px solid rgba(232, 184, 0, 0.35);
	color: var(--gold-bright);
	box-shadow: 0 0 25px rgba(232, 184, 0, 0.08);
  }

  .flow-node.ai-detect .node-circle {
	background: rgba(0, 212, 255, 0.08);
	border: 2.5px solid rgba(0, 212, 255, 0.5);
	color: var(--cyan-line);
	box-shadow: 0 0 40px rgba(0, 212, 255, 0.12);
	animation: nodeGlow 2s ease-in-out infinite;
  }

  @keyframes nodeGlow {
	0%,
	100% {
	  box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
	}
	50% {
	  box-shadow: 0 0 50px rgba(0, 212, 255, 0.25);
	}
  }

  .flow-node .node-label {
	font-size: 0.92rem;
	color: #c0c4d4;
	text-align: center;
	font-weight: 500;
  }

  .flow-connector {
	width: 36px;
	height: 2px;
	background: linear-gradient(90deg, rgba(168, 85, 247, 0.35), rgba(0, 212, 255, 0.35));
	position: relative;
	flex-shrink: 0;
  }
  .flow-connector::after {
	content: "▸";
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-55%);
	font-size: 0.95rem;
	color: var(--cyan-line);
  }
  @media (max-width: 768px) {
	.flow-node .node-circle {
	  width: 100px;
	  height: 100px;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 1.2rem;
	  font-family: "Exo 2", sans-serif;
	  font-weight: 800;
	  letter-spacing: 2px;
	  text-transform: uppercase;
	  margin-bottom: 10px;
	}
  }
  /* ===== QUOTE ===== */
  .luxe-quote {
	position: relative;
	background: var(--bg-card);
	border: 1px solid rgba(0, 212, 255, 0.06);
	border-radius: 24px;
	padding: 40px 44px;
	margin: 30px 0;
	overflow: hidden;
  }

  .luxe-quote::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), var(--cyan-line), var(--gold), transparent);
  }

  .luxe-quote .q-mark {
	font-family: "Bebas Neue", sans-serif;
	font-size: 6rem;
	line-height: 1;
	color: rgba(0, 212, 255, 0.08);
	position: absolute;
	top: 14px;
	left: 30px;
  }

  .luxe-quote p {
	position: relative;
	font-size: 1.22rem;
	line-height: 2.2;
	z-index: 1;
	color: #e0e4f0;
  }

  .luxe-quote .gold-em {
	color: var(--gold-bright);
	font-weight: 800;
	text-shadow: 0 0 8px rgba(232, 184, 0, 0.2);
  }
  .luxe-quote .violet-em {
	color: #d8b4fe;
	font-weight: 700;
  }

  /* ===== FEATURE SPEC CARDS ===== */
  .feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 30px 0;
  }

  .feat-card {
	background: var(--bg-card);
	border: 1px solid rgba(0, 212, 255, 0.06);
	border-radius: 18px;
	padding: 28px 26px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feat-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 18px;
	padding: 1px;
	background: linear-gradient(
	  135deg,
	  rgba(232, 184, 0, 0.12),
	  transparent 40%,
	  transparent 60%,
	  rgba(0, 212, 255, 0.08)
	);
	-webkit-mask:
	  linear-gradient(#fff 0 0) content-box,
	  linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
  }

  .feat-card:hover {
	transform: translateY(-5px);
	border-color: rgba(232, 184, 0, 0.1);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .feat-card.feat-wide {
	grid-column: 1/-1;
  }

  .feat-card .feat-icon {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
  }

  .feat-card .feat-icon .icon-box {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: rgba(0, 212, 255, 0.06);
	border: 1px solid rgba(0, 212, 255, 0.1);
	flex-shrink: 0;
  }

  .feat-card .feat-icon .feat-label {
	font-family: "Exo 2", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #80e8ff;
  }

  .feat-card h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 10px;
	line-height: 1.5;
  }
  .feat-card .gold-em {
	color: var(--gold-bright);
	font-weight: 800;
	text-shadow: 0 0 8px rgba(232, 184, 0, 0.2);
  }
  .feat-card p {
	font-size: 1.25rem;
	color: #c0c4d4;
	line-height: 1.85;
  }

  @media (max-width: 768px) {
	.feature-grid {
	  grid-template-columns: 1fr;
	}
	.feat-card.feat-wide {
	  grid-column: auto;
	}
  }

  /* ===== CHART GALLERY ===== */
  .chart-gallery {
	width: 90%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 30px auto;
  }

  .cg-jisseki {
	width: 90%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 0px auto 30px;
  }
  .cg-jisseki p {
	text-align: center;
	color: #c0c4d4;
  }
  .chart-item {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(0, 212, 255, 0.06);
	background: linear-gradient(145deg, var(--bg-card), #101a48, var(--bg-card));
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .chart-item:first-child {
	grid-column: 1/-1;
  }

  .chart-item:hover {
	transform: translateY(-4px);
	border-color: rgba(232, 184, 0, 0.15);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  }

  .chart-item img {
	width: 100%;
	height: auto;
	display: block;
	filter: brightness(0.9) contrast(1.1);
	transition: filter 0.4s;
	object-fit: cover;
	background: var(--bg-card);
  }
  .chart-item:hover img {
	filter: brightness(1.05) contrast(1.15);
  }

  /* Broken image fallback */
  .chart-item img[alt]::after {
	content: attr(alt) " — チャート画像";
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	inset: 0;
	background: var(--bg-card);
	color: var(--text-muted);
	font-size: 1.25rem;
	letter-spacing: 1px;
	border: 1px dashed rgba(0, 212, 255, 0.1);
	border-radius: 16px;
  }

  .chart-item .chart-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(10, 16, 48, 0.85);
	backdrop-filter: blur(20px);
	padding: 6px 16px;
	border-radius: 30px;
	font-family: "Exo 2", sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold-bright);
	border: 1px solid rgba(232, 184, 0, 0.2);
  }

  .chart-item .chart-profit {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(16, 232, 112, 0.1);
	backdrop-filter: blur(20px);
	padding: 6px 16px;
	border-radius: 30px;
	font-family: "Exo 2", sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	color: var(--emerald);
	border: 1px solid rgba(16, 232, 112, 0.2);
  }

  .chart-item .ai-signal {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(0, 212, 255, 0.08);
	backdrop-filter: blur(20px);
	padding: 6px 14px;
	border-radius: 30px;
	font-family: "Exo 2", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--cyan-line);
	border: 1px solid rgba(0, 212, 255, 0.2);
  }
  .txt_chart {
	text-align: center;
	font-size: 1.3rem;
  }
  @media (max-width: 768px) {
	.chart-gallery {
	  width: auto;
	  grid-template-columns: 1fr;
	}
	.chart-item:first-child {
	  grid-column: auto;
	}
	.txt_chart {
	  text-align: left;
	  font-size: 1.1rem;
	}
  }

  /* ===== STEPS ===== */
  .steps {
	margin: 35px 0;
	position: relative;
  }

  .steps::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 48px;
	bottom: 48px;
	width: 2px;
	background: linear-gradient(to bottom, rgba(0, 212, 255, 0.3), rgba(232, 184, 0, 0.3), rgba(168, 85, 247, 0.2));
  }

  .step {
	display: flex;
	gap: 28px;
	padding: 24px 0;
	align-items: flex-start;
	position: relative;
  }

  .step-marker {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Bebas Neue", sans-serif;
	font-size: 1.6rem;
	letter-spacing: 2px;
	color: var(--gold-bright);
	background: rgba(232, 184, 0, 0.06);
	border: 2px solid rgba(232, 184, 0, 0.25);
	z-index: 1;
  }

  .step-body h4 {
	font-family: "Exo 2", sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
  }

  .step-body p {
	font-size: 1.28rem;
	color: #c0c4d4;
	line-height: 1.9;
  }

  @media (max-width: 768px) {
	.steps::before {
	  display: none;
	}
	.step {
	  display: flex;
	  gap: 15px;
	  padding: 24px 0;
	  align-items: flex-start;
	  position: relative;
	}
  }

  /* ===== INLINE CTA ===== */
  .inline-cta {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: center;
	padding: 50px 28px;
	background: #0a1030;
  }
  .moc_cta {
	width: 350px;
	margin: -10px auto -20px;
  }
  .moc_cta img {
	width: 100%;
  }
  @media (max-width: 768px) {
	.moc_cta {
	  width: 60%;
	}
  }

  /* ===== INSIGHT ===== */
  .insight-panel {
	position: relative;
	border-radius: 28px;
	padding: 44px 40px;
	margin: 35px 0;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(145deg, var(--bg-card), rgba(168, 85, 247, 0.05), var(--bg-card));
	border: 1px solid rgba(0, 212, 255, 0.08);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  }

  .insight-panel h3 {
	position: relative;
	font-size: clamp(1.35rem, 3.2vw, 1.9rem);
	font-weight: 900;
	line-height: 1.7;
	margin-bottom: 22px;
	z-index: 1;
	color: var(--text-white);
  }

  .insight-panel .gold-hl {
	color: var(--gold-bright);
	text-shadow: 0 0 10px rgba(232, 184, 0, 0.2);
  }
  .insight-panel .violet-hl {
	color: #d8b4fe;
  }

  .insight-panel p {
	position: relative;
	font-size: 1.3rem;
	color: #c0c4d4;
	line-height: 2;
	z-index: 1;
  }

  /* ===== FINAL ===== */
  .final-section {
	text-align: center;
	padding: 60px 28px 50px;
	position: relative;
	z-index: 1;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("https://s3.ap-northeast-1.amazonaws.com/fxism-tribe.com/2026/opt/cyber/images/hero-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  }
  .final-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(10, 16, 48, 0.82);
  }

  .final-section::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: radial-gradient(ellipse 55% 45% at 50% 100%, rgba(232, 184, 0, 0.05) 0%, transparent 55%);
	pointer-events: none;
  }

  .final-section .section-heading {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 14px;
	position: relative;
	z-index: 1;
  }

  .final-note {
	font-size: 1.28rem;
	color: #c0c4d4;
	margin-bottom: 40px;
	text-align: center;
	line-height: 1.8;
	position: relative;
	z-index: 1;
  }

  /* ===== GUARANTEE ===== */
  .guarantee-row {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin: 44px 0 0;
	position: relative;
	z-index: 1;
  }

  .g-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.25rem;
	color: #c0c4d4;
  }

  .g-badge .g-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.32rem;
	background: rgba(0, 212, 255, 0.06);
	border: 1px solid rgba(0, 212, 255, 0.1);
  }

  /* ===== FOOTER ===== */
  footer {
	text-align: center;
	padding: 44px 24px;
 	font-family: "Exo 2", sans-serif;
	font-size: 0.85rem;
	letter-spacing: 4px;
	color: #fff;
	border-top: 1px solid rgba(0, 212, 255, 0.05);
	position: relative;
	z-index: 1;
	background: #0a1030;
  }
  footer a {
	color: #cecfd5;
	transition: 0.3s;
  }
  footer a:hover {
	color: #85868a;
  }
  footer ul{
	list-style: none;
	margin: 0;
	padding: 24px 0;
  }
  footer ul li{
	list-style: none;
  }
  footer ul li:not(:last-child)::after {
	content: "|";
	position: absolute;
	right: -2px;
	color: #fff;
  }
  footer a:link {
    color: #fff;
  }
  footer a:visited {
    color: #fff;
  }
  footer a:hover {
    color: #CD1010;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  footer a:active {
    color: #fff;
  }  
  
  /* ===== FXISM LOGO ===== */

  /* Tech corner brackets - PDF style */
  .proof-item::before,
  .proof-item::after,
  .ai-card::before,
  .ai-card::after,
  .brain-card::before,
  .brain-card::after,
  .feat-card::before,
  .feat-card::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	pointer-events: none;
	z-index: 2;
  }
  .proof-item::before,
  .ai-card::before,
  .brain-card::before,
  .feat-card::before {
	top: -1px;
	left: -1px;
	border-top: 1.5px solid rgba(0, 212, 255, 0.25);
	border-left: 1.5px solid rgba(0, 212, 255, 0.25);
  }
  .proof-item::after,
  .ai-card::after,
  .brain-card::after,
  .feat-card::after {
	bottom: -1px;
	right: -1px;
	border-bottom: 1.5px solid rgba(233, 30, 138, 0.2);
	border-right: 1.5px solid rgba(233, 30, 138, 0.2);
  }

  .insight-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 28px;
	padding: 1.5px;
	background: linear-gradient(
	  135deg,
	  rgba(0, 212, 255, 0.3),
	  transparent 30%,
	  transparent 70%,
	  rgba(233, 30, 138, 0.2)
	);
	-webkit-mask:
	  linear-gradient(#fff 0 0) content-box,
	  linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
  }

  /* Edge glow accents on sections */
  .section {
	position: relative;
  }
  .section > .section-glow-l,
  .section > .section-glow-r {
	position: absolute;
	top: 0;
	width: 2px;
	pointer-events: none;
  }

  /* ===== FXISM LOGO (continued) ===== */
  .fxism-logo-hero {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 62px;
	height: 62px;
	border-radius: 50%;
	z-index: 3;
	overflow: hidden;
	box-shadow:
	  0 0 20px rgba(232, 184, 0, 0.4),
	  0 0 40px rgba(232, 184, 0, 0.15),
	  0 0 60px rgba(168, 85, 247, 0.08);
	animation: logoPulse 3s ease-in-out infinite;
  }

  @keyframes logoPulse {
	0%,
	100% {
	  box-shadow:
		0 0 20px rgba(232, 184, 0, 0.4),
		0 0 40px rgba(232, 184, 0, 0.15);
	}
	50% {
	  box-shadow:
		0 0 30px rgba(232, 184, 0, 0.6),
		0 0 60px rgba(232, 184, 0, 0.25),
		0 0 80px rgba(168, 85, 247, 0.12);
	}
  }

  .fxism-logo-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(1.1) contrast(1.1);
  }

  .top-bar .logo-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	border: 1.5px solid rgba(232, 184, 0, 0.3);
	box-shadow: 0 0 10px rgba(232, 184, 0, 0.15);
	flex-shrink: 0;
  }

  .top-bar .logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

  .top-bar .logo-group {
	display: flex;
	align-items: center;
	gap: 10px;
  }

  .footer-logo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 14px;
	border: 1px solid rgba(232, 184, 0, 0.15);
	opacity: 0.5;
	transition: opacity 0.4s;
  }

  .footer-logo:hover {
	opacity: 0.8;
  }

  .footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.3);
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeIn {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
  @keyframes fadeSlideUp {
	from {
	  opacity: 0;
	  transform: translateY(30px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  .reveal {
	opacity: 0;
	transform: translateY(45px);
	transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
	opacity: 1;
	transform: translateY(0);
  }

  @media (max-width: 520px) {
	.form-wrapper {
	  padding: 30px 22px;
	}
	.flow-track {
	  gap: 2px;
	}
	.flow-connector {
	  width: 16px;
	}
	.flow-node {
	  padding: 10px;
	}
	.flow-node .node-circle {
	  width: 100px;
	  height: 100px;
	  font-size: 1.2rem;
	}
	.luxe-quote {
	  padding: 38px 24px;
	}
	.insight-panel {
	  padding: 44px 24px;
	}
	.guarantee-row {
	  flex-direction: column;
	  align-items: center;
	}
  }

/*260303追加*/
.brain-movie-section {
  margin: 20px 0 -30px;
}
.movie-catch {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
.movie-catch .gold-text {
  background: linear-gradient(135deg, var(--gold-bright), #ffec80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(232, 184, 0, 0.25));
}
.brain-gif-showcase img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-top: 20px;
}
