* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.card {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

h1 {
  color: #2c3e50;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.subtitle {
  color: #e67e22;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pitch {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.msg {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

input[type="email"] {
  flex: 1;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

input[type="email"]:focus {
  border-color: #e67e22;
}

button[type="submit"] {
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #e67e22;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: #cf6d17;
}

#subscribe-msg {
  font-size: 0.95rem;
  min-height: 1.25rem;
}

.landing {
  max-width: 540px;
}

.description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.metros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.metro-link {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e67e22;
  border: 2px solid #e67e22;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.metro-link:hover {
  background: #e67e22;
  color: #fff;
}

.footer-note {
  color: #999;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-note a {
  color: #999;
  text-decoration: none;
}

.footer-note a:hover {
  color: #e67e22;
}
