:root {
  --bg: #fbf9ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #211a37;
  --muted: #716986;
  --line: #e9e1f7;
  --primary: #7957c9;
  --primary-deep: #5f3db4;
  --lavender: #eee5ff;
  --lavender-2: #d8c6ff;
  --shadow: 0 24px 70px rgba(86, 60, 140, 0.10);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 4%, rgba(216, 198, 255, 0.55), transparent 26rem),
    radial-gradient(circle at 8% 32%, rgba(238, 229, 255, 0.85), transparent 24rem),
    var(--bg);
  font-family:
    Inter, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans KR", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(145deg, #9a78e8, #6c49c0);
  box-shadow: 0 7px 18px rgba(108, 73, 192, 0.28);
}

nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--primary-deep);
}

.hero {
  min-height: 610px;
  padding: 118px 0 112px;
  max-width: 900px;
}

.eyebrow,
.section-kicker {
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.policy-head h1 {
  margin: 18px 0 24px;
  font-size: clamp(3.7rem, 8.6vw, 7.7rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--primary-deep);
  box-shadow: 0 12px 32px rgba(95, 61, 180, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.section {
  padding: 100px 0;
  border-top: 1px solid rgba(220, 211, 237, 0.8);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  margin-top: 26px;
}

.section h2,
.product-card h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.body-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.body-copy p {
  margin: 0 0 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.product-copy {
  padding: clamp(34px, 6vw, 64px);
  z-index: 2;
}

.product-card h2 {
  margin-top: 17px;
}

.pill {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid #d9c9fb;
  border-radius: 999px;
  color: var(--primary-deep);
  background: #f4efff;
  font-size: 0.8rem;
  font-weight: 750;
}

.product-lead {
  margin: 18px 0 10px;
  font-size: 1.16rem;
  font-weight: 700;
}

.product-copy p:not(.product-lead) {
  color: var(--muted);
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 22px;
}

.feature-row span {
  padding: 7px 10px;
  border-radius: 10px;
  color: #5b5270;
  background: #f4f0fa;
  font-size: 0.86rem;
}

.text-link {
  color: var(--primary-deep);
  font-weight: 760;
  text-decoration: none;
}

.product-art {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(238, 229, 255, 0.45), rgba(215, 197, 255, 0.78));
}

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

.orbit-one {
  width: 300px;
  height: 300px;
  right: -30px;
  top: 42px;
}

.orbit-two {
  width: 210px;
  height: 210px;
  left: 20px;
  bottom: 20px;
}

.moon,
.cake {
  position: absolute;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 28px rgba(62, 40, 118, 0.15));
}

.moon {
  top: 65px;
  left: 72px;
  font-size: 7rem;
  color: #6847ba;
  transform: rotate(-12deg);
}

.cake {
  right: 60px;
  bottom: 54px;
  font-size: 7rem;
  transform: rotate(4deg);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 0.72fr);
  gap: 56px;
  align-items: end;
}

.contact-section h2 {
  margin-top: 24px;
}

.contact-section p {
  color: var(--muted);
}

.contact-card {
  padding: 24px 26px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-strong);
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(86, 60, 140, 0.07);
}

.contact-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-card strong {
  font-size: 1.15rem;
}

footer {
  min-height: 120px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

/* Privacy policy */
.policy-wrap {
  max-width: 900px;
  padding-bottom: 110px;
}

.policy-head {
  padding: 110px 0 60px;
}

.policy-head h1 {
  font-size: clamp(3.4rem, 8vw, 6.6rem);
}

.policy-head p {
  color: var(--muted);
}

.policy-card {
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.policy-card section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid #eee7f8;
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.policy-card p {
  margin: 0;
  color: #625a75;
}

.policy-card a {
  color: var(--primary-deep);
}

.policy-note {
  margin: 24px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 72px;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 0.84rem;
  }

  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 90px;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .section {
    padding: 76px 0;
  }

  .section-grid,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .product-art {
    min-height: 280px;
    order: -1;
  }

  .moon {
    top: 30px;
    left: 15%;
    font-size: 5.7rem;
  }

  .cake {
    right: 14%;
    bottom: 30px;
    font-size: 5.7rem;
  }

  footer {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .policy-head {
    padding: 86px 0 44px;
  }
}

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