:root {
  --ks-blue: #0759ff;
  --ks-blue-deep: #0345d8;
  --ks-cyan: #00e8f5;
  --ks-orange: #ff5c13;
  --ks-navy: #08132e;
  --ks-ink: #111a2f;
  --ks-slate: #526078;
  --ks-muted: #8792a6;
  --ks-paper: #f8fafc;
  --ks-line: #e4e9f1;
  --ks-white: #fff;
  --ks-body: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ks-display: "Barlow Condensed", "Arial Narrow", var(--ks-body);
  --ks-header: 76px;
  --ks-gutter: clamp(20px, 4vw, 64px);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--ks-header) + 18px); }
body { margin: 0; color: var(--ks-ink); background: var(--ks-white); font-family: var(--ks-body); -webkit-font-smoothing: antialiased; }
body.ks-menu-open, body.ks-modal-open { overflow: hidden; }
body > .site-header, body > .header-spacer, body > .quick-menu, body > .site-footer { display: none !important; }
body > main { display: block; width: 100%; max-width: none; margin: 0; padding: 0; overflow: visible; }
body > main > .subhero, body > main > .m-subnav, body > main > .subhero-tabs { display: none !important; }
body > main > .ks-site { width: 100%; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.ks-site { min-height: 100vh; overflow: clip; background: var(--ks-white); }
.ks-site ::selection { color: var(--ks-navy); background: var(--ks-cyan); }
.ks-site :focus-visible { outline: 3px solid var(--ks-orange); outline-offset: 3px; }
.ks-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--ks-header); color: var(--ks-white); border-bottom: 1px solid rgba(255,255,255,.18); transition: background .28s ease, color .28s ease, box-shadow .28s ease; }
.ks-header.is-scrolled { color: var(--ks-ink); background: rgba(255,255,255,.95); border-bottom-color: rgba(8,19,46,.08); box-shadow: 0 10px 35px rgba(8,19,46,.08); backdrop-filter: blur(16px); }
.ks-header__bar { width: min(1380px, 100%); height: 100%; display: grid; grid-template-columns: minmax(174px, 250px) 1fr auto; align-items: center; gap: clamp(20px, 2.4vw, 38px); margin: 0 auto; padding: 0 28px; }
.ks-brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; white-space: nowrap; }
.ks-brand__mark { display: grid; place-items: center; width: 40px; height: 40px; color: var(--ks-white); background: var(--ks-blue); border-radius: 12px; box-shadow: 0 8px 22px rgba(7,89,255,.28); font-family: var(--ks-display); font-size: 27px; font-weight: 900; font-style: italic; line-height: 1; }
.ks-brand__copy { display: grid; }
.ks-brand__copy b { font-family: var(--ks-display); font-size: 21px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.ks-brand__copy em { color: var(--ks-cyan); font-style: normal; }
.ks-header.is-scrolled .ks-brand__copy em, .ks-footer .ks-brand__copy em { color: var(--ks-blue); }
.ks-brand__copy small { margin-top: 4px; font-size: 7px; font-weight: 800; letter-spacing: .18em; opacity: .78; }
.ks-nav { justify-self: center; height: 100%; }
.ks-nav > ul { display: flex; align-items: stretch; gap: clamp(14px, 1.65vw, 28px); height: 100%; padding: 0; margin: 0; list-style: none; }
.ks-nav__item { position: relative; display: flex; align-items: center; }
.ks-nav__link { position: relative; display: flex; align-items: center; height: 100%; color: inherit; text-decoration: none; font-size: 13px; font-weight: 750; letter-spacing: -.03em; white-space: nowrap; opacity: .96; }
.ks-nav__link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--ks-cyan); transition: right .23s ease; }
.ks-header.is-scrolled .ks-nav__link::after { background: var(--ks-blue); }
.ks-nav__item:hover .ks-nav__link::after, .ks-nav__item:focus-within .ks-nav__link::after { right: 0; }
.ks-nav__toggle { display: none; }
.ks-nav__dropdown { position: absolute; top: calc(100% - 6px); left: 50%; width: 230px; padding: 10px; color: var(--ks-ink); background: rgba(255,255,255,.98); border: 1px solid var(--ks-line); border-radius: 16px; transform: translate(-50%, 12px); opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .18s ease, transform .2s ease, visibility .2s; box-shadow: 0 20px 60px rgba(8,19,46,.16); }
.ks-nav__item:hover .ks-nav__dropdown, .ks-nav__item:focus-within .ks-nav__dropdown { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; visibility: visible; }
.ks-nav__dropdown-line { display: none; }
.ks-nav__dropdown ul { margin: 0; padding: 0; list-style: none; }
.ks-nav__dropdown li + li { border-top: 1px solid var(--ks-line); }
.ks-nav__dropdown a { display: flex; justify-content: space-between; gap: 15px; padding: 11px 10px; color: var(--ks-slate); text-decoration: none; border-radius: 9px; font-size: 13px; }
.ks-nav__dropdown a b { color: var(--ks-blue); opacity: 0; transform: translateX(-5px); transition: .18s ease; }
.ks-nav__dropdown a:hover { color: var(--ks-blue); background: #f2f6ff; }
.ks-nav__dropdown a:hover b { opacity: 1; transform: none; }
.ks-header__tools { display: flex; align-items: center; gap: 9px; }
.ks-header-cta, .ks-lang { display: inline-flex; align-items: center; justify-content: center; min-height: 39px; padding: 0 13px; text-decoration: none; border-radius: 10px; font-size: 11px; font-weight: 800; white-space: nowrap; }
.ks-header-cta { gap: 7px; color: var(--ks-white); background: var(--ks-blue); box-shadow: 0 9px 24px rgba(7,89,255,.26); }
.ks-header-cta:hover { background: var(--ks-blue-deep); }
.ks-lang { gap: 4px; color: inherit; border: 1px solid rgba(255,255,255,.42); }
.ks-header.is-scrolled .ks-lang { border-color: var(--ks-line); }
.ks-lang span { color: var(--ks-cyan); }
.ks-header.is-scrolled .ks-lang span { color: var(--ks-blue); }
.ks-menu-button { display: none; width: 44px; height: 44px; padding: 0; color: inherit; background: none; border: 0; cursor: pointer; }
.ks-menu-button span { display: block; width: 25px; height: 2px; margin: 6px auto; background: currentColor; }
.ks-drawer, .ks-drawer-backdrop { display: none; }
.ks-footer { padding: clamp(58px, 7vw, 88px) var(--ks-gutter) 28px; color: #c6cede; background: var(--ks-navy); }
.ks-footer__grid { width: min(1260px, 100%); display: grid; grid-template-columns: 1.45fr 1fr 1fr .72fr; gap: clamp(30px, 5vw, 72px); margin: 0 auto; }
.ks-footer .ks-brand { color: #fff; }
.ks-footer__brand > p { max-width: 315px; margin: 24px 0 0; color: #8f9bb0; font-size: 13px; line-height: 1.8; }
.ks-footer__grid > div > span { display: block; margin-bottom: 18px; color: var(--ks-cyan); font-family: var(--ks-display); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.ks-footer__grid > div > b { display: block; color: #fff; font-size: 14px; line-height: 1.55; }
.ks-footer__grid > div > p { color: #8f9bb0; font-size: 12px; line-height: 1.7; }
.ks-footer nav { display: grid; gap: 10px; }
.ks-footer nav a { color: #b2bdcf; text-decoration: none; font-size: 12px; }
.ks-footer nav a:hover { color: var(--ks-cyan); }
.ks-footer__rule { width: min(1260px, 100%); height: 1px; margin: 54px auto 24px; background: rgba(255,255,255,.12); }
.ks-footer__bottom { width: min(1260px, 100%); display: flex; align-items: center; justify-content: space-between; gap: 22px; margin: 0 auto; color: #77849a; font-family: var(--ks-display); font-size: 10px; letter-spacing: .08em; }
.ks-footer__bottom > div { display: flex; align-items: center; gap: 24px; }
.ks-footer__bottom button { padding: 0; color: inherit; background: none; border: 0; cursor: pointer; }
.ks-footer__bottom button:hover { color: var(--ks-cyan); }
.ks-button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 0 20px; text-decoration: none; border: 0; border-radius: 12px; cursor: pointer; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.ks-button:hover { transform: translateY(-2px); }
.ks-button--signal { color: #fff; background: var(--ks-blue); box-shadow: 0 12px 28px rgba(7,89,255,.24); }
.ks-button--outline { color: var(--ks-blue); background: #fff; border: 1px solid #b8c9ff; }
.ks-form-state, .ks-global-state { color: var(--ks-orange); font-size: 12px; line-height: 1.6; }
input, select, textarea { width: 100%; color: var(--ks-ink); background: #fff; border: 1px solid #dbe2ed; border-radius: 9px; outline: 0; }
input:focus, select:focus, textarea:focus { border-color: var(--ks-blue); box-shadow: 0 0 0 3px rgba(7,89,255,.1); }
.ks-js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.2,1); }
.ks-js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (max-width: 1160px) {
  .ks-header__bar { grid-template-columns: auto 1fr auto; }
  .ks-nav { display: none; }
  .ks-menu-button { display: block; }
  .ks-header-cta { display: none; }
  .ks-drawer { position: fixed; inset: 0 0 0 auto; z-index: 1200; width: min(430px, 91vw); display: flex; flex-direction: column; padding: 24px; color: var(--ks-ink); background: #fff; transform: translateX(104%); transition: transform .28s ease; box-shadow: -25px 0 70px rgba(8,19,46,.18); overflow: auto; }
  .ks-drawer.is-open { transform: none; }
  .ks-drawer-backdrop { position: fixed; inset: 0; z-index: 1100; display: block; background: rgba(4,10,25,.62); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .ks-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .ks-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
  .ks-drawer__top > button { width: 42px; height: 42px; padding: 0; color: var(--ks-ink); background: #f1f5fa; border: 0; border-radius: 12px; font-size: 28px; cursor: pointer; }
  .ks-drawer nav > ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ks-line); }
  .ks-drawer nav > ul > li { border-bottom: 1px solid var(--ks-line); }
  .ks-drawer__primary { display: flex; align-items: center; }
  .ks-drawer__primary > a { flex: 1; padding: 17px 2px; text-decoration: none; font-size: 17px; font-weight: 800; }
  .ks-drawer__primary > button { width: 44px; height: 44px; color: var(--ks-blue); background: none; border: 0; font-size: 22px; cursor: pointer; }
  .ks-drawer__sub { margin: -4px 0 14px; padding: 8px 14px; list-style: none; background: #f4f7fc; border-radius: 11px; }
  .ks-drawer__sub a { display: block; padding: 9px 4px; color: var(--ks-slate); text-decoration: none; font-size: 13px; }
  .ks-drawer__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
  .ks-drawer__actions a, .ks-drawer__actions button { display: grid; place-items: center; min-height: 48px; padding: 0 12px; border-radius: 10px; text-decoration: none; font-size: 12px; font-weight: 800; cursor: pointer; }
  .ks-drawer__actions a { color: #fff; background: var(--ks-blue); border: 0; }
  .ks-drawer__actions button { color: var(--ks-blue); background: #edf3ff; border: 0; }
  .ks-drawer__foot { display: flex; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 34px; color: var(--ks-muted); font-family: var(--ks-display); font-size: 11px; letter-spacing: .08em; }
}
@media (max-width: 760px) {
  :root { --ks-header: 68px; }
  .ks-header__bar { padding: 0 17px; }
  .ks-brand__mark { width: 37px; height: 37px; border-radius: 10px; font-size: 24px; }
  .ks-brand__copy b { font-size: 19px; }
  .ks-lang { min-height: 36px; padding: 0 9px; }
  .ks-footer__grid { grid-template-columns: 1fr 1fr; }
  .ks-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .ks-brand__copy small { display: none; }
  .ks-header__tools { gap: 2px; }
  .ks-lang { padding: 0 6px; border: 0; }
  .ks-footer__grid { grid-template-columns: 1fr; }
  .ks-footer__brand { grid-column: auto; }
  .ks-footer__bottom { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ks-js [data-reveal] { opacity: 1; transform: none; }
}
