:root {
  --ink:          #080d14;
  --gold:         #b8860b;
  --gold-light:   #d4a843;
  --gold-pale:    #f5ecd4;
  --purple:       #5b2d8e;
  --purple-mid:   #7c4dbe;
  --purple-light: #a07de0;
  --purple-pale:  #f0eafa;
  --cyan:         #0d8f8f;
  --cyan-light:   #12c4c4;
  --cyan-pale:    #e5f9f9;
  --neon:         #00e5ff;
  --cream:        #f6f7fb;
  --warm-gray:    #5a5f72;
  --border:       #d4d8e8;
  --white:        #ffffff;
  --code-bg:      #0f1825;
}

/* ─── HERO ─── */
.it-hero {
  min-height: 100vh; background: var(--ink);
  position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 48px;
}

/* Matrix-like dot grid */
.dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,229,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Glow orbs */
.it-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(91,45,142,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(13,143,143,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 50% 0%, rgba(0,229,255,0.06) 0%, transparent 50%);
}

/* Scan line animation */
.scan-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,229,255,0.15), transparent);
  animation: scanMove 6s linear infinite;
  pointer-events: none;
}
@keyframes scanMove { 0%{top:-2px} 100%{top:100%} }

.hero-bg-code {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(100px, 14vw, 220px); font-weight: 300;
  color: rgba(91,45,142,0.07); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -0.03em;
}

.it-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; width: 100%;
}

/* Terminal badge */
.terminal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,229,255,0.06); border: 1px solid rgba(0,229,255,0.2);
  padding: 8px 16px; margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
}
.terminal-badge .prompt { color: var(--cyan-light); font-size: 13px; }
.terminal-badge .cmd { color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 0.05em; }
.terminal-badge .cursor {
  width: 8px; height: 14px; background: var(--cyan-light);
  animation: blink 1.2s step-end infinite; display: inline-block; margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.it-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 4.2vw, 52px); font-weight: 300;
  color: var(--white); line-height: 1.5; letter-spacing: 0.02em; margin-bottom: 20px;
}
.it-hero-title strong {
  display: block; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan-light) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.it-hero-lead {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.55); margin-bottom: 40px; max-width: 520px;
}
.it-hero-lead strong { color: rgba(255,255,255,0.9); font-weight: 700; }

.it-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-cyan {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--cyan); color: var(--white);
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-cyan:hover { background: var(--cyan-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,229,255,0.2); }

/* KPI panel */
.it-kpi-panel {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(0,229,255,0.12);
  margin-top: 56px; border: 1px solid rgba(0,229,255,0.12);
}
.kpi-cell { background: rgba(255,255,255,0.02); padding: 22px 18px; text-align: center; transition: background 0.25s; }
.kpi-cell:hover { background: rgba(0,229,255,0.06); }
.kpi-val { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 500; color: var(--cyan-light); line-height: 1; margin-bottom: 6px; }
.kpi-label { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }

/* Hero visual: code terminal */
.it-hero-visual { position: relative; }

.code-terminal {
  background: var(--code-bg); border: 1px solid rgba(0,229,255,0.15);
  border-radius: 0; overflow: hidden;
}
.terminal-header {
  background: rgba(255,255,255,0.04); padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.red { background: #ff5f57; }
.t-dot.yellow { background: #febc2e; }
.t-dot.green { background: #28c840; }
.terminal-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.3); margin-left: auto; }

.terminal-
.t-comment { color: rgba(255,255,255,0.25); }
.t-key { color: var(--cyan-light); }
.t-val { color: var(--purple-light); }
.t-str { color: #ffd700; }
.t-num { color: #ff9966; }
.t-op { color: rgba(255,255,255,0.5); }
.t-prompt { color: var(--cyan-light); }
.t-output { color: rgba(255,255,255,0.6); }
.t-success { color: #28c840; }

.it-stat-bubble {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--ink); border: 1px solid rgba(0,229,255,0.3);
  padding: 20px 24px; text-align: center; min-width: 140px;
}
.it-stat-bubble .num { font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 400; color: var(--cyan-light); line-height: 1; margin-bottom: 4px; }
.it-stat-bubble .lbl { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

50%{opacity:1} }

/* ─── SNAPSHOT ─── */
.snapshot-strip {
  background: var(--purple); padding: 72px 48px; position: relative; overflow: hidden;
}
.snapshot-strip::before {
  content: ''; position: absolute;
  inset: 0; background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(0,229,255,0.08) 0%, transparent 50%);
}
.snapshot-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); position: relative; z-index: 1; }
.snap-item { background: rgba(91,45,142,0.3); padding: 40px 36px; transition: background 0.25s; backdrop-filter: blur(4px); }
.snap-item:hover { background: rgba(124,77,190,0.4); }
.snap-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.snap-item h3 { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.snap-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '//';
  color: var(--cyan-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  flex-shrink: 0;
}

.it-h2 strong { font-weight: 700; color: var(--purple); }

/* ─── OPP CARDS ─── */

.opp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--purple-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.opp-tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--cyan); background: var(--cyan-pale); padding: 3px 10px; margin-bottom: 12px;
}
.opp-num { font-family: 'JetBrains Mono', monospace; 
	font-size: 48px; 
	font-weight: 300; 
	color: rgba(91,45,142,10); 
	line-height: 1; 
	margin-bottom: 8px; }

.opp-list li::before { content: '>'; position: absolute; left: 0; color: var(--cyan); font-family: 'JetBrains Mono', monospace; font-size: 11px; top: 2px; }

/* ─── TECH ADVANTAGE ─── */
.advantage-section {
  background: var(--code-bg); padding: 96px 48px; position: relative; overflow: hidden;
}
.advantage-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.advantage-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.advantage-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 38px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.7;
  border-left: 2px solid var(--cyan); padding-left: 32px;
  margin-bottom: 56px; max-width: 700px;
}
.advantage-quote strong { font-style: normal; font-weight: 600; color: var(--cyan-light); }

.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(0,229,255,0.08);
  padding: 32px 28px; transition: all 0.3s ease;
}
.adv-card:hover { border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.04); box-shadow: 0 0 20px rgba(0,229,255,0.05); }
.adv-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.adv-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.03em; }
.adv-card p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.adv-mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--cyan-light); margin-top: 12px; }

/* ─── RISK ─── */
.risk-section { background: var(--cream); padding: 96px 48px; }
.risk-inner { max-width: 1200px; margin: 0 auto; }

.risk-notice {
  margin-top: 32px; background: var(--purple-pale);
  border: 1px solid rgba(91,45,142,0.2); border-left: 3px solid var(--purple-mid);
  padding: 20px 24px;
}

.risk-notice strong { color: var(--purple); }

/* ─── SUPPORT ─── */
.support-section { background: var(--white); padding: 96px 48px; }
.support-inner { max-width: 1200px; margin: 0 auto; }

.support-step:hover 

.step-duration { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); background: var(--cyan-pale); padding: 3px 10px; margin-bottom: 12px; font-family: 'JetBrains Mono', monospace; }

/* ─── REPORT ─── */
.report-section {
  background: linear-gradient(135deg, var(--purple) 0%, #1a0a38 100%);
  padding: 96px 48px; position: relative; overflow: hidden;
}
.report-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.report-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ─── CONTACT ─── */
.contact-section { background: var(--cream); padding: 96px 48px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }

.contact-callout { background: var(--code-bg); padding: 24px 28px; position: relative; overflow: hidden; }
.contact-callout::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--cyan); }
.contact-callout strong { display: block; font-size: 13px; font-weight: 700; color: var(--cyan-light); margin-bottom: 8px; letter-spacing: 0.05em; }

.contact-form-box { background: var(--white); border: 1px solid var(--border); padding: 48px 44px; }

.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); text-transform: uppercase; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.form-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); background: var(--cream); font-family: 'Noto Sans JP', sans-serif; font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s ease; }
.form-input:focus { border-color: var(--cyan); background: var(--white); box-shadow: 0 0 0 3px rgba(0,229,255,0.06); }

/* ─── FOOTER ─── */
.it-footer-strip { background: var(--ink); padding: 24px 48px; text-align: center; border-top: 1px solid rgba(0,229,255,0.08); }
.it-footer-strip p { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; font-family: 'JetBrains Mono', monospace; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .it-hero-inner { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 40px; }
  .it-hero-visual { display: none; }
  .snapshot-inner, .advantage-grid, 
  
  
  
  
  
  .snapshot-strip, .advantage-section, .risk-section, .support-section, .report-section, .contact-section { padding: 60px 24px; }
  
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.risk-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple-mid);
  padding: 32px 28px;
}
.risk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 10px;
}
.risk-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.8;
}
.risk-icon {
  font-size: 28px;
  display: block;
}
.risk-notice p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}

.hearing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.hearing-list li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.hearing-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-weight: 700;
}