/* 랜딩(startup 레이아웃): tokens.css 변수에 의존 */

.body-home {
  margin: 0;
  background: var(--app-bg);
  color: var(--app-text);
}

.body-home .app-root {
  display: none;
}

.startup-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.startup-hero {
  text-align: center;
  margin-bottom: clamp(2.5rem, 8vw, 4rem);
  max-width: 36rem;
}

.startup-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--app-text);
  line-height: 1.2;
}

.startup-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  color: var(--app-muted);
  margin: 0 0 1.5rem;
}

.startup-enter {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--app-text);
  background: var(--overlay-w-0a);
  border: 1px solid var(--app-border);
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.startup-enter:hover {
  background: var(--overlay-w-0d);
  border-color: var(--accent);
  color: var(--app-text);
  text-decoration: none;
}

.startup-main {
  flex: 1;
  width: 100%;
  max-width: 52rem;
}

.cherry-root .startup-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cherry-hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.cherry-hero-actions .startup-enter {
  border: none;
  background: transparent;
}

.cherry-hero-actions .startup-enter:hover {
  border: none;
  background: transparent;
}

.cherry-hero-actions .startup-enter-icon {
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

.cherry-hero-actions .startup-enter img {
  width: 12rem;
  display: block;
  transition: transform 0.2s ease;
}

.cherry-hero-actions .startup-enter:hover img {
  transform: scale(1.1);
}

.cherry-hero-actions .cherry-action-margin {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.startup-content {
  font-size: 1rem;
  line-height: 1.7;
}

.startup-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--app-text);
}

.startup-content h1:first-child {
  margin-top: 0;
}

.startup-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
  color: var(--app-text);
  padding-top: 1rem;
  border-top: 1px solid var(--app-border);
}

.startup-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.startup-content p {
  margin: 0 0 0.75rem;
  color: var(--app-text);
}

.startup-content ul,
.startup-content ol {
  margin: 0 0 1rem;
  padding-left: 1.5em;
}

.startup-content li {
  margin-bottom: 0.35rem;
}

.startup-content strong {
  font-weight: 600;
  color: var(--app-text);
}

.startup-content a {
  color: var(--accent);
  text-decoration: none;
}

.startup-content a:hover {
  text-decoration: underline;
}

.startup-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--app-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--app-muted);
}

.startup-footer a {
  color: var(--app-muted);
  text-decoration: none;
}

.startup-footer a:hover {
  color: var(--app-text);
  text-decoration: underline;
}

.startup-footer-copy {
  margin-left: 0.25rem;
}
