@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #181817;
  --muted: #6c6963;
  --paper: #f5f2ea;
  --card: #fffdf8;
  --line: rgba(24, 24, 23, 0.12);
  --lime: #dfff64;
  --coral: #ff6c50;
  --yellow: #ffc94a;
  --blue: #5e8cff;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(38, 34, 25, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 9% 9%, rgba(255, 201, 74, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 16%, rgba(94, 140, 255, 0.12), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", sans-serif;
  word-break: keep-all;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  content: "";
}

.brand-mark::before {
  top: 0;
  left: 0;
  background: var(--ink);
}

.brand-mark::after {
  right: 0;
  bottom: 0;
  background: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(24, 24, 23, 0.08);
}

.brand-name {
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav .nav-pill {
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  min-height: 710px;
  gap: 54px;
  padding: 84px 0 108px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.075em;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero h1 .accent::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.08em;
  left: 0.04em;
  height: 0.24em;
  border-radius: 999px;
  background: var(--lime);
  content: "";
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
  letter-spacing: -0.035em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(38, 34, 25, 0.1);
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.pixel-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(24, 24, 23, 0.09);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.pixel-card strong {
  font-family: "Manrope", "Noto Sans KR", sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.pixel-card small {
  color: rgba(24, 24, 23, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.card-today {
  top: 24px;
  right: 28px;
  width: 68%;
  height: 230px;
  background: var(--lime);
  transform: rotate(4deg);
  animation: float-card 6s ease-in-out infinite;
}

.card-today .big-number {
  font-family: "Manrope", sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.card-make {
  bottom: 34px;
  left: 8px;
  width: 64%;
  height: 268px;
  background: var(--ink);
  color: white;
  transform: rotate(-5deg);
  animation: float-card 7s ease-in-out 800ms infinite reverse;
}

.card-make small {
  color: rgba(255, 255, 255, 0.58);
}

.card-make .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.card-make .grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--coral);
}

.card-make .grid span:nth-child(2),
.card-make .grid span:nth-child(6) {
  background: var(--yellow);
}

.card-make .grid span:nth-child(3),
.card-make .grid span:nth-child(4) {
  background: var(--blue);
}

.card-note {
  right: 0;
  bottom: 2px;
  width: 44%;
  height: 184px;
  background: var(--card);
  transform: rotate(5deg);
  animation: float-card 5.5s ease-in-out 1.2s infinite;
}

.card-note p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.055em;
}

@keyframes float-card {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

.section {
  padding: 112px 0;
}

.section-label {
  margin: 0 0 18px;
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  max-width: 840px;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.section-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.principle {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
}

.principle:nth-child(2) {
  background: var(--yellow);
}

.principle-number {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.principle h3 {
  margin: 74px 0 10px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.025em;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #191918;
  color: white;
  box-shadow: var(--shadow);
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.service-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.service-brand h3 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.06em;
}

.service-tagline {
  margin: 34px 0 18px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.065em;
}

.service-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.service-meta li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

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

.service-actions .button {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: white;
}

.service-actions .button.primary {
  border-color: white;
  background: white;
  color: var(--ink);
}

.service-visual {
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 54px 48px 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(223, 255, 100, 0.72), transparent 25%),
    linear-gradient(145deg, #ff9f74 0%, #f2c9ad 55%, #ffe0bf 100%);
}

.service-visual img {
  width: min(360px, 86%);
  border-radius: 44px 44px 0 0;
  box-shadow: 0 30px 70px rgba(35, 24, 20, 0.28);
}

.company-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  padding: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.78);
}

.company-panel h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.23;
  letter-spacing: -0.065em;
}

.company-panel p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.company-facts {
  margin: 0;
}

.company-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts div:first-child {
  border-top: 1px solid var(--line);
}

.company-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.company-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 86px 72px;
  border-radius: var(--radius-xl);
  background: var(--coral);
}

.contact-band::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.contact-band h2 {
  position: relative;
  z-index: 1;
  max-width: 730px;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.contact-band a {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 28px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 38px 0 50px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  font-weight: 700;
  text-decoration: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 72px;
  padding: 86px 0 120px;
}

.legal-side {
  position: sticky;
  top: 32px;
  align-self: start;
}

.legal-side p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.legal-side a {
  font-weight: 800;
  text-decoration: none;
}

.legal-content h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -0.065em;
}

.legal-content .intro {
  margin: 0 0 58px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.legal-content h2 {
  margin: 46px 0 14px;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: #595650;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: -0.02em;
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.info-card {
  margin: 32px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
}

.info-card h2,
.info-card h3 {
  margin-top: 0;
}

.info-card a {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
}

.faq-list summary {
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
    padding: 64px 0 90px;
  }

  .hero-art {
    width: min(520px, 100%);
    min-height: 460px;
    margin: 0 auto;
  }

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

  .principle {
    min-height: auto;
  }

  .principle h3 {
    margin-top: 42px;
  }

  .service-panel,
  .company-panel {
    grid-template-columns: 1fr;
  }

  .service-copy,
  .company-panel {
    padding: 50px 38px;
  }

  .service-visual {
    min-height: 580px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 12px 0;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a:not(.nav-pill) {
    display: none;
  }

  .site-nav .nav-pill {
    padding: 10px 14px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-art {
    min-height: 390px;
  }

  .pixel-card {
    padding: 18px;
    border-radius: 23px;
  }

  .card-today {
    right: 12px;
    height: 180px;
  }

  .card-today .big-number {
    font-size: 54px;
  }

  .card-make {
    height: 220px;
  }

  .card-note {
    height: 150px;
  }

  .card-note p {
    font-size: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .service-panel {
    border-radius: 28px;
  }

  .service-copy,
  .company-panel {
    padding: 38px 24px;
  }

  .service-brand img {
    width: 54px;
    height: 54px;
  }

  .service-brand h3 {
    font-size: 32px;
  }

  .service-visual {
    min-height: 490px;
    padding: 38px 20px 0;
  }

  .company-panel {
    gap: 42px;
    border-radius: 28px;
  }

  .company-facts div {
    grid-template-columns: 90px 1fr;
  }

  .contact-band {
    padding: 56px 26px;
    border-radius: 28px;
  }

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

  .legal-layout {
    padding: 56px 0 90px;
  }
}

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

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