<style>
  /* ------------------------------------------------ */
  /* 1. Main Layout & Typography                      */
  /* ------------------------------------------------ */
  
  /* Force container to establish its own height & block layout */
  .mirai-rotator-section {
    display: block !important;
    flow-root: isolation;
    clear: both !important;
    position: relative !important;
    width: 100% !important;
    margin: 40px 0 !important;
    padding: 20px 0 !important;
    text-align: center !important;
  }

  .mirai-animated-title {
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    font-size: clamp(2rem, 4.5vw, 3.5rem) !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #383838 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  }

  .title-top-line {
    display: block !important;
    margin-bottom: 0.15em !important;
  }

  /* ------------------------------------------------ */
  /* 2. Grid Split Layout (The 50/50 Look)            */
  /* ------------------------------------------------ */

  /* Create a perfect 50/50 split down the middle */
  .deliver-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Force left side to align right, pushing against the center */
  .deliver-text {
    text-align: right !important;
    padding-right: 0.55em !important;
  }

  /* Force right side to align left, pulling from the center */
  .word-container {
    text-align: left !important;
/*     padding-left: 0.25em !important; */
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 580px !important;
    height: 1.3em !important;
    overflow: hidden !important;
  }

  /* ------------------------------------------------ */
  /* 3. Animation & Gradients                         */
  /* ------------------------------------------------ */

  .rotate-word {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    line-height: 1.3em !important;
    white-space: nowrap !important;
    background: linear-gradient(90deg, #77ba00, #006a4d, #383838) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    opacity: 0;
    transform: translateY(100%);
    animation: slideWord 21s infinite;
  }

  @keyframes slideWord {
    0% { opacity: 0; transform: translateY(100%); }
    3% { opacity: 1; transform: translateY(0%); }
    11% { opacity: 1; transform: translateY(0%); }
    14% { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; }
  }

  /* ------------------------------------------------ */
  /* 4. Mobile Responsiveness                         */
  /* ------------------------------------------------ */

  /* Stack them and snap everything back to perfectly centered */
  @media (max-width: 768px) {
    .deliver-row {
      grid-template-columns: 1fr !important; /* Collapses the 2 columns into 1 */
      gap: 0.1em !important;
    }
    .deliver-text {
      text-align: center !important;
      padding-right: 0 !important; /* Removes the center gap */
    }
    .word-container {
      width: 100% !important;
      text-align: center !important;
      padding-left: 0 !important; /* Removes the center gap */
    }
    .rotate-word {
      text-align: center !important;
    }
  }

  /* ------------------------------------------------ */
  /* 5. HubSpot Core Overrides                        */
  /* ------------------------------------------------ */

  .mirai-module-wrapper {
    display: block !important;
    width: 100% !important;
    clear: both !important;
  }

  .body_dnd_area-row-6-hidden,
  .body_dnd_area-row-6-padding {
    display: block !important;
    position: relative !important;
    clear: both !important;
    float: none !important;
    top: auto !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  #hs_cos_wrapper_widget_1785319449351 {
    display: flow-root !important;
    clear: both !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
</style>