:root {
  --bg-primary: #f4efe6;
  --bg-secondary: #e7dfd1;
  --surface: #fbf8f2;
  --text-primary: #1c2433;
  --text-secondary: #4a5565;
  --text-muted: #7a808a;
  --border: #d6cec0;
  --accent: #2f3e5c;
  --shadow: rgba(28, 36, 51, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(251, 248, 242, 0.95), transparent 38%),
    linear-gradient(180deg, var(--bg-primary) 0%, #f2ebdf 45%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  font-family: "Source Sans 3", sans-serif;
}

.page-shell {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 48px 24px 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  text-align: center;
  padding-bottom: 48px;
}

.brand {
  margin: 0;
  font-family: "Lancelot", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 10vh;
  max-width: 1120px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 28ch;
  color: var(--text-primary);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 400;
}

.coming-soon-badge {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.features {
  margin-bottom: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature {
  padding: 32px;
  background: rgba(251, 248, 242, 0.72);
  border: 1px solid var(--border);
  text-align: center;
}

.feature-title {
  margin: 0 0 12px;
  font-family: "Lancelot", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.feature-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer {
  margin-top: auto;
  padding-top: 48px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.35s ease;
}

.site-footer a:hover {
  border-color: var(--text-secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .page-shell {
    padding: 32px 18px 56px;
  }

  .site-header {
    padding-bottom: 32px;
  }

  .feature {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
