/* ftm/hero — frontend + editor styles */

.ftm-hero {
  position: relative;
  min-height: 100vh;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ftm-navy);
}

.ftm-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse at top, #F4F7FC 0%, var(--ftm-bg) 60%);
}

.ftm-hero__blob {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  animation: ftm-float 18s ease-in-out infinite;
}
.ftm-hero__blob--1 { top: -120px; left: -80px;
  background: radial-gradient(circle, #E94E3D, transparent 60%);
  animation-delay: 0s; }
.ftm-hero__blob--2 { top: 10%; right: -120px;
  background: radial-gradient(circle, #3DA3B5, transparent 60%);
  animation-delay: -6s; }
.ftm-hero__blob--3 { bottom: -140px; left: 40%;
  background: radial-gradient(circle, #7E4BA8, transparent 60%);
  animation-delay: -12s; }
@keyframes ftm-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-40px) scale(1.05); }
  66%     { transform: translate(-20px,30px) scale(0.95); }
}

.ftm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(26,39,71,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,39,71,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
}

.ftm-hero__logo {
  width: 112px;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(26,39,71,0.12));
}

.ftm-hero .ftm-kicker {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ftm-navy-soft);
  margin: 0 0 14px;
}

.ftm-hero .ftm-eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26,39,71,0.08);
  border-radius: 999px;
  color: var(--ftm-navy);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.ftm-hero .ftm-eyebrow--pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ftm-rainbow);
  box-shadow: 0 0 0 4px rgba(233,78,61,0.12);
}

.ftm-hero__title {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 148px);
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin: 24px 0 8px;
  color: var(--ftm-navy);
  max-width: 14ch;
}

.ftm-hero__year {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.4em;
  color: var(--ftm-navy);
  margin: 0 0 28px;
  position: relative;
  display: inline-block;
  padding: 12px 0;
}
.ftm-hero__year::before, .ftm-hero__year::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; height: 2px;
  background: var(--ftm-rainbow);
  border-radius: 2px;
}
.ftm-hero__year::before { right: 100%; margin-right: 18px; }
.ftm-hero__year::after  { left:  100%; margin-left:  18px; }

.ftm-hero__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ftm-navy-soft);
  max-width: 680px;
  margin: 0 auto 36px;
}

.ftm-hero .ftm-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ftm-hero .ftm-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ftm-navy);
}
.ftm-hero .ftm-meta__divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ftm-navy-soft);
  opacity: 0.35;
}

.ftm-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .ftm-hero .ftm-meta__divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ftm-hero__blob { animation: none; }
}
