/* ── Variables ── */
:root {
  --sage: #6b8f71;
  --sage-dark: #4e7055;
  --sage-light: #e8f0e9;
  --slate: #2d3f50;
  --slate-mid: #4a5f72;
  --slate-muted: #8a9aaa;
  --ivory: #f7f5f0;
  --ivory-dark: #ede9e1;
  --white: #ffffff;
  --error: #d94f4f;
  --shadow-sm: 0 2px 8px rgba(45, 63, 80, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 63, 80, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 63, 80, 0.18);
  --radius: 14px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--ivory);
  color: var(--slate);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Ambient orbs ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(107, 143, 113, 0.18) 0%,
    transparent 70%
  );
  top: -120px;
  left: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(45, 63, 80, 0.1) 0%,
    transparent 70%
  );
  bottom: -60px;
  right: 30%;
  animation-delay: -4s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(107, 143, 113, 0.1) 0%,
    transparent 70%
  );
  top: 40%;
  right: -60px;
  animation-delay: -7s;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.06);
  }
}

/* ── Page layout ── */
.page-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ═══════════════════════════════
     BRAND COLUMN (left)
  ═══════════════════════════════ */
.brand-col {
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

/* subtle green grain overlay */
.brand-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* decorative diagonal stripe */
.brand-col::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.06) 40%,
    transparent
  );
}

.brand-inner {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo-gem {
  width: 40px;
  height: 40px;
  background: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(107, 143, 113, 0.5);
}

.brand-logo span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

/* Headline */
.brand-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.brand-headline h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
}

.brand-headline h1 em {
  font-style: italic;
  color: var(--sage);
}

/* Perks */
.brand-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.5s forwards;
}

.perk:nth-child(1) {
  animation-delay: 0.1s;
}
.perk:nth-child(2) {
  animation-delay: 0.2s;
}
.perk:nth-child(3) {
  animation-delay: 0.3s;
}
.perk:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.perk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.25);
}

.perk span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* Deco card */
.deco-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp 0.5s 0.5s forwards;
  opacity: 0;
}

.deco-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deco-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.deco-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.deco-meta {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.deco-badge {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.deco-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}

.deco-progress-bar {
  height: 100%;
  width: 62%;
  background: linear-gradient(to right, var(--sage), #91c99a);
  border-radius: 2px;
}

/* ═══════════════════════════════
     FORM COLUMN (right)
  ═══════════════════════════════ */
.form-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
  background: var(--ivory);
  overflow-y: auto;
}

.form-inner {
  width: 100%;
  max-width: 400px;
  animation: slideIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-muted);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--slate);
}

.back-link svg {
  transition: transform var(--transition);
}
.back-link:hover svg {
  transform: translateX(-2px);
}

/* Form header */
.form-header {
  margin-bottom: 28px;
}

.form-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
  line-height: 1.2;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--slate-muted);
}

/* ── Google button ── */
.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  background: var(--white);
  border: 1.5px solid #ddd8d0;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition),
    transform var(--transition);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.google-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.google-btn:hover {
  box-shadow: var(--shadow-md);
  border-color: #c8c2ba;
  transform: translateY(-1px);
}

.google-btn:hover::before {
  opacity: 1;
}
.google-btn:active {
  transform: translateY(0);
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--slate-muted);
  margin-bottom: 22px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ivory-dark);
}

/* ── Field groups ── */
.field-group {
  margin-bottom: 18px;
}

.field-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.label-row label {
  margin-bottom: 0;
}

.forgot-link {
  font-size: 0.79rem;
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.forgot-link:hover {
  color: var(--sage-dark);
  text-decoration: underline;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--slate-muted);
  pointer-events: none;
  flex-shrink: 0;
  transition: color var(--transition);
}

.input-wrap:focus-within .input-icon {
  color: var(--sage);
}

.input-wrap input {
  width: 100%;
  padding: 12px 44px 12px 42px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-wrap input::placeholder {
  color: #b8b2aa;
}

.input-wrap input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3.5px rgba(107, 143, 113, 0.14);
}

.input-wrap input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.1);
}

/* eye button */
.eye-btn {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-muted);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color var(--transition);
}

.eye-btn:hover {
  color: var(--slate);
}

/* ── Field error ── */
.field-error {
  display: block;
  font-size: 0.76rem;
  color: var(--error);
  margin-top: 5px;
  min-height: 14px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.18s, transform 0.18s;
}

.field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Checkbox ── */
.remember-row {
  margin-bottom: 22px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.85rem;
  color: var(--slate-mid);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: 5px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--sage);
  border-color: var(--sage);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(43deg) translate(0, -1px);
}

/* ── Submit button ── */
.submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--slate);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.submit-btn:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(78, 112, 85, 0.35);
}

.submit-btn:hover::before {
  opacity: 1;
}
.submit-btn:active {
  transform: translateY(0);
}

.btn-arrow {
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}

.submit-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-arrow {
  display: none;
}
.submit-btn.loading .btn-loader {
  display: block;
}

/* ── Switch / Terms ── */
.switch-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-muted);
  margin-top: 20px;
}

.switch-link a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}

.switch-link a:hover {
  text-decoration: underline;
}

.terms-note {
  text-align: center;
  font-size: 0.74rem;
  color: #b8b2aa;
  margin-top: 14px;
  line-height: 1.6;
}

.terms-note a {
  color: var(--slate-muted);
  text-decoration: none;
}

.terms-note a:hover {
  color: var(--sage);
}

/* ═══════════════════════════════
     TOASTS
  ═══════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--white);
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  max-width: 360px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
  z-index: 100;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-error {
  border-color: rgba(217, 79, 79, 0.25);
  background: #fff8f8;
}

.toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
}

.toast-body strong {
  display: block;
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 2px;
}

.toast-body p {
  font-size: 0.8rem;
  color: var(--slate-muted);
}

.toast-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--sage);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition);
}

.toast-cta:hover {
  background: var(--sage-dark);
}

/* ═══════════════════════════════
     RESPONSIVE
  ═══════════════════════════════ */
@media (max-width: 900px) {
  .page-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .brand-col {
    padding: 40px 32px;
  }

  .brand-inner {
    gap: 28px;
  }

  .deco-card {
    display: none;
  }

  .form-col {
    padding: 44px 32px;
  }
}
/* ══════════════════════════════════════════
     signup-extras.css
     Only additions on top of login.css.
     No variables are redefined — all tokens
     come from login.css.
  ══════════════════════════════════════════ */

/* ── Form col needs top alignment for taller content ── */
.signup-form-col {
  align-items: flex-start;
  padding-top: 48px;
  padding-bottom: 48px;
}

.signup-form-col .form-inner {
  max-width: 420px;
  padding-top: 0;
}

/* ── Left-side step tracker ── */
.signup-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.signup-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.signup-step.active .step-circle {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(107, 143, 113, 0.25);
}

.signup-step.done .step-circle {
  background: rgba(107, 143, 113, 0.3);
  border-color: var(--sage);
  color: var(--sage);
}

.signup-step.done .step-circle::before {
  content: "✓";
  font-size: 0.8rem;
}

.signup-step.done .step-circle {
  font-size: 0;
}

.step-info {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}

.signup-step.active .step-title {
  color: #fff;
}
.signup-step.done .step-title {
  color: var(--sage);
}

.step-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
}

.step-connector {
  width: 2px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  margin-left: 15px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.step-connector::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--sage);
  border-radius: 2px;
  transition: height 0.4s 0.1s;
}

.step-connector.filled::after {
  height: 100%;
}

/* ── Mobile step progress bar ── */
.mobile-step-bar {
  height: 3px;
  background: var(--ivory-dark);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
  display: none;
}

.mobile-step-fill {
  height: 100%;
  background: linear-gradient(to right, var(--sage), #91c99a);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-step-label {
  font-size: 0.75rem;
  color: var(--slate-muted);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .mobile-step-bar {
    display: block;
  }
  .mobile-step-label {
    display: block;
  }
}

/* ── Step panels ── */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── Two-column name row ── */
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* inputs without left icon (no padding-left override) */
.name-row .input-wrap input,
.field-group .input-wrap input {
  /* already set in login.css — no change needed */
}

/* ── Optional tag ── */
.optional-tag {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--slate-muted);
  margin-left: 4px;
  text-transform: lowercase;
  letter-spacing: 0;
}

/* ── Residence info card ── */
.residence-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sage-light);
  border: 1px solid rgba(107, 143, 113, 0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 4px;
}

.residence-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.residence-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 4px;
}

.residence-sub {
  font-size: 0.78rem;
  color: var(--slate-mid);
  line-height: 1.55;
}

/* ── Password strength meter ── */
.strength-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.strength-track {
  flex: 1;
  height: 4px;
  background: var(--ivory-dark);
  border-radius: 2px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: width 0.35s, background 0.35s;
}

.strength-label {
  font-size: 0.72rem;
  color: var(--slate-muted);
  white-space: nowrap;
  min-width: 48px;
  text-align: right;
  transition: color 0.3s;
}

/* ── Step navigation row ── */
.step-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.back-step-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 18px;
  background: transparent;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-mid);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition),
    background var(--transition);
  flex-shrink: 0;
}

.back-step-btn:hover {
  border-color: var(--slate-muted);
  color: var(--slate);
  background: var(--ivory-dark);
}

.back-step-btn svg {
  transition: transform var(--transition);
}
.back-step-btn:hover svg {
  transform: translateX(-2px);
}

/* ── Terms inline link ── */
.terms-inline-link {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
}

.terms-inline-link:hover {
  text-decoration: underline;
}

/* ── Success state ── */
.signup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 48px;
  width: 100%;
  min-height: 100%;
  animation: fadeUp 0.5s forwards;
}

.signup-success.show {
  display: flex;
}

.success-ring {
  margin-bottom: 24px;
  animation: popIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.signup-success h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 10px;
}

#success-name-msg {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.success-sub {
  font-size: 0.88rem;
  color: var(--slate-muted);
  max-width: 300px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.success-cta {
  text-decoration: none;
  max-width: 280px;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .signup-success {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .brand-col {
    padding: 32px 20px;
  }
  .form-col {
    padding: 36px 20px;
  }
  .toast {
    left: 16px;
    right: 16px;
    min-width: unset;
  }
}
