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

:root {
  color-scheme: light;
  --ink: #171514;
  --muted: #6f6a66;
  --paper: #fbfbfa;
  --surface: #ffffff;
  --rose: #c66f7a;
  --rose-soft: #f3d9dd;
  --sage: #6d8b74;
  --sage-soft: #e4ece3;
  --line: rgba(23, 21, 20, 0.1);
  --shadow: 0 22px 60px rgba(66, 44, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 54%, #f6faf4 100%);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 1060px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 18px 30px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: end;
}

.hero-copy {
  padding: 12px 2px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.05rem, 15vw, 5.55rem);
  line-height: 0.98;
  font-weight: 680;
  letter-spacing: 0;
}

.tagline {
  margin: 14px 0 0;
  font-size: clamp(1rem, 4.2vw, 1.36rem);
  line-height: 1.32;
  font-weight: 620;
}

.summary {
  max-width: 38rem;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  word-break: keep-all;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(251, 250, 248, 0.28) 100%);
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.link-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(66, 44, 38, 0.07);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(198, 111, 122, 0.42);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(66, 44, 38, 0.11);
  transform: translateY(-2px);
  outline: none;
}

.link-card.primary {
  border-color: rgba(198, 111, 122, 0.36);
  background: linear-gradient(135deg, #fff6f7 0%, #ffffff 48%, #f7fbf6 100%);
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose);
}

.link-card:nth-child(2) .icon,
.link-card:nth-child(4) .icon {
  background: var(--sage-soft);
  color: var(--sage);
}

.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon svg path:first-child,
.primary .icon svg path {
  fill: currentColor;
  stroke: none;
}

.link-card strong,
.link-card small {
  display: block;
}

.link-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.link-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 10px;
  align-items: center;
  justify-content: center;
  margin: 22px 0 0;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.info-strip p {
  margin: 0;
  white-space: nowrap;
}

.info-strip span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(23, 21, 20, 0.32);
}

@media (min-width: 760px) {
  .page-shell {
    display: grid;
    align-content: center;
    padding: 48px 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual {
    border-radius: 34px;
  }

  .link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }
}

@media (max-width: 359px) {
  .page-shell {
    padding-inline: 14px;
  }

  .link-card {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding-inline: 13px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
