:root {
  --blue: #005cff;
  --blue2: #1c6fff;
  --navy: #071a34;
  --text: #0f1b2d;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.1);
  --soft: #f5f7fb;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: var(--text);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.page-nav {
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.about-page {
  background: #fff;
}

.page-panel {
  display: none;
}

.page-panel.is-active {
  display: block;
  animation: pageFade 0.45s ease both;
}

.company-hero {
  position: relative;
  height: 350px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.company-hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  animation: heroZoom 7s ease forwards;
  z-index: -2;
}

.company-info-hero .company-hero-bg {
  background:
    linear-gradient(rgba(0, 61, 151, 0.66), rgba(0, 61, 151, 0.58)),
    url("/assets/img/company-hero.jpg") center / cover no-repeat;
}

.ceo-hero .company-hero-bg {
  background:
    linear-gradient(rgba(7, 26, 52, 0.68), rgba(7, 26, 52, 0.58)),
    url("/assets/img/ceo-hero.jpg") center / cover no-repeat;
}

.company-hero-dim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 35%
    ),
    linear-gradient(
      90deg,
      rgba(0, 10, 30, 0.35),
      transparent 32%,
      transparent 68%,
      rgba(0, 10, 30, 0.26)
    );
  z-index: -1;
}

.company-hero-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding-top: 8px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.42em;
  line-height: 1;
  transform: translateY(-28px);
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 1000;
  line-height: 1.28;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: translateY(34px);
}

.intro-message {
  padding: 88px 0 94px;
  background: #fff;
  text-align: center;
}

.intro-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.65);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600;
  line-height: 1.72;
  letter-spacing: -0.05em;
  transform: translateY(34px) scale(0.98);
  filter: blur(10px);
}

.intro-text strong {
  color: var(--blue);
  font-weight: 1000;
}

.overview-section {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 92, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fafc, #f4f7fb);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
  transform: translateY(34px);
}

.section-title h2 {
  margin: 0 0 16px;
  color: #0d1b2f;
  font-size: clamp(32px, 3vw, 43px);
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -0.065em;
}

.section-title p {
  margin: 0;
  color: rgba(15, 23, 42, 0.5);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.section-title span {
  display: block;
  width: 38px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--blue);
  transform-origin: center;
  animation: linePulse 2.2s ease-in-out infinite;
}

.overview-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 38px;
  padding: 56px 56px 50px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform: translateY(46px) scale(0.96);
}

.overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(0, 92, 255, 0.035) 45%,
    transparent 70%
  );
  transform: translateX(-110%);
  animation: shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.overview-item {
  padding: 24px 0 27px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.overview-item p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.035em;
}

.overview-item strong {
  display: block;
  color: #111827;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.overview-item em {
  display: block;
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.48);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.business-section {
  padding: 118px 0 126px;
  background: #fff;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.business-card {
  position: relative;
  min-height: 270px;
  padding: 50px 36px 42px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transform: translateY(56px) rotateX(8deg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 92, 255, 0.08), transparent 42%),
    linear-gradient(180deg, transparent, rgba(0, 92, 255, 0.03));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.business-card::after {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.business-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 92, 255, 0.28);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.business-card:hover::before {
  opacity: 1;
}

.business-card:hover::after {
  transform: scaleX(1);
}

.biz-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border-radius: 10px;
  background: #f7faff;
  animation: iconFloat 3.4s ease-in-out infinite;
}

.biz-icon svg {
  width: 25px;
  height: 25px;
}

.business-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: #111827;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1.25;
  letter-spacing: -0.055em;
}

.business-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(15, 23, 42, 0.56);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
  letter-spacing: -0.035em;
}

.value-section {
  position: relative;
  padding: 112px 0 118px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 92, 255, 0.13), transparent 32%),
    linear-gradient(180deg, #071a34, #071a34);
  color: #fff;
  overflow: hidden;
}

.value-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  top: -220px;
  border-radius: 999px;
  background: rgba(0, 92, 255, 0.18);
  filter: blur(20px);
  animation: blobMove 8s ease-in-out infinite;
}

.value-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(12px);
  animation: blobMove2 9s ease-in-out infinite;
}

.section-title.dark {
  position: relative;
  z-index: 1;
}

.section-title.dark h2 {
  color: #fff;
}

.section-title.dark p {
  color: rgba(255, 255, 255, 0.45);
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 74px;
}

.value-card {
  position: relative;
  text-align: center;
  padding: 54px 24px 20px;
  transform: translateY(50px) scale(0.96);
  filter: blur(8px);
}

.value-card strong {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(70px, 9vw, 96px);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.08em;
}

.value-card h3 {
  position: relative;
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.value-card p {
  position: relative;
  width: min(290px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.85;
  letter-spacing: -0.035em;
}

.count-section {
  padding: 98px 0 96px;
  background: #fff;
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
  gap: 30px;
}

.count-item {
  position: relative;
  padding: 12px 20px;
  transform: translateY(36px) scale(0.8);
}

.count-item strong {
  display: block;
  color: var(--blue);
  font-size: clamp(46px, 5vw, 58px);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.065em;
}

.count-item p {
  margin: 18px 0 0;
  color: #111827;
  font-size: 16px;
  font-weight: 1000;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.ceo-letter-section {
  position: relative;
  padding: 78px 0 98px;
  background:
    radial-gradient(circle at 12% 50%, rgba(0, 92, 255, 0.05), transparent 32%),
    radial-gradient(circle at 88% 62%, rgba(0, 92, 255, 0.05), transparent 30%),
    linear-gradient(180deg, #f4f8ff, #ffffff);
  overflow: hidden;
}

.ceo-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 92, 255, 0.035);
  font-size: clamp(90px, 19vw, 260px);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.ceo-letter-card {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  margin: 0 auto;
  padding: 78px 70px 72px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 92, 255, 0.06);
  box-shadow: 0 32px 90px rgba(0, 58, 140, 0.12);
  transform: translateY(46px) scale(0.96);
  overflow: hidden;
}

.ceo-letter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 92, 255, 0.055), transparent 34%),
    linear-gradient(315deg, rgba(0, 92, 255, 0.04), transparent 36%);
  opacity: 0.8;
  pointer-events: none;
}

.ceo-logo {
  position: relative;
  z-index: 1;
  width: 190px;
  margin: 0 auto 44px;
}

.ceo-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ceo-letter-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #111827;
  text-align: center;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 1000;
  line-height: 1.42;
  letter-spacing: -0.065em;
}

.ceo-letter-card h2 strong {
  color: var(--blue);
}

.ceo-line {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 3px;
  margin: 34px auto 48px;
  border-radius: 999px;
  background: var(--blue);
  animation: linePulse 2.2s ease-in-out infinite;
}

.ceo-letter-body {
  position: relative;
  z-index: 1;
}

.ceo-letter-body p {
  margin: 0 0 26px;
  color: rgba(15, 23, 42, 0.68);
  font-size: 17px;
  font-weight: 650;
  line-height: 2;
  letter-spacing: -0.035em;
}

.ceo-sign {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 62px 0 0 auto;
  text-align: center;
}

.ceo-sign span {
  display: block;
  margin-bottom: 10px;
  color: rgba(15, 23, 42, 0.56);
  font-size: 16px;
  font-weight: 800;
}

.ceo-sign strong {
  display: block;
  color: #111827;
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: 0.24em;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  filter: blur(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.business-card.reveal.show:nth-child(2),
.value-card.reveal.show:nth-child(2),
.count-item.reveal.show:nth-child(2) {
  transition-delay: 0.12s;
}

.business-card.reveal.show:nth-child(3),
.value-card.reveal.show:nth-child(3),
.count-item.reveal.show:nth-child(3) {
  transition-delay: 0.24s;
}

.site-footer .caption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 800;
}

.rt-modal-ov {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(5px);
}

.rt-modal-ov.show {
  display: flex;
}

.rt-modal {
  width: min(720px, 100%);
  max-height: min(760px, calc(100dvh - 40px));
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.rt-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.rt-modal-title {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.rt-modal-close {
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.rt-modal-body {
  padding: 24px;
  overflow-y: auto;
}

.rt-modal-text {
  white-space: pre-line;
  color: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.75;
  letter-spacing: -0.025em;
}

.rt-modal-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.rt-modal-ok {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 1000;
  cursor: pointer;
}

@keyframes pageFade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes linePulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(1.55);
    opacity: 0.72;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes blobMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(80px, 60px) scale(1.12);
  }
}

@keyframes blobMove2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-80px, -50px) scale(1.12);
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .company-hero {
    height: 310px;
    min-height: 310px;
  }

  .hero-kicker {
    margin-bottom: 15px;
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .hero-title {
    font-size: 34px;
  }

  .intro-message {
    padding: 68px 0 72px;
  }

  .intro-text {
    font-size: 21px;
  }

  .overview-section {
    padding: 76px 0 82px;
  }

  .section-title {
    margin-bottom: 44px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .overview-card {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .overview-item {
    padding: 22px 0;
  }

  .business-section {
    padding: 84px 0 92px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .business-card {
    min-height: auto;
    padding: 38px 28px 34px;
  }

  .value-section {
    padding: 84px 0 92px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 46px;
  }

  .value-card {
    padding: 46px 20px 28px;
  }

  .count-section {
    padding: 74px 0 78px;
  }

  .count-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ceo-letter-section {
    padding: 60px 0 76px;
  }

  .ceo-letter-card {
    padding: 54px 36px 54px;
    border-radius: 20px;
  }

  .ceo-logo {
    width: 160px;
    margin-bottom: 34px;
  }

  .ceo-letter-body p {
    font-size: 16px;
    line-height: 1.9;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 420px);
  }

  .company-hero {
    height: 280px;
    min-height: 280px;
  }

  .hero-title {
    font-size: 29px;
  }

  .intro-text {
    font-size: 18px;
    line-height: 1.75;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 14px;
  }

  .overview-card {
    border-radius: 14px;
    padding: 26px 22px;
  }

  .overview-item strong {
    font-size: 16px;
  }

  .business-card h3,
  .value-card h3 {
    font-size: 20px;
  }

  .business-card p,
  .value-card p {
    font-size: 14px;
  }

  .count-item strong {
    font-size: 48px;
  }

  .ceo-letter-card {
    padding: 42px 24px 46px;
  }

  .ceo-logo {
    width: 145px;
  }

  .ceo-letter-card h2 {
    font-size: 25px;
  }

  .ceo-letter-body p {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .ceo-sign {
    margin-top: 42px;
  }

  .ceo-sign strong {
    font-size: 23px;
  }

  .rt-modal-head {
    padding: 18px;
  }

  .rt-modal-body {
    padding: 18px;
  }

  .rt-modal-foot {
    padding: 16px 18px 18px;
  }
}
@media (min-width: 981px) {
  #btnMyPageIcon,
  #btnMyPageIcon.mypage-ico,
  .topbar #btnMyPageIcon,
  .topbar .mypage-ico {
    position: static !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: transparent !important;
    z-index: 30 !important;
  }

  #btnMyPageIcon img,
  #btnMyPageIcon.mypage-ico img,
  .topbar #btnMyPageIcon img,
  .topbar .mypage-ico img {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    object-fit: cover !important;
    transform: none !important;
    position: static !important;
    display: block !important;
  }
}
.site-footer,
.site-footer * {
  box-sizing: border-box !important;
}

.site-footer {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #191919 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  border: 0 !important;
  overflow: hidden !important;
  transform: none !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
}

.site-footer .container {
  width: min(1140px, calc(100% - 40px)) !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.footer-toplinks {
  width: 100% !important;
  margin: 0 !important;
  padding: 28px 0 20px !important;
  background: #191919 !important;
  border: 0 !important;
}

.footer-toplinks .inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ft-link,
.footer-toplinks button,
.footer-toplinks a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transform: none !important;
}

.footer-line {
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 0 !important;
}

.footer-main {
  width: 100% !important;
  margin: 0 !important;
  padding: 28px 0 50px !important;
  background: #191919 !important;
  border: 0 !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 150px 1fr auto !important;
  align-items: start !important;
  gap: 28px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.f-brand {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.f-brand .logo {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.f-brand img,
.f-brand .logo img {
  display: block !important;
  width: 122px !important;
  height: auto !important;
  max-width: 122px !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  position: static !important;
}

.f-brand .bname,
.f-brand .bmeta {
  display: none !important;
}

.f-info {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.f-info .row {
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  width: auto !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.f-info .k {
  display: inline !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 900 !important;
}

.f-info a {
  display: inline !important;
  color: rgba(255, 255, 255, 0.58) !important;
  text-decoration: none !important;
}

.f-contact {
  display: none !important;
}

.social {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.social .sbtn,
#kakaoLink,
#youtubeLink {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transform: none !important;
}

.social .sbtn svg,
#kakaoLink svg,
#youtubeLink svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.site-footer .caption {
  display: block !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.32) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .site-footer .container {
    width: min(100% - 32px, 720px) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-toplinks .inner {
    gap: 22px !important;
    flex-wrap: wrap !important;
  }

  .f-brand img,
  .f-brand .logo img {
    width: 112px !important;
    max-width: 112px !important;
  }

  .social {
    justify-content: flex-start !important;
  }
}
.company-info-hero .company-hero-bg {
  background-image: url("/assets/img/1g.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ceo-hero .company-hero-bg {
  background-image: url("/assets/img/2g.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.history-wrap {
  margin-top: 88px;
  padding: 58px 58px 62px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.history-head {
  text-align: center;
  margin-bottom: 54px;
}

.history-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(0, 92, 255, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.history-head h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -0.065em;
}

.history-head p {
  width: min(680px, 100%);
  margin: 0 auto;
  color: rgba(15, 23, 42, 0.56);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.04em;
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.history-timeline::before {
  content: "";
  position: absolute;
  left: 112px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(0, 92, 255, 0.12));
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 46px;
  padding: 0 0 34px;
}

.history-item:last-child {
  padding-bottom: 0;
}

.history-item strong {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 2px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.045em;
}

.history-item strong::after {
  content: "";
  position: absolute;
  right: -33px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--blue);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 5px rgba(0, 92, 255, 0.12);
  z-index: 2;
}

.history-item div {
  padding: 0 0 0 4px;
}

.history-item h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 19px;
  font-weight: 1000;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.history-item p {
  margin: 0;
  color: rgba(15, 23, 42, 0.58);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
  letter-spacing: -0.035em;
}

@media (max-width: 980px) {
  .history-wrap {
    margin-top: 66px;
    padding: 42px 28px 46px;
    border-radius: 20px;
  }

  .history-head {
    margin-bottom: 42px;
  }

  .history-timeline::before {
    left: 76px;
  }

  .history-item {
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .history-item strong {
    font-size: 21px;
  }

  .history-item strong::after {
    right: -25px;
  }

  .history-item h3 {
    font-size: 17px;
  }

  .history-item p {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .history-wrap {
    margin-top: 54px;
    padding: 36px 22px 40px;
  }

  .history-head p {
    font-size: 14px;
  }

  .history-timeline::before {
    left: 0;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 24px;
    padding-bottom: 30px;
  }

  .history-item strong {
    justify-content: flex-start;
    font-size: 22px;
  }

  .history-item strong::after {
    left: -30px;
    right: auto;
    top: 4px;
  }

  .history-item div {
    padding-left: 0;
  }
}
.history-wrap {
  position: relative;
  overflow: hidden;
  animation: historyWrapIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.history-wrap::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(0, 92, 255, 0.16) 48%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(0, 92, 255, 0.1) 52%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-80%) rotate(8deg);
  animation: historyShine 5.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.history-wrap::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -140px;
  border-radius: 999px;
  background: rgba(0, 92, 255, 0.1);
  filter: blur(18px);
  animation: historyBlob 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.history-head,
.history-timeline {
  position: relative;
  z-index: 1;
}

.history-head span {
  animation:
    historyBadgePop 1s cubic-bezier(0.22, 1, 0.36, 1) both,
    historyBadgePulse 2.2s ease-in-out infinite;
}

.history-head h2 {
  animation: historyTitleIn 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.history-head p {
  animation: historyTextIn 0.9s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.history-timeline::before {
  transform-origin: top center;
  animation: historyLineGrow 1.35s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.history-item {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  animation: historyItemIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.history-item:nth-child(1) {
  animation-delay: 0.18s;
}

.history-item:nth-child(2) {
  animation-delay: 0.3s;
}

.history-item:nth-child(3) {
  animation-delay: 0.42s;
}

.history-item:nth-child(4) {
  animation-delay: 0.54s;
}

.history-item:nth-child(5) {
  animation-delay: 0.66s;
}

.history-item:nth-child(6) {
  animation-delay: 0.78s;
}

.history-item:nth-child(7) {
  animation-delay: 0.9s;
}

.history-item:nth-child(8) {
  animation-delay: 1.02s;
}

.history-item strong {
  animation: historyYearGlow 2.2s ease-in-out infinite;
}

.history-item strong::after {
  animation: historyDotPulse 1.8s ease-in-out infinite;
}

.history-item div {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 16px;
}

.history-item:hover div {
  transform: translateX(12px) translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(0, 92, 255, 0.1);
}

.history-item:hover strong {
  transform: translateX(-6px) scale(1.08);
}

.history-item:hover strong::after {
  transform: scale(1.35);
  box-shadow:
    0 0 0 8px rgba(0, 92, 255, 0.14),
    0 0 26px rgba(0, 92, 255, 0.45);
}

@keyframes historyWrapIn {
  from {
    opacity: 0;
    transform: translateY(70px) scale(0.94);
    filter: blur(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes historyShine {
  0% {
    transform: translateX(-90%) rotate(8deg);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  42% {
    transform: translateX(90%) rotate(8deg);
    opacity: 0;
  }

  100% {
    transform: translateX(90%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes historyBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }

  50% {
    transform: translate(-70px, 80px) scale(1.18);
    opacity: 1;
  }
}

@keyframes historyBadgePop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.7);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes historyBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 92, 255, 0.16);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 92, 255, 0);
  }
}

@keyframes historyTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.92);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes historyTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes historyLineGrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes historyItemIn {
  from {
    opacity: 0;
    transform: translateY(42px) translateX(-18px) scale(0.94);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes historyYearGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(0, 92, 255, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(0, 92, 255, 0.32);
  }
}

@keyframes historyDotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(0, 92, 255, 0.12);
  }

  50% {
    transform: scale(1.22);
    box-shadow:
      0 0 0 9px rgba(0, 92, 255, 0.05),
      0 0 24px rgba(0, 92, 255, 0.34);
  }
}

@media (max-width: 520px) {
  .history-item:hover div {
    transform: translateY(-4px);
  }

  .history-item:hover strong {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .history-wrap,
  .history-wrap::before,
  .history-wrap::after,
  .history-head span,
  .history-head h2,
  .history-head p,
  .history-timeline::before,
  .history-item,
  .history-item strong,
  .history-item strong::after {
    animation: none !important;
  }
}

.history-hero .company-hero-bg {
  background:
    linear-gradient(rgba(7, 26, 52, 0.68), rgba(0, 61, 151, 0.52)),
    url("/assets/img/1g.jpg") center / cover no-repeat;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 130px minmax(0, 1fr) 240px !important;
  gap: 28px !important;
  align-items: flex-start !important;
}

.footer-cs-box {
  width: 240px !important;
  min-width: 240px !important;
  margin-left: auto !important;
  padding-top: 2px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  align-items: flex-start !important;
}

.footer-cs-item {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.footer-cs-item span {
  display: block !important;
  margin: 0 0 6px !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.035em !important;
}

.footer-cs-item strong {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.04em !important;
}

.footer-kakao-card,
#kakaoLink.footer-kakao-card {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 2px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  color: rgba(255, 255, 255, 0.88) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  text-decoration: none !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-kakao-card:hover,
#kakaoLink.footer-kakao-card:hover {
  transform: none !important;
  background: transparent !important;
  border-color: transparent !important;
}

.footer-kakao-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: transparent !important;
}

.footer-kakao-icon svg,
#kakaoLink.footer-kakao-card svg {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
}

.footer-kakao-text {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.footer-kakao-text b {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.04em !important;
}

.footer-kakao-text em {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.46) !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.035em !important;
}

.footer-kakao-card:hover .footer-kakao-text b,
#kakaoLink.footer-kakao-card:hover .footer-kakao-text b {
  color: #fee500 !important;
}

.footer-kakao-only,
.social.footer-kakao-only {
  display: none !important;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-cs-box {
    width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    padding-top: 4px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 18px !important;
    align-items: start !important;
  }

  .footer-kakao-card,
  #kakaoLink.footer-kakao-card {
    grid-column: 1 / -1 !important;
  }

  .footer-cs-item span {
    font-size: 11.5px !important;
  }

  .footer-cs-item strong {
    font-size: 14px !important;
  }
}

@media (max-width: 520px) {
  .footer-main {
    padding: 26px 0 42px !important;
  }

  .footer-cs-box {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding-top: 2px !important;
  }

  .footer-kakao-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
  }

  .footer-kakao-icon svg,
  #kakaoLink.footer-kakao-card svg {
    width: 22px !important;
    height: 22px !important;
  }
}
