@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --navy-950: #07111f;
  --navy-900: #0a1728;
  --navy-800: #10233c;
  --navy-700: #173354;
  --blue-600: #1f78ff;
  --blue-500: #3b8cff;
  --blue-100: #deecff;
  --mint-400: #65e6c4;
  --mint-100: #dffbf3;
  --lilac-400: #aa95ff;
  --lilac-100: #eeeaff;
  --warm: #f2f0e9;
  --paper: #f8fafc;
  --white: #ffffff;
  --ink: #0c1827;
  --muted: #66768b;
  --line: rgba(12, 24, 39, 0.12);
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.16);
  --container: 1280px;
  --cabinet: "Cabinet Grotesk", "Pretendard", "Noto Sans KR", sans-serif;
  --sans: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy-950);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  transition: padding 300ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.nav-shell {
  width: min(100%, 1220px);
  min-height: 68px;
  margin: 0 auto;
  padding: 9px 10px 9px 18px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--white);
  font-family: var(--cabinet);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(31, 120, 255, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.nav-login {
  transition: color 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-login:hover,
.nav-login:focus-visible {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-login {
  font-size: 14px;
  font-weight: 700;
}

.button {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-small {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 13px;
  font-size: 13px;
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--mint-400), #b1ffe9);
  box-shadow: 0 18px 48px rgba(101, 230, 196, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 58px rgba(101, 230, 196, 0.3);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.23);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-dark {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 20px 50px rgba(7, 17, 31, 0.2);
}

.button-outline-dark {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(7, 17, 31, 0.28);
}

.menu-button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 12px;
}

.menu-button span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 240ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 1020px;
  padding: 190px 0 110px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(31, 120, 255, 0.22), transparent 32%),
    radial-gradient(circle at 15% 100%, rgba(101, 230, 196, 0.09), transparent 34%),
    var(--navy-950);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 76%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  right: -160px;
  width: 580px;
  height: 580px;
  background: rgba(31, 120, 255, 0.13);
}

.hero-glow-two {
  bottom: 20px;
  left: 25%;
  width: 420px;
  height: 420px;
  background: rgba(101, 230, 196, 0.07);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1420px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 36px 0 180px;
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: var(--blue-600);
  font-family: var(--cabinet);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-eyebrow {
  color: var(--mint-400);
}

.hero h1,
.section-intro h2,
.connection-heading h2,
.story-copy h2,
.voices-heading h2,
.principles-heading h2,
.final-inner h2 {
  font-family: var(--cabinet);
  letter-spacing: -0.065em;
}

.hero h1 {
  width: 100%;
  max-width: 1152px;
  margin: 0;
  font-size: clamp(54px, 5.55vw, 86px);
  font-weight: 800;
  line-height: 0.99;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.inline-brand-image {
  width: 98px;
  height: 54px;
  margin: 0 5px 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  vertical-align: 0.07em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 62% 46%, rgba(101, 230, 196, 0.55), transparent 34%),
    linear-gradient(120deg, #163154, #1f78ff);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(31, 120, 255, 0.28);
}

.inline-brand-image img {
  width: 47px;
  filter: drop-shadow(0 6px 10px rgba(7, 17, 31, 0.35));
}

.hero-lead {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}

.hero-note {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.hero-product {
  position: relative;
  min-height: 630px;
  margin-left: -90px;
  transform: translate(100px, 118px) rotate(-1.8deg);
  transform-origin: center;
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(99, 159, 255, 0.22);
  border-radius: 50%;
}

.product-orbit-a {
  inset: -60px -140px 10px 40px;
}

.product-orbit-b {
  inset: 38px -30px 100px 140px;
}

.dashboard-window {
  position: absolute;
  top: 55px;
  left: 0;
  width: 760px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(250, 252, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  box-shadow: 0 70px 120px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(31, 120, 255, 0.07);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-7px) scale(1.015);
}

.window-bar {
  height: 53px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #5e6d80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(12, 24, 39, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5dce6;
}

.window-profile {
  width: 27px;
  height: 27px;
  margin-left: auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 9px;
  font-size: 10px;
}

.dashboard-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 62px 1fr;
}

.dashboard-nav {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: var(--navy-900);
}

.mini-brand {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.dashboard-nav i {
  width: 27px;
  height: 27px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-nav i.active {
  background: var(--blue-600);
  box-shadow: 0 8px 20px rgba(31, 120, 255, 0.28);
}

.dashboard-main {
  padding: 29px 31px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-heading div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dashboard-heading small {
  color: #8896a8;
  font-size: 10px;
}

.dashboard-heading strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.dashboard-heading > span {
  padding: 9px 12px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
}

.status-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.status-row article {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  background: var(--white);
  border: 1px solid #e9edf3;
  border-radius: 13px;
  box-shadow: 0 10px 25px rgba(12, 24, 39, 0.04);
}

.status-row span {
  color: #77869a;
  font-size: 9px;
}

.status-row strong {
  grid-column: 1;
  font-size: 13px;
}

.status-row small {
  grid-column: 1 / -1;
  color: #9aa5b4;
  font-size: 8px;
}

.attendance-panel {
  margin-top: 12px;
  padding: 17px;
  background: var(--white);
  border: 1px solid #e9edf3;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(12, 24, 39, 0.04);
}

.attendance-panel header {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.attendance-panel header div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.attendance-panel header strong {
  font-size: 12px;
}

.attendance-panel header small {
  color: #9aa5b4;
  font-size: 8px;
}

.attendance-panel button {
  padding: 0;
  color: var(--blue-600);
  background: transparent;
  border: 0;
  font-size: 8px;
  font-weight: 800;
  pointer-events: none;
}

.attendance-row {
  min-height: 51px;
  display: grid;
  grid-template-columns: 31px 1fr auto 36px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f0f2f6;
}

.avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.avatar-blue {
  color: #1e67db;
  background: var(--blue-100);
}

.avatar-mint {
  color: #167f66;
  background: var(--mint-100);
}

.avatar-lilac {
  color: #6451bb;
  background: var(--lilac-100);
}

.attendance-row div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.attendance-row div strong,
.attendance-row time {
  font-size: 9px;
}

.attendance-row div small {
  color: #9ba5b3;
  font-size: 7px;
}

.attendance-row time {
  color: #5e6b7c;
}

.attendance-row em {
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.status-good,
.status-live {
  color: #16785f;
  background: #dcf8ee;
}

.status-wait {
  color: #6e5a20;
  background: #fff4d2;
}

.mobile-check-card {
  position: absolute;
  right: -52px;
  bottom: -2px;
  width: 213px;
  padding: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(3.5deg);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-check-card:hover {
  transform: rotate(1deg) translateY(-8px) scale(1.02);
}

.mobile-check-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6c7a8b;
  font-family: var(--cabinet);
  font-size: 10px;
  font-weight: 800;
}

.mobile-check-top i {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--blue-100);
}

.mobile-check-clock {
  margin: 22px 0;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #f3f7fd;
  border-radius: 14px;
  text-align: center;
}

.mobile-check-clock small,
.mobile-check-clock span {
  color: #8290a1;
  font-size: 8px;
}

.mobile-check-clock strong {
  font-size: 16px;
}

.mobile-check-card button {
  width: 100%;
  min-height: 46px;
  color: var(--white);
  background: var(--blue-600);
  border: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}

.check-mark {
  width: 19px;
  height: 19px;
  margin-right: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--mint-400);
  border-radius: 50%;
  font-size: 10px;
}

.capability-marquee {
  position: relative;
  z-index: 4;
  padding: 24px 0;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--mint-400);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(7, 17, 31, 0.12);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 31px;
  padding-right: 31px;
  font-family: var(--cabinet);
  font-size: 18px;
  font-weight: 800;
}

.marquee-set i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: var(--navy-950);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-warm {
  color: var(--ink);
  background: var(--warm);
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-wrap {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.features {
  padding: 190px 0 180px;
}

.section-intro {
  max-width: 900px;
}

.section-intro h2,
.connection-heading h2,
.story-copy h2,
.voices-heading h2,
.principles-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.08;
}

.section-intro > p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.feature-bento {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(12, 24, 39, 0.09);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(20, 42, 72, 0.07);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 700ms ease;
}

.feature-card:hover {
  box-shadow: 0 28px 76px rgba(20, 42, 72, 0.12);
}

.feature-main {
  grid-column: span 7;
  grid-row: span 2;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 70%, rgba(31, 120, 255, 0.16), transparent 38%),
    var(--white);
}

.feature-attendance,
.feature-record {
  grid-column: span 5;
  grid-row: span 1;
  padding: 34px;
}

.feature-attendance {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #e4fff7, #f8fffd);
}

.feature-record {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #f0edff, #fbfaff);
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-copy h3 {
  margin: 21px 0 0;
  font-family: var(--cabinet);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.feature-copy p {
  max-width: 570px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-copy.compact h3 {
  margin-top: 15px;
  font-size: 24px;
}

.feature-copy.compact p {
  margin-top: 10px;
  font-size: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: var(--cabinet);
  font-size: 21px;
  font-weight: 800;
}

.feature-icon-blue {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 12px 30px rgba(31, 120, 255, 0.24);
}

.feature-icon-mint {
  color: #146d58;
  background: var(--mint-400);
}

.feature-icon-lilac {
  color: #5540b5;
  background: #c7baff;
}

.employee-flow {
  margin-top: 58px;
  padding: 24px;
  background: rgba(248, 251, 255, 0.88);
  border: 1px solid #e3eaf4;
  border-radius: 20px;
}

.employee-profile-card {
  padding: 17px;
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(23, 51, 84, 0.07);
}

.employee-profile-head {
  padding-bottom: 13px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid #eef1f5;
}

.employee-profile-head .avatar {
  width: 38px;
  height: 38px;
}

.employee-profile-head div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.employee-profile-head strong {
  font-size: 12px;
}

.employee-profile-head small,
.employee-data-line span {
  color: #8995a5;
  font-size: 9px;
}

.employee-profile-head i {
  padding: 6px 8px;
  color: #196e58;
  background: var(--mint-100);
  border-radius: 7px;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.employee-data-line {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.employee-data-line strong {
  font-size: 9px;
}

.flow-path {
  height: 25px;
  margin: 0 13%;
  display: flex;
  align-items: end;
  justify-content: space-around;
  border-left: 1px solid #cbd8e9;
  border-right: 1px solid #cbd8e9;
  border-bottom: 1px solid #cbd8e9;
}

.flow-path i {
  width: 1px;
  height: 12px;
  display: block;
  background: #cbd8e9;
}

.flow-modules {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.flow-modules span {
  padding: 11px 5px;
  color: #48617d;
  background: var(--white);
  border: 1px solid #e1e8f1;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.auth-methods {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-methods span {
  padding: 9px 12px;
  color: #527167;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(19, 110, 87, 0.12);
  border-radius: 10px;
  font-family: var(--cabinet);
  font-size: 11px;
  font-weight: 800;
}

.auth-methods span.is-active {
  color: var(--white);
  background: #15775f;
}

.record-visual {
  position: relative;
  height: 140px;
  display: grid;
  place-items: center;
}

.record-ring {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 15px solid rgba(170, 149, 255, 0.22);
  border-top-color: var(--lilac-400);
  border-right-color: #c2b5ff;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.record-ring span {
  color: #56429e;
  font-size: 11px;
  font-weight: 800;
  transform: rotate(28deg);
}

.record-lines {
  position: absolute;
  inset: 20px;
  pointer-events: none;
}

.record-lines i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7762d2;
  box-shadow: 0 0 0 6px rgba(170, 149, 255, 0.16);
}

.record-lines i:nth-child(1) { top: 8px; left: 7px; }
.record-lines i:nth-child(2) { right: 3px; bottom: 18px; }
.record-lines i:nth-child(3) { left: 22px; bottom: 0; }

.connection {
  padding: 100px 0 210px;
}

.connection-wrap {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 90px;
}

.connection-heading h2 {
  font-size: clamp(42px, 4.4vw, 64px);
}

.connection-map {
  position: relative;
  min-height: 680px;
}

.connection-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 190px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  border-radius: 50%;
  box-shadow: 0 34px 80px rgba(7, 17, 31, 0.22), 0 0 0 20px rgba(31, 120, 255, 0.06);
  transform: translate(-50%, -50%);
}

.connection-core img {
  width: 56px;
  margin-bottom: 7px;
}

.connection-core strong {
  color: var(--white);
  font-size: 17px;
}

.connection-core span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.connection-node {
  position: absolute;
  z-index: 2;
  width: 220px;
  min-height: 142px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(12, 24, 39, 0.09);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(23, 51, 84, 0.08);
}

.connection-node span {
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
}

.connection-node strong {
  margin-top: 8px;
  font-family: var(--cabinet);
  font-size: 20px;
}

.connection-node small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.node-contract { top: 20px; left: 20px; }
.node-attendance { top: 42px; right: 0; }
.node-leave { bottom: 40px; left: 0; }
.node-payroll { right: 28px; bottom: 12px; }

.connection-line {
  position: absolute;
  z-index: 1;
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 120, 255, 0.15), rgba(31, 120, 255, 0.62));
  transform-origin: left center;
}

.line-one { top: 214px; left: 188px; transform: rotate(27deg); }
.line-two { top: 250px; left: 51%; transform: rotate(-31deg); }
.line-three { bottom: 221px; left: 174px; transform: rotate(-27deg); }
.line-four { right: 160px; bottom: 218px; transform: rotate(25deg); }

.story {
  position: relative;
  padding: 190px 0 220px;
  overflow: clip;
}

.story-ambient {
  position: absolute;
  top: 20%;
  left: -300px;
  width: 700px;
  height: 700px;
  background: rgba(31, 120, 255, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.story-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 100px;
}

.story-copy {
  padding-top: 32px;
}

.section-kicker-dark {
  color: var(--mint-400);
}

.story-copy h2 {
  font-size: clamp(45px, 4.7vw, 68px);
}

.story-copy > p:not(.section-kicker) {
  max-width: 430px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.85;
}

.text-link {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 8px;
}

.story-cards {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.story-card {
  position: sticky;
  min-height: 610px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 38px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 32px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
  transform-origin: top center;
}

.story-card-one {
  top: 120px;
  background: linear-gradient(145deg, #dcecff, #f5f9ff);
}

.story-card-two {
  top: 142px;
  background: linear-gradient(145deg, #dffbf3, #f4fffb);
}

.story-card-three {
  top: 164px;
  background: linear-gradient(145deg, #eeeaff, #faf8ff);
}

.story-word {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
}

.story-card-copy h3 {
  margin: 18px 0 0;
  font-family: var(--cabinet);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.story-card-copy p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.onboarding-preview,
.operations-preview {
  padding: 25px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 24, 39, 0.09);
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(23, 51, 84, 0.12);
}

.preview-progress {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.preview-progress i {
  height: 4px;
  border-radius: 4px;
  background: #dfe7f1;
}

.preview-progress i:first-child,
.preview-progress i:nth-child(2) {
  background: var(--blue-600);
}

.onboarding-preview > small {
  color: var(--muted);
  font-size: 11px;
}

.onboarding-preview > strong {
  margin: 13px 0 32px;
  padding: 16px 0 11px;
  display: block;
  border-bottom: 1px solid #c8d3e0;
  font-size: 16px;
}

.onboarding-preview > span {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.phone-preview {
  width: 245px;
  min-height: 450px;
  margin: 0 auto;
  padding: 18px;
  background: var(--white);
  border: 8px solid var(--navy-950);
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(14, 48, 39, 0.18);
}

.phone-speaker {
  width: 72px;
  height: 19px;
  margin: -12px auto 19px;
  background: var(--navy-950);
  border-radius: 0 0 13px 13px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
}

.phone-brand img {
  width: 25px;
}

.phone-date {
  margin-top: 25px;
  font-family: var(--cabinet);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.phone-status {
  min-height: 180px;
  margin-top: 18px;
  padding: 25px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-800), var(--blue-600));
  border-radius: 20px;
  text-align: center;
}

.phone-status small,
.phone-status span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
}

.phone-status strong {
  margin: 7px 0 17px;
  font-size: 22px;
}

.phone-button {
  min-height: 48px;
  margin-top: 14px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--mint-400);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
}

.operations-preview {
  padding: 12px;
}

.operation-row {
  min-height: 80px;
  padding: 13px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
}

.operation-row + .operation-row {
  margin-top: 8px;
}

.operation-row > i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.op-blue { background: var(--blue-100); }
.op-mint { background: var(--mint-100); }
.op-lilac { background: var(--lilac-100); }

.operation-row div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.operation-row strong {
  font-size: 12px;
}

.operation-row small {
  color: var(--muted);
  font-size: 9px;
}

.operation-row span {
  padding: 8px 9px;
  color: #5a469f;
  background: var(--lilac-100);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
}

.voices {
  padding: 200px 0;
}

.voices-wrap {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 100px;
}

.voices-heading h2 {
  font-size: clamp(44px, 4.3vw, 64px);
}

.voice-stage {
  min-height: 510px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(12, 24, 39, 0.09);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(49, 53, 53, 0.11);
}

.voice-avatars {
  height: 66px;
  display: flex;
  align-items: center;
}

.voice-avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.13);
}

.voice-avatar + .voice-avatar {
  margin-left: -16px;
}

.avatar-owner { background: linear-gradient(145deg, #194f99, #1f78ff); }
.avatar-hr { background: linear-gradient(145deg, #22876d, #65e6c4); }
.avatar-worker { background: linear-gradient(145deg, #624bb9, #aa95ff); }

.voice-slide p {
  min-height: 150px;
  margin: 30px 0 0;
  font-family: var(--cabinet);
  font-size: clamp(27px, 2.7vw, 39px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.42;
}

.voice-slide > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.voice-slide strong {
  font-size: 13px;
}

.voice-slide span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.voice-controls {
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.voice-controls > span {
  color: var(--muted);
  font-family: var(--cabinet);
  font-size: 12px;
  font-weight: 800;
}

.voice-controls div {
  display: flex;
  gap: 7px;
}

.voice-controls button {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.voice-controls button:hover,
.voice-controls button:focus-visible {
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-2px);
}

.principles {
  padding: 200px 0;
}

.principles-heading {
  max-width: 900px;
}

.principle-list {
  margin-top: 90px;
  border-top: 1px solid var(--line);
}

.principle-list article {
  min-height: 170px;
  padding: 38px 10px;
  display: grid;
  grid-template-columns: 0.45fr 0.8fr 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.principle-list span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
}

.principle-list h3 {
  margin: 0;
  font-family: var(--cabinet);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.principle-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  padding: 180px 32px;
  overflow: hidden;
  color: var(--navy-950);
  background:
    linear-gradient(135deg, rgba(101, 230, 196, 0.98), rgba(130, 189, 255, 0.96)),
    var(--mint-400);
}

.final-glow {
  position: absolute;
  top: -360px;
  left: 50%;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.07), 0 0 0 220px rgba(255, 255, 255, 0.04);
  transform: translateX(-50%);
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-inner > img {
  width: 76px;
  filter: drop-shadow(0 18px 30px rgba(7, 17, 31, 0.2));
}

.final-inner > p {
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.final-inner h2 {
  margin: 24px 0 0;
  font-size: clamp(48px, 6.1vw, 84px);
  font-weight: 800;
  line-height: 1.08;
}

.final-actions {
  margin-top: 48px;
  display: flex;
  gap: 10px;
}

.final-note {
  margin-top: 23px;
  color: rgba(7, 17, 31, 0.63);
  font-size: 13px;
}

.final-note a {
  color: var(--navy-950);
  font-weight: 800;
  border-bottom: 1px solid var(--navy-950);
}

.site-footer {
  padding: 76px 32px 42px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--navy-950);
}

.footer-top,
.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.footer-top {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: var(--white);
}

.footer-top > p {
  margin: 0;
  font-size: 13px;
}

.footer-top nav,
.footer-policy {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.footer-top a:hover,
.footer-top a:focus-visible,
.footer-policy a:hover,
.footer-policy a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 50px;
  font-size: 11px;
  line-height: 1.8;
}

.footer-bottom > div:first-child {
  display: flex;
  flex-direction: column;
}

.footer-bottom strong {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1180px) {
  .hero {
    min-height: 980px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

  .hero-product {
    margin-left: -110px;
    transform: translate(30px, 118px) scale(0.88) rotate(-1.8deg);
  }

  .feature-record {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }

  .connection-wrap,
  .voices-wrap {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 60px;
  }

  .connection-map {
    transform: scale(0.88);
  }

  .story-layout {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 50px;
  }

  .story-card {
    padding: 42px;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding: 12px;
  }

  .nav-shell {
    min-height: 62px;
    padding-left: 14px;
    border-radius: 18px;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    padding: 26px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(7, 17, 31, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-login {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
  }

  .hero {
    min-height: 1250px;
    padding-top: 150px;
  }

  .hero-inner {
    width: min(calc(100% - 40px), 760px);
    display: block;
  }

  .hero-copy {
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(51px, 9.1vw, 74px);
  }

  .hero-product {
    width: 760px;
    margin: 0;
    transform: translate(-10px, 30px) scale(0.88) rotate(-1.6deg);
    transform-origin: top left;
  }

  .section-wrap {
    width: min(calc(100% - 40px), 760px);
  }

  .feature-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .feature-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .feature-attendance,
  .feature-record {
    grid-column: span 1;
  }

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

  .record-visual {
    display: none;
  }

  .connection-wrap,
  .voices-wrap {
    display: block;
  }

  .connection-heading,
  .voices-heading {
    max-width: 650px;
  }

  .connection-map {
    max-width: 680px;
    margin: 70px auto 0;
    transform: none;
  }

  .story-layout {
    display: block;
  }

  .story-copy {
    max-width: 650px;
    margin-bottom: 90px;
  }

  .story-cards {
    gap: 70px;
  }

  .story-card {
    position: relative;
    top: auto;
    min-height: 560px;
  }

  .voice-stage {
    margin-top: 70px;
  }

  .principle-list article {
    grid-template-columns: 0.32fr 0.8fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 680px) {
  .nav-actions .button {
    display: none;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 1110px;
    padding: 138px 0 70px;
  }

  .hero-inner,
  .section-wrap {
    width: min(calc(100% - 32px), 520px);
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-eyebrow,
  .section-kicker {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.6vw, 55px);
    line-height: 1.05;
  }

  .inline-brand-image {
    width: 61px;
    height: 36px;
    vertical-align: 0.02em;
  }

  .inline-brand-image img {
    width: 31px;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 32px;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 430px;
    transform: translate(-2px, 25px) scale(0.52) rotate(-1.6deg);
  }

  .mobile-check-card {
    right: -80px;
  }

  .features,
  .voices,
  .principles {
    padding: 130px 0;
  }

  .connection {
    padding: 50px 0 140px;
  }

  .section-intro h2,
  .connection-heading h2,
  .story-copy h2,
  .voices-heading h2,
  .principles-heading h2 {
    font-size: 40px;
    line-height: 1.13;
  }

  .section-intro > p:last-child {
    margin-top: 23px;
    font-size: 15px;
  }

  .feature-bento {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
  }

  .feature-card,
  .feature-main,
  .feature-attendance,
  .feature-record {
    min-height: 0;
    padding: 28px;
  }

  .feature-copy h3 {
    font-size: 28px;
  }

  .employee-flow {
    margin-top: 38px;
    padding: 15px;
  }

  .flow-modules {
    gap: 5px;
  }

  .connection-map {
    min-height: 780px;
    margin-top: 60px;
  }

  .connection-core {
    top: 50%;
    width: 160px;
    height: 160px;
  }

  .connection-node {
    width: calc(50% - 7px);
    min-height: 130px;
    padding: 18px;
  }

  .connection-node strong {
    font-size: 17px;
  }

  .node-contract { top: 0; left: 0; }
  .node-attendance { top: 0; right: 0; }
  .node-leave { bottom: 0; left: 0; }
  .node-payroll { right: 0; bottom: 0; }
  .connection-line { display: none; }

  .story {
    padding: 130px 0;
  }

  .story-copy {
    margin-bottom: 60px;
  }

  .story-cards {
    gap: 22px;
  }

  .story-card {
    min-height: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 25px;
  }

  .story-card-copy h3 {
    font-size: 30px;
  }

  .onboarding-preview,
  .operations-preview {
    margin-top: 22px;
  }

  .phone-preview {
    margin-top: 22px;
  }

  .voice-stage {
    min-height: 510px;
    margin-top: 55px;
    padding: 30px;
    border-radius: 24px;
  }

  .voice-slide p {
    min-height: 160px;
    font-size: 27px;
  }

  .principle-list {
    margin-top: 55px;
  }

  .principle-list article {
    padding: 30px 4px;
    display: block;
  }

  .principle-list h3 {
    margin-top: 12px;
    font-size: 23px;
  }

  .principle-list p {
    margin-top: 12px;
  }

  .final-cta {
    padding: 120px 18px;
  }

  .final-inner h2 {
    font-size: 42px;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
  }

  .site-footer {
    padding: 60px 20px 35px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    display: block;
  }

  .footer-policy {
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* === onharu-landing-additions v2 === */
/* ── 히어로: 제목과 우측 목업 겹침 해소 ───────────────── */
.hero-inner { column-gap: 32px; }

.hero-product {
  margin-left: -72px;
  transform: perspective(1800px) translate(84px, 118px) scale(0.96) rotateY(-7deg) rotate(-1.8deg);
  transform-origin: left center;
}

@media (max-width: 1180px) {
  .hero-product {
    margin-left: -40px;
    transform: perspective(1600px) translate(44px, 118px) scale(0.855) rotateY(-7deg) rotate(-1.8deg);
  }
}

/* ── 연결 맵: 직원 정보를 중심으로 4개 카드가 원 궤도를 돈다 ── */
@media (min-width: 681px) {
  .connection-map {
    --orbit-r: 232px;
  }

  /* 궤도 원 */
  .connection-map::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: calc(var(--orbit-r) * 2);
    height: calc(var(--orbit-r) * 2);
    margin: calc(var(--orbit-r) * -1) 0 0 calc(var(--orbit-r) * -1);
    border: 1px dashed rgba(31, 120, 255, 0.26);
    border-radius: 50%;
    pointer-events: none;
  }

  /* 직선 연결선은 궤도와 어울리지 않으므로 감춘다 */
  .connection-line { display: none; }

  .connection-node {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    margin: -71px 0 0 -110px;
    animation: onharu-orbit 48s linear infinite;
    will-change: transform;
  }

  .node-contract   { animation-delay:   0s; }
  .node-attendance { animation-delay: -12s; }
  .node-payroll    { animation-delay: -24s; }
  .node-leave      { animation-delay: -36s; }

  /* 읽고 싶을 때 멈춘다 */
  .connection-map:hover .connection-node { animation-play-state: paused; }
}

@keyframes onharu-orbit {
  from { transform: rotate(0deg)   translateX(var(--orbit-r)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg); }
}

@media (min-width: 681px) and (max-width: 960px) {
  .connection-map { --orbit-r: 206px; }
}

/* 모션 최소화 설정에서는 회전을 멈추고 네 방향에 고정 배치 */
@media (prefers-reduced-motion: reduce) and (min-width: 681px) {
  .connection-node { animation: none; }
  .node-contract   { transform: rotate(0deg)   translateX(var(--orbit-r)) rotate(0deg); }
  .node-attendance { transform: rotate(90deg)  translateX(var(--orbit-r)) rotate(-90deg); }
  .node-payroll    { transform: rotate(180deg) translateX(var(--orbit-r)) rotate(-180deg); }
  .node-leave      { transform: rotate(270deg) translateX(var(--orbit-r)) rotate(-270deg); }
}
