/* ── Art panel ──────────────────────────────────────────── */
.art-brand { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.art-brand .mark {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,239,226,0.18);
  display: grid; place-items: center; padding: 6px;
}
.art-brand .mark img { width: 100%; height: 100%; object-fit: contain; }

.art-quote { position: relative; z-index: 1; max-width: 480px; }
.art-quote .eyebrow { color: var(--gold-soft); }
.art-quote .eyebrow::before { background: var(--gold); }
.art-quote h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 3.4vw, 52px); font-weight: 500; line-height: 1.08; color: var(--cream); letter-spacing: -0.01em; margin-top: 18px; }
.art-quote h2 em { color: var(--gold-soft); font-style: italic; }
.art-quote .lede { margin-top: 18px; color: rgba(245,239,226,.72); font-size: 16px; line-height: 1.6; max-width: 380px; }

.bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.bullets li { list-style: none; display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(245,239,226,.85); }
.bullets li .check { width: 22px; height: 22px; border-radius: 99px; background: var(--gold); color: var(--navy-deep); display: grid; place-items: center; flex-shrink: 0; }

.art-foot { position: relative; z-index: 1; }
.testimonial-mini { border-top: 1px solid rgba(245,239,226,0.15); padding-top: 22px; display: flex; gap: 14px; align-items: center; }
.testimonial-mini .av { width: 44px; height: 44px; border-radius: 99px; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); display: grid; place-items: center; color: var(--navy-deep); font-weight: 700; }
.testimonial-mini .txt { font-size: 13px; color: rgba(245,239,226,.7); line-height: 1.5; }
.testimonial-mini .txt strong { color: var(--cream); display: block; }

.envelope-ornament { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 480px; height: 480px; z-index: 0; opacity: .15; pointer-events: none; }
.envelope-ornament svg { width: 100%; height: 100%; }
.dots-grid { position: absolute; top: 40px; right: 40px; width: 120px; height: 120px; background-image: radial-gradient(rgba(191,161,93,.35) 1px, transparent 1px); background-size: 12px 12px; z-index: 0; }

/* ── Nav ────────────────────────────────────────────────── */
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); margin-bottom: 28px; }
.back-link:hover { color: var(--navy); }

/* ── Password strength ──────────────────────────────────── */
.strength { display: flex; gap: 4px; margin-top: 8px; }
.strength .seg { flex: 1; height: 4px; background: var(--line); border-radius: 2px; transition: background .2s; }
.strength .seg.s1 { background: #D6453F; }
.strength .seg.s2 { background: #DDA63A; }
.strength .seg.s3 { background: #BFA15D; }
.strength .seg.s4 { background: #2EBD7E; }
.strength-label { font-size: 11px; color: var(--ink-soft); margin-top: 6px; }

/* ── Misc ───────────────────────────────────────────────── */
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-soft); cursor: pointer; }
.check-row input { margin-top: 3px; accent-color: var(--gold-deep); }
.check-row a { color: var(--navy); border-bottom: 1px solid var(--gold); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .two-col { grid-template-columns: 1fr; } }

/* ── Plan section header ────────────────────────────────── */
.plan-section { display: flex; flex-direction: column; gap: 12px; }
.plan-section-head { display: flex; align-items: baseline; gap: 10px; }
.plan-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-soft);
}
.plan-section-sub {
  font-size: 12px;
  color: var(--ink-soft);
  opacity: .7;
}

/* ── Plan cards ─────────────────────────────────────────── */
.plan-cards { display: flex; flex-direction: column; gap: 8px; }

.plan-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color .18s, box-shadow .18s, background .18s;
  user-select: none;
}
.plan-card:hover { border-color: var(--gold); }

.plan-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}

/* Custom radio dot */
.plan-radio {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 99px;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s;
}
.plan-radio::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--gold-deep);
  opacity: 0;
  transform: scale(.4);
  transition: opacity .18s, transform .18s;
}
.plan-card:has(input:checked) .plan-radio {
  border-color: var(--gold-deep);
}
.plan-card:has(input:checked) .plan-radio::after {
  opacity: 1;
  transform: scale(1);
}

/* Plan body */
.plan-body { flex: 1; min-width: 0; }
.plan-name-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 7px;
}
.plan-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.plan-badge {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--gold-deep);
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
  line-height: 1.6;
}

/* Feature pills */
.plan-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.plan-tags span {
  font-size: 11px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 5px;
  padding: 3px 7px;
  line-height: 1;
  transition: background .18s, color .18s;
}
.plan-card:has(input:checked) .plan-tags span {
  background: rgba(191,161,93,.18);
  color: var(--navy);
}

/* Price */
.plan-price-box {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.plan-amt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.plan-per {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* Selected state */
.plan-card:has(input:checked) {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(191,161,93,.12);
  background: #FDFAF3;
}

/* Featured (Starter) always has gold border when not selected */
.plan-card--hot { border-color: rgba(191,161,93,.45); }

/* ── Form divider ────────────────────────────────────────── */
.form-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 -4px;
}
.form-section-divider::before,
.form-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.form-section-divider span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .auth-art {
    justify-content: flex-start;
    gap: 28px;
    padding-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .plan-tags span { font-size: 10px; padding: 2px 6px; }
  .plan-name { font-size: 16px; }
  .plan-amt { font-size: 16px; }
}
