.company-page {
  --company-blue-900: #0b1f3a;
  --company-blue-800: #123760;
  --company-blue-700: #0f4b99;
  --company-blue-600: #1b64da;
  --company-blue-100: #e9f2ff;
  --company-blue-050: #f5f9ff;
  --company-teal: #18b7b5;
  --company-ink: #191f28;
  --company-muted: #667080;
  --company-line: #dfe5ec;
  --company-font:
    Pretendard, "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans KR", sans-serif;
  color: var(--company-ink);
  background: #fff;
  font-family: var(--company-font);
  line-height: 1.5;
}

.company-page :focus-visible {
  outline: 3px solid rgba(27, 100, 218, 0.38);
  outline-offset: 4px;
}

.company-page h1,
.company-page h2,
.company-page h3,
.company-page p,
.company-page figure,
.company-page dl,
.company-page dd,
.company-page ol {
  margin: 0;
}

.company-inner {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: clamp(108px, 9vw, 150px) 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}

.wordmark strong,
.site-footer__brand strong {
  font-size: 1.38rem;
  font-weight: 750;
  letter-spacing: -0.055em;
}

.wordmark__symbol {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 23px;
}

.wordmark__symbol i {
  position: absolute;
  width: 20px;
  height: 18px;
  border: 2px solid var(--brand-teal);
  border-radius: 7px;
}

.wordmark__symbol i::after {
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid var(--brand-teal);
  border-left: 2px solid var(--brand-teal);
  content: "";
  transform: skewY(-28deg);
}

.wordmark__symbol i:last-child {
  right: 0;
  bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

a.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
}

.button--primary {
  color: #fff;
  background: var(--company-blue-700);
}

.button--secondary {
  border-color: rgba(15, 75, 153, 0.2);
  color: var(--company-blue-700);
  background: rgba(255, 255, 255, 0.76);
}

.button--disabled {
  color: #8b95a1;
  cursor: default;
  opacity: 0.75;
}

.section-kicker {
  color: var(--company-blue-600);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.17em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading h2,
.company-info__heading h2,
.company-next h2 {
  margin-top: 20px;
  font-size: clamp(2.4rem, 4.25vw, 4rem);
  font-weight: 780;
  letter-spacing: -0.062em;
  line-height: 1.12;
}

.section-heading > p,
.company-info__heading > p {
  color: var(--company-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.company-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(24, 183, 181, 0.12), transparent 26%),
    linear-gradient(135deg, #fff 0%, #f7faff 52%, #edf5ff 100%);
}

.company-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 75, 153, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 75, 153, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  mask-image: linear-gradient(to right, transparent 14%, #000 68%, #000 100%);
  pointer-events: none;
}

.company-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  align-items: center;
  gap: 72px;
  padding: 90px 0;
}

.company-hero h1 {
  margin-top: 20px;
  font-size: clamp(4.1rem, 6.4vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.company-hero h1 em {
  color: var(--company-blue-600);
  font-style: normal;
}

.company-hero__lead {
  margin-top: 38px !important;
  color: #283644;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.company-hero__description {
  max-width: 560px;
  margin-top: 22px !important;
  color: var(--company-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.identity-visual {
  position: relative;
  min-height: 560px;
}

.identity-visual::before,
.identity-visual::after {
  position: absolute;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 100, 218, 0.55), transparent);
  content: "";
  transform-origin: center;
}

.identity-visual::before {
  top: 50%;
  right: 4%;
  left: 4%;
  transform: rotate(27deg);
}

.identity-visual::after {
  top: 50%;
  right: 6%;
  left: 6%;
  transform: rotate(-31deg);
}

.identity-visual__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(27, 100, 218, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.identity-visual__orbit--one {
  width: 440px;
  height: 440px;
}

.identity-visual__orbit--two {
  width: 315px;
  height: 315px;
  border-color: rgba(24, 183, 181, 0.22);
}

.identity-visual__core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 225px;
  height: 225px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(145deg, #2171e6, #0f4b99);
  box-shadow: 0 34px 80px rgba(15, 75, 153, 0.26);
  transform: translate(-50%, -50%);
}

.identity-visual__core strong {
  margin-top: 14px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.identity-visual__core small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.identity-visual__mark {
  position: relative;
  width: 50px;
  height: 38px;
}

.identity-visual__mark i {
  position: absolute;
  width: 34px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 10px;
}

.identity-visual__mark i::after {
  position: absolute;
  bottom: -8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.94);
  border-left: 3px solid rgba(255, 255, 255, 0.94);
  content: "";
  transform: skewY(-28deg);
}

.identity-visual__mark i:last-child {
  right: 0;
  bottom: 0;
}

.identity-visual__node {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 145px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(15, 75, 153, 0.18);
  border-radius: 999px;
  color: var(--company-blue-700);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 75, 153, 0.09);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  backdrop-filter: blur(12px);
}

.identity-visual__node--message {
  top: 15%;
  left: 1%;
}

.identity-visual__node--connection {
  top: 10%;
  right: 1%;
}

.identity-visual__node--marketing {
  bottom: 14%;
  left: 0;
}

.identity-visual__node--automation {
  right: 0;
  bottom: 11%;
}

.expansion {
  background: #fff;
}

.expansion-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1.2fr 0.85fr 0.95fr;
  border-top: 1px solid var(--company-line);
  border-bottom: 1px solid var(--company-line);
}

.expansion-flow::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0f4b99 0 25%, #1b64da 25% 50%, #18b7b5 50% 75%, #087f83 75%);
  content: "";
  transform: scaleX(0.96);
  transform-origin: left;
}

.expansion-step {
  position: relative;
  min-height: 310px;
  padding: 48px 28px 42px;
}

.expansion-step + .expansion-step {
  border-left: 1px solid var(--company-line);
}

.expansion-step::after {
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 2;
  width: 15px;
  height: 15px;
  border-top: 3px solid var(--company-blue-600);
  border-right: 3px solid var(--company-blue-600);
  content: "";
  transform: rotate(45deg);
}

.expansion-step:last-child::after {
  display: none;
}

.expansion-step > p {
  color: var(--company-blue-600);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.expansion-step > p span {
  margin-right: 8px;
  color: #9aa5b1;
}

.expansion-step h3 {
  min-height: 72px;
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.expansion-step strong,
.expansion-step small {
  display: block;
}

.expansion-step strong {
  min-height: 54px;
  margin-top: 14px;
  color: #314052;
  font-size: 0.88rem;
  line-height: 1.55;
}

.expansion-step small {
  margin-top: 17px;
  color: var(--company-muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.history {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 5%, rgba(24, 183, 181, 0.08), transparent 28%),
    var(--company-blue-050);
}

.section-heading--history {
  margin-bottom: 84px;
}

.history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.history-timeline::before {
  position: absolute;
  top: 64px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #0f4b99, #1b64da 45%, #18b7b5);
  content: "";
}

.history-timeline li {
  position: relative;
  min-height: 250px;
  padding: 0 16px;
}

.history-timeline li:first-child {
  padding-left: 0;
}

.history-timeline li:last-child {
  padding-right: 0;
}

.history-timeline li::before {
  position: absolute;
  top: 56px;
  left: 16px;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--company-blue-600);
  box-shadow: 0 0 0 2px rgba(27, 100, 218, 0.2);
  content: "";
}

.history-timeline li:first-child::before {
  left: 0;
}

.history-timeline li:nth-child(n + 6)::before {
  background: var(--company-teal);
}

.history-timeline time {
  display: block;
  color: var(--company-blue-700);
  font-size: 1.5rem;
  font-weight: 820;
  letter-spacing: -0.04em;
}

.history-timeline span {
  display: block;
  min-height: 36px;
  margin-top: 58px;
  color: #8290a0;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.history-timeline strong {
  display: block;
  margin-top: 12px;
  font-size: 0.84rem;
  font-weight: 680;
  letter-spacing: -0.028em;
  line-height: 1.55;
}

.foundation {
  background: #fff;
}

.evidence-clients {
  padding-top: 34px;
  border-top: 1px solid var(--company-ink);
}

.evidence-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.evidence-title h3 {
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.evidence-title p {
  color: var(--company-muted);
  font-size: 0.82rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--company-line);
  border-left: 1px solid var(--company-line);
}

.client-logo-grid figure {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 28px;
  border-right: 1px solid var(--company-line);
  border-bottom: 1px solid var(--company-line);
  background: #fff;
}

.client-logo-grid img {
  width: auto;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.evidence-secondary {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  margin-top: 82px;
}

.evidence-group {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  border-top: 1px solid var(--company-ink);
}

.certification-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1;
  margin-top: 34px;
  border-top: 1px solid var(--company-line);
  border-left: 1px solid var(--company-line);
}

.certification-list article {
  display: grid;
  grid-template-rows: 54px auto auto;
  min-height: 150px;
  align-items: center;
  justify-items: center;
  padding: 24px 12px;
  border-right: 1px solid var(--company-line);
  border-bottom: 1px solid var(--company-line);
  background: #fff;
  text-align: center;
}

.certification-list img,
.evidence-cue {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.evidence-cue {
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 75, 153, 0.24);
  border-radius: 50%;
  color: var(--company-blue-700);
  background: var(--company-blue-050);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 820;
}

.evidence-cue--wide {
  font-size: 0.7rem;
}

.certification-list strong {
  margin-top: 18px;
  font-size: 0.92rem;
}

.certification-list span {
  margin-top: 5px;
  color: var(--company-muted);
  font-size: 0.72rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
  margin-top: 34px;
  border-top: 1px solid var(--company-line);
  border-left: 1px solid var(--company-line);
}

.partner-list figure {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 22px 14px;
  border-right: 1px solid var(--company-line);
  border-bottom: 1px solid var(--company-line);
}

.partner-list img {
  width: auto;
  max-width: 92px;
  max-height: 34px;
  object-fit: contain;
}

.partner-wordmark {
  font-weight: 850;
  letter-spacing: -0.04em;
}

.partner-wordmark--naver {
  color: #03a84e;
}

.company-info {
  padding-bottom: 0;
  background: var(--company-blue-050);
}

.company-info__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
  padding-bottom: 86px;
}

.company-info__heading > p {
  max-width: 420px;
  margin-top: 30px;
}

.company-facts {
  border-top: 2px solid var(--company-ink);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--company-line);
}

.company-facts dt {
  color: var(--company-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.company-facts dd {
  font-size: 0.96rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.company-facts a {
  color: var(--company-blue-700);
  text-decoration: none;
}

.company-next {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 72px 0;
  border-top: 1px solid rgba(15, 75, 153, 0.15);
}

.company-next h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.company-next__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1100px) {
  .company-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 42px;
  }

  .identity-visual__orbit--one {
    width: 390px;
    height: 390px;
  }

  .identity-visual__orbit--two {
    width: 280px;
    height: 280px;
  }

  .history-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 58px;
  }

  .history-timeline::before {
    top: 64px;
  }

  .history-timeline::after {
    position: absolute;
    top: 372px;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #1b64da, #18b7b5);
    content: "";
  }

  .history-timeline li {
    min-height: 250px;
  }

  .history-timeline li:nth-child(5)::before {
    left: 16px;
  }

  .evidence-secondary {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .section-heading,
  .company-info__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-hero {
    min-height: auto;
  }

  .company-hero__grid {
    grid-template-columns: 1fr;
    padding: 100px 0 70px;
  }

  .identity-visual {
    min-height: 500px;
  }

  .expansion-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expansion-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--company-line);
  }

  .expansion-step:nth-child(2)::after,
  .expansion-step:nth-child(3)::after {
    display: none;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-info__grid {
    gap: 70px;
  }
}

@media (max-width: 720px) {
  .company-inner {
    width: min(100% - 36px, 1160px);
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    gap: 26px;
    margin-bottom: 48px;
  }

  .section-heading h2,
  .company-info__heading h2,
  .company-next h2 {
    margin-top: 14px;
    font-size: 2.35rem;
  }

  .section-heading > p,
  .company-info__heading > p {
    font-size: 0.92rem;
  }

  .company-hero__grid {
    gap: 36px;
    padding: 76px 0 48px;
  }

  .company-hero h1 {
    font-size: clamp(3.6rem, 16vw, 4.8rem);
  }

  .company-hero__lead {
    margin-top: 28px !important;
    font-size: 1.23rem;
  }

  .company-hero__lead br {
    display: none;
  }

  .company-hero__description {
    font-size: 0.92rem;
  }

  .identity-visual {
    min-height: 355px;
    transform: scale(0.88);
  }

  .identity-visual__orbit--one {
    width: 320px;
    height: 320px;
  }

  .identity-visual__orbit--two {
    width: 230px;
    height: 230px;
  }

  .identity-visual__core {
    width: 175px;
    height: 175px;
  }

  .identity-visual__node {
    min-width: 116px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.58rem;
  }

  .identity-visual__node--message,
  .identity-visual__node--marketing {
    left: -5%;
  }

  .identity-visual__node--connection,
  .identity-visual__node--automation {
    right: -5%;
  }

  .expansion-flow {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .expansion-flow::before {
    width: 5px;
    height: 100%;
    transform: none;
  }

  .expansion-step {
    min-height: 0;
    padding: 34px 22px 34px 30px;
    border-bottom: 1px solid var(--company-line);
  }

  .expansion-step + .expansion-step,
  .expansion-step:nth-child(3) {
    border-top: 0;
    border-left: 0;
  }

  .expansion-step::after {
    display: none;
  }

  .expansion-step h3,
  .expansion-step strong {
    min-height: 0;
  }

  .expansion-step h3 {
    margin-top: 13px;
    font-size: 1.45rem;
  }

  .expansion-step strong {
    margin-top: 10px;
  }

  .expansion-step small {
    margin-top: 10px;
  }

  .section-heading--history {
    margin-bottom: 58px;
  }

  .history-timeline {
    display: block;
    padding-left: 34px;
  }

  .history-timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 2px;
    height: auto;
    background: linear-gradient(#0f4b99, #1b64da 45%, #18b7b5);
  }

  .history-timeline::after {
    display: none;
  }

  .history-timeline li,
  .history-timeline li:first-child,
  .history-timeline li:last-child {
    min-height: 0;
    padding: 0 0 52px;
  }

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

  .history-timeline li::before,
  .history-timeline li:first-child::before,
  .history-timeline li:nth-child(5)::before {
    top: 7px;
    left: -33px;
  }

  .history-timeline span {
    min-height: 0;
    margin-top: 8px;
  }

  .history-timeline strong {
    margin-top: 9px;
    font-size: 0.95rem;
  }

  .client-logo-grid figure {
    min-height: 104px;
    padding: 22px 18px;
  }

  .client-logo-grid img {
    max-width: 118px;
    max-height: 34px;
  }

  .evidence-title {
    display: block;
  }

  .evidence-title p {
    margin-top: 8px;
  }

  .evidence-secondary {
    margin-top: 60px;
  }

  .certification-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .partner-list figure {
    min-height: 90px;
  }

  .company-info {
    padding-bottom: 0;
  }

  .company-info__grid {
    gap: 50px;
    padding-bottom: 64px;
  }

  .company-facts > div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 19px 0;
  }

  .company-facts dd {
    font-size: 0.88rem;
  }

  .company-next {
    display: grid;
    min-height: 0;
    gap: 40px;
    padding: 66px 0 76px;
  }

  .company-next__actions {
    display: grid;
    justify-content: stretch;
  }

  .company-next__actions .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .identity-visual {
    margin-inline: -10px;
  }
}

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