/* ==========================================================================
   TL Awards Registration — Standalone CSS
   Page: /tl-awards-register.php
   Does NOT rely on auth-medium.css or app shell styles.
   Loads alongside: bootstrap.min.css only.
   ========================================================================== */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --tla-white:        #ffffff;
  --tla-bg:           #f6f6f4;
  --tla-left-bg:      #ffffff;
  --tla-right-bg:     #ffffff;
  --tla-border:       #e4e4e0;
  --tla-text:         #111111;
  --tla-muted:        #737373;
  --tla-subtle:       #a3a3a3;
  --tla-accent:       #111111;
  --tla-accent-hover: #333333;
  --tla-green:        #16a34a;
  --tla-green-light:  #f0fdf4;
  --tla-red:          #dc2626;
  --tla-input-border: #d4d4d0;
  --tla-input-focus:  #111111;
  --tla-radius-sm:    8px;
  --tla-radius:       12px;
  --tla-radius-lg:    16px;
  --tla-shadow:       0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --tla-shadow-md:    0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --tla-left-width:   400px;
}

/* ── Reset base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body.tla-reg-page {
  background: var(--tla-bg);
  color: var(--tla-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  min-height: 100vh;
}

/* ── Two-column layout ───────────────────────────────────────────────────── */
.tla-layout {
  display: grid;
  grid-template-columns: var(--tla-left-width) 1fr;
  min-height: 100vh;
}

/* ── Left panel ──────────────────────────────────────────────────────────── */
.tla-left {
  background: var(--tla-left-bg);
  border-right: 1px solid var(--tla-border);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: auto;
  position: sticky;
  top: 0;
  height: 100vh;
}

.tla-left-inner {
  flex: 1;
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
}

/* Three zones: logo top, tagline center, link bottom */
.tla-left-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tla-left-bot {
  padding-top: 20px;
}

.tla-logo {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 36px;
  object-fit: contain;
  object-position: left center;
}

.tla-tagline {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--tla-text);
  margin: 0 0 12px;
}

.tla-tagline-sub {
  color: var(--tla-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 32px;
}

/* Info section blocks */
.tla-left-section {
  border-top: 1px solid var(--tla-border);
  padding: 22px 0;
}
.tla-left-section:last-of-type {
  border-bottom: 1px solid var(--tla-border);
}
.tla-left-section-label {
  color: var(--tla-subtle);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

/* Benefit pills */
.tla-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tla-benefit {
  background: var(--tla-bg);
  border: 1px solid var(--tla-border);
  border-radius: 999px;
  color: var(--tla-muted);
  font-size: 0.75rem;
  padding: 4px 12px;
  white-space: nowrap;
}

/* Scale stats */
.tla-scale-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tla-scale-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tla-scale-num {
  color: var(--tla-text);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.tla-scale-label {
  color: var(--tla-muted);
  font-size: 0.8rem;
}
.tla-scale-note {
  color: var(--tla-subtle);
  font-size: 0.75rem;
  margin-top: 8px;
}

/* More info link */
.tla-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--tla-muted);
  font-size: 0.8rem;
  text-decoration: none;
  margin-top: 14px;
}
.tla-more-link:hover { color: var(--tla-text); text-decoration: underline; }
.tla-more-link svg { flex-shrink: 0; }

.tla-left-footer {
  padding: 16px 40px;
  border-top: 1px solid var(--tla-border);
  color: var(--tla-subtle);
  font-size: 0.72rem;
}

/* ── Right panel ─────────────────────────────────────────────────────────── */
.tla-right {
  background: var(--tla-right-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
  padding: 40px 32px 48px;
}

.tla-right-inner {
  width: 100%;
  max-width: 560px;
}

/* Brand row at top of right panel */
.tla-right-brand {
  margin-bottom: 28px;
}
.tla-right-brand .logo-default {
  background-image: url(/assets/img/logo/logo-blue-light.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 26px;
  width: 130px;
}

/* ── Step progress bar ───────────────────────────────────────────────────── */
.tla-stepper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}

.tla-stepper::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--tla-border);
  z-index: 0;
}

.tla-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.tla-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--tla-border);
  background: var(--tla-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--tla-subtle);
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}

.tla-step.done .tla-step-dot {
  background: var(--tla-green);
  border-color: var(--tla-green);
  color: #fff;
}

.tla-step.active .tla-step-dot {
  background: var(--tla-text);
  border-color: var(--tla-text);
  color: #fff;
}

/* Line segment between steps */
.tla-step-line {
  position: absolute;
  top: 11px;
  height: 1px;
  z-index: 0;
  background: var(--tla-border);
  transition: background .3s;
}
.tla-step.done + .tla-step .tla-step-dot { /* next step after done */ }

.tla-step-name {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--tla-subtle);
  text-align: center;
  line-height: 1.2;
}
.tla-step.active .tla-step-name { color: var(--tla-text); font-weight: 600; }
.tla-step.done .tla-step-name   { color: var(--tla-green); }

/* Step connecting line overrides */
.tla-stepper-track {
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--tla-border);
  z-index: 0;
}
.tla-stepper-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--tla-green);
  transition: width .4s ease;
}

/* ── Step panels ─────────────────────────────────────────────────────────── */
.tla-panel { display: none; }
.tla-panel.tla-active { display: block; }

/* Step title + subtitle */
.tla-panel-title {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--tla-text);
}
.tla-panel-sub {
  color: var(--tla-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 24px;
}
.tla-panel-sub a {
  color: var(--tla-text);
  font-weight: 500;
  text-decoration: none;
}
.tla-panel-sub a:hover { text-decoration: underline; }

/* ── Form inputs ─────────────────────────────────────────────────────────── */
.tla-form-row { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.tla-form-row.single { grid-template-columns: 1fr; }

.tla-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.tla-field label {
  color: var(--tla-text);
  font-size: 0.8rem;
  font-weight: 500;
}
.tla-field label .tla-opt {
  color: var(--tla-subtle);
  font-weight: 400;
  margin-left: 4px;
}

.tla-input,
.tla-textarea {
  background: var(--tla-white);
  border: 1.5px solid var(--tla-input-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  padding: 10px 14px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.tla-input::placeholder,
.tla-textarea::placeholder { color: var(--tla-subtle); }
.tla-input:focus,
.tla-textarea:focus {
  border-color: var(--tla-input-focus);
  box-shadow: 0 0 0 3px rgba(17,17,17,.06);
}
.tla-input[readonly],
.tla-input:disabled {
  background: var(--tla-bg);
  color: var(--tla-muted);
  cursor: default;
}
.tla-textarea { resize: vertical; min-height: 80px; }

/* ── Primary button ──────────────────────────────────────────────────────── */
.tla-btn {
  align-items: center;
  background: var(--tla-accent);
  border: none;
  border-radius: var(--tla-radius-sm);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 6px;
  justify-content: center;
  line-height: 1;
  padding: 12px 20px;
  text-decoration: none;
  transition: background .15s, opacity .15s;
  width: 100%;
}
.tla-btn:hover:not(:disabled) { background: var(--tla-accent-hover); color: #fff; }
.tla-btn:disabled { opacity: .45; cursor: not-allowed; }
.tla-btn-lg { padding: 14px 24px; font-size: 0.95rem; }

/* Secondary / outline button */
.tla-btn-outline {
  background: transparent;
  border: 1.5px solid var(--tla-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 11px 18px;
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.tla-btn-outline:hover:not(:disabled) {
  background: var(--tla-bg);
  border-color: #bbb;
}
.tla-btn-outline:disabled { opacity: .45; cursor: not-allowed; }

/* Social buttons (SSO) */
.tla-btn-social {
  align-items: center;
  background: var(--tla-white);
  border: 1.5px solid var(--tla-input-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-text);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  padding: 11px 20px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  width: 100%;
  margin-bottom: 8px;
}
.tla-btn-social:hover { background: var(--tla-bg); border-color: #bbb; color: var(--tla-text); }
.tla-btn-social img { flex-shrink: 0; }

/* Divider with text */
.tla-divider {
  align-items: center;
  color: var(--tla-subtle);
  display: flex;
  font-size: 0.75rem;
  gap: 12px;
  margin: 16px 0;
}
.tla-divider::before,
.tla-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tla-border);
}

/* Legal note */
.tla-legal {
  color: var(--tla-subtle);
  font-size: 0.74rem;
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}
.tla-legal a { color: var(--tla-muted); text-decoration: none; }
.tla-legal a:hover { text-decoration: underline; }

/* Checkbox */
.tla-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
}
.tla-check-row input[type=checkbox] {
  accent-color: var(--tla-accent);
  cursor: pointer;
  flex-shrink: 0;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}
.tla-check-row label {
  color: var(--tla-muted);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.5;
}
.tla-check-row label a { color: var(--tla-text); font-weight: 500; text-decoration: none; }
.tla-check-row label a:hover { text-decoration: underline; }

/* ── Step 2 — Category cards ─────────────────────────────────────────────── */
.tla-cat-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.tla-cat-card {
  border: 1.5px solid var(--tla-border);
  border-radius: var(--tla-radius);
  cursor: pointer;
  padding: 18px 20px;
  transition: border-color .15s, background .15s;
  position: relative;
  display: block;
  user-select: none;
}
.tla-cat-card:hover { border-color: #ababab; background: #fafafa; }
.tla-cat-card.selected {
  border-color: var(--tla-text);
  background: #fafafa;
}
.tla-cat-card input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tla-cat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.tla-cat-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--tla-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.tla-cat-check {
  background: var(--tla-text);
  border-radius: 50%;
  color: #fff;
  display: none;
  font-size: 0.6rem;
  height: 18px;
  line-height: 18px;
  text-align: center;
  width: 18px;
  flex-shrink: 0;
}
.tla-cat-card.selected .tla-cat-check { display: inline-block; }

.tla-cat-info p {
  color: var(--tla-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0 0 8px;
}
.tla-cat-elig {
  color: var(--tla-subtle);
  font-size: 0.75rem;
}
.tla-cat-elig strong { color: var(--tla-muted); font-weight: 600; }
.tla-cat-price {
  text-align: right;
  flex-shrink: 0;
}
.tla-cat-price strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tla-text);
  letter-spacing: -0.02em;
}
.tla-cat-price small {
  color: var(--tla-subtle);
  font-size: 0.72rem;
}

/* ── Step 3 — Review cards ───────────────────────────────────────────────── */
.tla-review-cat {
  background: var(--tla-bg);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius);
  padding: 14px 18px;
  margin-bottom: 18px;
}
.tla-review-cat h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 3px;
}
.tla-review-cat p { color: var(--tla-muted); font-size: 0.8rem; margin: 0; }

.tla-phases { display: flex; flex-direction: column; gap: 10px; }
.tla-phase {
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius);
  overflow: hidden;
}
.tla-phase-header {
  background: var(--tla-bg);
  border-bottom: 1px solid var(--tla-border);
  padding: 10px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tla-phase-num {
  color: var(--tla-subtle);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tla-phase-date {
  color: var(--tla-subtle);
  font-size: 0.72rem;
}
.tla-phase-body { padding: 12px 16px; }
.tla-phase-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--tla-text);
}
.tla-phase-body p {
  color: var(--tla-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0 0 6px;
}
.tla-phase-body ul {
  color: var(--tla-muted);
  font-size: 0.76rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 14px;
}

/* Acceptance checkbox area */
.tla-accept-box {
  background: var(--tla-bg);
  border: 1.5px solid var(--tla-border);
  border-radius: var(--tla-radius);
  margin-top: 16px;
  padding: 14px 16px;
  transition: border-color .15s;
}
.tla-accept-box.checked { border-color: var(--tla-green); background: var(--tla-green-light); }
.tla-accept-box .tla-check-row { margin: 0; }
.tla-accept-box .tla-check-row label { font-size: 0.84rem; color: var(--tla-text); font-weight: 500; }

/* ── Step 4 — Profile + Payment ──────────────────────────────────────────── */
/* "Registering as" identity strip */
.tla-identity {
  align-items: center;
  background: var(--tla-bg);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius);
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
}
.tla-identity-avatar {
  align-items: center;
  background: var(--tla-text);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  width: 36px;
}
.tla-identity-info { min-width: 0; }
.tla-identity-name { font-size: 0.85rem; font-weight: 600; color: var(--tla-text); }
.tla-identity-email { color: var(--tla-muted); font-size: 0.75rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Profile fields section */
.tla-section-card {
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.tla-section-card-header {
  border-bottom: 1px solid var(--tla-border);
  padding: 12px 18px;
}
.tla-section-card-header h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0;
  color: var(--tla-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tla-section-card-body { padding: 16px 18px; }
.tla-section-card-body .tla-field:last-child { margin-bottom: 0; }

/* Order summary */
.tla-order-table { width: 100%; }
.tla-order-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--tla-border);
  font-size: 0.86rem;
}
.tla-order-row:last-of-type { border-bottom: none; }
.tla-order-row span { color: var(--tla-muted); }
.tla-order-row strong { color: var(--tla-text); font-weight: 600; }
.tla-order-row.total {
  font-size: 0.95rem;
  padding-top: 12px;
  border-top: none !important;  /* previous row's border-bottom already acts as the divider */
  border-bottom: none;
  margin-top: 4px;
}
.tla-order-row.total span { color: var(--tla-text); font-weight: 700; }
.tla-order-row.total strong { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }

/* Coupon code row */
.tla-coupon-row {
  align-items: stretch;
  display: flex;
  gap: 8px;
  margin: 12px 0 4px;
}
.tla-coupon-input {
  background: var(--tla-white);
  border: 1.5px solid var(--tla-input-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-text);
  flex: 1;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  padding: 9px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color .15s;
}
.tla-coupon-input::placeholder { text-transform: none; letter-spacing: 0; }
.tla-coupon-input:focus { border-color: var(--tla-input-focus); }
.tla-coupon-btn {
  background: var(--tla-bg);
  border: 1.5px solid var(--tla-input-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.tla-coupon-btn:hover { background: #ececec; border-color: #bbb; }
.tla-coupon-msg { font-size: 0.75rem; margin-top: 5px; }
.tla-coupon-msg.ok { color: var(--tla-green); }
.tla-coupon-msg.err { color: var(--tla-red); }
.tla-order-discount {
  display: none;
  color: var(--tla-green);
}
.tla-order-discount.visible { display: flex; }

.tla-order-net {
  display: none;
  border-top: 1px dashed var(--tla-border);
  padding-top: 8px;
  margin-top: 2px;
}
.tla-order-net.visible { display: flex; }
.tla-order-net span { color: var(--tla-muted); }
.tla-order-net strong { color: var(--tla-text); font-weight: 600; }

/* Razorpay trust line */
.tla-razorpay-note {
  align-items: center;
  color: var(--tla-subtle);
  display: flex;
  font-size: 0.74rem;
  gap: 5px;
  justify-content: center;
  margin-top: 8px;
}

/* Notice / error below payment */
.tla-pay-notice {
  color: var(--tla-muted);
  font-size: 0.78rem;
  text-align: center;
  margin-top: 6px;
}
.tla-pay-notice.error { color: var(--tla-red); }

/* ── Nav row (back / continue) ───────────────────────────────────────────── */
.tla-nav-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}
.tla-nav-row .tla-btn { flex: 1; }
.tla-nav-row .tla-btn-outline { flex-shrink: 0; }

/* ── Already registered state ────────────────────────────────────────────── */
.tla-reg-done {
  text-align: center;
  padding: 32px 0;
}
.tla-reg-done-icon {
  background: var(--tla-green-light);
  border-radius: 50%;
  color: var(--tla-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  height: 56px;
  margin-bottom: 16px;
  width: 56px;
}
.tla-reg-done h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.tla-reg-done p { color: var(--tla-muted); font-size: 0.875rem; margin-bottom: 24px; }

/* Right panel footer */
.tla-right-footer {
  color: var(--tla-subtle);
  font-size: 0.72rem;
  margin-top: 36px;
  text-align: center;
}

/* Flash alert */
.tla-alert {
  border-radius: var(--tla-radius-sm);
  font-size: 0.84rem;
  margin-bottom: 18px;
  padding: 12px 16px;
}
.tla-alert-success { background: var(--tla-green-light); border: 1px solid #bbf7d0; color: #15803d; }
.tla-alert-danger  { background: #fef2f2; border: 1px solid #fecaca; color: var(--tla-red); }
.tla-alert-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }

/* ── Terms / prose page ──────────────────────────────────────────────────── */
.tla-prose-page .tla-right {
  align-items: flex-start;
}
/* Wider content block for reading comfort */
.tla-prose-page .tla-right-inner {
  max-width: 680px;
}
.tla-prose-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tla-border);
}
.tla-prose-eyebrow {
  color: var(--tla-subtle);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.tla-prose-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--tla-text);
}
.tla-prose-sub {
  color: var(--tla-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}
.tla-prose {
  font-size: 0.86rem;
  line-height: 1.7;
}
/* Section label — quiet, not a loud heading */
.tla-prose h2 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tla-subtle);
  margin: 22px 0 4px;
}
.tla-prose h2:first-child { margin-top: 0; }
.tla-prose p {
  color: var(--tla-text);
  margin: 0 0 0;
}
.tla-prose ul {
  color: var(--tla-text);
  margin: 4px 0 0;
  padding-left: 16px;
}
.tla-prose ul li { margin-bottom: 2px; }
.tla-prose a { color: var(--tla-text); font-weight: 500; text-decoration: none; }
.tla-prose a:hover { text-decoration: underline; }
/* Back link — matches .tla-btn-outline style */
.tla-prose-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--tla-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-text);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  text-decoration: none;
  margin-bottom: 22px;
  transition: background .15s, border-color .15s;
}
.tla-prose-back:hover {
  background: var(--tla-bg);
  border-color: #bbb;
  color: var(--tla-text);
}

/* ── Stepper dot clickability ─────────────────────────────────────────────── */
.tla-step.done { cursor: pointer; }
.tla-step.done:hover .tla-step-dot { opacity: 0.75; }
.tla-step.done:hover .tla-step-name { text-decoration: underline; }

/* ── Simplified category cards (Step 2) ──────────────────────────────────── */
.tla-cat-simple-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.tla-cat-simple-row h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--tla-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tla-cat-simple-row .tla-cat-elig {
  color: var(--tla-subtle);
  font-size: 0.78rem;
  margin: 0;
}

/* ── OTP sub-panel (inline in Step 1) ────────────────────────────────────── */
.tla-otp-panel { display: none; }
.tla-otp-panel.visible { display: block; }

.tla-otp-sent-to {
  background: var(--tla-bg);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius-sm);
  color: var(--tla-muted);
  font-size: 0.84rem;
  padding: 11px 14px;
  margin-bottom: 18px;
}
.tla-otp-sent-to strong { color: var(--tla-text); }

.tla-otp-input {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
}

.tla-otp-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.tla-otp-action-btn {
  background: none;
  border: none;
  color: var(--tla-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 0;
  text-decoration: none;
}
.tla-otp-action-btn:hover { color: var(--tla-text); text-decoration: underline; }

/* ── Phase cards in Step 3: cleaner ─────────────────────────────────────── */
.tla-phase-label-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.tla-phase-label {
  background: var(--tla-text);
  border-radius: 999px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 9px;
  text-transform: uppercase;
  white-space: nowrap;
}
.tla-phase-dates {
  color: var(--tla-subtle);
  font-size: 0.75rem;
}
.tla-phase-v2 {
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius);
  padding: 14px 18px;
  margin-bottom: 8px;
}
.tla-phase-v2 h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--tla-text);
}
.tla-phase-v2 ul {
  color: var(--tla-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 14px;
}

/* ── Mobile responsive ───────────────────────────────────────────────────── */
@media (max-width: 1099px) {
  .tla-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .tla-left {
    position: static;
    height: auto;
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--tla-border);
    overflow: visible;
  }
  .tla-left-inner {
    padding: 28px 24px 24px;
    min-height: auto;
    display: block; /* collapse flex so no stretching gap */
  }
  .tla-left-bot { padding-top: 14px; }
  .tla-tagline { font-size: 1.5rem; }
  .tla-logo { height: 36px; margin-bottom: 24px; }
  .tla-right { padding: 28px 20px 48px; }
}

@media (max-width: 575px) {
  .tla-form-row { grid-template-columns: 1fr; }
  .tla-right-inner { max-width: 100%; }
  .tla-panel-title { font-size: 1.4rem; }
}

/* ── v2 UI updates (registration flow redesign) ──────────────────────────── */

/* Vertical centering of step wizard */
.tla-right { justify-content: center; }

/* Larger logo */
.tla-logo { height: 64px; margin-bottom: 40px; }

/* Left panel eyebrow */
.tla-left-eyebrow {
  color: var(--tla-subtle);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* 2-column category grid */
.tla-cat-grid--2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

/* Package card top row: name + price on same line */
.tla-pkg-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.tla-pkg-name-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tla-pkg-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tla-text);
}
.tla-pkg-rec-badge {
  display: inline-block;
  background: #f0fdf4;
  color: var(--tla-green);
  border: 1px solid #bbf7d0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.tla-pkg-price {
  text-align: right;
  flex-shrink: 0;
}
.tla-pkg-price-amt {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tla-text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tla-pkg-price small {
  color: var(--tla-subtle);
  font-size: 0.7rem;
  display: block;
  margin-top: 3px;
}
.tla-pkg-desc {
  color: var(--tla-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.tla-pkg-divider {
  height: 1px;
  background: var(--tla-border);
  margin: 10px 0 12px;
}
.tla-pkg-includes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tla-pkg-includes li {
  color: var(--tla-muted);
  font-size: 0.79rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.tla-pkg-includes li::before {
  content: '✓';
  color: var(--tla-green);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}
.tla-pkg-includes li.tla-pkg-plus {
  font-weight: 600;
  color: var(--tla-text);
  font-size: 0.75rem;
  margin-top: 2px;
  padding-top: 4px;
  border-top: 1px dashed var(--tla-border);
}
.tla-pkg-includes li.tla-pkg-plus::before { content: none; }

/* ── Onboarding-style card redesign (v2.1) ───────────────────────────────── */

/* Base card — mirrors .onb-card exactly */
.tla-cat-card {
  border: 1px solid var(--tla-border) !important;
  border-radius: 14px !important;
  background: #fff !important;
  padding: 18px 20px 20px !important;
  position: relative !important;
  cursor: pointer !important;
  display: block !important;
  user-select: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease !important;
  box-shadow: none !important;
}
.tla-cat-card:hover {
  border-color: #111 !important;
  box-shadow: none !important;
}
.tla-cat-card.selected {
  border-color: #111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px #111 !important;
}

/* Top-right check circle — mirrors .onb-card-check */
.tla-card-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #c4c4c4;
  background: #fff;
  pointer-events: none;
  flex-shrink: 0;
}
.tla-card-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 5px;
  height: 8px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: translate(-50%, -50%) rotate(45deg);
}
.tla-cat-card.selected .tla-card-check {
  border-color: #111;
  background: #111;
}
.tla-cat-card.selected .tla-card-check::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

/* Hide legacy inline check */
.tla-cat-check { display: none !important; }

/* ── Step 2 — Category card content ──────────────────────────────────────── */
.tla-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f2;
  border: 1px solid var(--tla-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #737373;
}
.tla-cat-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--tla-text);
  line-height: 1.2;
  padding-right: 26px;
}
.tla-cat-subdesc {
  font-size: 0.79rem;
  color: var(--tla-muted);
  line-height: 1.45;
  margin: 0;
}

/* ── Step 3 — Package card content ───────────────────────────────────────── */
.tla-pkg-header {
  padding-right: 26px;
  margin-bottom: 0;
}
.tla-pkg-name-v2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tla-text);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.tla-pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.tla-pkg-price-big {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tla-text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tla-pkg-price-row small {
  font-size: 0.7rem;
  color: var(--tla-subtle);
}

/* ── v2.2 readability + package 2-col ───────────────────────────────────── */

/* Category cards — larger, darker text */
.tla-cat-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #111 !important;
}
.tla-cat-subdesc {
  font-size: 0.82rem !important;
  color: #555 !important;
  line-height: 1.5 !important;
}

/* Package cards — larger, darker text */
.tla-pkg-name-v2 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #111 !important;
}
.tla-pkg-price-big {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #111 !important;
}
.tla-pkg-price-row small {
  font-size: 0.73rem !important;
  color: #888 !important;
}
.tla-pkg-desc {
  font-size: 0.82rem !important;
  color: #555 !important;
  line-height: 1.55 !important;
}
.tla-pkg-includes li {
  font-size: 0.82rem !important;
  color: #555 !important;
}
.tla-pkg-includes li.tla-pkg-plus {
  color: #111 !important;
  font-size: 0.8rem !important;
}

/* Package cards — 2-col on desktop, stack on mobile */
@media (max-width: 540px) {
  .tla-cat-grid--2col { grid-template-columns: 1fr !important; }
}

/* ── Payment success screen ─────────────────────────────────────────────── */
.tla-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 48px 24px;
}
.tla-success-icon { margin-bottom: 24px; }
.tla-success-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.tla-success-sub {
  font-size: 0.9rem;
  color: #555;
  max-width: 380px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.tla-success-countdown {
  font-size: 0.85rem;
  color: #888;
  margin: 0 0 24px;
}
.tla-success-cta { min-width: 180px; }
