body {
  font-family: system-ui, sans-serif;
  max-width: 1024px;
  margin: 0 auto;
  color: #111;
  background: #fff;
  padding: 3rem 1.25rem 2.5rem;
}

.site-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.site-logo {
  margin: 0;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-logo-link {
  color: inherit;
  text-decoration: none;
}

.site-kicker {
  margin: 0.4rem 0 0.25rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.site-headline {
  margin: 0.45rem 0 0.35rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-subtitle {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.05rem;
  color: #222;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  font-size: 1rem;
  line-height: 1.1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn.primary {
  background: #111;
  color: #fff;
}

.btn.secondary {
  border-color: #111;
  color: #111;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 16px;
}

.plan-card.highlighted {
  border-color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.plan-card .price {
  font-size: 1.25rem;
  font-weight: 600;
}

.plan-card ul {
  padding-left: 1rem;
}

.card {
  border: 1px solid #c9c9c9;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.card-section {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
}

.section-divider {
  border-top: 1px solid #c9c9c9;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.logo {
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

.meta {
  margin-top: 0.75rem;
  color: #333;
}

.signup-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-form input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.notice {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.notice.success {
  background: #e6f4ea;
  color: #0f6b2f;
}

.notice.error {
  background: #fde8ec;
  color: #ab1327;
}

.auth-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-shell {
  max-width: 520px;
  margin: 0 auto;
}

.auth-card {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.auth-title {
  margin: 0 0 0.25rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.auth-subtitle {
  margin: 0 0 1rem;
  color: #333;
}

.oauth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.btn.oauth {
  border: 1px solid #cfd3d8;
  color: #111;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: none;
}

.btn.oauth.google {
  border-color: #dcdcdc;
}

.btn.oauth.linkedin {
  border-color: #0a66c2;
  color: #0a66c2;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #555;
  margin: 0.9rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e2e2;
}

.auth-divider span {
  font-size: 0.95rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.auth-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.auth-form input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.full-width {
  width: 100%;
  text-align: center;
}

.auth-meta {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.targets-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.target-tile {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  display: grid;
  gap: 0.2rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.target-tile:hover {
  border-color: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.target-tile input {
  align-self: start;
}

.target-name {
  font-weight: 700;
}

.target-meta {
  color: #555;
  font-size: 0.95rem;
}

.request-block h3 {
  margin: 0;
}

.request-help {
  margin: 0.2rem 0 0.8rem;
  color: #444;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  align-items: end;
}

.request-form input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.request-count {
  margin: 0.5rem 0 0;
  color: #333;
}

.form-actions {
  margin-top: 0.25rem;
}

.alternative {
  display: none;
}
