:root {
  --brand-orange: #f47a20;
  --brand-orange-dark: #d9650f;
  --charcoal: #2c2c2e;
  --bg: #f5f5f6;
  --surface: #ffffff;
  --border: #e6e6ea;
  --muted: #737373;
  --radius: 12px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Hero */
.hero {
  text-align: center;
}

.logo {
  height: auto;
  max-width: 220px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 auto;
  max-width: 44ch;
}

/* Form card */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(44, 44, 46, 0.04);
}

.card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 12px;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}

input,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 6px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.15);
}

button {
  margin-top: 22px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-orange);
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

button:hover {
  background: var(--brand-orange-dark);
}

button:focus-visible {
  outline: 3px solid rgba(244, 122, 32, 0.4);
  outline-offset: 2px;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
}

.footer a:hover {
  color: var(--charcoal);
}

@media (max-width: 480px) {
  .container {
    padding: 40px 16px 32px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
}
