      .lp-hero > .reveal {
        opacity: 1;
        transform: none;
        min-width: 0;
      }

      .lp-hero h1 {
        line-height: 1.2;
        text-wrap: balance;
        font-size: clamp(32px, 3.8vw, 48px);
      }

      .lp-fit-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 28px;
      }

      .lp-fit-highlight {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px 14px;
      }

      .lp-fit-highlight strong {
        display: block;
        font-size: 15px;
        font-family: var(--font-display);
        line-height: 1.35;
        color: var(--blue);
        text-align: center;
      }

      .lp-fit-highlight__sub {
        display: block;
        margin-top: 4px;
        font-size: 13px;
        font-weight: 500;
        color: var(--muted);
      }

      .lp-platform-card__tag {
        display: block;
        font-family: var(--font-display);
        font-size: 15px;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 8px;
      }

      .lp-platform-card__logo {
        min-height: 112px;
        margin-bottom: 8px;
        padding: 8px;
      }

      .lp-platform-card__logo img {
        height: 96px;
      }

      .lp-platform-card__logo--yahoo img {
        height: 88px;
      }

      .lp-platform-card__logo--line img {
        height: 72px;
      }

      .lp-platform-card p {
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
      }

      .lp-summary--paid-search .lp-summary__row {
        background: var(--card);
        padding: 18px 20px;
        text-align: center;
      }

      .lp-summary--paid-search .lp-summary__row strong {
        margin-bottom: 8px;
      }

      .lp-summary--paid-search .lp-summary__row span {
        display: block;
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        line-height: 1.5;
      }

      @media (max-width: 900px) {
        .lp-fit-highlights {
          grid-template-columns: 1fr;
        }
      }
    