:root {
  --bg: #f5e7d3;
  --ink: #1f2933;
  --card: #ffffff;
  --accent: #d96c3d;
  --muted: #4b5563;
  --pill: #efe3d1;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --font: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #f9f3e6 0%, #f5e7d3 40%, #f8f1e8 100%);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.auth-links a {
  margin-left: 10px;
}

.signup-body {
  background: var(--bg);
}
.signup-main {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.form-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  max-width: 420px;
  width: 100%;
}
.form-card h1 {
  margin: 0 0 8px;
}
.form-card .subtext {
  margin: 0 0 16px;
}
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}
.form-card input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7cbb9;
  font-size: 15px;
}
.form-card input:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.primary.full {
  width: 100%;
  justify-content: center;
}
.ghost.full {
  width: 100%;
  justify-content: center;
}
.status {
  font-size: 14px;
  color: var(--muted);
}
.status.error { color: #b42318; }
.status.success { color: #137333; }
.subtext.small {
  font-size: 13px;
  color: var(--muted);
}
.subtext.small a.login-link { color: var(--accent); font-weight: 600; }
.subtext.small a.verify-link { color: #0f766e; font-weight: 600; }

.hero {
  padding: 28px 20px 10px;
}
.hero-content {
  max-width: 720px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
}
.subtext {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pill {
  display: inline-block;
  background: var(--pill);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
}
.pill a { color: var(--accent); font-weight: 600; }

.primary, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  min-height: 44px;
}
.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 10px 20px 20px;
}
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.icon {
  font-size: 20px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.flow {
  padding: 10px 20px 40px;
  text-align: left;
}
.flow h2 {
  margin: 0 0 12px;
}
.flow ol {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}
.flow .cta-row {
  margin-top: 16px;
}
.center {
  justify-content: center;
}

.footer {
  padding: 18px 20px 28px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.footer .links a {
  margin-left: 12px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero h1 { font-size: 40px; }
  .hero { padding: 40px 40px 20px; }
  .grid { padding: 20px 40px 30px; }
  .flow { padding: 10px 40px 50px; }
  .footer { padding: 20px 40px 40px; }
}

