@charset "utf-8";

:root {
  --navy: #101d32;
  --navy-soft: #172b49;
  --blue: #4d7fca;
  --blue-soft: #eaf2ff;
  --ink: #172033;
  --muted: #697386;
  --line: #dde4ed;
  --paper: #ffffff;
  --background: #f3f6f9;
  --green: #13766d;
  --radius: 24px;
  --shadow: 0 20px 55px rgba(16, 29, 50, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(77, 127, 202, .10), transparent 26rem),
    var(--background);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 70px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(221, 228, 237, .8);
  background: rgba(243, 246, 249, .90);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--navy);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #fff;
  background: var(--navy);
  letter-spacing: -.03em;
}
.nav { display: flex; gap: 24px; }
.nav a {
  color: #526075;
  font-size: 13px;
  font-weight: 800;
}
.nav a:hover { color: var(--blue); }
.print-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.print-button:hover { border-color: var(--blue); }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  min-height: 650px;
  padding: 70px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 78px;
  align-items: center;
}
.overline {
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--blue); }
.hero-description {
  max-width: 710px;
  margin: 28px 0 0;
  color: #58657a;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.primary-button, .secondary-button, .dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 900;
}
.primary-button { background: var(--navy); color: #fff; }
.secondary-button { border: 1px solid var(--line); background: #fff; color: var(--navy); }
.primary-button:hover, .secondary-button:hover { transform: translateY(-1px); }
.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hero-keywords li {
  padding: 7px 10px;
  border: 1px solid #dfe6f0;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: #536075;
  font-size: 11px;
  font-weight: 800;
}

.profile-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.photo-frame {
  margin: 14px 14px 0;
  aspect-ratio: 3 / 3.55;
  overflow: hidden;
  border-radius: 20px;
  background: #eef1f5;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.profile-text { padding: 24px 24px 27px; color: #fff; }
.profile-label {
  margin: 0;
  color: #91b6f2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}
.profile-text h2 {
  margin: 5px 0 2px;
  font-size: 28px;
  letter-spacing: -.04em;
}
.profile-text p:last-child {
  margin: 0;
  color: #c9d6e8;
  font-size: 12px;
}

.metric-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 115px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 38px rgba(16,29,50,.06);
}
.metric-strip article {
  position: relative;
  padding: 23px 26px;
}
.metric-strip article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--line);
}
.metric-strip strong {
  display: block;
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -.045em;
}
.metric-strip span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 80px;
  align-items: end;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 46px);
  letter-spacing: -.045em;
}
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 120px;
}
.impact-card {
  position: relative;
  min-height: 370px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 35px rgba(16,29,50,.05);
}
.impact-card.featured {
  grid-column: 1 / -1;
  min-height: 330px;
  padding-right: 45%;
  background:
    linear-gradient(90deg, #fff 0%, #fff 55%, rgba(234,242,255,.88) 100%);
}
.impact-card.featured::after {
  content: "C-276";
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(77,127,202,.15);
  font-size: clamp(64px, 11vw, 130px);
  font-weight: 950;
  letter-spacing: -.08em;
}
.card-number {
  position: absolute;
  right: 22px;
  top: 19px;
  color: #d5ddea;
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -.07em;
}
.card-tag {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
}
.impact-card h3 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.38;
  letter-spacing: -.035em;
}
.problem {
  max-width: 610px;
  margin: 18px 0 0;
  color: #5f6a7d;
  font-size: 14px;
}
.method {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 21px;
}
.method span {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: #315d9d;
  font-size: 10px;
  font-weight: 900;
}
.result {
  position: absolute;
  left: 29px;
  right: 29px;
  bottom: 27px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.result strong {
  color: var(--green);
  font-size: 31px;
  letter-spacing: -.05em;
}
.result span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.text-result strong { font-size: 23px; }

.dx-section {
  width: 100%;
  max-width: none;
  padding: 105px max(20px, calc((100vw - 1180px) / 2)) 110px;
  background:
    radial-gradient(circle at 16% 18%, rgba(86,135,212,.28), transparent 30rem),
    var(--navy);
}
.section-heading.inverse h2 { color: #fff; }
.section-heading.inverse > p { color: #aebfd5; }
.dx-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
}
.dashboard-preview {
  min-height: 465px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.preview-top {
  display: flex;
  justify-content: space-between;
  color: #9eb6d6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
}
.live-dot {
  padding: 5px 8px;
  border-radius: 999px;
  color: #b8efe5;
  background: rgba(19,118,109,.22);
}
.preview-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  color: #fff;
}
.preview-title small {
  display: block;
  color: #83a7df;
  font-size: 10px;
  font-weight: 900;
}
.preview-title strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}
.preview-score {
  align-self: start;
  padding: 11px;
  border-radius: 11px;
  color: #bcd3f4;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 900;
}
.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
}
.preview-cards div {
  padding: 15px;
  border-radius: 13px;
  background: rgba(255,255,255,.07);
}
.preview-cards span {
  display: block;
  color: #91a8c5;
  font-size: 10px;
}
.preview-cards b {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 17px;
}
.preview-chart {
  height: 208px;
  margin-top: 25px;
  display: flex;
  align-items: end;
  gap: 11px;
  padding: 20px 15px 0;
  border-left: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.preview-chart span {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(#6897df, #3f6eaf);
}
.dx-copy { display: grid; gap: 4px; }
.dx-copy article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dx-index {
  color: #7099d8;
  font-size: 13px;
  font-weight: 950;
}
.dx-copy h3 { margin: 0; color: #fff; font-size: 19px; }
.dx-copy p { margin: 6px 0 0; color: #aebfd5; font-size: 13px; }
.dashboard-link {
  justify-content: space-between;
  margin-top: 18px;
  background: #fff;
  color: var(--navy);
}
.dashboard-link span { font-size: 18px; }

#career { padding-top: 115px; padding-bottom: 110px; }
.career-list {
  border-top: 1px solid var(--line);
}
.career-list article {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.career-year {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.career-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
}
.career-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.closing {
  margin-bottom: 90px;
  padding: 55px;
  border-radius: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
}
.closing blockquote {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.48;
  letter-spacing: -.04em;
}
.privacy-note {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 11px;
}

footer {
  padding: 30px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 11px;
}
footer strong { display: block; color: var(--navy); font-size: 13px; }
footer span { display: block; margin-top: 2px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr 260px; gap: 38px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .section-heading > p { max-width: 620px; }
  .dx-layout { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-header { height: 62px; }
  .brand span:last-child { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 45px; }
  .profile-card { width: min(100%, 310px); }
  .metric-strip { grid-template-columns: 1fr 1fr; margin-bottom: 85px; }
  .metric-strip article:nth-child(3)::before { display: none; }
  .metric-strip article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card.featured { grid-column: auto; min-height: 420px; padding-right: 29px; }
  .impact-card.featured::after { display: none; }
  .result { align-items: flex-start; flex-direction: column; gap: 1px; }
  .dashboard-preview { min-height: 390px; }
  .preview-title, .preview-cards { grid-template-columns: 1fr; }
  .preview-title { display: block; }
  .preview-score { display: inline-block; margin-top: 10px; }
  .preview-cards { display: grid; }
  .preview-chart { height: 145px; }
  .career-list article { grid-template-columns: 1fr; gap: 5px; }
  .closing { padding: 35px 22px; }
  footer { display: block; }
  footer p { margin-bottom: 0; }
}
@media print {
  .site-header, .hero-actions { display: none !important; }
  body { background: #fff; }
  .hero { min-height: auto; padding-top: 10px; }
  .metric-strip { margin-bottom: 35px; }
  .impact-grid { padding-bottom: 35px; }
  .impact-card, .profile-card, .metric-strip { box-shadow: none; break-inside: avoid; }
  .dx-section { padding-top: 45px; padding-bottom: 45px; }
  #career { padding-top: 45px; padding-bottom: 45px; }
  .closing { margin-bottom: 20px; }
}
