:root {
  --primary-color: #7c3aed;         /* Vivid purple */
  --secondary-color: #5b21b6;       /* Deep purple */
  --accent-color: #f3e8ff;          /* Light purple background */
  --text-color: #2d1a47;            /* Dark purple text */
  --muted-color: #a78bfa;           /* Muted lavender */
  --blockquote-color: #6d28d9;      /* Medium purple for blockquotes */
  --footer-bg: #5b21b6;             /* Deep purple for footer */
  --footer-text: #f3e8ff;           /* Light purple text for footer */
  --footer-link: #a78bfa;           /* Muted lavender for links */
  --footer-link-hover: #fff;        /* White on hover */
}

body {
  color: var(--text-color);
  background: var(--accent-color);
}

.ui.text.container {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 3em;
}

h1 {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.hero-sub {
  font-size: 1.2em;
  color: var(--secondary-color);
}

.ui.primary.button, .ui.primary.button:active, .ui.primary.button:focus {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

section {
  margin-bottom: 2em;
}

blockquote {
  font-size: 1.1em;
  color: var(--blockquote-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 1em;
}

.waitlist-form {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-form .ui.primary.button {
  width: 100%;
}

.waitlist-microcopy {
  font-size: 0.9em;
  color: var(--muted-color);
  margin-top: 0.5em;
}

footer {
  color: var(--muted-color);
  text-align: center;
  font-size: 0.95em;
  margin-top: 3em;
  padding: 0.5em 0 0 0;
  background: none;
  border-radius: 0;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 0.5em;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}
