:root {
  --orbit-font-family: system-ui, sans-serif;
  --orbit-primary-color: #0b6bcb;
  --orbit-text-color: #1f2937;
  --orbit-surface-color: #ffffff;
  --orbit-surface-border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body.starter-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--orbit-font-family);
  color: var(--orbit-text-color);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.site-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 1.25rem;
}

.site-wrap-centered {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.site-shell {
  width: 100%;
  background: var(--orbit-surface-color);
  border: 1px solid var(--orbit-surface-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.site-shell section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.site-shell-error {
  max-width: 760px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.1;
  max-width: 20ch;
}

.site-shell-error h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  max-width: none;
}

.site-shell p {
  margin: 0.75rem 0 0;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 1.25rem;
}

.hero-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  background: var(--orbit-primary-color);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--orbit-surface-border);
  object-fit: cover;
}

.subdomain-label,
.meta {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .site-wrap {
    padding: 0.75rem;
  }
}
