.su-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px;
}

.su-layout {
  width: 100%;
  max-width: 1080px;
  display: flex;
  align-items: flex-start;
}

.su-card {
  flex: 1.35 1 0;
  min-width: 0;
  margin-right: 28px;
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 44px 40px;
}

.su-preview {
  flex: 1 1 0;
  min-width: 0;
  position: sticky;
  top: 100px;
  background: var(--lp-card-bg-soft);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 30px 26px;
}
.su-preview-heading {
  font-size: 19px;
  font-weight: 600;
  color: var(--lp-cream);
  margin: 10px 0 20px;
  line-height: 1.3;
}
.su-feature-tile {
  display: flex;
  align-items: center;
  background: #0F172A;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.su-feature-bullet {
  flex: 0 0 auto;
  color: var(--lp-gold);
  font-size: 15px;
  margin-right: 12px;
}
.su-feature-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-cream);
  line-height: 1.4;
}

/* ---------- Sign-in pill button (nav) ---------- */
.su-signin-pill {
  display: inline-block;
  border: 1px solid rgba(201, 151, 76, 0.4);
  color: var(--lp-gold);
  background: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.su-signin-pill:hover { background: rgba(201, 151, 76, 0.1); }

/* ---------- Inline field icons + password show/hide ---------- */
.su-field-wrap { position: relative; }
.su-field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lp-muted);
  pointer-events: none;
  font-size: 14px;
}
.su-field-wrap input { padding-left: 36px !important; }
.su-toggle-password-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--lp-muted);
  padding: 4px;
}
.su-field-wrap input[type="password"],
.su-field-wrap input[type="text"][name="password"] { padding-right: 34px !important; }

.su-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
.su-sub {
  font-size: 15px;
  color: var(--lp-body);
  line-height: 1.6;
  margin: 0 0 6px;
}
.su-center { text-align: center; }

.su-section-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin: 32px 0 16px;
  font-weight: 500;
}
.su-section-heading:first-of-type { margin-top: 28px; }

.su-row {
  display: flex;
  flex-wrap: wrap;
}
.su-row .su-field { flex: 1 1 220px; margin-right: 14px; }
.su-row .su-field:last-child { margin-right: 0; }

.su-field {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-muted);
}
.su-field span { display: block; margin-bottom: 6px; }
.su-optional { font-weight: 400; color: var(--lp-muted); text-transform: none; letter-spacing: 0; }
.su-field input, .su-field select {
  width: 100%;
  box-sizing: border-box;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 11px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--lp-cream);
}
.su-field input:focus, .su-field select:focus {
  outline: none;
  border-color: var(--lp-gold);
}
.su-center-field { max-width: 340px; margin-left: auto; margin-right: auto; }

.su-checkbox-row {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: var(--lp-body);
  margin: 22px 0 26px;
}
.su-checkbox-row input { margin-right: 10px; margin-top: 3px; flex: 0 0 auto; }

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

.su-error {
  background: rgba(184,69,111,0.15);
  border: 1px solid #b8456f;
  color: #f4c9d8;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  margin-top: 16px;
}

.su-signin-note {
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
  margin-top: 24px;
}
.su-signin-note a { color: var(--lp-gold); text-decoration: underline; }

.su-sent-email {
  color: var(--lp-gold);
  font-size: 17px;
  display: inline-block;
  margin-top: 4px;
}

.su-resend-message {
  text-align: center;
  font-size: 14px;
  color: var(--lp-muted);
  margin-top: 16px;
}

@media (max-width: 820px) {
  .su-layout { flex-direction: column; }
  .su-card { flex: none; margin-right: 0; margin-bottom: 24px; width: 100%; }
  .su-preview { flex: none; position: static; width: 100%; }
}

@media (max-width: 560px) {
  .su-card { padding: 32px 22px; }
  .su-row .su-field { margin-right: 0; flex-basis: 100%; }
}
