:root{
  --navy:#0b2343;
  --navy2:#102f56;
  --teal:#009a91;
  --ink:#172235;
  --muted:#667085;
  --line:#dfe5ec;
  --soft:#f5f7fa;
  --white:#fff;
  --shadow:0 12px 32px rgba(11,35,67,.08);
  --max:1320px;
  --header-h:86px;
  --font:"KoPub Dotum","KoPubDotum",sans-serif;
  /* Shared header ↔ mega track: logo | 4 equal cols | actions/deco
     Side tracks absorb width so the 4 menu cols sit more compact */
  --nav-logo-col:380px;
  --nav-deco-col:minmax(120px,170px);
  --nav-col-pad:6px;
  --nav-menu-cols:repeat(4,minmax(0,1fr));
  --nav-track:var(--nav-logo-col) var(--nav-menu-cols) var(--nav-deco-col);
}

/* KoPub Dotum — self-hosted (Light / Medium / Bold from legacy KOR) */
@font-face{
  font-family:"KoPub Dotum";
  font-style:normal;
  font-weight:300;
  font-display:swap;
  src:url("../fonts/KoPubDotumLight.woff2") format("woff2"),
      url("../fonts/KoPubDotumLight.woff") format("woff");
}
@font-face{
  font-family:"KoPub Dotum";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url("../fonts/KoPubDotumMedium.woff2") format("woff2"),
      url("../fonts/KoPubDotumMedium.woff") format("woff");
}
@font-face{
  font-family:"KoPub Dotum";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("../fonts/KoPubDotumMedium.woff2") format("woff2"),
      url("../fonts/KoPubDotumMedium.woff") format("woff");
}
@font-face{
  font-family:"KoPub Dotum";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url("../fonts/KoPubDotumBold.woff2") format("woff2"),
      url("../fonts/KoPubDotumBold.woff") format("woff");
}
@font-face{
  font-family:"KoPub Dotum";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url("../fonts/KoPubDotumBold.woff2") format("woff2"),
      url("../fonts/KoPubDotumBold.woff") format("woff");
}
@font-face{
  font-family:"KoPub Dotum";
  font-style:normal;
  font-weight:800;
  font-display:swap;
  src:url("../fonts/KoPubDotumBold.woff2") format("woff2"),
      url("../fonts/KoPubDotumBold.woff") format("woff");
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;font-family:var(--font)}
body{margin:0;color:var(--ink);background:#fff;font-family:var(--font);line-height:1.65}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit;cursor:pointer}
h1,h2,h3,p{margin-top:0}
.skip{position:absolute;left:-9999px}
.skip:focus{left:16px;top:16px;z-index:9999;background:#fff;padding:10px 16px;border:2px solid var(--navy)}

.container{width:min(var(--max),calc(100% - 48px));margin:auto}

/* —— Header (centered nav, Saman chrome) —— */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(223,229,236,.9);
}
.header-inner{
  height:var(--header-h);
  display:grid;
  grid-template-columns:var(--nav-track);
  align-items:center;
  gap:0;
}
.logo{justify-self:start;z-index:2;display:flex;align-items:center;min-width:0;grid-column:1}
.logo img{height:44px;width:auto;max-width:100%;object-fit:contain}
/* Inherit the same 4 equal tracks as .mega-grid (subgrid when supported) */
.top-nav{
  grid-column:2 / 6;
  display:grid;
  grid-template-columns:var(--nav-menu-cols);
  grid-template-columns:subgrid;
  align-items:stretch;
  align-self:stretch;
  z-index:2;
  min-width:0;
  text-align:center;
}
.top-nav>a{
  font-family:var(--font);
  font-weight:700;
  font-size:19px;
  line-height:1.2;
  color:#000;
  opacity:1;
  letter-spacing:0;
  -webkit-font-smoothing:auto;
  -moz-osx-font-smoothing:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px var(--nav-col-pad) 14px;
  border-bottom:3px solid transparent;
  white-space:nowrap;
  min-width:0;
}
.top-nav>a.active,
.top-nav>a:hover,
.site-header.mega-open .top-nav>a:focus{
  border-color:var(--teal);
  color:#000;
}
.header-actions,
.header-inner > .menu-btn{
  justify-self:end;
  z-index:2;
  grid-column:6;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.menu-btn{
  display:block;
  border:0;
  background:none;
  width:44px;
  height:44px;
  position:relative;
  padding:0;
}
.menu-btn span,
.menu-btn:before,
.menu-btn:after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  height:2px;
  background:var(--navy);
  transition:transform .2s ease,opacity .2s ease;
}
.menu-btn:before{top:14px}
.menu-btn span{top:21px}
.menu-btn:after{top:28px}
.site-header.menu-open .menu-btn:before{top:21px;transform:rotate(45deg)}
.site-header.menu-open .menu-btn span{opacity:0}
.site-header.menu-open .menu-btn:after{top:21px;transform:rotate(-45deg)}

/* —— Mega menu —— */
.mega{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid var(--line);
  box-shadow:0 18px 40px rgba(11,35,67,.1);
  /* Open/close motion: motion.css (visibility + opacity) */
  display:block;
  visibility:hidden;
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
}
.site-header.menu-open .mega,
.site-header.mega-open .mega{
  visibility:visible;
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.mega-grid{
  display:grid;
  grid-template-columns:var(--nav-track);
  gap:0;
  padding:8px 0 28px;
  position:relative;
}
/* Empty logo-column spacer so mega sections share the same 4-col track as top-nav */
.mega-grid::before{content:"";grid-column:1}
.mega-grid>section{
  padding:0 var(--nav-col-pad);
  border-right:1px solid var(--line);
  text-align:center;
  min-width:0;
}
.mega-grid>section:last-of-type{border-right:0}
.mega ul{list-style:none;margin:0;padding:0;text-align:center}
.mega li{margin:11px 0;text-align:center}
.mega li:first-child{margin-top:0}
.mega li a{
  color:#222;
  font-size:15px;
  font-weight:400;
  transition:color .15s ease;
  display:inline-block;
  text-align:center;
  line-height:1.45;
}
.mega li a:hover{color:var(--teal)}
.mega-deco{
  position:relative;
  margin-left:0;
}
.mega-deco:before{
  content:"";
  position:absolute;
  right:8px;
  top:50%;
  width:72px;
  height:72px;
  border:1px solid rgba(0,154,145,.22);
  transform:translateY(-50%) rotate(45deg);
}
.mega-deco:after{
  content:"";
  position:absolute;
  right:28px;
  top:50%;
  width:32px;
  height:32px;
  background:rgba(11,35,67,.06);
  transform:translateY(-50%) rotate(45deg);
}

/* —— Inner-page hero (centered text; not .hero-fullscreen) —— */
/* Prefer 1920×440 assets: ≥1441 → 390px; tablet 280px; mobile ~230px */
.hero{
  height:390px;
  min-height:390px;
  position:relative;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  /* Lighter shade — keep titles readable without crushing the photo */
  background:linear-gradient(180deg,rgba(6,25,50,.48),rgba(6,25,50,.58) 45%,rgba(6,25,50,.46));
}
/* Deep Navy fallback when no suitable photo (e.g. monitoring) */
.hero.hero--navy,
.hero[style*="background-image:none"]{
  background-color:var(--navy);
  background-image:none;
}
.hero.hero--navy:before,
.hero[style*="background-image:none"]:before{
  background:rgba(6,25,50,.18);
}
.hero-content{
  position:relative;
  color:#fff;
  padding:40px 0;
  text-align:center;
}
.hero.hero--left .hero-content,
.hero[data-align="left"] .hero-content{
  text-align:left;
}
.hero.hero--left .hero-content p,
.hero[data-align="left"] .hero-content p,
.hero.hero--left .hero-badge,
.hero[data-align="left"] .hero-badge{
  margin-left:0;
  margin-right:0;
}
.breadcrumbs{font-size:14px;opacity:.85;margin-bottom:14px}
/* Section badge above h1 (COMPANY / BUSINESS / RESEARCH / PR) */
.hero-badge{
  display:inline-block;
  margin:0 auto 14px;
  padding:6px 16px;
  border:1px solid rgba(255,255,255,.38);
  border-radius:999px;
  background:rgba(0,154,145,.22);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.16em;
  line-height:1.2;
  text-transform:uppercase;
}
.hero h1{font-size:56px;line-height:1.14;margin-bottom:12px;letter-spacing:-.04em}
.hero p{
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
  font-size:19px;
  color:rgba(255,255,255,.9);
  margin-bottom:0;
}

/* —— Home full-bleed hero —— */
.home .site-header{border-bottom-color:rgba(223,229,236,.95)}
.hero-fullscreen{
  position:relative;
  min-height:calc(100vh - var(--header-h));
  height:calc(100vh - var(--header-h));
  /* Width = viewport; height auto (no cover zoom/crop). Navy letterbox if short. */
  background-color:var(--navy);
  background-size:100% auto;
  background-position:center top;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}
/* Background clarity filter on image layer only (not text).
   User override 2026-08-06: AGENT-LOCK preferred filter:none; clarity filter requested. */
.hero-fullscreen::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background-color:inherit;
  background-image:inherit;
  background-size:inherit;
  background-position:inherit;
  background-repeat:inherit;
  filter:contrast(1.08) saturate(1.1) brightness(1.05);
  pointer-events:none;
}
.hero-fullscreen-shade{
  /* No full-image wash — photo stays sharp; Korean contrast via color/weight, not a panel */
  position:absolute;
  inset:0;
  background:none;
  pointer-events:none;
}
.hero-fullscreen-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:0 24px;
  max-width:min(1100px,100%);
  background:none;
}
/* Home hero — white GROUND + black Korean tagline (Inter Tight / Pretendard) */
.hero-lead{
  margin:0;
}
.hero-ground{
  display:block;
  color:#fff;
  font-family:"Inter Tight","Inter",sans-serif;
  font-size:clamp(52px,10vw,112px);
  font-weight:500;
  letter-spacing:.06em;
  line-height:1;
  margin:0;
  text-shadow:0 2px 18px rgba(0,0,0,.38);
}
.hero-lead-ko{
  display:block;
  margin:clamp(16px,2.2vw,26px) auto 0;
  max-width:36em;
  color:#000;
  font-family:"Pretendard","KoPub Dotum",sans-serif;
  font-size:clamp(22px,2.9vw,34px);
  font-weight:600;
  letter-spacing:-.02em;
  line-height:1.5;
}

/* Right rail */
.hero-rail{
  position:absolute;
  right:clamp(16px,3vw,40px);
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.hero-rail-item{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.82);
  font-family:"Inter","Pretendard",sans-serif;
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
}
.hero-rail-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.55);
  background:transparent;
  position:relative;
  flex:0 0 auto;
  transition:border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.hero-rail-dot:after{
  content:"";
  position:absolute;
  inset:2.5px;
  border-radius:50%;
  background:transparent;
  transition:background .2s ease;
}
.hero-rail-item.is-active{color:#fff}
.hero-rail-item.is-active .hero-rail-dot{
  border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(0,154,145,.18);
}
.hero-rail-item.is-active .hero-rail-dot:after{background:var(--teal)}
.hero-rail-item:hover{color:#fff}
.hero-rail-item:hover .hero-rail-dot{border-color:rgba(255,255,255,.9)}
.hero-rail-label{white-space:nowrap}

/* Scroll cue */
.scroll-cue{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.9);
  font-size:11px;
  font-weight:700;
  letter-spacing:.22em;
}
.scroll-cue-line{
  width:1px;
  height:36px;
  background:linear-gradient(180deg,transparent,rgba(255,255,255,.85));
}
.scroll-cue-text{writing-mode:vertical-rl;text-orientation:mixed;letter-spacing:.28em}
.scroll-cue-arrow{font-size:14px;opacity:.85}

.btn{display:inline-flex;align-items:center;gap:18px;background:var(--navy);color:#fff;padding:14px 22px;border-radius:4px;font-weight:700}
.btn.light{background:#fff;color:var(--navy)}
.btn.outline{background:transparent;border:1px solid rgba(255,255,255,.45)}
.feature-title{font-size:42px;color:var(--navy);margin:0 0 8px;font-weight:800;letter-spacing:-.03em}

.section{padding:96px 0}
.section.soft{background:var(--soft)}
.section-title{display:flex;align-items:center;gap:14px;font-size:34px;color:var(--navy);margin-bottom:34px}
.section-title:before{content:"";width:4px;height:28px;background:var(--teal)}
.lead{font-size:21px;color:#344054;max-width:820px}
.grid{display:grid;gap:24px}
.grid-5{grid-template-columns:repeat(5,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{border:1px solid var(--line);background:#fff;border-radius:10px;overflow:hidden}
.card img{width:100%;height:190px;object-fit:cover}
.card-body{padding:20px}
.card-title{font-weight:800;color:var(--navy);font-size:19px;display:flex;justify-content:space-between;gap:12px}
.card p{font-size:14px;color:var(--muted);margin:10px 0 0}
.feature-split{display:grid;grid-template-columns:1fr 1.3fr;gap:52px;align-items:center}
.feature-image{height:420px;width:100%;object-fit:cover;border-radius:12px}
.keywords{display:flex;gap:18px;flex-wrap:wrap;margin:30px 0}
.keyword{min-width:130px;border-top:2px solid var(--teal);padding-top:14px;font-weight:700;color:var(--navy)}
.split-cards{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.wide-card{border:1px solid var(--line);border-radius:12px;display:grid;grid-template-columns:1fr 1fr;align-items:stretch;overflow:hidden;background:#fff}
.wide-card .copy{padding:34px}
.wide-card img{height:260px;width:100%;object-fit:cover}

.page-body{padding:48px 0 88px}
.page-grid{display:grid;grid-template-columns:260px minmax(0,1fr);gap:54px}
.side-nav{border-right:1px solid var(--line);padding-right:22px}
.side-nav h2{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:22px;
  color:var(--navy);
  margin-bottom:18px
}
.side-nav h2:before{
  content:"";
  flex:0 0 4px;
  width:4px;
  height:1em;
  background:var(--teal)
}
.side-nav ul{list-style:none;margin:0;padding:0}
.side-nav a{display:block;padding:14px 16px;border-bottom:1px solid var(--line);font-weight:600;color:#475467}
.side-nav a.current{background:var(--navy);color:#fff;border-radius:4px}
.side-nav .child{padding-left:30px;font-size:14px}
/* Parents with nested side-nav children: + (collapsed) / − (expanded) on the right */
.side-nav a.has-children{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-right:14px
}
.side-nav a.has-children::after{
  content:"+";
  flex:0 0 auto;
  font-weight:700;
  font-size:15px;
  line-height:1;
  color:inherit;
  opacity:.9
}
.side-nav a.has-children.is-open::after,
.side-nav li:has(+ li > a.child) > a.has-children::after{
  content:"\2212"
}
.side-nav a.has-children.current::after{
  color:#fff;
  opacity:1
}
/* Inner-page content title — teal bar like .section-title / .side-nav h2 */
.content > h2{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-size:36px;
  line-height:1.25;
  margin:0 0 28px
}
.content > h2:before{
  content:"";
  display:block;
  flex:0 0 4px;
  width:4px;
  min-width:4px;
  height:28px;
  background:var(--teal)
}
.content h2{color:var(--navy);font-size:28px;margin-top:48px;line-height:1.35}
.content h2:first-child{margin-top:0}
.content h3{color:var(--navy);font-size:26px;margin-top:54px}
.content-list{margin:22px 0 0;padding-left:1.25em;color:#344054;max-width:820px}
.content-list li{margin:12px 0;line-height:1.55}
/* Sitemap directory — nested nav lists from nav SSOT */
.sitemap-tree{margin-top:8px;max-width:820px}
.sitemap-tree .sitemap-section{margin-top:40px}
.sitemap-tree .sitemap-section:first-child{margin-top:28px}
.sitemap-tree h3{margin-top:0;font-size:22px}
.sitemap-tree h3 a{color:var(--navy);text-decoration:none;border-bottom:1px solid transparent}
.sitemap-tree h3 a:hover{border-bottom-color:var(--teal)}
.sitemap-tree .content-list a{color:#344054;font-weight:600;text-decoration:none;border-bottom:1px solid var(--line)}
.sitemap-tree .content-list a:hover{color:var(--navy);border-bottom-color:var(--teal)}
.sitemap-tree .content-list .content-list{margin:8px 0 4px;padding-left:1.15em}
.sitemap-tree .content-list .content-list li{margin:8px 0}
.content .diagram img{display:block;width:100%;height:auto}
.video-embed{position:relative;aspect-ratio:16/9;margin-top:26px;border:1px solid var(--line);border-radius:10px;overflow:hidden;background:#000;max-width:820px}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}


/* CI — logo presentations (avoid .card img crop rules) */
.ci-layout{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(220px,.7fr);gap:40px;align-items:start;margin-top:36px}
.ci-logos{display:grid;gap:48px}
.ci-block h3{margin-top:0}
.ci-caption{margin:0 0 12px;color:var(--muted);font-size:14px}
.ci-block .ci-caption+.ci-panel{margin-bottom:28px}
.ci-panel{background:#fff;border:1px solid var(--line);border-radius:10px;padding:44px 40px;display:flex;align-items:center;justify-content:center}
.ci-panel img{display:block;width:100%;max-width:560px;height:auto;object-fit:contain}
.ci-panel--stacked{padding:48px 32px}
.ci-panel--stacked img{max-width:260px}
.ci-rules h3{margin-top:0}
.ci-rules ul{padding-left:1.2em;margin:0 0 28px;color:#344054}
.ci-rules li{margin:10px 0}
.ci-colors{margin:0}
.keyword--green{border-top-color:#40b93c}
.keyword--charcoal{border-top-color:#5e5b5c}
.keyword--white{border-top-color:#dfe5ec}
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin:34px 0 58px}
.stat{border:1px solid var(--line);border-radius:8px;padding:28px;text-align:center}
.stat .k{color:var(--muted);font-size:14px}
.stat .v{color:var(--navy);font-size:27px;font-weight:800;margin-top:8px}
/* Organization chart — full-width HTML/CSS vector chart */
.org-chart{
  --org-line:#b8c2d0;
  --org-box-h:52px;
  --org-ceo-w:min(240px,34%);
  --org-staff-w:min(220px,30%);
  --org-dept-gap:16px;
  display:block;
  width:100%;
  max-width:none;
  margin:28px 0 8px;
  padding:8px 0 4px;
  box-sizing:border-box;
}
.org-box{
  display:flex;
  align-items:center;
  justify-content:center;
  height:var(--org-box-h);
  padding:0 14px;
  box-sizing:border-box;
  border:1px solid rgba(15,23,42,.1);
  color:#2d3748;
  font-weight:700;
  font-size:clamp(14px,1.55vw,17px);
  letter-spacing:-.02em;
  line-height:1.2;
  text-align:center;
  white-space:nowrap;
}
.org-box--ceo{
  width:var(--org-ceo-w);
  margin:0 auto;
  background:linear-gradient(90deg,#f0d060 0%,#f7e9a8 55%,#fbf3c8 100%);
}
.org-box--staff{
  width:var(--org-staff-w);
  background:#d6eaf8;
}
.org-box--dept{
  width:100%;
  background:#fdebd0;
}
.org-chart__top{position:relative;z-index:1}
.org-chart__trunk{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
}
.org-chart__vline{
  display:block;
  width:1px;
  background:var(--org-line);
}
.org-chart__vline--upper{height:28px}
.org-chart__vline--lower{height:28px}
.org-chart__staff-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  width:100%;
  align-items:center;
}
.org-chart__staff-spacer{min-height:1px}
.org-chart__staff-branch{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:0;
}
.org-chart__hline--staff{
  display:block;
  width:clamp(28px,5vw,44px);
  height:1px;
  flex:0 0 auto;
  background:var(--org-line);
}
.org-chart__depts{
  position:relative;
  width:100%;
  margin-top:0;
}
.org-chart__bus{
  position:absolute;
  left:calc((100% - (3 * var(--org-dept-gap))) / 8);
  right:calc((100% - (3 * var(--org-dept-gap))) / 8);
  top:0;
  height:1px;
  background:var(--org-line);
}
.org-chart__dept-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:var(--org-dept-gap,16px);
}
.org-chart__dept-list > li{
  position:relative;
  margin:0;
  padding-top:28px;
  min-width:0;
}
.org-chart__dept-list > li::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:28px;
  background:var(--org-line);
  transform:translateX(-50%);
}
@media(max-width:720px){
  .org-chart{--org-box-h:46px;--org-dept-gap:10px}
  .org-box{font-size:13px;padding:0 8px;white-space:normal}
  .org-box--ceo{width:min(200px,48%)}
  .org-box--staff{width:min(180px,90%)}
}
@media(max-width:520px){
  .org-chart{--org-dept-gap:12px}
  .org-chart__dept-list{grid-template-columns:repeat(2,minmax(0,1fr))}
  .org-chart__bus{left:calc((100% - var(--org-dept-gap)) / 4);right:calc((100% - var(--org-dept-gap)) / 4)}
  .org-chart__dept-list > li:nth-child(n+3){padding-top:14px}
  .org-chart__dept-list > li:nth-child(n+3)::before{height:14px}
  .org-box--staff{width:min(160px,95%)}
}

/* Data tables — legacy ege.co.kr rules, continuous across each full row */
.clean-table{
  width:100%;
  border-collapse:collapse;
  border-spacing:0;
  font-size:15px;
  line-height:1.55;
}
.clean-table th,
.clean-table td{
  vertical-align:middle;
  padding:12px 8px;
  border:none;
  border-bottom:1px dashed #cdcdcd;
}
.clean-table th{
  color:#084299;
  font-weight:700;
  text-align:center;
  background:transparent;
  white-space:nowrap;
}
.clean-table td{
  color:var(--ink);
  text-align:center;
}
.clean-table td.tal,
.clean-table .tal{text-align:left}
/* IP tables — keep 구분/등록번호/등록일 (and rows) on one line; 내용 left-aligned */
.table-block{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.table-block .clean-table{
  font-size:14px;
  line-height:1.4;
  min-width:960px;
}
.table-block .clean-table th:nth-child(1),
.table-block .clean-table td:nth-child(1){
  white-space:nowrap;
  min-width:7.5em;
  width:7.5em;
}
.table-block .clean-table th:nth-child(2),
.table-block .clean-table td:nth-child(2){
  white-space:nowrap;
  min-width:11em;
}
.table-block .clean-table th:nth-child(3),
.table-block .clean-table td:nth-child(3){
  white-space:nowrap;
  min-width:4.5em;
}
.table-block .clean-table td:nth-child(4),
.table-block .clean-table td.tal{
  text-align:left;
  white-space:nowrap;
}
.table-block .clean-table th:nth-child(5),
.table-block .clean-table td:nth-child(5){
  white-space:nowrap;
  width:2.75em;
  min-width:2.75em;
  padding-left:4px;
  padding-right:4px;
}
/* Same top rule on every cell in the first row (th + td) */
.clean-table > tr:first-child > th,
.clean-table > tr:first-child > td,
.clean-table > thead > tr:first-child > th,
.clean-table > thead > tr:first-child > td,
.clean-table > tbody > tr:first-child > th,
.clean-table > tbody > tr:first-child > td{
  border-top:2px solid #4497eb;
}
/* Header band (thead): solid rule under header, spans all columns */
.clean-table > thead > tr:last-child > th,
.clean-table > thead > tr:last-child > td{
  border-bottom:2px solid #4497eb;
}
/* Continuous bottom rule on every cell in the last body/row */
.clean-table > tr:last-child > th,
.clean-table > tr:last-child > td,
.clean-table > tbody > tr:last-child > th,
.clean-table > tbody > tr:last-child > td{
  border-bottom:2px solid #4497eb;
}
.clean-table .view-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:0;
}
.clean-table .view-link img{
  width:16px;
  height:16px;
  display:block;
}
.clean-table .view-link:hover{opacity:.75}

/* IP certificate lightbox (pr/ip) */
html.ip-cert-modal-open{overflow:hidden}
.ip-cert-modal{
  position:fixed;
  inset:0;
  z-index:1200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
.ip-cert-modal[hidden]{display:none !important}
.ip-cert-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(12, 22, 38, .72);
}
.ip-cert-modal__dialog{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  width:min(560px, 100%);
  max-height:min(88vh, 900px);
  background:#fff;
  border-radius:4px;
  box-shadow:0 16px 48px rgba(0,0,0,.28);
  outline:none;
}
.ip-cert-modal__toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-shrink:0;
  padding:12px 14px 10px 16px;
  border-bottom:1px solid #e4e8ee;
}
.ip-cert-modal__title{
  margin:0;
  font-size:15px;
  font-weight:600;
  color:var(--navy);
  line-height:1.35;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ip-cert-modal__close{
  flex-shrink:0;
  width:36px;
  height:36px;
  margin:0;
  padding:0;
  border:0;
  border-radius:4px;
  background:transparent;
  color:#334155;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.ip-cert-modal__close:hover{background:#f1f5f9}
.ip-cert-modal__close:focus-visible{
  outline:2px solid #4497eb;
  outline-offset:2px;
}
.ip-cert-modal__body{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding:12px;
  text-align:center;
}
.ip-cert-modal__img{
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:min(72vh, 780px);
  margin:0 auto;
}
@media(max-width:620px){
  .ip-cert-modal__dialog{width:min(100%, 100vw - 24px); max-height:90vh}
  .ip-cert-modal__title{font-size:14px; white-space:normal}
  .ip-cert-modal__img{max-height:min(70vh, 640px)}
}
.clean-table + .clean-table,
.table-block + .table-block{margin-top:48px}
.table-block > h3{
  margin:0 0 18px;
  font-size:20px;
  color:var(--navy);
}
/* Key–value info tables — layout only; borders inherit continuous row rules */
.clean-table--kv th{
  width:180px;
  text-align:left;
  color:var(--navy);
  background:#fafbfc;
  white-space:normal;
  padding:14px 18px;
}
.clean-table--kv td{
  text-align:left;
  padding:14px 18px;
}

/* Company history timeline (회사개요 연혁) */
.history-list{
  list-style:none;
  margin:0;
  padding:0;
  border-top:2px solid var(--navy);
}
.history-list li{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:18px 24px;
  padding:15px 4px;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.history-list .y{
  color:var(--navy);
  font-weight:700;
  font-size:15px;
  letter-spacing:0.02em;
  white-space:nowrap;
}
.history-list .t{
  color:var(--ink);
  font-size:15px;
  line-height:1.55;
}
.history-list .t .sub{
  display:block;
  margin-top:4px;
  color:#546274;
  font-size:14px;
}
@media(max-width:620px){
  .history-list li{grid-template-columns:1fr;gap:6px;padding:14px 0}
}

.process{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.process .step{position:relative;border:1px solid var(--line);border-radius:8px;padding:24px 18px;min-height:130px}
.step b{display:block;color:var(--teal);margin-bottom:10px}
.category-row{display:grid;grid-template-columns:38% 1fr;gap:34px;padding:34px 0;border-bottom:1px solid var(--line);align-items:center}
.category-row img{width:100%;height:260px;object-fit:cover;border-radius:8px}
.category-row .num{color:var(--teal);font-size:26px;font-weight:800}
.link-list{display:flex;gap:12px 22px;flex-wrap:wrap;margin-top:22px}
.link-list a{border-bottom:1px solid var(--line);padding:8px 16px 8px 0;font-weight:600}
.note{border-left:4px solid var(--teal);background:#f1fbfa;padding:16px 18px;color:#344054;margin:24px 0}
.diagram{border:1px solid var(--line);border-radius:10px;padding:22px;margin-top:26px}
.chart-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.chart{border:1px solid var(--line);border-radius:8px;padding:22px;background:#fff}
.chart svg{width:100%;height:260px}
.footer{background:var(--navy);color:#fff;padding:42px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:30px}
.footer-logo{height:40px;width:auto;max-width:min(280px,70vw);object-fit:contain;display:block}
.footer-meta{flex:1;min-width:0}
.footer-aside{display:flex;flex-direction:column;align-items:flex-end;gap:14px;flex-shrink:0}
.family-site{position:relative;width:min(220px,100%);z-index:5}
.family-site__toggle{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  width:100%;padding:8px 12px;border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.06);color:#fff;font:inherit;font-size:13px;
  cursor:pointer;text-align:left
}
.family-site__toggle:hover,.family-site__toggle:focus-visible{
  background:rgba(255,255,255,.12);outline:2px solid rgba(64,185,60,.7);outline-offset:2px
}
.family-site__chevron{
  width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;
  border-top:6px solid #fff;flex-shrink:0;transition:transform .15s ease
}
.family-site.is-open .family-site__chevron{transform:rotate(180deg)}
.family-site__panel{
  position:absolute;left:0;right:0;bottom:100%;
  border:1px solid rgba(255,255,255,.25);background:#fff;box-shadow:0 8px 24px rgba(0,0,0,.28);
  overflow:hidden
}
.family-site__heading{
  background:#1f6fb2;color:#fff;font-size:13px;font-weight:700;
  padding:8px 12px;text-align:center
}
.family-site__list{list-style:none;margin:0;padding:0}
.family-site__list li{border-top:1px solid #e5e8ed}
.family-site__list a{
  display:block;padding:10px 12px;color:#172235;font-size:13px;text-decoration:none
}
.family-site__list a:hover,.family-site__list a:focus-visible{
  background:#f0f5fa;color:var(--navy);outline:none
}
.footer .policy{color:rgba(255,255,255,.88);white-space:nowrap}
.footer small{color:rgba(255,255,255,.78)}
.policy{border:1px solid rgba(255,255,255,.4);padding:10px 16px;border-radius:4px}
.placeholder{padding:34px;border:1px dashed #98a2b3;border-radius:8px;background:#fafafa;color:#667085}
.badge{display:inline-block;padding:4px 10px;border-radius:999px;background:#eaf8f6;color:#067a73;font-size:12px;font-weight:700}
.map-box{min-height:360px;height:auto;background:#fff;border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:#667085;border-radius:10px;padding:16px;overflow:auto}.map-box.map-embed{color:inherit}.map-box .root_daum_roughmap{max-width:100%}

@media(max-width:1440px){
  .hero{height:280px;min-height:280px}
}
@media(max-width:980px){
  :root{--header-h:72px}
  .top-nav{display:none}
  .header-inner{grid-template-columns:1fr auto;height:var(--header-h)}
  .logo{grid-column:auto}
  .header-actions,
  .header-inner > .menu-btn{grid-column:2}
  .mega{max-height:calc(100vh - var(--header-h));overflow:auto}
  .mega-grid{grid-template-columns:1fr;padding:24px 0}
  .mega-grid::before{display:none}
  .mega-grid>section{padding:0 0 22px;border-right:0;border-bottom:1px solid var(--line)}
  .mega-grid>section:last-of-type{border-bottom:0;padding-bottom:0}
  .mega-deco{display:none}
  .logo img{height:36px;width:auto;max-width:100%}
  .hero{height:280px;min-height:280px}
  .hero-content{padding:36px 0}
  .hero h1{font-size:42px}
  .hero p{font-size:18px}
  .hero-badge{font-size:12px;padding:5px 14px}
  .hero-fullscreen{min-height:calc(100vh - var(--header-h));height:auto;padding:72px 0 96px}
  .hero-rail{right:14px;gap:16px}
  .hero-rail-label{display:none}
  .hero-ground{font-size:clamp(40px,12vw,72px)}
  .hero-lead-ko{font-size:clamp(18px,4.2vw,26px);margin-top:16px}
  .hero-fullscreen-content{padding:28px 20px}
  .grid-5,.grid-4{grid-template-columns:repeat(2,1fr)}
  .page-grid{grid-template-columns:1fr}
  .ci-layout{grid-template-columns:1fr}
  .side-nav{border-right:0;border-bottom:1px solid var(--line);padding:0 0 22px}
  .feature-split,.wide-card,.category-row{grid-template-columns:1fr}
  .feature-title{font-size:32px}
  .process{grid-template-columns:1fr 1fr}
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .content{overflow-x:auto}
  .clean-table{min-width:640px}
  .clean-table--kv{min-width:0}
}
@media(max-width:620px){
  .container{width:min(100% - 30px,var(--max))}
  .hero{height:auto;min-height:230px}
  .hero-content{padding:28px 0;overflow:visible}
  .hero-badge{font-size:12px;padding:5px 14px;margin-bottom:12px;letter-spacing:.14em}
  .hero h1{font-size:34px;margin-bottom:10px}
  .hero p{font-size:16px}
  .page-body{padding:36px 0 70px}
  .hero-ground{font-size:clamp(34px,11vw,56px)}
  .hero-lead-ko{font-size:clamp(17px,4vw,22px);margin-top:14px}
  .scroll-cue{bottom:18px}
  .section{padding:64px 0}
  .section-title{font-size:28px}
  .grid-5,.grid-4,.grid-3,.grid-2,.split-cards,.chart-grid{grid-template-columns:1fr}
  .card img{height:220px}
  .feature-image{height:280px}
  .process,.stat-grid{grid-template-columns:1fr}
  .content > h2{font-size:30px}
  .footer-inner{align-items:flex-start;flex-direction:column}
  .footer-aside{align-items:stretch;width:100%}
  .family-site{width:100%}
  .category-row img{height:220px}
}
/* prefers-reduced-motion handled in motion.css (load after this file) */
