:root {
  --ink:        #0f1a10;
  --gold:       #b8860b;
  --gold-light: #d4a843;
  --gold-pale:  #f5ecd4;
  --green:      #1a5c2a;
  --green-mid:  #2a8a45;
  --green-pale: #e8f4eb;
  --amber:      #c8580a;
  --amber-pale: #fdf0e6;
  --cream:      #f8f7f2;
  --warm-gray:  #5e6358;
  --border:     #dde5d8;
  --white:      #ffffff;
}

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

/* Animated energy grid background */
.ep-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 40%, rgba(200,88,10,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 10% 70%, rgba(26,92,42,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(184,134,11,0.12) 0%, transparent 50%);
}

.energy-bg-symbol {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 22vw, 340px);
  color: rgba(184,134,11,0.05);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.ep-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%;
}

.hero-sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,88,10,0.15);
  border: 1px solid rgba(200,88,10,0.35);
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
}

  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-sector-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-transform: uppercase;
}

.ep-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.ep-hero-title strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ep-hero-lead {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 520px;
}

.ep-hero-lead strong {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

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

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--amber);
  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-amber:hover { background: #e06010; transform: translateY(-2px); }

/* KPI panel */
.ep-kpi-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,134,11,0.2);
  margin-top: 56px;
  border: 1px solid rgba(184,134,11,0.2);
}

.kpi-cell {
  background: rgba(255,255,255,0.03);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.25s;
}
.kpi-cell:hover { background: rgba(184,134,11,0.08); }

.kpi-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.kpi-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* Hero Right: Image + stats */
.ep-hero-visual {
  position: relative;
}

.ep-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  border: 1px solid rgba(184,134,11,0.2);
}

.ep-hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(26,92,42,0.4) 0%, rgba(200,88,10,0.2) 50%, rgba(184,134,11,0.15) 100%);
  border: 1px solid rgba(184,134,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.ep-stat-bubble {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  border: 1px solid rgba(184,134,11,0.4);
  padding: 20px 24px;
  text-align: center;
  min-width: 140px;
}

.ep-stat-bubble .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.ep-stat-bubble .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

50%{opacity:1;transform:scaleY(1.1)} }

/* ─── SNAPSHOT STRIP ─── */
.snapshot-strip {
  background: var(--green);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.snapshot-strip::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(184,134,11,0.07);
}
.snapshot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.snap-item {
  background: var(--green);
  padding: 40px 36px;
  transition: background 0.25s;
}
.snap-item:hover { background: rgba(42,138,69,0.5); }
.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; }

.ep-section {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.ep-h2 strong { font-weight: 700; color: var(--green); }

/* ─── OPPORTUNITY CARDS ─── */

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

.opp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(200,88,10,0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.opp-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 11px;
  top: 2px;
}

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

.risk-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--amber);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.risk-notice {
  margin-top: 32px;
  background: rgba(200,88,10,0.1);
  border: 1px solid rgba(200,88,10,0.3);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
}

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

/* ─── SUPPORT SECTION ─── */
.support-section {
  background: var(--cream);
  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(--amber);
  background: var(--amber-pale);
  padding: 3px 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ─── REPORT SECTION ─── */
.report-section {
  background: linear-gradient(135deg, var(--green) 0%, #0a2e12 100%);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.report-section::after {
  content: 'CHECK';
  position: absolute; right: -20px; bottom: -40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; color: rgba(255,255,255,0.03);
  font-weight: 700; letter-spacing: -0.05em;
  pointer-events: none;
}
.report-inner { max-width: 1200px; margin: 0 auto; }

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

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

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

.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 8px; }
.form-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); background: var(--white); 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(--green); background: var(--white); }

/* ─── FOOTER STRIP ─── */
.ep-footer-strip {
  background: var(--ink); padding: 24px 48px; text-align: center;
}
.ep-footer-strip p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .ep-hero-inner { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 40px; }
  .ep-hero-visual { display: none; }
  .ep-kpi-panel { grid-template-columns: repeat(3, 1fr); }
  .snapshot-inner { grid-template-columns: 1fr; }
  .ep-section, .support-section, .report-section, .contact-section { padding: 60px 24px; }
  .snapshot-strip { padding: 60px 24px; }
  .risk-section { padding: 60px 24px; }
}


.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;
}