/* ScaleUpOnDemand — minimal marketing page */

:root {
  --bg: #e8e8e8;
  --text: #1a1a1a;
  --muted: #333;
  --border: #1a1a1a;
  --cta-bg: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
}

.site-header__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 38rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  width: 100%;
}

.hero__headline {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.75rem;
  letter-spacing: -0.02em;
}

.hero__body {
  margin: 0 0 2rem;
}

.hero__body p {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

.hero__body p:last-child {
  margin-bottom: 0;
}

.hero__body strong {
  font-style: italic;
  font-weight: 600;
  color: var(--text);
}

.hero__cta-wrap {
  text-align: center;
  margin: 0;
}

.hero__cta {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: var(--cta-bg);
  border: 1px solid var(--border);
  border-radius: 9999px;
}

.hero__cta:hover {
  opacity: 0.9;
}

.site-footer {
  padding: 1.5rem 1.5rem 2rem;
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer__line {
  margin: 0 0 0.35rem;
}

.site-footer a {
  text-decoration: underline;
}

.site-footer a:hover {
  opacity: 0.85;
}
