/* ============================================================
   Design Tokens — edit these to theme the entire site
   ============================================================ */
:root {
  --color-primary: #667eea;
  --color-secondary: #764ba2;
  --color-text: #333;
  --color-text-muted: #666;
  --color-bg-card: rgba(255, 255, 255, 0.95);
  --color-footer-bg: rgba(0, 0, 0, 0.15);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;

  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  --content-max: 720px;
}

/* ============================================================
   Reset
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================================
   Base
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  line-height: 1.6;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  padding: var(--space-md) var(--space-lg);
}

.site-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.site-logo:hover {
  opacity: 1;
}

/* ============================================================
   Main — fills remaining space, centers card
   ============================================================ */
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

/* ============================================================
   Card
   ============================================================ */
.card {
  text-align: center;
  background: var(--color-bg-card);
  padding: var(--space-xl) 4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: var(--content-max);
  width: 100%;
}

h1 {
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.site-footer p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
  .card {
    padding: var(--space-lg) var(--space-md);
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}
