/* PromoFast — Home page */

.pf-hm {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}

.pf-hm-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Shared components */

.pf-hm-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5eead4;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pf-hm-pill--light {
  color: var(--pf-teal-dark);
  background: var(--pf-teal-glow);
  border-color: rgba(13, 148, 136, 0.2);
}

.pf-hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.4rem;
  font-family: var(--pf-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--pf-r-md);
  border: none;
  cursor: pointer;
  transition: transform var(--pf-dur) var(--pf-ease), box-shadow var(--pf-dur) var(--pf-ease), background var(--pf-dur) var(--pf-ease);
}

.pf-hm-btn--primary {
  color: #fff;
  background: var(--pf-gradient-brand);
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.35);
}

.pf-hm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.42);
}

.pf-hm-btn--outline {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.pf-hm-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pf-hm-btn--lg { padding: 0.95rem 1.75rem; font-size: 1rem; }
.pf-hm-btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

.pf-hm-head {
  margin-bottom: 1.75rem;
}

.pf-hm-head--row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pf-hm-head--center {
  text-align: center;
}

.pf-hm-head--center .pf-hm-head__sub {
  margin: 0 auto;
}

.pf-hm-head__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pf-teal);
}

.pf-hm-head__title {
  margin: 0 0 0.5rem;
  font-family: var(--pf-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pf-ink);
  line-height: 1.15;
}

.pf-hm-head__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--pf-ink-muted);
  max-width: 52ch;
}

/* Hero */

.pf-hm-hero {
  position: relative;
  overflow: hidden;
  background: var(--pf-gradient-mesh);
  padding: 2.5rem 0 2rem;
}

.pf-hm-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.pf-hm-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.pf-hm-hero__title {
  margin: 0 0 1rem;
  font-family: var(--pf-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #f8fafc;
}

.pf-hm-hero__sub {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 48ch;
}

.pf-hm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pf-hm-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-hm-hero__points li {
  font-size: 0.84rem;
  font-weight: 600;
  color: #a7f3d0;
}

.pf-hm-hero__points li::before {
  content: "✓ ";
  color: #5eead4;
}

.pf-hm-hero__visuals {
  display: none;
}

.pf-hm-hero__card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pf-r-lg);
  backdrop-filter: blur(12px);
}

.pf-hm-hero__card--main strong {
  display: block;
  margin: 0.35rem 0 0.85rem;
  font-family: var(--pf-display);
  font-size: 1.1rem;
  color: #f8fafc;
}

.pf-hm-hero__card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5eead4;
}

.pf-hm-hero__card-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.pf-hm-hero__card-bar span {
  display: block;
  height: 100%;
  background: var(--pf-gradient-brand);
  border-radius: 999px;
}

.pf-hm-hero__card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.pf-hm-hero__card--sub {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.pf-hm-hero__card--sub strong {
  display: block;
  font-family: var(--pf-display);
  font-size: 1rem;
  color: #f8fafc;
}

.pf-hm-hero__card--sub span {
  font-size: 0.78rem;
  color: #64748b;
}

.pf-hm-hero__card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #5eead4;
  background: rgba(13, 148, 136, 0.2);
  border-radius: 12px;
}

/* Platform stats */

.pf-hm-stats {
  padding: 0 0 1.5rem;
  margin-top: -0.5rem;
  background: var(--pf-gradient-mesh);
}

.pf-hm-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pf-hm-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pf-r-md);
  backdrop-filter: blur(8px);
}

.pf-hm-stat__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #5eead4;
  background: rgba(13, 148, 136, 0.18);
  border-radius: 12px;
  flex-shrink: 0;
}

.pf-hm-stat__value {
  display: block;
  font-family: var(--pf-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pf-hm-stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 0.15rem;
}

/* Logged-in welcome */

.pf-hm-dash {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.25rem;
  background: var(--pf-gradient-mesh);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pf-hm-dash__tiles {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 40%, transparent 100%);
  pointer-events: none;
}

.pf-hm-dash__glow {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.pf-hm-dash__inner {
  position: relative;
  z-index: 1;
}

.pf-hm-dash__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pf-hm-dash__title {
  margin: 0 0 0.35rem;
  font-family: var(--pf-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f8fafc;
  line-height: 1.1;
}

.pf-hm-dash__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 50ch;
}

.pf-hm-dash .pf-hm-pill {
  margin-bottom: 0.85rem;
}

.pf-hm-dash .pf-hm-btn--primary {
  align-self: flex-start;
  flex-shrink: 0;
}

.pf-hm-dash__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.pf-hm-dash__stat {
  padding: 1rem;
  text-align: center;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-md);
  box-shadow: var(--pf-shadow-premium, 0 4px 24px rgba(11, 16, 32, 0.06));
}

.pf-hm-dash__stat-val {
  display: block;
  font-family: var(--pf-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pf-teal-dark);
  letter-spacing: -0.02em;
}

.pf-hm-dash__stat-lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pf-ink-muted);
}

/* Sections */

.pf-hm-section {
  padding: 2.5rem 0;
  background: var(--pf-surface-soft);
}

.pf-hm-section--featured {
  padding-top: 2rem;
  background: var(--pf-surface);
}

.pf-hm-section--alt {
  background: var(--pf-surface);
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}

.pf-hm-section--campaigns {
  padding-bottom: 3rem;
}

.pf-hm--logged-in .pf-hm-section--campaigns {
  padding-top: 1.75rem;
}

/* Filters */

.pf-hm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pf-hm-filter {
  padding: 0.5rem 1rem;
  font-family: var(--pf-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pf-ink-muted);
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--pf-dur) var(--pf-ease);
}

.pf-hm-filter:hover {
  border-color: var(--pf-teal);
  color: var(--pf-teal-dark);
  box-shadow: 0 0 0 3px var(--pf-teal-glow);
}

.pf-hm-filter.is-active {
  color: #fff;
  background: var(--pf-gradient-brand);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

/* Campaign grid */

.pf-hm-campaigns__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

/* Campaign cards */

.pf-hm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-lg);
  box-shadow: 0 4px 24px rgba(11, 16, 32, 0.06);
  overflow: hidden;
  transition: transform var(--pf-dur-slow, 320ms) var(--pf-ease), box-shadow var(--pf-dur-slow, 320ms) var(--pf-ease), border-color var(--pf-dur) var(--pf-ease);
}

.pf-hm-card__shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pf-gradient-brand);
  opacity: 0;
  transition: opacity var(--pf-dur) var(--pf-ease);
}

.pf-hm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(11, 16, 32, 0.12);
  border-color: rgba(13, 148, 136, 0.25);
}

.pf-hm-card:hover .pf-hm-card__shine {
  opacity: 1;
}

.pf-hm-card.is-hidden {
  display: none;
}

.pf-hm-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.pf-hm-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pf-ink-muted);
}

.pf-hm-card__status {
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

.pf-hm-card__status--active {
  color: #059669;
  background: var(--pf-success-bg);
}

.pf-hm-card__status--hot {
  color: #dc2626;
  background: #fef2f2;
}

.pf-hm-card__status--new {
  color: var(--pf-blue);
  background: rgba(37, 99, 235, 0.1);
}

.pf-hm-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--pf-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pf-ink);
  line-height: 1.25;
}

.pf-hm-card__desc {
  margin: 0 0 1.15rem;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--pf-ink-muted);
}

.pf-hm-card__budget {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  background: var(--pf-surface-soft);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-md);
}

.pf-hm-card__budget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.pf-hm-card__budget-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pf-ink-muted);
}

.pf-hm-card__budget-total {
  font-family: var(--pf-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--pf-ink);
}

.pf-hm-card__progress {
  height: 7px;
  background: var(--pf-line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.55rem;
}

.pf-hm-card__progress-fill {
  height: 100%;
  background: var(--pf-gradient-brand);
  border-radius: 999px;
  transition: width 0.6s var(--pf-ease);
}

.pf-hm-card__budget-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--pf-ink-muted);
}

.pf-hm-card__budget-meta strong {
  color: var(--pf-ink-soft);
  font-weight: 700;
}

.pf-hm-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--pf-line);
}

.pf-hm-card__metric {
  text-align: center;
  min-width: 0;
}

.pf-hm-card__metric-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pf-ink-muted);
  margin-bottom: 0.2rem;
}

.pf-hm-card__metric-value {
  display: block;
  font-family: var(--pf-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pf-ink);
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-hm-card__metric-value--accent {
  color: var(--pf-teal-dark);
  font-size: 0.82rem;
}

.pf-hm-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--pf-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--pf-gradient-brand);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--pf-dur) var(--pf-ease), box-shadow var(--pf-dur) var(--pf-ease);
}

.pf-hm-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

/* Creator opportunities */

.pf-hm-opps {
  padding: 3rem 0;
  background: var(--pf-ink);
  color: #f8fafc;
}

.pf-hm-opps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.pf-hm-opps .pf-hm-head__tag { color: #5eead4; }
.pf-hm-opps .pf-hm-head__title { color: #f8fafc; }
.pf-hm-opps .pf-hm-head__sub { color: #94a3b8; }

.pf-hm-opps__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pf-hm-opps__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.pf-hm-opps__list svg {
  color: #5eead4;
  flex-shrink: 0;
}

.pf-hm-opps__highlight {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pf-r-xl);
}

.pf-hm-opps__highlight-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: #5eead4;
  background: rgba(13, 148, 136, 0.2);
  border-radius: 16px;
}

.pf-hm-opps__highlight h3 {
  margin: 0 0 0.5rem;
  font-family: var(--pf-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.pf-hm-opps__highlight p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* How it works */

.pf-hm-flow {
  padding: 3.5rem 0;
  background: var(--pf-surface);
  border-top: 1px solid var(--pf-line);
}

.pf-hm-flow__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pf-hm-flow__step {
  position: relative;
  padding: 1.5rem;
  background: var(--pf-surface-soft);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-lg);
  transition: border-color var(--pf-dur) var(--pf-ease), box-shadow var(--pf-dur) var(--pf-ease), transform var(--pf-dur) var(--pf-ease);
}

.pf-hm-flow__step:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
  transform: translateY(-3px);
}

.pf-hm-flow__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  color: var(--pf-teal-dark);
  background: var(--pf-teal-glow);
  border-radius: 12px;
}

.pf-hm-flow__num {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--pf-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--pf-teal);
}

.pf-hm-flow__step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--pf-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pf-ink);
}

.pf-hm-flow__step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--pf-ink-muted);
}

/* CTA */

.pf-hm-cta {
  padding: 2rem 0 4rem;
  background: var(--pf-surface-soft);
}

.pf-hm-cta__box {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 2rem;
  text-align: center;
  background: var(--pf-gradient-brand);
  border-radius: var(--pf-r-lg);
  box-shadow: 0 24px 64px rgba(13, 148, 136, 0.35);
}

.pf-hm-cta__glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.pf-hm-cta__title {
  position: relative;
  margin: 0 0 0.5rem;
  font-family: var(--pf-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.pf-hm-cta__sub {
  position: relative;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.pf-hm-cta__actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.pf-hm-cta__box .pf-hm-btn--primary {
  background: #fff;
  color: var(--pf-teal-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pf-hm-cta__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.pf-hm-cta__link:hover { text-decoration: underline; }

/* Mobile */

@media (max-width: 639px) {
  .pf-hm-wrap {
    padding: 0;
  }

  .pf-hm-section--campaigns {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .pf-hm-head {
    width: 93%;
    margin: 0 auto 1.25rem;
  }

  .pf-hm-campaigns__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .pf-hm-card {
    width: 93%;
    max-width: 93vw;
    padding: 1rem 1.05rem;
    border-radius: var(--pf-r-md);
    box-shadow: 0 2px 16px rgba(11, 16, 32, 0.07);
  }

  .pf-hm-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(11, 16, 32, 0.1);
  }

  .pf-hm-card__top {
    margin-bottom: 0.45rem;
  }

  .pf-hm-card__cat {
    font-size: 0.65rem;
  }

  .pf-hm-card__cat svg {
    width: 10px;
    height: 10px;
  }

  .pf-hm-card__status {
    padding: 0.2rem 0.5rem;
    font-size: 0.62rem;
  }

  .pf-hm-card__title {
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
  }

  .pf-hm-card__desc {
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pf-hm-card__budget {
    margin-bottom: 0.7rem;
    padding: 0.6rem 0.7rem;
  }

  .pf-hm-card__budget-head {
    margin-bottom: 0.45rem;
  }

  .pf-hm-card__budget-label {
    font-size: 0.62rem;
  }

  .pf-hm-card__budget-total {
    font-size: 0.85rem;
  }

  .pf-hm-card__progress {
    height: 5px;
    margin-bottom: 0.4rem;
  }

  .pf-hm-card__budget-meta {
    font-size: 0.68rem;
  }

  .pf-hm-card__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    padding-top: 0.65rem;
  }

  .pf-hm-card__metric {
    text-align: center;
    min-width: 0;
  }

  .pf-hm-card__metric-label {
    font-size: 0.55rem;
    margin-bottom: 0.1rem;
    letter-spacing: 0.03em;
  }

  .pf-hm-card__metric-value {
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pf-hm-card__metric-value--accent {
    font-size: 0.66rem;
  }

  .pf-hm-card__btn {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .pf-hm-dash {
    padding: 1.5rem 0 1.75rem;
  }

  .pf-hm-dash__inner {
    width: 93%;
    margin: 0 auto;
  }

  .pf-hm-dash__title {
    font-size: 1.5rem;
  }

  .pf-hm-dash__sub {
    font-size: 0.85rem;
  }

  .pf-hm-dash__head .pf-hm-btn--sm {
    display: none;
  }

  .pf-hm-hero {
    padding: 2rem 0 1.75rem;
  }

  .pf-hm-hero__copy {
    width: 93%;
    max-width: 93vw;
    margin: 0 auto;
    padding: 0 0.25rem;
  }

  .pf-hm-hero__title {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .pf-hm-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pf-hm-hero__actions .pf-hm-btn {
    width: 100%;
    justify-content: center;
  }

  .pf-hm-opps {
    padding: 2.5rem 0;
  }

  .pf-hm-opps__grid {
    width: 93%;
    max-width: 93vw;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .pf-hm-opps__copy {
    padding: 0 0.25rem;
  }

  .pf-hm-opps__panel {
    padding: 0 0.25rem;
  }

  .pf-hm-opps__highlight {
    padding: 1.5rem 1.25rem;
    border-radius: var(--pf-r-md);
  }

  .pf-hm-cta {
    padding: 1.5rem 0 2.5rem;
  }

  .pf-hm-cta .pf-hm-wrap {
    width: 93%;
    max-width: 93vw;
    margin: 0 auto;
    padding: 0;
  }

  .pf-hm-cta__box {
    padding: 2rem 1.35rem;
    border-radius: var(--pf-r-lg);
  }
}

/* Tablet */

@media (min-width: 640px) {
  .pf-hm-campaigns__grid,
  .pf-hm-campaigns__grid--row,
  .pf-hm-campaigns__grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-hm-flow__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-hm-dash__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .pf-hm-head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Desktop */

@media (min-width: 1024px) {
  .pf-hm-hero {
    padding: 4rem 0 2.5rem;
  }

  .pf-hm-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .pf-hm-hero__visuals {
    display: block;
  }

  .pf-hm-stats {
    padding-bottom: 2.5rem;
  }

  .pf-hm-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .pf-hm-campaigns__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .pf-hm-campaigns__grid--featured {
    grid-template-columns: repeat(3, 1fr);
  }

  .pf-hm-campaigns__grid--row {
    grid-template-columns: repeat(3, 1fr);
  }

  .pf-hm-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .pf-hm-opps__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .pf-hm-section { padding: 3rem 0; }
  .pf-hm-section--campaigns { padding-bottom: 4rem; }
}

@media (min-width: 1280px) {
  .pf-hm-hero { padding: 4.5rem 0 3rem; }
}

/* Marketing landing page */

.pf-hm-img-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--pf-surface-soft);
  border: 1.5px dashed var(--pf-line-strong);
  border-radius: var(--pf-r-lg);
  color: var(--pf-ink-muted);
  min-height: 200px;
}

.pf-hm-img-slot span {
  font-size: 0.82rem;
  font-weight: 600;
}

.pf-hm-img-slot--hero { min-height: 280px; }
.pf-hm-img-slot--wide { min-height: 240px; }
.pf-hm-img-slot--tall { min-height: 320px; }
.pf-hm-img-slot--sm { min-height: 120px; padding: 1.25rem; }
.pf-hm-img-slot--story { min-height: 180px; margin-bottom: 1rem; }

.pf-hm-img-slot--filled {
  display: block;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.12);
  background: #0b1020;
}

.pf-hm-img-slot--filled .pf-hm-img-slot__img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.pf-hm-img-slot--hero.pf-hm-img-slot--filled .pf-hm-img-slot__img { height: 280px; }
.pf-hm-img-slot--wide.pf-hm-img-slot--filled .pf-hm-img-slot__img { height: 240px; }
.pf-hm-img-slot--tall.pf-hm-img-slot--filled .pf-hm-img-slot__img { height: 320px; }
.pf-hm-img-slot--sm.pf-hm-img-slot--filled .pf-hm-img-slot__img { height: 120px; }
.pf-hm-img-slot--story.pf-hm-img-slot--filled .pf-hm-img-slot__img { height: 180px; }
.pf-hm-img-slot--filled:not(.pf-hm-img-slot--hero):not(.pf-hm-img-slot--wide):not(.pf-hm-img-slot--tall):not(.pf-hm-img-slot--sm):not(.pf-hm-img-slot--story) .pf-hm-img-slot__img {
  height: 200px;
}

.pf-hm-img-slot--avatar.pf-hm-img-slot--filled {
  width: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
}

.pf-hm-img-slot--avatar.pf-hm-img-slot--filled .pf-hm-img-slot__img {
  height: 120px;
  border-radius: 50%;
}

.pf-hm-stats-bar {
  padding: 2rem 0;
  background: var(--pf-surface);
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}

.pf-hm-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pf-hm-stat {
  padding: 1rem;
  text-align: center;
  background: var(--pf-surface-soft);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-md);
}

.pf-hm-stat strong {
  display: block;
  font-family: var(--pf-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pf-ink);
  margin-bottom: 0.25rem;
}

.pf-hm-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pf-ink-muted);
}

.pf-hm-intro,
.pf-hm-journey,
.pf-hm-features,
.pf-hm-proof,
.pf-hm-stories {
  padding: 3rem 0;
}

.pf-hm-intro__grid,
.pf-hm-journey__grid,
.pf-hm-features__grid,
.pf-hm-stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.pf-hm-intro__list,
.pf-hm-features__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.pf-hm-intro__list li,
.pf-hm-features__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pf-ink-soft);
}

.pf-hm-intro__list li::before,
.pf-hm-features__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pf-teal);
  font-weight: 800;
}

.pf-hm-benefits {
  padding: 3rem 0;
  background: var(--pf-surface-soft);
  border-top: 1px solid var(--pf-line);
}

.pf-hm-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pf-hm-benefit {
  padding: 1.35rem;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-md);
}

.pf-hm-benefit__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  color: var(--pf-teal-dark);
  background: var(--pf-teal-glow);
  border-radius: 12px;
}

.pf-hm-benefit h3 {
  margin: 0 0 0.35rem;
  font-family: var(--pf-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.pf-hm-benefit p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--pf-ink-muted);
}

.pf-hm-journey__steps {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.pf-hm-journey__steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

.pf-hm-journey__steps li::before {
  counter-increment: journey;
  content: counter(journey);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: var(--pf-gradient-brand);
  border-radius: 50%;
}

.pf-hm-journey__steps strong {
  display: block;
  font-size: 0.92rem;
  color: var(--pf-ink);
  margin-bottom: 0.15rem;
}

.pf-hm-journey__steps span {
  font-size: 0.84rem;
  color: var(--pf-ink-muted);
  line-height: 1.5;
}

.pf-hm-proof {
  background: var(--pf-ink);
  color: #f8fafc;
}

.pf-hm-proof .pf-hm-head__title { color: #f8fafc; }
.pf-hm-proof .pf-hm-head__sub { color: #94a3b8; }
.pf-hm-proof .pf-hm-head__tag { color: #5eead4; }

.pf-hm-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.pf-hm-proof__card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pf-r-md);
}

.pf-hm-proof__card blockquote {
  margin: 1rem 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.pf-hm-proof__card cite {
  font-size: 0.78rem;
  font-style: normal;
  color: #94a3b8;
}

.pf-hm-story {
  padding: 1.25rem;
  background: var(--pf-surface);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-r-md);
}

.pf-hm-story h3 {
  margin: 0 0 0.5rem;
  font-family: var(--pf-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.pf-hm-story p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--pf-ink-muted);
}

.pf-hm--marketing .pf-hm-hero__visuals {
  display: block;
}

.pf-hm-hero .pf-hm-img-slot {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
}

.pf-hm-hero .pf-hm-img-slot span {
  color: #e2e8f0;
}

@media (max-width: 639px) {
  .pf-hm--marketing .pf-hm-wrap {
    width: 93%;
    max-width: 93vw;
    margin: 0 auto;
    padding: 0;
  }

  .pf-hm-stats-bar__grid {
    width: 93%;
    margin: 0 auto;
  }

  .pf-hm-cta .pf-hm-wrap {
    width: 93%;
    max-width: 93vw;
    margin: 0 auto;
    padding: 0;
  }
}

@media (min-width: 640px) {
  .pf-hm-stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .pf-hm-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .pf-hm-proof__grid { grid-template-columns: repeat(3, 1fr); }
  .pf-hm-stories__grid { grid-template-columns: repeat(2, 1fr); }
  .pf-hm-intro__grid,
  .pf-hm-features__grid { grid-template-columns: 1fr 1fr; }
  .pf-hm-journey__grid { grid-template-columns: 0.9fr 1.1fr; }
}

@media (min-width: 1024px) {
  .pf-hm-benefits__grid { grid-template-columns: repeat(4, 1fr); }
}
