@font-face {
  font-family: "NotMeterNeo";
  src: url("https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeo-Variable.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #05080d;
  --panel: rgba(8, 16, 26, 0.84);
  --line: rgba(120, 242, 251, 0.18);
  --text: #f4fbff;
  --muted: rgba(226, 243, 255, 0.68);
  --cyan: #78f2fb;
  --green: #7df4ae;
  --gold: #ffe08a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "NotMeterNeo", "Malgun Gothic", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

.site-header,
.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(120, 242, 251, 0.5);
  color: var(--cyan);
  background: rgba(120, 242, 251, 0.08);
  clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
}

.nav {
  display: flex;
  gap: 10px;
  color: rgba(244, 251, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  padding: 8px 10px;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 110px 0 56px;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.96) 0%, rgba(5, 8, 13, 0.78) 48%, rgba(5, 8, 13, 0.3) 100%),
    var(--hero-image) right 50% / min(820px, 76vw) auto no-repeat,
    #05080d;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 70px;
  line-height: 0.98;
}

.lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  border-color: rgba(120, 242, 251, 0.5);
  color: #021018;
  background: var(--cyan);
}

.page {
  padding: 34px 0 70px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.7;
}

.boss-list,
.metric-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.boss-list a,
.metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  text-decoration: none;
}

.boss-list b,
.metric-list b {
  color: var(--text);
}

.boss-list small,
.metric-list small {
  color: rgba(226, 243, 255, 0.58);
}

.note {
  margin-top: 16px;
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 14px;
  color: var(--muted);
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: rgba(226, 243, 255, 0.46);
  font-size: 13px;
}

@media (max-width: 800px) {
  .site-header {
    position: static;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 68vh;
    padding-top: 46px;
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.98), rgba(5, 8, 13, 0.76)),
      var(--hero-image) center top / 100% auto no-repeat,
      #05080d;
  }

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

  h1 {
    font-size: 42px;
  }
}
