/* all-tools.css - extracted CSP-safe page styles from all-tools.html */

/* Extracted inline <style> #trl-auth-prehide */
#trl-desktop-cta,#trl-mobile-cta{visibility:hidden}

/* Extracted inline <style> */

    html,
    body {
      background-color: #030712;
    }
    /* Simple fade-in animation */
    .fade-up {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.40s ease-out, transform 0.40s ease-out;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
  
    /* Extra motion & glow effects adapted from the React + Framer Motion version */
    .hero-orb {
      animation: orbFloat 18s ease-in-out infinite;
      will-change: transform, opacity;
    }
    .hero-orb--alt {
      animation-duration: 22s;
      animation-direction: alternate;
    }
    @keyframes orbFloat {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.85;
      }
      25% {
        transform: translate3d(12px, 10px, 0) scale(1.05);
        opacity: 1;
      }
      50% {
        transform: translate3d(24px, -6px, 0) scale(1.1);
        opacity: 0.95;
      }
      75% {
        transform: translate3d(-8px, 4px, 0) scale(1.03);
        opacity: 0.9;
      }
      100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.85;
      }
    }

    .tool-icon {
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
      will-change: transform, box-shadow;
    }
    .tool-icon:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
      border-color: rgba(148, 163, 184, 0.7);
      background-color: rgba(15, 23, 42, 0.95);
    }

    .icon-blue:hover {
      box-shadow: 0 0 40px rgba(59,130,246,0.65);
    }
    .icon-cyan:hover {
      box-shadow: 0 0 40px rgba(34,211,238,0.65);
    }
    .icon-purple:hover {
      box-shadow: 0 0 40px rgba(168,85,247,0.65);
    }
    .icon-emerald:hover {
      box-shadow: 0 0 40px rgba(16,185,129,0.65);
    }
    .icon-indigo:hover {
      box-shadow: 0 0 40px rgba(79,70,229,0.65);
    }
    .icon-rose:hover {
      box-shadow: 0 0 40px rgba(244,63,94,0.65);
    }

    .tool-icon-seq {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
      will-change: opacity, transform;
    }
    .tool-icon-seq.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-underline {
      transform-origin: left;
      transform: scaleX(0);
      opacity: 0;
      transition: transform 0.7s ease-out 0.6s, opacity 0.7s ease-out 0.6s;
      will-change: transform, opacity;
    }
    .hero-underline.visible {
      transform: scaleX(1);
      opacity: 1;
    }

    .card-float {
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      will-change: transform, box-shadow;
    }
    .card-float:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
      border-color: rgba(148, 163, 184, 0.6);
    }

    .card-glow-blue:hover {
      box-shadow: 0 0 40px rgba(59, 130, 246, 0.45);
    }
    .card-glow-teal:hover {
      box-shadow: 0 0 40px rgba(45, 212, 191, 0.45);
    }
    .card-glow-purple:hover {
      box-shadow: 0 0 40px rgba(168, 85, 247, 0.45);
    }
    .card-glow-indigo:hover {
      box-shadow: 0 0 40px rgba(79, 70, 229, 0.45);
    }
    .card-glow-emerald:hover {
      box-shadow: 0 0 40px rgba(16, 185, 129, 0.45);
    }
   to {
        transform: scaleY(1);
        opacity: 1;
      }
    }
    .bar-animate {
      transform-origin: bottom;
    }

    .plan-popular-badge {
      animation: badgePulse 2.4s ease-in-out infinite;
      transform-origin: center;
    }
    @keyframes badgePulse {
      0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 rgba(168, 85, 247, 0);
      }
      50% {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 0 22px rgba(168, 85, 247, 0.45);
      }
    }

  
    .stagger-item {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
      will-change: opacity, transform;
    }
    .stagger-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

  
    /* Slide-in-from-left variant for feature rows (like original Framer Motion x:-10 → 0) */
    .stagger-left {
      transform: translateX(-12px);
    }
    .stagger-left.visible {
      transform: translateX(0);
    }

  
    /* Sticky header background & scrolled state (from ) */
    #site-header {
      background: radial-gradient(circle at top, rgba(15,23,42,0.98), rgba(15,23,42,0.90));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(30,64,175,0.45);
    }
    #site-header.header-scrolled {
      background: radial-gradient(circle at top, rgba(15,23,42,0.98), rgba(15,23,42,0.96));
      box-shadow: 0 18px 45px rgba(15,23,42,0.95);
      border-bottom-color: rgba(37,99,235,0.7);
    }

    /* Global subtle grid background */
    .global-grid::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.22;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(30,64,175,0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,64,175,0.45) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: linear-gradient(to bottom, transparent 0%, transparent 18%, black 35%, black 100%);
    }

    /* Social buttons (used in footer) */
    .social-btn {
      transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }
    .social-btn:hover {
      transform: translateY(-1px) scale(1.05);
    }

    /* Generic floating animations for footer/background orbs */
    .float-slow {
      animation: float-slow 18s ease-in-out infinite;
    }
    .float-slower {
      animation: float-slower 26s ease-in-out infinite;
    }
    @keyframes float-slow {
      0% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -10px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }
    @keyframes float-slower {
      0% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(10px, 10px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    /* Hover effect for "Details" buttons */
    .details-btn {
      transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }
    .details-btn:hover {
      transform: translateY(-1px);
      background-color: rgba(15,23,42,0.96);
      border-color: rgba(148,163,184,0.9);
      color: #e5e7eb;
      box-shadow: 0 16px 40px rgba(15,23,42,0.85);
    }

/* Pricing "Pro" glow pulse */
    .glow-pulse { animation: glowPulse 4.5s ease-in-out infinite; }
    @keyframes glowPulse {
      0% { opacity: .25; filter: blur(16px) saturate(1); }
      50% { opacity: .6; filter: blur(24px) saturate(1.25); }
      100% { opacity: .25; filter: blur(16px) saturate(1); }
    }

    /* Pricing toggle + yearly highlight */
    #billing-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      width: clamp(240px, 52vw, 360px);
      padding: 4px;
      border-radius: 9999px;
      border: 1px solid rgba(59,130,246,0.55);
      background: rgba(15,23,42,0.92);
      box-shadow: 0 14px 35px rgba(15,23,42,0.9);
      overflow: hidden;
      transform-origin: center;
      transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      -webkit-tap-highlight-color: transparent;
    }

    /* Sliding "thumb" */
    #billing-toggle::after {
      content: "";
      position: absolute;
      top: 4px;
      bottom: 4px;
      left: 4px;
      width: calc(50% - 4px);
      border-radius: 9999px;
      background: linear-gradient(to right, rgba(37,99,235,0.95), rgba(56,189,248,0.95));
      box-shadow: 0 10px 28px rgba(37,99,235,0.35), inset 0 0 0 1px rgba(191,219,254,0.35);
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, box-shadow 0.28s ease;
      z-index: 0;
    }

    /* Labels */
    #billing-toggle .billing-label-month,
    #billing-toggle .billing-label-year {
      flex: 1 1 0;
      text-align: center;
      position: relative;
      z-index: 1;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
      user-select: none;
    }

    /* Hide the divider span inside the toggle (keeps markup unchanged) */
    #billing-toggle > span.w-px {
      display: none;
    }

    /* Monthly selected (default) */
    #billing-toggle .billing-label-month {
      color: #ffffff;
    }
    #billing-toggle .billing-label-year {
      color: rgba(226,232,240,0.75);
    }

    /* Yearly selected */
    #billing-toggle.is-yearly {
      /* Keep the switch blue in both states (only the thumb position changes) */
      border-color: rgba(59,130,246,0.65);
      box-shadow: 0 18px 50px rgba(59,130,246,0.14), 0 16px 45px rgba(15,23,42,0.9);
      transform: translateY(-1px);
    }
    #billing-toggle.is-yearly::after {
      transform: translateX(100%);
      /* Blue thumb in both states for consistent UI */
      background: linear-gradient(to right, rgba(37,99,235,0.95), rgba(56,189,248,0.95));
      box-shadow: 0 10px 28px rgba(37,99,235,0.35), inset 0 0 0 1px rgba(191,219,254,0.35);
    }
    #billing-toggle.is-yearly .billing-label-month {
      color: rgba(226,232,240,0.75);
    }
    #billing-toggle.is-yearly .billing-label-year {
      color: #ffffff;
    }


    .price-change {
      animation: priceChange 0.35s ease-out;
    }
    @keyframes priceChange {
      0% { transform: scale(0.9); opacity: 0; }
      60% { transform: scale(1.06); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }

    .pricing-card.pricing-yearly {
      box-shadow: 0 30px 80px rgba(59,130,246,0.4);
      border-color: rgba(59,130,246,0.95);
      transform: translateY(-6px) scale(1.02);
      background-image: radial-gradient(circle at top, rgba(59,130,246,0.18), transparent 55%);
      animation: pricingYearlyGlow 0.6s ease-out;
    }
    @keyframes pricingYearlyGlow {
      0% {
        box-shadow: 0 0 0 rgba(59,130,246,0);
        transform: translateY(-2px) scale(1);
      }
      60% {
        box-shadow: 0 35px 95px rgba(59,130,246,0.5);
        transform: translateY(-7px) scale(1.03);
      }
      100% {
        box-shadow: 0 30px 80px rgba(59,130,246,0.4);
        transform: translateY(-6px) scale(1.02);
      }
    }

    
    /* Yearly mode: hide monthly-only plans (Flex) + hide Free (yearly removes it) from cards + comparison table */
    #pricing.pricing-yearly-mode .flex-plan-wrapper { display: none !important; }
    #pricing.pricing-yearly-mode .flex-table-col { display: none !important; }
    #pricing.pricing-yearly-mode .free-plan-wrapper { display: none !important; }
    #pricing.pricing-yearly-mode .free-table-col { display: none !important; }

    /* Yearly mode: reflow pricing cards to 3 columns on md+ (Core, Pro, Ultimate) */
    @media (min-width: 768px) {
      #pricing.pricing-yearly-mode .pricing-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 340px));
        justify-content: center;
        gap: 2rem;
      }
    }
#pricing.pricing-yearly-mode {
      animation: pricingModeFlash 0.5s ease-out;
    }
    @keyframes pricingModeFlash {
      0% {
        box-shadow: 0 0 0 rgba(59,130,246,0);
      }
      40% {
        box-shadow: 0 0 80px rgba(59,130,246,0.35);
      }
      100% {
        box-shadow: 0 0 0 rgba(59,130,246,0);
      }
    }


    /* Pricing plan glows: blue for Pro, purple for Prop */
    .pricing-glow {
      position: absolute;
      inset: -0.75rem;
      border-radius: 1.75rem;
      filter: blur(28px);
      opacity: 0;
      transition: opacity 0.35s ease, transform 0.35s ease;
      pointer-events: none;
    }
    .pricing-glow-pro {
      background: radial-gradient(circle at top, rgba(59,130,246,0.55), transparent 65%);
    }
    .pricing-glow-prop {
      background: radial-gradient(circle at top, rgba(147,51,234,0.55), transparent 65%);
    }
    .pricing-glow-ultimate {
      background: radial-gradient(circle at center, rgba(245,158,11,0.42), transparent 72%);
    }
    /* Monthly: Flex (purple) + Ultimate (ember) glows should appear ONLY on hover */
    #pricing .pricing-glow-prop,
    #pricing .pricing-glow-ultimate {
      opacity: 0;
      transform: scale(1);
      filter: saturate(1.1);
    }
    #pricing .group:hover .pricing-glow-prop,
    #pricing .group:hover .pricing-glow-ultimate {
      opacity: 0.9;
      transform: scale(1.04);
      filter: saturate(1.25);
    }

    /* Yearly mode: show plan glows ONLY on hover (no always-on glow) */
    #pricing.pricing-yearly-mode .pricing-glow-pro,
    #pricing.pricing-yearly-mode .pricing-glow-ultimate {
      opacity: 0 !important;
      transform: scale(1);
    }
    #pricing.pricing-yearly-mode .group:hover .pricing-glow-pro,
    #pricing.pricing-yearly-mode .group:hover .pricing-glow-ultimate {
      opacity: 0.9 !important;
      transform: scale(1.04);
    }

    /* Ultimate monthly border fix + hover glow */
    #pricing .pricing-card.ultimate-yearly {
      border-color: rgba(245,158,11,0.85);
      box-shadow: 0 18px 50px rgba(245,158,11,0.08);
    }
    #pricing .pricing-card.ultimate-yearly:hover {
      border-color: rgba(245,158,11,0.98);
      box-shadow: 0 40px 110px rgba(245,158,11,0.30);
    }

    /* Disable extra Prop hover overlay in yearly mode */
    #pricing.pricing-yearly-mode .prop-hover-overlay {
      opacity: 0 !important;
    }

    /* Yearly mode specific glows per plan */
    #pricing .pricing-card.pricing-yearly.pro-yearly {
      box-shadow: 0 30px 80px rgba(16,185,129,0.45);
      border-color: rgba(16,185,129,0.95);
      transform: translateY(-6px) scale(1.02);
      background-image: radial-gradient(circle at top, rgba(16,185,129,0.20), transparent 55%);
      animation: pricingYearlyGlowBlue 0.6s ease-out;
    }

    #pricing .pricing-card.pricing-yearly.prop-yearly {
      box-shadow: 0 30px 80px rgba(147,51,234,0.55);
      border-color: rgba(147,51,234,0.98);
      transform: translateY(-6px) scale(1.02);
      background-image: radial-gradient(circle at top, rgba(147,51,234,0.24), transparent 55%);
      animation: pricingYearlyGlowPurple 0.6s ease-out;
    }
    #pricing .pricing-card.pricing-yearly.ultimate-yearly {
      box-shadow: 0 30px 80px rgba(245,158,11,0.36) !important;
      border-color: rgba(245,158,11,0.98) !important;
      transform: translateY(-6px) scale(1.02);
      background-image: radial-gradient(circle at top, rgba(245,158,11,0.22), transparent 55%);
      animation: pricingYearlyGlowEmber 0.6s ease-out;
    }
    @keyframes pricingYearlyGlowBlue {
      0% {
        box-shadow: 0 0 0 rgba(16,185,129,0);
        transform: translateY(-2px) scale(1);
      }
      60% {
        box-shadow: 0 35px 95px rgba(16,185,129,0.55);
        transform: translateY(-7px) scale(1.03);
      }
      100% {
        box-shadow: 0 30px 80px rgba(16,185,129,0.5);
        transform: translateY(-6px) scale(1.02);
      }
    }

    @keyframes pricingYearlyGlowEmber {
      0% {
        box-shadow: 0 0 0 rgba(245,158,11,0);
        transform: translateY(-2px) scale(1);
      }
      60% {
        box-shadow: 0 35px 95px rgba(245,158,11,0.42);
        transform: translateY(-7px) scale(1.03);
      }
      100% {
        box-shadow: 0 30px 80px rgba(245,158,11,0.36);
        transform: translateY(-6px) scale(1.02);
      }
    }

    @keyframes pricingYearlyGlowPurple {
      0% {
        box-shadow: 0 0 0 rgba(147,51,234,0);
        transform: translateY(-2px) scale(1);
      }
      60% {
        box-shadow: 0 35px 95px rgba(147,51,234,0.55);
        transform: translateY(-7px) scale(1.03);
      }
      100% {
        box-shadow: 0 30px 80px rgba(147,51,234,0.5);
        transform: translateY(-6px) scale(1.02);
      }
    }

    /* Hover pop-up for yearly Pro & Prop */
    #pricing .pricing-card.pricing-yearly.pro-yearly:hover {
      transform: translateY(-10px) scale(1.04);
      box-shadow: 0 40px 110px rgba(16,185,129,0.6);
    }
    #pricing .pricing-card.pricing-yearly.prop-yearly:hover {
      transform: translateY(-10px) scale(1.04);
    }
    /* Hover pop-up for yearly Core (fix: ensure it enlarges on hover, not the opposite) */
    #pricing .pricing-card.pricing-yearly.core-yearly:hover {
      transform: translateY(-10px) scale(1.04);
      box-shadow: 0 40px 110px rgba(59,130,246,0.5);
    }
/* Trust badges + generic hover glow */
    .trust-badge {
      position: relative;
      flex: 0 0 auto;
      min-width: 170px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
      will-change: transform, box-shadow;
      transform-origin: center;
    }
    .trust-badge.animate-visible {
      /* keep scroll fade-in from .js-animate, but no extra color animation */
      animation: none;
    }
    .trust-badges-viewport {
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
    .trust-badge-marquee {
      display: flex;
      align-items: stretch;
      gap: 1rem;
      animation: trustBadgeMarquee 38s linear infinite;
    }
    @keyframes trustBadgeMarquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes badgeIdle {
      0%, 100% {
        background-color: rgba(15,23,42,0.92);
        border-color: rgba(15,23,42,0.85);
      }
      50% {
        background-color: rgba(15,23,42,0.98);
        border-color: rgba(51,65,85,0.8);
      }
    }
    @keyframes badgeIntro {
      0% {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
      }
      60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    .hover-glow {
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .hover-glow:hover {
      box-shadow: 0 20px 50px rgba(59,130,246,0.35);
      transform: translateY(-3px);
    }
    /* Global subtle grid background */
    .section-grid { position: relative; }
    .section-grid::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.22;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(30,64,175,0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,64,175,0.45) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: linear-gradient(to bottom, transparent 0%, transparent 18%, black 35%, black 100%);
    }

    .faq-trigger-glow {
      transition: box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
    }
    .faq-trigger-glow:hover {
      transform: translateY(-1px);
      background-color: transparent;
      box-shadow: none;
      border-radius: 0.75rem;
    }

    /* Page transition overlay */
    .page-transition-overlay {
      position: fixed;
      inset: 0;
      background-color: #030712;
      opacity: 0;
      pointer-events: none;
      transition: opacity 170ms cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 9999;
    }

    .page-transition-overlay.is-active {
      opacity: 1;
      pointer-events: auto;
    }


/* Extracted inline <style> */

  /* --- TRL PATCH: prevent BFCache snapshot content flash on mobile Back (hide restored snapshot) */
  html.trl-bfcache-hide body { opacity: 0 !important; }
  html.trl-bfcache-hide .page-transition-overlay { opacity: 1 !important; pointer-events: auto !important; }


.trl-inline-style-3aa722a8 { background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); }

.trl-inline-style-97c8cdba { background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%); }

.trl-inline-style-a2ae53c8 { background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%); }

.trl-inline-style-48111c6a { background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%); }

.trl-inline-style-2149aeae { background-image: linear-gradient(rgba(59, 130, 246, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.5) 1px, transparent 1px); background-size: 60px 60px; }

.trl-inline-style-bd856704 { background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%); }

.trl-inline-style-19bbaaa2 { background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%); }

.trl-inline-style-4c688683 { background-image: linear-gradient(rgba(139, 92, 246, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.5) 1px, transparent 1px); background-size: 80px 80px; }

.trl-inline-style-c440f184 { height: 25%; }

.trl-inline-style-a998ff42 { height: 40%; }

.trl-inline-style-f9513f16 { height: 35%; }

.trl-inline-style-1930e07f { height: 55%; }

.trl-inline-style-f805028c { height: 45%; }

.trl-inline-style-b2c5ae45 { height: 65%; }

.trl-inline-style-3150bfa1 { height: 60%; }

.trl-inline-style-9eb93b9e { height: 80%; }

.trl-inline-style-a4b84896 { height: 70%; }

.trl-inline-style-747862a6 { height: 90%; }

.trl-inline-style-8e4b7cf6 { height: 85%; }

.trl-inline-style-5e11b481 { height: 100%; }

.trl-inline-style-91cc03eb { background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%); }

.trl-inline-style-8e51fa21 { background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 70%); }

.trl-inline-style-b43af149 { background-image: linear-gradient(rgba(59, 130, 246, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, 0.5) 1px, transparent 1px); background-size: 60px 60px; }

.trl-inline-style-4d8e1a4b { background: radial-gradient(circle, rgba(244,63,94,0.07) 0%, transparent 70%); }

.trl-inline-style-bb3dfc22 { background: radial-gradient(circle, rgba(251,146,60,0.05) 0%, transparent 70%); }

.trl-inline-style-23d475a5 { background-image: linear-gradient(rgba(244, 63, 94, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 63, 94, 0.5) 1px, transparent 1px); background-size: 60px 60px; }

.trl-inline-style-d09bf58e { height: 50%; }

.trl-inline-style-78134ccd { height: 75%; }

.trl-inline-style-ed717e59 { height: 95%; }

.trl-inline-style-bd82ac7b { background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%); animation: hero-orb-2 15s ease-in-out infinite; }

.trl-inline-style-87f0083f { background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%); animation: hero-orb-1 12s ease-in-out infinite; }

.trl-inline-style-2748b898 { background-color: rgba(245,158,11,0.38); }


/* === WCAG 2.2 AA accessibility patch === */
.trl-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.trl-skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100000;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  border-radius: 0.75rem;
  background: #020617;
  color: #ffffff !important;
  font-weight: 800;
}

.trl-skip-link:focus,
.trl-skip-link:focus-visible {
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
  border: 2px solid #67e8f9;
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.35);
  outline: 3px solid #facc15;
  outline-offset: 3px;
}

.trl-motion-toggle {
  --trl-logo-blue: #0ea5e9;
  position: absolute;
  left: 1rem;
  top: 5.1rem;
  z-index: 30;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0.95rem;
  border: 1.5px solid var(--trl-logo-blue);
  background: #0f172a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  transition: none;
}

.trl-motion-toggle:hover,
.trl-motion-toggle:active {
  transform: none;
  border-color: var(--trl-logo-blue);
  background: #0f172a;
  box-shadow: none;
}

.trl-motion-toggle-icon {
  display: block;
  transform: translateY(-0.02rem);
}

@media (max-width: 640px) {
  .trl-motion-toggle {
    top: 4.75rem;
    left: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    font-size: 0.92rem;
  }
}

.trl-motion-toggle:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible,
.feature-card[role="link"]:focus-visible {
  outline: 3px solid #67e8f9 !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 6px rgba(8, 47, 73, 0.85), 0 0 28px rgba(34, 211, 238, 0.45) !important;
}

.trl-motion-toggle:focus-visible {
  outline: 2px solid #0ea5e9 !important;
  outline-offset: 3px !important;
  box-shadow: none !important;
}

#main-content:focus-visible {
  outline: 3px solid #67e8f9;
  outline-offset: -3px;
}

/* Hover-revealed content must also be available to keyboard users. */
.feature-card:focus-within .feature-details,
.feature-card[role="link"]:focus .feature-details,
.feature-card[role="link"]:focus-visible .feature-details {
  max-height: 360px;
  opacity: 1;
}

.feature-card[role="link"] {
  -webkit-tap-highlight-color: rgba(34, 211, 238, 0.22);
}

/* Improve contrast for small supporting copy used throughout the dark UI. */
.text-slate-500,
[class*="text-slate-500"] {
  color: #94a3b8 !important;
}
.text-slate-400,
[class*="text-slate-400"] {
  color: #cbd5e1 !important;
}
.border-slate-800,
[class*="border-slate-800"] {
  border-color: rgba(71, 85, 105, 0.92) !important;
}

#billing-toggle[role="switch"] {
  min-height: 44px;
}

#trl-flex-modal[aria-hidden="false"] {
  display: block;
}

#trl-flex-modal input[type="checkbox"] {
  min-width: 24px;
  min-height: 24px;
}

#trl-flex-modal label:focus-within {
  outline: 3px solid #67e8f9;
  outline-offset: 3px;
  border-color: rgba(103, 232, 249, 0.95) !important;
}

/* User-triggered and OS-triggered reduced motion. */
html.trl-motion-paused *,
html.trl-motion-paused *::before,
html.trl-motion-paused *::after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
}

html.trl-motion-paused .js-progress,
html.trl-motion-paused .trust-badge-marquee,
html.trl-motion-paused .hero-line,
html.trl-motion-paused .underline-hero,
html.trl-motion-paused .hero-orb,
html.trl-motion-paused .markets-orb-1,
html.trl-motion-paused .markets-orb-2,
html.trl-motion-paused .features-orb,
html.trl-motion-paused .how-orb {
  animation: none !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js-animate,
  .fade,
  .fade-up,
  .feature-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .trust-badge-marquee,
  .hero-line,
  .underline-hero,
  .hero-orb,
  .markets-orb-1,
  .markets-orb-2,
  .features-orb,
  .how-orb,
  .js-progress {
    animation: none !important;
    transform: none !important;
  }
}

/* Accessible Products disclosure menu: opened by JS for hover, click and keyboard focus. */
.trl-products-dropdown.is-open .trl-products-menu {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.trl-products-dropdown.is-open #trl-products-menu-button i,
#trl-products-menu-button:focus-visible i {
  color: #e2e8f0 !important;
}
.trl-products-menu a:focus-visible {
  outline: 3px solid #67e8f9 !important;
  outline-offset: -2px !important;
  background: rgba(15, 23, 42, 0.95) !important;
}

/* Final rendered contrast guard for small helper/footer/mockup text on dark cards. */
.text-slate-500,
[class~="text-slate-500"] {
  color: #94a3b8 !important;
}
.text-slate-400,
[class~="text-slate-400"] {
  color: #cbd5e1 !important;
}
.bg-slate-800 .text-slate-500,
.bg-slate-800\/30 .text-slate-500,
.bg-slate-800\/50 .text-slate-500,
[class*="bg-slate-800"] [class~="text-slate-500"] {
  color: #cbd5e1 !important;
}


/* WCAG PATCH: semantic link groups use real lists without changing visual layout. */
.trl-products-menu ul,
#mobile-menu nav ul,
.popular-tools-list,
.direct-tool-links-list {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}

.popular-tools-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.direct-tool-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.popular-tools-list > li,
.direct-tool-links-list > li {
  display: inline-flex;
}

#mobile-menu nav ul.space-y-2 > li + li {
  margin-top: 0.5rem;
}

/* WCAG PATCH: primary navigation is also a semantic list. */
nav[aria-label="Primary navigation"] > ul {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
}


/* === Global accessibility settings control === */
.trl-a11y-settings-button {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  margin-left: 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  box-sizing: border-box;
  overflow: visible;
  transition: background-color 160ms ease, color 160ms ease;
}

.trl-a11y-settings-button:hover,
.trl-a11y-settings-button:active {
  background: rgba(255, 255, 255, 0.05);
  border-color: transparent;
  color: #ffffff;
  transform: none;
  box-shadow: none;
}


#trl-desktop-cta.trl-a11y-nav-host {
  position: relative;
}

@media (min-width: 1024px) {
  #trl-desktop-cta.trl-a11y-nav-host .trl-a11y-settings-button {
    position: absolute;
    right: calc(100% + 0.5rem);
    left: auto;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%);
  }

  #trl-desktop-cta.trl-a11y-nav-host .trl-a11y-settings-button:hover,
  #trl-desktop-cta.trl-a11y-nav-host .trl-a11y-settings-button:active {
    transform: translateY(-50%);
  }
}

@media (max-width: 1023px) {
  .trl-a11y-settings-button {
    margin-left: auto;
    margin-right: 0.25rem;
    position: relative;
    z-index: 55;
  }
}

.trl-a11y-pause-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  width: 1rem;
  height: 1rem;
}

.trl-a11y-pause-icon span {
  display: block;
  width: 0.22rem;
  height: 0.88rem;
  border-radius: 999px;
  background: #ffffff;
}

.trl-a11y-settings-button:focus-visible {
  outline: 2px solid #67e8f9 !important;
  outline-offset: 3px !important;
  box-shadow: none !important;
}

.trl-a11y-settings-panel {
  position: fixed;
  top: 5.75rem;
  right: max(1rem, calc((100vw - 80rem) / 2 + 1rem));
  z-index: 2500;
  width: min(24rem, calc(100vw - 2rem));
  color: #ffffff;
}

.trl-a11y-settings-panel[hidden] {
  display: none !important;
}

.trl-a11y-panel-inner {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.25rem;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  padding: 1rem;
}

.trl-a11y-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.trl-a11y-panel-header h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.trl-a11y-panel-close {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-size: 0;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.trl-a11y-panel-close::before {
  content: "×";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -53%);
  color: #e2e8f0;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
}

.trl-a11y-panel-copy {
  margin: 0.55rem 0 0.875rem;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.trl-a11y-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.trl-a11y-switch-row:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(148, 163, 184, 0.22);
}

.trl-a11y-switch-row strong,
.trl-a11y-switch-row small {
  display: block;
}

.trl-a11y-switch-row strong {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 900;
}

.trl-a11y-switch-row small {
  margin-top: 0.25rem;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.75rem;
  line-height: 1.35;
}

.trl-a11y-switch-row input[role="switch"] {
  width: 2.875rem;
  height: 1.625rem;
  flex: 0 0 auto;
  accent-color: #38bdf8;
}

.trl-a11y-reset-button {
  margin-top: 0.875rem;
  width: 100%;
  min-height: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 900;
}

.trl-a11y-reset-button:hover,
.trl-a11y-panel-close:hover {
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 1023px) {
  .trl-a11y-settings-button {
    margin-left: auto;
    margin-right: 0.35rem;
  }

  .trl-a11y-settings-panel {
    top: 4.75rem;
    right: 1rem;
  }
}

/* New global class name, kept alongside trl-motion-paused for older page scripts. */
html.trl-reduced-motion *,
html.trl-reduced-motion *::before,
html.trl-reduced-motion *::after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
}

html.trl-reduced-motion .js-progress,
html.trl-reduced-motion .trust-badge-marquee,
html.trl-reduced-motion .hero-line,
html.trl-reduced-motion .underline-hero,
html.trl-reduced-motion .hero-orb,
html.trl-reduced-motion .markets-orb-1,
html.trl-reduced-motion .markets-orb-2,
html.trl-reduced-motion .features-orb,
html.trl-reduced-motion .how-orb {
  animation: none !important;
  transform: none !important;
}


/* === TRL zoom/reflow patch: scrollable overlays at 200%-400% zoom === */
/* Normal desktop/mobile appearance stays unchanged. These rules only help when
   browser zoom or a very small viewport makes overlays taller than the screen. */

@media (max-height: 700px), (max-width: 480px) {
  body.trl-mobile-menu-open,
  body.trl-modal-open {
    overflow: hidden;
  }

  #mobile-menu {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  #mobile-menu .trl-mobile-panel {
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .trl-a11y-settings-panel {
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    left: max(0.75rem, env(safe-area-inset-left));
    width: auto;
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .trl-a11y-panel-inner {
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #trl-flex-modal {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  #trl-flex-modal .trl-flex-modal-shell {
    min-height: 100dvh;
    height: auto;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  #trl-flex-modal .trl-flex-modal-card {
    margin-top: auto;
    margin-bottom: auto;
    max-height: none;
  }

  #trl-flex-modal .trl-flex-modal-body {
    max-height: none;
    overflow: visible;
  }
}

/* === TRL all-tools reduced-motion extensions === */
html.trl-motion-paused .hero-underline,
html.trl-motion-paused .tool-icon-seq,
html.trl-motion-paused .stagger-item,
html.trl-motion-paused .stagger-left,
html.trl-motion-paused .bar-animate,
html.trl-motion-paused .glow-pulse,
html.trl-reduced-motion .hero-underline,
html.trl-reduced-motion .tool-icon-seq,
html.trl-reduced-motion .stagger-item,
html.trl-reduced-motion .stagger-left,
html.trl-reduced-motion .bar-animate,
html.trl-reduced-motion .glow-pulse {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}

html.trl-motion-paused .fade-up,
html.trl-reduced-motion .fade-up,
html.trl-motion-paused .fade,
html.trl-reduced-motion .fade {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}


/* === TRL pricing responsive clipping fix ===
   Keeps the normal wide-desktop pricing design, but prevents cards, promo pills,
   prices and hover glows from being clipped on narrow/zoomed layouts. */
#pricing,
#pricing * {
  box-sizing: border-box;
}

#pricing .pricing-cards-grid,
#pricing .pricing-card,
#pricing .pricing-card > *,
#pricing .pricing-card li,
#pricing .pricing-card span,
#pricing .pricing-card p {
  min-width: 0;
}

#pricing .pricing-card .flex.items-baseline {
  flex-wrap: wrap;
  row-gap: 0.25rem;
}

#pricing .pricing-card > .flex.items-center.gap-3.mb-4 {
  flex-wrap: wrap;
  row-gap: 0.75rem;
}

#pricing .pricing-card ul span {
  overflow-wrap: anywhere;
}

#pricing .trl-promo-pill {
  max-width: 100%;
}

#pricing .trl-promo-pill .trl-promo-text,
#pricing .trl-promo-pill .trl-promo-label,
#pricing .trl-promo-pill .trl-promo-amount {
  min-width: 0;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #pricing .pricing-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  #pricing.pricing-yearly-mode .pricing-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 46rem;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  #pricing {
    overflow-x: clip;
  }

  #pricing > .relative.z-10 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #pricing .text-center.mb-16 {
    margin-bottom: 2.75rem;
  }

  #pricing .pricing-cards-grid {
    gap: 1.25rem;
  }

  #pricing .pricing-card {
    padding: 1.5rem;
  }

  #pricing .pricing-card .js-price {
    font-size: clamp(2.35rem, 13vw, 3rem);
    line-height: 1.05;
  }

  #pricing .trl-promo-old {
    margin-left: 0.35rem;
  }

  #pricing .pricing-glow,
  #pricing .group > .absolute.-inset-0\.5 {
    inset: -0.25rem;
  }
}

@media (max-width: 360px) {
  #pricing > .relative.z-10 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  #pricing .pricing-card {
    padding: 1.25rem;
  }

  #billing-toggle {
    width: min(100%, 17.75rem);
  }
}

/* === TRL 400% zoom tool-card visibility fix ===
   Reflows only the all-tools card internals at very narrow/zoomed viewports so
   text, chart boxes and CTA rows remain visible without horizontal clipping. */
@media (max-width: 480px) {
  #core,
  #planning,
  #prop,
  #risk {
    overflow-x: clip;
  }

  #core > .relative.z-10,
  #planning > .relative.z-10,
  #prop > .relative.z-10,
  #risk > .relative.z-10 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #core .group.relative.fade-up,
  #planning .group.relative.fade-up,
  #prop .group.relative.fade-up,
  #risk .group.relative.fade-up {
    min-width: 0;
    max-width: 100%;
  }

  #core .group.relative.fade-up > .relative,
  #planning .group.relative.fade-up > .relative,
  #prop .group.relative.fade-up > .relative,
  #risk .group.relative.fade-up > .relative {
    min-width: 0;
    max-width: 100%;
  }

  #core .group.relative.fade-up .p-8,
  #planning .group.relative.fade-up .p-8,
  #prop .group.relative.fade-up .p-8,
  #risk .group.relative.fade-up .p-8 {
    padding: 1.25rem;
  }

  #core .group.relative.fade-up .grid.grid-cols-2,
  #planning .group.relative.fade-up .grid.grid-cols-2,
  #prop .group.relative.fade-up .grid.grid-cols-2,
  #risk .group.relative.fade-up .grid.grid-cols-2,
  #core .group.relative.fade-up .grid.grid-cols-3,
  #planning .group.relative.fade-up .grid.grid-cols-3,
  #prop .group.relative.fade-up .grid.grid-cols-3,
  #risk .group.relative.fade-up .grid.grid-cols-3 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #core .group.relative.fade-up .flex.items-start.gap-4,
  #planning .group.relative.fade-up .flex.items-start.gap-4,
  #prop .group.relative.fade-up .flex.items-start.gap-4,
  #risk .group.relative.fade-up .flex.items-start.gap-4 {
    flex-wrap: wrap;
  }

  #core .group.relative.fade-up .flex.gap-3,
  #planning .group.relative.fade-up .flex.gap-3,
  #prop .group.relative.fade-up .flex.gap-3,
  #risk .group.relative.fade-up .flex.gap-3 {
    flex-wrap: wrap;
  }

  #core .group.relative.fade-up a,
  #planning .group.relative.fade-up a,
  #prop .group.relative.fade-up a,
  #risk .group.relative.fade-up a {
    max-width: 100%;
    white-space: normal;
  }

  #core .group.relative.fade-up p,
  #core .group.relative.fade-up span,
  #core .group.relative.fade-up div,
  #planning .group.relative.fade-up p,
  #planning .group.relative.fade-up span,
  #planning .group.relative.fade-up div,
  #prop .group.relative.fade-up p,
  #prop .group.relative.fade-up span,
  #prop .group.relative.fade-up div,
  #risk .group.relative.fade-up p,
  #risk .group.relative.fade-up span,
  #risk .group.relative.fade-up div {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  #core > .relative.z-10,
  #planning > .relative.z-10,
  #prop > .relative.z-10,
  #risk > .relative.z-10 {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  #core .group.relative.fade-up .p-8,
  #planning .group.relative.fade-up .p-8,
  #prop .group.relative.fade-up .p-8,
  #risk .group.relative.fade-up .p-8 {
    padding: 1rem;
  }
}
