/* Fin Tracker — Bootstrap extensions */
.brand-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pf-primary-dark) 0%, var(--pf-primary) 45%, var(--pf-secondary) 100%);
}
.brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232, 196, 195, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.brand-panel__inner {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}
.brand-panel__logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.ft-feature-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--pf-accent-light);
  flex-shrink: 0;
}
.ft-login-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--pf-accent-light), var(--pf-accent));
  color: var(--pf-primary);
  font-size: 1.35rem;
}

/* Track page */
.ft-track-hero {
  background: linear-gradient(135deg, var(--pf-primary-dark), var(--pf-primary));
  border-radius: var(--bs-border-radius-lg);
  color: #fff;
}
.ft-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-timeline__item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}
.ft-timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.125rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: var(--pf-border, #e8d4d4);
}
.ft-timeline__step {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--pf-surface);
  color: var(--pf-muted, #6b7280);
  border: 2px solid #e8d4d4;
  z-index: 1;
}
.ft-timeline__item--done .ft-timeline__step {
  background: var(--pf-primary);
  border-color: var(--pf-primary);
  color: #fff;
}
.ft-timeline__item--current .ft-timeline__step {
  background: #fff;
  border-color: var(--pf-cta-hover);
  color: var(--pf-cta-hover);
  box-shadow: 0 0 0 4px rgba(139, 26, 24, 0.15);
}
.ft-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0e0e0;
}
.ft-info-row:last-child { border-bottom: 0; }
.ft-info-row dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.ft-info-row dd { margin: 0; font-weight: 600; text-align: right; }
.ft-docs__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f0e0e0;
}
.ft-docs__item:last-child { border-bottom: 0; }
.ft-docs__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--pf-surface);
  color: var(--pf-cta-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-docs__check { color: #166534; font-size: 1.125rem; }
