.get-started {
  min-height: calc(100vh - 57px);
  background: linear-gradient(135deg, #FFFCF8 0%, #F5EDE0 100%);
  padding: 4rem 1.5rem;
}

.get-started-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.get-started-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.get-started-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

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

.glance-card {
  background: #fff;
  border: 1px solid #EDE5F5;
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.glance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 65, 12, 0.08);
}

.glance-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c2410c;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.glance-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.glance-body {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.signup-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #EDE5F5;
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.signup-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.signup-subheading {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.signup-form {
  text-align: left;
}

.signup-field {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.signup-hint {
  margin: -0.5rem 0 0.75rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: #6b6475;
}

.signup-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #EDE5F5;
  border-radius: 0.5rem;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.signup-input:focus {
  border-color: #c2410c;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

.signup-next,
.signup-submit {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #c2410c;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.signup-next:hover,
.signup-submit:hover {
  background: #9a3412;
}

.signup-submit {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
}

.signup-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.signup-reveal.visible {
  max-height: 320px;
  opacity: 1;
}

.signup-signin {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #6b7280;
}

.signup-signin a {
  color: #c2410c;
  font-weight: 600;
  text-decoration: none;
}

.signup-signin a:hover {
  text-decoration: underline;
}

.signup-errors {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.signup-field .field_with_errors {
  display: contents;
}
