:root {
  color-scheme: light;
  --bg-top: #ffffff;
  --bg-bottom: #fbf7f8;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(127, 53, 80, 0.12);
  --line-strong: rgba(127, 53, 80, 0.18);
  --text: #1f1720;
  --muted: #6f5b66;
  --accent: #c13f68;
  --accent-strong: #8f2148;
  --accent-soft: rgba(193, 63, 104, 0.1);
  --shadow-lg: 0 28px 64px rgba(99, 33, 56, 0.09);
  --shadow-md: 0 16px 32px rgba(99, 33, 56, 0.06);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Pretendard Variable", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(236, 169, 192, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(245, 205, 219, 0.18), transparent 26%),
    linear-gradient(145deg, var(--bg-top), #ffffff 52%, var(--bg-bottom));
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

code {
  font-family: "Consolas", "SFMono-Regular", monospace;
}

h1,
h2,
p,
dl,
dt,
dd {
  margin: 0;
}

.hub-shell {
  width: min(1160px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.hero,
.feature-card,
.service-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(236, 169, 192, 0.2), transparent 64%);
  pointer-events: none;
}

.hero-copy,
.hero-status {
  position: relative;
  z-index: 1;
}

.eyebrow,
.card-kicker {
  margin-bottom: 12px;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 34rem;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.hero-status {
  display: grid;
  gap: 14px;
  align-content: start;
}

.status-chip {
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.status-chip strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.service-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  margin-top: 20px;
  padding: 28px;
}

.service-note h2 {
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.feature-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.feature-card-live {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(236, 169, 192, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.98);
}

.feature-card-plan {
  background:
    radial-gradient(circle at bottom left, rgba(245, 205, 219, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.96);
}

.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(127, 53, 80, 0.07);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.feature-badge.is-live {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

h2 {
  font-size: 1.34rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.feature-card-live h2 {
  font-size: 1.84rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.card-copy {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.feature-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card-plan .feature-meta {
  grid-template-columns: 1fr;
}

.feature-meta div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
}

.feature-meta dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-meta dd {
  margin-top: 6px;
  font-weight: 700;
  line-height: 1.5;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(143, 33, 72, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.feature-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(143, 33, 72, 0.22);
  filter: saturate(1.02);
}

.feature-link.is-secondary {
  background: rgba(127, 53, 80, 0.04);
  color: var(--muted);
  border: 1px solid var(--line);
  box-shadow: none;
}

.feature-link.is-disabled {
  cursor: default;
  opacity: 0.84;
  pointer-events: none;
}

@media (max-width: 1040px) {
  .hero,
  .service-note,
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hub-shell {
    width: min(100vw - 24px, 1160px);
    padding: 24px 0 36px;
  }

  .hero,
  .feature-card,
  .service-note {
    padding: 24px;
  }

  .feature-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-meta {
    grid-template-columns: 1fr;
  }

  .feature-link {
    width: 100%;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }
}
