:root {
  --bg: #f7f7fb;
  --card-bg: #ffffff;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --accent: #007c91;      /* teal */
  --accent-soft: #e0f4f7;
  --button: #e69f00;      /* gold */
  --button-text: #1f1300;
  --border: #e5e7eb;
  --radius: 10px;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, #eef6ff 0, var(--bg) 45%, #fdfdfd 100%);
  color: var(--text-main);
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.tagline {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section {
  margin-bottom: 28px;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.section p {
  margin: 6px 0;
  line-height: 1.5;
  color: var(--text-main);
}

.form-section {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px 26px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font: inherit;
  resize: vertical;
}

input[type="email"]:focus,
textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

button {
  margin-top: 6px;
  padding: 11px 16px;
  border-radius: 999px;
  border: none;
  background: var(--button);
  color: var(--button-text);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.1s ease, background 0.1s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

button:hover {
  background: #f0ae1a;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.small-print {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 768px) {
  .page {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .form-section {
    padding: 28px 28px 30px;
  }
}
