/**
 * FindMe24 landing — premium dark luxury (black + gold). Scoped to .gpfp-landing; tokens align with 00-design-tokens.
 */

:root {
  --fm24-bg: #0d0d0d;
  --fm24-surface: #1a1a1a;
  --fm24-gold: #d4af37;
  --fm24-gold-hover: #f5d76e;
  --fm24-text: #ffffff;
  --fm24-muted: #a1a1aa;
  --fm24-border: #2a2a2a;
  --fm24-line: #2a2a2a;
  --fm24-radius: 0.5rem;
  --lux-ease: 0.3s ease;
}

.gpfp-landing {
  position: relative;
  z-index: 0;
  font-family: var(--gpfp-font-sans);
  color: var(--fm24-muted);
}

.gpfp-landing h1,
.gpfp-landing h2,
.gpfp-landing h3,
.gpfp-landing .gpfp-hero__title,
.gpfp-landing .gpfp-section__title,
.gpfp-landing .gpfp-card__title,
.gpfp-landing .gpfp-cta-band__title {
  font-family: var(--gpfp-font-sans);
}

.gpfp-container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gpfp-content-pad, 1rem);
  padding-right: var(--gpfp-content-pad, 1rem);
}

/* ----- Hero ----- */
.gpfp-hero {
  position: relative;
  padding: clamp(3.25rem, 8vw, 6rem) 0 clamp(2.75rem, 5.5vw, 4.25rem);
  color: var(--fm24-text);
  overflow: hidden;
  transition: color var(--lux-ease), background var(--lux-ease);
}

.gpfp-hero--home {
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgb(212 175 55 / 0.1), transparent 55%),
    linear-gradient(180deg, var(--fm24-bg) 0%, #101010 100%);
}

.gpfp-hero--home .gpfp-container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gpfp-landing__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgb(212 175 55 / 0.06), transparent 45%),
    radial-gradient(circle at 80% 20%, rgb(212 175 55 / 0.05), transparent 42%),
    radial-gradient(circle at 50% 100%, rgb(255 255 255 / 0.02), transparent 55%);
  pointer-events: none;
}

.gpfp-hero--page {
  background: linear-gradient(165deg, var(--fm24-surface) 0%, var(--fm24-bg) 65%);
  padding: clamp(2rem, 4.5vw, 3rem) 0;
  border-bottom: 1px solid var(--fm24-border);
}

.gpfp-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fm24-muted);
  margin: 0 0 1.5rem;
  transition: color var(--lux-ease);
}

.gpfp-eyebrow--compact {
  font-size: 0.6875rem;
  margin-bottom: 0.875rem;
  justify-content: flex-start;
}

.gpfp-eyebrow__link {
  color: var(--fm24-gold);
  text-decoration: none;
  transition: color var(--lux-ease);
}

.gpfp-eyebrow__link:hover {
  color: var(--fm24-gold-hover);
  text-decoration: underline;
}

.gpfp-eyebrow__muted {
  color: var(--fm24-muted);
  text-decoration: none;
}

a.gpfp-eyebrow__muted:hover {
  color: var(--fm24-text);
  text-decoration: underline;
}

.gpfp-eyebrow__sep {
  opacity: 0.35;
}

.gpfp-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 5vw + 1.25rem, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
  color: var(--fm24-text);
  text-shadow: 0 2px 48px rgb(0 0 0 / 0.5), 0 0 80px rgb(212 175 55 / 0.06);
}

.gpfp-hero--home .gpfp-hero__title {
  max-width: 18ch;
}

.gpfp-hero__title--page {
  font-size: clamp(1.625rem, 2.75vw + 0.85rem, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: none;
}

.gpfp-hero__lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.1875rem);
  line-height: 1.7;
  color: var(--fm24-muted);
}

.gpfp-hero__lead--page {
  margin-bottom: 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.gpfp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
  justify-content: center;
}

.gpfp-hero__actions--page {
  margin-bottom: 0;
  justify-content: flex-start;
}

.gpfp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--gpfp-touch-min, 2.75rem);
  padding: 0.65rem 1.5rem;
  border-radius: clamp(0.375rem, 0.5vw + 0.25rem, 0.625rem);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--gpfp-font-sans);
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform var(--lux-ease),
    box-shadow var(--lux-ease),
    background var(--lux-ease),
    border-color var(--lux-ease),
    color var(--lux-ease);
}

.gpfp-btn--primary {
  background: var(--fm24-gold);
  color: var(--fm24-bg) !important;
  box-shadow: 0 2px 16px rgb(212 175 55 / 0.28);
}

.gpfp-btn--primary:hover {
  transform: translateY(-3px);
  background: var(--fm24-gold-hover);
  box-shadow: 0 6px 28px rgb(212 175 55 / 0.42), 0 2px 12px rgb(0 0 0 / 0.35);
}

.gpfp-btn--ghost {
  background: rgb(255 255 255 / 0.04);
  border-color: var(--fm24-border);
  color: var(--fm24-text) !important;
}

.gpfp-btn--ghost:hover {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(212 175 55 / 0.35);
  box-shadow: 0 0 0 1px rgb(212 175 55 / 0.12);
}

.gpfp-btn--light {
  background: var(--fm24-gold);
  color: var(--fm24-bg) !important;
  box-shadow: 0 2px 16px rgb(212 175 55 / 0.28);
}

.gpfp-btn--light:hover {
  transform: translateY(-3px);
  background: var(--fm24-gold-hover);
  box-shadow: 0 6px 28px rgb(212 175 55 / 0.42), 0 2px 12px rgb(0 0 0 / 0.35);
}

.gpfp-btn--outline-light {
  border: 1px solid var(--fm24-gold);
  color: var(--fm24-gold) !important;
  background: transparent;
}

.gpfp-btn--outline-light:hover {
  background: var(--fm24-gold);
  color: var(--fm24-bg) !important;
  border-color: var(--fm24-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgb(212 175 55 / 0.38);
}

.gpfp-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 38rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gpfp-hero__stats li {
  padding: 1.15rem 0.75rem;
  border-radius: var(--fm24-radius);
  background: var(--fm24-surface);
  border: 1px solid var(--fm24-border);
  text-align: center;
  box-shadow: 0 8px 24px -8px rgb(0 0 0 / 0.55);
  transition:
    transform var(--lux-ease),
    box-shadow var(--lux-ease),
    border-color var(--lux-ease),
    background var(--lux-ease);
}

.gpfp-hero__stats li:hover {
  transform: translateY(-4px);
  border-color: rgb(212 175 55 / 0.28);
  box-shadow:
    0 16px 36px -12px rgb(0 0 0 / 0.65),
    0 0 0 1px rgb(212 175 55 / 0.1),
    0 0 28px -6px rgb(212 175 55 / 0.12);
}

/* QR highlight card */
.gpfp-hero__stats li:first-child {
  background: linear-gradient(165deg, var(--fm24-surface) 0%, var(--fm24-bg) 100%);
  border-color: rgb(212 175 55 / 0.22);
  box-shadow:
    0 12px 40px -14px rgb(0 0 0 / 0.75),
    0 0 0 1px rgb(212 175 55 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.gpfp-hero__stats li:first-child:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgb(212 175 55 / 0.38);
  box-shadow:
    0 22px 48px -16px rgb(0 0 0 / 0.75),
    0 0 40px -8px rgb(212 175 55 / 0.22);
}

.gpfp-hero__stats strong {
  display: block;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--fm24-gold);
  letter-spacing: -0.02em;
  font-family: var(--gpfp-font-sans);
}

.gpfp-hero__stats span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fm24-muted);
}

@media (max-width: 480px) {
  .gpfp-hero__stats {
    grid-template-columns: 1fr;
  }

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

  .gpfp-btn {
    width: 100%;
  }
}

/* ----- Features ----- */
.gpfp-section--features {
  padding: clamp(3.25rem, 6.5vw, 5rem) 0;
  background: var(--fm24-bg);
}

.gpfp-section__head {
  max-width: 40rem;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3rem);
  text-align: center;
}

.gpfp-section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, 1.75vw + 1rem, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--fm24-text);
  line-height: 1.15;
}

.gpfp-section__sub {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fm24-muted);
}

.gpfp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.75vw, 1.85rem);
}

.gpfp-card {
  background: var(--fm24-surface);
  border: 1px solid rgb(212 175 55 / 0.12);
  border-radius: var(--fm24-radius);
  padding: 1.65rem 1.5rem;
  box-shadow: 0 8px 28px -10px rgb(0 0 0 / 0.6);
  transition:
    box-shadow var(--lux-ease),
    transform var(--lux-ease),
    border-color var(--lux-ease);
}

.gpfp-card:hover {
  box-shadow:
    0 20px 44px -16px rgb(0 0 0 / 0.7),
    0 0 0 1px rgb(212 175 55 / 0.1);
  transform: translateY(-4px);
  border-color: rgb(212 175 55 / 0.28);
}

.gpfp-card__icon {
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fm24-radius);
  background: linear-gradient(145deg, rgb(26 26 26), rgb(13 13 13));
  color: var(--fm24-gold);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgb(212 175 55 / 0.18);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.gpfp-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.09375rem;
  font-weight: 700;
  color: var(--fm24-text);
  letter-spacing: -0.02em;
}

.gpfp-card__text {
  margin: 0 0 1.2rem;
  font-size: 0.90625rem;
  line-height: 1.7;
  color: var(--fm24-muted);
}

.gpfp-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fm24-gold);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: calc(var(--fm24-radius) - 2px);
  background: rgb(212 175 55 / 0.08);
  border: 1px solid rgb(212 175 55 / 0.22);
  transition:
    background var(--lux-ease),
    color var(--lux-ease),
    box-shadow var(--lux-ease),
    transform var(--lux-ease);
}

.gpfp-card__link:hover {
  color: var(--fm24-gold-hover);
  background: rgb(212 175 55 / 0.14);
  box-shadow: 0 4px 20px rgb(212 175 55 / 0.18);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .gpfp-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- CTA ----- */
.gpfp-section--cta {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0;
  background: linear-gradient(180deg, var(--fm24-bg) 0%, #0a0a0a 100%);
  border-top: 1px solid var(--fm24-border);
  border-bottom: 1px solid var(--fm24-border);
}

.gpfp-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.85rem;
  padding: clamp(1.65rem, 3.25vw, 2.25rem);
  border-radius: var(--fm24-radius);
  background: linear-gradient(135deg, var(--fm24-surface) 0%, var(--fm24-bg) 100%);
  border: 1px solid rgb(212 175 55 / 0.18);
  box-shadow:
    0 20px 50px -20px rgb(0 0 0 / 0.75),
    inset 0 1px 0 rgb(255 255 255 / 0.03);
  transition: box-shadow var(--lux-ease), border-color var(--lux-ease);
}

.gpfp-cta-band:hover {
  border-color: rgb(212 175 55 / 0.26);
  box-shadow:
    0 24px 56px -20px rgb(0 0 0 / 0.8),
    0 0 40px -20px rgb(212 175 55 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.gpfp-cta-band__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 1.35vw + 1rem, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fm24-text);
  line-height: 1.2;
}

.gpfp-cta-band__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.96875rem;
  line-height: 1.7;
  color: var(--fm24-muted);
}

.gpfp-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

@media (max-width: 720px) {
  .gpfp-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .gpfp-cta-band__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}

body.gpfp-has-home-landing.home #primary .inside-article > .entry-header,
body.gpfp-has-page-hero.page #primary .inside-article > .entry-header {
  display: none;
}

body.gpfp-has-home-landing.home #primary .inside-article {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .gpfp-card:hover,
  .gpfp-btn--primary:hover,
  .gpfp-btn--light:hover,
  .gpfp-btn--outline-light:hover,
  .gpfp-hero__stats li:hover,
  .gpfp-hero__stats li:first-child:hover,
  .gpfp-card__link:hover {
    transform: none;
  }
}
