/* FT Homepage — Frequenze + Parliamone */

.ft-frequency-section {
  position: relative;
}

.ft-frequency-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 78px);
  border-radius: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 88% 18%, rgba(255,90,95,.14), transparent 28%),
    var(--ft-white);
  box-shadow: var(--ft-shadow-soft);
  overflow: hidden;
}

.ft-frequency-copy {
  align-self: center;
}

.ft-frequency-copy h2 {
  max-width: 760px;
  margin: .18em 0 .32em;
  font-size: clamp(2.7rem, 5.8vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.ft-frequency-copy p {
  max-width: 660px;
  margin-bottom: 1.8rem;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ft-slate);
}

.ft-frequency-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--ft-navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.ft-frequency-link::after {
  content: "↗";
  color: var(--ft-coral);
  transition: transform .25s ease;
}

.ft-frequency-link:hover::after {
  transform: translate(3px,-3px);
}

.ft-frequency-feature {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border-radius: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(150deg, rgba(255,255,255,.06), transparent 42%),
    var(--ft-navy);
  color: var(--ft-white);
  overflow: hidden;
}

.ft-frequency-feature::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255,255,255,.025),
    0 0 0 88px rgba(255,255,255,.018);
}

.ft-frequency-number {
  position: relative;
  z-index: 1;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--ft-coral);
}

.ft-frequency-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: auto 0 0;
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.05em;
  color: var(--ft-white);
}

.ft-home-contact-wrap {
  padding-top: clamp(10px, 3vw, 36px);
}

.ft-home-contact {
  position: relative;
  padding: clamp(44px, 8vw, 110px);
  border-radius: clamp(30px, 5vw, 62px);
  background:
    radial-gradient(circle at 14% 84%, rgba(255,90,95,.19), transparent 24%),
    var(--ft-navy);
  color: var(--ft-white);
  overflow: hidden;
}

.ft-home-contact::before {
  content: "FT";
  position: absolute;
  right: -.08em;
  top: -.16em;
  font-size: clamp(11rem, 29vw, 28rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.12em;
  color: rgba(255,255,255,.025);
  pointer-events: none;
}

.ft-home-contact-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.ft-home-contact h2 {
  max-width: 900px;
  margin: .2em 0 .3em;
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.065em;
  color: var(--ft-white);
}

.ft-home-contact p {
  max-width: 690px;
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}

.ft-home-contact .ft-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding-inline: 1.65rem;
}

@media (max-width: 849px) {
  .ft-frequency-strip {
    grid-template-columns: 1fr;
  }

  .ft-frequency-feature {
    min-height: 340px;
  }
}

@media (max-width: 549px) {
  .ft-frequency-strip,
  .ft-home-contact {
    padding: 28px;
    border-radius: 28px;
  }

  .ft-frequency-feature {
    min-height: 300px;
    padding: 26px;
  }

  .ft-home-contact h2,
  .ft-frequency-copy h2 {
    letter-spacing: -.045em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-frequency-link::after {
    transition: none;
  }
}
