/* ===========================================================
   EU Market Readiness / NIS2 — "BORDER" 시네마틱 다크 테마
   /nis2 전용 디자인 언어 (사이트 나머지와 분리)
   Display: Space Grotesk (라틴) / Mono: Space Mono / CJK·본문: Noto Sans
   =========================================================== */

:root {
  --eu-bg: #0a0e27;
  --eu-bg2: #070a1c;
  --eu-panel: #0e1435;
  --eu-blue: #2563eb;
  --eu-blue-soft: #60a5fa;
  --eu-gold: #ffcc00;
  --eu-text: #e8ecff;
  --eu-muted: #8b93b8;
  --eu-line: rgba(255, 255, 255, 0.1);
  --eu-card: rgba(255, 255, 255, 0.035);
  --eu-card-brd: rgba(255, 255, 255, 0.1);
  --eu-maxw: 1200px;
  --eu-disp: "Space Grotesk", "Noto Sans KR", "Noto Sans JP", sans-serif;
  --eu-mono: "Space Mono", "Noto Sans KR", "Noto Sans JP", ui-monospace, monospace;
}

/* ---- 페이지 베이스: 전면 다크 ---- */
body { background: var(--eu-bg); }
.container, .container-wrap, .contents, .contents-wrap { background: transparent; }
.contents-wrap { color: var(--eu-text); }

/* ---- 헤더를 다크에 맞춤 (라이트 로고/네비) ---- */
.headers-wrap { border-bottom: 1px solid var(--eu-line); }
.header-logo img { filter: brightness(0) invert(1); opacity: 0.92; }
.desktop-navigation li a,
.desktop-navigation li { color: rgba(232, 236, 255, 0.8) !important; }
.desktop-navigation li a:hover { color: #fff !important; }
.lang { background: rgba(255, 255, 255, 0.06); border-color: var(--eu-card-brd); }
.lang p, .lang-option p { color: var(--eu-text); }
.lang-dropdown { background: #131a3d; border-color: var(--eu-card-brd); }
.mobile-menu-btn img { filter: brightness(0) invert(1); }

/* ---- 공통 섹션 ---- */
.eu-section { padding: 104px 0; position: relative; }
.eu-section-tint { background: var(--eu-bg2); }
.eu-section-soft { background: rgba(255, 255, 255, 0.015); }
.eu-section-inner { max-width: var(--eu-maxw); margin: 0 auto; padding: 0 24px; }

/* 섹션 상단 미세 구분선 (얇은 빛) */
.eu-section + .eu-section::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1120px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--eu-line), transparent);
}

.eu-section-title {
  font-family: var(--eu-disp);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  word-break: keep-all;
}
.eu-section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--eu-muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  word-break: keep-all;
}

/* =====================================================================
   HERO — 서울 → EU 항로 + 12별 EU 링
   ===================================================================== */
.eu-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 24px 108px;
  background:
    radial-gradient(120% 90% at 68% 18%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(80% 70% at 100% 0%, rgba(255, 204, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #0b1030 0%, #0a0e27 60%, #070a1c 100%);
  isolation: isolate;
}
/* 상단 그리드 격자 (미세) */
.eu-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 60% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 70% at 60% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
/* 유럽 점묘 지도 (우측) */
.eu-hero-map {
  position: absolute; top: 50%; right: -4%;
  transform: translateY(-50%);
  height: 118%; width: auto; z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%);
}
/* 항로/노드 FX 오버레이 */
.eu-hero-fx {
  position: absolute; top: 50%; right: 0;
  transform: translateY(-50%);
  height: 116%; width: auto; z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.fx-label {
  font-family: var(--eu-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; fill: rgba(232, 236, 255, 0.82);
}
.fx-city text { paint-order: stroke; stroke: #0a0e27; stroke-width: 3px; stroke-linejoin: round; }
.fx-label-gold { fill: rgba(255, 204, 0, 0.85); }
.fx-label-blue { fill: rgba(96, 165, 250, 0.85); font-size: 11px; font-weight: 700; }
/* 아시아→EU 항로 실선 (최종 상태 = 진한 실선; reduced-motion 폴백) */
.fx-line { stroke-width: 2; opacity: 0.7; }
.fx-line-primary { stroke-width: 2.8; opacity: 0.95; }

.eu-hero-inner { position: relative; z-index: 2; max-width: var(--eu-maxw); margin: 0 auto; }
.eu-hero-copy { max-width: 620px; }

.eu-hero .rn-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--eu-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--eu-blue-soft);
  padding: 7px 14px; border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.28);
}
.eu-hero .rn-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--eu-gold); box-shadow: 0 0 8px var(--eu-gold);
}
.eu-hero-title {
  margin-top: 22px;
  font-family: var(--eu-disp);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  word-break: keep-all;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.eu-hero-desc {
  margin-top: 22px; max-width: 520px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: rgba(232, 236, 255, 0.78);
  word-break: keep-all;
}
.eu-hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.eu-hero-badges {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-family: var(--eu-mono); font-size: 12.5px;
  color: rgba(232, 236, 255, 0.62);
}
.eu-hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.eu-hero-badges span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--eu-gold); flex: 0 0 auto;
}
.eu-hero-src {
  margin-top: 22px;
  font-family: var(--eu-mono); font-size: 11.5px;
  color: rgba(139, 147, 184, 0.7);
  word-break: keep-all;
}

/* ---- 버튼 (다크) ---- */
.eu-hero .rn-btn-primary,
.eu-cta .rn-btn-primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}
.eu-hero .rn-btn-primary:hover,
.eu-cta .rn-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 99, 235, 0.5); }
.eu-hero .rn-btn-ghost,
.eu-cta .rn-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #e8ecff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.eu-hero .rn-btn-ghost:hover,
.eu-cta .rn-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* =====================================================================
   WHY — NIST vs NIS2 (글래스 대비)
   ===================================================================== */
.eu-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 900px; margin: 0 auto;
}
.eu-compare-card {
  background: var(--eu-card);
  border: 1px solid var(--eu-card-brd);
  border-radius: 18px;
  padding: 34px 32px;
  backdrop-filter: blur(6px);
}
.eu-compare-card.is-eu {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0.02));
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.1), 0 20px 60px rgba(37, 99, 235, 0.15);
}
.eu-compare-region {
  display: inline-block;
  font-family: var(--eu-mono);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--eu-muted);
  padding: 5px 11px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--eu-line);
}
.eu-compare-card.is-eu .eu-compare-region {
  color: #071022; background: var(--eu-gold); border: none;
}
.eu-compare-card h3 {
  margin-top: 16px;
  font-family: var(--eu-disp); font-size: 24px; font-weight: 600; letter-spacing: -0.01em;
  color: #fff;
}
.eu-compare-card p { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--eu-muted); word-break: keep-all; }

/* =====================================================================
   HOW — 4단계 스테퍼 (다크)
   ===================================================================== */
.eu-flow {
  position: relative; margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.eu-flow-rail {
  position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--eu-blue) 0%, var(--eu-gold) 100%);
  opacity: 0.55; z-index: 0;
}
.eu-flow-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.eu-flow-node {
  width: 76px; height: 76px; margin: 0 auto; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, #1d47b8, #0e1f57);
  border: 1px solid rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 6px #0a0e27, 0 10px 30px rgba(37, 99, 235, 0.35);
}
.eu-flow-node svg { width: 32px; height: 32px; stroke: var(--eu-blue-soft); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.eu-flow-no {
  margin-top: 20px; font-family: var(--eu-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--eu-gold);
}
.eu-flow-step h3 { margin-top: 8px; font-family: var(--eu-disp); font-size: 19px; font-weight: 600; color: #fff; }
.eu-flow-step p { margin: 10px auto 0; max-width: 240px; font-size: 14px; line-height: 1.7; color: var(--eu-muted); word-break: keep-all; }

/* =====================================================================
   COVERAGE — 5영역 (글래스)
   ===================================================================== */
.eu-coverage-head { text-align: center; }
.eu-coverage-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 36px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 204, 0, 0.08); border: 1px solid rgba(255, 204, 0, 0.3);
  color: #ffe08a; font-family: var(--eu-mono); font-size: 12px; font-weight: 700;
}
.eu-coverage-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--eu-gold); }
.eu-coverage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.eu-cov-card {
  background: var(--eu-card); border: 1px solid var(--eu-card-brd); border-radius: 16px;
  padding: 26px 22px; text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.eu-cov-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(37, 99, 235, 0.08);
}
.eu-cov-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, #1d47b8, #0e1f57);
  border: 1px solid rgba(96, 165, 250, 0.4);
}
.eu-cov-icon svg { width: 22px; height: 22px; stroke: var(--eu-blue-soft); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.eu-cov-card h3 { font-family: var(--eu-disp); font-size: 16px; font-weight: 600; color: #fff; line-height: 1.35; word-break: keep-all; }
.eu-cov-card p { margin-top: 8px; font-size: 13.5px; line-height: 1.65; color: var(--eu-muted); word-break: keep-all; }
.eu-cov-tag {
  display: inline-block; margin-top: 12px;
  font-family: var(--eu-mono); font-size: 10.5px; font-weight: 700;
  color: var(--eu-blue-soft); background: rgba(37, 99, 235, 0.14);
  border-radius: 6px; padding: 4px 8px;
}

/* =====================================================================
   COMPLIANCE MAPPING (하나의 리포트, 여러 규제)
   ===================================================================== */
.eu-comply { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: 8px auto 0; }
.eu-comply-card {
  background: var(--eu-card); border: 1px solid var(--eu-card-brd); border-radius: 16px;
  padding: 24px 22px; text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.eu-comply-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 0, 0.4);
  background: rgba(255, 204, 0, 0.05);
}
.eu-comply-top { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; flex-wrap: wrap; }
.eu-comply-region {
  font-family: var(--eu-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: #071022; background: var(--eu-gold);
  border-radius: 6px; padding: 3px 8px;
}
.eu-comply-name { font-family: var(--eu-disp); font-size: 15px; font-weight: 600; color: #fff; word-break: keep-all; }
.eu-comply-duty { font-size: 13px; line-height: 1.62; color: var(--eu-muted); word-break: keep-all; }
.eu-comply-role {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--eu-line);
  font-size: 13px; line-height: 1.62; color: var(--eu-blue-soft); word-break: keep-all;
}
.eu-comply-role::before { content: "→  "; font-family: var(--eu-mono); font-weight: 700; }
.eu-comply-note {
  max-width: 940px; margin: 22px auto 0; text-align: center;
  font-size: 12.5px; line-height: 1.7; color: var(--eu-muted); word-break: keep-all;
}

/* =====================================================================
   DATA SOVEREIGNTY (2단)
   ===================================================================== */
.eu-sov { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.eu-sov-body .rn-eyebrow {
  font-family: var(--eu-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--eu-blue-soft) !important;
}
.eu-sov-body h2 {
  margin-top: 12px;
  font-family: var(--eu-disp); font-size: clamp(26px, 3vw, 38px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.22; color: #fff; word-break: keep-all;
}
.eu-sov-quote {
  margin-top: 16px; font-size: 18px; font-weight: 600; line-height: 1.6;
  color: var(--eu-gold); word-break: keep-all;
}
.eu-sov-desc { margin-top: 14px; font-size: 15px; line-height: 1.75; color: var(--eu-muted); word-break: keep-all; }
.eu-sov-media img {
  width: 100%; height: auto; display: block; border-radius: 20px;
  border: 1px solid var(--eu-card-brd);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.eu-sov .rn-features { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.eu-sov .rn-feature { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--eu-text); }
.eu-sov .rn-feature .rn-check {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; color: #071022; margin-top: 1px;
  background: var(--eu-gold) !important;
}

/* =====================================================================
   TRUST — 3 카드
   ===================================================================== */
.eu-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.eu-trust-card {
  background: var(--eu-card); border: 1px solid var(--eu-card-brd); border-radius: 18px; padding: 30px 26px;
}
.eu-trust-card h3 { font-family: var(--eu-disp); font-size: 17px; font-weight: 600; color: #fff; line-height: 1.4; word-break: keep-all; }
.eu-trust-card p { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--eu-muted); word-break: keep-all; }
.eu-trust-src { margin-top: 12px; font-family: var(--eu-mono); font-size: 11px; color: rgba(139, 147, 184, 0.75); }
/* 한국·일본 적정성 보너스 콜아웃 (골드 강조) */
.eu-trust-bonus {
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 204, 0, 0.08);
  border: 1px solid rgba(255, 204, 0, 0.28);
  font-size: 12.5px;
  line-height: 1.55;
  color: #ffe08a;
  word-break: keep-all;
  position: relative;
  padding-left: 30px;
}
.eu-trust-bonus::before {
  content: "★";
  position: absolute;
  left: 11px;
  top: 9px;
  color: var(--eu-gold);
  font-size: 12px;
}
html[lang="ja"] .eu-trust-bonus { word-break: normal; overflow-wrap: anywhere; }

/* =====================================================================
   BUNDLE — RMF × Prighter
   ===================================================================== */
.eu-bundle-eq { display: grid; grid-template-columns: 1fr auto 1fr auto 1.1fr; align-items: stretch; gap: 14px; }
.eu-bundle-op { align-self: center; font-family: var(--eu-disp); font-size: 30px; font-weight: 600; color: rgba(139, 147, 184, 0.6); }
.eu-bundle-card {
  background: var(--eu-card); border: 1px solid var(--eu-card-brd); border-radius: 18px;
  padding: 28px 24px; display: flex; flex-direction: column;
}
.eu-bundle-logo { height: 30px; display: flex; align-items: center; margin-bottom: 16px; }
.eu-bundle-logo img { height: 100%; width: auto; display: block; }
/* 로고들 다크에서 라이트 처리 */
.eu-bundle-card:not(.is-result) .eu-bundle-logo img { filter: brightness(0) invert(1); opacity: 0.95; }
.eu-bundle-role { font-family: var(--eu-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--eu-blue-soft); }
.eu-bundle-card.is-partner .eu-bundle-role { color: #a5b4fc; }
.eu-bundle-card h3 { margin-top: 8px; font-family: var(--eu-disp); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.35; word-break: keep-all; }
.eu-bundle-list { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.eu-bundle-list span { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.6; color: var(--eu-muted); word-break: keep-all; }
.eu-bundle-list span::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--eu-blue-soft); }
.eu-bundle-card.is-result {
  background: linear-gradient(160deg, #1d3ea8, #3b1e8f);
  border: 1px solid rgba(255, 204, 0, 0.35); color: #fff;
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.3); justify-content: center;
}
.eu-bundle-card.is-result .eu-bundle-role { color: var(--eu-gold); }
.eu-bundle-card.is-result h3 { color: #fff; font-size: 22px; }
.eu-bundle-card.is-result .eu-bundle-list span { color: rgba(255, 255, 255, 0.92); }
.eu-bundle-card.is-result .eu-bundle-list span::before { background: var(--eu-gold); }
.eu-bundle-note { margin-top: 28px; text-align: center; font-family: var(--eu-mono); font-size: 11.5px; color: rgba(139, 147, 184, 0.7); word-break: keep-all; }

/* =====================================================================
   CTA — 밴드
   ===================================================================== */
.eu-cta {
  position: relative; overflow: hidden;
  padding: 96px 24px; text-align: center;
  background:
    radial-gradient(90% 140% at 50% 0%, rgba(37, 99, 235, 0.35), transparent 60%),
    linear-gradient(180deg, #0c1234, #0a0e27);
  border-top: 1px solid var(--eu-line);
}
.eu-cta h2 {
  font-family: var(--eu-disp); font-size: clamp(26px, 3.4vw, 40px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.22; color: #fff; word-break: keep-all;
}
.eu-cta p { margin: 16px auto 0; max-width: 640px; font-size: 16px; line-height: 1.7; color: rgba(232, 236, 255, 0.72); word-break: keep-all; }
.eu-cta-btns { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* =====================================================================
   FOOTER (다크 오버라이드)
   ===================================================================== */
.footer { background: var(--eu-bg2) !important; border-top: 1px solid var(--eu-line) !important; }
.footer-logo img:first-child { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-info-list li { color: rgba(139, 147, 184, 0.85) !important; }
.footer .copyright { color: rgba(139, 147, 184, 0.6) !important; }

/* =====================================================================
   히어로 로드 애니메이션 (reduced-motion 존중)
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  /* 각 도시 → EU 실선을 순차적으로 그림 (pathLength=1 정규화) */
  .fx-line {
    stroke-dasharray: 1; stroke-dashoffset: 1;
    animation: eu-drawline 0.72s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(0.4s + var(--i) * 0.36s);
  }
  /* 도시 노드는 각 항로 시작과 함께 점등 (투명도만 — SVG transform 보존) */
  .fx-city { opacity: 0; animation: eu-fade 0.4s ease forwards; }
  .fx-city:nth-of-type(1) { animation-delay: 0.4s; }
  .fx-city:nth-of-type(2) { animation-delay: 0.76s; }
  .fx-city:nth-of-type(3) { animation-delay: 1.12s; }
  .fx-city:nth-of-type(4) { animation-delay: 1.48s; }
  .fx-city:nth-of-type(5) { animation-delay: 1.84s; }
  .fx-city:nth-of-type(6) { animation-delay: 2.2s; }
  /* 모든 연결 완료 후 EU 12별 링 점등 */
  .fx-star {
    opacity: 0; transform: scale(0.2);
    transform-box: fill-box; transform-origin: center;
    animation: eu-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(2.9s + var(--i) * 0.06s);
  }
  .fx-dest-core { transform-box: fill-box; transform-origin: center; animation: eu-pulse 2.4s ease-in-out 3.6s infinite; }
  .eu-hero-copy > * { opacity: 0; transform: translateY(16px); animation: eu-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
  .eu-hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
  .eu-hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
  .eu-hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
  .eu-hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
  .eu-hero-copy > *:nth-child(5) { animation-delay: 0.45s; }
  .eu-hero-copy > *:nth-child(6) { animation-delay: 0.55s; }
}
@keyframes eu-drawline { to { stroke-dashoffset: 0; } }
@keyframes eu-pop { to { opacity: 0.92; transform: scale(1); } }
@keyframes eu-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.35); } }
@keyframes eu-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes eu-fade { to { opacity: 1; } }

/* =====================================================================
   반응형
   ===================================================================== */
@media (max-width: 1024px) {
  .eu-coverage { grid-template-columns: repeat(3, 1fr); }
  .eu-sov { grid-template-columns: 1fr; gap: 36px; }
  .eu-sov-media { max-width: 640px; margin: 0 auto; width: 100%; }
  .eu-trust { grid-template-columns: 1fr; }
  .eu-hero-map, .eu-hero-fx { opacity: 0.4; }
}
@media (max-width: 768px) {
  .eu-hero { padding: 104px 20px 80px; }
  .eu-hero-map { right: -30%; height: 90%; opacity: 0.26; }
  .eu-hero-fx { display: none; }
  .eu-flow { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .eu-flow-rail { display: none; }
  .eu-compare { grid-template-columns: 1fr; }
  .eu-comply { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .eu-section { padding: 68px 0; }
  .eu-coverage { grid-template-columns: 1fr; }
  .eu-comply { grid-template-columns: 1fr; }
  .eu-flow { grid-template-columns: 1fr; }
  .eu-bundle-eq { grid-template-columns: 1fr; }
  .eu-bundle-op { justify-self: center; }
  .eu-cta-btns .rn-btn, .eu-hero-cta .rn-btn { flex: 1 1 auto; justify-content: center; }
}

/* =====================================================================
   일본어 폰트 + 줄바꿈
   ===================================================================== */
html[lang="ja"] .eu-hero-title,
html[lang="ja"] .eu-section-title,
html[lang="ja"] .eu-sov-body h2,
html[lang="ja"] .eu-cta h2,
html[lang="ja"] .eu-compare-card h3,
html[lang="ja"] .eu-cov-card h3,
html[lang="ja"] .eu-trust-card h3,
html[lang="ja"] .eu-flow-step h3,
html[lang="ja"] .eu-comply-name,
html[lang="ja"] .eu-bundle-card h3 {
  font-family: "Noto Sans JP", "Noto Sans KR", sans-serif !important;
}
html[lang="ja"] .eu-hero-title,
html[lang="ja"] .eu-hero-desc,
html[lang="ja"] .eu-section-title,
html[lang="ja"] .eu-section-desc,
html[lang="ja"] .eu-compare-card p,
html[lang="ja"] .eu-flow-step p,
html[lang="ja"] .eu-cov-card h3,
html[lang="ja"] .eu-cov-card p,
html[lang="ja"] .eu-sov-body h2,
html[lang="ja"] .eu-sov-quote,
html[lang="ja"] .eu-sov-desc,
html[lang="ja"] .eu-trust-card h3,
html[lang="ja"] .eu-trust-card p,
html[lang="ja"] .eu-cta h2,
html[lang="ja"] .eu-cta p,
html[lang="ja"] .eu-bundle-card h3,
html[lang="ja"] .eu-bundle-list span,
html[lang="ja"] .eu-bundle-note {
  word-break: normal;
  overflow-wrap: anywhere;
}
