@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap");

:root {
  --site-header-height: 74px;
  --site-child-height: 54px;
}

html,
body {
  max-width: 100% !important;
  overflow-x: clip !important;
}

/* Shared header geometry: every page uses the same visual and interaction shell. */
body .header {
  position: sticky !important;
  top: 0 !important;
  z-index: 90 !important;
  width: 100% !important;
  height: 74px !important;
  min-height: 74px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(8,45,58,.08) !important;
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif !important;
}

body .site-shared-header,
body .site-shared-header * {
  box-sizing: border-box !important;
}

body .site-shared-header::before,
body .site-shared-header::after,
body .site-shared-header .site-header-inner::before,
body .site-shared-header .site-header-inner::after {
  display: none !important;
  content: none !important;
}

body .header.scrolled {
  box-shadow: 0 10px 32px rgba(8,45,58,.09) !important;
}

body .header .nav-bar {
  width: calc(100% - 48px) !important;
  max-width: none !important;
  height: 74px !important;
  min-height: 74px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 176px minmax(0, 1fr) 444px !important;
  align-items: center !important;
  gap: 32px !important;
}

body .header .brand {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 176px !important;
  width: 176px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .header .brand img {
  display: block !important;
  width: 176px !important;
  height: auto !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

body .header nav:has(> .gnb) {
  display: contents !important;
}

body .header .gnb {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  align-self: stretch !important;
  height: 74px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  list-style: none !important;
}

body .header .gnb > li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 74px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .header .gnb > li > a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  height: 74px !important;
  padding: 0 !important;
  color: #082d3a !important;
  font-family: "Archivo", "Pretendard", sans-serif !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: .005em !important;
  white-space: nowrap !important;
}

body .header .gnb > li > a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 3px !important;
  border-radius: 999px 999px 0 0 !important;
  background: linear-gradient(90deg,#05b1fb,#00a562) !important;
  opacity: 0 !important;
  transform: scaleX(.35) !important;
  transform-origin: center !important;
  transition: opacity .2s ease, transform .24s ease !important;
}

body .header .gnb > li.active > a,
body .header .gnb > li > a:hover {
  color: #00a562 !important;
}

body .header .gnb > li.active > a::after,
body .header .gnb > li > a:hover::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

body .header .nav-cta {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  justify-content: flex-end !important;
  width: 444px !important;
  margin: 0 !important;
  gap: 12px !important;
}

body .header .carbon-tree-wrap {
  position: relative !important;
  flex: 0 0 216px !important;
  width: 216px !important;
  height: 46px !important;
}

body .header .carbon-tree-wrap[hidden] { display: none !important; }

body .header .carbon-tree-ticker {
  --tree-accent: #00a562;
  --tree-a: #05b1fb;
  --tree-b: #00a562;
  --tree-shadow: rgba(0,165,98,.2);
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 34px minmax(66px,1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 5px 10px 5px 7px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0,165,98,.2) !important;
  border-radius: 999px !important;
  color: #073744 !important;
  background: linear-gradient(110deg,#effbf7,#fff) !important;
  box-shadow: 0 8px 22px rgba(0,140,102,.1) !important;
  text-decoration: none !important;
  transition: transform .22s ease, border-color .22s ease, opacity .15s ease !important;
}

body .header .carbon-tree-ticker[hidden] {
  display: none !important;
}

body .header .carbon-tree-ticker:hover {
  border-color: rgba(0,165,98,.48) !important;
  transform: translateY(-2px) !important;
}

body .header .carbon-tree-ticker.is-changing {
  opacity: .42 !important;
  transform: translateY(3px) !important;
}

body .header .carbon-tree-icon {
  position: relative !important;
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: linear-gradient(145deg,var(--tree-a),var(--tree-b)) !important;
  box-shadow: 0 6px 14px var(--tree-shadow) !important;
}

body .header .carbon-tree-icon::before {
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  top: 7px !important;
  width: 18px !important;
  height: 15px !important;
  border-radius: 50% 50% 44% 44% !important;
  background: #fff !important;
  box-shadow: -4px 4px 0 -1px #fff,4px 4px 0 -1px #fff !important;
}

body .header .carbon-tree-icon::after {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  top: 19px !important;
  width: 3px !important;
  height: 9px !important;
  border-radius: 2px !important;
  background: #fff !important;
}

body .header .carbon-tree-copy {
  min-width: 0 !important;
  line-height: 1 !important;
}

body .header .carbon-tree-copy small,
body .header .carbon-tree-copy strong {
  display: block !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body .header .carbon-tree-copy small {
  color: #628078 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
}

body .header .carbon-tree-copy strong {
  margin-top: 4px !important;
  color: #063641 !important;
  font-family: "Archivo", "Pretendard", sans-serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
}

body .header .carbon-tree-growth {
  align-self: center !important;
  color: var(--tree-accent) !important;
  font-family: "Archivo", sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

body .header .carbon-tree-ticker[data-resource="all"] { --tree-accent: #00a562; --tree-a: #05b1fb; --tree-b: #00a562; --tree-shadow: rgba(0,165,98,.22); }
body .header .carbon-tree-ticker[data-resource="bottle"] { --tree-accent: #168fd8; --tree-a: #55bcff; --tree-b: #167acb; --tree-shadow: rgba(22,122,203,.24); }
body .header .carbon-tree-ticker[data-resource="cup"] { --tree-accent: #ef8428; --tree-a: #ffbd62; --tree-b: #f36f20; --tree-shadow: rgba(243,111,32,.24); }
body .header .carbon-tree-ticker[data-resource="can"] { --tree-accent: #c99d00; --tree-a: #ffe25b; --tree-b: #d7a900; --tree-shadow: rgba(215,169,0,.25); }

body .header .carbon-tree-trend {
  --trend-accent: #00a562;
  position: absolute !important;
  top: 54px !important;
  right: 0 !important;
  z-index: 130 !important;
  width: 372px !important;
  padding: 22px 21px 19px !important;
  overflow: hidden !important;
  border: 1px solid color-mix(in srgb,var(--trend-accent) 22%,#dce8e5) !important;
  border-radius: 24px !important;
  color: #073744 !important;
  background: linear-gradient(145deg,#fff 0%,#f8fcfb 62%,color-mix(in srgb,var(--trend-accent) 7%,#fff) 100%) !important;
  box-shadow: 0 26px 70px rgba(4,46,57,.22),0 8px 24px color-mix(in srgb,var(--trend-accent) 10%,transparent) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) scale(.98) !important;
  transform-origin: top right !important;
  transition: opacity .22s ease,transform .22s ease,visibility .22s !important;
}

body .header .carbon-tree-trend::before { content:"" !important;position:absolute !important;inset:0 0 auto !important;height:4px !important;background:linear-gradient(90deg,var(--trend-accent),color-mix(in srgb,var(--trend-accent) 30%,#05b1fb),transparent) !important; }

body .header .carbon-tree-trend[hidden] { display: none !important; }
body .header .carbon-tree-wrap:hover .carbon-tree-trend,
body .header .carbon-tree-wrap:focus-within .carbon-tree-trend {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}
body .header .carbon-tree-trend[data-resource="bottle"] { --trend-accent:#168fd8; }
body .header .carbon-tree-trend[data-resource="cup"] { --trend-accent:#ef8428; }
body .header .carbon-tree-trend[data-resource="can"] { --trend-accent:#c99d00; }
body .header .carbon-tree-trend header { display:flex !important;align-items:flex-start !important;justify-content:space-between !important;gap:12px !important; }
body .header .carbon-tree-trend header div { min-width:0 !important; }
body .header .carbon-tree-trend header small { display:block !important;color:var(--trend-accent) !important;font:800 8px/1.2 "JetBrains Mono",monospace !important;letter-spacing:.1em !important;text-transform:uppercase !important; }
body .header .carbon-tree-trend header strong { display:block !important;margin-top:6px !important;color:#082f39 !important;font-size:17px !important;font-weight:900 !important;letter-spacing:-.045em !important; }
body .header .carbon-tree-trend header strong::before { content:"" !important;display:inline-block !important;width:8px !important;height:8px !important;margin:0 8px 2px 0 !important;border-radius:50% !important;background:#ff3d4f !important;box-shadow:0 0 0 4px rgba(255,61,79,.12) !important;animation:site-live-pulse 1.8s ease-out infinite !important; }
body .header .carbon-tree-trend header>b { align-self:center !important;padding:8px 11px !important;border-radius:999px !important;color:var(--trend-accent) !important;background:color-mix(in srgb,var(--trend-accent) 9%,#fff) !important;font:900 14px/1 "Archivo","Pretendard",sans-serif !important;white-space:nowrap !important; }
body .header .carbon-trend-chart { position:relative !important;display:grid !important;grid-template-columns:repeat(10,1fr) !important;align-items:end !important;gap:7px !important;height:130px !important;margin-top:18px !important;padding:12px 2px 0 !important;border-bottom:1px solid color-mix(in srgb,var(--trend-accent) 18%,#dbe8e5) !important;background:repeating-linear-gradient(to bottom,rgba(9,43,53,.05) 0 1px,transparent 1px 34px) !important; }
body .header .carbon-trend-point { position:relative !important;display:grid !important;grid-template-rows:1fr 22px !important;align-items:end !important;gap:6px !important;height:100% !important;min-width:0 !important; }
body .header .carbon-trend-point i { display:block !important;width:100% !important;height:var(--trend-height) !important;min-height:5px !important;border-radius:7px 7px 2px 2px !important;background:linear-gradient(to top,color-mix(in srgb,var(--trend-accent) 56%,#fff),var(--trend-accent)) !important;box-shadow:0 5px 13px color-mix(in srgb,var(--trend-accent) 13%,transparent) !important;transition:filter .18s ease,transform .18s ease !important; }
body .header .carbon-trend-point:hover i { filter:saturate(1.2) brightness(.98) !important;transform:translateY(-2px) !important; }
body .header .carbon-trend-point:last-child i { box-shadow:0 0 0 3px color-mix(in srgb,var(--trend-accent) 10%,transparent),0 7px 18px color-mix(in srgb,var(--trend-accent) 25%,transparent) !important; }
body .header .carbon-trend-point small { color:#6d8588 !important;font:750 8px/1 "Archivo",sans-serif !important;letter-spacing:-.02em !important;text-align:center !important;white-space:nowrap !important; }

@media (max-width: 1250px) {
  body .header .nav-cta .lang {
    display: none !important;
  }

  body .header .quick {
    width: 124px !important;
    padding: 0 13px !important;
  }

  body .header .quick .ext {
    display: none !important;
  }

  body .header .carbon-tree-ticker {
    width: 100% !important;
  }

  body .header .carbon-tree-wrap { flex-basis:184px !important;width:184px !important; }

  body .header .nav-bar {
    grid-template-columns: 176px minmax(0, 1fr) 320px !important;
    gap: 22px !important;
  }

  body .header .nav-cta {
    width: 320px !important;
  }
}

body .header .lang {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 72px !important;
  width: 72px !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 15px !important;
  border: 1px solid #d8e5e3 !important;
  border-radius: 999px !important;
  color: #607780 !important;
  background: rgba(255,255,255,.84) !important;
  font-family: "Archivo", "Pretendard", sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body .header .lang b { color: #008f6b !important; }

body .header .quick {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 46px !important;
  width: 132px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  gap: 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: linear-gradient(100deg,#05b1fb 0%,#00a562 92%) !important;
  box-shadow: 0 10px 24px rgba(0,165,98,.2) !important;
  font-family: "Archivo", "Pretendard", sans-serif !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}

body .header .quick:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(0,165,98,.28) !important;
}

body .header .quick svg {
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
}

body .header .quick .ext {
  margin-left: 1px !important;
  font-size: 11px !important;
  opacity: .82 !important;
}

@media (max-width: 1250px) {
  body .header .quick {
    width: 124px !important;
    padding: 0 13px !important;
  }

  body .header .quick .ext {
    display: none !important;
  }
}

body .header .hamburger {
  display: none !important;
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 0 0 auto !important;
  padding: 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

body .header .hamburger span {
  display: block !important;
  width: 26px !important;
  height: 2px !important;
  margin: 5px 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #082d3a !important;
  transform: none !important;
  opacity: 1 !important;
}

body.site-subpage .header .gnb .mega {
  display: none !important;
  pointer-events: none !important;
}

.site-child-nav {
  position: sticky !important;
  top: var(--site-header-height) !important;
  z-index: 55 !important;
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #dce8e7 !important;
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: transform .28s ease, opacity .22s ease, visibility .22s ease !important;
  will-change: transform;
}

.site-child-nav > .wrap,
.site-child-nav > .subnav-inner {
  box-sizing: border-box !important;
  width: min(1180px, calc(100% - 48px)) !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(26px, 3.4vw, 52px) !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none !important;
}

.site-child-nav > .wrap::-webkit-scrollbar,
.site-child-nav > .subnav-inner::-webkit-scrollbar { display: none !important; }

.site-child-nav a {
  position: relative !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #607780 !important;
  background: transparent !important;
  font-family: "Archivo", "Pretendard", sans-serif !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
}

.site-child-nav a:hover,
.site-child-nav a.active {
  color: #00a562 !important;
}

.site-child-nav a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 0 !important;
  width: 0 !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,#05b1fb,#00a562) !important;
  transform: translateX(-50%) !important;
  transition: width .2s ease !important;
}

.site-child-nav a:hover::after,
.site-child-nav a.active::after {
  width: 100% !important;
}

.site-child-nav.site-child-nav--hidden {
  transform: translateY(calc(-100% - 2px)) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.site-menu-open { overflow: hidden !important; }

body .mobile {
  position: fixed !important;
  inset: 0 !important;
  z-index: 300 !important;
  display: block !important;
  width: 100% !important;
  height: 100dvh !important;
  padding: 0 !important;
  color: #082d3a !important;
  background: #fff !important;
  overflow-y: auto !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(100%) !important;
  transition: transform .3s ease, opacity .24s ease, visibility .3s !important;
}

body .mobile.open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

body .mobile .site-mobile-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 92px !important;
  min-height: 92px !important;
  padding: 0 clamp(24px, 4vw, 48px) !important;
  border-bottom: 1px solid #dce8e7 !important;
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(14px) !important;
}

body .mobile .site-mobile-top img {
  display: block !important;
  width: 176px !important;
  height: auto !important;
  filter: none !important;
}

body .mobile .site-mobile-close {
  display: grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  padding: 0 !important;
  border: 0 !important;
  color: #000 !important;
  background: transparent !important;
  font-family: Arial, sans-serif !important;
  font-size: 46px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.site-mobile-menu {
  padding: 46px clamp(24px, 4vw, 48px) 70px;
}

.site-mobile-menu .mitem {
  border-bottom: 1px solid #d6e4e3 !important;
}

.site-mobile-menu .mitem > button {
  box-sizing: border-box;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-height: 94px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #082d3a !important;
  background: transparent !important;
  font-family: "Archivo", "Pretendard", sans-serif !important;
  font-size: clamp(1.45rem, 3vw, 2rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: left !important;
  cursor: pointer !important;
}

.site-mobile-menu .mitem > button span {
  min-width: 28px;
  color: #082d3a;
  font-size: 1.55rem;
  text-align: center;
}

.site-mobile-menu .msub {
  display: none !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 34px !important;
  padding: 0 0 24px !important;
}

.site-mobile-menu .mitem.open .msub { display: grid !important; }

.site-mobile-menu .msub a {
  display: block !important;
  padding: 11px 0 !important;
  color: #607780 !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}

.site-mobile-menu .msub a:hover { color: #00a562 !important; }

.site-footer-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-global-cta {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 84px 0 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% -25%, rgba(5,177,251,.13), transparent 45%),
    #062d3a;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

.site-global-cta,
.site-global-cta * {
  box-sizing: border-box;
}

.site-global-cta .site-footer-wrap {
  width: min(1180px, calc(100% - 48px));
}

.site-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 24px;
  color: #19baf2;
  font-family: "Archivo", "Pretendard", sans-serif;
  font-size: clamp(.72rem, .9vw, .86rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
}

.site-cta-eyebrow i {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #05b1fb, #00a562);
}

.site-global-cta h2 {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
  font-family: "Archivo", "Pretendard", sans-serif;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.045em;
  word-break: keep-all;
  text-wrap: balance;
}

.site-global-cta h2 span {
  color: transparent;
  background: linear-gradient(100deg, #05b1fb 0%, #00a562 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.site-global-cta p {
  max-width: 880px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(.98rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  word-break: keep-all;
}

.site-global-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 212px;
  min-height: 58px;
  margin-top: 38px;
  padding: 17px 30px;
  border-radius: 999px;
  color: #062d3a;
  background: #fff;
  font-size: 1rem;
  font-weight: 850;
  box-shadow: 0 15px 40px rgba(0,0,0,.16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.site-global-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(0,0,0,.24);
}

.site-global-cta a:focus-visible {
  outline: 3px solid rgba(5,177,251,.52);
  outline-offset: 5px;
}

.site-global-cta a:active { transform: translateY(-1px); }

.site-global-cta a b {
  font-size: 1.35em;
  line-height: 1;
  transition: transform .2s ease;
}

.site-global-cta a:hover b { transform: translateX(4px); }

.site-global-cta small {
  display: block;
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(255,255,255,.48);
  font-size: .88rem;
  line-height: 1.65;
  word-break: keep-all;
}

.site-global-footer {
  position: relative;
  padding: 58px 0 30px;
  color: rgba(255,255,255,.62);
  background: linear-gradient(145deg, #082f3b 0%, #063642 100%);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

.site-global-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #05b1fb 0%, #00a562 68%, transparent 100%);
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(580px, 1.55fr);
  gap: clamp(56px, 7vw, 108px);
  align-items: start;
}

.site-footer-brand img {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
}

.site-footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
  line-height: 1.75;
  word-break: keep-all;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 30px;
}

.site-footer-nav a {
  position: relative;
  min-height: 0;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  transition: color .2s ease;
}

.site-footer-nav a::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #05b1fb, #00a562);
  opacity: 0;
  transform: scaleX(.5);
  transform-origin: left;
  transition: opacity .2s ease, transform .2s ease;
}

.site-footer-nav a:hover {
  color: #55e3c0;
}

.site-footer-nav a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-footer-nav strong {
  display: block;
  font-family: "Archivo", "Pretendard", sans-serif;
  font-size: .86rem;
  letter-spacing: .055em;
}

.site-footer-nav span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  line-height: 1.5;
  word-break: keep-all;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.45);
  font-size: .73rem;
  line-height: 1.85;
}

.site-footer-bottom p { margin: 0; }
.site-footer-bottom a { margin-left: 18px; color: rgba(255,255,255,.72); }
.site-footer-bottom a:hover { color: #55e3c0; }

.site-backtop {
  position: absolute;
  right: max(28px, calc((100vw - 1420px) / 2));
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #05b1fb, #00a562);
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,165,98,.23);
  transition: transform .22s ease;
}

.site-backtop:hover { transform: translateY(-5px); }
.site-backtop span { display: block; margin-bottom: -12px; font-size: 1.15rem; }

/* 페이지별 기존 버튼과 푸터 고정 버튼을 하나의 공통 스크롤 버튼으로 대체합니다. */
body > .global-top,
body > .to-top,
body > .site-backtop,
.site-global-footer > .site-backtop {
  display: none !important;
}

.site-global-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #05b1fb 0%, #00a562 100%);
  box-shadow: 0 14px 35px rgba(0,165,98,.26);
  font-family: "Archivo", "Pretendard", sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, visibility .25s, transform .25s, box-shadow .25s;
}

.site-global-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.site-global-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,165,98,.34);
}

.site-global-top:focus-visible {
  outline: 3px solid rgba(5,177,251,.38);
  outline-offset: 3px;
}

.site-global-top span {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: .8;
}

.site-global-top b {
  font: inherit;
  font-size: 9px;
  letter-spacing: .08em;
}

.site-mobile-petmon {
  position: fixed;
  right: 28px;
  bottom: 90px;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(110deg,#05b1fb 0%,#00a562 92%);
  box-shadow: 0 13px 30px rgba(0,145,107,.25);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity .25s,visibility .25s,transform .25s,box-shadow .25s;
}

.site-mobile-petmon.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.site-mobile-petmon:active { transform: scale(.96); }
.site-mobile-petmon:focus-visible { outline: 3px solid rgba(5,177,251,.38);outline-offset:3px; }
.site-mobile-petmon svg { width:25px;height:25px;display:block; }

/* Tablet and compact desktop widths use the stable mobile-style header. */
@media (min-width: 901px) and (max-width: 1399px) {
  :root {
    --site-header-height: 68px;
    --site-child-height: 52px;
  }

  .site-mobile-petmon { display:inline-flex; }

  body .header {
    height:68px !important;
    min-height:68px !important;
  }

  body .header .nav-bar {
    width:min(100% - 40px,1180px) !important;
    height:68px !important;
    min-height:68px !important;
    display:flex !important;
    gap:clamp(10px,1.4vw,18px) !important;
  }

  body .header .brand {
    flex:0 0 clamp(150px,14vw,176px) !important;
    width:clamp(150px,14vw,176px) !important;
  }

  body .header .brand img { width:100% !important; }
  body .header .gnb { display:none !important; }
  body .header .nav-cta .lang { display:none !important; }
  body .header .nav-cta {
    width:auto !important;
    margin-left:auto !important;
    justify-content:flex-end !important;
    gap:clamp(8px,1vw,12px) !important;
  }

  body .header .carbon-tree-wrap {
    flex:0 0 clamp(170px,18vw,216px) !important;
    width:clamp(170px,18vw,216px) !important;
  }

  body .header .carbon-tree-ticker { width:100% !important; }
  body .header .carbon-tree-trend { display:none !important; }
  body .header .quick {
    width:clamp(42px,3.4vw,46px) !important;
    height:clamp(42px,3.4vw,46px) !important;
    padding:0 !important;
  }
  body .header .quick .qlabel,
  body .header .quick .ext { display:none !important; }
  body .header .hamburger { display:block !important;margin-left:0 !important; }

  .site-child-nav {
    height:52px !important;
    min-height:52px !important;
  }
}

@media (max-width: 900px) {
  :root {
    --site-header-height: 68px;
    --site-child-height: 52px;
  }

  .site-mobile-petmon { display:inline-flex; }

  body .header {
    height: 68px !important;
    min-height: 68px !important;
  }

  body .header .nav-bar {
    width: min(100% - 32px, 1180px) !important;
    max-width: none !important;
    height: 68px !important;
    min-height: 68px !important;
    display: flex !important;
    gap: 14px !important;
  }

  body .header .brand {
    flex-basis: 150px !important;
    width: 150px !important;
  }

  body .header .brand img { width: 150px !important; }
  body .header .gnb { display: none !important; }
  body .header .nav-cta .lang { display: none !important; }
  body .header .nav-cta { width: auto !important; margin-left: auto !important; justify-content: flex-end !important; }
  body .header .carbon-tree-ticker {
    width: 100% !important;
  }
  body .header .carbon-tree-wrap { flex-basis:150px !important;width:150px !important; }
  body .header .carbon-tree-trend { display:none !important; }
  body .header .quick {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
  }
  body .header .quick .qlabel,
  body .header .quick .ext { display: none !important; }
  body .header .hamburger { display: block !important; margin-left: 0 !important; }

  .site-child-nav {
    height: 52px !important;
    min-height: 52px !important;
  }

  .site-child-nav > .wrap,
  .site-child-nav > .subnav-inner {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    justify-content: flex-start !important;
    gap: 28px !important;
    padding: 0 20px !important;
  }

  .site-child-nav a { height: 52px !important; }

  .site-global-cta {
    min-height: 470px;
    padding: 66px 0 70px;
  }
  .site-global-cta h2 {
    max-width: 760px;
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .site-global-cta p { max-width: 620px; }
  .site-footer-main { grid-template-columns: 1fr; gap: 42px; }
  .site-footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer-bottom { flex-direction: column; }
  .site-backtop { position: static; margin: 34px auto 0; }

}

@media (max-width: 560px) {
  body .header .brand {
    flex-basis: 132px !important;
    width: 132px !important;
  }

  body .header .brand img { width: 132px !important; }
  body .header .nav-bar { gap: 9px !important; }
  body .header .nav-cta { gap: 7px !important; }
  body .header .carbon-tree-ticker {
    position: relative !important;
    grid-template-columns: 28px 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    height: 42px !important;
    padding: 5px 7px !important;
  }
  body .header .carbon-tree-wrap { flex-basis:116px !important;width:116px !important;height:42px !important; }
  body .header .carbon-tree-icon {
    width: 28px !important;
    height: 28px !important;
  }
  body .header .carbon-tree-icon::before { left: 7px !important; top: 6px !important; width: 14px !important; height: 12px !important; }
  body .header .carbon-tree-icon::after { left: 13px !important; top: 16px !important; height: 8px !important; }
  body .header .carbon-tree-copy small { display: none !important; }
  body .header .carbon-tree-copy strong { margin: 12px 0 0 !important; font-size: 10px !important; }
  body .header .carbon-tree-growth { position: absolute !important; top: 6px !important; right: 9px !important; font-size: 10px !important; }
  body .mobile .site-mobile-top { height: 76px !important; min-height: 76px !important; padding: 0 20px !important; }
  body .mobile .site-mobile-top img { width: 150px !important; }
  body .mobile .site-mobile-close { width: 42px !important; height: 42px !important; font-size: 40px !important; }
  .site-mobile-menu { padding: 26px 20px 54px; }
  .site-mobile-menu .mitem > button { min-height: 76px !important; font-size: 1.25rem !important; }
  .site-mobile-menu .msub { grid-template-columns: 1fr !important; }

  .site-footer-wrap { width: min(100% - 32px, 1180px); }
  .site-global-cta {
    min-height: 0;
    padding: 56px 0 60px;
  }
  .site-global-cta .site-footer-wrap { width: min(100% - 32px, 1180px); }
  .site-cta-eyebrow {
    gap: 10px;
    margin-bottom: 20px;
    font-size: .65rem;
    letter-spacing: .1em;
  }
  .site-cta-eyebrow i { width: 28px; }
  .site-global-cta h2 {
    max-width: 480px;
    font-size: clamp(1.85rem, 9.4vw, 2.5rem);
    line-height: 1.22;
    letter-spacing: -.04em;
  }
  .site-global-cta h2 span { display: inline; }
  .site-global-cta p {
    max-width: 460px;
    margin-top: 22px;
    font-size: .93rem;
    line-height: 1.72;
  }
  .site-global-cta a {
    width: min(100%, 238px);
    min-width: 0;
    min-height: 54px;
    margin-top: 30px;
    padding: 14px 22px;
    font-size: .94rem;
  }
  .site-global-cta small {
    max-width: 440px;
    margin-top: 24px;
    font-size: .78rem;
    line-height: 1.65;
  }
  .site-global-footer { padding-top: 48px; }
  .site-footer-nav { grid-template-columns: 1fr; }
  .site-footer-nav a { min-height: 0; }
}

/* Site-wide managed notice popup */
.site-notice-popup { position:fixed;inset:0;z-index:3000;display:grid;place-items:center;padding:24px;opacity:0;visibility:hidden;transition:opacity .24s ease,visibility .24s ease; }
.site-notice-popup.is-open { opacity:1;visibility:visible; }
.site-popup-backdrop { position:absolute;inset:0;background:rgba(3,25,32,.58);backdrop-filter:blur(8px); }
.site-popup-card { position:relative;width:min(520px,100%);max-height:min(760px,calc(100vh - 48px));overflow:auto;border:1px solid rgba(255,255,255,.55);border-radius:28px;background:#fff;box-shadow:0 34px 90px rgba(1,26,33,.34);transform:translateY(18px) scale(.98);transition:transform .26s ease; }
.site-notice-popup.is-open .site-popup-card { transform:none; }
.site-popup-close { position:absolute;top:13px;right:13px;z-index:2;display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(8,43,53,.12);border-radius:50%;color:#0a3540;background:rgba(255,255,255,.92);font-size:25px;line-height:1;cursor:pointer;box-shadow:0 5px 16px rgba(5,35,43,.1); }
.site-popup-media:empty { display:none; }
.site-popup-image { display:block;width:100%;max-height:430px;object-fit:contain;background:#f1f7f5; }
.site-popup-pdf { display:block;width:100%;height:min(500px,56vh);border:0;background:#edf4f2; }
.site-popup-copy { padding:27px 30px 25px; }
.site-popup-copy>small { color:#00a77d;font:800 10px/1 "JetBrains Mono",monospace;letter-spacing:.14em; }
.site-popup-copy h2 { margin:9px 0 0;color:#082f39;font:850 clamp(1.4rem,3vw,2rem)/1.2 "Pretendard",sans-serif;letter-spacing:-.045em; }
.site-popup-copy p { margin:12px 0 0;color:#637a7f;font-size:14px;line-height:1.7;white-space:pre-line; }
.site-popup-copy a { display:inline-flex;align-items:center;gap:8px;margin-top:18px;color:#008e70;font-size:13px;font-weight:850;text-decoration:none; }
.site-popup-card footer { display:grid;grid-template-columns:1fr 1fr auto;border-top:1px solid rgba(9,43,53,.1); }
.site-popup-card footer button { min-height:50px;padding:0 14px;border:0;border-right:1px solid rgba(9,43,53,.09);color:#60787d;background:#f8fbfa;font-size:12px;font-weight:750;cursor:pointer; }
.site-popup-card footer button:last-child { border-right:0;color:#073743;background:#fff; }
@media(max-width:560px){.site-notice-popup{padding:16px}.site-popup-card{max-height:calc(100vh - 32px);border-radius:22px}.site-popup-copy{padding:23px 21px 20px}.site-popup-card footer{grid-template-columns:1fr 1fr}.site-popup-card footer button{font-size:11px}.site-popup-card footer button:last-child{grid-column:1/-1;border-top:1px solid rgba(9,43,53,.09)}}
@media(prefers-reduced-motion:reduce){.site-notice-popup,.site-popup-card{transition:none!important}}
@keyframes site-live-pulse{0%,45%{box-shadow:0 0 0 4px rgba(255,61,79,.14)}75%,100%{box-shadow:0 0 0 9px rgba(255,61,79,0)}}
@media(prefers-reduced-motion:reduce){body .header .carbon-tree-trend header strong::before{animation:none!important}}

@media (max-width: 420px) {
  body .header .quick { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .site-child-nav {
    transition: none !important;
  }
  .site-global-top { transition: none; }
  .site-mobile-petmon { transition: none; }
}

@media (max-width: 640px) {
  .site-global-top {
    right: 16px;
    bottom: 16px;
  }
  .site-mobile-petmon { right:16px;bottom:78px; }
}

/*
 * Scroll entrances are activated only after the shared observer is ready.
 * Without JavaScript the content remains readable instead of staying hidden.
 */
body main .reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.site-reveal-ready main .reveal:not(.in) {
  opacity: 0 !important;
  visibility: visible !important;
  transform: var(--reveal-transform, translateY(28px)) !important;
}

body.site-reveal-ready main .reveal.in {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition:
    opacity .7s ease var(--site-reveal-delay, 0ms),
    transform .7s cubic-bezier(.22, .7, .2, 1) var(--site-reveal-delay, 0ms) !important;
}

/* The current PLATFORM story intentionally keeps the archived drafts hidden. */
body.site-page-platform main > .eco-section {
  display: block !important;
}

.site-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  padding: 11px 16px;
  border-radius: 999px;
  background: #082f3d;
  color: #fff;
  box-shadow: 0 12px 32px rgba(8, 47, 61, .22);
  font-size: .8rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}

.site-copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

a[href^="mailto:"]:not(.mail-button) {
  cursor: copy;
}

@media (max-width: 760px) {
  .site-copy-toast {
    bottom: 20px;
  }
}

/* Shared right-side section navigator (ABOUT / PLATFORM / LINE-UP / REHAN NOW). */
.section-progress {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, .8vh, 7px);
  max-height: calc(100vh - 190px);
  padding: clamp(8px, 1.2vh, 11px) 8px;
  border: 1px solid rgba(8, 57, 71, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 35px rgba(7, 57, 71, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.section-progress a {
  display: grid;
  place-items: center;
  width: clamp(21px, 3.2vh, 25px);
  height: clamp(21px, 3.2vh, 25px);
  flex: 0 0 auto;
  border-radius: 50%;
  color: #789099;
  font: 800 clamp(7px, 1vh, 8px)/1 "Archivo", "Pretendard", sans-serif;
  text-decoration: none;
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.section-progress a:hover,
.section-progress a:focus-visible {
  color: #00a562;
  transform: scale(1.08);
  outline: none;
}

.section-progress a:focus-visible {
  box-shadow: 0 0 0 3px rgba(5, 177, 251, .18);
}

.section-progress a.active {
  color: #fff;
  background: linear-gradient(135deg, #05b1fb, #00a562);
  box-shadow: 0 7px 16px rgba(0, 165, 98, .2);
}

@media (max-width: 1100px) {
  .section-progress { right: 8px; }
}

@media (max-width: 760px), (max-height: 560px) {
  .section-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .section-progress a { transition: none; }
}
