#ai_newsletter_thanks .hero-wrap {
      background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, var(--dark) 100%);
      min-height: 80vh;
      position: relative;
      overflow: hidden;
    }

    #ai_newsletter_thanks .hero-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.25) 0%, transparent 60%),
                        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
                        radial-gradient(circle at 85% 60%, rgba(200, 16, 46, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    /* Animated check icon */
    #ai_newsletter_thanks .check-badge {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      position: relative;
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
      animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    #ai_newsletter_thanks .check-badge svg {
      width: 64px;
      height: 64px;
      color: var(--dark);
      stroke-dasharray: 100;
      stroke-dashoffset: 100;
      animation: draw-check 0.8s ease-out 0.3s forwards;
    }

    @keyframes pulse-ring {
      0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
      70% { box-shadow: 0 0 0 30px rgba(212, 175, 55, 0); }
      100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }

    @keyframes draw-check {
      to { stroke-dashoffset: 0; }
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    #ai_newsletter_thanks .fade-up {
      opacity: 0;
      animation: fade-up 0.8s ease-out forwards;
    }

    #ai_newsletter_thanks .fade-up.d1 { animation-delay: 0.6s; }
    #ai_newsletter_thanks .fade-up.d2 { animation-delay: 0.8s; }
    #ai_newsletter_thanks .fade-up.d3 { animation-delay: 1.0s; }
    #ai_newsletter_thanks .fade-up.d4 { animation-delay: 1.2s; }
    #ai_newsletter_thanks .fade-up.d5 { animation-delay: 1.4s; }

    /* Confetti dots */
    #ai_newsletter_thanks .confetti {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
      animation: confetti-pop 1.5s ease-out forwards;
    }

    @keyframes confetti-pop {
      0% { opacity: 0; transform: translate(0, 0) scale(0); }
      40% { opacity: 1; transform: translate(var(--tx), var(--ty)) scale(1); }
      100% { opacity: 0; transform: translate(var(--tx), calc(var(--ty) + 40px)) scale(0.5); }
    }

    /* Next steps cards */
    #ai_newsletter_thanks .step-card {
      background: var(--white);
      border-radius: 16px;
      padding: 32px 28px;
      border: 1px solid var(--gray-100);
      transition: all 200ms ease;
      height: 100%;
      position: relative;
    }

    #ai_newsletter_thanks .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
      border-color: var(--gold);
    }

    #ai_newsletter_thanks .step-number {
      position: absolute;
      top: -16px;
      left: 28px;
      width: 40px;
      height: 40px;
      background: var(--gold);
      color: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 18px;
    }

    #ai_newsletter_thanks .resource-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 12px;
      padding: 24px;
      transition: all 200ms ease;
      display: flex;
      gap: 16px;
      align-items: center;
      text-decoration: none;
      color: inherit;
    }

    #ai_newsletter_thanks .resource-card:hover {
      transform: translateX(4px);
      border-color: var(--gold);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    }

    #ai_newsletter_thanks .resource-icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: rgba(212, 175, 55, 0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }

    #ai_newsletter_thanks .social-link {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: all 200ms ease;
      text-decoration: none;
    }

    #ai_newsletter_thanks .social-link:hover {
      background: var(--gold);
      color: var(--dark);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    #ai_newsletter_thanks .cta-button {
      display: inline-block;
      padding: 16px 36px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--dark);
      border-radius: 50px;
      text-decoration: none;
      transition: all 200ms ease;
    }

    #ai_newsletter_thanks .cta-button:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
    }

    #ai_newsletter_thanks .cta-secondary {
      display: inline-block;
      padding: 16px 36px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      text-decoration: none;
      transition: all 200ms ease;
    }

    #ai_newsletter_thanks .cta-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
